/*ブラウザがCSSの文字コードを判別するための記述*/
@charset "utf-8";
/*グーグルフォントを使うための記述*/
@import url('https://fonts.googleapis.com/css2? family=シッポリ+明朝+B1:wght@500 & display=swap');


.junbi{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.junbi h3,.junbi p{
  text-align: center;
  margin-bottom: 30px;
}

h1,h2,h3,h4,h5,h6,p{
  letter-spacing:1px;
  color: #4d4946;
  line-height:200%/*行間*/
}

h1{
  font-size: 32px;
  margin-bottom: 40px;
  font-family: 'Shippori Mincho B1', serif;
}
h2{
  font-size: 30px;
  margin-bottom: 35px;
  font-family: 'Shippori Mincho B1', serif;
}
h3{
  font-size: 26px;
  margin-bottom: 30px;
  font-family: 'Shippori Mincho B1', serif;
}
h4{
  font-size: 24px;
  margin-bottom: 25px;
  font-family: 'Shippori Mincho B1', serif;
}
h5{
  font-size: 22px;
  margin-bottom: 20px;
  font-family: 'Shippori Mincho B1', serif;
}
h6{
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'Shippori Mincho B1', serif;
}
p{
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'Shippori Mincho B1', serif;
}
@media screen and (min-width: 1024px) {/*--PC用--*/
  .br-none-pc{
    display:none;
  }
}

@media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/

  .br-none{
    display:none;
  }

  h1,h2,h3,h4,h5,h6,p{
    letter-spacing:1px;
    color: #4d4946;
    line-height:200%/*行間*/
  }
  
  h1{
    font-size: 30px;
    margin-bottom: 30px;
    font-family: 'Shippori Mincho B1', serif;
  }
  h2{
    font-size: 28px;
    margin-bottom: 25px;
    font-family: 'Shippori Mincho B1', serif;
  }
  h3{
    font-size: 22px;
    margin-bottom: 20px;
    font-family: 'Shippori Mincho B1', serif;
  }
  h4{
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'Shippori Mincho B1', serif;
  }
  h5{
    font-size: 21px;
    margin-bottom: 10px;
    font-family: 'Shippori Mincho B1', serif;
  }
  h6{
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Shippori Mincho B1', serif;
  }
  p{
    font-size: 15px;
    margin-bottom: 10px;
    font-family: 'Shippori Mincho B1', serif;
  }
}
/*----------------マーカー線　太字---------------------*/
.text_marker {
  background:linear-gradient(transparent 0%, #e8e8e8 0%);
  }
.marker {
  background:linear-gradient(transparent 70%, rgb(255, 237, 72) 50%);
  display: inline;
  background-repeat: no-repeat;
  transition:background-size 1.5s;
}
.marker.on {
  background-size: 100% 100%;
}
.marker2 {
  background:linear-gradient(transparent 70%, rgb(246, 240, 232) 50%);
  display: inline;
  background-repeat: no-repeat;
  transition:background-size 1.5s;
}
.marker3 {
  background:linear-gradient(transparent 90%, rgb(214, 214, 214) 50%);
  display: inline;
  background-repeat: no-repeat;
  transition:background-size 1.5s;
}
.marker2.on {
  background-size: 100% 100%;
}
.bold{
  font-weight: bold;
}
/*----------------マーカー線　太字--------------------*/

.page-title,.bald{
  font-weight: bold;
}
.page-title h5{
  margin: 5px;
  font-size: 30px;
}

.border-line{/* 余白付きの区切り線 */
  width: 100vw;
  height: 1px;
  background-color: #d1d1d1;
  margin-top: 120px;
  margin-bottom: 120px;
}
.border-line-mini{/* 余白付きの区切り線 */
  width: 100vw;
  height: 1px;
  background-color: #ebebeb;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/
  .border-line{/* 余白付きの区切り線 */
    width: 100vw;
    height: 1px;
    background-color: #d1d1d1;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .hidden{
    background-color: #ffffff;
  }
}

/*----------------画像保存禁止--------------------*/
img{
    /* PCの右クリック禁止 */
    pointer-events: none;
	  /* SPの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}
/*----------------画像保存禁止--------------------*/

/*--------------------ヘッダー--------------------*/
.header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 1001;
  background: rgba(255, 255, 255, 1);
}

.header__inner {
  padding-left: 120px;
  padding-right: 90px;/*ボタンのパディングを考慮し-30px*/
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
  width: 100%;
}
.header__title img{
  height: 18px;
}

@media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/
  .header {
    background-color: #f5f4f2;
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
  
  }
  .header__inner {
    padding: 20px 20px;
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
    position: relative;
  }
  .header__title img{
    height: 24px;
  }
}

