@charset "UTF-8";
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

body {
  font-family: "Inter", sans-serif;
}

.font_noto {
  font-family: "Noto Serif JP", serif;
}

.mb_br {
  display: none;
}
@media (width < 431px) {
  .mb_br {
    display: block;
  }
}

/*----------セクションタイトル----------*/
.contents_title h2 {
  background: linear-gradient(to bottom, #E8C356 0%, #B08C50 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 55px;
  letter-spacing: 0.3rem;
}
@media (width < 1441px) {
  .contents_title h2 {
    font-size: 50px;
  }
}
@media (width < 769px) {
  .contents_title h2 {
    font-size: 40px;
    padding-top: 5%;
  }
}
@media (width < 431px) {
  .contents_title h2 {
    font-size: 30px;
    padding-top: 8%;
  }
}

.contents_title .contents_subtitle {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5rem;
  padding: 0;
}
@media (width < 769px) {
  .contents_title .contents_subtitle {
    font-size: 14px;
  }
}

/*----------セクションアナウンス----------*/
.about_inner {
  position: relative;
}
.about_inner .section_anounce {
  position: absolute;
  left: 7%;
  top: -5%;
}
@media (width < 1441px) {
  .about_inner .section_anounce {
    left: 10%;
    top: -3%;
  }
}
@media (width < 769px) {
  .about_inner .section_anounce {
    left: 15%;
  }
}
@media (width < 431px) {
  .about_inner .section_anounce {
    left: 25%;
  }
}
.about_inner .section_anounce p {
  color: #E8C356;
}
.about_inner .section_anounce p::after {
  background-color: #E8C356;
}

.service_inner {
  position: relative;
}
.service_inner .section_anounce {
  position: absolute;
  left: 7%;
  top: 70%;
}
@media (width < 769px) {
  .service_inner .section_anounce {
    left: 9%;
    top: -15%;
  }
}
@media (width < 431px) {
  .service_inner .section_anounce {
    left: 16%;
  }
}
.service_inner .section_anounce p {
  color: #2D2D2D;
}
.service_inner .section_anounce p::after {
  background-color: #2D2D2D;
}

.section_anounce {
  transform: translateX(-50%);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section_anounce p {
  transform: rotate(90deg);
  transform-origin: left top;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  white-space: nowrap;
  margin: 0;
  position: relative;
}

.section_anounce p::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 140%;
  transform: translateX(5px) translateY(-50%);
  width: 1px;
  height: 50px;
  transform: rotate(90deg);
}

/*----------フェードイン----------*/
.fade_in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 2s ease, transform 2s ease;
}

.fade_in.active {
  opacity: 1;
  transform: translateY(0);
}

/*----------ヘッダー----------*/
header {
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.slide_nav_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 0 3%;
}

.header_logo {
  width: 100px;
  height: 105px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 10;
}
@media (width < 769px) {
  .header_logo {
    width: 80px;
    height: 85px;
  }
}
.header_logo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*----------言語切替ボタン----------*/
.language_btn {
  position: relative;
  display: inline-block;
}
.language_btn .selected {
  width: 120px;
  height: 40px;
  background-color: #BC9851;
  color: #fff;
  border: none;
  cursor: pointer;
  text-align: center;
}
@media (width < 431px) {
  .language_btn .selected {
    width: 90px;
    font-size: 14px;
  }
}
.language_btn .options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 120px;
  background-color: #BC9851;
  color: #fff;
  list-style: none;
  padding: 0;
  display: none;
  z-index: 100;
}
.language_btn .options.open {
  display: block;
}
.language_btn .options li {
  padding: 10px;
  cursor: pointer;
  text-align: center;
}
@media (width < 431px) {
.language_btn .options li {
    width: 90px;
    font-size: 14px;
  }
}
@media (width < 431px) {
.language_btn .options{
    width: 90px;
    font-size: 14px;
  }
}
.language_btn .options li:hover {
  background-color: #DCB755;
}

