@charset "UTF-8";
/*-----------------------------------
	base
-----------------------------------*/
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 62.5%; /*10px*/
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05rem;
  color: #000000;
  background: #ffffff;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  box-sizing: border-box;
  position: relative;
  z-index: 999;
}
.contents_inner {
  width: 89.4%;
  max-width: 1100px;
  margin: 0 auto;
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
a, a:link, a:visited {
  display: block;
  text-decoration: none;
  color: #000000;
  cursor: pointer;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}
a[href^='tel:'] {
    pointer-events: none;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
/* device */
.pc {
  display: block;
}
.sp {
  display: none;
}
/* flexbox */
.row_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  a[href^='tel:'] {
    pointer-events: auto;
  }
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}
/*-----------------------------------

	contents

-----------------------------------*/
#contents {
  position: relative;
}
/*-----------------------------------

	header

-----------------------------------*/
header {
  width: 100vw;
  padding: 0 35px min(5.2vw, 120px) 16px;
	margin: auto;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}
header .header_bg {
  width: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
header .header_bg.start {
  background: url(../img/common/hd_bg.svg) no-repeat center top / cover;
  height: 100%;
}
header .header_bg.scroll {
  display: none;
  background: rgba(56, 175, 128, 0.9);
  height: calc(100% - min(4.7vw, 100px));
  min-height: 110px;
}
header .contents_inner {
  width: 100%;
  max-width: initial;
  position: relative;
  z-index: 1;
}
header .logo_box {
  width: clamp(180px, 19.8vw, 380px);
  margin-top: 13px;
}
header .header_logo a {
  display: block;
  width: 100%;
  transition: 0.1s;
}
header .header_logo a:hover {
  opacity: 0.7;
}
header .search_box input {
  margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
header .search_box .search_wrap {
  position: relative;
}
header .search_box input[type="text"] {
  font-size: 14px;
  letter-spacing: 0;
  background: #ffffff;
  width: 144px;
  padding: 4px 26px 4px 13px;
  border-radius: 6px;
  margin-right: 22px;
}
header .search_box input[type="text"]::placeholder {
  color: #3fb18b;
}
header .search_box input[type="submit"] {
  background: url(../img/common/search_icon.svg) no-repeat center / cover;
  width: 13px;
  height: 13px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 29px;
  bottom: 0;
  z-index: 1;
}
header .sns_box {
  width: 59px;
}
header .sns_box a {
  width: 21px;
}
header .sns_box a:hover {
  opacity: 0.7;
}
header .fix_box {
  position: fixed;
  right: -30px;
  bottom: 20px;
  z-index: 998;
}
header .fix_box a {
  display: block;
  font-size: 16px;
  font-family: "Noto Sans JP", serif;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  width: 140px;
  height: 140px;
  padding-right: 30px;
  border-radius: 18px;
  box-shadow: 7px 7px 5px rgba(4, 0, 0, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px 0;
  transition: 0.3s;
}
header .fix_box a:hover {
  opacity: 0.7;
}
header .fix_box a:not(:last-of-type) {
  margin-bottom: 19px;
}
header .fix_box a:nth-of-type(odd) {
  color: #ffffff;
  background: #ef857d;
  border: 7px solid #ffffff;
}
header .fix_box a:nth-of-type(even) {
  color: #ef857d;
  background: #ffffff;
  border: 7px solid #ef857d;
}
header .fix_box a::before{
  content: "";
  display: block;
  z-index: 1;
}
header .fix_box a.fix01::before{
  background: url(../img/common/mail_icon.svg) no-repeat center / cover;
  width: 45px;
  height: 29px;
}
header .fix_box a.fix02::before{
  background: url(../img/common/message_icon.svg) no-repeat center / cover;
  width: 46px;
  height: 40px;
}
header .fix_box a.fix03::before{
  background: url(../img/common/event_icon.svg) no-repeat center / cover;
  width: 49px;
  height: 44px;
}
@media screen and (max-width: 1100px) {
  header .header_bg.scroll {
    height: 85px;
    min-height: auto;
  }
  header .search_box .search_wrap {
    width: 300px;
    margin: 50px auto;
  }
  header .search_box input[type="text"] {
    font-size: 16px;
    width: 100%;
    padding: 16px 34px 16px 13px;
    border: 1px solid #3fb18b;
    margin-right: 0;
  }
  header .search_box input[type="submit"] {
    right: 12px;
  }
  header .fix_box a {
    font-size: 18px;
    width: 170px;
    padding-right: 20px;
  }
  header .sns_box {
    width: 108px;
    margin: 0 auto;
  }
  header .sns_box a {
    background: #3fb18b;
    width: 49px;
    height: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .sns_box img {
    width: 22px;
  }
  header .sns_box a {
    background: #3fb18b;
    border-radius: 50vw;
  }
}
@media screen and (max-width: 640px) {
  header {
    background: rgba(255, 255, 255, 0.6);
    padding: 0;
    height: 50px;
  }
  header .header_bg.start,
  header .header_bg.scroll {
    display: none !important;
  }
  header .logo_box {
    display: none;
  }
  header .search_box .search_wrap {
    width: 270px;
    margin: 30px auto;
  }
  header .search_box input[type="text"] {
    font-size: 13px;
    padding: 14px 34px 14px 13px;
  }
  header .fix_box {
    width: calc(100% - 92px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
  }
  header .fix_box a {
    font-size: 14px;
    line-height: 1.22;
    letter-spacing: 0.05em;
    color: #ffffff !important;
    background: #ef857d !important;
    width: calc(100% / 3);
    height: 50px;
    padding-right: 0;
    border: none !important;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0 !important;
  }
  header .fix_box a:not(:last-of-type) {
    border-right: 1px solid #ffffff !important;
  }
  header .fix_box a::before {
    display: none;
  }
  header .sns_box {
    width: 98px;
  }
  header .sns_box a {
    width: 44px;
    height: 44px;
  }
  header .sns_box img {
    width: 17px;
  }
}
/*-----------------------------------
	nav_pc
-----------------------------------*/
#nav_pc {
  width: calc(100% - clamp(180px, 19.8vw, 380px));
  margin-top: 33px;
}
#nav_pc .header_nav {
  width: 100%;
}
#nav_pc .header_nav.nav_tp {
  width: 800px;
  margin-left: auto;
  margin-bottom: 15px;
  justify-content: flex-end;
  align-items: center;
}
#nav_pc .header_nav.nav_tp ul.row_box {
  gap: 0 28px;
  margin-right: 26px;
}
#nav_pc .header_nav.nav_btm ul.row_box {
  justify-content: flex-end;
  gap: 5px 2.56vw;
}
#nav_pc .header_nav ul li a {
  display: inline-block;
  font-size: clamp(14px, 0.94vw, 18px);
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ffffff;
  transition: 0.1s;
  position: relative;
}
#nav_pc .header_nav.nav_tp ul li a {
  font-size: 14px;
  font-weight: 500;
}
#nav_pc .header_nav ul li a:hover {
  opacity: 0.7;
}
#nav_pc .header_nav ul li.lw_link {
  cursor: pointer;
  position: relative;
}
#nav_pc .header_nav ul li.lw_link > a::before {
  content: '';
  display: block;
  background: #ffffff;
  width: 100%;
  height: 2px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  z-index: 0;
  opacity: 0;
  transition: 0.3s;
}
#nav_pc .header_nav ul li.lw_link:hover > a::before {
  bottom: -3px;
  opacity: 1;
}
#nav_pc .header_nav ul li.lw_link:hover .lw_menu {
  top: clamp(24px, 1.46vw, 28px);
  opacity: 1;
  pointer-events: auto;
}
#nav_pc .header_nav ul li.lw_link .lw_menu {
  background: rgba(255, 255, 255, 1);
  width: 280px;
  padding: 28px 23px 25px 31px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  position: absolute;
  top: clamp(27px, 1.62vw, 31px);
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
#nav_pc .header_nav ul li.lw_link .lw_menu li:not(:last-of-type) {
  margin-bottom: 23px;
}
#nav_pc .header_nav ul li.lw_link .lw_menu li a {
  font-size: clamp(12px, 0.83vw, 16px);
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  color: #000000;
}
@media screen and (max-width: 1250px) {
  #nav_pc .header_nav.nav_btm ul.row_box {
    gap: 5px 15px;
  }
}
@media screen and (max-width: 1100px) {
  #nav_pc {
    display: none;
  }
}
/*-----------------------------------
	nav_sp
-----------------------------------*/
#nav_sp {
  display: none;
}
@media screen and (max-width: 1100px) {
  #nav_sp {
    display: block;
    position: relative;
  }
  #nav_sp .btn_container,
  #nav_sp .overlay {
    display: block;
  }
}
/*-----------------------------------
  btn_container
-----------------------------------*/
@media screen and (max-width: 1100px) {
  #nav_sp .btn_container {
    width: 54px;
    height: 24px;
    position: fixed;
    top: 20px;
    right: 40px;
    z-index: 1000;
    transition: opacity 0.2s ease;
    cursor: pointer;
  }
  #nav_sp .btn_container::after {
    content: "Menu";
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -23px;
    transition: ease 0.2s;
  }
  #nav_sp .btn_container.active::after {
    content: "Close";
    color: #000000;
    bottom: -25px;
    transition: ease 0.2s;
  }
  #nav_sp .btn_container span {
    background: #ffffff;
    width: 44px;
    height: 2px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  #nav_sp .btn_container.active span {
    background: #000000;
  }
  #nav_sp .btn_container span.ctr {
    bottom: 0;
  }
  #nav_sp .btn_container span.bm {
    top: auto;
    bottom: 0;
  }
  #nav_sp .btn_container.active .tp {
    top: 1px;
    transform: translateY(11px) translateX(0) rotate(45deg);
  }
  #nav_sp .btn_container.active .ctr {
    opacity: 0;
  }
  #nav_sp .btn_container.active .bm {
    top: 3px;
    transform: translateY(-1px) translateX(0) rotate(-45deg);
  }
}
@media screen and (max-width: 640px) {
  #nav_sp .btn_container {
    background: #38af80;
    width: 38px;
    height: 30px;
    top: 5px;
    right: 25px;
    border-radius: 3px;
  }
  #nav_sp .btn_container::after {
    font-size: 10px;
    color: #000000;
    bottom: -15px;
  }
  #nav_sp .btn_container.active::after {
    color: #000000;
    bottom: -15px;
  }
  #nav_sp .btn_container span {
    width: 25px;
    height: 1px;
  }
  #nav_sp .btn_container.active span {
    background: #ffffff;
  }
  #nav_sp .btn_container span.tp {
    top: 7px;
  }
  #nav_sp .btn_container.active .tp {
    top: 4px;
  }
  #nav_sp .btn_container span.bm {
    bottom: 7px;
  }
  #nav_sp .btn_container.active .bm {
    top: 9px;
  }
}
/*-----------------------------------
  overlay
-----------------------------------*/
@media screen and (max-width: 1100px) {
  #nav_sp .overlay {
    background: #ffffff;
    width: 100vw;
    min-height: 100vh;
    height: 100svh;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 999;
    overflow-y: auto;
    transition: 0.3s;
  }
  #nav_sp .overlay.open {
    right: 0;
  }
  #nav_sp .overlay .overlay_menu {
    width: 89%;
    padding-bottom: 60px;
    margin: auto;
    position: relative;
    top: 150px;
    left: 0;
    right: 0;
  }
  #nav_sp .overlay .main_box li {
    width: 100%;
    border-top: 1px solid #000000;
  }
  #nav_sp .overlay .main_box > li:last-child {
    border-bottom: 1px solid #000000;
  }
  #nav_sp .overlay .main_box li a,
  #nav_sp .overlay .main_box li span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #000000;
    padding: 25px 0;
    transition: 0.1s;
    cursor: pointer;
  }
  #nav_sp .overlay .main_box li span {
    width: 132px;
    margin: 0 auto;
    position: relative;
  }
  #nav_sp .overlay .main_box li span::before,
  #nav_sp .overlay .main_box li span::after {
    content: '';
    display: block;
    background: #00a06b;
    width: 12px;
    height: 2px;
    margin: auto;
    position: absolute;
    top: 0;
    right: -30px;
    bottom: 0;
    z-index: 0;
    transition: 0.3s;
  }
  #nav_sp .overlay .main_box li span::after {
    transform: rotate(90deg);
  }
  #nav_sp .overlay .main_box li span.active::after {
    transform: rotate(0deg);
  }
  #nav_sp .overlay .main_box .lw_menu {
    display: none;
  }
  #nav_sp .overlay .main_box .lw_menu li a {
    background: #eef6f1;
  }
}
@media screen and (max-width: 640px) {
  #nav_sp .overlay {
    z-index: 998;
  }
  #nav_sp .overlay .overlay_menu {
    padding-bottom: 80px;
    top: 90px;
  }
  #nav_sp .overlay .main_box li a,
  #nav_sp .overlay .main_box li span {
    font-size: 13px;
    padding: 11px 0;
  }
  #nav_sp .overlay .main_box li span {
    width: 108px;
  }
  #nav_sp .overlay .main_box li span::before,
  #nav_sp .overlay .main_box li span::after {
    width: 10px;
  }
}
/*-----------------------------------

	base

-----------------------------------*/
/* MOREボタン */
.more {
	font-size: 20px;
	font-family: "Lato", serif;
	font-weight: 300;
	letter-spacing: 0.1em;
	padding-right: 42px;
	width: max-content;
	position: relative;
}
.more::after {
	content: "";
	display: block;
	background: url(../img/common/arw_rt_bk.svg) no-repeat center / cover;
	width: 28px;
	height: 15px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
}
@media screen and (max-width: 640px) {
	.more {
		font-size: 14px;
		padding-right: 31px;
	}
	.more::after {
		width: 19px;
		height: 10px;
	}
}
/*-----------------------------------

	ft_tp_block

-----------------------------------*/
#ft_tp_block {
	padding: 0 0 178px;
	margin-bottom: -174px;
	position: relative;
	z-index: -1;
}
#ft_tp_block::after {
  content: '';
  display: block;
	background: url(../img/common/ft_tp_bg.png) no-repeat center bottom / cover;
  width: 100%;
  height: 800px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}
