@charset "utf-8";

/* common
-------------------------------------------------------*/
* {
	box-sizing: border-box;
}
body {
	/*font-family: "Zen Maru Gothic", sans-serif;*/
	font-weight: 400;
	font-style: normal;
}
.renew_body {
	background: #fff;
}
.sp {
	display: none;
}
.renew_area {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 20px;
  position: relative;
}
.renew_inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
  position: relative;
  z-index: 1;
}

.renew_bg01::before {
  content: "";
  position: absolute;
  background: url(../img/bg_foot01.png) no-repeat;
  background-size: 100%;
  width: 303px;
  height: 187px;
  right: 0;
  top: 0;
}
.renew_bg01::after {
  content: "";
  position: absolute;
  background: url(../img/bg_foot02.png) no-repeat;
  background-size: 100%;
  width: 272px;
  height: 225px;
  left: 0;
  bottom: 0;
}

.renew_bg02::before {
  content: "";
  position: absolute;
  background: url(../img/bg_foot03.png) no-repeat;
  background-size: 100%;
  width: 272px;
  height: 225px;
  left: 0;
  top: 0;
}
.renew_bg02::after {
  content: "";
  position: absolute;
  background: url(../img/bg_foot04.png) no-repeat;
  background-size: 100%;
  width: 272px;
  height: 225px;
  right: 0;
  bottom: 0;
}

.renew_bg_yel {
  border-radius: 30px;
  background: #fcf9f1;
}

.renew_bg_yel .renew_inner {
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width:1440px) {
  .renew_area {
    margin-left: 28px;
    margin-right: 28px;
  }
}
@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
  .renew_area {
  padding:30px 0px;
}
.renew_bg01::before {
  width: 150px;
  height: 90px;
}
.renew_bg01::after {
  width: 136px;
  height: 113px;
}
.renew_bg02::before {
  width: 136px;
  height: 113px;
}
.renew_bg02::after {
  width: 136px;
  height: 113px;
}
.renew_bg_yel {
  border-radius: 15px;
}

}


/* renew_header
-------------------------------------------------------*/
.renew_header {
  padding: 10px 20px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9998;
  /*background-color: transparent;*/
  background-color: rgba(255,255,255,0.85);
  transition:
    background-color 0.3s ease,
    padding 0.3s ease,
    box-shadow 0.3s ease;
}
.renew_header_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.header_logo {
  margin-right: 30px;
  max-width: 73px;
}
.header_logo img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}
.renew_nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.renew_nav ul li {
  margin: 0 20px;
}
.renew_nav ul li a {
  color: #59503d;
  font-weight: 700;
  font-size: 1.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0;
  line-height: 1.2;
  transition: font-size 0.3s ease, line-height 0.3s ease;
}
.renew_nav ul li a:hover {
	opacity: .7;
}
/* === スクロール後の状態 === */
.renew_header.is-scrolled {
  padding: 0px 20px; /* 少し高さを低くする。好みで調整してOK */
  background-color: rgba(255, 255, 255, 0.9); /* 白の透過背景 */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);  /* うっすら影 */
}
/* ロゴをちょっと小さく（transformで縮小） */
.renew_header.is-scrolled .header_logo img {
  transform: scale(0.7); /* 0.7〜0.9くらいで好みに調整してOK */
}
/* メニュー文字を少しだけ小さく */
.renew_header.is-scrolled .renew_nav ul li a {
  font-size: 1.3rem; /* 元が1.4remなのでほんの少し縮める感じ */
}
@media (max-width: 1200px) {
	.renew_nav ul li {
    margin: 0 10px;
  }
  .renew_nav ul li a {
    font-size: 1.2rem;
  }
}

@media (max-width: 1020px) {
  .renew_header.is-scrolled .renew_nav ul li a {
  font-size: 1rem;
}
}

@media (max-width: 960px) {
	.renew_nav ul li a {
	font-size: 1rem;
}
}