/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
.hamburger {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100px;
  margin: 0;
  cursor: pointer;
  position: relative;
  z-index: 550;
  transition: 0.5s all;
}

@media (width < 1101px) {
  .hamburger {
    width: 120px;
    height: 100px;
  }
}
@media (width < 769px) {
  .hamburger {
    height: 80px;
  }
}
@media (width < 431px) {
  .hamburger {
    width: 100px;
    height: 70px;
  }
}
.hamburger span,
.hamburger span::after,
.hamburger span::before {
  position: absolute;
  display: block;
  content: "";
  width: 50px;
  height: 3px;
  background-color: #000000;
  transition: all 0.5s;
}

@media (width < 1281px) {
  .hamburger span,
.hamburger span::after,
.hamburger span::before {
    width: 30px;
  }
}
.hamburger span::before {
  top: -10px;
}

.hamburger span::after {
  bottom: -10px;
}

.hamburger.open span {
  background-color: transparent;
}

.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.open span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ===============================================
メニューのスタイリング
=============================================== */
.nav {
  position: fixed;
  width: 70%;
  height: 100vh;
  top: 0;
  right: -120%;
  background-color: #2D2D2D;
  opacity: 0.9;
  padding: 10% 0 0 0;
  transition: all 0.5s;
  z-index: 500;
}
@media (width < 431px) {
  .nav {
    width: 100%;
    padding-top: 30%;
  }
}

.nav__list {
  display: block;
}

.nav__list li {
  padding-left: 5%;
}

.nav__item a {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  padding: 20px 0 20px 50px;
  text-transform: uppercase;
}

.nav__item a:hover {
  color: #B08C50;
  background-color: #fff;
  width: 60%;
}

.nav.open {
  right: 0;
}

/* ===============================================
ファーストビュー・スライドショー
=============================================== */
.top_fv {
  position: relative;
}
.top_fv::before {
  content: "";
  display: block;
  width: 70%;
  background-color: #2D2D2D;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

.top_fv_inner {
  padding: 10% 3%;
}
@media (width < 1441px) {
  .top_fv_inner {
    padding: 13% 3% 10% 3%;
  }
}
@media (width < 1281px) {
  .top_fv_inner {
    padding: 14% 0 10% 3%;
  }
}
@media (width < 769px) {
  .top_fv_inner {
    padding: 20% 0 10% 3%;
  }
}
@media (width < 431px) {
  .top_fv_inner {
    padding: 30% 0 20% 3%;
  }
}

.top_fv_wrapper {
  position: relative;
}

.fv_title {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 999;
}
@media (width < 1281px) {
  .fv_title {
    left: 2%;
  }
}
@media (width < 769px) {
  .fv_title {
    top: auto;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    bottom: 5%;
    left: -1%;
  }
}
@media (width < 431px) {
  .fv_title {
    bottom: 10%;
  }
}
.fv_title h1 {
  font-size: 35px;
}
@media (width < 1441px) {
  .fv_title h1 {
    font-size: 30px;
  }
}
@media (width < 769px) {
  .fv_title h1 {
    font-size: 25px;
  }
}
@media (width < 431px) {
  .fv_title h1 {
    font-size: 20px;
  }
}
.fv_title p {
  margin-top: 30px;
  font-size: 27px;
  font-weight: bold;
}
@media (width < 1441px) {
  .fv_title p {
    font-size: 23px;
  }
}
@media (width < 769px) {
  .fv_title p {
    font-size: 20px;
  }
}
@media (width < 431px) {
  .fv_title p {
    font-size: 16px;
    margin-top: 15px;
  }
}
.fv_title .font_noto {
  background-color: #fff;
  color: #A87E3D;
  text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.5);
  padding: 10px 0 10px 1rem;
}
@media (width < 431px) {
  .fv_title .font_noto {
    padding-left: 0.5rem;
  }
}
@media (width < 431px) {
  .fv_title .mb_fontnoto {
    display: inline-block;
  }
}

