@charset "utf-8";

/*-------------------------------------*/
/*	トップページ	*/
/*-------------------------------------*/
/*メインビジュアル*/
/* .mv{
	width: 100%;
	height: 100vh;
	background: #000;
	position: fixed;
	z-index: -1;
}
.mv::after{
content: "";
width: 100%;
height: 100vh;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.226); 
  left: 0;
  top: 0;
z-index: 2;
}
.mv video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
	z-index: 1;
} */
.mv {
  width: 100%;
  height: 100vh;
  background: #000;
  position: fixed;
  z-index: -1;
  overflow: hidden; /* はみ出し防止 */
}

.mv video {
  display: block;
  width: 100%;
  height: 100%;
  /* 縦横比を維持したまま、エリアを埋め尽くす（拡大をブラウザに最適化させる） */
  object-fit: cover; 
  
  /* ぼやけ防止のおまじない */
  backface-visibility: hidden;
  transform: translateZ(0); 
}

/* 擬似要素（黒い透過膜） */
.mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); 
  z-index: 2;
  /* 膜があることで画質が悪く見えるなら、ここに少し「ノイズ」を足す手法もあります */
}
.blank{
  position: relative;
    width: 100%;
    height: 100dvh;
}
.mv__inner{
  position: absolute;
bottom: 10%;
left: 5%;
  z-index: 2;
  width: 90%;
}
.mv__inner .mv__ttl{
  color: #FFFFFF;
  font-size: 6.0rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 1000px){
.mv__inner .mv__ttl{
  font-size: 5.0rem;
}
}
@media screen and (max-width: 768px){
  .mv__inner{
    position: absolute;
    top: 50%;
    left: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.mv__inner .mv__ttl{
  font-size: 3.0rem;
  text-align: center;
}
}
@media screen and (max-width: 550px){
.mv__inner .mv__ttl{
  font-size: 2.6rem;
  text-align: center;
}
}

/* トップ　当社の強み */
#strengths{
    background-color: rgba(255, 255, 255, 0.90);
}
#strengths ul{
    display: flex;
    gap: 0 50px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.strengths_box{
    width: calc( 100% / 2 - 50px );
    max-width: 600px;
    margin-bottom: 80px;
    position: relative;
}
.strengths_box .no{
   font-family: "Cormorant", serif;
   font-size: 9.0rem;
   color: var(--accent-gold);
    position: absolute;
    top: -60px;
    left: 10px;
    line-height: 1;
    z-index: 1;
}
.strengths_box img{
margin-bottom: 20px;
}
.strengths_box h3{
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--main-navy);
  margin-bottom: 20px;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  #strengths ul{
    flex-direction: column;
    gap: 0;
}
.strengths_box{
    width: 100%;
    max-width: 600px;
    margin: 0 auto 80px auto;
}
}
@media screen and (max-width: 768px) {
  .strengths_box{
    width: 90%;
    margin: 0 auto 80px auto;
}
.strengths_box h3{
  font-size: 2.4rem;
}
}
@media screen and (max-width: 550px) {
  .strengths_box .no{
   font-size: 6.0rem;
   top: -40px;
}
}