@media (max-width: 850px) {
	.renew_nav ul li a {
	font-size: .8rem;
}
.renew_header.is-scrolled .renew_nav ul li a {
  font-size: .8rem;
}
}

@media (max-width: 768px) {
  .renew_header {
    padding: 10px 16px;
  }
  .renew_header.is-scrolled .renew_nav ul li a {
  font-size: 1.2rem;
}

  .renew_header_inner {
    justify-content: space-between; /* 左ロゴ / 右ハンバーガー */
  }

  /* ハンバーガー初期表示（PCでは非表示にするのでSP内でdisplay指定） */
  .nav_toggle {
    /*display: inline-flex;
    align-items:flex-start;
    justify-content: center;*/
    width: 44px;
    height: 44px;
    position: relative;
    border: none;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
	  z-index: 9999;
    /*margin-top: -10px;*/
  }
  /* 3本線：span + 擬似要素で構成 */
  .nav_toggle .bar,
  .nav_toggle .bar::before,
  .nav_toggle .bar::after {
    content: "";
    display: block;
    width: 44px;
    height: 4px;
    background: #59503d;
    position: absolute;
    transition: transform 0.25s ease, opacity 0.25s ease;
    border-radius: 100px;
  }
  .nav_toggle .bar { transform: translateY(0); }
  .nav_toggle .bar::before { transform: translateY(-8px); }
  .nav_toggle .bar::after  { transform: translateY(8px); }

  /* 開いたら「×」に変形 */
  .nav-open .nav_toggle .bar {
    transform: rotate(45deg);
  }
  .nav-open .nav_toggle .bar::before {
    transform: rotate(-90deg);
  }
  .nav-open .nav_toggle .bar::after {
    opacity: 0;
    transform: rotate(0deg) translateY(0);
  }

  /* ナビはフルスクリーンのオーバーレイに */
 .renew_nav {
    position: fixed;
    inset: 0 0 0 0;          /* 画面全体 */
    background: #fff;
    padding-top: 50px;       /* ヘッダー分の余白（調整OK） */
    z-index: 1000;

    /* ふわっと用 初期状態 */
    opacity: 0;
    transform: translateY(-16px); /* 少し上から */
    pointer-events: none;         /* 閉じてる時はクリックさせない */
    visibility: hidden;

    transition:
      opacity 0.35s ease,
      transform 0.35s cubic-bezier(.25,.8,.25,1);
  }

  .nav-open .renew_nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }

  /* リスト：縦並び＋タップしやすい大きさ */
  .renew_nav ul {
    display: block;
    text-align: left;
    padding: 0 24px 24px;
  }
  .renew_nav ul li {
    margin: 0;
  }
  .renew_nav ul li a {
    display: block;
    padding: 18px 4px;
    font-size: 1.2rem;
	text-align: center;
  }

  /* PC用の横並び余白を打ち消し */
  .header_logo {
	margin-right: 0;
	max-width: 60px;
}

  .header_logo img {
	width: 100%;
	height: auto;
  }

  .sp_menu_logo01 {
	max-width: 120px;
	margin: 0 auto;
	margin-bottom: 20px;
  }
  .sp_menu_logo01 img {
	width: 100%;
	height: auto;
  }
  .sp_menu_logo02 {
	max-width: 200px;
	margin: 0 auto;
  }
  .sp_menu_logo02 img {
	width: 100%;
	height: auto;
  }
}

/* ====== 768pxより上ではハンバーガー非表示 ====== */
@media (min-width: 769px) {
  .nav_toggle { display: none; }
  .renew_nav .renew_index_top_sns {
    display: none;
  }
}
/* renew_visual
-------------------------------------------------------*/
.renew_visual {
	background: url(../img/bg_visual.png) no-repeat bottom center;
	background-size: cover;
	padding-top: 150px;
	position:relative;
	min-height: 900px;
}

.renew_visual_logo {
	max-width: 427px;
	margin: 0 auto;
}

.renew_visual_logo img {
  width: 100%;
  height: auto;
}

.renew_visual_txt {
	max-width: 702px;
	position: absolute;
	right: 10%;
	bottom: 10%;
}

