
body{
    background-color: #f7f7f7;
	width: 100%;
  font-family:"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic StdN","Helvetica Neue", "Helvetica", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-weight: 400;
    font-size:18px; 
    line-height:1.6;
    color: #3e3a39;
}
h2, h3, h4, nav{
  font-family: 'A-OTF ゴシックMB101 Pro', sans-serif;
  font-weight: 700;
  }
a:hover, a:hover img{
    opacity:0.7;
}
input[name="image"]:hover {
    opacity:0.7;
}

/*___________________ ボタン _____________________*/
.brn01{
	font-weight: bold;
    color: #fff;
    background-color: #e58524; 
}
.btn_mg button:hover, .button button:hover {
    cursor: pointer;
}

/*___________________ ヘッダー _____________________*/

header{
    max-width:1200px;
    margin: 0 auto;
    padding: 1em 4em;
    position: relative;
}@media screen and (max-width:640px){
    header{
        padding: 0;
        width: 100%;
        height: 100%;
    }
}
.gnav{
    width: 100%;
    display: flex;
    margin: 1em auto 0.2em;
    align-items: center;
}
.menu01 ul, .menu02 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin-top: 1em;
  gap: 30px;
}

.menu01 li, .menu02 li {
  position: relative;
  padding-left: 36px; /* アイコン分 */
  display: flex;
  align-items: center;
}
.menu01 li a{
    color: #3e3a39;
  font-weight: bold;
  font-size: 16px;
}
.menu02 li a{
    color: #fff;
  font-weight: bold;
  font-size: 16px;
}

/* 仕切り線 */
.menu01 li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background-color: #dcdddd;
}
.menu02 li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background-color: #fff;
}

/* アイコン共通設定 */
.menu01 li::after, .menu02 li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* 各アイコン（仮の画像URLを使用） */
.menu01 li:nth-child(1)::after {
  background-image: url('../image/icon01.png');
}
.menu01 li:nth-child(2)::after {
  background-image: url('../image/icon02.png');
}
.menu01 li:nth-child(3)::after {
  background-image: url('../image/icon03.png');
}
.menu01 li:nth-child(4)::after {
  background-image: url('../image/icon04.png');
}

.menu02 li:nth-child(1)::after {
  background-image: url('../image/icon01w.png');
}
.menu02 li:nth-child(2)::after {
  background-image: url('../image/icon02w.png');
}
.menu02 li:nth-child(3)::after {
  background-image: url('../image/icon03w.png');
}
.menu02 li:nth-child(4)::after {
  background-image: url('../image/icon04w.png');
}

.Toggle01, .Toggle02{
 display: none;
}

.logo{
    text-align: center;
}
.logo img{
    width:13%;
    height: auto;
}@media screen and (max-width:640px){
    .logo img{
        width: 30%;
    }
}

/*ナビゲーション部分*/