/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #ffffff;
  transition: ease .4s;
  opacity: 1;
}
.nav-items {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  font-family: 'Shippori Mincho B1', serif;
}
.nav-items__item {
  position: relative;
}

.submenu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  transform: translateY(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}

.nav-items__item:hover .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 1025px) {/*--PC用--*/
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: end;
  }
  .nav__items {
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    display: flex;
    align-items: center;
    justify-content: end;
  }
}
/*----------------ヘッダーのハイライト--------------------*/
.line-border{
  border-bottom: solid 2px #ebeaea;
  padding-left: 5px;
  padding-right: 5px;
}
/*----------------ヘッダーのハイライト--------------------*/

/* ナビのリンク */
.nav-items__item a {
  width: 100%;
  display: block;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding-left: 30px;
  padding-right: 30px;
}
.nav-items__item:last-child a {
  margin-bottom: 0;
  margin: 0;
}
@media screen and (min-width: 1025px) {/*--PC用--*/
  .nav-items__item a {
    margin-bottom: 0;
    transition: transform .3s;/*--◀◀マウスオーバー秒数指定--*/
  }
  .nav__items li+ li {
    border-left: 1px solid #553B36;
  }
  .nav-items__item a:hover {
    transform: scale(1.1);/*--◀◀マウスオーバー画像サイズ指定--*/
  }
}
@media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/
.nav__items a {
  border-bottom: 1px solid #553B36;
  padding: 20px;
  transition: color .4s, background-color .4s, transform .7s;
}
.nav-items__item a:hover {
  transform: scale(1.1);/*--◀◀マウスオーバー画像サイズ指定--*/
  background-color: #f5f4f2;
  color: #4d4946;
}
}

/* ハンバーガーメニュー */
.header__hamburger {
  width: 40px;
  height: 100%;
}
.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}
@media screen and (min-width: 1025px) {/*--タブレット・モバイル用--*/
  .hamburger {
    display: none;
  }
}
/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #4d4946;
  position: relative;
  transition: ease .4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 8px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

/*--------------------ヘッダーEND--------------------*/



/*--------------------レイアウト　メイン--------------------*/
.layout-main{
  width: 100%;
  margin-top: 80px;
  height: auto;
}

@media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/
  .layout-main{
    width: 100%;
    height: auto;
    margin-top: 80px;
    padding: 0;
    padding-left: 15px;/*--※すべてのページ共通--*/
    padding-right: 15px;/*--※すべてのページ共通--*/
    background-color: #ffffff;
  }
}
/*--------------------レイアウト　メイン--------------------*/


/*--------------------フッター-----------------------*/
.footer_layout p{ /*pデフォルト設定をリセット*/
  font-size: 12px;
  
  margin-bottom: 0px;
}
.footer_layout{
  width: 100vw;
  background-color: rgb(249, 249, 249);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 311;/*スクロールより前に*/
  margin: 0;
  
}



.footer-copyright-layout{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0.8;
  background-color: rgb(239, 238, 238);
  width: 100vw;
  padding: 5px;
}

.footer-logo-layout img{
  height: 12px;
  opacity: 0.8;
  
}
.navigation{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 60px;
  background-color: rgb(239, 238, 238);
  
}
.navigation h6{
  padding: 0;
  margin: 0;
  font-size: 15px;
}
.nav-menu{
  display: flex;
  justify-content: center;
  align-items: center;
}
.re-size-text{
  transform: scale(0.85);
}
.vertical-line{
  width: 1px;
  height: 17px;
  background-color: #d1d1d1;
  margin-left: 20px;
  margin-right: 20px;
}
.company-container-layout{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}
.company-container{
  display: flex;
}
.company-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.company-title img{
  height: 16px;
}
.company-title p{
  text-align: center;
}
.footer-icon-layout{
  display: flex;
  justify-content: end;
  align-items: end;
  margin-top: 10px;
  margin-bottom: 10px;
}

.footer-icon-layout img{
  height: 20px;
  margin: 6px;
}