/* トップ　ごあいさつ */
#message{
    background-color: #00213B;
    background-image: url("../images/bg.png");
    color: #FFFFFF;
}
#message .ttl{
    color: #FFFFFF;
    text-align: left;
}
#message .ttl span{
    color: #FFFFFF;
}
#message dl{
    display: flex;
    justify-content: space-between;
}
#message dl dt{
    max-width: 450px;
    width: 100%;
}
#message dl dd{
    width: 100%;
    padding-left: 120px;
}
#message dl dd p{
    margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  #message dl dt{
    max-width: 400px;
    width: 100%;
}
#message dl dd{
    width: 100%;
    padding-left: 60px;
}
}
@media screen and (max-width: 991px) {
    #message dl dt{
    max-width: 250px;
    width: 100%;
}
#message dl dd{
    width: 100%;
    padding-left: 40px;
}
}
@media screen and (max-width: 768px) {
  #message .ttl{
    text-align: center;
}
        #message dl{
    flex-direction: column;
}
      #message dl dt{
    max-width: 300px;
    width: 100%;
    margin: 0 auto 20px auto;
}
#message dl dd{
    width: 100%;
    padding-left: 0;

}
}
@media screen and (max-width: 550px) {
}
/* Member Card Styles */
#member{
  background-color: #F5F3F2;
}
.member-card {
    border: none;
    transition: transform 0.3s ease;
}
.member-info {
   padding: 30px;
   color: var(--main-navy);
}
.member-info h5{
font-size: 2.6rem;
}
.btn-outline-navy {
    color: var(--main-navy);
    border-color: var(--main-navy2);
    background-color: var(--main-navy2);
    color: #FFFFFF;
    border-radius: 50px; /* 四角いボタン */
    font-size: 1.6rem;
    padding: 0.8em 0.5em;
    letter-spacing: 0.1em;
    text-align: center;
    display: block;
    width: 100%;
    position: relative;
}
.btn-outline-navy::before {
content: "\f105";
    font-family: FontAwesome;
    position:absolute;
    top:50%;
    right:15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index:1;

}

.btn-outline-navy:hover {
    background-color: var(--main-navy);
    color: #fff;
}

/* Custom Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%; /* 位置の微調整 */
}

.carousel-control-prev-icon-custom,
.carousel-control-next-icon-custom {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Modal Custom Styles */

/* モーダルの背景を少し濃くする */
.modal-backdrop.show {
    opacity: 0.7; 
}
.modal-content {
    padding: 3rem;
}
.modal-body dl{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    align-items: center;
    justify-content: space-between;
}
.modal-body dl dt{
width: 50%;
}
.modal-body dl dd{
width: 45%;
}
.modal-body dl dd p{
  color: var(--main-navy);
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.modal-body dl dd h3{
  color: var(--main-navy);
  font-size: 2.4rem;
}
/* モーダル内のテキストスタイル調整 */
.member-detail p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

/* 閉じるボタンの調整 */
.modal-header .btn-close {
    margin-bottom: 1rem;
    opacity: 0.5;
        z-index: 1;
        font-size: 2.8rem;
}
.modal-header .btn-close:hover {
    opacity: 1;
}
@media (max-width: 1400px) {
    .member-info {
font-size: 80%;
    }
}
/* スマホ対応: モバイルでは1列にする調整 */
@media (max-width: 767px) {
  .member-info {
    padding: 20px 20px 10px 20px;
}
.btn-outline-navy {
    font-size: 1.4rem;
}
    .member-card {
        margin-bottom: 20px;
    }
    .modal-content {
    padding: 1rem;
}
    .member-detail p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}
.modal-body dl dd p{
  font-size: 1.2rem;
}
.modal-body dl dd h3{
  font-size: 2.0rem;
}
}
/* トップ　お知らせ */
#top #news{
    background-color: #FFFFFF;
}

@media screen and (max-width: 991px) {

}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 550px) {

}

/* 下層ページバナー */
.action-section {
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
  justify-content: space-between;
}

.action-item {
  position: relative;
  overflow: hidden; /* はみ出した画像を隠す（重要！） */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none; /* リンクの下線を消す */
  width: 50%;  
    height: 450px; /* 必要に応じて調整 */
}

/* 背景画像の初期状態 */
.action-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease; /* 拡大のスピード感 */
  z-index: 1;
}

/* 画像の指定 */
.buy-img { background-image: url('../images/index/service01.jpg'); }
.sell-img { background-image: url('../images/index/service02.jpg'); }
.rent-img { background-image: url('../images/index/service03.jpg'); }
.service-img { background-image: url('../images/index/service04.jpg'); }