@media screen and (max-width:640px){ 
nav{
 width: 100%;
 position: relative;
}
 
.drawer{
 display: flex;
 align-items:center;
 padding: 0.5em 1em;
}

.menu01 ul, .menu02 ul{
    margin: 1em auto 2em;
    display: block;
    width: 100%;
    height: 100%;
    align-items: center;

}
.menu01 ul li, .menu02 ul li{
    position: relative;
    margin-bottom: 1em;
}
       
    
.menu01 ul li:before, .menu02 ul li:before{
        display: none;
    }
.menu01{
  text-align:center;
  /*
    transition: 0.5s ease; 滑らかに表示
    -webkit-transform: translateX(100%); 画面より100%外へ押し出し非表示にさせる
    transform: translateX(100%); 逆から出す場合は、マイナスをつける
    */
    position: fixed;
    z-index: 1;
    padding: 1em;
    background-color: #f7f7f7;
    display: none;
      opacity: 0;
  transition: opacity 0.5s, display 0.5s;
  transition-behavior: allow-discrete;
}
.menu02{
  text-align:center;
  /*
    transition: 0.5s ease; 滑らかに表示
    -webkit-transform: translateX(100%); 画面より100%外へ押し出し非表示にさせる
    transform: translateX(100%); 逆から出す場合は、マイナスをつける
    */
    position: fixed;
    z-index: 1;
    padding: 1em;
    background-color: #5ea3da;
    display: none;
      opacity: 0;
  transition: opacity 0.5s, display 0.5s;
  transition-behavior: allow-discrete;
}
/*OPEN時の動き*/
.menu01.open, .menu02.open {
 /*
    -webkit-transform: translateX(0%);
 transform: translateX(0%); メニューを元の位置へ戻す
    */
    z-index: 1;
    display: block;
    opacity: 1;
    width: 100%;
  @starting-style {
    opacity: 0;
  }
}
 
.IsScrollAllowed {
  overflow: hidden;/*背景を固定する*/
}
    
/*トグルボタンのスタイルを指定*/
.Toggle01{
    display: block;
    position:absolute;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 3;
  right:15px;
     background-color: #5ea3da;
    border-radius: 10px;
}
 
.Toggle01 span{
    display: block;
    position: absolute;
    align-items: center;
    left:9px;
    width: 30px;
    border-bottom: solid 6px #fff;
    border-radius: 3px;
    -webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
    transition: .35s ease-in-out;			/*変化の速度を指定*/
}
    
.Toggle02 {
    display: block;
    position:absolute;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 3;
  right:15px;
     background-color: #fff;
    border-radius: 10px;
    top:-1rem;
}
 
.Toggle02 span {
    display: block;
    position: absolute;
    align-items: center;
    left:9px;
    width: 30px;
    border-bottom: solid 6px #5ea3da;
    border-radius: 3px;
    -webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
    transition: .35s ease-in-out;			/*変化の速度を指定*/
}    

 /*各ボーダー少しずつずらす*/
.Toggle01 span:nth-child(1), .Toggle02 span:nth-child(1) {
    top:12px;
}
 .Toggle01 span:nth-child(2), .Toggle02 span:nth-child(2)  {
    top: 22px;
}
 .Toggle01 span:nth-child(3), .Toggle02 span:nth-child(3)  {
    top: 32px;
}
.Toggle01.active span:nth-child(1), .Toggle02.active span:nth-child(1) {
    top: 22px;
/* 1番目のspanをマイナス45度に */
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.Toggle01.active span:nth-child(2),
.Toggle01.active span:nth-child(3), .Toggle02.active span:nth-child(2),
.Toggle02.active span:nth-child(3)  {
    top: 22px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
}


.sp{
    display: none !important;
}
.pc{
    display: block;
}
@media screen and (max-width:640px){
    .sp{
        display: block !important;
    }
    .pc{
        display: none !important;
    }
}
nav li a.current{
  color:#5ea3da;
}

/*___________________ コンテンツ _____________________*/
.main{
      width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main img{
      width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}@media screen and (max-width: 640px) {
  .main img {
    height: 60vw;
  }
}

#wrap{
	margin: 0px auto;
	overflow: hidden;
}@media screen and (max-width:640px){
    #wrap{
        font-size: 80%;
        box-sizing: border-box;
    }
}

.section{
	width: 920px;
	margin: 1.8em auto;
	overflow: hidden;
}@media screen and (max-width:640px){
    .section{
        width: 100%;
        padding: 0 1em;
        box-sizing: border-box;
    }
}

.ttl01{
    width:100%;
    height: auto;
    margin: 0 auto 4em;
}
h2{
    font-size: 200%;
    font-weight: bold;
    text-align: center;
    line-height: 0.8em;
}@media screen and (max-width:640px){
    .ttl01{
        margin: 0 auto;
    }
    h2{
        padding-bottom: 1em;
    }
}
h2 span{
    font-size:30%;
    color: #5ea3da;
}

.ttl02 {
  display: flex;
  flex-direction:row-reverse;
  align-items: flex-start;
  gap: 2em;
  margin-bottom: 5em;
}

/* テキストブロック（番号・タイトル・説明） */
.ttl02-text {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.ttl02 .number {
  font-size: 2.2em;
  font-weight: bold;
  color: #55a4e0;
  margin-bottom: 0.3em;
  position: relative;
}

.ttl02 .number::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background-color: #dcdddd;
    position: absolute;
    left: 0.3em;
}

.ttl02 .title {
  font-size: 1.8em;
  font-weight: bold;
}

.ttl02 .desc {
  font-size: 0.95em;
  line-height: 1.6;
    margin-top: 0.5em;
}

/* 画像ブロック */
.ttl02-image {
  order: 1;
}

.ttl02-image img {
  max-width: 280px;
  height: auto;
    display: block;
}

/* ====== スマホ対応（640px以下） ====== */
@media screen and (max-width: 640px) {
  .ttl02 {
    flex-direction: column;
    align-items: center;
    text-align: center;
      margin-bottom: 2em;
  }
  .number, .title {
    align-items: center;
  }

  .ttl02 .number::after {
    margin: 0 auto;
      position:static;
  }
.ttl02-image {
  order: 0;
}
  .ttl02-image img {
    max-width: 65%;
      margin: 0 auto;
  }
    .desc{
        text-align: left;
    }
}

.ttl03{
    background-color: #5ea3da;
    color: #fff;
    font-size: 80%;
    padding-bottom: 2em;
}
.ttl03 span{
    color: #fff;
}
@media screen and (max-width:640px){
    .ttl03{
        padding-bottom: 0;
    }
}


.box01{
    display: inline-flex;
    align-items: flex-start;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.box01 img{
    width: 30%;
}@media screen and (max-width:640px){
    .box01{
        display: block;
    }
    .box01 img{
        margin: 0 auto 1.5em;
        width: 65%;
        display: block;
    }
}

.signature{
    text-align: right;
    margin-top: 2em;
}
.signature img{
    width: 25%;
}@media screen and (max-width:640px){
    .signature img{
        width: 50%;
    }
}

/*--　会社情報　--*/
      .company-info {
            max-width: 920px;
            margin: 2rem auto;
            background-color: #fff;
            border: 1px solid #b5b5b6;
        }
        
        .info-item {
            display: flex;
            border-bottom: 1px solid #b5b5b6;
            min-height: 50px;
        }
        
        .info-item:last-child {
            border-bottom: none;
        }
        
        .info-term {
            flex: 0 0 140px;
            background-color: #efefef;
            padding: 1em 0 1em 3em;
            border-right: 1px solid #b5b5b6;
            font-weight: 500;
            display: flex;
        }
        
        .info-description {
            flex: 1;
            padding: 1em 0 1em 1em;
            background-color: white;
            display: flex;
            align-items: center;
            color: #212529;
        }
        
        .info-description a {
            color: #5ea3da;
            text-decoration: none;
        }
        
        .info-description a:hover {
            text-decoration: underline;
        }
@media screen and (max-width:640px){
    .info-term {
            flex: 0 0 90px;
            padding: 0.5em;
    }
    .info-description {
            padding: 0.5em;
}
}

.bold{
    font-weight: bold;
}
.fw600{
    font-weight: 600;
}
.mb1{
    margin-bottom: 1em;
}
.mb3{
    margin-bottom: 3em;
}
.mt2{
    margin-top: 2em;
}
.mt3{
    margin-top: 3em;
}
.txt_ce{
    text-align: center;
}
.f120{
    font-size: 120%;
}

p.cap {
    color: #727272;
    font-size: 70%;
    text-align: right;
}

/*--------- フッター -----------*/
.foot{
    background-color: #5ea3da;
    padding: 1em;
    margin-bottom: 1em;
}
.foot ul{
    margin-top: 0;
}
@media screen and (max-width:640px){
    .foot{
        padding: 2em 0;
    }
    .foot .menu02{
        position: absolute;
        bottom:2em;
    }
}
.foot .menu02 ul li:first-child::after {
    content: "";
}
footer {
    font-size: 75%;
	text-align: center;
	margin: 0 auto;
    padding: 1em 0 5em;
    color: #898989;
    position: relative;
}
footer a{
    color: #898989;
}
footer .logo{
    position: absolute;
    width: 10%;
    left: 11rem;
    top:0;
}
footer .logo img{
    width: 100%;
}
@media screen and (max-width:640px){
    footer{
        position: static;
    }
    footer .logo{
        position: static;
        width: 30%;
        margin: 0 auto;
    }
}

/*--------- Wordpress用 -----------*/
/*#wrap h1{
    display: none;
}*/
section.content > h2{
    display: none;
}

.blog_item > h1,
.blog_item > h2,
.blog_item > h3,
.blog_item > h4,
.blog_item > h5,
.blog_item > h6{
    font-weight: revert;
    font-size: revert;
    text-align: revert;
    line-height: revert;
    padding: revert;
    border: none;
}

.blog_text > ol{
    list-style:decimal;
    padding-left: 1.5em;
}
.blog_text > ol li{
    list-style:decimal;
}
.blog_text > ul{
    list-style:disc;
    padding-left: 1.5em;
}
.blog_text > ul li{
    list-style:disc;
}
/************************************
** お問い合わせフォームの入力
************************************/
.contact_ttl{
    font-size: 140%;
    text-align: center;
    margin: 1em 0 0.5em;
    font-weight: bold;
}

#cf-tbl{
    width: 920px;
    margin: 0 auto;
}
#cf-tbl table{
    width: 100%;
    border-collapse: collapse;
    border: solid #dcdddd;
    border-width: 1px;
}
#cf-tbl table tr th{
    padding: 1.5em;
    text-align: left;
    vertical-align: top;
    border: solid #dcdddd;
    border-width: 1px;
    vertical-align: middle;
    width: 35%;
    background: #efefef;
}

