@charset "UTF-8";
/* --------------------------------------
BASE
-------------------------------------- */
@font-face {
  font-family: "NotoSerifJP-Regular";
  src: url("../fonts/NotoSerifJP-Regular.ttf");
}
@font-face {
  font-family: "NotoSerifJP-SemiBold";
  src: url("../fonts/NotoSerifJP-SemiBold.ttf");
}
@font-face {
  font-family: "Cormorant-Medium";
  src: url("../fonts/Cormorant-Medium.ttf");
}
@font-face {
  font-family: "Cormorant-Regular";
  src: url("../fonts/Cormorant-Regular.ttf");
}
@font-face {
  font-family: "LibreBaskerville-Regular";
  src: url("../fonts/LibreBaskerville-Regular.ttf");
}
html {
  font-size: 62.5%;
  line-height: 1;
  scroll-behavior: smooth;
}

body {
  font-family: "NotoSerifJP-Regular", sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #4a4a4a;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
  line-height: 1.6;
}
@media screen and (min-width: 1281px) {
  body {
    font-size: 16px;
    padding-top: 60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

em {
  font-style: normal;
}

.display_sp,
.br_sp {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .display_sp,
  .br_sp {
    display: none;
  }
}

.display_pc,
.br_pc {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .display_pc,
  .br_pc {
    display: none;
  }
}

.br_tab {
  display: none;
}
@media screen and (max-width: 1280px) {
  .br_tab {
    display: inline-block;
  }
}

em {
  font-style: normal;
}

.js_fadeup {
  transform: translateY(20px);
  opacity: 0;
}

/* --------------------------------------
HEADER
-------------------------------------- */
header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  top: 0;
  left: 0;
}
header .hd_inner {
  height: 60px;
  border-radius: 30px;
  padding: 0 20px;
}
header .hd_nav_list > li > a {
  display: block;
  font-family: "Cormorant-Regular";
}
header .hd_logo {
  transition: 0.3s;
}
header .hd_logo:hover {
  opacity: 0.7;
}
@media screen and (min-width: 1281px) {
  header .hd_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header #hd_btn_sp {
    display: none;
  }
  header .hd_nav_list {
    display: flex;
    align-items: center;
  }
  header .hd_nav_list li {
    position: relative;
  }
  header .hd_nav_list li a {
    padding: 0 25px;
    line-height: 60px;
  }
  header .hd_nav_list li:last-child a {
    background: #d8b4a0;
    color: #fff;
    line-height: 50px;
    text-align: center;
    width: 176px;
    transition: 0.3s;
  }
  header .hd_nav_list li:last-child a:hover {
    background: #efcfbd;
  }
  header .hd_nav_list li .header-contact-btn {
    position: relative;
    overflow: hidden;
  }
  header .hd_nav_list li .header-contact-btn span {
    position: relative;
    z-index: 2;
  }
  header .hd_nav_list li .header-contact-btn::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #9fb7a3;
    position: absolute;
    left: 0;
    bottom: -50px;
    transition: 0.3s;
  }
  header .hd_nav_list li .header-contact-btn:hover::after {
    bottom: 0;
  }
  header .hd_nav_sp {
    display: none;
  }
  header .hd_btn_contact_sp {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  header {
    padding: 20px 20px;
  }
}
@media screen and (max-width: 1280px) {
  header {
    padding: 5px 0 0;
  }
  header .hd_logo {
    position: relative;
    z-index: 10;
  }
  header .hd_inner {
    display: flex;
    align-items: center;
  }
  header .hd_nav_pc {
    display: none;
  }
  header .hd_nav_sp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 239, 239, 0.9);
    border: 1px solid #707070;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  header .hd_nav_sp.js_open {
    opacity: 1;
    visibility: visible;
  }
  header .hd_nav_list {
    width: calc(100% - 20px);
  }
  header .hd_nav_list > li {
    max-width: 330px;
    margin: 0 auto;
    border-bottom: 1px solid #d8b4a0;
  }
  header .hd_nav_list > li > a {
    padding: 17px 20px;
    text-align: center;
  }
  header .btn_hd_l {
    background: #d8b4a0;
    color: #fff;
    width: 130px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    margin-top: 40px;
    font-family: "Cormorant-Regular";
  }
  header #hd_btn_sp {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 17px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1000;
    text-align: right;
  }
  header #hd_btn_sp span {
    display: block;
    height: 1px;
    background: #d8b4a0;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
  }
  header #hd_btn_sp span:nth-child(1) {
    width: 30px;
  }
  header #hd_btn_sp span:nth-child(2) {
    width: 25px;
    left: 5px;
  }
  header #hd_btn_sp span:nth-child(3) {
    width: 15px;
    left: 15px;
  }
  header #hd_btn_sp.js_active span {
    background: #fff;
  }
  header #hd_btn_sp.js_active span:nth-child(1) {
    transform: rotate(35deg) translate(6px, 6px);
  }
  header #hd_btn_sp.js_active span:nth-child(2) {
    opacity: 0;
  }
  header #hd_btn_sp.js_active span:nth-child(3) {
    transform: rotate(-35deg) translate(6px, -6px);
    width: 30px;
    left: 0;
  }
  header .hd_btn_contact_sp {
    background: #d8b4a0;
    color: #fff;
    position: absolute;
    right: 80px;
    top: 18px;
    height: 20px;
    line-height: 20px;
    padding: 0 10px;
    letter-spacing: 0.05em;
  }
}