/* マウスオーバーで画像を1.1倍に拡大 */
.action-item:hover .action-bg {
  transform: scale(1.1);
}

/* オーバーレイ（暗くする層） */
.action-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2); /* 初期は薄く */
  transition: background 0.3s;
  z-index: 2;
}

.action-item:hover .action-overlay {
  background: rgba(0, 0, 0, 0.4); /* ホバーで少し暗くして文字を強調 */
}

/* テキストコンテンツ（画像と一緒に拡大させない） */
.action-content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
}



/* 画像にある茶色のバナー風デザイン */
.action-content h3 {
  font-size: 3.8rem;
  letter-spacing: 0.1em;
}
.action-content h3 span{
  background:var(--accent-gold);
  padding: 12px 12px;
  display: inline-block;
  margin: 5px
}

/* スマホ対応 */
@media (max-width: 991px) {
  .action-section {
    flex-direction: column;
  }
  .action-item {
  width: 100%;  
    height: 300px; /* 必要に応じて調整 */
}
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 550px) {
  .action-content h3 {
  font-size: 2.4rem;
}
  .action-item {
  width: 100%;  
    height: 200px; /* 必要に応じて調整 */
}
}
/*-------------------------------------*/
/*	ページ共通	*/
/*-------------------------------------*/
.ttl{
  margin-bottom: 60px;
  position: relative;
  line-height: 1;
  font-size: 2.0rem;
  color: var(--accent-gold);
  text-align: center;
}
.ttl span{
  font-family: "Cormorant", serif;
  font-size: 6rem;
  font-weight: 400;
  display: block;
  margin-bottom: 10px;
  color: var(--main-navy);
  letter-spacing: 0.1em;
}
#single hr {
    margin-top: 40px;
    margin-bottom: 40px;
    border: 0;
    border-top: 1px solid #000000;
}
.base_list li {
  margin-bottom: 30px;
}
.base_list li:last-child {
  margin-bottom: 0;
}
a .img_wrap {
  overflow: hidden;
  width: 100%;
}
a:hover .img_wrap img {
  transform: scale(1.1);
  transition-duration: 0.5s;
  opacity: 1;
}
.img_radius25 {
  border-radius: 25px;
  overflow: hidden;
}
#sub_ttl{
  background-color: var(--main-navy);
  text-align: center;
  display: flex;
  align-items: center;
  position: relative;
}

#sub_ttl h2{
  text-align: center;
  color: #FFFFFF;
  margin: 0 auto;
  font-size: 4.8rem;
  padding-top: 120px;
  padding-bottom: 40px;
}
#sub_img{
  width: 100%;
  height: 520px;
  background-color: var(--main-navy);
  position: relative;
}
#sub_img::before{
  content: "";
  width: 80%;
  height: 100%;
    background-size: cover;
  background-position: center;
  position: absolute;
 right: 0;
  bottom: 0;
}
#sub_img.subimg_rent::before{
  background-image: url("../images/page/subimg_rent.jpg");
}
#sub_img.subimg_buy::before{
  background-image: url("../images/page/subimg_buy.jpg");
}
#sub_img.subimg_sell::before{
  background-image: url("../images/page/subimg_sale.jpg");
}
#sub_img.subimg_service::before{
  background-image: url("../images/page/subimg_service.jpg");
}
#sub_img.subimg_company::before{
  background-image: url("../images/page/subimg_company.jpg");
}
.page_ttl{
  font-size: 3.2rem;
  color: var(--main-navy);
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  #sub_img{
  width: 100%;
  height: 400px;
}
#sub_img::before{
  width: 100%;
  height: calc( 100% - 80px );
}
}
@media screen and (max-width: 768px) {
.ttl{
  margin-bottom: 40px;
  font-size: 1.6rem;
}
.ttl span{
  font-size: 5rem;
}
#sub_ttl h2{
  font-size: 3rem;
  padding-top: 120px;
  padding-bottom: 20px;
}
.page_ttl{
  font-size: 2.4rem;
  color: var(--main-navy);
  margin-bottom: 20px;
}
  #sub_img{
  width: 100%;
  height: 250px;
}
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/*	会社概要	*/
/*-------------------------------------*/