#cf-tbl table tr td{
    padding: 0.5em;
    text-align: left;
    vertical-align: top;
    border: solid #dcdddd;
    border-width: 1px;
    vertical-align: middle;
        background: #fff;
}
#cf-tbl table tr td p{
    border: #b5b5b6 1px solid;
    padding: 1em;
}

@media screen and (max-width:640px){
#cf-tbl{
    width: 90%;
}

#cf-tbl table,
#cf-tbl table tbody,
#cf-tbl table tr,
#cf-tbl table tr th,
#cf-tbl table tr td{
    display: block;
}

#cf-tbl table{
    width: 100%;
    border-width: 0 0 1px 0;
}

#cf-tbl table tr th,
#cf-tbl table tr td{
    width: 100%;
    padding: 3% 5%;
    box-sizing: border-box;
}

#cf-tbl table tr td{
    border-width: 0px 1px 0px 1px;
}
}
/*「必須」文字デザイン*/
.required{
    font-size:90%;
    color: #e60012;
}

.wpcf7-textarea{
    min-height: 10em;
    border: none;
    resize: none;
    width: 100%;
    box-sizing: border-box;
    outline: none;
}
.privacy-check {
    margin: 3em auto 0;
    text-align: center;
}
input[type="checkbox"] {
    transform: scale(1.3);
}
.wpcf7 .sbm-img{
    width: 35%;
    margin: 0em auto 4em;
    display: block;
}@media screen and (max-width:640px){
    .wpcf7-textarea{
        min-height: inherit;
    }
    .sp-textarea{
    min-height: 8em;
}
    .wpcf7 .sbm-img{
        width: 70%;
    }
}