@media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/
  .footer_layout p{ /*pデフォルト設定をリセット*/
    font-size: 12px;
    margin-bottom: 0px;
  }
  .footer_layout{
    width: 100%;
    background-color: #f5f4f2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 311;/*スクロールより前に*/
    margin-bottom: 0px;
  }
  
  
  
  .footer-copyright-layout{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0.8;
    background-color: #f5f4f2;
    width: 100%;
    padding: 5px;
  }
  
  .footer-logo-layout img{
    height: 12px;
    opacity: 0.8;
    
  }
  .navigation{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: #f5f4f2;
  }
  .navigation h6{
    padding: 0;
    margin: 0;
    font-size: 13px;
  }
  .nav-menu{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .re-size-text{
    transform: scale(0.9);
  }
  .vertical-line{
    width: 1px;
    height: 17px;
    background-color: #d1d1d1;
    margin-left: 20px;
    margin-right: 20px;
    display: none;
  }
  .company-container-layout{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
  }
  .company-container{
    display: flex;
  }
  .company-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .company-title img{
    height: 14px;
  }
  .company-title p{
    text-align: center;
  }
  .footer-icon-layout{
    display: flex;
    flex-direction: none;
    justify-content: end;
    align-items: end;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .footer-icon-layout img{
    height: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
/*--------------------フッターEND--------------------*/






/*-------------------フェードで現れる--------------------*/
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.fade_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.fade_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.fade_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.fade_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}
/*----------------------------
参考サイト:https://www.tipswork.net/css/853/
----------------------------*/


/*----------------------------
フェードイン
----------------------------*/
.body-fadein {
  animation: fadeIn 15s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
/*----------------------------
参考サイト:https://q-az.net/fadein-open-only-css/
----------------------------*/

/*-------------------フェードで現れる--------------------*/




/*-------------------スクロールを促す--------------------*/

/*スクロールダウン全体の場所*/
.scrolldown1{
  /*描画位置※位置は適宜調整してください*/
position:fixed;
right: 4%;
bottom:11%;
  /*全体の高さ*/
height:50px;
z-index: 300;
}

/*Scrollテキストの描写*/
.scrolldown1 p{
  /*描画位置*/
position: absolute;
left: -10px;
top: 10px;
transform: rotate(90deg);
  /*テキストの形状*/
color: #4d4946;
font-size: 18px;
letter-spacing: 2px;
}

/* 線の描写 */
.scrolldown1::after{
content: "";
  /*描画位置*/
position: absolute;
top: 0;
  /*線の形状*/
width: 1px;
height: 100px;
background: #4d4946;
  /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 3s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 1;
	}
	20%{
		height:0px;
		opacity: 1;
	}
  80%{
		height:50px;
		opacity: 0.8;
	}
  80%{
		height:100px;
		opacity: 0.5;
	}
	100%{
		height:100;
		top:0px;
		opacity: 0;
	}
}

@media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/
.scrolldown1{
  display: none;
}
}

/*-------------------スクロールを促す--------------------*/



/*-------------------スクロールを促す２--------------------*/

/*スクロールダウン全体の場所*/
.scrolldown2{
  /*描画位置※位置は適宜調整してください*/
  position:fixed;
  right: 4%;
  bottom:11%;
    /*全体の高さ*/
  height:50px;
  z-index: 300;
}

/*Scrollテキストの描写*/
.scrolldown2 p{
  /*描画位置*/
position: absolute;
left: -10px;
top: 10px;
transform: rotate(90deg);
  /*テキストの形状*/
color: #ebeaea;
font-size: 16px;
letter-spacing: 2px;
}

/* 線の描写 */
.scrolldown2::after{
content: "";
  /*描画位置*/
position: absolute;
top: 0;
  /*線の形状*/
width: 1px;
height: 100px;
background: #ebeaea;
  /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 3s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 1;
	}
	20%{
		height:0px;
		opacity: 1;
	}
  80%{
		height:50px;
		opacity: 0.8;
	}
  80%{
		height:100px;
		opacity: 0.5;
	}
	100%{
		height:100;
		top:0px;
		opacity: 0;
	}
}

@media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/
.scrolldown2{
  display: none;
}
}

/*-------------------スクロールを促す２--------------------*/


/*-------------------設計者向けページはこちら--------------------*/
.button{
position:fixed;
right: 1%;
top: 100px;
z-index: 300;
border: solid 1px #ebeaea;
justify-content: center;
align-items: center;
padding: 0px;
padding-left: 10px;
padding-right: 10px;
}
.button p{
  color: #ebeaea;
  font-size: 13px;
  margin: 0;
}
.button:hover {
  color: #ffffff;
  background: #303030;
}

@media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/
  .button{
    position:fixed;
    right: 20px;
    top: 70px;
    z-index: 300;
    border: solid 1px #ebeaea;
    justify-content: center;
    align-items: center;
    padding: 0px;
    padding-left: 10px;
    padding-right: 10px;
    }
    .button p{
      color: #ebeaea;
      font-size: 13px;
      margin: 0;
    }
    .button:hover {
      color: #ffffff;
      background: #303030;
    }
  }