/*-------------------------------------*/
/*	不動産を買いたい方へ	*/
/*-------------------------------------*/
.txt_area span{
  color: var(--accent-gold);
  font-size: 2.4rem;
  font-weight: 500;
}
/* ステップ数字の装飾 */
.step-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    opacity: 0.5;
    position: absolute;
    top: 10px;
    right: 20px;
}
.card{
  padding: 30px;
}
.old .card{
  background-color: #F5F3F2;
}
.new .card{
  background-color: #FFFFFF;
}
.card h4{
  font-size: 2.4rem;
  color: var(--main-navy);
  margin-bottom: 20px;
  line-height: 1.5;
}
.card h4 span{
  font-size: 7rem;
  color: var(--accent-gold);
  font-family: "Cormorant", serif;
  line-height: 1;
  margin-right: 10px;
}
/* Before/After フロー */
.case .caption{
  color: var(--accent-gold);
  font-size: 2.2rem;
}
.case_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 40px;
  margin-bottom: 40px;
 
}
.case_box{
  width: calc( 100% / 3 - 40px );
  border: 1px solid var(--main-navy);
  padding: 30px;
  border-radius: 5px;
  position: relative;
  text-align: center;
}
.case_box::before{
  content: url("../images/page/works_arrow.svg");
    position: absolute;
    top: 50%;
    right: -45px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display: inline-block;
}
.case_box:last-of-type:before{
  content: none;
}
.case_box h4{
margin-bottom: 20px;
}
.case_box h4 span{
  display: block;
  font-size: 5rem;
  color: var(--accent-gold);
  font-family: "Cormorant", serif;
}
.case_box p{
margin-bottom: 10px;
}
.case_box p span{
display: block;
color: #767676;
font-size: 1.6rem;
}
.case_box .result{
  font-size: 2.4rem;
  color: var(--main-navy);
  padding: 0.5em;
  border-radius: 5px;
  background-color: #F5F3F2;
}
.case_box .result span{
display: block;
font-size: 1.4rem;
margin-top: 10px;
}
ul.check_list{
  max-width: 900px;
  margin: 0 auto;
}
ul.check_list li{
  margin-bottom: 20px;
  background-color: #F5F3F2;
  padding: 1em 1em 1em 60px;
  font-size: 2.4rem;
  position: relative;
  font-weight: 500;
  line-height: 1.5;
}
ul.check_list li::before{
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("../images/page/ico_check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);

}
.new{
  background-color: var(--main-navy);
  background-image: url("../images/bg.png");
}
@media screen and (max-width: 1200px) {
  .case_list{
  flex-direction: column;
  gap: 60px 20px;
 
}
.case_box{
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.case_box::before{
  content: url("../images/page/down_arrow.svg");
    position: absolute;
    top: auto;
    right:auto;
    display: block;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
  .case .caption{
  font-size: 1.8rem;
}
.card h4{
  font-size: 2.0rem;
}
.card h4 span{
  font-size: 5rem;
  color: var(--accent-gold);
  font-family: "Cormorant", serif;
  line-height: 1;
  margin-right: 0;
  display: block;
  margin-bottom: 10px;
}
.case_box{
  padding: 20px;
  width: 90%;
}
.case_box h4 {
margin-bottom: 20px;
}
.case_box h4 span{
  font-size: 4rem;
}
ul.check_list li{
  margin-bottom: 10px;
  padding: 1em 1em 1em 60px;
  font-size: 1.8rem;
}
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/*	不動産を売りたい方へ	*/
/*-------------------------------------*/
.merit_box{
  background-color: #F5F3F2;
}
.merit_box h3{
  background-color: var(--main-navy2);
  color: #FFFFFF;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.5;
  padding: 20px 15px;
}
.merit_box h3 span{
  font-size: 1.8rem;
}
.merit_box dl{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px 0px 10px;
   color: var(--main-navy);
}
.merit_box dl dt{
  width: 35%;
  text-align: center;
}
.merit_box dl dd{
  width: 65%;
  padding: 20px;
  line-height: 1.5;
  font-size: 2.2rem;
}
#sell .caption{
  text-align: center;
}
#sell .caption span{
  color: var(--accent-gold);
  font-size: 2.8rem;
}
.flow{
  background-color: #F5F3F2;
}
.flow ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 20px;
}
.flow ul li{
  width: calc( 100% / 4 - 20px );
  text-align: center;
  position: relative;
  padding: 60px 20px;
 background-color: #FFFFFF;
  border-radius: 5px;
  font-size: 2.4rem;
  line-height: 1.5;
}
.flow ul li span{
  font-size: 1.4rem;
}
.flow ul li .no{
  font-size: 9rem;
   font-family: "Cormorant", serif;
   color: var(--accent-gold);
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    line-height: 1;
    z-index: 1;
}
@media screen and (max-width: 991px) {
  .flow ul li{
  width: calc( 100% / 2 - 20px );
  text-align: center;
  position: relative;
  padding: 40px 20px;
 background-color: #FFFFFF;
  border-radius: 5px;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 40px;
}
}
@media screen and (max-width: 768px) {
  .merit_box h3{
  font-size: 2rem;
}
.merit_box h3 span{
  font-size: 1.4rem;
}
.merit_box dl dd{
  font-size: 1.8rem;
}
.merit_box dl dt{
  width: 30%;
}
.merit_box dl dd{
  width: 70%;
  padding: 10px;
}
.flow ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 10px;
}
  .flow ul li{
  font-size: 1.8rem;
  width: calc( 100% / 2 - 10px );
  padding: 30px 15px;
}
.flow ul li .no{
  font-size: 6rem;
    top: -40px;
}
}
@media screen and (max-width: 550px) {
  #sell .caption span{
  color: var(--accent-gold);
  font-size: 2.0rem;
}
}
/*-------------------------------------*/
/*	居住支援	*/
/*-------------------------------------*/
.service_box{
  background-color: #F5F3F2;
  position: relative;
  padding-bottom: 40px;
}
.service_box .inner{
padding: 20px;
}
.service_box h3{
  color: var(--accent-gold);
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.5;
}
.service_box a{
position: absolute;
bottom: 0;
left: 0;
width: 100%;
display: block;
padding: 20px;
text-align: center;
}
#service_dtl{
  background-color: var(--main-navy);
  background-image: url("../images/bg.png");
}
.service_content{
  background-color: #F5F3F2;
  padding: 60px;
  margin-bottom: 60px;
}
.service_content ul.check_list li{
  background-color: #FFFFFF;

}
@media screen and (max-width: 991px) {
  .service_content{
  padding: 40px;
  margin-bottom: 60px;
}
}
@media screen and (max-width: 768px) {
  .service_box h3{
  font-size: 2.0rem;
}
  .service_content{
  padding: 20px;
  margin-bottom: 40px;
}
}
@media screen and (max-width: 550px) {
}