/* エラーメッセージを見やすく */
span.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
	color: red;
	font-weight: 600;
}

/*---------ブログ------------*/
.blog_thum{
    width: 95%;
    margin: 0 auto;
}
.blog_thum ul{
    display: grid;
    grid-template-columns: repeat(3, 32%);
    gap: 10px 20px;
    justify-content: center;
    line-height: 1.4em;
}@media screen and (max-width:640px){
    .blog_thum ul{
    grid-template-columns: repeat(1, 100%);    }
}
.blog_thum li{
    padding: 1em;
    margin-bottom: 0.5em;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
}
.blog_thum li a{
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    color: #3e3a39;
}
.blog_thum li img, .blog_detail ul img{
    width: 100%;
    object-fit: cover;
    aspect-ratio:4/3
}
.blog_thum .photo{
  cursor: pointer;
  max-width: 500px;
  overflow: hidden;   
}
.blog_thum .photo img{
  height: auto;
  transition: transform .6s ease; /* ゆっくり変化させる */
}
.blog_thum .photo:hover img {
  transform: scale(1.1); /* 拡大 */
}

.blog_day{
    font-size: 60%;
    color: #b5b5b6;
    text-align: left;
}
.blog_ttl{
    font-size: 140%;
    font-weight: bold;
    display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 表示したい行数を指定 */
  overflow: hidden;
}
/* WP見出し */
.midashi{
    font-size: 130% !important;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #b5b5b6;
    margin-bottom: 1em;
}
.midashi:empty{
    display: none;
}

.blog_txt{
    font-size: 85%;
    display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4; /* 表示したい行数を指定 */
  overflow: hidden;
}@media screen and (max-width:640px){
    .blog_day{
        font-size: 90%;
    }
    .blog_ttl{
        font-size: 160%;
        padding-bottom: 0.2em;
    }
    .blog_txt{
        font-size: 110%;
          -webkit-line-clamp: 3; /* 表示したい行数を指定 */
    }
}

.blog_photo{
    width: 80%;
    margin: 1em auto;
}
.blog_photo img, .wp-block-image img{
    width: 100%;
}
.blog_title{
        font-size: 120%;
    font-weight: bold;
    margin: 1.5em 0 1em;
}
.blog_text{
    padding-top: 0.5em;
}

/* ページャー全体を中央寄せ */
.pager {
  text-align: center;
  margin-top: 40px;
}

/* ページ番号リスト */
.pager .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  background-color: #595757;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

/* ホバー時 */
.pager .page-numbers:hover {
  background-color: #444;
}

/* 現在のページ（アクティブ） */
.pager .page-numbers.current {
  background-color: #ffffff;
  border: 1px solid #dcdddd;
  color: #3e3a39;
}