/* --------------------------------------
FOOTER
-------------------------------------- */
footer {
  background: #ffefef;
}
footer .list_sns {
  display: flex;
  margin-top: 15px;
}
footer .list_sns li + li {
  margin-left: 10px;
}
footer .ft_logo {
  transition: 0.3s;
}
footer .ft_logo:hover {
  opacity: 0.7;
}
footer .ft_bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 14px;
  margin-top: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d8b4a0;
}
footer .ft_nav_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
footer .ft_nav {
  width: 200px;
}
footer .ft_nav li {
  border-bottom: 1px solid #d8b4a0;
}
footer .ft_nav a {
  display: block;
  padding: 10px 0;
  font-family: "Cormorant-Regular";
}
footer .btn_ft {
  background: #d8b4a0;
  color: #fff;
  text-align: center;
  font-family: "Cormorant-Regular";
}
@media screen and (min-width: 1281px) {
  footer .btn_ft {
    margin-left: 130px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  footer .btn_ft {
    margin-left: 30px;
  }
}
@media screen and (min-width: 768px) {
  footer {
    padding: 100px 0;
  }
  footer .ft_main_wrap {
    display: flex;
    justify-content: space-between;
  }
  footer .btn_ft {
    width: 130px;
    padding: 10px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
  }
  footer .btn_ft span {
    position: relative;
    z-index: 2;
  }
  footer .btn_ft::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #9fb7a3;
    position: absolute;
    left: 0;
    bottom: -50px;
    transition: 0.3s;
  }
  footer .btn_ft:hover::after {
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding: 50px 0;
  }
  footer .ft_nav_wrap {
    margin-top: 30px;
  }
  footer .btn_ft {
    width: 110px;
    padding: 6px;
    margin-left: 20px;
  }
  footer .link_txt {
    font-size: 13px;
  }
  footer .copyright {
    font-size: 12px;
  }
}

/* --------------------------------------
LAYOUT
-------------------------------------- */
body {
  background: #fff;
}

.l_main {
  overflow-x: hidden;
}

#l_page header {
  background: #fff;
}

.l_page_content {
  background: #fff;
}

.l_flex {
  display: flex;
}

.l_flex_reverse {
  flex-direction: row-reverse;
}

.l_inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 1281px) {
  .l_inner {
    max-width: 1240px;
  }
}
@media screen and (max-width: 767px) {
  .l_inner {
    max-width: 640px;
  }
}

.l_inner_s {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l_inner_s {
    max-width: 940px;
  }
}
@media screen and (max-width: 767px) {
  .l_inner_s {
    max-width: 640px;
  }
}