/*-------------------------------------*/
/*	探す	*/
/*-------------------------------------*/
.cs{
   font-family: "Cormorant", serif;
   text-align: center;
   font-weight: 500;
   margin-bottom: 60px;
   font-size: 5.0rem;
   color: #989898;
}
.col_box.rent_box{
  margin-bottom: 40px;
}
.rent_box h3{
  background-color: var(--main-navy2);
  color: #FFFFFF;
  padding: 10px 15px;
  font-size: 2.0rem;
  text-align: center;
}
.rent_box .inner{
background-color: #F5F3F2;
}
.rent_box .inner ul{
  display: flex;
  justify-content: space-between;
  padding: 15px;
  align-items: center;
  border-bottom: 1px solid var(--main-navy);
}
.rent_box .inner ul li{
  width: 48%;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--main-navy);
}
.rent_box .inner ul li:last-child{
  text-align: right;
}
.rent_box .inner ul li:last-child span{
  font-size: 2.4rem;
}
.rent_box p{
  font-size: 1.6rem;
  padding: 1em;
   color: var(--main-navy);
}

/*　詳細ページ　*/
.rent_detail{
background-color: #F5F3F2;
}
.rent_detail ul{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--main-navy);
}
.rent_detail ul li{
  width: 48%;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--main-navy);
  padding: 1em;
}
.rent_detail ul li:last-child{
  text-align: right;
}
.rent_detail ul li:last-child span{
  font-size: 2.4rem;
}
.rent_detail dl{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
   color: var(--main-navy);
   padding: 20px;
}
.rent_detail dl dt{
  width: 30%;
  margin-bottom: 10px;
  font-weight: normal;
}
.rent_detail dl dd{
  width: 68%;
  margin-bottom: 10px;
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 550px) {
  .cs{
   font-size: 4rem;
}
}
/*-------------------------------------*/
/*	お知らせ一覧	*/
/*-------------------------------------*/