.container {
  width: 60%;
  margin-left: auto;
  height: 75vh;
  background-color: #000;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.slider-area {
  position: relative;
  z-index: 500;
  width: 100%;
  height: 75vh;
}
@media (width < 769px) {
  .slider-area {
    height: 85vh;
  }
}

.slider-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  animation: slideShow 40s linear infinite;
}

.slider-item:nth-child(1)  { animation-delay: 0s; }
.slider-item:nth-child(2)  { animation-delay: 5s; }
.slider-item:nth-child(3)  { animation-delay: 10s; }
.slider-item:nth-child(4)  { animation-delay: 15s; }
.slider-item:nth-child(5)  { animation-delay: 20s; }
.slider-item:nth-child(6)  { animation-delay: 25s; }
.slider-item:nth-child(7)  { animation-delay: 30s; }
.slider-item:nth-child(8)  { animation-delay: 35s; }

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@-webkit-keyframes slideShow {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  20% {
    opacity: 1;
  }
  40%, 100% {
    opacity: 0;
  }
}
@keyframes slideShow {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  5% {
    opacity: 1;
    animation-timing-function: ease-out;
  }
  12.5% {
    opacity: 1;
  }
  25%, 100% {
    opacity: 0;
  }
}

/*---------モバイル---------*/
.mb_container {
  display: none;
  width: 100%;
  height: 85vh;
  background-color: #000;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

@media (width < 769px) {
  .container {
    display: none;
  }
  .mb_container {
    display: block;
  }
}
/* ===============================================
アバウト
=============================================== */
.about {
  padding: 5% 0 10% 0;
}
@media (width < 1441px) {
  .about {
    padding: 10% 0 12% 0;
  }
}
@media (width < 769px) {
  .about {
    padding: 10% 0 15% 0;
  }
}
@media (width < 431px) {
  .about {
    padding: 17% 0 20% 0;
  }
}

.about_wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (width < 769px) {
  .about_wrapper {
    display: block;
    padding: 0 3%;
  }
}

.about_img {
  width: 45%;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}
@media (width < 769px) {
  .about_img {
    width: 100%;
  }
}
.about_img img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.about_text {
  width: 45%;
  padding: 0% 3% 0 0;
}
@media (width < 769px) {
  .about_text {
    width: 100%;
  }
}
.about_text h3 {
  padding-top: 7%;
  font-size: 20px;
  line-height: 3rem;
}
@media (width < 1441px) {
  .about_text h3 {
    font-size: 20px;
  }
}
@media (width < 769px) {
  .about_text h3 {
    font-size: 18px;
    line-height: 2.5rem;
    padding-top: 3%;
  }
}
@media (width < 431px) {
  .about_text h3 {
    font-size: 16px;
    padding-top: 7%;
  }
}
.about_text p {
  line-height: 3rem;
  font-size: 20px;
  padding-top: 5%;
}
@media (width < 1441px) {
  .about_text p {
    font-size: 16px;
    line-height: 2.5rem;
  }
}
@media (width < 769px) {
  .about_text p {
    font-size: 15px;
  }
}
@media (width < 431px) {
  .about_text p {
    font-size: 14px;
  }
}

/* ===============================================
サービス
=============================================== */
.service {
  padding: 5% 0 10% 0;
  position: relative;
}
@media (width < 431px) {
  .service {
    padding: 10% 0 15% 0;
  }
}
.service::after {
  content: "";
  background-color: #B3B3B3;
  width: 55%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
@media (width < 431px) {
  .service::after {
    width: 65%;
  }
}

.service_text {
  background-color: #2D2D2D;
  width: 70%;
  margin-left: auto;
  padding: 5% 10% 5% 5%;
}
@media (width < 769px) {
  .service_text {
    width: 95%;
    padding: 5% 10% 10% 7%;
  }
}
.service_text p {
  padding-top: 3%;
  color: #fff;
  font-size: 20px;
  line-height: 2.5rem;
}
@media (width < 1441px) {
  .service_text p {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .service_text p {
    font-size: 14px;
  }
}

.service_wrapper {
  max-width: 1440px;
  margin: 0 auto;
}
@media (width < 1441px) {
  .service_wrapper {
    max-width: 1280px;
  }
}
@media (width < 1281px) {
  .service_wrapper {
    max-width: 1100px;
  }
}
@media (width < 1101px) {
  .service_wrapper {
    max-width: 768px;
  }
}
@media (width < 769px) {
  .service_wrapper {
    width: 100%;
    padding: 0 3%;
  }
}
.service_wrapper .left {
  width: 90%;
  margin-right: auto;
}
@media (width < 431px) {
  .service_wrapper .left {
    width: 100%;
  }
}
.service_wrapper .right {
  width: 90%;
  margin-left: auto;
}
@media (width < 431px) {
  .service_wrapper .right {
    width: 100%;
  }
}

.service_contents {
  padding-top: 10%;
}

.service_contents_img {
  width: 100%;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}
.service_contents_img img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.service_contents_text {
  padding: 3% 0 0 0;
}
.service_contents_text h2 {
  font-size: 25px;
}
@media (width < 769px) {
  .service_contents_text h2 {
    font-size: 20px;
  }
}
@media (width < 431px) {
  .service_contents_text h2 {
    font-size: 18px;
    padding-top: 5%;
  }
}
.service_contents_text p {
  font-size: 18px;
  padding-top: 15px;
  line-height: 2.5rem;
}
@media (width < 769px) {
  .service_contents_text p {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .service_contents_text p {
    font-size: 14px;
    line-height: 2.2rem;
  }
}

/* ===============================================
取り扱い物件
=============================================== */
.latest {
  padding: 5% 0 3% 0;
}
@media (width < 1441px) {
  .latest {
    padding: 10% 0 5% 0;
  }
}

.single_latest {
  padding: 12% 0 10% 0;
  position: relative;
}
@media (width < 1281px) {
  .single_latest {
    padding: 15% 0 10% 0;
  }
}
@media (width < 769px) {
  .single_latest {
    padding: 20% 0 10% 0;
  }
}
@media (width < 431px) {
  .single_latest {
    padding: 25% 0 10% 0;
  }
}

.single_latest::after {
  content: "";
  display: block;
  background-color: #B3B3B3;
  width: 60%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.latest_inner .contents_title {
  text-align: center;
}

.latest_wrapper {
  max-width: 1440px;
  margin: 0 auto;
}
@media (width < 1441px) {
  .latest_wrapper {
    max-width: 1280px;
  }
}
@media (width < 1281px) {
  .latest_wrapper {
    max-width: 1100px;
  }
}
@media (width < 1101px) {
  .latest_wrapper {
    padding: 0 5%;
  }
}
@media (width < 431px) {
  .latest_wrapper {
    padding: 5% 3%;
  }
}
.latest_wrapper ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
  padding-top: 5%;
}
@media (width < 1441px) {
  .latest_wrapper ul {
    gap: 20px;
  }
}
@media (width < 769px) {
  .latest_wrapper ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.latest_wrapper li {
  border: solid 1px #B08C50;
  padding: 10% 0;
  background-color: #fff;
}

.latest_img {
  width: 80%;
  margin: 0 auto;
}
.latest_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.latest_text {
  padding: 3% 0 0% 10%;
}
@media (width < 431px) {
  .latest_text {
    font-size: 14px;
  }
}

.latest_btn {
  background-color: #B08C50;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  margin: 3% auto 0 auto;
  padding: 15px 0;
  transition: all 0.4s;
}
.latest_btn:hover {
  opacity: 0.8;
}
@media (width < 431px) {
  .latest_btn {
    margin: 15% auto 0 auto;
  }
}

/*-----個別ページ-----*/
.single_latest_box {
  margin-top: 5%;
  border: solid 1px #B08C50;
  padding: 10% 0;
  background-color: #fff;
}
.single_latest_box .latest_img {
  width: 80%;
  margin: 0 auto;
}
.single_latest_box .latest_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ===============================================
お知らせ
=============================================== */
.news {
  padding: 10% 0;
}
.news .contents_subtitle {
  color: #fff;
}
.news ul {
  padding-top: 10%;
}
@media (width < 431px) {
  .news ul {
    padding-top: 10%;
  }
}
.news li a {
  display: flex;
  align-items: center;
  color: #fff;
  border-bottom: solid 1px #fff;
  padding-bottom: 15px;
  margin-bottom: 5%;
}
@media (width < 769px) {
  .news li a {
    display: block;
  }
}
.news .meta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: nowrap;
}

@media (width < 769px) {
  .news_inner {
    padding: 0 3%;
  }
}

.news_box {
  max-width: 1440px;
  margin: 0 auto;
  background-color: #2D2D2D;
  padding: 3% 10% 7% 10%;
}
@media (width < 1441px) {
  .news_box {
    max-width: 1280px;
  }
}
@media (width < 1281px) {
  .news_box {
    max-width: 1100px;
  }
}
@media (width < 1101px) {
  .news_box {
    max-width: 768px;
  }
}
@media (width < 769px) {
  .news_box {
    padding: 5% 5% 10% 5%;
  }
}

.date {
  padding-left: 1rem;
}

.category_label {
  background-color: #B08C50;
  color: #fff;
  padding: 5px 10px;
  margin: 0 30px;
}
@media (width < 431px) {
  .category_label {
    font-size: 14px;
  }
}

.viewall_btn {
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: right;
}
.viewall_btn img {
  width: 20px;
  margin-left: 15px;
}
@media (width < 431px) {
  .viewall_btn {
    padding-top: 10%;
  }
}

@media (width < 769px) {
  .news_title {
    padding-left: 1rem;
  }
}

/* ===============================================
メールフォーム
=============================================== */
.mail_form .contents_title {
  text-align: center;
}

.mail_form_inner .mailanounce {
  text-align: center;
  padding: 30px 0;
  line-height: 2rem;
}

.mail_form_wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 5% 0 0 0;
}
@media (width < 1441px) {
  .mail_form_wrapper {
    max-width: 1280px;
  }
}
@media (width < 1281px) {
  .mail_form_wrapper {
    max-width: 1100px;
  }
}
@media (width < 1101px) {
  .mail_form_wrapper {
    max-width: 768px;
  }
}
@media (width < 769px) {
  .mail_form_wrapper {
    padding: 0 5%;
  }
}

@media (width < 431px) {
  .mailanounce {
    font-size: 14px;
  }
}

/*-----------コンタクトフォーム----------*/
.contactform_box {
  border: #B08C50 solid 1px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  padding: 5%;
}

.page_contact_main_box {
  padding: 10% 5%;
}

@media (width < 431px) {
  .page_contact_main_box {
    padding: 10% 5% 15% 5%;
  }
}
.page_contact_main_box dl {
  padding: 3% 0;
  border-top: solid 1px #B08C50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media (width < 769px) {
  .page_contact_main_box dl {
    display: block;
  }
}
.page_contact_main_box dt {
  width: 40%; /* ラベル部分の幅 */
  padding-left: 1rem;
}

@media (width < 769px) {
  .page_contact_main_box dt {
    width: 100%;
    padding: 0 0 3% 0;
  }
}
.page_contact_main_box dd {
  width: 60%; /* 入力フィールドの幅 */
  border: solid 1px #B08C50;
}

@media (width < 769px) {
  .page_contact_main_box dd {
    width: 100%;
  }
}
.page_contact_main_box .required {
  display: inline-block;
  margin-left: 8px;
  padding: 5px 15px;
  background-color: #B08C50;
  color: #fff;
  font-size: 12px;
  vertical-align: middle;
}

.page_contact_main_box input {
  width: 100%;
  padding: 2% 1rem;
  background-color: #fff;
}

.page_contact_main_box textarea {
  width: 100%;
  padding: 2% 1rem 10% 1rem;
  resize: none;
  background-color: #fff;
}

.pparea_btnbox {
  padding: 5% 0 20px 0;
}

.pp_checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 14px;
}
.pp_checkbox a {
  color: #B08C50;
}

.pp_checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
}

/*コンタクトボタン・アニメーション*/
.page_contact_formbtnarea {
  width: 30%;
  margin: 0 auto;
  text-align: center;
}

@media (width < 769px) {
  .page_contact_formbtnarea {
    font-size: 20px;
    width: 50%;
  }
}
.page_contact_formbtn {
  font-size: 20px;
  color: #000;
  background-color: #fff;
  border: solid 1px #B08C50;
  display: inline-block;
  width: 100%;
  padding: 5% 0;
  cursor: pointer;
  transition: all 0.4s;
}

@media (width < 431px) {
  .page_contact_formbtn {
    font-size: 16px;
    padding: 7% 0;
  }
}
.page_contact_formbtn:hover {
  border-radius: 15px;
}

.page_contct_anouncetxt {
  text-align: center;
  padding: 3% 0;
}

/* ===============================================
メッセージアス
=============================================== */
.messageus {
  padding: 5% 0;
  position: relative;
  z-index: 0;
}
.messageus::after {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 200px;
  background-color: #B3B3B3;
}
@media (width < 431px) {
  .messageus::after {
    height: 150px;
  }
}
@media (width < 431px) {
  .messageus {
    padding: 10% 0 20% 0;
  }
}

.messageus_inner {
  padding: 5% 0;
}
@media (width < 431px) {
  .messageus_inner {
    padding: 5% 0 10% 0;
  }
}
.messageus_inner .contents_title {
  text-align: center;
}

.messageus_box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 1100px;
  margin: 0 auto;
}
@media (width < 1101px) {
  .messageus_box {
    max-width: 768px;
  }
}
@media (width < 769px) {
  .messageus_box {
    padding: 0 5%;
  }
}