#sec_cat {
  padding: 20px 20px 40px 20px;
  border: solid 1px #ffefef;
  border-radius: 20px;
}
#sec_cat h2 {
  margin-bottom: 16px;
  font-family: "NotoSerifJP-SemiBold";
}
#sec_cat li {
  margin-bottom: 14px;
  position: relative;
  display: flex;
  align-items: center;
}
#sec_cat li::before {
  content: "";
  background-color: #d8b4a0;
  width: 4px;
  aspect-ratio: 1;
  border-radius: 50%;
  margin-right: 12px;
}

/*ページナビゲーション--------------------------------------*/
.wp-pagenavi {
  clear: both;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin: 60px auto 0;
}

.navigation .pages {
  display: none;
}

.wp-pagenavi {
  text-align: center;
}
.wp-pagenavi span,
.wp-pagenavi a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  display: inline-block;
  margin: 0 3px;
}
.wp-pagenavi span {
  background: #d8b4a0;
}
.wp-pagenavi a {
  background: #ffefef;
  transition: 0.3s;
}
.wp-pagenavi a:hover {
  background: #9fb7a3;
}

body .title_page_wrap .title_page.en {
  font-family: "Cormorant-Regular", serif;
}
body .title_page_wrap .title_page.jp {
  font-size: 60px;
  font-family: "NotoSerifJP-SemiBold";
}
@media screen and (max-width: 767px) {
  body .title_page_wrap .title_page.jp {
    font-size: 24px;
  }
}