/* カテゴリーラベル */
.cat,a.cat {
  letter-spacing: 0.05em;
  color: var(--main-navy);
  text-align: center;
  display: inline-block;
  padding: 0.7em 1em;
  font-size: 1.2rem;
  line-height: 1;
  background: #F5F3F2;
	border-radius: 50px;
}
a.cat:hover {
  background-color: var(--main-navy);
  color: #FFFFFF;
}
.news_list {
  padding: 0;
	border-top: 1px dotted #707070;
}
.news_list li{
	padding-top: 20px;
	border-bottom: 1px dotted #707070;
}
.news_list .item {
  display: flex;
  flex-wrap: nowrap;
  text-decoration: none;
  align-items: baseline;
}
.news_list .item .date {
  margin: 0;
  min-width: 100px;
  color: #666;
  padding: 0 15px 0 0;
	line-height: 2;
	font-size: 1.8rem;
  font-family: "Cormorant", serif;
}
.news_list .item .category {
  margin: 0;
  min-width: 120px;
  padding: 0 15px 0 0;
}
.news_list .item .category a.cat{
  width: 100%;
}
.news_list .item .title {
  margin: 0;
  width: 100%;
	line-height: 2;
}
.news_list .item .title a{
   display: block;
	  padding: 0 0.5em 20px 0.5em;
	color: #000000;
}
.news_list .item .title a:hover {
  opacity: 0.7;
	color: #000;
}
@media screen and (max-width: 991px) {}
@media screen and (max-width: 768px) {
  .news_list .item {
    flex-wrap: wrap;
  }
  .news_list .item .date {
    min-width: 100px;
  }
.news_list .item .title a{
   display: block;
	  padding: 15px 0;
  }
}
@media screen and (max-width: 550px) {}



/*-------------------------------------*/
/*	投稿　共通	*/
/*-------------------------------------*/
.thm{
  text-align: center;
  margin-bottom: 40px;
}
.flexslider .slides::after{
  content:"";
  display:block;
  clear:both;
}
.metaslider img{
  width:100%;
  height:auto;
  display:block;
}
/*ページャー*/
#pager {
  margin: 40px 0;
  border-bottom: 1px solid #AAAAAA;
  border-top: 1px solid #AAAAAA;
}
#pager li.prev {
  width: 50%;
  float: left;
}
#pager li.next {
  width: 50%;
  float: right;
  text-align: right;
}
#pager li a {
  display: block;
  padding: 1em 0;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}