#ft_tp_block .bnr_wrapper {
	justify-content: flex-start;
	align-items: flex-start;
	gap: 33px 33px;
	margin-bottom: clamp(200px, 16.8vw, 258px);
}
#ft_tp_block .bnr_wrapper a {
	width: calc((100% - 136px) / 5);
	transition: 0.3s;
}
#ft_tp_block .bnr_wrapper a:hover {
	opacity: 0.7;
}
#ft_tp_block h2 {
	max-width: 330px;
	margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  #ft_tp_block .bnr_wrapper {
    gap: 33px 42px;
  }
	#ft_tp_block .bnr_wrapper a {
		width: calc((100% - 126px) / 4);
	}
}
@media screen and (max-width: 840px) {
	#ft_tp_block .bnr_wrapper a {
		width: calc((100% - 84px) / 3);
	}
}
@media screen and (max-width: 640px) {
	#ft_tp_block {
		padding: 0 0 126px;
		margin-bottom: -20vw;
	}
  #ft_tp_block::after {
    background: url(../img/common/sp/ft_tp_bg.png) no-repeat center bottom / cover;
    height: max(106vw, 397px);
  }
	#ft_tp_block .swiper-container {
		background: #f4faf6;
		width: 100vw;
		padding: 50px 0 64px;
		margin: 0 calc(50% - 50vw) 196px;
		position: relative;
	}
	#ft_tp_block .swiper-container .swiper {
		position: static;
	}
	#ft_tp_block .swiper-container .swiper-slide {
		width: 174px;
		margin-right: 7px;
	}
	#ft_tp_block .swiper-container .swiper-pagination {
		background: #cccccc;
		position: static;
		width: max(42.7vw, 160px);
		height: 1px;
		margin-top: 44px;
		margin-left: 20px;
	}
	#ft_tp_block .swiper-container .swiper-pagination .swiper-pagination-progressbar-fill {
		background: rgba(0, 0, 0, 0.6);
	}
	#ft_tp_block .swiper-container .btn_wrapper {
		width: 80px;
		height: 30px;
		position: absolute;
		right: 20px;
		bottom: 50px;
	}
	#ft_tp_block .swiper-container .swiper-button {
		width: 30px;
		height: 100%;
		position: static;
		margin: 0;
	}
	#ft_tp_block .swiper-container .swiper-button::after {
		display: none;
	}
	#ft_tp_block h2 {
		max-width: 160px;
	}
}
/*-----------------------------------

	footer

-----------------------------------*/
footer {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #ffffff;
  background: url(../img/common/ft_bg_02.png) no-repeat center bottom / cover;
  padding-top: 77.5px;
  margin-top: 117.5px;
  position: relative;
  z-index: 1;
}
footer::before {
  content: "";
  display: block;
  background: url(../img/common/ft_bg_01.png) no-repeat center top / cover;
  width: 100%;
  height: 117.5px;
  margin: auto;
  position: absolute;
  top: -115.5px;
  left: 0;
  right: 0;
}
footer .contents_inner {
  max-width: 1320px;
}
footer .title_box {
  max-width: 530px;
  margin: 0 auto 73px;
}
footer .footer_nav li a {
  color: #ffffff;
}
@media screen and (max-width: 640px) {
  footer {
    background: url(../img/common/sp/ft_bg_02.png) no-repeat center bottom / cover;
    padding-top: 45px;
    margin-top: 8vw;
  }
  footer::before {
    background: url(../img/common/sp/ft_bg_01.png) no-repeat center top / cover;
    height: 8vw;
    top: -7.8vw;
  }
  footer .title_box {
    max-width: 335px;
    margin: 0 auto 20px;
  }
}
/*-----------------------------------
  nav_tp
-----------------------------------*/
footer .nav_tp {
  margin-bottom: 26px;
}
footer .nav_tp > ul > li {
  width: max-content;
}
footer .nav_tp ul > li:nth-of-type(8)::before {
  content: "";
  display: block;
  background: #ffffff;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -45px;
}
footer .nav_tp ul.child li:not(:last-of-type) {
  margin-bottom: 11px;
}
footer .nav_tp ul li.sns_wrap {
  width: 192px;
  padding-left: 32px;
  position: relative;
}
footer .nav_tp ul li.sns_wrap::before {
  content: "";
  display: block;
  background: #ffffff;
  width: 1px;
  height: 257px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
}
footer .nav_tp > ul > li:nth-of-type(2) ul.child:nth-of-type(1),
footer .nav_tp > ul > li:nth-of-type(4) ul.child:nth-of-type(1),
footer .nav_tp > ul > li:nth-of-type(5) ul.child:nth-of-type(1),
footer .nav_tp > ul > li:nth-of-type(6) ul.child:nth-of-type(1),
footer .nav_tp > ul > li:nth-of-type(8) ul.child:nth-of-type(1) {
  margin-bottom: 30px;
}
footer .nav_tp > ul > li:nth-of-type(9) ul.child:nth-of-type(1) {
  margin-bottom: 32px;
}
footer .nav_tp ul li a {
  font-size: 14px;
  transition: 0.3s;
}
footer .nav_tp ul li a:hover {
  opacity: 0.7;
}
footer .nav_tp ul li a.parent {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
footer .nav_tp ul > li:nth-of-type(3) .parent.mb {
  margin-bottom: 18px;
}
footer .nav_tp ul li.sns_wrap a.parent {
  font-size: 16px;
  margin-bottom: 15px;
}
footer .nav_tp ul.child li a {
  font-weight: 500;
  padding-left: 23px;
  position: relative;
}
footer .nav_tp ul.child li a::before {
  content: "▶︎";
  display: block;
  margin: auto;
  transform: scale(0.6);
  position: absolute;
  top: 0;
  left: 5px;
  bottom: 0;
}
footer .nav_tp .sns {
  width: 78px;
  margin-top: 23px;
  padding-bottom: 49px;
  position: relative;
}
footer .nav_tp .sns a:nth-of-type(1) {
  width: 26px;
}
footer .nav_tp .sns a:nth-of-type(2) {
  width: 28px;
}
@media screen and (max-width: 1250px) {
  footer .nav_tp > ul {
    gap: 30px 0;
  }
  footer .nav_tp > ul > li {
    width: calc(100% / 3) !important;
  }
  footer .nav_tp ul li.sns_wrap {
    padding-left: 0;
  }
  footer .nav_tp ul li.sns_wrap::before {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  footer .pc {
    display: none;
  }
  footer .sp {
    display: block;
  }
  footer .nav_tp {
    margin-bottom: 23px;
  }
  footer .nav_tp > ul {
    gap: 10px 10px;
  }
  footer .nav_tp ul.child {
    display: none;
  }
  footer .nav_tp > ul > li {
    width: calc((100% - 10px) / 2) !important;
  }
  footer .nav_tp > ul > li:nth-of-type(7),
  footer .nav_tp > ul > li:nth-of-type(8),
  footer .nav_tp > ul > li:nth-of-type(9),
  footer .nav_tp > ul > li:nth-of-type(10) {
    width: 100% !important;
  }
  footer .nav_tp ul li:not(.other) a.parent {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    color: #38af80;
    background: #ffffff;
    padding: 6px 0;
    border-radius: 50vw;
    margin-bottom: 0;
    position: relative;
  }
  footer .nav_tp ul li:not(.other) a.parent::before {
    content: "";
    display: block;
    background: url(../img/common/arw_rt_gr.svg) no-repeat center / cover;
    width: 15px;
    height: 8px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 9px;
    bottom: 0;
  }
  footer .nav_tp .other_wrap {
    width: 100% !important;
    padding-top: 22px;
    border-top: 1px solid #ffffff;
    margin-top: 20px;
  }
  footer .nav_tp .other_wrap ul {
    justify-content: center;
    gap: 20px 24px;
  }
  footer .nav_tp .other_wrap .other a {
    font-size: 12px;
    font-weight: 700;
  }
}
/*-----------------------------------
  nav_bm
-----------------------------------*/
footer .nav_bm {
  padding: 31px 47px;
  border: 3px solid #ffffff;
  border-radius: 15px;
  margin: 0 auto 89px;
}
footer .nav_bm ul {
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px 20px;
}
footer .nav_bm .btn_wrap .ijyu_btn {
  font-size: 18px;
  font-weight: 600;
  color: #38af80;
  background: #ffffff;
  text-align: center;
  width: 415px;
  padding: 22px 0;
  border-radius: 50vw;
  position: relative;
}
footer .nav_bm .btn_wrap .ijyu_btn::after {
  content: '';
  display: block;
  background: #38af80;
  width: 10px;
  height: 10px;
  border-radius: 50vw;
  margin: auto;
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  z-index: 1;
}
footer .nav_bm li h2 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
footer .nav_bm li .tel {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1024px) {
  footer .nav_bm ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .nav_bm ul li:nth-of-type(2),
  footer .nav_bm ul li:nth-of-type(3) {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 640px) {
  footer .nav_bm {
    padding: 0;
    border: 2px solid #ffffff;
    border-radius: 10px;
    margin-bottom: 21px;
  }
  footer .nav_bm h2.sp a {
    font-size: 14px;
    text-align: center;
    color: #38af80;
    background: #ffffff;
    padding: 14px 55px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    position: relative;
  }
  footer .nav_bm h2.sp a::after {
    content: "";
    display: block;
    background: url(../img/common/arw_rt_gr.svg) no-repeat center / cover;
    width: 15px;
    height: 8px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 38px;
    bottom: 0;
  }
  footer .nav_bm ul {
    padding: 14px 10px 15px;
    justify-content: center;
    gap: 7px 0;
  }
  footer .nav_bm ul li:nth-of-type(2),
  footer .nav_bm ul li:nth-of-type(3) {
    width: 100%;
  }
  footer .nav_bm li h2 {
    font-size: 10px;
    text-align: center;
  }
  footer .nav_bm li .tel {
    font-size: 15px;
    text-align: center;
  }
}
/*-----------------------------------
	copy
-----------------------------------*/
#copy {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 47px;
}
#copy small {
  font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (max-width: 640px) {
  #copy {
    padding-bottom: 26px;
  }
  #copy small {
    font-size: 13px;
  }
}
/*-----------------------------------

	pagetop

-----------------------------------*/
#pagetop {
  position: fixed;
  right: 60px;
  bottom: 80px;
  cursor: pointer;
  z-index: 998;
}
@media screen and (max-width: 640px) {
}