.heading_blur {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(20px);
  transition: opacity 1.2s ease, filter 1.4s ease, transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.heading_blur.is-show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* --------------------------------------
TEXT
-------------------------------------- */
.en {
  font-family: "Cormorant-Medium";
}

@media screen and (min-width: 1281px) {
  .title_l {
    font-size: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .title_l {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .title_l {
    font-size: 24px;
  }
}

@media screen and (min-width: 768px) {
  .title_m {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .title_m {
    font-size: 20px;
  }
}

.title_wrap_v .title_inner,
.title_wrap .title_inner {
  display: inline-block;
}
.title_wrap_v .title_en,
.title_wrap .title_en {
  font-family: "Cormorant-Medium";
  color: #d8b4a0;
  line-height: 0.8;
}
.title_wrap_v .title_ja,
.title_wrap .title_ja {
  text-align: right;
}
@media screen and (min-width: 1281px) {
  .title_wrap_v .title_en,
  .title_wrap .title_en {
    font-size: 128px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .title_wrap_v .title_en,
  .title_wrap .title_en {
    font-size: 100px;
  }
}
@media screen and (max-width: 767px) {
  .title_wrap_v .title_en,
  .title_wrap .title_en {
    font-size: 62px;
  }
}

.title_wrap_v .title_inner {
  position: relative;
}
.title_wrap_v .title_en {
  transform: rotate(90deg);
}
.title_wrap_v .title_ja {
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  position: absolute;
}
@media screen and (min-width: 1281px) {
  .title_wrap_v .title_ja {
    bottom: -144px;
    right: 17px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .title_wrap_v {
    width: 120px;
  }
  .title_wrap_v .title_inner {
    width: 120px;
  }
  .title_wrap_v .title_ja {
    bottom: -116px;
    right: 15px;
  }
}
@media screen and (min-width: 768px) {
  .title_wrap_v .l_flex {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .title_wrap_v .title_inner {
    width: 70px;
  }
  .title_wrap_v .title_ja {
    bottom: -77px;
    right: 0;
  }
}

.title_wrap_w .title_en,
.title_wrap_w .title_ja {
  color: #fff;
}

.title_wrap_c {
  text-align: center;
}

.title_page_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.title_page_wrap .title_page {
  text-align: center;
  font-family: "Cormorant-Regular";
  color: #d8b4a0;
}
.title_page_wrap:before {
  content: "";
  width: 100%;
  height: 100vh;
  display: block;
  position: fixed;
  left: 0;
  background: url(../../assets/img/common/hd_bg_01.jpg) no-repeat center center;
  background-size: cover;
  z-index: -1;
}
@media screen and (min-width: 1281px) {
  .title_page_wrap {
    height: 600px;
  }
  .title_page_wrap:before {
    top: 60px;
  }
  .title_page_wrap .title_page {
    font-size: 100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .title_page_wrap {
    height: 500px;
    padding-top: 40px;
  }
  .title_page_wrap .title_page {
    font-size: 80px;
  }
}
@media screen and (max-width: 1280px) {
  .title_page_wrap:before {
    top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .title_page_wrap {
    height: 338px;
    padding-top: 60px;
  }
  .title_page_wrap .title_page {
    font-size: 60px;
  }
}

/* --------------------------------------
LINK
-------------------------------------- */
.link_arrow_wrap {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .link_arrow_wrap {
    margin-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .link_arrow_wrap {
    margin-top: 50px;
  }
}

.link_arrow {
  position: relative;
  padding-right: 80px;
}
.link_arrow .arrow {
  position: absolute;
  width: 60px;
  height: 1px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.link_arrow .arrow::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #d8b4a0;
  z-index: 1;
}
.link_arrow .arrow::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 11px;
  height: 1px;
  background: #d8b4a0;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
  z-index: 3;
}
.link_arrow .arrow .circle {
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-56%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #d8b4a0;
  overflow: hidden;
  z-index: 2;
}
.link_arrow .arrow .circle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #d8b4a0;
  border-radius: 50%;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.3s;
  z-index: 1;
}
.link_arrow .arrow .circle::after {
  content: "";
  position: absolute;
  left: -33px;
  top: 57%;
  transform: translateY(-50%);
  width: 60px;
  height: 1px;
  background: #fff;
  z-index: 2;
  opacity: 0;
}
.link_arrow:hover .circle::before {
  transform: scale(1.1);
}
.link_arrow:hover .circle::after {
  opacity: 1;
}
.link_arrow:hover .white_head {
  opacity: 1;
}
.link_arrow:hover .arrow::before {
  background-color: #ffffff;
}

/* --------------------------------------
BTN
-------------------------------------- */
.btn {
  display: block;
  color: #fff;
  position: relative;
  line-height: 47px;
  text-align: center;
  overflow: hidden;
}
.btn span {
  display: block;
  position: relative;
  padding-right: 30px;
  z-index: 2;
}
.btn span:before, .btn span:after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 20px;
  width: 9px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 0.5px) 50%;
}
.btn span:before {
  transform: rotate(45deg);
}
.btn span:after {
  transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .btn {
    width: 233px;
    height: 47px;
  }
}
@media screen and (max-width: 767px) {
  .btn {
    width: 200px;
  }
}

.btn_c_green {
  background: #9fb7a3;
}
.btn_c_green::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #7f9f8c;
  position: absolute;
  left: 0;
  bottom: -50px;
  transition: 0.3s;
}
.btn_c_green:hover::after {
  bottom: 0;
}

.btn_c_sub {
  background: #d8b4a0;
}
@media screen and (min-width: 768px) {
  .btn_c_sub::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #9fb7a3;
    position: absolute;
    left: 0;
    bottom: -50px;
    transition: 0.3s;
  }
  .btn_c_sub:hover::after {
    bottom: 0;
  }
}

/* --------------------------------------
LIST
-------------------------------------- */
.list_breadcrumb {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 20px;
}
.list_breadcrumb li,
.list_breadcrumb a {
  font-size: 12px;
}
.list_breadcrumb li {
  position: relative;
}
.list_breadcrumb li + li {
  padding-left: 35px;
}
.list_breadcrumb li + li:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 6px;
  background: url(../../assets/img/common/icon_breadcrumb.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 8px;
  top: 50%;
  margin-top: -3px;
}
@media screen and (min-width: 1281px) {
  .list_breadcrumb {
    margin-top: -30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .list_breadcrumb {
    margin-top: -20px;
  }
}
@media screen and (max-width: 767px) {
  .list_breadcrumb {
    margin-top: -15px;
  }
}

/* --------------------------------------
PARTS
-------------------------------------- */
@media screen and (min-width: 1281px) {
  .list_news {
    display: flex;
  }
  .list_news .article_news {
    width: calc((100% - 100px) / 3);
  }
  .list_news .article_news:not(:first-child) {
    margin-left: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .list_news {
    display: flex;
  }
  .list_news .article_news {
    width: calc((100% - 40px) / 3);
  }
  .list_news .article_news:not(:first-child) {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .list_news .article_news + .article_news {
    margin-top: 30px;
  }
}

.article_news .info {
  display: flex;
  font-size: 12px;
  margin-top: 10px;
}
.article_news .cat {
  background: #d8b4a0;
  color: #fff;
  height: 20px;
  border-radius: 10px;
  margin-left: 10px;
  padding: 0 10px;
}
.article_news .title {
  margin-top: 7px;
}
.article_news .thumb {
  background: #fff;
}
.article_news .thumb img {
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .article_news {
    transition: 0.3s;
  }
  .article_news .thumb {
    height: 195px;
  }
  .article_news .thumb img {
    width: 100%;
    height: 195px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .article_news:hover img {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .article_news .thumb {
    height: 140px;
  }
  .article_news .thumb img {
    width: 100%;
    height: 140px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-width: 1281px) {
  .list_column_wrap .list_column .article_column {
    width: calc((100% - 160px) / 3);
  }
  .list_column_wrap .list_column .article_column:not(:first-child) {
    margin-left: 80px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .list_column_wrap .list_column .article_column {
    width: calc((100% - 60px) / 3);
  }
  .list_column_wrap .list_column .article_column:not(:first-child) {
    margin-left: 30px;
  }
}
@media screen and (min-width: 768px) {
  .list_column_wrap .list_column {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .list_column_wrap .article_column + .article_column {
    margin-top: 30px;
  }
}

.article_column .info {
  display: flex;
  font-size: 12px;
  margin-top: 10px;
}
.article_column .cat {
  background: #9fb7a3;
  color: #fff;
  height: 20px;
  border-radius: 10px;
  margin-left: 10px;
  padding: 0 10px;
}
.article_column .title {
  margin-top: 7px;
}
.article_column .thumb {
  background: #fff;
}
.article_column .thumb img {
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .article_column {
    transition: 0.3s;
  }
  .article_column .thumb {
    height: 195px;
  }
  .article_column .thumb img {
    width: 100%;
    height: 195px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .article_column:hover img {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .article_column .thumb {
    height: 140px;
  }
  .article_column .thumb img {
    width: 100%;
    height: 140px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* --------------------------------------
PAGE
-------------------------------------- */
/* --------------------------------------
SEC_NEWS
-------------------------------------- */
@media screen and (min-width: 1281px) {
  #sec_news {
    padding: 200px 0;
  }
  #sec_news .title_inner {
    width: 155px;
  }
  #sec_news .content {
    width: calc(100% - 250px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  #sec_news {
    padding: 100px 0;
  }
  #sec_news .content {
    padding-left: 20px;
  }
}
@media screen and (min-width: 768px) {
  #sec_news .l_flex {
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  #sec_news {
    padding: 80px 0;
  }
  #sec_news .l_flex {
    justify-content: center;
  }
  #sec_news .list_news_wrap {
    width: 250px;
  }
  #sec_news .content {
    padding-left: 20px;
  }
}

/* --------------------------------------
SEC_CONTACT_WRAP
-------------------------------------- */
#sec_contact_wrap {
  background: url(../../assets/img/common/co_bg_01.jpg) repeat;
}
#sec_contact_wrap #sec_contact {
  background: #fffafb;
  border-radius: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
#sec_contact_wrap #sec_contact .txt {
  margin-top: 30px;
}
#sec_contact_wrap .l_flex {
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (min-width: 1281px) {
  #sec_contact_wrap {
    padding: 120px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  #sec_contact_wrap {
    padding: 100px 0;
  }
}
@media screen and (min-width: 768px) {
  #sec_contact_wrap #sec_contact {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 767px) {
  #sec_contact_wrap {
    padding: 80px 0;
    text-align: center;
  }
  #sec_contact_wrap .l_flex {
    display: block;
  }
  #sec_contact_wrap #sec_contact {
    padding: 30px 20px 40px;
  }
  #sec_contact_wrap .btn {
    margin: 40px auto 0;
  }
}/*# sourceMappingURL=common.css.map */