#pager li a:hover {
  color: #0290D4;
}
#pager li.prev a::before {
  content: "\f104";
  font-family: FontAwesome;
  margin-right: 10px;
  color: #000;
}
#pager li.next a::after {
  content: "\f105";
  font-family: FontAwesome;
  margin-left: 10px;
  color: #000;
}
/*ページネーション*/
.wp-pagenavi {
  clear: both;
  margin: 40px auto auto;
  text-align: center;
  font-size: 100%;
}
.wp-pagenavi a {
  text-decoration: none !important;
  padding: 1em 1.2em !important;
  margin: 3px;
  display: inline-block;
  color: #666 !important;
  background: #FFFFFF;
  border: 1px solid #666;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-size: 1.6rem;
  font-weight: 600;
}
.wp-pagenavi span {
  color: #666;
}
.wp-pagenavi span.current {
  text-decoration: none !important;
  padding: 1em 1.2em !important;
  margin: 3px;
  display: inline-block;
  border: 1px solid #666;
  color: #FFFFFF;
  background: #666;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 600;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
  border-color: #313131 !important;
}
.wp-pagenavi a:hover {
  border: 1px solid #666;
  color: #FFFFFF !important;
  text-decoration: none !important;
  background: #666;
  padding: 1em 1.2em !important;
}
.wp-pagenavi a:hover span {
  color: #FFFFFF;
}
.wp-pagenavi span {
  border: none !important;
}
.extend {
  padding: 0 10px 0 10px;
}
@media screen and (max-width: 768px) {
  .previouspostslink, .nextpostslink {
    font-size: 1.4rem;
  }
}
/*-------------------------------------*/
/*	フォーム	*/
/*-------------------------------------*/
#contact .tel{
  color: var(--accent-gold);
  font-size: 4.0rem;
}
#contact .bt_sns{
  width: 100%;
  max-width: 300px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  outline: none;
  transition: ease .2s;
  padding: 1.2em 2em;
  line-height: 1;
  text-decoration: none !important;
  color: #FFFFFF !important;
  /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);*/
  font-size: 1.6rem;
	background-color: var(--main-navy2);
	border-radius: 10px;
	font-weight: 600;
	text-align: center;
}
#contact .bt_sns img{
  vertical-align: middle;
  margin-right: 10px;
}
#contact .bt_sns:hover{
	background-color: var(--main-navy);
}
.form_area{
background-color: #F5F3F2;
  padding: 40px;
  border-radius: 10px;
}
.form_area h4 {
  margin-top: 40px !important;
  position: relative;
  border: none !important;
  padding: 0 !important;
  background: none !important;
}
.submit_btn_wrap {
  position: relative;
  width: 220px;
  margin: 0 auto;
}
ul.submit2_btn_wrap {
  position: relative;
  width: 50%;
  margin: 0 auto;
  text-align: center;
}
ul.submit2_btn_wrap li {
  display: inline-block;
  width: 200px;
  margin-left: 5px;
}
.submit_btn {
  width: 100%;
  padding: 1em 1.5em;
  display: inline-block;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  border: none;
  background: var(--main-navy2);
  border-radius: 10px;
  color: #FFFFFF;
}
.submit_btn:hover {
  background: #13285F;
  text-decoration: none;
  color: #FFFFFF;
}
.back_btn {
  width: 100%;
  padding: 1em 1.5em;
  display: inline-block;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  border: none;
  background: #AAAAAA;
  border-radius: 10px;
  color: #FFFFFF;
}
.back_btn:hover {
  color: #FFFFFF;
  background: #707070;
  text-decoration: none;
}
/*-------------------------------------*/
/*	フォーム関連	*/
input::-webkit-input-placeholder {
  color: #989898;
}
input:-ms-input-placeholder {
  color: #989898;
}
input::-ms-input-placeholder {
  color: #989898;
}
input::placeholder {
  color: #989898;
}
.must {
  padding: 0.2em 1em;
  display: inline-block;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 400;
  border-radius: 3px;
  background: #E5006A;
  margin-right: 10px;
  vertical-align: middle;
}
.nini {
  padding: 0.2em 1em;
  display: inline-block;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 400;
  border-radius: 3px;
  background: #00599F;
  margin-right: 10px;
  vertical-align: middle;
}
.privacy_box {
  background-color: #fafafa;
  margin-bottom: 20px;
  border-radius: 10px;
  font-size: 1.4rem;
  border: 1px solid #707070;
}
.privacy_inner {
  width: auto;
  height: 200px;
  overflow-y: scroll;
  padding: 22px;
  font-size: 100%;
}
.consent_check_wrap {
  padding: 20px;
	margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  background: #FFFFFF;
  border: 2px solid #144DA0;
  border-radius: 10px;
}
.consent_check_wrap p a {
  text-decoration: underline;
	color:  #0071bc;
}
.form_area :focus {
  outline: solid 2px #3e4f69;
}
.form_area input[type="text"], .form_area input[type="email"], .form_area input[type="tel"], .form_area textarea, .form_area radio, .form_area select {
  border: none;
  font-family: inherit;
  font-size: 1.6rem;
  padding: 0.7em;
  margin: 0;
  background-color: #FFF;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
}
.form_area input[type="text"], .form_area input[type="email"], .form_area input[type="tel"], .form_area textarea, .form_area radio, .form_area select {
  margin-bottom: 0;
}
.form_area input[type="text"].text_fomr_01, .form_area input[type="email"].text_fomr_01, .form_area input[type="tel"].text_fomr_01 {
  width: 70%;
}
.form_area input[type="text"].text_fomr_02, .form_area input[type="email"].text_fomr_02, .form_area input[type="tel"].text_fomr_02 {
  width: 50%;
}
.form_area input[type="text"].text_fomr_03, .form_area input[type="email"].text_fomr_03, .form_area input[type="tel"].text_fomr_03 {
  width: 40%;
  margin: 0
}
.form_area input[type="text"].text_fomr_04, .form_area input[type="email"].text_fomr_04, .form_area input[type="tel"].text_fomr_04 {
  width: 100%;
}
.form_area textarea.form_txtarea_01 {
  width: 100%;
}
.form_area input[type="checkbox"] {
  height: 15px;
  width: 15px;
  margin: 5px;
  vertical-align: middle;
}
.form_area input[type="radio"] {
  vertical-align: middle;
  margin: 0 3px 0 0;
}
.form_area label {
  margin-right: 0;
	margin-bottom: 0;
  font-weight: normal !important;
  font-size: 100%;
  font-weight: 500;
  padding: 10px;
	display:inline-block;
}
span.wpcf7-list-item {
  display: block;
  margin: 0 0 0 0.5em !important;
}
@media screen and (max-width: 768px) {
	.form_area{
	padding: 20px;
}
  .tel_list {
    display: block;
  }
  .tel_list div {
    margin-right: 0;
  }
  .privacy_inner {
    padding: 10px;
  }
  .privacy_inner p {
    font-size: 75% !important;
  }
  .submit_btn_wrap {
    width: 80%;
    margin: 0 auto;
  }
  .submit_btn {
    width: 100%;
  }
  ul.submit2_btn_wrap li {
    margin-bottom: 20px;
  }
  input[type="text"].text_fomr_01, input[type="email"].text_fomr_01, input[type="tel"].text_fomr_01 {
    width: 100% !important;
  }
  input[type="text"].text_fomr_02, input[type="email"].text_fomr_02, input[type="tel"].text_fomr_02 {
    width: 100% !important;
  }
  input[type="text"].text_fomr_03, input[type="email"].text_fomr_03, input[type="tel"].text_fomr_03 {
    width: 100% !important;
  }
  ul.input_list li {
    margin-bottom: 20px;
  }
  ul.input_list li:last-child {
    margin-bottom: 0;
  }
  label {
    font-size: 1.6rem;
  }
}