/*-------------------設計者向けページはこちら--------------------*/

/*-------------------設計者向けページはこちら--------------------*/
.button2{
  position:fixed;
  right: 120px;
  top: 100px;
  z-index: 300;
  border: solid 1px #656565;
  justify-content: center;
  align-items: center;
  padding: 0px;
  padding-left: 10px;
  padding-right: 10px;
  }
  .button2 p{
    color: #656565;
    font-size: 13px;
    margin: 0;
  }
  .button2:hover {
    color: #ffffff;
    background: #85837f;
  }
  
  @media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/
    .button2{
      position:fixed;
      right: 20px;
      top: 60px;
      z-index: 300;
      border: solid 1px #656565;
      justify-content: center;
      align-items: center;
      padding: 0px;
      padding-left: 10px;
      padding-right: 10px;
      }
      .button2 p{
        color: #656565;
        font-size: 13px;
        margin: 0;
      }
      .button2:hover {
        color: #ffffff;
        background: #85837f;
      }
    }
  /*-------------------設計者向けページはこちら--------------------*/

/*------------------詳細はこちらボタン------------------*/
.border_btn01 {
  display: inline-block;
  width: 100%;
  max-width: 250px;
  color: #656565;
  border: 1px solid #565552;
  background: #fff;
  padding: 15px;
  font-weight: normal;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
  margin: 15px;
}
.border_btn01:hover {
  color: #ffffff;
  background: #85837f;
}

.border_btn02 {
  display: inline-block;
  width: 100%;
  max-width: 250px;
  color: #656565;
  border: 1px solid #565552;
  padding: 15px;
  font-weight: normal;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
  margin: 0px;
  margin-bottom: 45px;
}
.border_btn02:hover {
  color: #ffffff;
  background: #85837f;
}

.border_btn03 {
  display: inline-block;
  width: 300px;
  color: #656565;
  border: 1px solid #565552;
  padding: 15px;
  font-weight: normal;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
  margin: 0px;
  margin-bottom: 0px;
  margin-top: 30px;
}
.border_btn03:hover {
  color: #ffffff;
  background: #85837f;
}

.border_btn_white {
  display: inline-block;
  width: 300px;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 15px;
  font-weight: normal;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
  margin: 0px;
  margin-bottom: 0px;
  margin-top: 30px;
}
.border_btn_white:hover {
  color: #ffffff;
  background: #303030;
}

@media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/
  .border_btn03 {
    display: inline-block;
    width: auto;
    color: #656565;
    border: 1px solid #565552;
    padding: 15px;
    font-weight: normal;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    margin: 0px;
    margin-bottom: 20px;
    margin-top: 0px;
  }
  .border_btn03:hover {
    color: #ffffff;
    background: #85837f;
  }
}
/*------------------詳細はこちらボタン------------------*/




/*------------------ポップアップ広告------------------*/
.overlay {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  position: fixed;
  z-index: 1000;
  margin-top: 0;
  }
  .btn_area {
  width: 400px;
  height: 250px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  text-align: center;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  }
  .btn_area .ttl {
  font-weight: bold;
  }
  .btn_area p {
  padding: 15px
  }
  .btn_area button {
  display: block;
  margin: 0 auto;
  background: #333;
  color: #fff;
  padding: 20px 40px;
  border: none;
  margin-top: 20px;
  }
  .btn_area button:hover {
  background: #777;
  }

  @media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/
    .btn_area img{
      width: 300px;
      margin-top: 0px;
      margin-bottom: 20px;
    }
    .btn_area {
      width: 100%;
      height: auto;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      background:none;
      text-align: center;
      z-index: 2220;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding: 0px;
      }
      .btn_area .ttl {
      font-weight: bold;
      }
      .btn_area p {
      padding: 15px
      }
      .btn_area button {
      display: block;
      margin: 0 auto;
      background: #333;
      color: #fff;
      padding: 20px 40px;
      border: none;
      margin-top: 5px;
      }
      .btn_area button:hover {
      background: #777;
      }
  
}
  /*------------------ポップアップ広告------------------*/


  .campaign-banner{
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .campaign-banner img{
    width: 800px;
    margin-top: 30px;
    margin-bottom: 120px;
  }

  @media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/
    .campaign-banner{
      width: 100%;
      display: flex;
      justify-content: center;
    }
    .campaign-banner img{
      width: 85vw;
      margin-top: 30px;
      margin-bottom: 120px;
    }
  }