/* 前後リンク（Prev / Next） */
.pager .page-numbers.prev,
.pager .page-numbers.next {
  font-weight: bold;
}




/*-------------おすすめ物件--------------*/
.topics_card{
    border-top: 1px solid #b5b5b6;
    padding-top: 2em;
}
.topics_card:first-child{
    border:none;
    padding: 0;
}
.topics_thum{
    display: flex;
    justify-content: space-between;
}
.topics_thum .photo{
    width: 35%;
}
.topics_thum .photo img{
    width: 100%;
    height: auto;
}
.topics-info {
    width: 60%;;
    background-color: #fff;
    border: 1px solid #b5b5b6;
}

.topics-info .info-item {
    display: flex;
    border-bottom: 1px solid #b5b5b6;
}

.topics-info .info-item:last-child {
    border-bottom: none;
}

.topics-info .info-term {
    flex: 0 0 140px;
    background-color: #efefef;
    padding: 0.5em 0.5em 0.5em 1em;
    border-right: 1px solid #b5b5b6;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.morebtn{
    margin: 1em 0 2em 0;
    width: 100%;
    text-align: right;
}
.morebtn img{
    width: 28%;
}
@media screen and (max-width:640px){
.topics_thum{
        display: block;
    }
    .topics_thum .photo, .topics-info{
        width: 90%;
        margin: 0 auto 1em;
    }
    .morebtn{
        margin: 1.8em auto 2em;
        text-align: center;
    }
    .morebtn img{
        width: 60%;
    }
.topics-info .info-term {
    flex: 0 0 90px;
}
.topics-info .info-description {
    padding: 0.5em;
}
}

.point-box {
  border: 2px solid #5ea3da;
  padding: 1em 1.5em;
  position: relative;
  background: #fff;
  max-width: 920px;
    box-sizing: border-box;
    margin-bottom: 2em;
}

.point-label {
  position: absolute;
  top: -15px;
  left: 30px;
  background: #5ea3da;
  color: #fff;
  padding: 0.3em 1.2em;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.7em;
}@media screen and (max-width:640px){
    .point-label{
        top:-12px;
        left: 24px;
    }
}

.point-list {
  list-style: none;
  padding: 0;
  margin-top: 0.5em;
}

.point-list li{
    line-height: 2em;
    border-bottom: 1px solid #dcdddd;
}
.point-list li:last-child{
    border-bottom: none;
}
.point-list li:before{
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url("../image/arrow01.png") no-repeat;
    background-size:contain;
    margin-right:0.5em;
    vertical-align: middle;
}
h4{
    font-size: 120%;
    text-align: left;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #b5b5b6;
}
.photogalary_ttl:before{
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background: url("../image/icon05.png") no-repeat;
    background-size:contain;
    margin-right:0.2em;
    vertical-align: middle; 
}
.photogalary{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
    margin: 1.5em 0;

}

.photogalary img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
    aspect-ratio:4/3
}

/* スマホ対応：幅640px以下で2列表示 */
@media screen and (max-width: 640px) {
  .photogalary {
    grid-template-columns: repeat(2, 1fr);
      margin: 1.5em 2em;
  }
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2em 0;
}

.cta-buttons .btn {
  display: block;
  width: 360px;
  max-width: 100%;
}

.cta-buttons .btn img {
  width: 100%;
  height: auto;
  display: block;
}

/* スマホで縦並び */
@media screen and (max-width: 640px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
.topics_ttl:before{
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background: url("../image/icon06.png") no-repeat;
    background-size:contain;
    margin-right:0.2em;
    vertical-align: middle; 
}
.topics_w{
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 3em;
}
.area_ttl:before{
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background: url("../image/icon07.png") no-repeat;
    background-size:contain;
    margin-right:0.2em;
    vertical-align: middle; 
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-top: 56.25%; /* 16:9比率 → 高さは幅に応じて決まる */
  overflow: hidden;
    margin: 2em 0;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*-------------パンくず--------------*/
.breadcrumbs-list {
  margin: 1em auto 0;
  max-width:920px;
}@media screen and (max-width:640px){
    .breadcrumbs-list{
        margin-left: 1em;
    }
}
.breadcrumbs-list ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumbs-list li {
  line-height: 2;
  font-size: 12px;
font-weight:600;
}

.breadcrumbs-list li:not(:first-child) {
  padding-left: 5px;
}

.breadcrumbs-list li .arrow {
  margin-right: 5px;
}

.breadcrumbs-list li a {
  color: #5ea3da;
  font-size: 12px;
  border-bottom:1px solid #5ea3da;
}