.messageus_qr {
  width: 25%;
}
@media (width < 769px) {
	.messageus_qr {
	  width: 35%;
	}
}
.messageus_qr img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ===============================================
フッター
=============================================== */
footer {
  background-color: #2D2D2D;
  padding: 3% 0 0 0;
}
@media (width < 431px) {
  footer {
    padding: 7% 0 0 0;
  }
}
footer .copyright {
  text-align: center;
  color: #fff;
  padding: 2% 0 15px 0;
}
@media (width < 1281px) {
  footer .copyright {
    font-size: 14px;
  }
}
@media (width < 769px) {
  footer .copyright {
    padding: 5% 0 15px 0;
  }
}

.footer_logo {
  width: 140px;
  height: 134px;
  margin: 0 auto;
}
@media (width < 431px) {
  .footer_logo {
    width: 80px;
    height: 77px;
  }
}
.footer_logo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.footer_text{
	text-align: center;
	color: #fff;
	padding-top: 30px;
}
@media (width < 431px){
	.footer_text{
		font-size: 14px;
}
}

/* .privacy_text {
  padding: 0% 3%;
}
@media (width < 431px) {
  .privacy_text {
    font-size: 14px;
  }
}
 */

/* ===============================================
お知らせ・シングルページ
=============================================== */
.privacy_text img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
}

.privacy_text p {
  line-height: 1.8;
  margin-bottom: 1.5em;
  font-size: 1rem;
}

.single_post_title {
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 2px solid #ccc;
  margin: 0 3% 1.5rem 3%;
  padding: 0 3% 0.5rem 3%;
}
/* ===============================================
お知らせ・アーカイブページ
=============================================== */
.archive_wrappwr{
	position: relative;
}
.archive_wrapper::after{
  content: "";
  background-color: #B3B3B3;
  width: 55%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

fieldset.hidden-fields-container {
  display: none !important;
}

/*# sourceMappingURL=style.css.map */