.renew_visual_txt img {
	width: 702px;
	height: auto;
}

#visual_txt_svg {
  width: 702px;
	height: auto;
}

#visual_txt_svg {
  filter:
    drop-shadow(0 0 5px rgba(0,0,0,1));
}

/* まとめて非表示からスタート */
#visual_txt_svg path {
  opacity: 0;
}

/* アニメーション定義（カクッと出す） */
/*@keyframes typeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}*/
@keyframes typeFadeIn {
  0% {
    opacity: 0;
    filter: blur(3px);
  }
  50% {
    opacity: 0.6;
    filter: blur(1.5px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}


@media screen and (max-width:768px) {
.renew_visual {
  padding-top: 90px;
  min-height: 500px;
}
  .renew_visual_logo {
	max-width: 427px;
  width: 80%;
	margin: 0 auto;
}

.renew_visual_txt {
  right: 0;
}

.renew_visual_txt img {
	width: 500px;
	height: auto;
}

#visual_txt_svg {
  width: 500px;
	height: auto;
}


}


@media screen and (max-width:400px) {
  .renew_visual_txt {
  right: 0;
  width: 100%;
  /*background: rgba(255, 255, 255, 0.5);*/
}
  .renew_visual_txt img {
	width: 350px;
	height: auto;
}

#visual_txt_svg {
  width: 350px;
	height: auto;
}
}

/* renew_area01
-------------------------------------------------------*/

.renew_index_top_ttl {
  max-width: 549px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 40px;
}

.renew_index_top_ttl img {
  width: 100%;
  height: auto;
}

.renew_index_top_ttl span {
  display: block;
  width: 100%;
  color: #fff;
  position: absolute;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.2;
  font-size: 1.8rem;
  top: 18%;
}

.renew_common_btn {
  display: block;
  background: #fff4d3;
  font-family: "Zen Maru Gothic", sans-serif;
  border-radius: 100px;
  color: #59503d;
  text-align: center;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 1.5rem;
  position: relative;
  width: 400px;
  transition: transform 0.25s ease;  /* なめらかに動かす */
}
.renew_common_btn::after {
  content: "";
  position: absolute;
  background: url(../img/arrow01.png)no-repeat;
  background-size: 100%;
  width: 10px;
  height: 16px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.renew_common_btn:hover {
  opacity: .7;
  transform: scale(1.05); 
}

.renew_index_top_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.renew_index_top_btn li {
  margin: 0 20px;
}

.renew_index_top_img {
  max-width: 119px;
  margin: 0 auto;
}
.renew_index_top_img img {
  width: 100%;
  height: auto;
}

.renew_index_top_ttl_sub {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #f2919f;
  margin-bottom: 30px;

}

.renew_index_top_sns {
  display: flex;
  align-items: center;
  justify-content: center;
}

.renew_index_top_sns li {
  margin: 0 20px;
  text-align: center;
}

.renew_index_top_sns li a {
  display: inline-block;       /* 拡大アニメを自然にするために必須 */
  transition: transform 0.25s ease;  /* なめらかに動かす */
}

.renew_index_top_sns li a:hover {
  transform: scale(1.05);      /* 5%拡大（お好みで調整OK） */
}


.renew_index_top_sns li img {
  max-width: 82px;
}

.renew_index_top_sns li span {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  color: #59503d;
  font-weight: 700;
  font-size: 1.2rem;
}

@media screen and (max-width:850px) {
  .renew_common_btn {
    width: 360px;
  }
}

@media screen and (max-width:768px) {
  .renew_index_top_ttl {
  margin-bottom: 20px;
}

.renew_index_top_ttl span {
  font-size: 1.2rem;
}

.renew_index_top_btn {
  display: block;
  margin-bottom: 20px;
}

.renew_index_top_btn li {
  margin: 0px;
  margin-bottom: 10px;
}

.renew_common_btn {
  padding: 15px 20px;
  font-size: 1.2rem;
  width: 100%;
  
}

.renew_index_top_ttl_sub {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.renew_index_top_sns li {
  margin: 0 10px;
}

.renew_index_top_sns li img {
  max-width: 60px;
}

.renew_index_top_sns li span {
  font-size: .8rem;
}

.renew_nav .renew_index_top_sns {
  display: flex;
}
.renew_nav .renew_index_top_sns li {
  margin: 0 10px;
}

.renew_nav .renew_index_top_sns li img {
  max-width: 40px;
}

.renew_nav .renew_index_top_sns li span {
  font-size: .6rem;
}


}

/* renew_area02
-------------------------------------------------------*/
.renew_bace_txt {
  font-size: 1.2rem;
  color: #333;
}

.renew_area02_dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 15px;
  max-width: 1000px;
}

.renew_area02_dl dt {
  max-width: 200px;
}
.renew_area02_dl dt img {
  width: 100%;
}

.renew_area02_dl dd {
  width: 100%;
  flex: 1;
  margin-left: 30px;
}

.renew_area02_ttl {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #59503d;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.renew_area02_ttl_sub {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #59503d;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-align: center;
}

.renew_area02_ttl_sub b {
  display: block;
  font-size: 120%;
  text-decoration: underline;
  color: #f2919f;
  font-weight: 700;
}

@media screen and (max-width:768px) {
  .renew_bace_txt {
  font-size: 1rem;
}

.renew_area02_dl {
  display: block;
}

.renew_area02_dl dt {
  max-width: 150px;
  margin: 0 auto;
}

.renew_area02_dl dd {
  margin-left: 0px;
}

.renew_area02_ttl {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.renew_area02_ttl_sub {
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-align: left;
}

.renew_area02_ttl_sub b {
  font-size: 110%;
}

}

/* renew_area03
-------------------------------------------------------*/
.renew_bace_ttl {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #59503d;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 6px;
  position: relative;
  margin-top: 50px;
  margin-bottom: 30px;
  line-height: 1.2;
}

.renew_bace_ttl::before {
  content: "";
  position: absolute;
  background: url(../img/ttl_icon.png) no-repeat;
  background-size: 100%;
  width: 40px;
  height: 37px;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.renew_area03 .renew_inner {
  max-width: 1000px;
}
.renew_area03_dl {
  display: flex;
  justify-content: space-between;
}

.renew_area03_dl dt {
  width: 100%;
  flex: 1;
  margin-right: 30px;
}

.renew_area03_dl dd {
  max-width: 341px;
}
.renew_area03_dl dd img {
  width: 100%;
}

.renew_bace_ttl_sub {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #59503d;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 30px;
  position: relative;
}

.renew_bace_ttl_sub_underline {
  margin-bottom: 60px;
}

.renew_bace_ttl_sub_underline::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  background: #f2919f;
  left: 0;
  bottom: -30px;
}

.renew_pink {
  color: #f2919f;
}


@media screen and (max-width:768px) {
.renew_bace_ttl {
  font-size: 1.6rem;
}

.renew_bace_ttl::before {
  width: 30px;
  height: 27px;
  top: -35px;
}

.renew_area03_dl {
  display: block;
}

.renew_area03_dl dt {
  margin-right: 0px;
}

.renew_area03_dl dd {
  max-width: 250px;
  margin: 0 auto;
}

.renew_bace_ttl_sub {
  font-size: 1.15rem;
  letter-spacing: 0;
}

}

/* renew_area04
-------------------------------------------------------*/
.renew_bace_ttl_sub_center {
  text-align: center;
}

.renew_area04_blog {
  display: flex;
  justify-content: space-between;
  max-width: 950px;
  margin: 50px auto 0;
}

.renew_area04_blog_box {
  width: 46%;
}

.renew_area04_blog_ttl {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #59503d;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 25px;
  position: relative;
  text-align: center;
  
}

.renew_area04_blog_ttl span {
  display: inline-block;
  padding-left: 75px;
  position: relative;
}

.renew_area04_blog_ttl01::before {
  content: "";
  position: absolute;
  background: url(../img/news_icon01.png) no-repeat;
  background-size: 100%;
  width:68px;
  height: 68px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.renew_area04_blog_ttl02::before {
  content: "";
  position: absolute;
  background: url(../img/news_icon02.png) no-repeat;
  background-size: 100%;
  width:61px;
  height: 73px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.renew_area04_blog_box dl {
  border-top: 1px solid #d4cbb9;
  padding-top: 15px;
  margin-top: 15px;
}

.renew_area04_blog_box dl dt {
  color: #a39e80;
}

.renew_area04_blog_box dl dd {
  font-size: 1.1rem;
}

.renew_area04_blog_box dl dd a {
  color: #333;
}

.renew_area04_blog_box dl dd a:hover {
  text-decoration: underline;
}

@media screen and (max-width:768px) {
.renew_area04_blog {
  display: block;
  margin-top: 50px;
}

.renew_area04_blog_box {
  width: 100%;
}

.renew_area04_blog_ttl {
  font-size: 1.2rem;
  margin-bottom: 25px;
}
.renew_area04_blog_box dl dd {
  font-size: .9rem;
}

.renew_area04_blog .renew_area04_blog_box:nth-last-of-type(2) {
  margin-bottom: 50px;
}

.renew_bace_ttl_sub_sp_s {
  font-size: 1rem;
  letter-spacing: 0;
}

}

/* renew_area05
-------------------------------------------------------*/

.renew_bace_txt_center {
  text-align: center;
}

.renew_common_btn_center {
  max-width: 400px;
  margin: 0 auto;
}

.renew_area05 .renew_bace_txt {
  margin-bottom: 50px;
}

.renew_common_btn_center_cara {
  position: relative;
}

.renew_common_btn_center_cara::before {
  content: "";
  position: absolute;
  background: url(../img/img_l.png) no-repeat;
  background-size: 100%;
  width:113px;
  height: 152px;
  left: -200px;
  bottom: -20px;
}
.renew_common_btn_center_cara::after {
  content: "";
  position: absolute;
  background: url(../img/img_r.png) no-repeat;
  background-size: 100%;
  width:101px;
  height: 161px;
  right: -200px;
  bottom: -20px;
}

@media screen and (max-width:768px) {
  .renew_bace_txt_center {
    text-align: left;

  }
  .renew_common_btn_center_cara::before {
    display: none;
  }
  .renew_common_btn_center_cara::after {
    display: none;
  }
  .renew_area05 .renew_bace_txt {
  margin-bottom: 30px;
}

}

/* renew_area06
-------------------------------------------------------*/
.renew_photo {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.renew_photo li {
  width: 28%;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 40px;
}
.renew_photo li img {
  width: 100%;
}
@media screen and (max-width:768px) {
  .renew_photo li {
  width: 46%;
  margin-left: 2%;
  margin-right:2%;
  margin-bottom: 10px;
}


}

/* renew_area07
-------------------------------------------------------*/
.renew_area07 .renew_inner {
  max-width: 1000px;
}
.renew_index_top_btn_shien {
  margin-top: 50px;
}
.renew_index_top_btn_shien li {
  margin: 0 10px;
}
.renew_index_top_btn_shien .renew_common_btn {
  width: 300px;
}

.renew_bokin {
  border: 2px dashed #f2919f;
  border-radius: 30px;
  padding: 30px;
  margin-top: 50px;
  background: #fff;
}

.renew_bokin_ttl {
  max-width: 593px;
  margin: 0 auto;
}
.renew_bokin_ttl img {
  width: 100%;
}

.renew_bokin_btn {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.renew_bokin_btn li {
  width: 46%;
  margin-left: 2%;
  margin-right: 2%;
  margin-bottom: 20px;
}

.renew_bokin_btn a {
  display: block;
  background: #fcf1f3;
  border-radius: 100px;
  padding: 10px 20px;
  padding-left: 80px;
  color: #333;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  min-height: 80px;
  position: relative;
}

.renew_bokin_btn a::after {
  content: "";
  position: absolute;
  background: url(../img/arrow02.png) no-repeat;
  background-size: 100%;
  width: 11px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.renew_bokin_btn a::before {
  content: "";
  position: absolute;
  background: url(../img/icon_bokin01.png) no-repeat;
  background-size: 100%;
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.renew_bokin_btn a.renew_bokin_btn02::before {
  background: url(../img/icon_bokin02.png) no-repeat;
  background-size: 100%;
  width: 60px;
  height: 60px;
}

.renew_bokin_btn a.renew_bokin_btn03::before {
  background: url(../img/icon_bokin03.png) no-repeat;
  background-size: 100%;
  width: 60px;
  height: 60px;
}

.renew_bokin_btn a:hover {
  color: #f19db4;
}

.renew_bokin_caution {
  display: block;
  width: 90%;
  margin: 0 auto;
  font-size: 1rem;
  color: #333;
}

@media screen and (max-width:950px) {
  .renew_bokin_btn a {
  font-size: .9rem;
}
.renew_index_top_btn_shien .renew_common_btn {
  width: 230px;
  font-size: 1.1rem;
}

}

@media screen and (max-width:768px) {
.renew_index_top_btn_shien li {
  margin-bottom: 10px;
}
.renew_index_top_btn_shien .renew_common_btn {
  width:100%;
}

.renew_bokin {
  padding: 15px;
  margin-top: 50px;
  border-radius: 15px;
}

.renew_bokin .renew_bace_txt_center {
  text-align: left;
}

.renew_bokin_btn {
  margin-top: 40px;
  display: block;
}

.renew_bokin_btn li {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 20px;
}

.renew_bokin_btn a {
  padding-left: 80px;
  font-size: .8rem;
  min-height: 80px;
}

.renew_bokin_caution {
  width: 100%;
  font-size: .8rem;
}

}

/* renew_area08
-------------------------------------------------------*/
.renew_area08 .renew_inner {
  background: #fcf9f1;
  border-radius: 30px;
  padding: 50px 20px;
}
.renew_sponsor {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}
.renew_sponsor li {
  width: 48%;
  background: #fff;
  border: 1px solid #f6c2c9;
  border-radius: 10px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.renew_sponsor li a {
  padding: 15px 30px;
  color: #59503d;
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  border-radius: 10px;
}

.renew_sponsor li a:hover {
  background: #feedef;
}


.renew_sponsor li a::after {
  content: "";
  position: absolute;
  background: url(../img/arrow02.png)no-repeat;
    background-size: auto;
  background-size: 100%;
  width: 10px;
  height: 16px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.renew_sponsor li a span {
  display: block;
  font-weight: 400;
  font-size: 1rem;
}
@media screen and (max-width:1060px) {
  .renew_sponsor li a {
    font-size: 1.1rem;
  }
  .renew_sponsor li a span {
    font-size: 0.8rem;
  }
}
@media screen and (max-width:768px) {
  .renew_area08 .renew_inner {
    padding: 30px 20px;
  }
  .renew_sponsor {
    flex-flow: column;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
  }
  .renew_sponsor li {
    width: 100%;
    margin-bottom: 15px!important;
  }
  .renew_sponsor li a {
    font-size: 1rem;
  }
  .renew_sponsor li:not(:last-child) {
    margin-bottom: 20px;
  }
  .renew_sponsor li a {
    padding: 15px;
  }
}

/* renew_area09
-------------------------------------------------------*/
.renew_btm_logo {
  text-align: center;
  margin-bottom: 40px;
}
.renew_btm_logo img {
  max-width: 427px;
  width: 100%;
  height: auto;
}
.renew_map {
  margin-bottom: 20px;
  text-align: center;
}
.renew_map iframe {
  max-width: 100%;
}
.renew_map_txt {
  font-size: 1.2rem;
  margin-bottom: 80px;
  text-align: center;
  color: #333;
}
.renew_btm_sns {
  background: #fcf9f1;
  border-radius: 30px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 25px 0;
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.renew_btm_sns li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 30px;
  color: #333;
}
.renew_btm_sns li a {
  margin-left: 15px;
}
@media screen and (max-width:768px) {
  .renew_btm_logo {
    margin-bottom: 30px;
  }
  .renew_btm_logo img {
    width: 90%;
  }
  .renew_map iframe {
    height: 250px;
  }
  .renew_map_txt {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  .renew_btm_sns {
    border-radius: 20px;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 25px 20px;
    margin-bottom: 20px;
    font-size: 1rem;
  }
  .renew_btm_sns li {
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin: 0;
  }
  .renew_btm_sns li:not(:last-child) {
    margin-bottom: 15px;
  }
  .renew_btm_sns li a {
    margin-left: 0;
    margin: 10px 10px 0;
    display: inline;
  }
  .renew_btm_sns li div {
    margin-top: 10px;
  }
}

/* renew_footer
-------------------------------------------------------*/
.renew_footer {
  position: relative;
  background: #ede8e1;
}
.renew_footer::after {
  content: "";
  position: absolute;
  background: url(../img/bg_footer.png) no-repeat;
    background-size: auto;
  background-size: 100%;
  width: 272px;
  height: 225px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}
.renew_footer_inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 50px 20px;
}
.renew_footer_box {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 50px;
}
.renew_footer_nav {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.renew_footer_nav_list {
  margin-right: 60px;
}
.renew_footer_nav_list li:not(:last-child) {
  margin-bottom: 5px;
}
.renew_footer_nav_list a {
  position: relative;
  padding-left: 25px;
  color: #333;
}
.renew_footer_nav_list a::before {
  position: absolute;
  display: block;
  content: "ー";
  left: 0;
  top: 0;
}
.renew_footer .renew_common_btn {
  max-width: 300px;
  z-index: 5;
}
.renew_copy {
  text-align: center;
  font-size: 0.8rem;
  z-index: 5;
  position: relative;
  color: #333;
}
@media screen and (max-width:768px) {
  .renew_footer::after {
    width: 150px;
    height: 90px;
  }
  .renew_footer_inner {
    padding: 30px 20px;
  }
  .renew_footer_box {
    flex-flow: column;
    margin-bottom: 30px;
  }
  .renew_footer_nav {
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
    font-size: 0.9rem;
  }
  .renew_footer_nav_list {
    margin-right: 0;
  }
  .renew_footer_nav_list:not(:last-child) {
    margin-bottom: 5px;
  }
  .renew_footer .renew_common_btn {
    max-width: 250px;
    margin: 0 auto;
  }
  .renew_copy {
    font-size: 0.6rem;
  }

}


.ad_banner {
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.ad_banner img {
  width: 100%;
}
.ad_banner a:hover {
  opacity: .7;
}

@media screen and (max-width:768px) {
  .ad_banner {
  margin-bottom: 25px;
}
}

/* renew_info
-------------------------------------------------------*/
.renew_info {
  background: #fff;
  margin-top: 50px;
  padding-top: 50px;
  width: 100%;
}
@media screen and (max-width:768px) {
  .renew_info {
    margin-top: 30px;
    padding-top: 20px;
  }
}
/* PC */
.anchor {
  scroll-margin-top: 70px;
}

/* スマホ */
@media (max-width: 768px) {
  .anchor {
    scroll-margin-top: 60px;
  }
}
html {
  scroll-padding-top: 70px;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 60px;
  }
}
.sponsor-txt{
  font-size: 16px;
  display: block;
}
@media screen and (max-width:768px) {
  .article-sponsor .sponsor-title {
    font-size: 18px;
  }
  .sponsor-txt{
    font-size: 14px;
  }
  .article-sponsor {
      padding: 6vw 6vw 8vw!important;
  }
  .article-sponsor + .article-sponsor {
    margin-top: 10vw
  }
  .article-content>h3, .article-content>h4, .article-content>p, .article-content>ul, .article-content>ol {
    margin-left: 0!important;
    margin-right: 0!important;
  }
}