@charset "UTF-8";
/* CSS Document */
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03rem;
  font-size: 16px;
  background: rgb(255, 255, 255);
}
a {
  transition: all .3s;
}
a, a:hover {
  color: #222;
}
@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
.inner1200 {
  width: 1200px;
  margin: 0 auto;
}
.inner1080 {
  width: 1080px;
  margin: 0 auto;
}
.inner {
  width: 864px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .inner1200 {
    width: 100%;
    padding: 0 20px;
  }
  .inner1080 {
    width: 95%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 864px) {
  .inner1200, .inner1080 {
    width: 95%;
    padding: 0;
  }
  .inner {
    width: 95%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}
.flex, .flex_pc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flex_pc {
    display: block;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* btn */
.btn {
  display: inline-block;
  padding: 22px 102px;
  position: relative;
  text-align: center;
  font-size: 14px;
  color: #6D6D6D;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
.btn::after {
  font-family: "Font Awesome 5 Free";
  display: block;
  content: "\f061";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translate(0, -50%);
  transition: .3s all;
}
@media screen and (min-width: 767px) {
  .btn:hover {
    padding: 27px 112px;
    margin: -5px 0 -5px;
  }
  .btn:hover::after {
    right: 17px;
  }
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 20px;
    padding: 30px 100px;
  }
}
@media screen and (max-width: 480px) {
  .btn {
    font-size: 12px;
    padding: 14px 57px;
  }
}
/* 余白 */
/* margin-bottom */
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb35 {
  margin-bottom: 35px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb45 {
  margin-bottom: 45px;
}
.mb50 {
  margin-bottom: 50px;
}
/* padding-bottom */
.pb10 {
  padding-bottom: 10px;
}
.pb15 {
  padding-bottom: 15px;
}
.pb20 {
  padding-bottom: 20px;
}
.pb25 {
  padding-bottom: 25px;
}
.pb30 {
  padding-bottom: 30px;
}
.pb35 {
  padding-bottom: 35px;
}
.pb40 {
  padding-bottom: 40px;
}
.pb45 {
  padding-bottom: 45px;
}
.pb50 {
  padding-bottom: 50px;
}
/* font */
.ff_futura {
  font-family: Futura, 'Century Gothic', 游ゴシック体, YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 游ゴシック, 'Yu Gothic', メイリオ, Meiryo, sans-serif;
  font-weight: normal;
  letter-spacing: 1.5px;
}
section h2.ff_futura {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  line-height: 2.5rem;
  padding-bottom: 20px;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  section h2.ff_futura {
    font-size: 20px;
  line-height: 2rem;
  }
}
  .h-jp-en::before {
   content: attr(data-en);
   display: block;
   font-size: 16px;
  }
@media screen and (max-width: 767px) {
  .h-jp-en::before {
   font-size: 14px;
  }
}
/* animation */
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}
.fade-in-up {
  transform: translate(0, 50px);
}
.fade-in-up-first {
  animation: fadeInUp 1s cubic-bezier(0.1, -0.6, 0.2, 0) both;
}
.fade-in-down {
  transform: translate(0, -50px);
}
.fade-in-left {
  transform: translate(-50px, 0);
}
.fade-in-right {
  transform: translate(50px, 0);
}
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}
.poyo {
  animation-name: poyopoyo;
  animation-duration: 1s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  opacity: 0;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.8);
  }
  from {
    opacity: .75;
  }
  to {
    opacity: 1;
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn{
  0%{
    opacity:0;
  }
  to{
    opacity:1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
 @keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.delay-time03 {
  animation-delay: 0.3s;
}
.delay-time06 {
  animation-delay: 0.6s;
}
.delay-time09 {
  animation-delay: 0.9s;
}
.delay-time12 {
  animation-delay: 1.2s;
}
.delay-time15 {
  animation-delay: 1.5s;
}
.delay-time18 {
  animation-delay: 1.8s;
}
.delay-time21 {
  animation-delay: 2.1s;
}
.delay-time24 {
  animation-delay: 2.4s;
}
.delay-time27 {
  animation-delay: 2.7s;
}
.delay-time30 {
  animation-delay: 3.0s;
}
.delay-time33 {
  animation-delay: 3.3s;
}
.delay-time36 {
  animation-delay: 3.6s;
}
.delay-time39 {
  animation-delay: 3.9s;
}
.delay-time42 {
  animation-delay: 4.2s;
}
.delay-time45 {
  animation-delay: 4.5s;
}
.link-box:hover {
  cursor: pointer;
}
/* header ================= */
#header {
  background-color: #fff;
  position: relative;
  z-index: 10;
}

#header.fixed {
    position: fixed; /*fixedを設定して固定*/
    z-index: 999; /*最前面へ*/
    top: 0; /*位置指定*/
    left: 0; /*位置指定*/
	width: 100%;
}
#header .h_logo {
  width: 155px;
}
#header .inner1080 {
  position: relative;
  padding: 25px 0;
}
#header .inner1080::after {
  position: absolute;
  display: block;
  content: "";
  width: 151px;
  height: 30px;
  right: 135px;
  bottom: 0;
}
/* ページ別アイコン */
.page_concept #header .inner1080::after, .page_news #header .inner1080::after, .top #header .inner1080::after {
  background: url("../img/common/h_icon_green.png") right bottom -1px no-repeat;
  background-size: 100%;
}
.page_content #header .inner1080::after {
  background: url("../img/common/h_icon_yel.png") right bottom -1px no-repeat;
  background-size: 100%;
}
.page_rental #header .inner1080::after {
  background: url("../img/common/h_icon_ppl.png") right bottom -1px no-repeat;
  background-size: 100%;
}
.page_others #header .inner1080::after, .page_faq #header .inner1080::after, .page_recruit #header .inner1080::after {
  background: url("../img/common/h_icon_beige.png") right bottom -1px no-repeat;
  background-size: 100%;
}
.page_cal #header .inner1080::after {
  background: url("../img/common/h_icon_blue.png") right bottom -1px no-repeat;
  background-size: 100%;
}
.page_contact #header .inner1080::after, .privacypolicy #header .inner1080::after {
  background: url("../img/common/h_icon_gray.png") right bottom -1px no-repeat;
  background-size: 100%;
}
#header nav ul li a {
  color: rgba(0, 0, 0, 0.50);
  font-size: 15px;
  font-weight: 700;
  padding: 0 13px;
}
#header nav ul li a:hover {
  color: rgba(0, 0, 0, 1.00);
}
/* エリア別アイコン */
body.page_color_pink #header .inner1080::after {
  background: url("../img/area/common/h_icon_pink.png") right bottom -1px no-repeat;
  background-size: 100%;
}
body.page_color_yellow #header .inner1080::after {
  background: url("../img/area/common/h_icon_yel.png") right bottom -1px no-repeat;
  background-size: 100%;
}
body.page_color_blue #header .inner1080::after {
  background: url("../img/area/common/h_icon_blue.png") right bottom -1px no-repeat;
  background-size: 100%;
}
body.page_color_green #header .inner1080::after {
  background: url("../img/area/common/h_icon_greenH.png") right bottom -1px no-repeat;
  background-size: 100%;
}
body.page_color_blueL #header .inner1080::after {
  background: url("../img/area/common/h_icon_blueL.png") right bottom -1px no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1200px) {
  #header nav ul li a {
    font-size: 12px;
  }
}
@media screen and (max-width: 1024px) {
  #header .inner1080 {
    padding: 25px 0 15px;
  }
  #header .h_logo {
    margin: 0 0 15px;
  }
  #header nav ul li a {
    padding: 0 7px;
  }
	
}
@media screen and (max-width: 767px) {
  #header {
    height: 84px;
    background: #fff;
    width: 100%;
  }
  #header .inner1080 {
    display: block;
	padding: 25px 0;
  }
  #header nav {
    width: 100%;
  }
  #header .inner1080::after {
    position: absolute;
    display: block;
    content: "";
    width: 135px;
    height: 27px;
    right: 73px;
    bottom: 0;
    background: url(../img/common/h_icon_green.png) right bottom -1px no-repeat;
    background-size: 100%;
  }
  #header .h_logo {
    margin: 0 0 0;
  }
  /*========
	sp_btn
	==========*/
  .openbtn {
    position: absolute;
    cursor: pointer;
    width: 50px;
    height: 50px;
    top: 10px;
    right: 10px;
    z-index: 9999;
  }
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    z-index: 99;
    text-align: center;
    line-height: 1;
  }
  .openbtn span img {
    transition: all .4s;
  }
  .active.openbtn span img {
    transform: rotate(-45deg);
  }
  .active .sp_menu_txt {
    display: none;
  }
  #sp_nav {
    position: fixed;
    z-index: 999;
    top: 83px;
    right: -100%;
    width: 100%;
    background: url("../img/common/nav_green.png") center top no-repeat;
    background-size: 100%;
    transition: all 0.6s;
    height: 100%;
    overflow-y: scroll;
    padding: 30px 0 0 80px;
  }
  /* ページ別スマホナビ背景 */
  .page_content #sp_nav {
    background: url("../img/common/nav_yel.png") center top no-repeat;
    background-size: 100%;
  }
  .page_rental #sp_nav {
    background: url("../img/common/nav_ppl.png") center top no-repeat;
    background-size: 100%;
  }
  .page_others #sp_nav, .page_faq #sp_nav, .contact #sp_nav, .page_recruit #sp_nav {
    background: url("../img/common/nav_beige.png") center top no-repeat;
    background-size: 100%;
  }
  .page_cal #sp_nav {
    background: url("../img/common/nav_blue.png") center top no-repeat;
    background-size: 100%;
  }
  .page_contact #sp_nav, .privacypolicy #sp_nav {
    background: url("../img/common/nav_gray.png") center top no-repeat;
    background-size: 100%;
  }
  /* エリア別スマホナビ背景 */
  body.page_color_pink #header #sp_nav {
    background: url("../img/area/common/nav_pink.png") center top no-repeat;
    background-size: 100%;
  }
  body.page_color_green #header #sp_nav {
    background: url("../img/area/common/nav_greenH.png") center top no-repeat;
    background-size: 100%;
  }
  body.page_color_blue #header #sp_nav {
    background: url("../img/area/common/nav_blue.png") center top no-repeat;
    background-size: 100%;
  }
  body.page_color_yellow #header #sp_nav {
    background: url("../img/area/common/nav_yel.png") center top no-repeat;
    background-size: 100%;
  }
  body.page_color_blueL #header #sp_nav {
    background: url("../img/area/common/nav_blueL.png") center top no-repeat;
    background-size: 100%;
  }
  #sp_nav.panelactive {
    right: 0;
  }
  #header nav ul li {
    font-size: 16px;
    margin: 0 0 30px;
  }
  #header nav ul li a {
    color: #fff;
    text-shadow: 0px 0px 3px rgb(0 0 0 / 20%);
    display: block;
    position: relative;
  }
  #header nav > ul > li > a::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    display: block;
    font-size: 1rem;
    top: 50%;
    right: 30%;
    transform: translate(0, -50%);
  }
  #header nav > ul > li .sns {
    justify-content: flex-end;
    padding: 50px 26% 0 0;
  }
  #header nav > ul > li .sns li {
    font-size: 10px;
    color: #fff;
    text-shadow: 0px 0px 3px rgb(0 0 0 / 20%);
  }
  #header nav > ul > li .sns li:first-of-type {
    padding: 10px 13px 10px 0;
  }
  #header nav > ul > li .sns li:nth-child(2) a {
    padding: 0 13px 0 0;
  }
  #header nav > ul > li .sns li:last-of-type a {
    padding: 5px 0;
  }
  #header nav > ul > li .sns img {
    filter: drop-shadow(0 0 3px #00000030);
  }
}
@media screen and (max-width: 480px) {}
/* totop ================= */
.totop {
  padding: 70px 0 200px;
}
.totop a {
  position: relative;
  color: #fff;
}
.totop a:hover {
  opacity: .7;
}
.totop a::before {
  position: absolute;
  content: "";
  display: block;
  background: url("../img/common/totop_icon.svg") center top no-repeat;
  background-size: 100%;
  width: 63px;
  height: 63px;
  left: 50%;
  top: -70px;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  .totop {
    padding: 0 0 100px;
  }
  .totop a {
    font-size: 14px;
  }
  .totop a::before {
    width: 50px;
    height: 50px;
  }
}
/* footer ================= */
footer {
  background-color: #fff;
  position: relative;
}
footer::before {
  position: absolute;
  content: "";
  display: block;
  background: url("../img/common/f_bg_sch.svg") center top no-repeat;
  background-size: 100%;
  left: 50%;
  top: -170px;
  transform: translate(-50%, 0);
  width: 1080px;
  height: 239px;
}
footer .f_company {
  padding: 100px 0 90px;
  border-bottom: 1px solid #707070;
}
footer .f_link, footer .f_account, footer .f_account ul li {
  width: 49%;
}
footer .f_link {
  width: 638px;
  margin: 0 auto;
  align-items: baseline;
}
footer .f_link .f_logo {
  width: 30%;
}
footer .f_link ul {
  width: 50%;
}
footer .f_link ul li {
  margin: 0 0 20px;
}
footer .f_link ul li a {
  text-decoration: underline;
  font-size: 15px;
  font-weight: 700;
  color: #646464;
  padding: 5px;
}
footer .f_link ul li a:hover {
  text-decoration: none;
  background-color: #646464;
  color: #fff;
}
footer .f_account .account_tit {
  font-size: 20px;
  font-weight: 700;
  color: #707070;
  margin: 0 0 10px;
}
footer .f_account ul.pc {
  display: flex;
}
footer .f_account ul li a {
  border: 1px solid #707070;
  border-radius: 10px;
  padding: 19px 10px 19px 60px;
  background-color: #fff;
  color: #707070;
  display: block;
  font-size: 12px;
  font-weight: 700;
  position: relative;
}
footer .f_account ul li a:hover {
  background-color: #707070;
  color: #fff;
}
footer .f_account ul li:first-of-type a::after {
  display: block;
  content: "";
  position: absolute;
  background: url("../img/common/facebook_gray.svg") left center no-repeat;
  background-size: 100%;
  width: 36px;
  height: 36px;
  left: 13px;
  top: 50%;
  transform: translate(0, -50%);
}
footer .f_account ul li:first-of-type a:hover::after {
  background: url("../img/common/facebook_wht.svg") left center no-repeat;
  background-size: 100%;
}
footer .f_account ul li:nth-child(2) a::after {
  display: block;
  content: "";
  position: absolute;
  background: url("../img/common/youtube_gray.svg") left center no-repeat;
  background-size: 100%;
  width: 39px;
  height: 28px;
  left: 12px;
  top: 50%;
  transform: translate(0, -50%);
}
footer .f_account ul li:nth-child(2) a:hover::after {
  background: url("../img/common/youtube_wht.svg") left center no-repeat;
  background-size: 100%;
}
footer .f_corporate {
  padding: 50px 0 47px;
  justify-content: center;
  flex-direction: row-reverse;
}
footer .f_corporate dl {
  width: 45%;
  margin: 0 10px;
  justify-content: flex-start;
  align-items: center;
}
footer .f_corporate dl:nth-of-type(1) {
  width: 35%;
}
footer .f_corporate dl dt {
  padding: 10px 52px 10px 0;
  color: #646464;
  font-size: 12px;
}
footer .f_corporate dl dd {
  align-items: center;
}
footer .f_corporate dl dd p.labo {
  width: 50%;
}
footer .f_corporate dl dd p.labo img {
  width: 85%;
}
footer .f_corporate dl dd p.undokai02 {
  padding: 0 50px 0 0;
}
.copyright {
  margin: 0 0 48px;
  color: #505050;
  font-weight: 700;
  font-size: 15px;
}
/* reserve_btn */
.reserve_btn a {
  position: fixed;
  bottom: 80px;
  right: 0;
  z-index: 100;
  animation-name: poyo_reserve;
  animation-duration: 2s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}
@keyframes poyo_reserve {
  0%, 20%, 30% {
    transform: rotate(0deg);
  }
  40%, 60%, 80% {
    transform: rotate(-10deg);
  }
  50%, 70%, 90% {
    transform: rotate(10deg);
  }
}
/* area_bnr */
.area_bnr li a {
  position: fixed;
  bottom: 50px;
  left: -10px;
  z-index: 100;
  color: #Fff;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
}
@media screen and (min-width: 767px) {
  .area_bnr li a:hover {
    opacity: .7;
  }
}
.area_bnr li a span {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translate(-50%, 0);
  letter-spacing: 0;
}
.area_bnr li:nth-child(3) a span {
  bottom: 18;
}
.area_bnr li:first-child a {
  background: url("../img/common/nav_bnr_bg01.svg") left top no-repeat;
  width: 104px;
  bottom: 226px;
  height: 104px;
}
.area_bnr li:nth-child(2) a {
  background: url("../img/common/nav_bnr_bg02.svg") left top no-repeat;
  width: 104px;
  height: 118px;
  bottom: 138px;
}
.area_bnr li:nth-child(3) a {
  background: url("../img/common/nav_bnr_bg03.svg") left top no-repeat;
  width: 104px;
  height: 118px;
}
@media screen and (max-width: 1200px) {
  footer::before {
    width: 100%;
  }
}
@media screen and (max-width: 864px) {
  footer::before {
    width: 100%;
    top: -150px;
  }
  footer .f_link {
    display: block;
    width: 40%;
  }
  footer .f_account {
    width: 60%;
  }
  footer .f_link .f_logo {
    margin: 0 0 30px;
  }
  footer .f_link .f_logo, footer .f_link ul {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  footer::before {
    background: url(../img/common/f_bg_sch_sp.svg) center top no-repeat;
    background-size: 100%;
    width: 100%;
    height: 85px;
    top: -70px;
    left: 0;
    transform: inherit;
  }
  footer .f_company {
    padding: 30px 0 40px;
    border-bottom: none;
  }
  footer .f_link ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .f_link, footer .f_account {
    width: 100%;
  }
  footer .f_link ul li:first-of-type {
    text-align: right;
    width: 39%;
  }
  footer .f_link ul li:nth-child(2) {
    padding: 6px 15px 0;
    font-size: 10px;
    font-weight: 700;
    width: 2%;
    color: #646464;
  }
  footer .f_link ul li:last-of-type {
    text-align: left;
    width: 30%;
  }
  footer .f_link ul li a {
    font-size: 10px;
    text-decoration: none;
  }
  footer .f_account ul.pc {
    display: none;
  }
  footer .f_account ul.sp {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  footer .f_account ul.sp li {
    width: 30%;
    padding: 0 20px;
  }
  footer .f_account ul.sp li:first-of-type a {
    text-align: right;
  }
  footer .f_account ul.sp li:nth-child(2) a {
    padding: 4px 0;
  }
  footer .f_account ul.sp li a {
    border: none;
    padding: 0;
  }
  footer .f_account ul.sp li a img {
    width: 40%;
  }
  footer .f_account ul li:first-of-type a::after, footer .f_account ul li:first-of-type a:hover::after, footer .f_account ul li:nth-child(2) a::after, footer .f_account ul li:nth-child(2) a:hover::after {
    display: none;
  }
  footer .f_account ul li a:hover {
    background-color: transparent;
  }
  footer .f_corporate {
    padding: 0 0 40px;
  }
  footer .f_corporate dl {
    width: 70%;
    margin: 0 auto 30px;
  }
  footer .f_corporate dl:nth-of-type(1) {
    width: 70%;
  }
  footer .f_corporate dl dt {
    text-align: center;
    padding: 0 0 15px;
    position: relative;
  }
  footer .f_corporate dl dt::before, footer .f_corporate dl dt::after {
    position: absolute;
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background-color: rgba(112, 112, 112, .2);
    top: 30%;
    transform: translate(0, -50%);
  }
  footer .f_corporate dl dt::before {
    left: 0;
  }
  footer .f_corporate dl dt::after {
    right: 0;
  }
  footer .f_corporate dl dd {
    justify-content: center;
  }
  footer .f_corporate dl dd p.labo {
    padding: 0;
  }
  footer .f_corporate dl dd p.undokai {
    text-align: center;
  }
  footer .f_corporate dl dd p.undokai img {
    width: 80%;
  }
  footer .f_corporate dl dd p.undokai02 {
    padding: 0 20px 0 0;
  }
  footer .f_corporate dl dd p.labo img {
    width: 75%;
  }
  .copyright {
    font-size: 10px;
  }
  /* reserve_btn */
  .reserve_btn a {
    left: 0;
    right: inherit;
    bottom: 10%;
  }
  .area_page .reserve_btn a {
    left: 0;
    right: inherit;
  }
  .reserve_btn a img {
    width: inherit;
  }
  .area_page .reserve_btn a img {
    width: 85%;
  }
  .reserve_btn.bnr_btm a {
    bottom: 80px;
  }
  /* area_bnr */
  .area_bnr li a {
    bottom: 0;
    left: inherit;
    font-weight: 700;
  }
  .area_bnr li a span {
    bottom: 7px;
    font-size: 10px;
    display: block;
    width: 100%;
  }
  .area_bnr li:first-of-type a {
    background: url("../img/common/sp_btn01_gray.svg") right bottom no-repeat;
    background-size: 100%;
    width: 25%;
    height: 10%;
    left: 1px;
    bottom: 0;
  }
  .area_bnr li:nth-child(2) a {
    background: url("../img/common/sp_btn02_gray.svg") right bottom no-repeat;
    background-size: 100%;
    width: 25%;
    height: 10%;
    left: 25%;
    bottom: 0;
  }
  .area_bnr li:nth-child(3) a {
    background: url("../img/common/sp_btn03_gray.svg") left bottom no-repeat;
    background-size: 100%;
    width: 25%;
    height: 10%;
    right: 25.2%;
    bottom: 0;
  }
  .area_bnr li:nth-child(4) a {
    background: url("../img/common/sp_btn04_gray.svg") left bottom no-repeat;
    background-size: 100%;
    width: 25%;
    height: 10%;
    bottom: 1px;
    right: 1px;
  }
  /* bg_wht */
  .area_bnr.bg_wht li a {
    color: #646464;
  }
  .area_bnr.bg_wht li:first-of-type a {
    background: url("../img/common/sp_btn01_wht.svg") right bottom no-repeat;
    background-size: 100%;
  }
  .area_bnr.bg_wht li:nth-child(2) a {
    background: url("../img/common/sp_btn02_wht.svg") right bottom no-repeat;
    background-size: 100%;
  }
  .area_bnr.bg_wht li:nth-child(3) a {
    background: url("../img/common/sp_btn03_wht.svg") left bottom no-repeat;
    background-size: 100%;
  }
  .area_bnr.bg_wht li:nth-child(4) a {
    background: url("../img/common/sp_btn04_wht.svg") left bottom no-repeat;
    background-size: 100%;
  }
}
@media screen and (max-width: 480px) {
  .area_bnr li a span {
    font-size: 8px;
  }
  .area_bnr li:first-of-type a, .area_bnr li:nth-child(2) a, .area_bnr li:nth-child(3) a, .area_bnr li:nth-child(4) a {
    height: 90px;
  }
  footer .f_corporate dl, footer .f_corporate dl:nth-of-type(1) {
    width: 90%;
  }
  .reserve_btn a {
    bottom: 2%;
  }
  .reserve_btn a img {
    width: 85%;
  }
  .page_color_pink .reserve_btn a,
  .page_color_yellow .reserve_btn a,
  .page_color_green .reserve_btn a,
  .page_color_blue .reserve_btn a,
  .page_color_blueL .reserve_btn a {
    bottom: 10%;
  }
}
@media screen and (max-width: 380px) {
	
  .page_color_pink .reserve_btn a,
  .page_color_yellow .reserve_btn a,
  .page_color_green .reserve_btn a,
  .page_color_blue .reserve_btn a,
  .page_color_blueL .reserve_btn a {
    bottom: 12%;
  }
}

/* common ================= */
/* main（背景） */
/* ページ別 */
main.page {
  padding: 80px 0 300px;
}
@media screen and (max-width: 1024px) {
  main.page {
    padding-top: 128px;
  }
}
@media screen and (max-width: 767px) {
  main.page {
    padding-top: 80px;
  }
}
.page_concept main, .page_news main {
  background: url("../img/common/bg_green.png") center center no-repeat;
  background-size: cover;
}
.page_color_green main {
  background: url("../img/area/common/bg_greenH.png") center center no-repeat;
  background-size: cover;
}
.page_content main {
  background: url("../img/common/bg_yel.png") center center no-repeat;
  background-size: cover;
}
.page_color_yellow main {
  background: url("../img/area/common/bg_yel.png") center center no-repeat;
  background-size: cover;
}
.page_rental main, .page_color_purple main {
  background: url("../img/common/bg_ppl.png") center center no-repeat;
  background-size: cover;
}
.page_others main, .page_faq main, .page_recruit main, .page_color_beige main {
  background: url("../img/common/bg_beige.png") center center no-repeat;
  background-size: cover;
}
.page_cal main {
  background: url("../img/common/bg_blue.png") center center no-repeat;
  background-size: cover;
}
.page_color_blue main {
  background: url("../img/common/bg_blue_D.png") center center no-repeat;
  background-size: cover;
}
.page_contact main, .privacypolicy main, .page_color_gray main {
  background: url("../img/common/bg_gray.png") center center no-repeat;
  background-size: cover;
}
.page_color_pink main {
  background: url("../img/common/bg_pink.png") center center no-repeat;
  background-size: cover;
}
.page_color_greenH main {
  background: url("../img/common/bg_greenH.png") center center no-repeat;
  background-size: cover;
}
.page_color_blueL main {
  background: url("../img/common/bg_blueL.png") center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 787px) {}
@media screen and (max-width: 480px) {
  main.page {
    padding: 80px 0 155px;
  }
}
/* エリア別 */
main.area_page {
  padding: 80px 0 160px;
}
@media screen and (max-width: 1024px) {
  main.area_page {
    padding: 128px 0 80px;
  }
}
@media screen and (max-width: 767px) {
  main.area_page {
    padding: 80px 0 80px;
  }
}
/* MV slick slider */
.slider {
  position: relative;
  z-index: 1;
  height: 529px;
}
.slick-track {
  display: flex;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  height: 100%;
}
.slider-item {
  width: 100%;
  height: 528px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
ul.slider {
  overflow: hidden;
}
/* top mv_slider */
.mv_slider {
  position: absolute;
}
.mv_slider, .mv_slider li {
  height: 1000px;
}
.mv_slider .slider-item01 {
  background: url("../img/top/mv01.png") center top no-repeat;
  background-size: 110%;
}
.mv_slider .slider-item02 {
  background: url("../img/top/mv02.png") center top no-repeat;
  background-size: 110%;
}
.mv_slider .slider-item03 {
  background: url("../img/top/mv03.png") center top no-repeat;
  background-size: 110%;
}
.mv_slider .slider-item04 {
  background: url("../img/top/mv04_2.png") center top no-repeat;
  background-size: 110%;
}
.mv_slider .slider-item05 {
  background: url("../img/top/mv05.png") center top no-repeat;
  background-size: 110%;
}
@media screen and (max-width: 1100px) {
  .mv_slider .slider-item01 {
    background: url("../img/top/mv01.png") center top no-repeat;
    background-size: cover;
  }
  .mv_slider .slider-item02 {
    background: url("../img/top/mv02.png") center top no-repeat;
    background-size: cover;
  }
  .mv_slider .slider-item03 {
    background: url("../img/top/mv03.png") center top no-repeat;
    background-size: cover;
  }
  .mv_slider .slider-item04 {
    background: url("../img/top/mv04_2.png") center top no-repeat;
    background-size: cover;
  }
  .mv_slider .slider-item05 {
    background: url("../img/top/mv05.png") center top no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .mv_slider, .mv_slider li {
height: 80vh;
overflow: hidden;
  }
  .mv_slider .slider-item01 {
    background: url("../img/top/mv01_sp.png") center top no-repeat;
    background-size: cover;
  }
  .mv_slider .slider-item02 {
    background: url("../img/top/mv02_sp.png") center top no-repeat;
    background-size: cover;
  }
  .mv_slider .slider-item03 {
    background: url("../img/top/mv03_sp.png") center top no-repeat;
    background-size: cover;
  }
  .mv_slider .slider-item04 {
    background: url("../img/top/mv04_2_sp.png") center top no-repeat;
    background-size: cover;
  }
  .mv_slider .slider-item05 {
    background: url("../img/top/mv05_sp.png") center top no-repeat;
    background-size: cover;
  }
}
/* ページ別 slick */
/* page_camp */
.page_camp .slider-item01 {
  background-image: url("../img/page/camp/mv00.png");
}
.page_camp .slider-item02 {
  background-image: url("../img/page/camp/mv01.png");
}
.page_camp .slider-item03 {
  background-image: url("../img/page/camp/mv02.png");
}
.page_camp .slider-item04 {
  background-image: url("../img/page/camp/mv00.png");
}
/* page_school */
.page_school .slider-item01 {
  background-image: url("../img/page/school/mv00.png");
}
.page_school .slider-item02 {
  background-image: url("../img/page/school/mv01.png");
}
.page_school .slider-item03 {
  background-image: url("../img/page/school/mv02.png");
}
/* page_sauna */
.page_sauna .slider-item01 {
  background-image: url("../img/page/school/mv00.png");
}
.page_sauna .slider-item02 {
  background-image: url("../img/page/school/mv01.png");
}
.page_sauna .slider-item03 {
  background-image: url("../img/page/school/mv02.png");
}
/* page_workation */
.page_workation .slider-item01 {
  background-image: url("../img/page/workation/mv00.png");
}
.page_workation .slider-item02 {
  background-image: url("../img/page/workation/mv01.png");
}
.page_workation .slider-item03 {
  background-image: url("../img/page/workation/mv02.png");
}
@media screen and (max-width: 767px) {
  .slider-item {
    background-size: cover;
  }
  .page_mv .slider {
    height: 360px;
  }
}
/* news ================= */
/* news_archive */
.news_archive {
  margin: 0 auto 52px;
}
.news_archive li.new::after {
  position: absolute;
  content: "NEW!";
  display: block;
  width: 170px;
  height: 60px;
  color: #fff;
  text-shadow: 0px 0px 5px rgb(0 0 0 / 30%);
  font-size: 32px;
  font-family: Futura, 'Century Gothic', 游ゴシック体, YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 游ゴシック, 'Yu Gothic', メイリオ, Meiryo, sans-serif;
  font-weight: 600;
  text-align: center;
  right: -30px;
  top: 60px;
  transform: rotate(-10deg);
  transform-origin: 0 0;
  box-shadow: 0px 0px 6px -1px rgb(0 0 0 / 15%);
}
@media screen and (min-width: 767px) {
  .news_archive li:hover {
    opacity: .8;
  }
}
.news_archive li .news_tit {
  width: 60%;
}
.news_archive li .news_tit dt {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 10px;
}
.news_archive li .news_tit dd {
  margin: 0 0 5px;
}
.news_archive li .news_img {
  width: 35%;
}
.news_archive li .news_img img {
  width: 242px;
  height: 118px;
  object-fit: contain;
}
.news_archive h3 span {
  background: url(../img/top/news_icon.svg) left 8px center no-repeat;
  background-size: 59px 59px;
  padding: 19px 20px 16px 68px;
  transform: rotate(-10deg);
  transform-origin: 0 0;
  position: absolute;
  top: 40px;
  right: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
  width: 240px;
}
.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination .page-numbers .page-numbers {
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  padding: 0 0.5rem;
}
.pagination .page-numbers a.page-numbers {
  text-decoration: underline;
}
.pagination .page-numbers a.page-numbers:hover {
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .news_archive.inner {
    width: 740px;
  }
  .news_archive li .news_img img {
    width: 222px;
    height: 98px;
  }
  .news_archive li.new::after {
    width: 120px;
    height: 45px;
    font-size: 22px;
    right: 0px;
    top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .news_archive li .news_tit dt {
    margin: 0 0 5px;
  }
  .news_archive li .news_tit dd {
    margin: 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  .news_archive.inner {
    width: 100%;
  }
  .news_archive li.new::after {
    font-size: 16px;
    width: 90px;
    height: 32px;
    right: 17px;
    top: 10px;
  }
  .news_archive li .news_tit .news_date {
    font-size: 10px;
  }
  .news_archive li .news_tit {
    width: 100%;
    position: relative;
    z-index: 3;
  }
  .news_archive li .news_tit dd {
    font-size: 12px;
  }
  .news_archive h3 span {
    left: inherit;
    right: 0;
    top: 15px;
    font-size: 10px;
    width: 140px;
    background-size: 28px 28px;
    padding: 10px 20px 10px 38px;
    z-index: 2;
  }
}
@media screen and (max-width: 480px) {
  .pagination .page-numbers .page-numbers {
    font-size: 12px;
  }
  .news_archive li .news_tit dt {
    margin: 0;
  }
  .news_archive li .news_tit dd {
    line-height: 1.2;
  }
}
/* エリア別 */
body.page_color_pink .news_archive li.new::after {
  background: #EFA8AA;
}
body.page_color_blue .news_archive li.new::after {
  background: #6897CD;
}
body.page_color_green .news_archive li.new::after {
  background: #71AD6F;
}
body.page_color_blueL .news_archive li.new::after {
  background: #68B8B9;
}
body.page_color_yellow .news_archive li.new::after {
  background: #E2BB56;
}
/* page_news */
.page_news .news_archive li {
  background: url("../img/common/news_archive_bg_parts.png") center center no-repeat;
  background-size: 100%;
  width: 895px;
  height: 225px;
  padding: 24px 89px 0 34px;
  position: relative;
  margin: -78px auto 0;
}
.page_news .news_archive li:first-of-type {
  margin: 0 auto;
}
.page_news .news_archive li:last-of-type {
  background: url("../img/common/news_archive_bg_last.png") center center no-repeat;
  background-size: 100%;
  height: 177px;
}
@media screen and (max-width: 1024px) {
  .page_news .news_archive li {
    width: 740px;
    height: 174px;
    padding: 14px 89px 0 34px;
    position: relative;
    margin: -52px auto 0;
  }
  .page_news .news_archive li:first-of-type {}
  .page_news .news_archive li:last-of-type {
    height: 135px;
  }
}
@media screen and (max-width: 767px) {
  .page_news .news_archive li {
    background: url("../img/common/news_archive_bg_parts_sp.png") center center no-repeat;
    background-size: 100%;
    height: 150px;
    width: 480px;
    padding: 16px 13px;
    margin: -41px auto 0;
  }
  .page_news .news_archive li:first-of-type {}
  .page_news .news_archive li:last-of-type {
    background: url("../img/common/news_archive_bg_last_sp.png") center center no-repeat;
    background-size: 100%;
    padding: 20px 13px;
    height: 113px;
  }
}
@media screen and (max-width: 480px) {
  .page_news .news_archive li {
    height: 120px;
    width: 350px;
  }
  .page_news .news_archive li:last-of-type {
    height: 94px;
  }
}
/* area_news */
.area_page .news_archive li {
  background: url("../img/common/news_archive_bg_parts.svg") center center no-repeat;
  background-size: 100%;
  width: 864px;
  height: 195px;
  padding: 16px 89px 0 34px;
  position: relative;
  margin: -47px 0 0;
}
.area_page .news_archive li:first-of-type {
  margin: 0;
}
.area_page .news_archive li:last-of-type {
  background: url("../img/common/news_archive_bg_last.svg") center center no-repeat;
  background-size: 100%;
  height: 144px;
}
@media screen and (max-width: 1024px) {
  .area_page .news_archive.inner {
    width: 740px;
  }
  .area_page .news_archive li {
    width: 740px;
    height: 168px;
    padding: 14px 89px 0 34px;
    position: relative;
    margin: -41px auto 0;
  }
  .area_page .news_archive li:first-of-type {}
  .area_page .news_archive li:last-of-type {
    height: 124px;
  }
}
@media screen and (max-width: 767px) {
  .area_page .news_archive.inner {
    width: 480px;
  }
  .area_page .news_archive li {
    background: url("../img/common/news_archive_bg_parts_sp.png") center center no-repeat;
    background-size: 100%;
    height: 150px;
    width: 480px;
    padding: 16px 36px 16px 13px;
    margin: -41px auto 0;
  }
  .area_page .news_archive li:first-of-type {}
  .area_page .news_archive li:last-of-type {
    background: url("../img/common/news_archive_bg_last_sp.png") center center no-repeat;
    background-size: 100%;
    padding: 20px 36px 20px 13px;
    height: 113px;
  }
}
@media screen and (max-width: 480px) {
  .area_page .news_archive.inner {
    width: 350px;
  }
  .area_page .news_archive li {
    height: 120px;
    width: 350px;
  }
  .area_page .news_archive li:last-of-type {
    height: 94px;
  }
}
/* bread */
.bread {
  justify-content: flex-start;
  padding: 13px 0 170px;
}
.bread li {
  padding: 0 8px;
}
.bread li:first-of-type {
  padding: 0 8px 0 0;
}
.bread li, .bread li a, .bread li i {
  color: #fff;
  font-weight: 700;
  text-shadow: 0px 0px 5px rgb(0 0 0 / 30%);
}
@media screen and (max-width: 767px) {
  .bread li, .bread li a, .bread li i {
    font-size: 10px;
  }
  .bread {
    padding: 13px 0 77px;
  }
}
/* news_single */
.news_single {
  padding: 0 0 147px;
}
.news_single .news_contents {
  width: 898px;
  margin: 0 auto 108px;
  background-color: #fff;
  border-radius: 0 0 0 30px;
  position: relative;
  padding: 0 50px 0 30px;
}
.news_single .news_contents::before {
  position: absolute;
  content: "";
  display: block;
  background: url("../img/area/common/news_bg_parts.svg?3") center top no-repeat;
  background-size: 101%;
  width: 898px;
  height: 145px;
  top: -89px;
  left: 0;
}
.news_single .news_contents .flexL {
  width: 63%;
  position: relative;
  top: -40px;
}
.news_single .news_contents .flexL .news_tit {
  font-size: 21px;
  margin: 0 0 10px;
  min-height: 114px;
}
.news_single .news_contents .flexL .news_tit .news_date {
  font-weight: 700;
}
.news_single .news_contents .flexL .news_img {
  margin: 0 0 18px;
}
.news_single .news_contents .flexL .news_img img {
  width: 100%;
  height: auto;
}
.news_single .news_contents .flexL .news_txt {
  font-size: 15px;
  margin: 0 0 20px;
}
.news_single .news_contents .flexL .news_txt p {
  margin: 0 0 1em;
}
.news_single .news_contents .sharebtn {
  justify-content: flex-start;
  align-items: center;
  column-gap: 15px;
}
.news_single .news_contents .sharebtn li {
  width: 23%;
}
.sharebtn li div, .sharebtn li iframe {
  width: 100%;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  display: inline-block;
}
.news_single .news_contents .flexR {
  width: 33%;
  position: relative;
  top: 83px;
  padding: 0 0 80px;
}
.news_single .news_contents .flexR h4 {
  position: relative;
  background-color: #DCDCDC;
  font-size: 15px;
  margin: 0 0 11px;
}
.news_single .news_contents .flexR h4 span {
  padding: 10px 0 10px 7px;
  font-weight: 700;
  color: #646464;
  display: block;
}
.news_single .news_contents .flexR h4 i {
  display: block;
  background: #707070;
  color: #fff;
  padding: 16px;
  position: absolute;
  right: 0;
  top: 0;
}
.news_single .news_contents .flexR .news_img img {
  width: 100%;
  height: auto;
}
.news_single .news_contents .flexR dl {
  font-size: 11px;
  margin: 0 0 28px;
}
.news_single .news_contents .flexR dl dt {
  font-weight: 700;
}
.news_single .btn::after {
  content: "\f060";
  right: inherit;
  left: 30px;
}
.news_contents h3 span {
  background: url(../img/top/area_logo_campiece.svg) left 4px center no-repeat;
  background-size: 62px 62px;
  padding: 21px 20px 21px 88px;
  transform: rotate(-10deg);
  transform-origin: 0 0;
  position: absolute;
  top: -25px;
  right: -20px;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  width: 350px;
}
.page_news .news_contents h3 span {
  background-color: #BBBBBB;
}
/* area別 h3 #アイコン */
.news_contents h3.pink span, .news_archive .pink h3 span {
  background: url(../img/top/area_logo_minamiashigara.svg) left 7px center no-repeat;
  background-color: #DB978E;
  background-size: 50px 50px;
}
.news_contents h3.green span, .news_archive .green h3 span {
  background: url(../img/top/area_logo_campiece.svg) left 7px center no-repeat;
  background-color: #71AD6F;
  background-size: 50px 50px;
}
.news_contents h3.yellow span, .news_archive .yellow h3 span {
  background: url("../img/top/area_logo_yokoshibahikari.svg") left 7px center no-repeat;
  background-color: #E2BB56;
  background-size: 50px 50px;
}
.news_contents h3.blue span, .news_archive .blue h3 span {
  background-color: #6897CD;
}
.news_contents h3.blueL span, .news_archive .blueL h3 span {
  background: url(../img/top/area_logo_campiece.svg) left 7px center no-repeat;
  background-color: #68B8B9;
	  background-size: 50px 50px;
}
.news_contents h3.gray span, .news_archive .gray h3 span {
  background: url(../img/top/area_logo_campiece.svg) left 7px center no-repeat;
  background-color: #bbb;
  background-size: 50px 50px;
}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {
  .news_single .news_contents {
    width: 94.5%;
    margin: 0 auto 108px;
  }
  .news_single .news_contents::before {
    width: 100%;
  }
  .news_contents h3 span {
    background: url(../img/top/news_icon.svg) left 12px center no-repeat;
    background-size: 52px 52px;
    padding: 15px 10px 15px 75px;
    position: absolute;
    top: -25px;
    right: 0px;
    color: #fff;
    font-size: 17px;
    width: 290px;
  }
	.news_single .news_contents .flexL .news_tit dd {
		font-size: 18px;
	}
}
@media screen and (max-width: 767px) {
  .news_single .bread {
    padding: 13px 0 77px;
  }
  .news_single .news_contents {
    padding: 0 22px 20px;
    margin: 30px auto 56px;
  }
  .news_single .news_contents .flexL {
    width: 100%;
  }
  .news_single .bread li, .news_single .bread li a, .news_single .bread li i {
    font-size: 10px;
  }
  .news_contents h3 span {
    background: url(../img/top/news_icon.svg) left 9px center no-repeat;
    background-size: 42px 42px;
    padding: 16px 20px 16px 61px;
    top: -15px;
    right: 0px;
    font-size: 20px;
    width: 290px;
  }
  .news_single .news_contents .flexL .news_tit {
	min-height: inherit;
	position: relative;
    top: -17px
  }
  .news_single .news_contents .flexL .news_tit dt {
    font-size: 24px;
  }
  .news_single .news_contents .flexL .news_tit dd {
    font-size: 29px;
  }
  .news_single .news_contents .flexL {
    top: 0;
  }
  .news_single .news_contents .flexL .news_txt {
    font-size: 20px;
  }
  .news_single .btn::after {
    display: none;
  }
  .page_news .news_single .btn::after {
    font-family: "Font Awesome 5 Free";
    display: block;
    content: "\f061";
    position: absolute;
    right: 22px;
    left: inherit;
    top: 50%;
    transform: translate(0, -50%);
    transition: .3s all;
  }
  .news_single .news_contents .sharebtn li {
    width: 35%;
  }
  /* area別 h3 #アイコン */
  .news_contents h3.pink span, .news_archive .pink h3 span {
    background: url(../img/top/area_logo_minamiashigara.svg) left 4px center no-repeat;
    background-color: #DB978E;
    background-size: 32px 32px;
  }
  .news_contents h3.green span, .news_archive .green h3 span {
	      background: url(../img/top/area_logo_campiece.svg) left 4px center no-repeat;
    background-color: #71AD6F;
	      background-size: 32px 32px;
  }
  .news_contents h3.yellow span, .news_archive .yellow h3 span {
    background: url("../img/top/area_logo_yokoshibahikari.svg") left 4px center no-repeat;
    background-color: #E2BB56;
    background-size: 32px 32px;
  }
  .news_contents h3.blue span, .news_archive .blue h3 span {
	  	      background: url(../img/top/area_logo_campiece.svg) left 4px center no-repeat;
    background-color: #6897CD;
	   background-size: 32px 32px;
  }
  .news_contents h3.blueL span, .news_archive .blueL h3 span {
background: url(../img/top/area_logo_campiece.svg) left 4px center no-repeat;
background-color: #68B8B9;
background-size: 20px 20px;
font-size: 8px;
padding-left:25px;
  }
  .news_contents h3.gray span, .news_archive .gray h3 span {
    background: url(../img/top/area_logo_campiece.svg) left 4px center no-repeat;
    background-color: #bbb;
    background-size: 32px 32px;
  }
}
@media screen and (max-width: 480px) {
  .news_single .news_contents {
    padding: 0 15px 20px;
  }
  .news_single .news_contents::before {
	height: 75px;
    top: -65px;
  }
  .news_single .news_contents .flexL .news_tit dt {
    font-size: 11px;
  }
  .news_single .news_contents .flexL .news_tit dd {
    font-size: 14px;
  }
  .news_single .news_contents {
    margin: 0 auto 28px;
  }
  .news_single .news_contents .flexL .news_txt {
    font-size: 10px;
  }
  .news_contents h3 span {
    background: url(../img/top/area_logo_campiece.svg) left 4px center no-repeat;
    background-size: 32px 32px;
    padding: 11px 20px 11px 40px;
    top: -40px;
    right: 0px;
    font-size: 10px;
    width: 160px;
  }
  .news_single .btn {
    font-size: 8px;
    padding: 17px 33px;
  }
  .news_archive h3 span {
    right: -7px;
    top: 12px;
    padding: 5px 5px 5px 25px;
	width: 130px;
	transform: rotate(-8deg);
	letter-spacing: 0;
  }
  .page_news .news_archive li, .page_news .news_archive li:last-of-type {
    padding: 30px 30px 30px 13px;
  }
  /* area別 h3 #アイコン */
  .news_contents h3.pink span {
    background: url(../img/top/area_logo_minamiashigara.svg) left 4px center no-repeat;
    background-color: #DB978E;
    background-size: 28px 28px;
  }
  .news_archive .pink h3 span {
    background: url(../img/top/area_logo_minamiashigara.svg) left 4px center no-repeat;
    background-color: #DB978E;
    background-size: 18px 18px;
  }
  .news_contents h3.green span {
    background: url(../img/top/area_logo_campiece.svg) left 4px center no-repeat;
    background-color: #71AD6F;
    background-size: 28px 28px;
  }
  .news_archive .green h3 span {
    background: url(../img/top/area_logo_campiece.svg) left 4px center no-repeat;
    background-color: #71AD6F;
    background-size: 18px 18px;
  }
  .news_contents h3.yellow span {
    background: url("../img/top/area_logo_yokoshibahikari.svg") left 4px center no-repeat;
    background-color: #E2BB56;
    background-size: 28px 28px;
  }
  .news_archive .yellow h3 span {
    background: url("../img/top/area_logo_yokoshibahikari.svg") left 4px center no-repeat;
    background-color: #E2BB56;
    background-size: 18px 18px;
  }
  .news_contents h3.blue span, .news_archive .blue h3 span {
    background-color: #6897CD;
  }
  .news_contents h3.blueL span, .news_archive .blueL h3 span {
    background-color: #68B8B9;
  }
  .news_contents h3.gray span {
    background: url(../img/top/area_logo_campiece.svg) left 4px center no-repeat;
    background-color: #bbb;
    background-size: 28px 28px;
  }
  .news_archive .gray h3 span {
    background: url(../img/top/area_logo_campiece.svg) left 4px center no-repeat;
    background-color: #bbb;
    background-size: 18px 18px;
  }
}
/* toggle */
.toggle {
  text-align: center;
}
.ac {
  margin: 0 auto 30px;
  padding: 10px;
  position: relative;
  text-align: center;
  font-size: 14px;
  color: #6D6D6D;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0px 0px 10px 3px rgb(0 0 0 / 20%);
  background-color: #fff;
}
.ac-parent span {
  height: 50px;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  transition: .3s;
}
.ac-parent span:after {
  content: "";
  position: absolute;
  display: block;
}
.ac-child {
  margin: 0 20px;
}
.ac-child p {
  font-size: 10px;
}
.ac-child .ac-btn {
  border: 2px solid #707070;
  margin: 20px 0 10px;
  display: inline-block;
  position: relative;
  text-align: center;
  font-weight: 700;
  border-radius: 50px;
  padding: 10px 60px 10px 40px;
  color: #6D6D6D;
  font-size: 13px;
}
.ac-child .ac-btn::after {
  font-family: "Font Awesome 5 Free";
  display: block;
  content: "\f061";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translate(0, -50%);
  transition: .3s all;
}
.ac-child .ac-btn:hover {
  background-color: #707070;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .ac {
    margin: 0 auto 15px;
    padding: 0 10px;
    position: relative;
    text-align: center;
    font-size: 12px;
    color: #6D6D6D;
    border-radius: 30px;
  }
  .ac-parent span:after {
    top: 18px;
    right: 20px;
    width: 15px;
    height: 15px;
  }
  .ac-child {
    margin: 0;
  }
  .ac-child .ac-btn {
    margin: 10px 0 10px;
    padding: 5px 30px 5px 10px;
    font-size: 10px;
  }
  .ac-child .ac-btn::after {
    right: 12px;
  }
}
/* top ================= */
/* mv */
.top_page {
  padding: 50px 0 0;
}
.top .mv {
  position: relative;
	z-index: 0;
}
.top .mv .inner1080 {
  background: url("../img/top/mv_illust.svg") center top no-repeat;
  background-size: 100%;
  position: absolute;
  top: 60px;
  left: 50%;
  height: 580px;
  z-index: 10;
  transform: translate(-50%, 0);
}
	.top .mv .inner1080 .mv_haiko {
	 padding: 90px 0 40px;
	}

	.top .mv .inner1080 .mv_haiko img {
	 max-width: 240px;
	 width: 100%;
	 height: auto;
	}

	.top .mv .inner1080 .mv_logo {
	 padding: 0;
	}

	@media screen and (max-width: 767px) {
	 .top .mv .inner1080 .mv_haiko {
	  padding: 29vh 0 4vh;
	 }
	 .top .mv .inner1080 .mv_haiko img {
	  max-width: 60vw;
	 }
	 .top .mv .inner1080 .mv_logo {
	  padding: 0;
	 }
	}

	@media screen and (max-width: 380px) {
	 .top .mv .inner1080 .mv_haiko {
	  padding: 32vh 0 4vh;
	 }
	 .top .mv .inner1080 .mv_logo {
	  padding: 0;
	 }
	}

.top .mv_bg01 {
  background: url("../img/top/mv_bgbtm.png");
  background-size: cover;
  width: 100%;
  /*height: 384px;*/
  height:26vw;
  position: absolute;
  left: 0;
bottom:-10vw;
  z-index: 5;
}
@media screen and (min-width: 1400px) {
  .top .mv_bg01 {
    bottom:-15vw;
  }
}

@media screen and (max-width: 960px) {
	.top .mv .inner1080 {
		top: 100px;
	}
}
@media screen and (max-width: 767px) {
  .top .mv .inner1080 {
    background: url("../img/top/mv_illust_sp.svg") center top 50px no-repeat;
    background-size: 95%;
    width: 100%;
    height: 83vh;
    top: 0;
  }
  .top .mv .inner1080 .mv_txt {
    width: 95%;
    margin: 0 auto;
    height: 80vh;
  }
  .top .mv_bg01 {
    display: none;
  }

  .top .mv .inner1080 .mv_txt_sub img {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
	
	.top_page {
	  padding: 38px 0 0;
	}
	.top .mv .inner1080 {
		height: 90vh;
	}
	.mv_slider, .mv_slider li {
		height: 90vh;
	}
}
@media screen and (max-width: 380px) {
	.top .mv .inner1080 {
		background: url(../img/top/mv_illust_sp.svg) center top 60px no-repeat;
    	background-size: 95%;
		height: 95vh;
	}

	.mv_slider, .mv_slider li {
		height: 95vh;
	}
	.mv_slider .slider-item01 {
		background: url(../img/top/mv01_sp.png) center top -50px no-repeat;
		background-size: cover;
	}
	.mv_slider .slider-item05 {
		background: url(../img/top/mv05_sp.png) center top -50px no-repeat;
		background-size: cover;
	}
}
/* top_concept */
.top_concept {
  /*background: url("../img/top/concept_bg.png") top center repeat-y;
  background-size: cover;*/
  background:#fff;
  width: 100%;
  height: 780px;
  padding: 0 0 50px;
  position: relative;
  margin-top: 150px;
}
.top_concept .inner1080 {
  position: absolute;
  z-index: 6;
  height: 857px;
  left: 50%;
  transform: translate(-50%, 0);
  top: -50px;
}
.top_concept_txt {
  margin-top: -50px;
}
.top_concept .concept_link {
  margin: 100px auto 0;
  position: relative;
}
.top_concept .concept_link li {}
.top_concept .concept_link li a {
  padding: 55px 0;
  display: block;
  color: #646464;
  font-weight: 700;
  position: absolute;
  height: 125px;
  top: 0;
  font-size: 15px;
}
@media screen and (min-width: 767px) {
  .top_concept .concept_link li a:hover {
    opacity: .5;
  }
}
.top_concept .concept_link li:first-of-type a {
  padding: 45px 0 45px 106px;
  background: url(../img/top/link_bg01.png) left top no-repeat;
  background-size: 100%;
  width: 255px;
  left: 0;
}
.top_concept .concept_link li:nth-child(2) a {
  background: url(../img/top/link_bg02.png) left top no-repeat;
  background-size: 100%;
  width: 438px;
  left: 204px;
  padding: 45px 0px 55px 155px;
}
.top_concept .concept_link li:nth-child(3) a {
  background: url(../img/top/link_bg03.png) left top no-repeat;
  background-size: 100%;
  width: 273px;
  right: 215px;
  padding: 45px 0px 55px 85px;
}
.top_concept .concept_link li:nth-child(4) a {
  background: url(../img/top/link_bg04.png) left top no-repeat;
  background-size: 100%;
  width: 271px;
  right: -6px;
  padding: 45px 0px 55px 90px;
}
.top_concept .concept_link li:nth-child(3) a span, .top_concept .concept_link li:nth-child(4) a span {
  position: relative;
}
.top_concept .concept_link li:nth-child(3) a span::after, .top_concept .concept_link li:nth-child(4) a span::after {
  font-family: "Font Awesome 5 Free";
  display: block;
  content: "\f061";
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translate(0, -50%);
  transition: .3s all;
}
.top_concept .concept_link li:nth-child(4) a::after {
  right: 50px;
}
.top_concept .concept_bg {
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: -160px;
  display:grid;
  grid-template-columns:1fr 1080px 1fr;
  overflow-x: hidden;
}
.top_concept .concept_bg span{
  display:block;
  background:#fff;
}
.top_concept .concept_bg span:nth-child(2){
  background: transparent url("../img/top/concept_btm.png") center bottom no-repeat;
  background-size: auto 80px;
}
@media screen and (max-width: 1200px) {
  .top_concept .concept_link {
    width: 948px;
  }
  .top_concept .concept_link li a {
    font-size: 14px;
    height: 105px;
  }
  .top_concept .concept_link li:first-of-type a {
    padding: 40px 0 40px 95px;
    width: 219px;
    left: 0;
  }
  .top_concept .concept_link li:nth-child(2) a {
    padding: 40px 0px 40px 135px;
    width: 377px;
    left: 176px;
  }
  .top_concept .concept_link li:nth-child(3) a {
    padding: 40px 0px 40px 60px;
    width: 234px;
    right: 203px;
  }
  .top_concept .concept_link li:nth-child(4) a {
    padding: 40px 0 40px 65px;
    width: 233px;
    right: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .top_concept .concept_link {
    width: 733px;
  }
  .top_concept .concept_link li a {
    font-size: 10px;
    height: 90px;
  }
  .top_concept .concept_link li:first-of-type a {
    padding: 30px 0 30px 65px;
    width: 172px;
    left: 0;
  }
  .top_concept .concept_link li:nth-child(2) a {
    padding: 30px 0px 30px 107px;
    width: 296px;
    left: 139px;
  }
  .top_concept .concept_link li:nth-child(3) a {
    padding: 30px 0px 30px 45px;
    width: 183px;
    right: 148px;
  }
  .top_concept .concept_link li:nth-child(4) a {
    padding: 30px 0px 30px 45px;
    width: 181px;
    right: 0px;
  }
  .top_concept .concept_link li:nth-child(3) a span::after, .top_concept .concept_link li:nth-child(4) a span::after {
    right: -30px;
  }
}
  .top .mv_bg01 a {
   position: absolute;
   bottom: 77%;
   right: 1%;
  }

  .top .mv_bg01 a img {
    max-width: 416px;
    width: 22vw;
    height: auto;
  }
  .top_odtr {
   text-align: center;
   margin: 0 auto;
  }

  .top_odtr img {
   max-width: 640px;
   width: 90%;
   height: auto;
  }

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


  .top_concept::after {
    position: absolute;
    content: "";
    display: block;
    background: url("../img/top/concept_btm_sp.png") center bottom no-repeat;
    background-size: 100%;
    width: 100%;
    height: 144px;
    bottom: -60px;
    left: 0;
  }
  .top_concept {
    height: inherit;
  }
  .top_concept .inner1080 {
    position: inherit;
    height: inherit;
    left: inherit;
    transform: inherit;
    padding: 80px 0 60px;
  }
  .top_concept_txt {
    margin-top: 0;
    padding: 100px 0 0;
  }
  .top_concept .top_concept_txt .piece img {
    width: 40%;
  }
  .top_concept .concept_link {
    width: 320px;
    margin: 80px auto 0;
    padding: 0 0 30px;
  }
  .top_concept .concept_link li a {
    height: 115px;
  }
  .top_concept .concept_link li:first-of-type a, .top_concept .concept_link li:nth-child(2) a {
    padding: 72px 0 16px;
    text-align: center;
  }
  .top_concept .concept_link li:first-of-type a {
    background: url(../img/top/link_bg01_sp.png) left top no-repeat;
    background-size: 100%;
    width: 114px;
  }
  .top_concept .concept_link li:nth-child(2) a {
    background: url(../img/top/link_bg02_sp.png) left top no-repeat;
    background-size: 100%;
    width: 230px;
    left: inherit;
    right: 0;
  }
	.top_concept .concept_bg {
		display: none;
	}
}
@media screen and (max-width: 480px) {
	.top_concept {
		margin-top: 0;
	}
}
@media screen and (max-width: 380px) {
	.top_concept_txt {
		padding: 60px 0 0;
	}
	.top_concept::before {
		top: -140px;
	}
}
/* top_news */
.top_news {
  background: url("../img/top/news_bg02.png") top center repeat-y;
  background-size: cover;
  width: 100%;
  height: 857px;
  margin: 88px 0 0;
  padding: 120px 0 50px;
}
.top_news h2 {
  margin: 0 0 62px;
}
.top_news ul {
  margin: 0 0 50px;
  justify-content: flex-start;
}
.top_news li {
  width: 356px;
  position: relative;
  background: url("../img/top/news_bg_piece.svg") left center no-repeat;
  background-size: 100%;
  padding: 25px 48px 12px 18px;
  transition: 0.5s all;
}
@media screen and (min-width: 767px) {
  .top_news ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-left: 30px;
    margin-right: 30px;
  }
  .top_news li:first-of-type {
    right: auto;
  }
  .top_news li:nth-of-type(2) {
    left: -30px;
  }
  .top_news li:nth-of-type(3) {
    left: -60px;
  }
  .top_news li:hover {
    transform: scale(1.2, 1.2);
    transition: 0.5s all;
    cursor:pointer;
  }
  .top_news li.small, .top_news li.small2, .top_news li.small3 {
    transform: scale(0.9, 0.9);
    transition: 0.5s all;
  }
  .top_news li:nth-child(2).small {
    transform:scale(0.9, 0.9) translateX(27px);
  }
  .top_news li:last-of-type.small {
    transform:scale(0.9, 0.9) translateX(0);
  }
  .top_news li:first-of-type.small2 {
    transform:scale(0.9, 0.9) translateX(-25px);
  }
  .top_news li:last-of-type.small2 {
    transform:scale(0.9, 0.9) translateX(25px);
  }
  .top_news li:first-of-type.small3 {
    transform:scale(0.9, 0.9) translateX(5px);
  }
  .top_news li:nth-child(2).small3 {
    transform:scale(0.9, 0.9) translateX(-25px);
  }

}
@media screen and (max-width: 1100px) and (min-width: 767px) {
  .top_news li:nth-of-type(2) {
    left: -21px;
  }
  .top_news li:nth-of-type(3) {
    left: -43px;
  }
}
.top_news li h3 span {
  background: url("../img/top/news_icon.svg") left 4px center no-repeat;
  background-size: 36px 36px;
  padding: 14px 20px 14px 48px;
  transform: rotate(-10deg);
  transform-origin: 0 0;
  position: absolute;
  top: -10px;
  left: -20px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  width: 181px;
  white-space: nowrap;
}
.top_news .pink h3 span {
  background: url("../img/top/area_logo_minamiashigara.svg") left 4px center no-repeat;
  background-color: #DB978E;
}
.top_news .gray h3 span {
  background: url("../img/top/area_logo_campiece.svg") left 4px center no-repeat;
  background-color: #BBBBBB;
}
.top_news .yellow h3 span {
  background: url("../img/top/area_logo_yokoshibahikari.svg") left 4px center no-repeat;
  background-color: #E2BB56;
}
.top_news .blue h3 span {
  background-color: #6897CD;
}
.top_news .green h3 span {
	  background: url("../img/top/area_logo_campiece.svg") left 4px center no-repeat;
  background-color: #71AD6F;
}
.top_news .blueL h3 span {
background: url("../img/top/area_logo_campiece.svg") left 4px center no-repeat;
  background-color: #68B8B9;
	  padding: 14px 20px 14px 43px;
font-size: 11px;
}
.top_news .news_img {
  display: table;
  margin: 0 0 10px;
}
.top_news .news_img dt {
  display: table-cell;
  vertical-align: bottom;
  width: 22%;
  font-size: 8px;
}
.top_news .news_img dd {
  display: table-cell;
  width: 78%;
  padding: 0 0 0 2%;
}
.top_news .news_img dd img {
  width: 220px;
  height: 134px;
  object-fit:cover;
}
.top_news .news_tit {
  font-size: 10px;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  .top_news li {
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .top_news li {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .top_news .news_img dd {
    display: table-cell;
    width: 60%;
  }
  .top_news .news_img dd img {
    width: 135px;
    height: 94px;
  }
}
@media screen and (max-width: 864px) {
  .top_news .ineer1080 {
    width: 100%;
  }
  .top_news li {
    padding: 25px 38px 12px 18px;
  }
  .top_news .news_img {
    margin: 0 0 5px;
  }
}
@media screen and (max-width: 767px) {
  .top_news {
    height: inherit;
    margin: 0;
    padding: 60px 0 130px;
  }
  .top_news h2 {
    margin: 60px 0 30px;
  }
  .top_news ul {
    margin: 0 0 10px;
  }
  .top_news li {
    width: 480px;
    background: url(../img/top/news_bg_piece_sp.svg) center center no-repeat;
    background-size: 100%;
    right: inherit;
    height: 170px;
    margin: 0 auto;
  }
  .top_news li:hover {
    transform: none;
  }
  .top_news li.small, .top_news li.small2, .top_news li.small3 {
    transform: none;
  }
 /* .top_news li:nth-of-type(2).small, .top_news li:first-of-type.small2 {
    right: inherit;
  }
  .top_news li:nth-of-type(3).small2, .top_news li:first-of-type.small3, .top_news li:nth-of-type(2).small3 {
    left: inherit;
  }
  .top_news li:first-of-type {
    right: inherit;
  }*/
  .top_news li:nth-of-type(2) {
	top: -48px;
  }
  .top_news li.last, .top_news li:last-of-type {
    width: 480px;
    background: url(../img/top/news_bg_piece_sp_last.svg) center center no-repeat;
    background-size: 100%;
    top: -95px;
    left: inherit;
    height: 125px;
    margin: 0 auto;
  }
  .top_news li h3 span {
    left: inherit;
    right: 0;
    top: 15px;
    font-size: 10px;
    width: 150px;
    background-size: 28px 28px;
    padding: 12px 20px 12px 48px;
  }
.top_news .blueL h3 span {
padding: 12px 20px 12px 43px;
font-size:8px;
  }
  .top_news .news_img dd img {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .top_news li {
    width: 350px;
    height: 120px;
  }
  .top_news li:nth-of-type(2) {
    top: -31px;
  }
  .top_news li.last, .top_news li:last-of-type {
    width: 350px;
    top: -65px;
    height: 95px;
  }
  .top_news li h3 span {
	padding: 5px 5px 5px 25px;
	width: 140px;
  }
  .top_news .yellow h3 span {
	background: url("../img/top/area_logo_yokoshibahikari.svg") left 4px center no-repeat;
    background-color: #E2BB56;
    background-size: 18px 18px;
  }
  .top_news .pink h3 span {
    background: url("../img/top/area_logo_minamiashigara.svg") left 4px center no-repeat;
    background-color: #DB978E;
    background-size: 18px 18px;
  }
  .top_news .gray h3 span {
    background: url("../img/top/area_logo_campiece.svg") left 4px center no-repeat;
    background-color: #BBBBBB;
    background-size: 18px 18px;
  }
	  .top_news .green h3 span {
    background: url("../img/top/area_logo_campiece.svg") left 4px center no-repeat;
    background-color: #71AD6F;
    background-size: 18px 18px;
  }
	.top_news .blueL h3 span {
    background: url("../img/top/area_logo_campiece.svg") left 4px center no-repeat;
  background-color: #68B8B9;
    background-size: 18px 18px;
			padding: 5px 5px 5px 22px;
		font-size:8px;
  }

}
/* top_content */
.top_content {
  background: url("../img/top/content_bg_yel.png") top center no-repeat;
  background-size: cover;
  width: 100%;
  height: 1268px;
  margin: -80px 0 0;
}
.top_content .inner1080 {
  background: url("../img/top/content_bg.png") top 80px center no-repeat;
  background-size: 100%;
  padding: 150px 0 30px;
}
.top_content h2 {
  margin: 0 0 245px
}
.top_content ul li {
  width: 33%;
  position: relative;
}
@media screen and (min-width: 767px) {
  .top_content ul li:hover {
    transform:scale(1.2);
    transition-duration:.5s;
    cursor:pointer;
  }
  .top_content li.small, .top_content li.small2, .top_content li.small3 {
    transform: scale(0.9, 0.9);
    transition-duration: 0.5s;
  }
  .top_content li:nth-child(2).small,
  .top_content li:last-of-type.small {
    transform:scale(0.9, 0.9) translateX(40px);
  }
  .top_content li:first-of-type.small2 {
    transform:scale(0.9, 0.9) translateX(-20px);
  }
  .top_content li:last-of-type.small2 {
    transform:scale(0.9, 0.9) translateX(20px);
  }
  .top_content li:first-of-type.small3,
  .top_content li:nth-child(2).small3 {
    transform:scale(0.9, 0.9) translateX(-40px);
  }
}
.top_content ul li.osusume::before {
  position: absolute;
  display: block;
  content: "";
  background: url("../img/top/osusume.svg") center top no-repeat;
  background-size: 100%;
  width: 205px;
  height: 209px;
  left: 50%;
  top: -215px;
  transform: translate(-50%, 0);
}
.top_content ul li h3 {
  position: relative;
  font-size: 22px;
  color: #fff;
  text-shadow: 0px 0px 5px rgb(0 0 0 / 30%);
  font-weight: 600;
  padding: 0 0 0 97px;
}
.top_content ul li h3::after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 75%;
  transform: translate(0, -50%);
  z-index: 10;
}
.top_content ul li:first-of-type h3::after {
  background: url("../img/top/con_no01.svg") left top no-repeat;
  background-size: 100%;
  width: 74px;
  height: 70px;
}
.top_content ul li:nth-child(2) h3::after {
  background: url("../img/top/con_no02.svg") left top no-repeat;
  background-size: 100%;
  width: 83px;
  height: 70px;
}
.top_content ul li:nth-child(3) h3::after {
  background: url("../img/top/con_no03.svg") left top no-repeat;
  background-size: 100%;
  width: 84px;
  height: 70px;
}
.top_content ul li dl {
  position: relative;
  top: -2px;
}
.top_content ul li dl dt img {
  width: 100%;
}
.top_content ul li dl dd {
  text-align: center;
}
.top_content ul li dl dt {
  position: relative;
}
.top_content ul li dl dt::after {
  position: absolute;
  content: "";
  display: block;
}
.top_content ul li:first-of-type dl dt::after {
  background: url("../img/top/content_illust01.svg") center bottom no-repeat;
  background-size: 100%;
  width: 243px;
  height: 206px;
  left: 50%;
  bottom: -120px;
  transform: translate(-50%, 0);
}
.top_content ul li:nth-child(2) dl dt::after {
  background: url("../img/top/content_illust02.svg") center bottom no-repeat;
  background-size: 100%;
  width: 138px;
  height: 140px;
  left: 50%;
  bottom: -120px;
  transform: translate(-50%, 0);
}
.top_content ul li:nth-child(3) dl dt::after {
  background: url("../img/top/content_illust03.svg") center bottom no-repeat;
  background-size: 100%;
  width: 226px;
  height: 194px;
  left: 50%;
  bottom: -135px;
  transform: translate(-50%, 0);
}
.top_content ul li dl dd span {
  font-size: 21px;
  font-weight: 700;
  position: relative;
  z-index: 10;
}
.top_content ul li dl dd span img {
  position: relative;
  top: -6px;
  left: -10px;
}
.top_content ul li dl dd span::after {
  font-family: "Font Awesome 5 Free";
  display: block;
  content: "\f061";
  position: absolute;
  right: -32px;
  top: 54%;
  transform: translate(0, -50%);
  transition: .3s all;
}
@media screen and (max-width: 1024px) {
  .top_content ul li:first-of-type h3::after, .top_content ul li:nth-child(2) h3::after, .top_content ul li:nth-child(3) h3::after {
    width: 64px;
    height: 60px;
  }
  .top_content ul li h3 {
    padding: 0 0 0 86px;
    font-size: 15px;
  }
  .top_content li.small, .top_content li.small2, .top_content li.small3 {
    transform: scale(0.85, 0.85);
    transition-duration: 0.5s;
  }
}
@media screen and (max-width: 864px) {
  .top_content ul li h3 {
    font-size: 15px;
    padding: 0 0 0 50px;
  }
  .top_content ul li:first-of-type h3::after, .top_content ul li:nth-child(2) h3::after, .top_content ul li:nth-child(3) h3::after {
    width: 50px;
    height: 45px;
  }
  .top_content ul li dl dd span {
    font-size: 16px;
  }
  .top_content ul li dl dd span img {
    top: 1px;
  }
}
@media screen and (max-width: 767px) {
  .top_content {
    height: inherit;
    background: url(../img/top/content_bg_yel.png) top -50px center no-repeat;
    background-size: cover;
  }
  .top_content .inner1080 {
    background: url(../img/top/content_bg_sp.png) top 160px center no-repeat;
    background-size: 100%;
    width: 100%;
    padding: 150px 0 60px;
  }
  .top_content h2 {
    margin: 0 0 125px;
  }
  .top_content ul {
    width: 95%;
    margin: 0 auto;
  }
  .top_content ul li {
    width: 100%;
    margin: 0 0 95px;
  }
  .top_content li:hover {
    transform: none;
  }
  .top_content li.small, .top_content li.small2, .top_content li.small3 {
    transform: none;
  }
  .top_content li:nth-child(2).small, .top_content li:first-of-type.small2 {
    right: inherit;
  }
  .top_content li:last-of-type.small2, .top_content li:nth-child(2).small3 {
    left: inherit;
  }
  .top_content ul li h3 {
    font-size: 20px;
  }
  .top_content ul li:nth-child(2) h3 {
    padding: 0 97px 0 0;
    text-align: right;
  }
  .top_content ul li:nth-child(2) h3::after {
    right: 0;
    left: inherit;
  }
  .top_content ul li dl dd {
    text-align: right;
  }
  .top_content ul li dl dd a {
    display:inline-block;
  }
  .top_content ul li:nth-child(2) dl dd {
    text-align: left;
  }
  .top_content ul li:nth-child(2) dl dd span {
    left: 30px;
  }
  .top_content ul li:first-of-type dl dd span, .top_content ul li:nth-child(3) dl dd span {
    right: 30px;
  }
  .top_content ul li dl dd span img {
    width: inherit;
	top: -2px;
  }
  .top_content ul li.osusume::before {
    background: url(../img/top/osusume_sp.svg) center top no-repeat;
    background-size: 100%;
    width: 133px;
    height: 95px;
    left: inherit;
    top: -30px;
    right: 0;
    transform: inherit;
    z-index: 10;
  }
  .top_content ul li:first-of-type dl dt::after {
    left: 0;
    transform: rotate(-15deg);
    bottom: -80px;
    width: 151px;
    height: 115px;
  }
  .top_content ul li:nth-child(2) dl dt::after {
    left: inherit;
    right: 30px;
    transform: inherit;
    bottom: -58px;
    width: 92px;
    height: 93px;
  }
  .top_content ul li:nth-child(3) dl dt::after {
    left: 0;
    bottom: -90px;
    transform: inherit;
    width: 150px;
    height: 115px;
  }
  .top_content ul li dl dd span {
	padding: 0 30px 0 0;
  }
  .top_content ul li dl dd span::after {
	right: 0;
  }
}
@media screen and (max-width: 480px) {}
/* top_rental */
.top_rental {
  background: url("../img/top/rental_bg.png") top center no-repeat;
  background-size: cover;
  width: 100%;
  height: 1150px;
  margin: -80px 0 0;
  padding: 110px 0 0;
}
.top_rental .lead {
  color: #fff;
  margin: 24px 0 40px;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0px 0px 5px rgb(0 0 0 / 30%);
}
.top_rental .rental_box {
  background: url("../img/top/rental_bg_cir.svg") center center no-repeat;
  background-size: 100%;
  width: 728px;
  height: 725px;
  margin: 50px auto;
  position: relative;
}
.rental_box .delay-time03 {
  position: relative;
  text-align: center;
  top: -25px;
}
.rental_box .delay-time06 {
  position: absolute;
  top: 100px;
  left: -70px;
}
.rental_box .delay-time09 {
  position: absolute;
  top: 168px;
  left: 180px;
}
.rental_box .delay-time12 {
  position: absolute;
  top: 345px;
  left: 241px;
}
.rental_box .delay-time15 {
  position: absolute;
  top: 250px;
  right: 239px;
}
.rental_box .delay-time18 {
  position: absolute;
  top: 170px;
  right: 246px;
}
.rental_box .delay-time21 {
  position: absolute;
  top: 142px;
  right: 124px;
}
.rental_box .delay-time24 {
  position: absolute;
  top: 198px;
  right: -50px;
}
.rental_box .delay-time27 {
  position: relative;
  bottom: -230px;
  animation-delay: 1s;
}
.rental_box h3.delay-time03.poyo, .rental_box .delay-time27.link.poyo, .rental_box .delay-time36.poyo {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.rental_box dl {
  position: relative;
  background: url("../img/top/rental_pic.png") center top no-repeat;
  background-size: 100%;
  width: 590px;
  height: 272.5px;
  margin: 0 auto;
}
.rental_box dl::before {
  position: absolute;
  content: "";
  display: block;
  background: url("../img/top/rental_new_icon.svg") left top no-repeat;
  background-size: 100%;
  width: 98px;
  height: 97px;
  top: -40px;
  left: -30px;
}
.rental_box dl dt {
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 40px;
}
.rental_box dl dd {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translate(-50%, 0);
}
.rental_box dl dd .btn {
  padding: 22px 60px;
}
.rental_box dl dd .btn:hover {
  padding: 27px 45px;
  margin: -5px 0 -5px;
}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 864px) {
  .rental_box .delay-time06 {
    left: -50px;
  }
  .rental_box .delay-time12 {
    left: 221px;
  }
  .rental_box .delay-time15 {
    right: 286px;
  }
  .rental_box .delay-time24 {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .top_rental {
    height: inherit;
    padding: 0 0 80px;
    background: url(../img/top/bg_purple.png) top -15px center no-repeat;
    background-size: auto;
  }
  .top_rental h2 {
    padding: 110px 0 0;
  }
  .top_rental .inner1080 {
    width: 100%;
    background: url("../img/top/rental_star_sp.png") left top 20px no-repeat;
    background-size: cover;
  }
  .top_rental .lead {
    font-size: 15px;
  }
  .top_rental .rental_box {
    width: 360px;
    height: 370px;
    margin: 0 auto 80px;
    padding: 50px 0;
  }
  .rental_box div > img {
    width: inherit;
  }
  .rental_box .delay-time03 {
    top: -60px;
  }
  .rental_box .delay-time03 img {
    width: 80%;
  }
  .rental_box .delay-time06 {
    left: 15px;
    top: 80px;
  }
  .rental_box .delay-time06 img {
    width: 61px;
  }
  .rental_box .delay-time09 {
    top: 148px;
    left: 20px;
  }
  .rental_box .delay-time09 img {
    width: 87px;
  }
  .rental_box .delay-time12 {
    left: 90px;
    top: 95px;
  }
  .rental_box .delay-time12 img {
    width: 85px;
  }
  .rental_box .delay-time15 {
    right: inherit;
    left: 128px;
    top: 185px;
  }
  .rental_box .delay-time15 img {
    width: 31px;
  }
  .rental_box .delay-time18 {
    right: inherit;
    left: 130px;
    top: inherit;
    bottom: 100px;
  }
  .rental_box .delay-time18 img {
    width: 58px;
  }
  .rental_box .delay-time21 {
    top: 82px;
    right: inherit;
    left: 135px;
  }
  .rental_box .delay-time21 img {
    width: 36px;
  }
  .rental_box .delay-time24 {
    right: 94px;
    top: 80px;
  }
  .rental_box .delay-time24 img {
    width: 62px;
  }
  .rental_box .delay-time27.poyoTrigger {
    bottom: 103px;
    position: absolute;
    right: 43px;
  }
  .rental_box .delay-time27.poyoTrigger img {
    width: 140px
  }
  .rental_box .delay-time30 {
    right: 40px;
    position: absolute;
    top: 90px;
  }
  .rental_box .delay-time30 img {
    width: 39px;
  }
  .rental_box .delay-time33 {
    position: absolute;
    right: 25px;
  }
  .rental_box .delay-time33 img {
    width: 31px;
  }
  .rental_box .delay-time36 {
    position: absolute;
    bottom: -70px;
    width: 100%;
	animation-delay: 1s;
  }
  .rental_box dl {
    width: 90%;
    height: 152.5px;
  }
  .rental_box dl::before {
    width: 43px;
    height: 43px;
    top: -15px;
    left: 0;
  }
  .rental_box dl dt {
    font-size: 16px;
    padding: 10px 0 0;
  }
  .rental_box dl dd {
    width: 70%;
    bottom: -15px;
  }
  .rental_box dl dd .btn {
    padding: 14px 38px;
    font-size: 12px;
  }
  .rental_box dl dd .btn:hover {
    padding: 14px 38px;
    margin: 0;
  }
}
@media screen and (max-width: 480px) {}
/* top_area */
.top_area {
  position: relative;
  padding: 95px 0 400px;
}
.top_area_bg {
  background: url("../img/top/area_bg.png") center top -100px no-repeat;
  background-size: cover;
  width: 100%;
  height: 3200px;
  position: absolute;
  top: -150px;
  z-index: -1;
}
.top_area .inner1200 {
  background: url("../img/top/area_cloud.png") center top no-repeat;
  background-size: 100%;
}
.top_area .lead {
  margin: 57px 0 50px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0px 0px 5px rgb(0 0 0 / 30%);
}
.top_area .map {
  border: 22px #fff solid;
  border-radius: 62px;
  margin: 0 auto 12vw;
  padding: 0;
}
.top_area .map iframe {
  border-radius: 40px;
}
.top_area .map #map {
  height: 600px;
  border-radius: 40px;
}
.top_area .map #map .infoWindow dt {
  font-weight: bold;
}

.top_area .area_link {
  position: relative;
  background-color: #fff;
}
.top_area .area_link::before {
  position: absolute;
  content: "";
  display: block;
  background: url("../img/top/area_bg_sch.svg") center top no-repeat;
  background-size: 100%;
  width: 1200px;
  height: 360px;
  top: -356px;
  left: 0;
  z-index: 1;
}
.top_area .area_link::after {
  content: '';
  position: absolute;
  bottom: -280px;
  left: 0;
  background: url(../img/top/area_bg_sch_btm.svg) center top no-repeat;
  background-size: 100%;
  width: 100%;
  height: 544px;
  /*border-top: 210px solid #fff;
  border-left: 1200px solid transparent;*/
  z-index: 1;
}
.top_area .area_link ul {
  display: grid;
  position: relative;
  width: 96%;
  height: 1040px;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  margin: 0 auto;
}
.top_area .area_link li {
  /*width: 49%;
	padding: 0 12px;*/
  position: relative;
  z-index: 10;
}
.top_area .area_link li:nth-child(2n) {
  margin: -40px 0 0;
}
.top_area .area_link li:nth-child(2n+1) {
  margin: -150px 0 0;
}
.top_area .area_link li h3 {
  position: absolute;
  right: 10px;
  top: 35px;
}
.top_area .area_link li.coming-soon h3 {
  top: 20px;
}
.top_area .area_link li dl {
  position: relative;
}
.top_area .area_link li dl::before {
  position: absolute;
  content: "";
  display: block;
  top: -20px;
  left: -10px;
  width: 100px;
  height: 100px;
}
.top_area .area_link li.pink dl::before {
  background: url("../img/top/area_linkico01.svg") left top no-repeat;
  background-size: 100%;
}
.top_area .area_link li.yellow dl::before {
  background: url("../img/top/area_linkico02.svg") left top no-repeat;
  background-size: 100%;
}
.top_area .area_link li.blue dl::before {
  background: url("../img/top/area_linkico03.svg") left top no-repeat;
  background-size: 100%;
}
.top_area .area_link li.green dl::before {
  background: url("../img/top/area_linkico04.svg") left top no-repeat;
  background-size: 100%;
}
.top_area .area_link li.blueL dl::before {
  background: url("https://campiece.com/wp/wp-content/uploads/2022/05/kasumigaura_mark.png") left top no-repeat;
  background-size: 100%;
}
.top_area .area_link li.coming-soon dl::before {
  background: url("../img/top/area_linkico06.svg") left top no-repeat;
  background-size: 100%;
}
.top_area .area_link li dt img {
  width: 100%;
  height: auto;
}
.top_area .area_link li dd {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  display: flex;
  gap: 20px;
  align-items: center;
}
.top_area .area_link li .btn {
  font-size: 19px;
  padding-left:22px;
  padding-right:22px;
  width:240px;
  color: #fff;
}
.top_area .area_link li.pink .btn {
  background-color: #DB978E;
}
.top_area .area_link li.yellow .btn {
  background-color: #E2BB56;
}
.top_area .area_link li.blue .btn {
  background-color: #6897CD;
}
.top_area .area_link li.green .btn {
  background-color: #71AD6F;
}
.top_area .area_link li.blueL .btn {
  background-color: #68B8B9;
}
.top_area .area_link li.coming-soon .btn {
  background-color: #E3E3E3;
}
.top_area .area_link li .top-insta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15.7vw;
  max-width: 78px;
  min-width: 58px;
  height: 15.7vw;
  max-height: 78px;
  min-height: 58px;
  border-radius: 50vw;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 9999;
}
.top_area .area_link li .top-insta:hover {
  max-width: 83px;
  max-height: 83px;
}
.top_area .area_link li .top-insta img {
  width: 6.9vw;
  max-width: 38px;
  min-width: 29px;
}
.top_area .area_link li.pink .top-insta {
  background-color: #DB978E;
}
.top_area .area_link li.yellow .top-insta {
  background-color: #E2BB56;
}
.top_area .area_link li.blue .top-insta {
  background-color: #6897CD;
}
.top_area .area_link li.green .top-insta {
  background-color: #71AD6F;
}
.top_area .area_link li.blueL .top-insta {
  background-color: #68B8B9;
}
.top_area .area_link li.coming-soon .top-insta {
  display: none;
}

.top_area .inner100 {
    width: 100%;
	padding: 15vw 0 0;
}
.top_area .area_link::before {
	position: absolute;
	content: "";
	display: block;
	background: url(../img/top/area_bg_sch_lg.svg) center top no-repeat;
	width: 100%;
	/*height: 412px;
  	top: -412px;*/
  height:23vw;
  top:-22.5vw;
  background-size:105vw;
}
.top_area .area_link::after {
	position: absolute;
	content: "";
	display: block;
	background: url(../img/top/area_bg_sch_btm_lg.svg) center top no-repeat;
	background-size: 100%;
	width: 100%;
	/*height: 412px;
	bottom: -412px;*/
  height:22vw;
  bottom:-17vw;
	border: none;
}
.top_area .area_link ul {
	width: 1150px;
}
.top_area {
	padding: 95px 0 24vw;/*padding: 95px 0 20vw;*/
}
.top_area .area_link {
	width: 100%;
	margin: 0 auto;
}
.top_area_bg {
	background: url(../img/top/area_bg.png) center top -120px no-repeat;
	background-size: cover;
	height: 3500px;
}
@media screen and (min-width: 767px) {
  .top_area .area_link li:hover {
    transform: scale(1.05, 1.05);
    transition-duration: 0.5s;
  }
  .top_area .area_link li.small {
    transform: scale(0.95, 0.95);
    transition-duration: 0.5s;
  }
}
@media screen and (max-width: 1600px) {
  .top_area .area_link {
    padding:3vw 0 0;
  }
}
@media screen and (max-width: 1200px) {
  .top_area .area_link li h3 {
    top: 15px;
  }
  .top_area .area_link li.coming-soon h3 {
    top: 5px;
  }
  .top_area .area_link {
    padding:7vw 0 0;
  }
}
@media screen and (max-width: 1149px) {
	
  .top_area .area_link ul {
    width: 1024px;
    /*grid-template-columns: 1fr;*/
  }
	
}
@media screen and (max-width: 1024px) {
  .top_area .area_link li.coming-soon h3 {
    top: -20px;
  }
		
  .top_area .area_link ul {
    width: 730px;
    height: 860px;
	grid-template-columns: repeat(2, 1fr);
    /*grid-template-columns: 1fr;*/
  }
	
  .top_area .area_link li:first-of-type {
    margin: -70px 0 0;
  }
  .top_area .area_link li:nth-child(2) {
    margin: 0;
  }
  .top_area .area_link li:nth-child(3) {
    margin: -124px 0 0;
  }
  .top_area .area_link li:nth-child(4) {
    margin: -54px 0 0;
  }
  .top_area .area_link li:nth-child(5) {
    margin: -124px 0 0;
  }
  .top_area .area_link li h3 {
    top: -5px;
  }
  .top_area .area_link li.coming-soon h3 {
    top: -23px;
  }
  .top_area .area_link li dl::before {
    width: 70px;
    height: 70px;
  }
}
@media screen and (max-width: 864px) {
  .top_area .area_link {
    width: 100%;/*width: 730px;*/
    margin: 0 auto;
  }
  .top_area .area_link ul {
    width: 730px;
    height: 860px;
	grid-template-columns: repeat(2, 1fr);
    /*grid-template-columns: 1fr;*/
  }
  /*.top_area .area_link::after {
    border-left: 730px solid transparent;
    border-top: 140px solid #fff;
    bottom: -138px;
  }
  .top_area .area_link li:first-of-type {
    margin: -70px 0 0;
  }
  .top_area .area_link li:nth-child(2) {
    margin: 0;
  }
  .top_area .area_link li:nth-child(3) {
    margin: -124px 0 0;
  }
  .top_area .area_link li:nth-child(4) {
    margin: -54px 0 0;
  }
  .top_area .area_link li:nth-child(5) {
    margin: -124px 0 0;
  }
  .top_area .area_link li h3 {
    top: -5px;
  }
  .top_area .area_link li.coming-soon h3 {
    top: -23px;
  }
  .top_area .area_link li dl::before {
    width: 70px;
    height: 70px;
  }*/
}
@media screen and (max-width: 767px) {
  .top_area {
    background: url("../img/top/bg_blue.png") center top no-repeat;
    background-size: 135%;
    top: -40px;
    padding: 45px 0 150px;
  }
  .top_area .inner1200 {
    background: url("../img/top/area_cloud_sp.png") center top no-repeat;
    background-size: 100%;
    width: 100%;
  }
  .top_area h2 {
    padding: 120px 0 0;
  }
  .top_area .lead {
    font-size: 15px;
  }
  .top_area .map {
    border-radius: 30px;
    border: 10px #fff solid;
    margin: 0 auto 43px;
    width: 90%;
  }
  .top_area .map iframe {
    border-radius: 20px;
    height: 345px;
  }
  .top_area .area_link {
    background-color: inherit;
    width: 100%;
  }
  .top_area .area_link::before, .top_area .area_link::after {
    display: none;
  }
  .top_area .area_link ul {
    height: inherit;
    width: 100%;
    margin: 0 auto;
	grid-template-columns: 1fr;
  }
  .top_area .area_link li {
    width: 480px;
    height: 520px;
    background: url("../img/top/area_bg_sch_sp.svg") center top no-repeat;
    background-size: 100%;
    padding: 140px 15px 20px;
  }
  .top_area .area_link li:first-of-type, .top_area .area_link li:nth-child(2), .top_area .area_link li:nth-child(3), .top_area .area_link li:nth-child(4), .top_area .area_link li:nth-child(5), .top_area .area_link li:last-of-type {
    margin: 0 auto;
  }
  .top_area .area_link li h3 {
    top: 140px;
  }
  .top_area .area_link li.coming-soon h3 {
    top: 120px;
  }
  .top_area .area_link li dl::before {
    top: -40px;
    left: 0;
    width: 100px;
    height: 100px;
  }
  .top_area .area_link li .btn {
    font-size: 20px;
    padding: 14px 57px 18px;
  }
  .top_area .area_link li:hover, .top_area .area_link li.small {
    transform: none;
  }
}
@media screen and (max-width: 480px) {
  .top_area {
    background: url(../img/top/bg_blue.png) center top no-repeat;
    background-size: auto;
  }
  .top_area .area_link li {
    width: 100%;
    height: 500px;
  }
  .top_area .area_link li h3 {
    top: 120px;
  }
  .top_area .area_link li.coming-soon h3 {
    top: 105px;
  }
  .top_area .area_link li dl::before {
    width: 80px;
    height: 80px;
  }
  .top_area .area_link li .btn {
    font-size: 12px;
  }
}
@media screen and (max-width: 450px) {
  .top_area .area_link li {
    height: 450px;
  }
}
@media screen and (max-width: 380px) {
  .top_area .area_link li {
    height: 420px;
  }
}
/* top_others */
.top_others {
  background: url("../img/top/other_bg.png") top center no-repeat;
  background-size: cover;
  width: 100%;
  height: 1265px;
  margin: -130px 0 0;
  padding: 200px 0 0;
}
.top_others .inner1200 {
  background: url("../img/top/other_tree.png") center top no-repeat;
  background-size: 100%;
  padding: 100px 0 0;
}
.top_others h2 {
  margin: 0 0 60px;
  padding: 30px 0 0;
}
.top_others ul {
  padding: 0 0 200px;
}
.top_others ul li {
  width: 24%;
}
.top_others ul li dt {
  color: #fff;
  text-shadow: 0px 0px 5px rgb(0 0 0 / 30%);
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  min-height: 50px;
  margin: 0 0 18px;
  line-height: 1.4;
}
.top_others ul li dd img {
  width: 100%;
}
@media screen and (min-width: 767px) {
  .top_others ul li dd a:hover {
    opacity: .8;
  }
}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 767px) {
  .top_others {
    background: url("../img/top/bg_brown.png") top -30px center no-repeat;
    height: inherit;
    margin: -130px 0 0;
    padding: 0;
    position: relative;
  }
  .top_others .inner1200 {
    width: 100%;
    background: url(../img/top/other_tree_sp.png) center top 30px no-repeat;
    background-size: 100%;
	padding: 50px 0 0;
  }
  .top_others h2 {
    padding: 130px 0 50px;
  }
  .top_others ul {
    width: 95%;
    margin: 0 auto;
    padding: 0 0 130px;
  }
  .top_others ul li {
    width: 100%;
    margin: 0 0 50px;
  }
  .top_others ul li dt {
    min-height: inherit;
    margin: 0 0 10px;
  }
}
@media screen and (max-width: 480px) {}
/* top > page ================= */
.page section h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0px 0px 5px rgb(0 0 0 / 30%);
  margin: 0 0 30px;
  padding: 52px 0 0;
}
@media screen and (max-width: 480px) {
  .page section h2 {
    font-size: 22px;
    margin: 0 0 20px;
  }
}
/* page_news_archive */
.page_news_archive {
  padding: 52px 0 0;
}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 767px) {}
@media screen and (max-width: 480px) {}
/* page_content */
.page_content .page_content_tit {
  font-size: 40px;
  text-align: center;
  padding: 50px 0 10px;
  letter-spacing: 4px;
  font-weight: 700;
}
.page_content .page_content_tit span img {
  width: 134px;
  height: auto;
  display: inline-block;
  padding: 0 13px 14px;
}
.page_content .page_camp .page_content_tit span img {
  width: 274px;
}
.page_content .page_content_tit span {
  position: relative;
}
.page_content .page_content_tit span::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  transform: translate(0, -50%);
}
.page_content .page_camp .page_content_tit span::before {
  background: url("../img/page/camp/tit_icon.png") left center no-repeat;
  background-size: 100%;
  width: 139px;
  height: 139px;
  left: -120px;
}
.page_content .page_school .page_content_tit span::before {
  background: url("../img/page/school/tit_icon.png") left center no-repeat;
  background-size: 100%;
  width: 166px;
  height: 166px;
  left: -165px;
  top: 34%;
}
.page_content .page_workation .page_content_tit span::before {
  background: url("../img/page/workation/tit_icon.png") left center no-repeat;
  background-size: 100%;
  width: 126px;
  height: 126px;
  left: -125px;
  top: 40%;
}
.page_content .page_mv {
  width: 1080px;
  margin: 0 auto;
}
.page_content .mv_lead {
  text-align: center;
  font-size: 23px;
  padding: 22px 0 40px;
  position: relative;
  z-index: 5;
}
.page_content .mv_lead::after {
  position: absolute;
  content: "";
  display: block;
  z-index: -1;
}
.page_content .page_camp .mv_lead::after {
  background: url(../img/top/content_illust01.svg) center bottom no-repeat;
  background-size: 100%;
  width: 302px;
  height: 230px;
  left: 0;
  bottom: -90px;
}
.page_content .page_school .mv_lead::after {
  background: url(../img/top/content_illust02.svg) center bottom no-repeat;
  background-size: 100%;
  width: 230px;
  height: 232px;
  right: 80px;
  bottom: -80px;
}
/* .page_content .page_workation .mv_lead::after {
  background: url(../img/top/content_illust03.svg) center bottom no-repeat;
  background-size: 100%;
  width: 296px;
  height: 230px;
  right: 20px;
  bottom: -60px;
  transform: rotateZ(28deg);
} */
.page_content_img {
  position: relative;
}
.page_content_img li {
  position: absolute;
  height: auto;
}
.page_content_img li img {
  width: 100%;
}
.page_content .link h2 {
  font-size: 25px;
  margin: 0 0 53px;
}
.page_content .link .btn {
  font-size: 13px;
}
/* page_content ページ別 */
/* page_camp */
.page_camp .page_content_img {
  height: 700px;
  margin: 0 0 98px;
}
.page_camp .page_content_img li:first-of-type {
  top: 130px;
  left: 30px;
  width: 398px;
}
.page_camp .page_content_img li:nth-child(2) {
  bottom: 30px;
  left: 45%;
  transform: translate(-50%, 0);
  width: 413px;
}
.page_camp .page_content_img li:nth-child(3) {
  top: 20px;
  right: 0;
  width: 565px;
  text-align: right;
}
.page_camp .link .inner {
  margin: 0 auto 255px;
  width: 920px;
}
.page_camp .link ul {
  position: relative;
}
.page_camp .link li a {
  position: absolute;
  padding: 55px 0;
  display: block;
  color: #646464;
  font-weight: 700;
  top: 0;
  font-size: 15px;
}
@media screen and (min-width: 767px) {
  .page_camp .link li a:hover {
    opacity: .8;
  }
}
.page_camp .link li:first-of-type a {
  padding: 45px 0 45px 106px;
  background: url("../img/page/camp/link_bg01.png") left top no-repeat;
  background-size: 99%;
  width: 261px;
  height: 125px;
  left: 0;
}
.page_camp .link li:nth-child(2) a {
  background: url("../img/page/camp/link_bg02.png") left top no-repeat;
  background-size: 99%;
  width: 458px;
  height: 125px;
  left: 208px;
  padding: 45px 0 55px 165px;
}
.page_camp .link li:nth-child(3) a {
  background: url("../img/page/camp/link_bg03.png") left top no-repeat;
  background-size: 99%;
  width: 309px;
  height: 125px;
  right: 0;
  padding: 45px 0px 45px 95px;
}
.page_camp .link li:nth-child(3) a span {
  position: relative;
}
.page_camp .link li:nth-child(3) a span::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  right: -52px;
  top: 50%;
  transform: translate(0, -50%);
  transition: .3s all;
}

.page_camp .totop {
  padding: 70px 0 0;
}
/* page_school */
.page_school .page_content_img {
  height: 750px;
  margin: 0 0 85px;
}
.page_school .page_content_img li:first-of-type {
  top: 0;
  left: 0;
  width: 415px;
}
.page_school .page_content_img li:nth-child(2) {
  bottom: 20px;
  left: 44%;
  transform: translate(-50%, 0);
  width: 586px;
}
.page_school .page_content_img li:nth-child(3) {
  top: 70px;
  right: 0;
  width: 422px;
}
/* page_workation */
.page_workation .page_content_img {
  height: 750px;
  margin: 0 0 85px;
}
.page_workation .page_content_img li:first-of-type {
  top: 0;
  left: 0;
  width: 418px;
}
.page_workation .page_content_img li:nth-child(2) {
  bottom: 90px;
  left: 100px;
  width: 565px;
}
.page_workation .page_content_img li:nth-child(3) {
  top: 70px;
  right: 0;
  width: 428px;
}
.page_content .voice .inner {
  background-color: #Fff;
  padding: 0 0 46px;
  border-radius: 10px;
  margin: 0 auto 117px;
  width: 920px;
}
.page_content .voice h3 {
  background-color: #EBCC73;
  padding: 45px 0;
  border-radius: 10px;
}
.page_content .voice h3 span {
  display: block;
  width: 54%;
  text-align: center;
  margin: 0 0 0 auto;
  padding: 0 35px 0 0;
  font-size: 30px;
  color: #000000;
  font-weight: 700;
}
.page_content .page_camp .voice h3 span, .page_content .page_school .voice h3 span {
  width: 100%;
  padding: 0;
}
.page_content .voice img {
  width: 100%;
  height:auto;
}
.page_content .voice .flex_pc {
  margin: 0 0 29px;
}
.page_content .page_camp .voice .flex_pc, .page_content .page_school .voice .flex_pc {
  margin: 40px 15px 0;
  padding: 38px 0;
  border-bottom: 1px solid #707070;
}
.page_content .page_camp .voice .flex_pc:last-of-type, .page_content .page_school .voice .flex_pc:last-of-type {
  margin: 0 15px 0;
  border-bottom: none;
  padding: 38px 0 0;
}
.page_content .voice .flexL {
  width: 44%;
  padding: 0 0 0 35px;
}
.page_content .voice .flexR {
  width: 54%;
  padding: 39px 35px 0 0;
  font-size: 16px;
}
.page_content .page_camp .voice .flexL, .page_content .page_school .voice .flexL {
  width: 46%;
  padding: 0;
}
.page_content .page_camp .voice .flexR, .page_content .page_school .voice .flexR {
  width: 52%;
  padding: 0;
}
	  .page_content .page_camp .voice .flexR h4, .page_content .page_school .voice .flexR h4{
    font-size: 17px;
		 padding: 5px; 
		  margin-bottom: 20px;
		  background-color: #eee;
  }
		  .page_content .page_camp .voice .flexR p, .page_content .page_school .voice .flexR p{
    font-size: 15px;
		 padding: 0 5px; 
  }
.page_content .voice .voice_img {
  margin: -90px 0 23px;
  ;
}
.page_content .voice .client_name {
  font-size: 20px;
  margin: 0 0 40px;
  text-align: right;
  padding: 0 10px 0 0;
}
.page_content .voice .voice_txt01 {
  font-size: 20px;
}
.page_content .voice .voice_img02 {
  padding: 0 32px;
}
@media screen and (max-width: 1200px) {
  .page_content .page_mv {
    width: 95%;
  }
}
@media screen and (max-width: 1024px) {
  .page_content_img li img {
    width: 90%;
  }
  .page_content .voice .inner {
    width: 95%;
  }
  .page_camp .link .inner {
    width: 740px;
  }
  .page_camp .link li a {
    font-size: 12px;
    height: 90px;
  }
  .page_camp .link li:first-of-type a {
    width: 198px;
    padding: 35px 0 35px 80px;
    left: 20px;
  }
  .page_camp .link li:nth-child(2) a {
    width: 348px;
    left: 178px;
    padding: 35px 0px 35px 125px;
  }
  .page_camp .link li:nth-child(3) a {
    width: 236px;
    padding: 35px 0px 35px 75px;
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page_content .page_mv {
    width: 100%;
  }
  .page_content .page_content_tit {
    font-size: 22px;
  }
  .page_content .page_content_tit span img {
    width: 124px;
    padding: 0 15px 0;
  }
  .page_content .mv_lead {
    margin: 0 auto 0;
    width: 90%;
  }
  .page_content .page_camp .page_content_tit span img {
    width: 234px;
  }
  .page_content .page_content_tit span::before {
    display: none;
  }
  .page_content_img li img {
    width: 90%;
  }
  /* ページ別 page_content_img */
  .page_camp .page_content_img li:nth-child(3) {
    width: 385px;
  }
  .page_school .page_content_img li:nth-child(2) {
    width: 460px;
  }
  .page_school .page_content_img li:nth-child(3) {
    top: 190px;
  }
  .page_workation .page_content_img li:nth-child(2) {
    bottom: 0px;
    left: 20px;
    width: 460px;
  }
  .page_workation .page_content_img li:nth-child(3) {
    top: 200px;
    right: -40px;
    width: 428px;
  }
  .page_content .voice .flexL, .page_content .voice .flexR {
    width: 100%;
  }
  .page_content .voice .flexL {
    display: flex;
    padding: 0 0 0 10px;
  }
  .page_content .voice .flexL .client_box {
    width: 45%;
  }
  .page_content .voice .flexL .voice_txt01 {
    width: 52%;
    padding: 0 0 0 10px;
  }
  .page_content .voice .flexL .voice_txt01 span {
    margin: 10px 0 10px auto;
    padding: 10px 0 10px 10px;
    border: 1px solid #707070;
    border-radius: 10px;
    position: relative;
    width: 95%;
  }
  .page_content .voice .flexL .voice_txt01 span:after, .page_content .voice .flexL .voice_txt01 span:before {
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    right: 94%;
    top: 50%;
  }
  .page_content .voice .flexL .voice_txt01 span:after {
    border-left: 15px solid transparent;
    border-top: 6px solid white;
    position: absolute;
    top: 17px;
    left: -12px;
  }
  .page_content .voice .flexL .voice_txt01 span:before {
    border-left: 15px solid transparent;
    border-top: 7px solid #707070;
    position: absolute;
    top: 16px;
    left: -16px;
  }
  .page_content .voice .flexR {
    padding: 10px 30px;
  }
  .page_content .voice .voice_img02 {
    padding: 0 15px;
  }
  .page_content section.link h2 {
    color: #646464;
    text-shadow: 0px 0px 5px rgb(0 0 0 / 16%);
  }
  .page_content .page_camp .voice .flex_pc, .page_content .page_school .voice .flex_pc {
    margin: 0 15px 0;
	padding: 18px 0;
  }
  .page_content .page_camp .voice .flex_pc:last-of-type, .page_content .page_school .voice .flex_pc:last-of-type {
	padding: 18px 0 0;
  }
  .page_content .page_camp .voice .flexL, .page_content .page_school .voice .flexL {
    width: 100%;
    margin: 0 0 10px;
  }
  .page_content .page_camp .voice .flexR, .page_content .page_school .voice .flexR {
    width: 100%;
  }

  .page_camp section.link h2 {
    padding: 0;
  }
  .page_camp .link .inner {
    width: 100%;
    margin: 0 auto 84px
  }
  .page_camp .link ul {
    width: 480px;
    margin: 0 auto 240px;
  }
  .page_camp .link li a {
    height: 160px;
    font-size: 10px;
  }
  .page_camp .link li:first-of-type a {
    background: url(../img/page/camp/link_bg01_sp.png) left top no-repeat;
    background-size: 100%;
    width: 33%;
    left: 20px;
    padding: 110px 0 55px 44px;
  }
  .page_camp .link li:nth-child(2) a {
    background: url(../img/page/camp/link_bg02_sp.png) right top no-repeat;
    background-size: 100%;
    width: 66.5%;
    left: inherit;
    right: 17px;
    padding: 110px 0px 55px 80px;
  }
}
@media screen and (max-width: 480px) {
  .page_content .mv_lead {
    font-size: 15px;
    margin: 0 auto 0;
    width: 95%;
  }
  .page_content .page_camp .mv_lead::after {
    background: url(../img/top/content_illust01.svg) left bottom no-repeat;
    background-size: 60%;
    bottom: -30px;
    transform: rotateZ(-11deg);
  }
  .page_content .page_school .mv_lead::after {
    background: url(../img/top/content_illust02.svg) right top no-repeat;
    background-size: 60%;
    right: 0;
    bottom: -90px;
  }
  .page_content .page_workation .mv_lead::after {
    background: url(../img/top/content_illust03.svg) right -20px top -10px no-repeat;
    background-size: 80%;
    width: 206px;
    height: 180px;
    right: 20px;
    bottom: -50px;
    transform: rotateZ(25deg);
  }
  .page_content_img li img {
    width: 55%;
  }
  .page_camp .page_content_img {
    height: 400px;
  }
  .page_camp .page_content_img li:first-of-type {
    top: 30px;
    left: -20px;
    width: 100%;
  }
  .page_camp .page_content_img li:nth-child(3) {
    bottom: inherit;
    left: inherit;
    transform: inherit;
    right: 0;
    top: 0;
    text-align: right;
    width: 100%;
  }
  .page_camp .page_content_img li:nth-child(2) {
    top: inherit;
    right: 0;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    width: 100%;
  }
  .page_camp .page_content_img li:nth-child(2) img {
    width: 70%;
  }
  .page_school .page_content_img {
    height: 340px;
  }
  .page_school .page_content_img li:first-of-type {
    top: -30px;
    width: 100%;
    left: -20px;
  }
  .page_school .page_content_img li:nth-child(2) {
    text-align: center;
    width: 100%;
  }
  .page_school .page_content_img li:nth-child(3) {
    right: 0;
    top: 10px;
    width: 100%;
    text-align: right;
  }
  .page_school .page_content_img li:nth-child(2) img {
    width: 70%;
    transform: rotateZ(-15deg);
  }
  .page_workation .page_content_img {
    height: 330px;
  }
  .page_workation .page_content_img li:first-of-type {
    top: -30px;
    width: 100%;
  }
  .page_workation .page_content_img li:nth-child(2) {
    text-align: center;
    width: 100%;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .page_workation .page_content_img li:nth-child(3) {
    top: 10px;
    right: 0;
    text-align: right;
    width: 100%;
  }
  .page_workation .page_content_img li:nth-child(2) img {
    width: 70%;
    transform: rotateZ(12deg);
  }
  .page_content .voice .inner {
    padding: 0 0 15px;
    margin: 0 auto 60px;
  }
  .page_content .voice h3 {
    padding: 15px 0;
  }
  .page_content .voice h3 span {
    font-size: 13px;
  }
  .page_content .voice .voice_img {
    margin: -40px 0 13px;
  }
  .page_content .voice .client_name {
    font-size: 8px;
    margin: 0 0 10px;
  }
  .page_content .voice .voice_txt01 {
    font-size: 10px;
  }
  .page_content .voice .flexR {
    font-size: 10px;
    padding: 10px 15px;
  }
  .page_camp .link .inner {
    margin: 0 auto 42px
  }
  .page_camp .link ul {
    width: 320px;
    margin: 0 auto 180px;
  }
  .page_camp .link li a {
    height: 110px;
  }
  .page_camp .link li:first-of-type a {
    left: 15px;
    padding: 70px 0 15px 23px;
  }
  .page_camp .link li:nth-child(2) a {
    right: 10px;
    padding: 70px 0 15px 37px;
  }
}
/* page_rental */
.page_rental .rental_bg {
  background: url("../img/page/rental/bg_star.png") center top no-repeat;
  background-size: 100%;
}
.page_rental h2 {
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-shadow: 0px 0px 5px rgb(0 0 0 / 30%);
  padding: 52px 0 28px;
}
.page_rental h3 {
  text-align: center;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  margin: 0 0 57px;
}
.page_rental .rental_lead {
  text-align: center;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 0 0 22px;
}
/*　gear slider */
.page_gear_list > ul > li {
  width: 48%;
  margin: 0 0 50px;
  position: relative;
  padding: 0 0 80px;
}
.page_gear_list > ul > li.new::before,
#slider_rental .new::before  {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/page/rental/new_icon.svg) left top no-repeat;
  background-size: 100%;
  width: 65px;
  height: 64px;
  top: 0;
  left: 20px;
  z-index: 10;
}
.page_gear_list > ul > li.new::before {
  left: -30px;
}
.slider.slider_gear {
  position: relative;
  width: 98%;
}
.detail .slider.slider_gear {
  height:auto;
}
.slider_gear img {
  width: 100%;
  height: 90%;
  object-fit: cover;
}
.slider_gear .slick-prev, .slider_gear .slick-next {
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 29px;
  height: 29px;
  color: transparent;
}
.slider_gear .slick-prev {
  left: 3%;
  background: url(../img/page/rental/prev.svg) left center no-repeat;
  background-size: 100%;
}
.slider_gear .slick-next {
  right: 3%;
  background: url(../img/page/rental/next.svg) left center no-repeat;
  background-size: 100%;
}
.gear_detail {
  width: 100%;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 20px;
  background: url(../img/page/rental/bg_mv_tit.png) right -15px center no-repeat;
  background-size: 100% 100%;
  padding: 16px 16px 16px 95px;
  z-index: 10;
  min-height: 11vw;
}
.detail .gear_detail {
  min-height: 130px;
  bottom:-30px;
}
.gear_detail .date {
  font-size: 9px;
  font-weight: 700;
}
.gear_detail .gear_tit {
  font-size: 15px;
  font-weight: 700;
}
.gear_detail .gear_area {
  font-size: 15px;
}
.gear_detail .gear_area ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.gear_detail .gear_area ul li {
  width: 50%;
  line-height: 1.2;
}
.page_gear_list > p {
  margin: 0 0 147px;
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .gear_detail {
    bottom: 35px;
  }
  .gear_detail .date {
    line-height: 1;
  }
  .gear_detail .gear_area {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .page_gear_list > ul > li {
    width: 100%;
    height: 360px;
    margin-bottom:150px;
  }
	.page_gear_list > ul > li:first-of-type {
		animation: fadeInLeft 1s cubic-bezier(0.1, -0.6, 0.2, 0) both;
	}
  .slider.slider_gear {
	height: 280px;
  }
  .page_gear_list > ul > li.new::before,
  #slider_rental .new::before {
    top: -30px;
    left: 0;
  }
  .detail .gear_detail {
    bottom: -80px;
    min-height:130px;
  }
}
@media screen and (max-width: 480px) {
  .page_gear_list > ul > li {
    width: 100%;
    height: 290px;
  }
  ul.slider.slider_gear {
  }
  .slider_gear .slick-prev, .slider_gear .slick-next {
    width: 20px;
    height: 20px;
  }
  .gear_detail {
    bottom: -50px;
    padding: 20px 16px 20px 65px;
    min-height:120px;
  }
  .detail .gear_detail {
  }
  .gear_detail .gear_tit {
    font-size: 12px;
  }
  .gear_detail .gear_area {
    font-size: 9px;
  }
}
/* gear link */
.detail .rental_category {
  margin-top:50px;
}
.rental_category ul {
  position: relative;
  width: 692px;
  height: 361px;
  margin: 0 auto 40px;
}
.rental_category ul li a {
  position: absolute;
  font-size: 15px;
  text-align: center;
  color: #646464;
  font-weight: 700;
}
@media screen and (min-width: 767px) {
  .rental_category ul li a:hover {
    opacity: .8;
  }
}
.rental_category ul li:first-of-type a {
  background: url("../img/page/rental/link_bg01.png") left top no-repeat;
  background-size: 100%;
  width: 172px;
  height: 198px;
  top: 0;
  left: 0;
  padding: 110px 0 0;
}
.rental_category ul li:nth-child(2) a {
  background: url("../img/page/rental/link_bg02.png") left top no-repeat;
  background-size: 100%;
  width: 198px;
  height: 172px;
  top: 0;
  left: 148px;
  padding: 110px 0 0 25px;
}
.rental_category ul li:nth-child(3) a {
  background: url("../img/page/rental/link_bg03.png") left top no-repeat;
  background-size: 100%;
  width: 198px;
  height: 172px;
  top: 0;
  right: 172px;
  padding: 110px 0 0 25px;
}
.rental_category ul li:nth-child(4) a {
  background: url("../img/page/rental/link_bg04.png") left top no-repeat;
  background-size: 100%;
  width: 198px;
  height: 172px;
  top: 0;
  right: -2px;
  padding: 110px 0 0 25px;
}
.rental_category ul li:nth-child(5) a {
  background: url("../img/page/rental/link_bg05_.png") left top no-repeat;
  background-size: 100%;
  width: 198px;
  height: 172px;
  bottom: 15px;
  left: 0;
  padding: 115px 21px 0px 0;
}
.rental_category ul li:nth-child(6) a {
  background: url("../img/page/rental/link_bg06_.png") left top no-repeat;
  background-size: 100%;
  width: 198px;
  height: 198px;
  bottom: 16px;
  left: 174px;
  padding: 140px 23px 0 0;
}
.rental_category ul li:nth-child(7) a {
  background: url("../img/page/rental/link_bg07.png") left top no-repeat;
  background-size: 100%;
  width: 198px;
  height: 198px;
  bottom: 16px;
  right: 146px;
  padding: 140px 26px 0 0;
}
.rental_category ul li:nth-child(8) a {
  background: url("../img/page/rental/link_bg08.png") left top no-repeat;
  background-size: 100%;
  width: 172px;
  height: 198px;
  bottom: 16px;
  right: -2px;
  padding: 140px 0 0 0;
}
.page_rental section.link h2 {
  font-size: 25px;
}
@media screen and (max-width: 767px) {
	.detail .rental_category {
		margin-top: 80px;
	}
  .rental_category ul {
    width: 468px;
    height: 900px;
    margin: 0 auto 213px;
  }
  .rental_category ul li:first-of-type a {
    background: url("../img/page/rental/link_bg01_sp.png") left top no-repeat;
    background-size: 100%;
    width: 222px;
    height: 257px;
    top: 0;
    left: 10px;
    padding: 145px 0 0;
  }
  .rental_category ul li:nth-child(2) a {
    background: url("../img/page/rental/link_bg02_sp.png") left top no-repeat;
    background-size: 100%;
    width: 258px;
    height: 223px;
    top: 0;
    left: inherit;
    right: 10px;
    padding: 145px 0 0 32px;
  }
  .rental_category ul li:nth-child(3) a {
    background: url("../img/page/rental/link_bg03_sp.png") left top no-repeat;
    background-size: 100%;
    width: 257px;
    height: 257px;
    top: 450px;
    right: inherit;
    left: 10px;
    padding: 148px 30px 0 0;
  }
  .rental_category ul li:nth-child(4) a {
    background: url("../img/page/rental/link_bg04_sp.png") left top no-repeat;
    background-size: 100%;
    width: 223px;
    height: 257px;
    top: 416px;
    right: 10px;
    padding: 180px 0 0 8px;
  }
  .rental_category ul li:nth-child(5) a {
    background: url("../img/page/rental/link_bg05_sp.png") left top no-repeat;
    background-size: 100%;
    width: 223px;
    height: 257px;
    top: 191px;
    right: 10px;
    left: inherit;
    bottom: inherit;
    padding: 180px 0 0 7px;
  }
  .rental_category ul li:nth-child(6) a {
    background: url("../img/page/rental/link_bg06_sp.png") left top no-repeat;
    background-size: 100%;
    width: 257px;
    height: 257px;
    bottom: inherit;
    left: 10px;
    top: 225px;
    padding: 147px 33px 0 0;
  }
  .rental_category ul li:nth-child(7) a {
    background: url("../img/page/rental/link_bg07_sp.png") left top no-repeat;
    background-size: 100%;
    width: 257px;
    height: 222px;
    bottom: inherit;
    right: inherit;
    left: 10px;
    top: 675px;
    padding: 156px 36px 0 0;
  }
  .rental_category ul li:nth-child(8) a {
    background: url("../img/page/rental/link_bg08_sp.png") left top no-repeat;
    background-size: 100%;
    width: 223px;
    height: 256px;
    bottom: inherit;
    right: 10px;
    top: 641px;
    padding: 190px 0 0 0;
  }
  .page_rental section.link h2 {
    font-size: 45px;
  }
}
@media screen and (max-width: 480px) {
  .rental_category ul {
    width: 358px;
    height: 720px;
    margin: 0 auto 123px;
  }
  .rental_category ul li:first-of-type a {
    width: 177.5px;
    height: 206px;
    left: 0px;
    padding: 115px 0 0;
  }
  .rental_category ul li:nth-child(2) a {
    width: 205.5px;
    height: 179px;
    right: 0px;
    padding: 115px 0 0 32px;
  }
  .rental_category ul li:nth-child(3) a {
    width: 205px;
    height: 207px;
    top: 359px;
    left: 0;
    padding: 112px 26px 0 0;
  }
  .rental_category ul li:nth-child(4) a {
    width: 178px;
    height: 208px;
    top: 331px;
    right: 0;
    padding: 140px 0 0 8px;
  }
  .rental_category ul li:nth-child(5) a {
    width: 178px;
    height: 205px;
    top: 152px;
    right: 0px;
    padding: 143px 0 0 7px;
  }
  .rental_category ul li:nth-child(6) a {
    width: 205px;
    height: 205px;
    left: 0px;
    top: 179px;
    padding: 122px 33px 0 0;
  }
  .rental_category ul li:nth-child(7) a {
    width: 204.5px;
    height: 182px;
    left: 0;
    top: 539px;
    padding: 126px 27px 0 0;
  }
  .rental_category ul li:nth-child(8) a {
    width: 178px;
    height: 207px;
    right: 0;
    top: 511px;
    padding: 147px 0 0 0;
  }
  .page_rental section.link h2 {
    font-size: 22px;
  }
}
/* page_gear */
.page_gear .bread {
  padding: 13px 0 18px;
}
.gear_img {
  text-align: center;
  margin: 0 0 28px;
}
.gear_img img {
  width: auto;
}
/* rental_archive */
.page_rental .slick-slider.pc {
  display: block !important;
}
.page_rental .slick-slider.sp {
  display: none !important;
}
.page_rental_mv {
  max-width: 100%;
  margin: 0 auto 78px;
}
.page_rental_mv.w300 {
  max-width: 300px;
}
.page_rental_mv .slick-slide {
  margin: 0 5px;
}
.page_rental_mv .slick-prev, .page_rental_mv .slick-next {
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 29px;
  height: 29px;
  color: transparent;
}
.page_rental_mv .slick-prev {
  left: 21%;
  background: url("../img/page/rental/prev.svg") left center no-repeat;
  background-size: 100%;
}
.page_rental_mv .slick-next {
  right: 21%;
  background: url("../img/page/rental/next.svg") left center no-repeat;
  background-size: 100%;
}
.page_rental_mv .slick-prev:before, .page_rental_mv .slick-next:before {}
.page_rental_mv .slick-list {
  /*padding: 0 20% 130px!important;*/
  padding: 0 25% 130px !important;
}
.page_rental_mv .slider_rental_li {
  transition: all .3s;
  transform: scale(0.7, 0.7);
}
.page_rental_mv .slider_rental_li.slick-active {
  transition: all .3s;
  transform: scale(1, 1);
}
.page_rental_mv .slider-item01 {
  background-image: url("../img/page/rental/mv01.png");
  background-size: 100%;
}
.page_rental_mv .slider-item02 {
  background-image: url("../img/page/rental/mv02.png");
  background-size: 100%;
}
.page_rental_mv .slider-item03 {
  background-image: url("../img/page/rental/mv03.png");
  background-size: 100%;
}
.page_rental_mv .slider-item04 {
  background-image: url("../img/page/rental/mv02.png");
  background-size: 100%;
}
.page_rental_mv .slider-item {
  position: relative;
}
.page_rental_mv .slider-item.new::before {
  position: absolute;
  content: "";
  display: block;
  background: url("../img/page/rental/new_icon.svg") left top no-repeat;
  background-size: 100%;
  width: 65px;
  height: 64px;
  top: 0;
  left: 20px;
}
.page_rental_mv .slider-item dl {
  width: 686px;
  position: absolute;
  right: -30px;
  bottom: -100px;
  background: url("../img/page/rental/bg_mv_tit.png") center center no-repeat;
  background-size: 100%;
  padding: 16px 16px 16px 125px;
  height: 154px;
}
.page_rental_mv .slider-item dl .date {
  font-size: 9px;
  font-weight: 700;
}
.page_rental_mv .slider-item dl .gear_tit {
  font-size: 15px;
  font-weight: 700;
}
.page_rental_mv .slider-item dl .gear_area ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page_rental_mv .slider-item dl .gear_area ul li {
  width: 50%;
  font-size: 15px;
}
.page_rental_mv .swiper-container {
  width: 100%;
  overflow:hidden;
}
.page_rental_mv > .swiper-container > .swiper-wrapper > .swiper-slide {
  transform: scale(0.8);
  transition: .7s;
  overflow:hidden;
}
.page_rental_mv > .swiper-container > .swiper-wrapper > .swiper-slide .swiper-slide,
.page_rental_mv > .swiper-container > .swiper-wrapper > .swiper-slide .noSlide {
  overflow:hidden;
  padding:0 50px;
}
.page_rental_mv > .swiper-container > .swiper-wrapper > .swiper-slide img {
  width: 100%;
}
.page_rental_mv > .swiper-container > .swiper-wrapper > .swiper-slide-active {
  z-index: 1;
  transform: scale(1);
}
.page_rental_mv .swiper-navigation-disabled .inner-swiper-container .swiper-button-next,
.page_rental_mv .swiper-navigation-disabled .inner-swiper-container .swiper-button-prev{
  display:block !important;
  z-index: 1;
  position: absolute;
  top: 35%;
  /*transform: translate(0, -50%);*/
  width: 29px;
  height: 29px;
  color: transparent;
}
.inner-swiper-container .swiper-button-prev::after,
.inner-swiper-container .swiper-button-next::after {
  content:none;
}
.inner-swiper-container .swiper-button-prev {
  left: 9%;
  background: url(../img/page/rental/prev.svg) left center no-repeat;
  background-size: 100%;
}
.inner-swiper-container .swiper-button-next {
  right: 10%;
  background: url(../img/page/rental/next.svg) left center no-repeat;
  background-size: 100%;
}
.swiper-slide-active .inner-swiper-container .swiper-button-prev {
  left: 8%;
}
.swiper-slide-active .inner-swiper-container .swiper-button-next {
  right: 8%;
}
/* .full-screen */
.slider_rental .slick-list {
  overflow: visible;
}
.slider_rental.slider {
  margin: 0 auto;
  height: 41vw;
}
.page_rental_mv ul.slider.slider_gear {
  /*height: 328px;*/
  height: auto;
  margin: 0 auto;
}
.page_rental_mv .slider_gear .slick-slide {
  /*height: 328px;*/
}
.page_rental_mv .slider_gear li .imgWrap {}
.page_rental_mv .slider_gear li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page_rental_mv .slider_gear .slick-prev {
  left: 3%;
}
.page_rental_mv .slider_gear .slick-next {
  right: 3%;
}
.page_rental_mv .gear_detail {
  right: -15px;
  bottom: 50px;
  padding: 30px 66px 30px 7vw;
}
.page_rental_mv .slider_gear .slick-list {
  padding: 0 !important;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {
  .page_rental_mv .slick-list {
    padding: 0 8% 130px !important;
  }
  .page_rental_mv .slick-prev {
    left: 10%;
  }
  .page_rental_mv .slick-next {
    right: 10%;
  }
  .page_rental_mv .slick-slide dl {
    width: 686px;
    position: absolute;
    right: -50px;
    bottom: -70px;
    background: url(../img/page/rental/bg_mv_tit.png) center center no-repeat;
    background-size: 95%;
    padding: 10px 16px 10px 125px;
    height: 154px;
  }
}
@media screen and (max-width: 767px) {
  .page_rental .rental_bg {
    background: url("../img/page/rental/bg_star_sp.png") center top no-repeat;
    background-size: 100%;
  }
  .page_rental .slick-slider.pc {
    display: none !important;
  }
  .page_rental .slick-slider.sp {
    display: block !important;
  }
  .page_rental_mv .slider-item {
    height: 395px;
    background-size: 95%;
    background-position: center top;
  }
  .page_rental_mv .slider-item.new::before {
    width: 55px;
    height: 54px;
    top: -20px;
    left: 0px;
  }
  .page_rental_mv .slider-item dl {
    width: 95%;
    right: 0;
    top: 48%;
    bottom: inherit;
    background: url(../img/page/rental/bg_mv_tit.png) right -8px center no-repeat;
    background-size: 100%;
    padding: 16px 0 16px 95px;
    height: 154px;
  }
  .page_rental_mv .slider-item dl .gear_area ul li {
    width: 30%;
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .page_rental h2 {
    font-size: 20px;
  }
  .page_rental .rental_lead {
    font-size: 10px;
    padding: 0 0 36px;
  }
  .page_rental_mv .slider-item {
    height: 285px;
    line-height: 1.2;
    margin: 0 0 40px;
  }
  .page_rental_mv .slider-item dl {
    width: 95%;
    right: 0;
    top: 48%;
    background-size: 100%;
    padding: 12px 0 13px 65px;
    height: 104px;
  }
  .page_rental_mv .slider-item dl .gear_area ul li {
    width: 50%;
  }
  .page_rental_mv .slider-item dl .date {
    margin: 0 0 5px;
  }
  .page_rental_mv .slider-item dl .gear_tit {
    font-size: 12px;
    margin: 0 0 5px;
  }
  .page_rental h3 {
    font-size: 20px;
    margin: 0 0 45px;
  }
}
/* page_cal */
.page_cal .inner {
  width: 965px;
}
.page_cal h2 {
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-shadow: 0px 0px 5px rgb(0 0 0 / 30%);
  padding: 52px 0 28px;
}
.page_cal .cal_list {
  display:grid;
  grid-template-columns:repeat(2, 46.6%);
  justify-content: flex-start;
  align-items:flex-start;
  column-gap:65px;
  row-gap:70px;
}
.page_cal .cal_list li{
  background-color: #fff;
  border-radius: 10px;
  padding: 16px 12px 30px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
.page_cal .cal_list li dl dt {
  display: grid;
  grid-template-columns: 1fr 60px;
  align-items: center;
  justify-content: space-between;
}
.page_cal .cal_list li dl dt .tit {
  height: 46px;
}
.page_cal .cal_list li dl dt .icon {
  height: 60px;
}
.page_cal .cal_list .calendarWrap {
  margin: 20px 0 30px;
}
.page_cal .cal_list .calendar .calendarInner {
  border-radius:30px;
  border:1px solid #474645;
  background:#f6f6f6;
  margin: 0 28px;
}
.page_cal .cal_list .calendar .calendarInner::after {
  display:block;
  content:"";
  height:25px;
}
.page_cal .cal_list table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  background:#fff;
}
.page_cal .cal_list caption {
  font-size:1.1rem;
  text-align:center;
}
.page_cal .cal_list th {
  border: 1px solid #fff;
  text-align: center;
  background: #4A4B4C;
  font-size:.875rem;
  color:#fff;
}
.page_cal .cal_list th.sun{
  background:#DB4A49;
}
.page_cal .cal_list th.sat{
  background:#455EA7;
}
.page_cal .cal_list td {
  border: 1px solid #474645;
  text-align: center;
}
.page_cal .cal_list td .cell {
  line-height:1;
  display:grid;
  grid-template-rows:1rem 1.8rem;
}
.page_cal .cal_list .date{
  padding:5px 5px 0;
  font-size:.75rem;
  text-align:left;
}
.page_cal .cal_list .mark{
  padding:3px 5px 5px;
  font-size:1.2rem;
  font-weight:900;
}
.page_cal .cal_list td.sat{
  background:rgba(69,94,167,.2);
}
.page_cal .cal_list td.sat .date{
  color:#455EA7;
}
.page_cal .cal_list td.sun,
.page_cal .cal_list td.holiday{
  background:rgba(219,74,73,.2);
}
.page_cal .cal_list td.sun .date,
.page_cal .cal_list td.holiday .date{
  color:#DB4A49;
}
.page_cal .cal_list tr th:first-child,
.page_cal .cal_list tr td:first-child {
  border-left:none;
}
.page_cal .cal_list tr th:last-child,
.page_cal .cal_list tr td:last-child {
  border-right:none;
}
.page_cal .cal_list .swiper-button-prev,
.page_cal .cal_list .swiper-button-next{
  width:20px;
  height:20px;
  z-index:1;
}
.page_cal .cal_list .swiper-button-prev{
  left:0;
}
.page_cal .cal_list .swiper-button-next{
  right:0;
}
.page_cal .cal_list .swiper-button-prev::after,
.page_cal .cal_list .swiper-button-next::after{
  display:block;
  content:"";
  width:20px;
  height:20px;
}
.page_cal .cal_list .swiper-button-prev::after{
  background:transparent url(../img/common/ico_prev.svg) no-repeat top left / cover;
}
.page_cal .cal_list .swiper-button-next::after{
  background:transparent url(../img/common/ico_next.svg) no-repeat top left / cover;
}
.page_cal .cal_list .none {
  color: #BAB6B7;
}
.page_cal .cal_list .few {
  color: #00378B;
}
.page_cal .cal_list .full {
  color: #00378B;
}
.page_cal .cal_list .btnList {
  display: flex;
  justify-content: center;
  align-items: stretch;
  row-gap: 20px;
  flex-wrap: wrap;
  width: 65%;
  margin:0 auto;
}
.page_cal .cal_list .btnList .btn {
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #fff;
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.16);
  height:4.5em;
  line-height:1.4;
}
.page_cal .cal_list .btnList .btn:hover {
  margin: 0;
}
.page_cal .cal_list .pink .btnList .btn {
  background-color: #DB978E;
}
.page_cal .cal_list .yellow .btnList .btn {
  background-color: #EBCC73;
}
.page_cal .cal_list .blue .btnList .btn {
  background-color: #6897CD;
}
.page_cal .cal_list .green .btnList .btn {
  background-color: #71AD6F;
}
.page_cal .cal_list .blueL .btnList .btn {
  background-color: #68B8B9;
}
@media screen and (min-width: 1024px) {
  .page_cal .cal_list .btnList .btn:hover {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 1024px) {
  .page_cal .inner {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .page_cal .cal_list {
    grid-template-columns:100%;
    row-gap:35px;
  }
  .page_cal .cal_list li dl dt {
    display:flex;
    padding-left:10px;
  }
  .page_cal .cal_list li dl dt .tit {
    width:auto;
    height: 9.7vw;
  }
  .page_cal .cal_list li dl dt .icon {
    width:15vw;
    height: 15vw;
  }
}
@media screen and (max-width: 480px) {
  .page_cal h2 {
    font-size: 20px;
  }
}
/* page_concept */
.page_concept .tit_box {
  padding: 460px 0 0;
  width: 749px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.page_concept h2 {
  margin: 0 0 30px;
}
.page_concept .concept_img .inner1200 {
  position: relative;
}
.page_concept .concept_img p {
  position: absolute;
  display: inline-block;
}
.page_concept .concept_img p.img00 {
  background: url(../img/page/concept/mv.png) center top no-repeat;
  background-size: 100%;
  top: -80px;
  left: 20%;
  transform: translate(-50%, 0);
  width: 749px;
  height: 686px;
}
.page_concept .concept_img p.img01 {
  background: url("../img/page/concept/img01.png") left top no-repeat;
  background-size: 100%;
  top: 576px;
  left: -90px;
  width: 451px;
  height: 377px;
}
.page_concept .concept_img p.img02 {
  background: url("../img/page/concept/img02.png") right top no-repeat;
  background-size: 100%;
  top: 651px;
  right: -110px;
  width: 447px;
  height: 480px;
}
.page_concept .toggle {
  margin: 160px 0 0;
  text-align: center;
}
.page_concept .ac {
  width: 312px;
}
.page_concept .ac-parent span:after {
  top: 22px;
  right: 22px;
  width: 29px;
  height: 29px;
  background: url(../img/page/concept/arrow.svg) no-repeat right top;
  background-size: 100%;
}
.page_concept .ac-parent.open span:after {
  background: url(../img/page/concept/arrow02.svg) no-repeat right top;
  background-size: 100%;
}
.page_concept .faq01 .ac-child {
  border-top: 1px solid #707070;
  padding: 17px 0;
}
.page_concept .faq01 .ac-child span.pc {
  display: inline-block;
}
.page_concept .faq01 .ac-child span.comingsoon {
  display: block;
  text-align:center;
}
.page_concept .faq01 .ac-child ul li {
  margin: 0 0 10px;
}
.page_concept .faq01 .ac-child ul li a {
  color: #6D6D6D;
}
.page_concept .faq01 .ac-child ul li a:hover {
  color: #000;
}
@media screen and (max-width: 1400px) {
  .page_concept .concept_img .inner1200 {
    width: 100%;
  }
  .page_concept .concept_img p.img01 {
    background: url("../img/page/concept/img01.png") left -90px top no-repeat;
    background-size: 100%;
    left: 0;
  }
  .page_concept .concept_img p.img02 {
    background: url("../img/page/concept/img02.png") right -110px top no-repeat;
    background-size: 100%;
    right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .page_concept .concept_img p.img00 {
    background: url(../img/page/concept/mv.png) right -80px top no-repeat;
    background-size: 100%;
    top: -80px;
    left: inherit;
    transform: none;
    width: 749px;
    height: 686px;
    right: 0;
  }
  .page_concept .concept_img p.img01 {
    background: url(../img/page/concept/img01.png) left -90px top 70px no-repeat;
    background-size: 80%;
    left: 0;
    width: 50%;
  }
  .page_concept .concept_img p.img02 {
    background: url(../img/page/concept/img02.png) right -90px top no-repeat;
    background-size: 80%;
    right: 0;
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .page_concept .toggle {
    margin: 70px 0 0;
  }
  .page_concept .tit_box {
    width: 100%;
    padding: 320px 0 0;
  }
  .page_concept .concept_img p.img00 {
    background: url(../img/page/concept/mv.png) right -40px top -40px no-repeat;
    background-size: 100%;
    width: 100%;
    left: inherit;
    transform: none;
  }
  .page_concept .tit_box h2 img {
    display: block;
    margin: 0 auto;
    width: 95%;
  }
  .page_concept .tit_box .txt img {
    display: block;
    margin: 0 auto;
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .page_concept .tit_box {
    padding: 228px 0 0;
  }
  .page_concept .concept_img p.img00 {
    background: url(../img/page/concept/mv.png) right -40px top no-repeat;
    background-size: 85%;
    top: -40px;
    height: 370px;
  }
  .page_concept .concept_img p.img01 {
    background: url(../img/page/concept/img01.png) left -70px top no-repeat;
    background-size: 100%;
    top: 377px;
    height: 177px;
  }
  .page_concept .concept_img p.img02 {
    background: url(../img/page/concept/img02.png) right -60px top no-repeat;
    background-size: 100%;
    top: 500px;
    height: 265px;
  }
  .page_concept .toggle {
    margin: 35px 0 0;
  }
  .page_concept .ac {
    margin: 0 auto 15px;
    width: 216px;
  }
  .page_concept .ac-parent span:after {
    top: 18px;
    right: 20px;
    width: 15px;
    height: 15px;
  }
  .page_concept .faq01 .ac-child a span.pc {
    display: none;
  }
}
/* page_faq */
.page_faq .inner {
  width: 690px;
  padding: 75px 0 0;
}
.page_faq h2 {
  text-align: center;
  color: #646464;
  font-weight: 700;
  font-size: 28px;
  margin: 0 0 45px;
}
.page_faq .faq_box {
  width: 690px;
  margin: 0 auto 130px;
}
.page_faq h3 {
  text-align: center;
  color: #646464;
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 32px;
}
.page_faq .ac {
  padding: 10px 45px;
}
.page_faq .ac-parent, .page_faq .ac-child {
  text-align: left;
}
.page_faq .ac-parent {
  font-size: 20px;
}
.page_faq .ac-parent p {
  padding: 10px 30px 10px 45px;
  position: relative;
  line-height: 1.5;
}
.page_faq .ac-parent span::before {
  position: absolute;
  content: "Q.";
  display: block;
  font-size: 25px;
  font-weight: 700;
  left: 0;
  top: 9px;
}
.page_faq .ac-parent span:after {
  background: url("../img/page/faq/open.svg") no-repeat right top;
  background-size: 100%;
  width: 24px;
  height: 14px;
  top: 22px;
  right: 0;
  transform: rotateZ(180deg);
}
.page_faq .ac-parent.open span:after {
  transform: rotate(0);
}
.page_faq .ac-child {
  font-size: 17px;
  font-weight: normal;
  border-top: 1px solid #707070;
  margin: 10px 0 0;
  padding: 10px 0 0;
  position: relative;
}
.page_faq .ac-child p {
  font-size: 17px;
  padding: 10px 0 10px 45px;
}
.page_faq .ac-child p.ans::before {
  position: absolute;
  content: "A.";
  display: block;
  font-size: 25px;
  color: #FF9200;
  font-weight: 700;
  left: 0;
  top: 9px;
}
@media screen and (max-width: 767px) {
  .page_faq .inner {
	width: 95%;
	padding: 105px 0 0;
  }
  .page_faq .faq_box {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .page_faq .inner {
    padding: 55px 0 0;
  }
  .page_faq h2 {
    font-size: 20px;
    margin: 0 0 32px;
  }
  .page_faq h3 {
    font-size: 17px;
    margin: 0 0 14px;
  }
  .page_faq .faq_box {
    margin: 0 auto 56px;
  }
  .page_faq .ac {
    padding: 0 22px;
  }
  .page_faq .ac-parent {
    font-size: 16px;
  }
  .page_faq .ac-parent span {
    line-height: 1.5;
  }
  .page_faq .ac-parent span::before {
    font-size: 18px;
  }
  .page_faq .ac-parent span:after {
    width: 18px;
    height: 14px;
    top: 16px;
  }
  .page_faq .ac-child p.ans::before {
    font-size: 12px;
    top: 7px;
  }
  .page_faq .ac-child {
    margin: 0;
    font-size: 10px;
    padding: 10px 0 10px;
  }
  .page_faq .ac-child p {
    font-size: 15px;
    padding: 0 0 0 25px;
    line-height: 1.5;
  }
}
/* others */
.page_others {
  padding-top: 80px;
}
.page_others .others {
  color: #646464;
  padding: 0 0 300px;
}
.page_others .others h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  padding: 52px 0 38px;
  margin: 0 0 14px;
}
.page_others .others .mv {
  margin: 0 auto 52px;
  width: 1022px;
}
.page_others .others .mv img {
  width: 100%;
}
.page_others .others .txt {
  margin: 0 0 63px;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .page_others {
    padding-top: 128px;
  }
  .page_others .others .mv {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .page_others {
    padding-top: 80px;
  }
  .page_others .others h2 {
    padding: 77px 0 61px;
    margin: 0;
  }
  .page_others .others .mv {
    overflow: hidden;
  }
  .page_others .others .mv img {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .page_others .others {
    padding: 10px 0 155px;
  }
  .page_others .others h2 {
    font-size: 18px;
    padding: 38px 0 30px;
  }
  .page_others .others .txt {
    font-size: 14px;
  }
}
/* others_staff */
@media screen and (max-width: 767px) {
  .page_others .others_staff .mv {
    background: url("../img/page/others/staff/mv.png") center top no-repeat;
    background-size: cover;
    width: auto;
    height: 412px;
  }
}
@media screen and (max-width: 480px) {
  .page_others .others_staff .mv {
    height: 256px;
    background: url("../img/page/others/staff/mv.png") center center no-repeat;
    background-size: cover;
    margin: 0 0 28px;
  }
}
/* others_regional  */
@media screen and (max-width: 767px) {
  .page_others .others_regional .mv {
    background: url("../img/page/others/regional/mv.png") center top no-repeat;
    background-size: cover;
    width: auto;
    height: 412px;
  }
  .page_others .others_regional .txt {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .page_others .others_regional .mv {
    height: 256px;
    background: url("../img/page/others/regional/mv.png") center center no-repeat;
    background-size: cover;
    margin: 0 0 28px;
  }
}
/* others_prevention  */
.page_others .preve_box.preve_staff {
  background: url("../img/page/others/prevention/bg01.png") center top no-repeat;
  background-size: 100%;
  width: 973px;
  height: 885px;
  padding: 50px 46px;
  margin: 0 auto;
}
.page_others .preve_box.preve_customer {
  background: url("../img/page/others/prevention/bg02.png") center top no-repeat;
  background-size: 100%;
  width: 973px;
  height: 838px;
  padding: 128px 46px 50px;
  margin: -110px auto 62px;
}
.page_others .preve_box h3 span{
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 49px;
}
.page_others .preve_box dl {
  margin: 0 0 60px;
}
.page_others .preve_box dt {
  margin: 0 0 16px;
}
.page_others .preve_box dt span {
  border-bottom: 1px solid #707070;
  font-size: 24px;
  font-weight: 700;
  padding: 0 0 11px;
}
.page_others .preve_box dd {
  justify-content: flex-start;
  align-items: center;
}
.page_others .preve_box dd .preve_sec_txt {
  margin: 0 34px 0 0;
  font-size: 19px;
}
.page_others .preve_box dd .preve_sec_txt .tab {
  display: none;
}
.page_others .preve_box dd .preve_sec_img img {
  width: auto;
}
@media screen and (max-width: 1024px) {
  .page_others .preve_box.preve_staff {
    width: 760px;
    height: 686px;
    padding: 30px 26px;
  }
  .page_others .preve_box.preve_customer {
    width: 760px;
    height: 658px;
    margin: -80px auto 62px;
    padding: 98px 46px 50px;
  }
  .page_others .preve_box h3 {
    font-size: 30px;
    margin: 0 0 19px;
  }
  .page_others .preve_box dl {
    margin: 0 0 25px;
  }
  .page_others .preve_box dt {
    margin: 0 0 10px;
  }
  .page_others .preve_box dt span {
    font-size: 20px;
    padding: 0 0 5px;
  }
  .page_others .preve_box dd .preve_sec_txt {
    font-size: 16px;
  }
  .page_others .preve_box dd .preve_sec_txt .tab {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .page_others .others_prevention .mv {
    background: url("../img/page/others/prevention/mv.png") center top no-repeat;
    background-size: cover;
    width: auto;
    height: 412px;
  }
  .page_others .preve_box.preve_staff {
    background: url("../img/page/others/prevention/bg01_sp.png") center top no-repeat;
    background-size: 100%;
    width: 480px;
    height: 710px;
    padding: 30px 30px;
    margin: 0 auto;
  }
  .page_others .preve_box.preve_customer {
    background: url("../img/page/others/prevention/bg02_sp.png") center top no-repeat;
    background-size: 100%;
    width: 480px;
    height: 688px;
    padding: 68px 30px 30px;
    margin: -93px auto 62px;
  }
  .page_others .preve_box h3 {
    font-size: 20px;
    margin: 0 0 10px;
  }
  .page_others .preve_box dl {
    margin: 0 0 10px;
  }
  .page_others .preve_box dt {
    margin: 0 0 5px;
  }
  .page_others .preve_box dt span {
    font-size: 16px;
  }
  .page_others .preve_box dd .preve_sec_txt {
    margin: 0 0 7px;
    font-size: 12px;
  }
  .page_others .preve_box dd .preve_sec_img {
    text-align: center;
  }
  .page_others .page .btn {
    margin: 0;
  }
}
@media screen and (max-width: 480px) {
  .page_others .others_prevention .inner {
    padding: 0;
  }
  .page_others .others_prevention .mv {
    height: 256px;
    background: url("../img/page/others/prevention/mv.png") center center no-repeat;
    background-size: cover;
    margin: 0 0 28px;
  }
  .page_others .preve_box h3 {
    font-size: 16px;
    margin: 0 0 0;
  }
  .page_others .preve_box.preve_staff {
    width: 350px;
    height: 490px;
    padding: 15px 30px;
  }
  .page_others .preve_box.preve_customer {
    width: 350px;
    height: 495px;
    margin: -39px auto 62px;
    padding: 48px 30px 30px;
  }
  .page_others .preve_box dt span {
    font-size: 12px;
  }
  .page_others .preve_box dd .preve_sec_txt {
    margin: 0 0 5px;
    font-size: 10px;
  }
  .page_others .preve_box .preve_sec_img .icon01 {
    width: 172px;
  }
  .page_others .preve_box .preve_sec_img .icon02 {
    width: 110px;
  }
  .page_others .preve_box .preve_sec_img .icon03 {
    width: 110px;
  }
  .page_others .preve_box .preve_sec_img .icon04 {
    width: 110px;
  }
  .page_others .preve_box .preve_sec_img .icon05 {
    width: 147px;
  }
  .page_others .preve_box .preve_sec_img .icon06 {
    width: 172px;
  }
}
/* others_sdgs */
.page_others .others_sdgs > .txt {
  width: 859px;
  margin: 0 auto 63px;
  letter-spacing: 0;
}
.others_sdgs .sdgs_goal_wrap .inner {
  width: 786px;
}
.others_sdgs .sdgs_goal_wrap .inner .sdgs_goal_box {
  width: 48%;
  margin: 0 0 88px;
}
.others_sdgs .sdgs_goal_wrap .inner .sdgs_goal_box h3 {
  font-size: 19px;
  text-align: center;
  font-weight: 700;
  margin: 0 auto 25px;
  min-height: 70px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.others_sdgs .sdgs_goal_wrap .inner .sdgs_goal_box .goal8 {
  margin: 0 0 88px;
}
.others_sdgs .sdgs_goal_wrap .inner .sdgs_goal_box dt {
  text-align: center;
  justify-content: center;
  margin: 0 0 27px;
}
.others_sdgs .sdgs_goal_wrap .inner .sdgs_goal_box dt img {
  width: 148px;
  height: 148px;
  padding: 0 2px;
}
.others_sdgs .sdgs_goal_wrap .inner .sdgs_goal_box dd {
  width: 272px;
  margin: 0 auto;
}
.others_sdgs .sdgs_goal_wrap .inner .sdgs_goal_box dd p {
  position: relative;
  font-size: 17px;
  font-weight: 700;
  padding: 0 0 0 20px;
}
.others_sdgs .sdgs_goal_wrap .inner .sdgs_goal_box dd p::before {
  position: absolute;
  content: "●";
  display: block;
  top: 0;
  left: -2px;
}
.page_others .others_sdgs .sdgs_area .inner {
  width: 786px;
  background: #fff;
  padding: 37px 32px 7px;
  margin: 0 auto 126px;
}
.page_others .others_sdgs .sdgs_area .inner h3 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 44px;
}
.others_sdgs .sdgs_area .sdgs_area_box {
  margin: 0 0 30px;
}
.others_sdgs .sdgs_area .sdgs_area_box ul.pc {
  display: flex;
  justify-content: flex-start;
  margin: 0 0 7px;
}
.others_sdgs .sdgs_area .sdgs_area_box ul li {
  width: 34px;
  margin: 0 9px 0 0;
}
.others_sdgs .sdgs_area .sdgs_area_box ul li img {
  width: 100%;
}
.others_sdgs .sdgs_area .sdgs_area_box .sdgs_area_img {
  width: 251px;
}
.others_sdgs .sdgs_area .sdgs_area_box .sdgs_area_img > img {
  width: 100%;
}
.others_sdgs .sdgs_area .sdgs_area_box .sdgs_area_txt {
  width: 436px;
}
.others_sdgs .sdgs_area .sdgs_area_box .sdgs_area_txt dl {
  font-size: 15px;
  font-weight: 600;
}
.others_sdgs .sdgs_area .sdgs_area_box .sdgs_area_txt dt {
  margin: 0 0 5px;
}
.others_sdgs .sdgs_area .sdgs_area_box .sdgs_area_txt dd {
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .page_others .others_sdgs > .txt {
    width: 80%;
  }
  .page_others .others_sdgs .sdgs_goal_wrap .inner, .page_others .others_sdgs .sdgs_area .inner {
    width: 95%;
  }
  .others_sdgs .sdgs_area .sdgs_area_box .sdgs_area_img {
    width: 35%;
  }
  .others_sdgs .sdgs_area .sdgs_area_box .sdgs_area_img img {
    width: 100%;
  }
  .others_sdgs .sdgs_area .sdgs_area_box .sdgs_area_txt {
    width: 60%;
  }
  .others_sdgs .sdgs_area .sdgs_area_box .sdgs_area_txt dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .page_others .others_sdgs .mv {
    background: url("../img/page/others/sdgs/mv.png") center top no-repeat;
    background-size: cover;
    width: auto;
    height: 412px;
  }
  .page_others .others_sdgs > .txt {
    width: 95%;
	text-align: left;
  }
  .others_sdgs .sdgs_goal_wrap .inner .sdgs_goal_box {
    width: 80%;
    margin: 0 auto 168px;
  }
  .others_sdgs .sdgs_goal_wrap .inner .sdgs_goal_box h3 {
    font-size: 30px;
    margin: 0 0 39px;
    min-height: inherit;
  }
  .others_sdgs .sdgs_goal_wrap .inner .sdgs_goal_box dt img {
    width: 200px;
    height: 200px;
  }
  .others_sdgs .sdgs_goal_wrap .inner .sdgs_goal_box dd {
    width: 80%;
  }
  .others_sdgs .sdgs_goal_wrap .inner .sdgs_goal_box dd p {
    font-size: 20px;
  }
  .page_others .others_sdgs .sdgs_area .inner h3 {
    font-size: 28px;
  }
  .others_sdgs .sdgs_area .sdgs_area_box {
    margin: 0 0 91px;
  }
  .others_sdgs .sdgs_area .sdgs_area_box .sdgs_area_img {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .others_sdgs .sdgs_area .sdgs_area_box .sdgs_area_img > img {
    width: 53%;
    display: block;
    margin: 0 15px 0 0;
  }
  .others_sdgs .sdgs_area .sdgs_area_box ul.pc {
    display: none;
  }
  .others_sdgs .sdgs_area .sdgs_area_box ul.sp {
    display: flex;
    justify-content: flex-start;
    width: 40%;
    margin: 0;
  }
  .others_sdgs .sdgs_area .sdgs_area_box ul li {
    width: 40%;
    margin: 0 12px 9px 0;
  }
  .others_sdgs .sdgs_area .sdgs_area_box ul li:nth-last-child(2), .others_sdgs .sdgs_area .sdgs_area_box ul li:last-of-type {
    margin: 0 12px 0 0;
  }
  .others_sdgs .sdgs_area .sdgs_area_box ul li img {
    width: 100%;
  }
  .others_sdgs .sdgs_area .sdgs_area_box .sdgs_area_txt {
    width: 100%;
    margin: 19px 0 0;
  }
  .others_sdgs .sdgs_area .sdgs_area_box .sdgs_area_txt dt {
    font-size: 28px;
  }
  .others_sdgs .sdgs_area .sdgs_area_box .sdgs_area_txt dd {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .page_others .others_sdgs .mv {
    height: 256px;
  }
  .others_sdgs .sdgs_goal_wrap .inner .sdgs_goal_box {
    width: 95%;
    margin: 0 auto 88px;
  }
  .others_sdgs .sdgs_goal_wrap .inner .sdgs_goal_box h3 {
    font-size: 15px;
    margin: 0 0 20px;
  }
  .others_sdgs .sdgs_goal_wrap .inner .sdgs_goal_box dt img {
    width: 120px;
    height: 120px;
  }
  .others_sdgs .sdgs_goal_wrap .inner .sdgs_goal_box dd {
    width: 95%;
  }
  .others_sdgs .sdgs_goal_wrap .inner .sdgs_goal_box dd p {
    font-size: 14px;
  }
  .page_others .others_sdgs .sdgs_area .inner {
    padding: 37px 20px 7px;
  }
  .page_others .others_sdgs .sdgs_area .inner h3 {
    font-size: 14px;
    margin: 0 0 20px;
  }
  .others_sdgs .sdgs_area .sdgs_area_box {
    margin: 0 0 45px;
  }
  .others_sdgs .sdgs_area .sdgs_area_box ul li {
    width: 38%;
    margin: 0 10px 8px 0;
  }
  .others_sdgs .sdgs_area .sdgs_area_box ul li:nth-last-child(2), .others_sdgs .sdgs_area .sdgs_area_box ul li:last-of-type {
    margin: 0 10px 0 0;
  }
  .others_sdgs .sdgs_area .sdgs_area_box .sdgs_area_txt {
    margin: 10px 0 0;
  }
  .others_sdgs .sdgs_area .sdgs_area_box .sdgs_area_txt dt {
    font-size: 14px;
  }
  .others_sdgs .sdgs_area .sdgs_area_box .sdgs_area_txt dd {
    font-size: 10px;
  }
}
/* contact / recruit */
.page_contact .page .inner, .page_recruit .page .inner {
  width: 1011px;
  padding: 25px 0 0;
}
.page_contact .form_box, .page_recruit .form_box {
  background: #fff;
  border-radius: 15px;
  padding: 27px 32px 77px;
}
.page_contact .form_box {
	margin: 50px 0 0;
}
.page_contact section h2, .page_recruit section h2 {
  padding: 25px 0 0;
  font-size: 35px;
  font-weight: 700;
  color: #646464;
  text-align: center;
  text-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
}
.page_recruit .bread {
  padding: 13px 0 57px;
}
.form_box .contact_position {
  margin: 0 0 45px;
}
.form_box .contact_position li {
  background: #D4D5D5;
  padding: 24px 0 24px 45px;
  position: relative;
  color: #5F5E5E;
  font-size: 20px;
  font-weight: 700;
  width: 33%;
}
.form_box .contact_position li::before {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
  top: 0;
  left: 0;
  border-width: 42.5px 0px 42.5px 30px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}
.form_box .contact_position li:first-of-type::before {
  display: none;
}
.form_box .contact_position li::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 42px 0px 42px 30px;
  border-color: transparent transparent transparent #D4D5D5;
  right: -29.7px;
  top: 0;
  z-index: 2;
}
.mw_wp_form_input .form_box .contact_position li:first-of-type, .mw_wp_form_confirm .form_box .contact_position li:nth-of-type(2), .form_box .contact_position li.active {
  background: #BF1F28;
  color: #fff;
}
.mw_wp_form_input .form_box .contact_position li:first-of-type::after, .mw_wp_form_confirm .form_box .contact_position li:nth-of-type(2)::after, .form_box .contact_position li.active::after {
  border-color: transparent transparent transparent #BF1F28;
}
.form_box .contact_position li:last-of-type::after, .form_box .contact_position li:last-of-type.active::after {
  display: none;
}
.form_box .lead {
  font-size: 15px;
  margin: 0 0 40px;
}
.page_contact .form_box h3,
.page_recruit .form_box h3 {
  margin: 0 0 30px;
  text-align: left;
	font-weight: normal;
}
.page_contact .form_box h3 span,
.page_recruit .form_box h3 span {
  font-size: 20px;
  border-left: 7px solid #BF1F28;
  padding: 0 0 15px 15px;
}
.form_box table {
  border: 1px solid #1A1311;
  width: 100%;
  margin: 0 0 70px;
  table-layout: fixed;
}
.form_box table th, .form_box table td {
  padding: 21px 15px 18px 15px;
}
.form_box table th {
  background: #FFF1E2;
  border-bottom: 1px solid #1A1311;
  border-right: 1px solid #1A1311;
  font-size: 15px;
  font-weight: normal;
  width: 25%;
  position: relative;
}
.form_box table td {
  border-bottom: 1px solid #1A1311;
  width: 75%;
}
.form_box table tr:last-of-type th, .form_box table tr:last-of-type td {
  border-bottom: none;
}
.form_box table th span {
  position: absolute;
  right: 0.5em;
  padding: 0.1em 0.6em 0.2em;
  font-size: 12px;
  color: #fff;
  background: #8E8E8F;
  top: 20px;/*
  top: 50%;
  transform: translateY(-50%);*/
}
.form_box table th span.required {
  background: #BF1F28;
}
.mw_wp_form_input .inputHide, .mw_wp_form_confirm .confirmHide {
  display: none;
}
/* form ================= */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  display: inline-block;
  width: auto;
  padding: 10px;
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  width: 100%;
}
input[type="text"].w45 {
  width: 45%;
  margin: 0px 5px 0 0;
}
input[type="text"]::placeholder, input[type="email"]::placeholder, input[type="tel"]::placeholder, textarea::placeholder, select::placeholder {
  color: #A6A7A7;
}
input[type="text"] {
  margin: 0 10px 0 0;
}
input[type="checkbox"] {
  margin: 5px 10px;
}
.submit_txt {
  text-align: center;
  margin: 0 0 50px;
}
.submit_area {
  text-align: center;
}
.submit_area li {
  display: inline-block;
}
.submit_area .btn-submit, .submit_area .back {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  position: relative;
}
.submit_area .btn-submit input, .submit_area .back input {
  background-color: #BF1F28;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  border: none;
  border-radius: 50px;
  padding: 28px 86px 30px;
  transition: all 1s;
}
.submit_area .back input {
  background-color: #ccc;
}
.submit_area .btn-submit input:hover {
  background-color: #9b1219;
}
.submit_area .back input:hover {
  background-color: #eee;
}
.submit_area .btn-submit::before, .submit_area .back::before {
  position: absolute;
  display: block;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  right: 42px;
  top: 50%;
  transform: translate(0, -50%);
  transition: .3s all;
}
.submit_area .back::before {
  right: auto;
  left: 42px;
  top: 50%;
  transform: translate(0, -50%) rotate(180deg);
}
/* confirm */
.form_box table td p {
  margin: 0 0 10px;
}
.form_box .privacy_check {
  background: #E9F4FB;
  position: relative;
  padding: 20px 10px;
}
.form_box .privacy_check .required {
  position: absolute;
  left: 10px;
  padding: 0.1em 0.6em 0.2em;
  font-size: 12px;
  color: #fff;
  background: #BF1F28;
}
.submit_area {
  position: relative;
}
.submit_area .back a {
  position: absolute;
  left: 60px;
  text-decoration: underline;
  top: 50%;
  transform: translate(0, -50%);
}
.submit_area .back a:hover {
  text-decoration: none;
}
.comlete_txt {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  color: #646464;
  margin: 78px 0 78px;
}
@media screen and (max-width: 1024px) {
  .page_contact .page .inner, .page_recruit .page .inner {
    width: 95%;
	padding: 0;
  }
  input[type="text"], input[type="email"], input[type="tel"] {
		width: 100%
  }
  input[type="text"].w20 {
    width: 20%;
    margin: 0px 5px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .page_contact section h2, .page_recruit section h2 {
    font-size: 40px;
  }
  .form_box .contact_position li {
    padding: 20px 0 20px 25px;
    font-size: 16px;
  }
  .form_box .contact_position li::before {
    border-width: 35.5px 0px 33.5px 20px;
    right: -19.7px;
  }
  .form_box .contact_position li::after {
    border-width: 35px 0px 34px 20px;
    right: -19.7px;
  }
  .form_box table th {
    width: 40%;
  }
  .form_box table td {
    width: 60%;
  }
  input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    width: 100%;
  }
  .w45 {
    width: 45%;
    margin: 0px 5px 0 0;
  }
  .w20 {
    width: 20%;
    margin: 0px 5px 0 0;
  }
  .submit_area .back {
	margin: 0 0 10px;
  }
  .submit_area .back a {
    display: block;
    text-align: center;
    position: inherit;
    left: inherit;
    top: inherit;
  }
  .page_contact .page p .btn, .page_recruit .page p .btn {
    margin: 115px 0 0;
  }
	.submit_area .back::before {
		right: inherit;
		left: 75px;
	}
	.submit_area .btn-submit::before {
		right: 75px;
	}
}
@media screen and (max-width: 480px) {
  .page_contact .form_box, .page_recruit .form_box {
    padding: 53px 14px 35px;
  }
  .page_contact section h2, .page_recruit section h2 {
    font-size: 20px;
    padding: 0 0 0;
  }
  .form_box .contact_position {
    margin: 0 0 20px;
  }
  .form_box .contact_position li {
    padding: 10px 0 10px 25px;
    font-size: 10px;
  }
  .form_box .contact_position li::after {
    border-width: 19px 0px 19px 15px;
    right: -14.7px
  }
  .form_box .contact_position li::before {
    border-width: 19px 0px 19px 15px;
  }
  .form_box .lead {
    text-align: center;
    font-size: 10px;
    margin: 0 0 25px;
  }
  .page_contact .form_box h3,
  .page_recruit  .form_box h3 {
    margin: 0 0 15px;
  }
  .page_contact .form_box h3 span,
  .page_recruit .form_box h3 span {
    font-size: 13px;
    padding: 0 0 10px 10px;
  }
  .form_box table {
    margin: 0 0 25px;
  }
  .form_box table th, .form_box table td {
    font-size: 10px;
    padding: 8px 7px 8px 7px;
  }
  .form_box table th span {
    position: inherit;
    display: inline-block;
    margin: 3px 0 0 4px;
    font-size: 8px;
    transform: translateY(0);
	top: inherit;
  }
  .submit_txt {
    font-size: 10px;
    margin: 0 0 20px;
  }
  .submit_area .btn-submit, .submit_area .back {
	 width: 100%;
  }
  .submit_area .btn-submit input,
  .submit_area .back input {
    padding: 16px 20px 18px;
    width: 70%;
    font-size: 12px;
  }
  .submit_area .back a {
    font-size: 10px;
    margin: 0 0 10px;
  }
  .form_box .privacy_check .required {
    font-size: 8px;
  }
  .comlete_txt {
    font-size: 10px;
    margin: 45px 0 15px;
  }
  .page_contact .page p .btn, .page_recruit .page p .btn {
    margin: 57px 0 0;
  }
}
@media screen and (max-width: 380px) {
  .submit_area .btn-submit::before {
    right: 55px;
  }
}

/* privacypolicy */
.privacypolicy .inner {
  width: 690px;
  color: #000000;
  padding:75px 0 0 0;
}
.privacypolicy h2 {
  text-align: center;
  font-size: 28px;
  color: #000000;
  font-weight: 700;
  margin: 0 0 87px;
}
.privacypolicy .pri_box {
  margin: 0 auto 138px;
  font-size: 20px;
  width: 690px;
}
.privacypolicy h3 {
  text-align: center;
  color: #000000;
  font-weight: 700;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .privacypolicy .page .inner {
    width: 95%;
  }
}
@media screen and (max-width: 480px) {
  .privacypolicy .inner {
    padding:35px 0 0 0;
  }
  .privacypolicy h2 {
    font-size: 20px;
    margin: 0 0 63px;
  }
  .privacypolicy .pri_box {
    width: 95%;
    margin: 0 auto 66px;
    font-size: 10px;
  }
  .privacypolicy h3 {
    font-size: 12px;
    margin: 0 0 15px;
  }
}
/* area_page ================= */
/* common */
.area_page .mv_area {
  margin: 0 0 66px;
  pointer-events: auto;
}
.area_page .mv_area .inner1200 {
  background: url("../img/area/common/sch_bg.svg") left top 23px no-repeat;
  background-size: 755px;
}
.area_page .mv_area .mv_img {
  width: 65%;
  position: relative;
}
.area_page .mv_area .mv_img h2 {
  position: absolute;
  top: 215px;
  right: 40px;
}
.area_page .mv_area .mv_img .slider {
  height: 620px;
}
.area_page .mv_area .mv_img p, .area_page .mv_area .mv_img .slider-item {
  padding: 170px 40px 50px 0;
}
.area_page .mv_area .mv_img p img, .area_page .mv_area .mv_img .slider-item img {
  width: 100%;
}
.area_page .mv_area .mv_img p img.sp {
  display: none;
}
.area_page .mv_area .mv_info {
  width: 33%;
  margin: 80px 0 0;
}
.area_page .mv_area .mv_info dl {
  background: url("../img/area/common/mv_icon.svg") left bottom no-repeat;
  padding: 0 0 0 117px;
  margin: 0 0 65px;
}
.page_color_pink .area_page .mv_area .mv_info dl {
  background: url("https://campiece.com/wp/wp-content/uploads/2022/05/icon_minamiashigara.svg") left bottom no-repeat;
  background-size: 97px 97px;
}
.page_color_green .area_page .mv_area .mv_info dl {
  background: url("https://campiece.com/wp/wp-content/uploads/2022/05/area_linkico04.svg") left bottom no-repeat;
  background-size: 97px 97px;
}
.page_color_yellow .area_page .mv_area .mv_info dl {
  background: url("https://campiece.com/wp/wp-content/uploads/2022/05/area_linkico02.svg") left bottom no-repeat;
  background-size: 97px 97px;
}
.page_color_blueL .area_page .mv_area .mv_info dl {
  background: url("https://campiece.com/wp/wp-content/uploads/2022/05/kasumigaura_mark.png") left bottom no-repeat;
  background-size: 97px 97px;
}
.area_page .mv_area .mv_info dl dt {
  font-size: 29px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 5px;
}
.area_page .mv_area .mv_info dl dd {
  background-color: #fff;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px;
  padding: 10px;
}
.area_page .mv_area .mv_info .temp {
  display: flex;
  justify-content: flex-start;
}
.area_page .mv_area .mv_info .temp .min {
  margin-left: 10px;
}
.area_page .mv_area .mv_info dd .red {
  color: #FF5656;
}
.area_page .mv_area .mv_info .mv_txt {
  font-weight: 700;
  color: #fff;
  font-size: 20px;
}
.area_page section h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0px 0px 5px rgb(0 0 0 / 30%);
  margin: 0 0 30px;
}
@media screen and (max-width: 1200px) {
  .area_page .mv_area .inner1200 {
    background: url("../img/area/common/sch_bg.svg") left top 23px no-repeat;
    background-size: 63%;
  }
  .area_page .mv_area .mv_img h2 {
    top: 205px;
  }
}
@media screen and (max-width: 1024px) {
  .area_page .mv_area .inner1200 {
    background-size: 60%;
  }
  .area_page .mv_area .mv_img h2 {
    top: 165px;
    right: 80px;
  }
  .area_page .mv_area .mv_img p, .area_page .mv_area .mv_img .slick-slide {
    padding: 150px 80px 30px 0;
  }
  .area_page .mv_area .mv_info dl {
    padding: 0;
    background: none;
    margin: 0 0 25px;
  }
  .area_page .mv_area .mv_info {
    width: 34%;
    margin: 20px 0 0;
  }
  .page_color_pink .area_page .mv_area .mv_info dl, .page_color_green .area_page .mv_area .mv_info dl, .page_color_yellow .area_page .mv_area .mv_info dl, .page_color_blueL .area_page .mv_area .mv_info dl {
    background: none;
  }
  .area_page .mv_area .mv_img::before {
    position: absolute;
    display: block;
    content: "";
    width: 97px;
    height: 97px;
    top: 90px;
    left: -40px;
    z-index: 5;
  }
  .page_color_pink .area_page .mv_area .mv_img::before {
    background: url("https://test2022.campiece.com/wp/wp-content/uploads/2022/05/icon_minamiashigara.svg") left bottom no-repeat;
    background-size: 100%;
  }
  .page_color_green .area_page .mv_area .mv_img::before {
    background: url("https://test2022.campiece.com/wp/wp-content/uploads/2022/05/area_linkico04.svg") left bottom no-repeat;
    background-size: 100%;
  }
  .page_color_yellow .area_page .mv_area .mv_img::before {
    background: url("https://test2022.campiece.com/wp/wp-content/uploads/2022/05/area_linkico02.svg") left bottom no-repeat;
    background-size: 100%;
  }
}
@media screen and (max-width: 864px) {
  .area_page .mv_area .mv_img h2 {
    top: 132px;
    right: 60px;
  }
  .area_page .mv_area .mv_img p, .area_page .mv_area .mv_img .slick-slide {
    padding: 115px 60px 30px 10px;
  }
}
@media screen and (max-width: 767px) {
  .area_page .mv_area .inner1200 {
    background: none;
    background-size: inherit;
    position: relative;
  }
  .area_page .mv_area .inner1080 {
    width: 100%;
  }
  .area_page .mv_area .mv_img p img.pc {
    display: none;
  }
  .area_page .mv_area .mv_img p img.sp {
    display: block;
  }
  .area_page .mv_area .mv_img {
    width: 480px;
    background: url(../img/area/common/sch_bg_sp.svg) left top 40px no-repeat;
    background-size: 100%;
    margin: 0 auto;
  }
  .area_page .mv_area .mv_img::before {
    left: 0;
  }
  .area_page .mv_area .mv_img h2 {
    top: 180px;
    right: 20px;
  }
  .area_page .mv_area .mv_img .slider {
    width: 480px;
    height: 720px;
  }
  .area_page .mv_area .mv_img p, .area_page .mv_area .mv_img .slick-slide {
    padding: 170px 15px 15px;
    margin: 0 0 15px;
    position: relative;
  }
  .area_page .mv_area .mv_img p::before {
    position: absolute;
    content: "";
    display: block;
    width: 132px;
    height: 132px;
    top: 85px;
    left: 7px;
  }
  /* エリア別 */
  .page_color_pink .area_page .mv_area .mv_img p::before {
    background: url("../img/area/common/icon_mv_pink.svg") left top no-repeat;
    background-size: 100%;
  }
  .page_color_yellow .area_page .mv_area .mv_img p::before {
    background: url("../img/area/common/icon_mv_yellow.svg") left top no-repeat;
    background-size: 100%;
  }
  .page_color_green .area_page .mv_area .mv_img p::before {
    background: url("../img/area/common/icon_mv_green.svg") left top no-repeat;
    background-size: 100%;
  }
  .page_color_blueL .area_page .mv_area .mv_img p::before {
    background: url("../img/area/common/icon_blueL.svg") left top no-repeat;
    background-size: 100%;
  }
  .page_color_blue .area_page .mv_area .mv_img p::before {
    background: url("../img/area/common/icon_mv_blue.svg") left top no-repeat;
    background-size: 100%;
  }
  .area_page .mv_area .mv_info {
    width: 100%;
    margin: 0;
  }
  .area_page .mv_area .mv_info dl {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    padding: 0;
    margin: 0;
  }
  .area_page .mv_area .mv_info dl dt {
    font-size: 16px;
  }
  .area_page .mv_area .mv_info dl dd {
    font-size: 10px;
    border-radius: 5px;
    margin: 0 0 5px;
    padding: 5px 10px;
  }
  .area_page .mv_area .mv_info .mv_txt {
    font-size: 15px;
    text-align: center;
    padding: 0 15px;
    text-shadow: 0px 0px 5px rgb(0 0 0 / 30%);
  }
}
@media screen and (max-width: 480px) {
  .area_page .mv_area {
    margin: 0 0 10px;
	padding: 10px 0 0;
  }
  .area_page section h2 {
    font-size: 22px;
    margin: 0 0 20px;
  }
  .area_page .mv_area .mv_img {
    width: 350px;
    margin: 0 auto;
  }
  .area_page .mv_area .mv_img h2 {
    top: 140px;
    right: 20px;
  }
  .page_color_yellow .area_page .mv_area .mv_img h2 {
    right: -7px;
  }
  .page_color_yellow .area_page .mv_area .mv_img h2 img {
    width: 90%;
  }
  .area_page .mv_area .mv_img .slider {
    width: 350px;
    height: 550px;
  }
  .area_page .mv_area .mv_img p, .area_page .mv_area .mv_img .slick-slide {
    padding: 145px 15px 15px;
  }
  .area_page .mv_area .mv_img p::before {
    width: 80px;
    height: 80px;
    top: 110px;
    left: 7px;
  }
}
/* area_map */
.area_page .area_map {
  margin: 0 0 100px;
  padding: 100px 0 0;
}
.area_page .area_map .map_wrap {
  background: #fff;
  border-radius: 30px;
  padding: 20px;
  width: 1011px;
  margin: 0 auto;
}
.area_page .area_map .map_wrap .flexL {
  width: 60%;
}
.area_page .area_map .map_wrap .flexL img {
  width: 100%;
}
.area_page .area_map .map_wrap .flexR {
  width: 35%;
}
.area_page .area_map .map_wrap .flexR > dl {
  color: #646464;
  margin: 0 0 40px;
}
.area_page .area_map .map_wrap .flexR > dl:last-of-type {
  margin: 0;
}
.area_page .area_map .map_wrap .flexR .map_info_tit {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 5px;
}
.area_page .area_map .map_wrap .flexR dd {
  font-size: 13px;
}
.area_page .area_map .map_wrap .flexR .map_info01 .map_info_tit {
  border-bottom: 1px solid #106AB1;
}
.area_page .area_map .map_wrap .flexR .map_info02 .map_info_tit {
  border-bottom: 1px solid #D85B55;
}
.area_page .area_map .map_wrap .flexR .map_info03 .map_info_tit {
  border-bottom: 1px solid #119E93;
}
.area_page .area_map .map_wrap .flexR .map_info03 dd dl dt {
  width: 30%;
}
.area_page .area_map .map_wrap .flexR .map_info03 dd dl dd {
  width: 70%;
}
@media screen and (max-width: 1200px) {
  .area_page .area_map .map_wrap {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .area_page .area_map .map_wrap {
    border-radius: 15px;
    padding: 15px;
  }
  .area_page .area_map .map_wrap .flexL, .area_page .area_map .map_wrap .flexR {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .area_page .area_map {
    margin: 0 0 16px;
	padding: 70px 0 0;
  }
  .area_page .area_map .map_wrap .flexR > dl {
    font-size: 11px;
    margin: 0 0 10px;
  }
  .area_page .area_map .map_wrap .flexR .map_info_tit {
    font-size: 13px;
  }
  .area_page .area_map .map_wrap .flexR dd {
    font-size: 11px;
  }
}
/* area_access */
.area_page .area_access {
  margin: 0 0 146px;
  padding: 100px 0 0;
}
.area_page .area_access h3 {
  margin: 0 0 5px;
}
.area_page .area_access h3 img {
  width: 208px;
}
.area_page .area_access .access_wrap {
  background: #fff;
  border-radius: 30px;
  padding: 20px 45px;
  width: 100%;
  margin: 0 auto;
}
.area_page .area_access .access_wrap .flexL {
  width: 38%;
  color: #646464;
}
.area_page .area_access .access_wrap .flexL .adress {
  font-size: 12px;
  font-weight: 700;
}
.area_page .area_access .access_wrap .flexL .tel a {
  font-size: 15px;
  font-weight: 700;
  color: #646464;
}
.area_page .area_access .access_wrap .flexL dl {
  margin: 0 0 6px;
}
.area_page .area_access .access_wrap .flexL .access_info_tit {
  font-size: 13px;
  font-weight: 700;
}
.area_page .area_access .access_wrap .flexL .access_info01 .access_info_tit {
  border-bottom: 1px solid #106AB1;
}
.area_page .area_access .access_wrap .flexL .access_info02 .access_info_tit {
  border-bottom: 1px solid #D85B55;
}
.area_page .area_access .access_wrap .flexL .access_info03 .access_info_tit {
  border-bottom: 1px solid #119E93;
}
.area_page .area_access .access_wrap .flexL dd {
  font-size: 11px;
}
.area_page .area_access .access_wrap .flexR {
  width: 60%;
  position: relative;
  min-height: 270px;
}
.area_page .area_access .access_wrap .flexR img {
  width: 100%;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 767px) {
  .area_page .area_access .access_wrap {
    position: relative;
    padding: 390px 15px 20px;
    border-radius: 15px;
  }
  .area_page .area_access .access_wrap .flexL {
    width: 100%;
  }
  .area_page .area_access .access_wrap .flexR {
    position: inherit;
    min-height: inherit;
  }
  .area_page .area_access .access_wrap .flexR img {
    top: 0;
    bottom: inherit;
    left: 0;
    border-radius: 15px 15px 0 0;
  }
  .area_page .area_access .access_wrap .flexL dl {
    margin: 0 0 10px;
  }
}
@media screen and (max-width: 480px) {
  .area_page .area_access {
    margin: 0 0 66px;
	padding: 70px 0 0;
  }
  .area_page .area_access .access_wrap {
    padding: 240px 15px 20px;
  }
  .area_page .area_access h3 img {
    width: 100%;
  }
}
/* area_news */
/* area_news_archive */
/* area_news_single*/
.area_page .area_news {
  margin: 0 auto 146px;
}
.area_news_archive {
  padding: 52px 0 0;
}
/* area_content */
.area_page .top_content, .area_page .top_content .inner1080 {
  background: none;
  height: inherit;
  padding: 0;
}
.area_page .top_content {
  margin: 0 auto 225px;
}
.area_page .top_content h2 {
  margin: 0 0 97px;
}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 767px) {
  .area_page .top_content {
    margin: 0 0 95px;
  }
  .area_page .top_content h2 {
    margin: 0 0 25px;
  }
  .area_page .top_content h3 {
    display: none;
  }
  .area_page .top_content ul li {
    margin: 0 0 25px;
  }
  .area_page .top_content ul li dl {
    background: #fff;
    border-radius: 15px;
    top: inherit;
  }
  .area_page .top_content ul li:first-of-type dl dt::after, .area_page .top_content ul li:nth-child(2) dl dt::after, .area_page .top_content ul li:nth-child(3) dl dt::after {
    display: none;
  }
  .area_page .top_content ul li:first-of-type dl dt .area_page .top_content ul li:nth-child(2) dl dt .area_page .top_content ul li:nth-child(3) dl dt {
    position: absolute;
    top: 0;
    left: 0;
  }
  .area_page .top_content ul li:first-of-type dl dt img, .area_page .top_content ul li:nth-child(2) dl dt img, .area_page .top_content ul li:nth-child(3) dl dt img {
    width: 100%;
    border-radius: 15px 15px 0 0;
  }
  .area_page .top_content ul li:first-of-type dl dd, .area_page .top_content ul li:nth-child(2) dl dd, .area_page .top_content ul li:nth-child(3) dl dd {
    text-align: center;
    padding: 15px 0;
  }
  .area_page .top_content ul li:first-of-type dl dd span, .area_page .top_content ul li:nth-child(3) dl dd span {
    right: inherit;
  }
  .area_page .top_content ul li:nth-child(2) dl dd span {
    left: inherit;
  }
  .area_page .top_content ul li dl dd span img {
    top: 0;
  }
}
@media screen and (max-width: 480px) {
  .area_page .top_content {
    margin: 0 0 47px;
  }
  .area_page .top_content ul li dl dd span img {
    top: -2px;
  }
}
/* area_about */
.area_about {
  margin: 0 0 110px;
}
.area_about .about_wrap {
  margin: 0 0 25px;
}
.area_about .about_wrap .flexL {
  width: 45%;
}
.area_about .about_wrap .flexL img {
  width: 100%;
}
.area_about .about_wrap .flexR {
  width: 51%;
}
.area_about .about_wrap .flexR .area_about_txt {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 25px;
}
.area_about .about_wrap .flexR p > span {
  font-size: 9px;
  color: #fff;
}
.area_about .about_img_wrap {
  position: relative;
  height: 270px;
}
.area_about .about_img_wrap li {
  width: 33%;
}
.area_about .about_img_wrap li:last-of-type {
  width: 34%;
}
.area_about .about_img_wrap li img {
  width: 100%;
}
.area_about .about_img_wrap li:first-of-type {
  position: absolute;
  left: 10px;
  top: 10px;
}
.area_about .about_img_wrap li:nth-child(2) {
  position: absolute;
  left: 30%;
  top: 10px;
}
.area_about .about_img_wrap li:last-of-type {
  position: absolute;
  right: 40px;
  top: 0;
}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 767px) {
  .area_about .inner1080 {
    width: 100%;
  }
  .area_about .about_wrap .flexL {
    margin: 0 0 30px;
  }
  .area_about .about_wrap .flexL, .area_about .about_wrap .flexR {
    width: 100%;
  }
  .area_about .about_wrap .flexR .area_about_txt {
    padding: 0 30px;
    text-align: center;
    font-size: 14px;
  }
  .area_img_sp {
    margin: 0 0 70px;
  }
}
@media screen and (max-width: 480px) {
  .area_about {
    margin: 0 0 65px;
  }
  .area_img_sp {
    margin: 0 0 35px;
  }
}
/* area_reserve */
.area_reserve {
  margin: 0 0 100px;
}
.area_reserve .reserve_link {
  background: url(../img/area/common/area_reserve_bg.svg) center center no-repeat;
  background-size: 100%;
  margin: 100px 0 0;
  align-items: center;
}
.area_reserve .reserve_link li:first-of-type {
  width: 62%;
  position: relative;
  padding: 55px 45px 55px 90px;
  align-items: center;
}
.area_reserve .reserve_link li:nth-child(2), .area_reserve .reserve_link li:nth-child(3) {
  width: 19%;
}
.area_reserve .reserve_link li:first-of-type span.date {
  color: #646464;
  font-weight: 700;
  padding: 0 10px 0 0;
  width: 20%;
  font-size: 14px;
}
.area_reserve .reserve_link li:first-of-type #search_489ban {
  width: 52%;
}
.area_reserve .reserve_link li:first-of-type #search_489ban form {
  display: flex;
  justify-content: space-between;
}
.area_reserve .reserve_link li:first-of-type #search_489ban form .date_489ban {
  width: 42%;
  font-size: 12px;
  margin: 15px 0 0;
}
.area_reserve .reserve_link li:first-of-type #search_489ban form .date_489ban dd {
  position: relative;
}
.area_reserve .reserve_link li:first-of-type #search_489ban form .date_489ban dd label {
  position: absolute;
  top: 30px;
  left: -9px;
}
.area_reserve .reserve_link li:first-of-type #search_489ban form .inbox_489ban {
  width: 30%;
  font-size: 12px;
  margin: 15px 0 0;
}
.area_reserve .reserve_link li:nth-child(2) a, .area_reserve .reserve_link li:nth-child(3) a {
  display: block;
  position: relative;
  padding: 55px 0px 55px 25px;
  color: #646464;
  font-weight: 700;
}
.area_reserve .reserve_link li:first-of-type::after {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/top/cal.svg) left center no-repeat;
  background-size: 100%;
  width: 52px;
  height: 57px;
  left: 30px;
  top: 50%;
  transform: translate(0, -50%);
}
.area_reserve .reserve_link li:first-of-type .reserve_content {
  font-size: 12px;
}
.area_reserve .reserve_link li:first-of-type #search_489ban form .date_489ban input {
  border-radius: 0;
  border: 1px solid #c9c9c9;
  padding: 3px 10px;
  height: 40px;
}
.area_reserve .reserve_link li:first-of-type #search_489ban form .stay_489ban .digits {
  height: 40px;
  padding: 5px 10px 4px;
  border-radius: 0;
  border: 1px solid #c9c9c9;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}
.area_reserve .reserve_link li:first-of-type #search_489ban form button {
  background: #000;
  color: #fff;
  font-size: 12px;
  padding: 4px 5px;
  border-radius: 3px;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  height: 30px;
  margin: 45px 0 45px;
}
.area_reserve .reserve_link li:first-of-type .reserve_plan {
  background: #9E8A4D;
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  padding: 4px 10px;
  border-radius: 3px;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
@media screen and (min-width: 767px) {
  .area_reserve .reserve_link li:first-of-type .reserve_search:hover, .area_reserve .reserve_link li:first-of-type .reserve_plan:hover {
    opacity: .8;
  }
}
.area_reserve .reserve_link li:nth-child(2) a::after, .area_reserve .reserve_link li:nth-child(3) a::after {
  font-family: "Font Awesome 5 Free";
  display: block;
  content: "\f061";
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translate(0, -50%);
  transition: .3s all;
}
@media screen and (max-width: 1200px) {
  .area_reserve .inner1080 {
    width: 95%;
  }
  .area_reserve .reserve_link li:first-of-type {
    padding: 25px 35px 25px 55px;
  }
  .area_reserve .reserve_link li:first-of-type::after {
    width: 32px;
    height: 37px;
    left: 16px;
  }
  .area_reserve .reserve_link li:first-of-type span.date {
    padding: 0 0 0 0;
    font-size: 14px;
  }
  .area_reserve .reserve_link li:first-of-type .reserve_search, .area_reserve .reserve_link li:first-of-type .reserve_plan {
    padding: 4px 5px;
  }
  .area_reserve .reserve_link li:nth-child(2) a, .area_reserve .reserve_link li:nth-child(3) a {
    font-size: 14px;
    padding: 55px 0px 55px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .area_reserve .inner1080 {
    width: 767px;
  }
  .area_reserve .reserve_link li:first-of-type {
    padding: 25px 30px 25px 45px;
  }
  .area_reserve .reserve_link li:first-of-type::after {
    width: 25px;
  }
  .area_reserve .reserve_link li:first-of-type span.date {
    font-size: 10px;
    width: 18%;
  }
  .area_reserve .reserve_link li:nth-child(2) a, .area_reserve .reserve_link li:nth-child(3) a {
    font-size: 11px;
  }
  .area_reserve .reserve_link li:nth-child(2) a::after, .area_reserve .reserve_link li:nth-child(3) a::after {
    right: 42px;
  }
  .area_reserve .reserve_link li:first-of-type #search_489ban {
    width: 55%;
  }
  .area_reserve .reserve_link li:first-of-type #search_489ban form .date_489ban {
    font-size: 10px;
    width: 38%;
    margin: 25px 0 0;
  }
  .area_reserve .reserve_link li:first-of-type #search_489ban form .date_489ban input {
    height: 30px;
    padding: 3px 0;
  }
  .area_reserve .reserve_link li:first-of-type #search_489ban form .date_489ban dd label {
    top: 22px;
  }
  .area_reserve .reserve_link li:first-of-type #search_489ban form .inbox_489ban {
    font-size: 10px;
    width: 27%;
    margin: 25px 0 0;
  }
  .area_reserve .reserve_link li:first-of-type #search_489ban form .stay_489ban .digits {
    height: 30px;
    padding: 5px 3px 4px;
  }
  .area_reserve .reserve_link li:first-of-type #search_489ban form button {
    font-size: 10px;
    height: 26px;
    width: 25%;
    text-align: center;
  }
  .area_reserve .reserve_link li:first-of-type .reserve_plan {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .area_reserve .inner1080 {
    width: 95%;
  }
  .area_reserve .reserve_link {
    background-image: none;
    background-color: #fff;
    border-radius: 15px;
    padding: 75px 15px 15px 15px;
    margin: 0 0 70px;
  }
  .area_reserve .reserve_link li:first-of-type {
    width: 100%;
    padding: 0;
  }
  .area_reserve .reserve_link li:first-of-type::after {
    background: url(../img/top/cal.svg) left center no-repeat;
    background-size: 100%;
    width: 42px;
    height: 47px;
    left: 50%;
    top: -60px;
    transform: translate(-50%, 0);
  }
  .area_reserve .reserve_link li:first-of-type #search_489ban {
    width: 100%;
  }
  .area_reserve .reserve_link li:first-of-type #search_489ban form {
    width: 100%;
    display: block;
  }
  .area_reserve .reserve_link li:first-of-type #search_489ban form .date_489ban {
    display: table-cell;
    width: 70%;
    vertical-align: top;
    font-size: 14px;
  }
  .area_reserve .reserve_link li:first-of-type #search_489ban form .date_489ban input {
    padding: 3px 10px;
  }
  .area_reserve .reserve_link li:first-of-type #search_489ban form .date_489ban dd label {
    top: 36px;
  }
  .area_reserve .reserve_link li:first-of-type #search_489ban form .inbox_489ban {
    margin: 0;
    font-size: 14px;
    display: table-cell;
    vertical-align: top;
    width: 30%;
  }
  .area_reserve .reserve_link li:first-of-type #search_489ban form .stay_489ban .digits {
    padding: 5px 13px 4px;
  }
  .area_reserve .reserve_link li:first-of-type .reserve_content input[type="date"] {
    padding: 3px 50px 3px 20px;
  }
  .area_reserve .reserve_link li:first-of-type #search_489ban form .date_489ban input[type="date"], .area_reserve .reserve_link li:first-of-type #search_489ban form .stay_489ban .digits {
    height: 45px;
    width: 100%;
  }
  .area_reserve .reserve_link li:first-of-type span.date, .area_reserve .reserve_link li a {
    display: block;
    text-align: center;
    font-size: 12px;
    width: 100%;
  }
  .area_reserve .reserve_link li:first-of-type .reserve_search {
    display: block;
    width: 100%;
    text-align: center;
    margin: 10px 0 10px;
  }
  .area_reserve .reserve_link li:first-of-type #search_489ban form button {
    height: inherit;
    width: 100%;
    text-align: center;
    margin: 45px 0 15px;
  }
  .area_reserve .reserve_link li:first-of-type #search_489ban form button, .area_reserve .reserve_link li:first-of-type .reserve_plan {
    padding: 10px 5px;
    font-size: 14px;
  }
  .area_reserve .sp p {
    margin: 0 0 73px;
  }
  .area_reserve .reserve_link li:nth-child(2), .area_reserve .reserve_link li:nth-child(3) {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .area_reserve .reserve_link {
    margin: 0 0 35px;
  }
  .area_reserve .sp p {
    margin: 0 0 35px;
  }
}
p.yb_remarks{
	background-color: #fff;
	margin: 10px 2vw 200px;
	padding: 1rem 2rem;
	color: #646464;
	border-radius: 20px;
}
@media only screen and (max-width: 768px) {
p.yb_remarks{
	margin: 10px auto 100px;
	padding: 1rem;
}
}
.area_sdgs {
  margin: 0 0 300px;
}
.area_sdgs .inner1080 {
  background: url(../img/area/common/sdgs_bg_sp02.png) center top -10px repeat-y;
  background-size: 100%;
  position: relative;
  padding: 110px 60px 100px;
}
.area_sdgs .inner1080::before, .area_sdgs .inner1080::after {
  position: absolute;
  display: block;
  content: "";
  left: 50%;
  transform: translate(-50%, 0);
}
.area_sdgs .inner1080::before {
  background: url(../img/area/common/sdgs_bg_sp01.png) center top no-repeat;
  background-size: 100%;
  top: -60px;
  width: 100%;
  height: 131px;
}
.area_sdgs .inner1080::after {
  background: url(../img/area/common/sdgs_bg_sp03.png) center bottom no-repeat;
  background-size: 100%;
  bottom: -198px;
  width: 100%;
  height: 200px;
}
section.area_sdgs h2 {
  font-weight: 400;
  color: #646464;
  font-size: 40px;
  margin: 0 0 104px;
  text-shadow: none;
}
.area_sdgs .goal {
  margin: 0 0 72px;
  color: #646464;
}
.area_sdgs .goal .goal_tit {
  font-size: 40px;
  margin: 0 0 85px;
  position: relative;
  background: -moz-linear-gradient(top, transparent 60%, #f5fe7a85 40%);
  background: -webkit-linear-gradient(top, transparent 60%, #f5fe7a85 40%);
  background: linear-gradient(to bottom, transparent 60%, #f5fe7a85 40%);
}
.area_sdgs .goal .goal_tit::before {
  display: block;
  position: absolute;
  content: "私たちの目標は…";
  font-size: 25px;
  color: #646464;
  top: -60px;
  left: -20px;
}
.area_sdgs .sdgs_list {
  margin: 0 0 118px;
}
.area_sdgs .sdgs_list li {
  width: 108px;
}
.area_sdgs .sdgs_list li img {
  width: 100%;
}
.area_sdgs .sdgs_inner h2 {
  font-size: 28px;
}
.area_sdgs .sdgs_inner.insta h2 span {
  position: relative;
}
.area_sdgs .sdgs_inner.insta h2 span::after {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/common/instagram.svg) center bottom no-repeat;
  background-size: 100%;
  width: 52px;
  height: 52px;
  left: 50%;
  bottom: -77px;
  transform: translate(-50%, 0);
}
.area_sdgs .sdgs_inner.insta .insta_img {
  position: relative;
  height: 340px;
}
/* エリア別 */
.insta_img li {
  background: #fff;
  padding: 10px 10px 40px 10px;
  box-shadow: 0px 0px 10px 3px rgb(0 0 0 / 20%);
  position: absolute;
}
.insta_img li span {
  position: relative;
  display: block;
}
.insta_img li img {
  width: 100%;
}
.insta_img li span::before, .insta_img li span::after {
  position: absolute;
  content: "";
  display: block;
}
.insta_img li:first-of-type {
  width: 22%;
  left: 40px;
  top: 0;
  transform: rotateZ(-15deg);
}
.insta_img li:first-of-type span::before {
  background: url("../img/area/common/tape01.svg") left bottom no-repeat;
  background-size: 100%;
  width: 108px;
  height: 70px;
  left: -30px;
  bottom: -50px;
}
.page_color_yellow .insta_img li:first-of-type span::before {
  background: url("../img/area/yokoshibahikari/tape01.svg") left bottom no-repeat;
  background-size: 100%;
}
.page_color_green .insta_img li:first-of-type span::before {
  background: url("../img/area/kimitsu/tape01.svg") left bottom no-repeat;
  background-size: 100%;
}
.page_color_blue .insta_img li:first-of-type span::before {
  background: url("../img/area/kimitsu/tape01.svg") left bottom no-repeat;
  background-size: 100%;
}
.page_color_blueL .insta_img li:first-of-type span::before {
  background: url("../img/area/kasumigaura/tape01.svg") left bottom no-repeat;
  background-size: 100%;
}
.insta_img li:first-of-type span::after {
  background: url("../img/area/common/tape02.svg") left bottom no-repeat;
  background-size: 100%;
  width: 158px;
  height: 85px;
  right: -60px;
  top: -30px;
}
.page_color_yellow .insta_img li:first-of-type span::after {
  background: url("../img/area/yokoshibahikari/tape02.svg") left bottom no-repeat;
  background-size: 100%;
}
.page_color_green .insta_img li:first-of-type span::after {
  background: url("../img/area/kimitsu/tape02.svg") left bottom no-repeat;
  background-size: 100%;
}
.page_color_blue .insta_img li:first-of-type span::after {
  background: url("../img/area/futtsu/tape02.svg") left bottom no-repeat;
  background-size: 100%;
}
.page_color_blueL .insta_img li:first-of-type span::after {
  background: url("../img/area/kasumigaura/tape02.svg") left bottom no-repeat;
  background-size: 100%;
}
.insta_img li:nth-child(2) {
  width: 18%;
  left: 32%;
  top: 0;
  transform: rotateZ(15deg);
}
.insta_img li:nth-child(2) span::before {
  background: url("../img/area/common/tape03.svg") left bottom no-repeat;
  background-size: 100%;
  width: 71px;
  height: 59px;
  left: -40px;
  top: -40px;
}
.page_color_yellow .insta_img li:nth-child(2) span::before {
  background: url("../img/area/yokoshibahikari/tape03.svg") left bottom no-repeat;
  background-size: 100%;
}
.page_color_green .insta_img li:nth-child(2) span::before {
  background: url("../img/area/kimitsu/tape03.svg") left bottom no-repeat;
  background-size: 100%;
}
.page_color_blue .insta_img li:nth-child(2) span::before {
  background: url("../img/area/futtsu/tape03.svg") left bottom no-repeat;
  background-size: 100%;
}
.page_color_blueL .insta_img li:nth-child(2) span::before {
  background: url("../img/area/kasumigaura/tape03.svg") left bottom no-repeat;
  background-size: 100%;
}
.insta_img li:nth-child(2) span::after {
  background: url("../img/area/common/tape04.svg") left bottom no-repeat;
  background-size: 100%;
  width: 80px;
  height: 68px;
  right: -40px;
  bottom: -60px;
}
.page_color_yellow .insta_img li:nth-child(2) span::after {
  background: url("../img/area/yokoshibahikari/tape04.svg") left bottom no-repeat;
  background-size: 100%;
}
.page_color_green .insta_img li:nth-child(2) span::after {
  background: url("../img/area/kimitsu/tape04.svg") left bottom no-repeat;
  background-size: 100%;
}
.page_color_blue .insta_img li:nth-child(2) span::after {
  background: url("../img/area/futtsu/tape04.svg") left bottom no-repeat;
  background-size: 100%;
}
.page_color_blueL .insta_img li:nth-child(2) span::after {
  background: url("../img/area/kasumigaura/tape04.svg") left bottom no-repeat;
  background-size: 100%;
}
.insta_img li:nth-child(3) {
  width: 18%;
  right: 28%;
  top: 30px;
  transform: rotateZ(-15deg);
}
.insta_img li:nth-child(3) span::before {
  background: url("../img/area/common/tape05.svg") left bottom no-repeat;
  background-size: 100%;
  width: 77px;
  height: 40px;
  left: 40px;
  top: -30px;
}
.page_color_yellow .insta_img li:nth-child(3) span::before {
  background: url("../img/area/yokoshibahikari/tape05.svg") left bottom no-repeat;
  background-size: 100%;
}
.page_color_green .insta_img li:nth-child(3) span::before {
  background: url("../img/area/kimitsu/tape05.svg") left bottom no-repeat;
  background-size: 100%;
}
.page_color_blue .insta_img li:nth-child(3) span::before {
  background: url("../img/area/futtsu/tape05.svg") left bottom no-repeat;
  background-size: 100%;
}
.page_color_blueL .insta_img li:nth-child(3) span::before {
  background: url("../img/area/kasumigaura/tape05.svg") left bottom no-repeat;
  background-size: 100%;
}
.insta_img li:last-of-type {
  width: 23%;
  right: 0;
  top: -30px;
  transform: rotateZ(15deg);
}
.insta_img li:last-of-type span::before {
  background: url("../img/area/common/tape06.svg") left bottom no-repeat;
  background-size: 100%;
  width: 110px;
  height: 86px;
  left: -45px;
  bottom: -65px;
}
.page_color_yellow .insta_img li:last-of-type span::before {
  background: url("../img/area/yokoshibahikari/tape06.svg") left bottom no-repeat;
  background-size: 100%;
}
.page_color_green .insta_img li:last-of-type span::before {
  background: url("../img/area/kimitsu/tape06.svg") left bottom no-repeat;
  background-size: 100%;
}
.page_color_blue .insta_img li:last-of-type span::before {
  background: url("../img/area/futtsu/tape06.svg") left bottom no-repeat;
  background-size: 100%;
}
.page_color_blueL .insta_img li:last-of-type span::before {
  background: url("../img/area/kasumigaura/tape06.svg") left bottom no-repeat;
  background-size: 100%;
}
.insta_img li:last-of-type span::after {
  background: url("../img/area/common/tape07.svg") left bottom no-repeat;
  background-size: 100%;
  width: 109px;
  height: 92px;
  right: -40px;
  top: -40px;
}
.page_color_yellow .insta_img li:last-of-type span::after {
  background: url("../img/area/yokoshibahikari/tape07.svg") left bottom no-repeat;
  background-size: 100%;
}
.page_color_green .insta_img li:last-of-type span::after {
  background: url("../img/area/kimitsu/tape07.svg") left bottom no-repeat;
  background-size: 100%;
}
.page_color_blue .insta_img li:last-of-type span::after {
  background: url("../img/area/futtsu/tape07.svg") left bottom no-repeat;
  background-size: 100%;
}
.page_color_blueL .insta_img li:last-of-type span::after {
  background: url("../img/area/kasumigaura/tape07.svg") left bottom no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1024px) {
  .area_sdgs .inner1080 {
    width: 740px;
  }
  .area_sdgs .inner1080 .inner {
    width: 100%;
  }
  .area_sdgs .inner1080::before {
    top: -45px;
  }
  .area_sdgs .inner1080::after {
    bottom: -188px;
  }
  .area_sdgs .sdgs_list li {
    width: 90px;
  }
  .area_sdgs .sdgs_inner.insta .insta_img {
    height: 280px;
  }
  .insta_img li:first-of-type, .insta_img li:nth-child(2) {
    top: 20px;
  }
  .insta_img li:nth-child(3) {
    top: 50px;
  }
  .insta_img li:last-of-type {
    top: -10px;
  }
  .insta_img li:first-of-type span::before {
    width: 54px;
    height: 35px;
    left: -20px;
    bottom: -50px;
  }
  .insta_img li:first-of-type span::after {
    width: 79px;
    height: 42px;
    right: -30px;
    top: -30px;
  }
  .insta_img li:nth-child(2) span::before {
    width: 35px;
    height: 30px;
    left: -20px;
    top: -20px;
  }
  .insta_img li:nth-child(2) span::after {
    width: 40px;
    height: 32px;
    right: -20px;
    bottom: -50px;
  }
  .insta_img li:nth-child(3) span::before {
    width: 38px;
    height: 20px;
    left: 25px;
    top: -20px;
  }
  .insta_img li:last-of-type span::before {
    width: 55px;
    height: 43px;
    left: -25px;
    bottom: -50px;
  }
  .insta_img li:last-of-type span::after {
    width: 54px;
    height: 46px;
    right: -25px;
    top: -23px;
  }
}
@media screen and (max-width: 767px) {
  .insta_img li:first-of-type {
    width: 34%;
    left: 30px;
    top: 30px;
    transform: rotateZ(-15deg);
  }
  .insta_img li:nth-child(2) {
    width: 28%;
    left: inherit;
    top: 30px;
    transform: rotateZ(15deg);
    right: 16%;
  }
  .insta_img li:nth-child(3) {
    width: 32%;
    right: inherit;
    top: inherit;
    transform: rotateZ(15deg);
    bottom: 0;
    left: 10%;
  }
  .insta_img li:last-of-type {
    width: 38%;
    right: 10%;
    top: inherit;
    transform: rotateZ(-15deg);
    bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .insta_img li {
    padding: 5px 5px 20px 5px;
  }
  .insta_img li:first-of-type span::before {
    width: 54px;
    height: 35px;
    left: -20px;
    bottom: -30px;
  }
  .insta_img li:first-of-type span::after {
    width: 79px;
    height: 42px;
    right: -30px;
    top: -30px;
  }
  .insta_img li:nth-child(2) span::before {
    width: 35px;
    height: 30px;
    left: -20px;
    top: -20px;
  }
  .insta_img li:nth-child(2) span::after {
    width: 40px;
    height: 32px;
    right: -20px;
    bottom: -30px;
  }
  .insta_img li:nth-child(3) span::before {
    width: 38px;
    height: 20px;
    left: 25px;
    top: -15px;
  }
  .insta_img li:last-of-type span::before {
    width: 55px;
    height: 43px;
    left: -25px;
    bottom: -35px;
  }
  .insta_img li:last-of-type span::after {
    width: 54px;
    height: 46px;
    right: -25px;
    top: -23px;
  }
}
.area_sdgs .sdgs_inner.sns h2 {
  margin: 0 0 17px;
}
.area_sdgs .sns ul {
  justify-content: center;
  align-items: center;
}
.area_sdgs .sns ul li {
  padding: 0 26px;
}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 767px) {
  .area_sdgs .inner1080 {
    background: url(../img/area/common/sdgs_bg_sp02.png) center top -10px repeat-y;
    background-size: 100%;
    position: relative;
    padding: 20px 20px 20px 40px;
    width: 100%;
  }
  .area_sdgs .inner1080::before, .area_sdgs .inner1080::after {
    position: absolute;
    display: block;
    content: "";
    left: 50%;
    transform: translate(-50%, 0);
  }
  .area_sdgs .inner1080::before {
    background: url(../img/area/common/sdgs_bg_sp01.png) center top no-repeat;
    background-size: 100%;
    top: -30px;
    width: 100%;
    height: 51px;
  }
  .area_sdgs .inner1080::after {
    background: url(../img/area/common/sdgs_bg_sp03.png) center top no-repeat;
    background-size: 100%;
    bottom: -72px;
    width: 100%;
    height: 80px;
  }
  .area_sdgs .sdgs_inner.insta .insta_img {
    margin: 0 0 50px;
    height: 310px;
  }
  .area_sdgs .sdgs_list li {
    width: 30%;
    margin: 0 0 15px;
  }
  .area_sdgs .sns ul li {
    padding: 0px 5px;
  }
  .area_sdgs .sns ul li a img {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  section.area_sdgs h2 {
    font-size: 20px;
    margin: 0px 0 74px;
  }
  .area_sdgs .goal .goal_tit::before {
    font-size: 12px;
    top: -30px;
    left: -10px;
  }
  .area_sdgs .goal .goal_tit {
    font-size: 20px;
  }
  .area_sdgs .goal {
    margin: 0 0 35px;
  }
  .area_sdgs .sdgs_list {
    margin: 0 0 46px;
  }
  .area_sdgs .sdgs_inner h2 {
    font-size: 14px;
  }
  .area_sdgs .sdgs_inner.insta h2 span::after {
    width: 40px;
    height: 40px;
    bottom: -57px;
  }
}
/* area_greeting */
.area_greeting {
  margin: 0 0 184px;
  padding: 0 0 150px;
}
section.area_greeting h2 {
  font-size: 33px;
  font-weight: 700;
  color: #646464;
  text-shadow: none;
}
.area_greeting .inner {
  width: 740px;
}
.area_greeting .greeting_wrap {
  background: #fff;
  padding: 30px 30px 57px 30px;
  border-radius: 30px;
  position: relative;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15);
  margin: 0 0 70px;
}
.area_greeting .greeting_wrap::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -49px;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 0 0 150px;
  border-color: #FFFFFF transparent transparent transparent;
}
.area_greeting .greeting_wrap p {
  font-size: 25px;
  line-height: 2;
  color: #646464;
}
.area_greeting .greeting_img {
  position: relative;
}
.area_greeting .greeting_img .h_teacher_name {
  position: absolute;
  left: 15px;
  top: 0;
  color: #fff;
  text-shadow: 0px 0px 5px rgb(0 0 0 / 30%);
  font-size: 30px;
  font-weight: 700;
}
.area_greeting .greeting_img .h_teacher_img {
  position: absolute;
  right: 30px;
  top: -100px;
}
.area_greeting .greeting_img .h_teacher_img img {
  width: 200px;
  height: auto;
}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 767px) {
  .area_greeting .inner {
    width: 95%;
    margin: 0 auto;
  }
  .area_greeting .greeting_wrap {
    border-radius: 15px;
  }
  .area_greeting .greeting_img .h_teacher_img {
    right: 10px;
    top: -100px;
    width: 30%;
  }
  .area_greeting .greeting_img .h_teacher_img img {
    width: 100%;
  }
  .area_greeting .greeting_wrap::after {
    bottom: -39px;
    border-width: 40px 0 0 80px;
  }
}
@media screen and (max-width: 480px) {
  .area_greeting {
    margin: 0 0 72px;
    padding: 0 0 50px;
  }
  section.area_greeting h2 {
    font-size: 16px;
  }
  .area_greeting .greeting_wrap p {
    font-size: 12px;
  }
  .area_greeting .greeting_img .h_teacher_name {
    font-size: 15px;
    top: -50px;
  }
}
/* area_staff_bnr */
.area_staff_bnr {
  margin: 0 0 74px;
}
@media screen and (min-width: 767px) {
  .area_staff_bnr p a:hover {
    opacity: .7;
  }
}
.area_staff_bnr p a img {
  width: 100%;
}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 767px) {}
@media screen and (max-width: 480px) {}
/* area_kasou */
.area_kasou h2.area_kasou_tit {
  font-size: 40px;
  text-align: center;
  padding: 50px 0 10px;
  font-weight: 700;
  letter-spacing: 4px;
}
.area_kasou h2.area_kasou_tit span {
  display: inline-block;
  padding: 0 10px 10px;
}
.area_kasou h2.area_kasou_tit span img {
  width: 134px;
  height: auto;
  display: inline-block;
  padding: 0 15px 13px;
}
.area_kasou .area_mv {
  width: 1080px;
  margin: 0 auto;
}
.area_kasou .area_mv .mv_lead {
  font-size: 23px;
  margin: 25px 0 80px;
  position: relative;
  z-index: 5;
}
.area_kasou .area_mv .mv_lead .notes {
  font-size:smaller;
  display:block;
  margin: 10px 0 0;
}
/* ページ別 */
.area_kasou .area_mv .mv_lead::after {
  position: absolute;
  content: "";
  display: block;
  z-index: -1;
}
.area_school .area_mv .mv_lead::after {
  background: url(../img/top/content_illust02.svg) center bottom no-repeat;
  background-size: 100%;
  width: 209px;
  height: 211px;
  right: 90px;
  bottom: -100px;
}
.area_workation .area_mv .mv_lead::after {
  background: url(../img/top/content_illust03.svg) center bottom no-repeat;
  background-size: 100%;
  width: 285px;
  height: 214px;
  right: 20px;
  bottom: -90px;
  transform: rotateZ(35deg);
}
.area_kasou_box {
  background: #fff;
  padding: 34px 32px 42px;
  margin: 0 0 79px;
}
.area_kasou_box.last, .area_kasou .area_kasou_box:last-child {
  margin: 0 0 154px;
}
.area_kasou_box h3 {
  font-size: 30px;
  margin: 0 0 39px;
  color: #646464;
}
.area_kasou_box .flexL, .area_kasou_box .flexR {
  width: 49%;
}
.area_kasou_box .flexL img {
  width: 100%;
}
.area_kasou_box .flexR {
  font-size: 15px;
  line-height: 1.4;
  color: #646464;
}
.area_kasou .link {
  margin: 0 0 204px;
  padding: 75px 0 0;
}
@media screen and (max-width: 1200px) {
  .area_kasou .area_mv {
    width: 95%;
  }
  .area_kasou .link {
	padding: 132px 0 0;
    margin: 0 0 100px;
  }
}
@media screen and (max-width: 767px) {
  .area_kasou .area_mv {
    width: 100%;
  }
  .area_kasou .area_mv .slider {
    height: 340px;
  }
  .area_kasou .area_mv .slider .slider-item {
    background-size: contain;
  }
  .area_kasou_box {
    margin: 0 0 47px;
  }
  .area_kasou_box .flexL, .area_kasou_box .flexR {
    width: 100%;
  }
  .area_kasou .area_mv .mv_lead {
    width: 95%;
    margin: 0 auto 80px;
  }
  /* ページ別 */
  .area_school .area_mv .mv_lead::after {
    width: 145px;
    height: 154px;
    right: 0;
    bottom: -90px;
  }
  .area_workation .area_mv .mv_lead::after {
    width: 235px;
    height: 174px;
    right: 20px;
    bottom: -90px;
  }
  .area_kasou_box .flexL {
    margin: 0 0 28px;
  }
  .area_kasou_box:last-of-type {
    margin: 0 0 132px;
  }
}
@media screen and (max-width: 480px) {
  .area_kasou h2.area_kasou_tit {
    font-size: 22px;
    padding: 50px 0 5px;
  }
  .area_kasou h2.area_kasou_tit span img {
    width: 114px;
    padding: 0 15px 2px;
  }
  .area_kasou .area_mv .mv_lead {
    font-size: 15px;
    margin: 0 auto 137px;
  }
  .area_kasou_box {
    padding: 17px;
    margin: 0 0 24px;
  }
  .area_kasou_box h3 {
    font-size: 15px;
    margin: 0 0 12px;
  }
  .area_kasou_box .flexL {
    margin: 0 0 14px;
  }
  .area_kasou_box .flexR {
    font-size: 15px;
  }
  .area_kasou_box:last-of-type {
    margin: 0 0 66px;
  }
  .area_kasou .link {
	padding: 66px 0 0;
    margin: 0 0 100px;
  }
  .area_kasou .area_mv .mv_lead .notes {
    font-size: 10px;
	padding: 10px 0 0;
	letter-spacing: 0;
  }
}
@media screen and (max-width: 480px) {
  .area_kasou h2.area_kasou_tit {
    font-size: 22px;
    padding: 50px 0 5px;
  }
  .area_kasou h2.area_kasou_tit span img {
    width: 114px;
    padding: 0 15px 2px;
  }
  .area_kasou .area_mv .mv_lead {
    font-size: 15px;
    margin: 0 auto 137px;
  }
  .area_kasou_box {
    padding: 17px;
    margin: 0 0 24px;
  }
  .area_kasou_box h3 {
    font-size: 15px;
    margin: 0 0 12px;
  }
  .area_kasou_box .flexL {
    margin: 0 0 14px;
  }
  .area_kasou_box .flexR {
    font-size: 15px;
  }
  .area_kasou_box:last-of-type {
    margin: 0 0 66px;
  }
}
@media screen and (min-width: 768px) {
  .fullModal{
    display:none;
  }
}
@media screen and (max-width: 767px) {
  #formType {
    display: none;
  }
  .modalOpen {
    overflow: hidden;
  }
  .fullModal {
    background: #878787;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
  }
  .modalOpen .fullModal {
    z-index: 999;
    visibility: visible;
    opacity: 1;
  }
  .fullModal .scrollInner{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height:100vh;
    padding:10vh 0;
  }
  .fullModal h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5em;
  }
  .fullModal ul {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    width: 83.5%;
  }
  .fullModal ul li {
    background: #fff;
    padding: 7px;
    text-align: center;
    color: #646464;
    font-size: .875rem;
    border-radius: 13.5px;
    overflow-y:auto;
  }
  .selectBtn {
    display: inline-block;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    padding: 10px 20px;
  }
  .mw_wp_form_confirm .selectBtn {
    display: none;
  }
  #selectVal {
    display: block;
    margin-top: 10px;
  }
  .closeBtn {
    position: absolute;
    top: 20px;
    right: 10px;
    background: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
  }
  .closeBtn span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 72%;
    height: 1px;
    background: #878787;
    transform-origin: center center;
  }
  .closeBtn span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .closeBtn span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

/* 2023年2月1日追記　アウトドア研修コラム用 */
.column_single {
  padding: 0 0 147px;
}
.column_single .column_contents {
  width: 898px;
  margin: 0 auto 108px;
  background-color: #fff;
  border-radius: 0 0 0 30px;
  position: relative;
  padding: 0 50px 0 30px;
}
.column_single .column_contents::before {
  position: absolute;
  content: "";
  display: block;
  background: url("../img/area/common/news_bg_parts.svg?3") center top no-repeat;
  background-size: 101%;
  width: 898px;
  height: 145px;
  top: -89px;
  left: 0;
}
	.column_single .column_contents h3 {
  text-align: center;
  font-size: 22px;
font-weight: 700;
margin: 0 0 30px;
padding: 20px 0 0;
}
@media screen and (max-width: 767px) {
  .column_single .column_contents h3 {
	text-align: left;
  }
}
.column_single .column_contents .flexL {
  width: 100%;
  position: relative;
  top: -40px;
}
.column_single .column_contents .flexL .news_tit {
  font-size: 21px;
  margin: 0 0 10px;
  min-height: 114px;
}
.column_single .column_contents .flexL .news_tit .news_date {
  font-weight: 700;
}
.column_single .column_contents .flexL .news_img {
  margin: 0 0 18px;
}
.column_single .column_contents .flexL .news_img img {
  width: 100%;
  height: auto;
}
.column_single .column_contents .flexL .news_txt {
  font-size: 15px;
  margin: 0 0 20px;
}
.column_single .column_contents .flexL .news_txt p {
  margin: 0 0 1em;
}
.column_single .column_contents .sharebtn {
  justify-content: flex-start;
  align-items: center;
  column-gap: 15px;
}
.column_single .column_contents .sharebtn li {
  width: 23%;
}
.column_single .column_contents .flexR {
  width: 33%;
  position: relative;
  top: 83px;
  padding: 0 0 80px;
}
.column_single .column_contents .flexR h4 {
  position: relative;
  background-color: #DCDCDC;
  font-size: 15px;
  margin: 0 0 11px;
}
.column_single .column_contents .flexR h4 span {
  padding: 10px 0 10px 7px;
  font-weight: 700;
  color: #646464;
  display: block;
}
.column_single .column_contents .flexR h4 i {
  display: block;
  background: #707070;
  color: #fff;
  padding: 16px;
  position: absolute;
  right: 0;
  top: 0;
}
.column_single .column_contents .flexR .news_img img {
  width: 100%;
  height: auto;
}
.column_single .column_contents .flexR dl {
  font-size: 11px;
  margin: 0 0 28px;
}
.column_single .column_contents .flexR dl dt {
  font-weight: 700;
}
.column_single .btn::after {
  content: "\f060";
  right: inherit;
  left: 30px;
}

@media screen and (max-width: 1200px){
  .page_content.page_reserved .page_mv{
    max-width: 1080px;
    width: auto;
    margin-bottom: -30px;
  }
  .page_content.page_reserved .page_mv img{
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .column_single .column_contents {
    width: 94.5%;
    margin: 0 auto 108px;
  }
  .column_single .column_contents::before {
    width: 100%;
  }

	.column_single .column_contents .flexL .news_tit dd {
		font-size: 18px;
	}
}
@media screen and (max-width: 767px) {
  .column_single .bread {
    padding: 13px 0 77px;
  }
  .column_single .column_contents {
    padding: 0 22px 20px;
    margin: 30px auto 56px;
  }
  .column_single .column_contents .flexL {
    width: 100%;
  }
  .column_single .bread li, .column_single .bread li a, .column_single .bread li i {
    font-size: 10px;
  }

  .column_single .column_contents .flexL .news_tit {
	min-height: inherit;
	position: relative;
    top: -17px
  }
  .column_single .column_contents .flexL .news_tit dt {
    font-size: 24px;
  }
  .column_single .column_contents .flexL .news_tit dd {
    font-size: 29px;
  }
  .column_single .column_contents .flexL {
    top: 0;
  }
  .column_single .column_contents .flexL .news_txt {
    font-size: 20px;
  }
  .column_single .btn::after {
    display: none;
  }
  .column_single .column_contents .sharebtn li {
    width: 35%;
  }
  
}
@media screen and (max-width: 480px) {
  .column_single .column_contents {
    padding: 0 15px 20px;
  }
  .column_single .column_contents::before {
	height: 75px;
    top: -65px;
  }
  .column_single .column_contents .flexL .news_tit dt {
    font-size: 11px;
  }
  .column_single .column_contents .flexL .news_tit dd {
    font-size: 14px;
  }
  .column_single .column_contents {
    margin: 0 auto 28px;
  }
  .column_single .column_contents .flexL .news_txt {
    font-size: 10px;
  }

  .column_single .btn {
    font-size: 8px;
    padding: 17px 33px;
  }
  
}

/* 2024年11月追記　団体貸切プラン用 */

.page_contact #header .inner1080::after{
  background: url("../img/page/reserved/h_icon_orange.png") right bottom -1px no-repeat;
  background-size: 100%;
}

.page_content.page_reserved .reserved_fee{
  background: url("../img/common/bg_gray.png") center center no-repeat;
  background-size: cover;
  padding-bottom: 80px;
}


.page_content.page_reserved .page_content_tit{
  margin: 0 auto;
  width: 260px;
  height: auto;
}
.page_content.page_reserved .page_content_tit span img{
  width: 100%;
  height: auto;
}

.page_content.page_reserved .page_mv{
  max-width: 1080px;
  width: 100%;
  padding: 0 30px;
}

main.page_content.page_reserved {
  background: url(../img/page/reserved/bg_orange.png) center center repeat-y;
  background-size: cover;
}

.page_content.page_reserved section{
  padding: 0 30px;
}
.page_content.page_reserved section h2{
  color: #000000;
  margin-top: 55px;
}


.page_content.page_reserved section h2::before{
  content: '';
  display: block;
  margin: 0 auto;
  background-size: contain;
}

.page_content.page_reserved section.reserved_plan h2::before{
  background: url(https://campiece.com/wp/wp-content/themes/base/assets/img/page/reserved/ttl_en_plan.png) center center no-repeat;
  width: 81px;
  height: 17px;
}

.page_content.page_reserved section.reserved_example h2::before{
  background: url(https://campiece.com/wp/wp-content/themes/base/assets/img/page/reserved/ttl_en_example.png) center center no-repeat;
  width: 176px;
  height: 18px;
}

.page_content.page_reserved section.reserved_area h2::before{
  background: url(https://campiece.com/wp/wp-content/themes/base/assets/img/page/reserved/ttl_en_area.png) center center no-repeat;
  width: 86px;
  height: 17px;
}

.page_content.page_reserved section.reserved_fee h2::before{
  background: url(https://campiece.com/wp/wp-content/themes/base/assets/img/page/reserved/ttl_en_fee.png) center center no-repeat;
  width: 57px;
  height: 17px;
}

.page_content.page_reserved section.reserved_faq h2::before{
  background: url(https://campiece.com/wp/wp-content/themes/base/assets/img/page/reserved/ttl_en_faq.png) center center no-repeat;
  width: 61px;
  height: 17px;
}

.page_content.page_reserved div.sub_text h3{
  margin: 90px auto 40px;
  font-size: 24px;
  width: fit-content;
  position: relative;
}

.page_content.page_reserved div.sub_text h3::before{
  content: '';
  position: absolute;
  background: url(https://campiece.com/wp/wp-content/themes/base/assets/img/page/reserved/main_text_right.png) no-repeat center /contain;
  width: 43px;
  height: 49px;
  right: -50px;
  top: -24px;
}

.page_content.page_reserved div.sub_text h3 .main_text{
  position: relative;
}
.page_content.page_reserved div.sub_text h3 .main_text::before{
  position: absolute;
  content: '';
  background: url(https://campiece.com/wp/wp-content/themes/base/assets/img/page/reserved/main_text_under.png) no-repeat center /contain;
  width: 100%;
  height: 1em;
  bottom:-0.5em;
  left: -0.2em;
}

.page_content.page_reserved div.sub_text h3 img{
  display: inline-block;
  padding-bottom: 10px;
  padding-right: 8px;
}

.page_content.page_reserved div.sub_text p{
  text-align: center;
  margin-bottom: 50px;
}


.page_content.page_reserved .reserved_nav{
  display: flex;
  justify-content: center;
  background: #fff;
  margin: 0 auto;
  max-width: 900px;
  padding: 16px 0;
  align-items: center;
  border-radius: 44px;
}

@media(max-width:900px){
  .page_content.page_reserved .reserved_nav{
    border-radius: 0;
  }
}


.page_content.page_reserved .inner_reserved{
  max-width: 1080px;
  margin: -40px auto 40px;
  padding: 40px 0 0;
}

.page_content.page_reserved .inner_reserved.max{
  max-width: none;
}

.page_content.page_reserved .inner_reserved.fit {
  max-width: 900px;
}

.page_content.page_reserved .inner_reserved.fit .fit_inner{
  width: fit-content;
  margin-left: auto;
  padding: 40px 0 0;
}


.page_content.page_reserved .reserved_faq .inner_reserved{
  padding-top: 80px;
}

.page_content.page_reserved .inner_reserved.fit .fit_inner p{
  line-height: 3;
}

.page_content.page_reserved .reserved_nav li a{
  padding: 10px 26px;
  font-size: 20px;
  font-weight: bold;
  display: block;
}

@media screen and (min-width: 768px){
  .page_content.page_reserved .reserved_nav li a:hover{
    opacity: .7;
  }
}

.page_content.page_reserved .reserved_nav li:not(:last-of-type){
  border-right: 2px solid #ffa13d;
}


.page_content.page_reserved section.reserved_plan ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page_content.page_reserved section.reserved_plan ul li{
  width: 296px;
  height: 309px;
  background-size: contain;
  padding: 64px 26px 0;
}

.page_content.page_reserved section.reserved_plan ul li:nth-of-type(1){
  background: url(https://campiece.com/wp/wp-content/themes/base/assets/img/page/reserved/bg_plan_1.png) center center no-repeat;
}
.page_content.page_reserved section.reserved_plan ul li:nth-of-type(2){
  background: url(https://campiece.com/wp/wp-content/themes/base/assets/img/page/reserved/bg_plan_2.png) center center no-repeat;
}
.page_content.page_reserved section.reserved_plan ul li:nth-of-type(3){
  background: url(https://campiece.com/wp/wp-content/themes/base/assets/img/page/reserved/bg_plan_3.png) center center no-repeat;
}
.page_content.page_reserved section.reserved_plan ul li h3{
  margin: 0 0 24px;
}


.page_content.page_reserved section.reserved_plan ul li p{
  font-size: 14px;
  padding-left: 16px;
  line-height: 1.5;
  color: #6d6d6d;
}


.page_content.page_reserved section.reserved_example ul.ex01 li{
  background: url(https://campiece.com/wp/wp-content/themes/base/assets/img/page/reserved/ptrn.png) center center;
  background-color: #fff;
  background-size: 1.5%;
  border-radius: 20px;
  padding: 60px 40px;
  border: 6px solid #f1f1f1;
  max-width: 900px;
  margin: 0 auto;
}

.page_content.page_reserved section.reserved_example ul li:not(:nth-last-of-type(1)){
  margin-bottom: 54px;
}


.page_content.page_reserved section.reserved_example ul.ex01 li h3{
  width: fit-content;
  margin: 0 auto 30px;
}

.page_content.page_reserved section.reserved_example ul.ex02 li h3{
  width: fit-content;
  margin: 0;
}


@media screen and (min-width: 768px){
  .page_content.page_reserved section.reserved_example ul.ex02 li:hover{
    opacity: .7;
  }
}
@media screen and (max-width: 910px){
  .page_content.page_reserved section.reserved_example ul.ex02 li h3{
    width: fit-content;
    margin: 0;
    min-height: 50px;
  }
}


.page_content.page_reserved section.reserved_example ul li h3 img{
  width: 100%;
  height: auto;
}

.page_content.page_reserved section.reserved_example .example_inner{
  display: flex;
  justify-content: center;
  color: #6d6d6d;
  gap: 40px;
}


.page_content.page_reserved section.reserved_example .example_inner .example_photo{
  width: 50%;
}

.page_content.page_reserved section.reserved_example .example_inner .example_photo img{
  width: 100%;
  height: auto;
}

.page_content.page_reserved section.reserved_example .example_inner h3{
  margin: 0 0 44px;
}

.page_content.page_reserved section.reserved_example .example_inner .example_text{
  width: 44%;
}


.page_content.page_reserved section.reserved_example .example_inner dl{
  padding-top: 20px;
}

.page_content.page_reserved ul.ex02{
  flex-wrap: nowrap;
  margin: 50px auto 60px;
  gap: 20px;
}


.page_content.page_reserved ul.ex02 li h3 {
  position: relative;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  padding: 0 0 0 97px;
  text-align: left;
  margin: 0;
}
.page_content.page_reserved ul.ex02 li h3::after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 75%;
  transform: translate(0, -50%);
  z-index: 10;
}
.page_content.page_reserved ul.ex02 li:first-of-type h3::after {
  background: url("../img/top/con_no01.svg") left top no-repeat;
  background-size: 100%;
  width: 74px;
  height: 70px;
}
.page_content.page_reserved ul.ex02 li:nth-child(2) h3::after {
  background: url("../img/top/con_no02.svg") left top no-repeat;
  background-size: 100%;
  width: 83px;
  height: 70px;
}
.page_content.page_reserved ul.ex02 li:nth-child(3) h3::after {
  background: url("../img/top/con_no03.svg") left top no-repeat;
  background-size: 100%;
  width: 84px;
  height: 70px;
}


.page_content.page_reserved ul.ex02 li dl {
  position: relative;
  top: -2px;
}
.page_content.page_reserved ul.ex02 li dl dt img {
  width: 100%;
}
.page_content.page_reserved ul.ex02 li dl dd {
  text-align: center;
}
.page_content.page_reserved ul.ex02 li dl dt {
  position: relative;
}
.page_content.page_reserved ul.ex02 li dl dt::after {
  position: absolute;
  content: "";
  display: block;
}
.page_content.page_reserved ul.ex02 li:first-of-type dl dt::after {
  background: url("../img/top/content_illust01.svg") center bottom no-repeat;
  background-size: 100%;
  width: 243px;
  height: 206px;
  left: 50%;
  bottom: -120px;
  transform: translate(-50%, 0);
}
.page_content.page_reserved ul.ex02 li:nth-child(2) dl dt::after {
  background: url("../img/top/content_illust02.svg") center bottom no-repeat;
  background-size: 100%;
  width: 138px;
  height: 140px;
  left: 50%;
  bottom: -120px;
  transform: translate(-50%, 0);
}
.page_content.page_reserved ul.ex02 li:nth-child(3) dl dt::after {
  background: url("../img/top/content_illust03.svg") center bottom no-repeat;
  background-size: 100%;
  width: 226px;
  height: 194px;
  left: 50%;
  bottom: -135px;
  transform: translate(-50%, 0);
}
.page_content.page_reserved ul.ex02 li dl dd span {
  font-size: 21px;
  font-weight: 700;
  position: relative;
  z-index: 10;
}
.page_content.page_reserved ul.ex02 li dl dd span img {
  position: relative;
  top: -6px;
  left: -10px;
}


.page_content.page_reserved ul.ex02 li dl dd span::after {
  font-family: "Font Awesome 5 Free";
  display: block;
  content: "\f061";
  position: absolute;
  right: -32px;
  top: 54%;
  transform: translate(0, -50%);
  transition: .3s all;
}

.page_content.page_reserved section .ex02_ttl{
  margin-top: 0;
}


.page_content.page_reserved section .ex02_ttl::before{
  content: none;
}

.page_content.page_reserved section h2 {
  text-shadow: none;
}



.page_content.page_reserved .top_area.reserved_area{
  padding: 20px 0 0;
}

.page_content.page_reserved .top_area.reserved_area .inner100{
  padding: 7vw 0 0;
}


@media screen and (max-width: 1200px){
  .page_content.page_reserved .top_area.reserved_area .area_link{
    padding: 7vw 0 0vw;
  }
}

@media screen and (max-width: 1024px){
  .page_content.page_reserved .top_area.reserved_area .area_link{
    padding: 7vw 0 22vw;
  }
}

.page_content.page_reserved .top_area.reserved_area .area_link::after{
  content: none;
}

.page_content.page_reserved .top_area.reserved_area .area_link p{
  margin: 32px 0 160px;
}

.page_content.page_reserved .top_area.reserved_area .area_link p b{
  font-size: 20px;
  margin-bottom: 18px;
}

.page_content.page_reserved .top_area.reserved_area .area_link ul {
  max-width: 900px;
  padding: 0 30px;
  width: auto;
}



.page_content.page_reserved .top_area.reserved_area .area_link li h3{
  top: 0;
}

.page_content.page_reserved .reserved_cta{
  background: url(https://campiece.com/wp/wp-content/themes/base/assets/img/page/reserved/cta_bg.png) center center repeat-x;
  background-size: cover;
  padding: 96px 0;
}

.page_content.page_reserved .reserved_cta .cta_inner{
  background-color: #fff;
  padding: 40px 0;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 20px;
  text-align: center;
}

.page_content.page_reserved .reserved_cta .cta_inner .cta_btn{
  margin-top: 22px;
}

  @media screen and (min-width:768px) {
    .page_content.page_reserved .reserved_cta .cta_inner .cta_btn:hover{
      transform: translate(0, 10px);
      transition: .4s ease;
    }
  }

.page_content.page_reserved section.reserved_fee h2{
  padding: 0;
} 


/* table */

.page_content.page_reserved .reserved_fee .table01{
  max-width: 860px;
  margin: 0 auto;
}

.page_content.page_reserved .reserved_fee .table01 small{
  text-align: right;
  display: block;
  color: #6d6d6d;
  font-size: 14px;
}

.page_content.page_reserved .reserved_fee table{
  border-collapse: separate;
  border-spacing: 2px;
}

.page_content.page_reserved .reserved_fee .table01 h3{
  font-size: 24px;
  padding-top: 20px;
}

.page_content.page_reserved .reserved_fee .table01 h3 span{
  font-size: 15px;
  display: block;
}


.page_content.page_reserved .reserved_fee .table01 td{
  width: 170px;
  font-family: "Roboto", "Noto Sans", sans-serif;
  color: #6d6d6d;
  background-color: #fff;
  text-align: center;
}

.page_content.page_reserved .reserved_fee .table01 .tr01 th{
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 22px;
}



.page_content.page_reserved .reserved_fee .table01 .tr03 th,
.page_content.page_reserved .reserved_fee .table01 .tr04 th,
.page_content.page_reserved .reserved_fee .table01 .tr05 th,
.page_content.page_reserved .reserved_fee .table01 .tr06 th{
  width: 150px;
  text-align: right;
  color: #fff;
  padding: 8px 12px 8px 4px;
  font-size: 15px;
  line-height: 1.2;
}

.page_content.page_reserved .reserved_fee .table01 .tr02 td{
  padding: 8px 0;
}


.page_content.page_reserved .reserved_fee .table01 th span{
  font-size: 22px;
  display: block;
}


.page_content.page_reserved .reserved_fee .table01 .tr03 th{
  background-color: #db978e;
}

.page_content.page_reserved .reserved_fee .table01 .tr04 th{
  background-color: #e1bb56;
}

.page_content.page_reserved .reserved_fee .table01 .tr05 th{
  background-color: #70ad6e;
}

.page_content.page_reserved .reserved_fee .table01 .tr06 th{
  background-color: #68b8b9;
}

.page_content.page_reserved .reserved_fee .table01 .tr01 .row01{
  background-color: #52607d;
}
.page_content.page_reserved .reserved_fee .table01 .tr01 .row02{
  background-color: #d75f5f;
}
.page_content.page_reserved .reserved_fee .table01 .t_none{
  background-color: transparent;
}

.page_content.page_reserved .reserved_fee .table01 .tr03 td,
.page_content.page_reserved .reserved_fee .table01 .tr04 td,
.page_content.page_reserved .reserved_fee .table01 .tr05 td,
.page_content.page_reserved .reserved_fee .table01 .tr06 td{
  font-size: 22px;
  vertical-align: middle;
  font-weight: bold;
  letter-spacing: .05em;
}


.page_content.page_reserved .reserved_fee .table01 .tr03 td:nth-of-type(1),
.page_content.page_reserved .reserved_fee .table01 .tr03 td:nth-of-type(3){
  color: #db978e;
}

.page_content.page_reserved .reserved_fee .table01 .tr04 td:nth-of-type(1),
.page_content.page_reserved .reserved_fee .table01 .tr04 td:nth-of-type(3){
  color: #e1bb56;
}

.page_content.page_reserved .reserved_fee .table01 .tr05 td:nth-of-type(1),
.page_content.page_reserved .reserved_fee .table01 .tr05 td:nth-of-type(3){
  color: #70ad6e;
}

.page_content.page_reserved .reserved_fee .table01 .tr06 td:nth-of-type(1),
.page_content.page_reserved .reserved_fee .table01 .tr06 td:nth-of-type(3){
  color: #68b8b9;
}

/*  */

.page_content.page_reserved .reserved_fee .table01.table02 .tr01 th{
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 15px;
  line-height: 1.2;
  padding: 8px 0;
}

.page_content.page_reserved .reserved_fee .table01.table02 .tr01 th span{
  font-size: 22px;
}

.page_content.page_reserved .reserved_fee .table01.table02 .tr01 th:nth-of-type(4){
  background-color: #70ad6e;
}

.page_content.page_reserved .reserved_fee .table01.table02 .tr01 th:nth-of-type(2){
  background-color: #db978e;
}

.page_content.page_reserved .reserved_fee .table01.table02 .tr01 th:nth-of-type(3){
  background-color: #e1bb56;
}

.page_content.page_reserved .reserved_fee .table01.table02 .tr01 th:nth-of-type(5){
  background-color: #68b8b9;
}

.page_content.page_reserved .reserved_fee .table01.table02 td,
.page_content.page_reserved .reserved_fee .table01.table02 th{
  background-color: transparent;
}

.page_content.page_reserved .reserved_fee .table01.table02 tr:nth-of-type(2n),
.page_content.page_reserved .reserved_fee .table01.table02 tr:nth-of-type(2n){
  background-color: #f8f8f8;
}

.page_content.page_reserved .reserved_fee .table01.table02 tr:nth-of-type(2n-1),
.page_content.page_reserved .reserved_fee .table01.table02 tr:nth-of-type(2n-1){
  background-color: #fff;
}

.page_content.page_reserved .reserved_fee .table01.table02 tr th{
  color: #6d6d6d;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  vertical-align: middle;
}

.page_content.page_reserved .reserved_fee .table01.table02 tr td{
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 8px 0;
}

.page_content.page_reserved .reserved_fee .table01.table02 tr th:nth-of-type(1){
  width: 170px;
}

.page_content.page_reserved .reserved_fee .table01.table02 td:nth-of-type(3){
  color: #70ad6e;
}

.page_content.page_reserved .reserved_fee .table01.table02 td:nth-of-type(1){
  color: #db978e;
}

.page_content.page_reserved .reserved_fee .table01.table02 td:nth-of-type(2){
  color: #e1bb56;
}
.page_content.page_reserved .reserved_fee .table01.table02 td:nth-of-type(4){
  color: #68b8b9;
}

.page_content.page_reserved .reserved_fee .table01.table02 h3{
  padding-top: 75px;
}

.page_content.page_reserved .reserved_fee .table01.table02 ul{
  font-size: 15px;
  color: #6d6d6d;
  margin: 40px 0 0;
}


.page_content.page_reserved section.reserved_faq  h2{
  margin-top: 0;
}

.page_content.page_reserved section.reserved_faq{
  background: url(../img/page/reserved/bg_orange.png) center center repeat-y;
  background-size: cover;
}
.page_content.page_reserved section.reserved_faq .ac{
  box-shadow: 2px 3px 10px rgb(0 0 0 / 18%);
}
.page_content.page_reserved section.reserved_faq .ac-parent{
  color: #3c9710;
}
.page_content.page_reserved .page_faq .ac-parent span:after{
  content: '';
  background: url(../img/page/reserved/open.svg) no-repeat right top;
}

@media screen and (max-width: 767px){
  .page_content.page_reserved .reserved_fee{
    padding-bottom: 60px;
  }
  .page_content.page_reserved .page_content_tit {
    width: 46%;
    margin: 0 auto 1vw;
  }
  .page_content.page_reserved .page_content_tit span img{
    width: 100%;
    height: auto;
  }
  .page_content.page_reserved .page_mv{
    padding: 0;
  }
  .page_content.page_reserved section{
    padding: 30px 15px 0;
  }
  .page_content.page_reserved div.sub_text h3{
    width: fit-content;
  }
  .page_content.page_reserved div.sub_text h3::before{
    top: -30px;
    right: 0;
  }
  .page_content.page_reserved div.sub_text h3 img{
    width: 60%;
    display: block;
    margin: 0 auto;
  }
  .page_content.page_reserved div.sub_text p{
    padding: 0 15px;
    text-align: left;
  }
  .page_content.page_reserved .reserved_nav{
    display: block;
    max-width: 80%;
    padding: 0;
    text-align: center;
    margin: 0 auto;
    border-radius: 20px;
  }
  .page_content.page_reserved .inner_reserved.fit .fit_inner{
    width: fit-content;
    margin-right: auto;
    padding: 0;
    text-align: center;
  }
  .page_content.page_reserved .inner_reserved.fit .fit_inner img{
    width: 148px;
    padding: 20px 0;
  }
  .page_content.page_reserved .inner_reserved.fit .fit_inner p{
    line-height: 1.5;
  }
  .page_content.page_reserved .reserved_nav li a{
    font-size: 16px;
    padding: 16px 26px;
  }
  .page_content.page_reserved .reserved_nav li:not(:last-of-type){
    border-bottom: 2px solid #ffa13d;
    border-right: 0;
  }
  .page_content.page_reserved section.reserved_plan ul li h3{
    margin: 0 auto 18px;
  }
  .page_content.page_reserved section.reserved_plan ul li:nth-of-type(1) h3{
    width: 200px;
  }
  .page_content.page_reserved section.reserved_plan ul li:nth-of-type(2) h3{
    width: 200px;
  }
  .page_content.page_reserved section.reserved_plan ul li:nth-of-type(3) h3{
    width: 180px;
  }
  .page_content.page_reserved section.reserved_example{
    padding: 30px 15px 0;
  }
  .page_content.page_reserved section.reserved_example h2{
    margin: 55px auto 20px;
    width: 300px;
  }
  .page_content.page_reserved section.reserved_example ul.ex01 li{
    background-size: 4.5%;
    padding: 32px 15px;
  }
  .page_content.page_reserved section.reserved_example ul li:not(:nth-last-of-type(1)){
    margin-bottom: 32px;
  }
  .page_content.page_reserved section.reserved_example ul.ex01 li h3{
    margin: 0 auto 10px;
  }
  .page_content.page_reserved section.reserved_example ul.ex01 li:nth-of-type(1) h3{
    width: 230px;
    height: auto;
  }
  .page_content.page_reserved section.reserved_example ul.ex01 li:nth-of-type(2) h3{
    width: 266px;
    height: auto;
  }
  .page_content.page_reserved section.reserved_example ul.ex01 li:nth-of-type(3) h3{
    width: 200px;
    height: auto;
  }
  .page_content.page_reserved section.reserved_example ul.ex02 li h3{
    margin: 0;
    min-height: auto;
  }
  .page_content.page_reserved section.reserved_example .example_inner{
    display: block;
  }
  .page_content.page_reserved section.reserved_example .example_inner .example_photo{
    width: 100%;
  }
  .page_content.page_reserved section.reserved_example .example_inner .example_text{
    width: 100%;
  }
  .page_content.page_reserved section.reserved_example .example_inner .example_text p{
    font-size: 14px;
    line-height: 1.5;
  }
  .page_content.page_reserved section.reserved_example .example_inner dl dt{
    padding-bottom: 8px;
  }
  .page_content.page_reserved section.reserved_example .example_inner dl:nth-of-type(1) dt{
    width: 116px;
  }
  .page_content.page_reserved section.reserved_example .example_inner dl:nth-of-type(2) dt{
    width: 148px;
  }
  .page_content.page_reserved section.reserved_example .example_inner dd{
    font-size: 14px;
    line-height: 1.5;
  }
  .page_content.page_reserved ul.ex02{
    margin-top: 20px;
  }
  .page_content.page_reserved ul.ex02 li h3 {
    font-size: 20px;
    padding: 0 0 0 50px;
  }
  .page_content.page_reserved ul.ex02 li:first-of-type h3::after {
    width: 50px;
    height: 45px;
  }
  .page_content.page_reserved ul.ex02 li:nth-child(2) h3::after {
    width: 50px;
    height: 45px;
  }
  .page_content.page_reserved ul.ex02 li:nth-child(3) h3::after {
    width: 50px;
    height: 45px;
  }
  .page_content.page_reserved ul.ex02 li:first-of-type dl dt::after {
    width: 151px;
    height: 115px;
    left: 0;
    bottom: -70px;
    transform: rotate(-15deg);
  }
  .page_content.page_reserved ul.ex02 li:nth-child(2) dl dt::after {
    width: 92px;
    height: 93px;
    right: 30px;
    left: auto;
    bottom: -58px;
    transform: inherit;
  }
  .page_content.page_reserved ul.ex02 li:nth-child(3) dl dt::after {
    width: 150px;
    height: 115px;
    left: 0;
    bottom: -90px;
    transform: none;
  }

  .page_content.page_reserved ul.ex02 li dl dd span img {
    position: relative;
    top: -6px;
    left: -10px;
    width: inherit;
  }
  .page_content.page_reserved section.reserved_example .ex02_ttl h2{
    margin-top: 32px;
  }
  .page_content.page_reserved section h2 {
    font-size: 28px;
  }
  .page_content.page_reserved .top_area.reserved_area .inner100{
    padding: 0;
  }
  .page_content.page_reserved .top_area.reserved_area .area_link ul {
    padding: 0;
  }
  .page_content.page_reserved .top_area.reserved_area .area_link{
    padding: 0 0 60px;
  } 
  .page_content.page_reserved .top_area.reserved_area .area_link li h3{
    top: 140px;
  }
  .page_content.page_reserved .top_area{
    background: none;
  }

  .page_content.page_reserved .top_area.reserved_area .area_link li{
    top: 15px;
  }

  .page_content.page_reserved .top_area.reserved_area .area_link p{
    margin: 32px 0 0;
  }

  .page_content.page_reserved .top_area.reserved_area .area_link li:not(:last-of-type){
    margin-bottom: 160px;
  }
  .page_content.page_reserved .top_area.reserved_area .area_link li:last-of-type{
    margin-bottom: 80px;
  }

  .page_content.page_reserved .reserved_cta{
    padding: 66px 0;
  }

  .page_content.page_reserved .reserved_cta .cta_inner{
    max-width: 90%;
    margin: 0 auto;
    padding: 32px 0;
  }
  
  .page_content.page_reserved .reserved_cta .cta_inner .cta_btn{
    width: 90%;
    margin: 22px auto 0;
  }
  .page_content.page_reserved section.reserved_area h2{
    padding-top: 40px;
  } 
  .page_content.page_reserved .reserved_fee table{
    margin: 0 auto;
    width: fit-content;
    max-width: 615px;
  }
  .page_content.page_reserved .reserved_fee .table01 h3{
    font-size: 20px;
    padding-top: 0;
    line-height: 1.6;
  }
  .page_content.page_reserved .reserved_fee .table01 small{
    max-width: 615px;
    margin: 0 auto;
  }
  .page_content.page_reserved .reserved_fee .table01 td{
    width: auto;
  }
  .page_content.page_reserved .reserved_fee .table01 .tr01 th{
    font-size: 18px;
  }
  .page_content.page_reserved .reserved_fee .table01 .tr02 td{
    font-size: 14px;
    width: calc(100vw / 3);
  }
  
  .page_content.page_reserved .reserved_fee .table01 .tr03 th,
  .page_content.page_reserved .reserved_fee .table01 .tr04 th,
  .page_content.page_reserved .reserved_fee .table01 .tr05 th,
  .page_content.page_reserved .reserved_fee .table01 .tr06 th{
    width: auto;
    font-size: 12px;
  }
  .page_content.page_reserved .reserved_fee .table01 th span{
    font-size: 18px;
    display: inline;
  }
  .page_content.page_reserved .reserved_fee .table01 .tr03 td,
  .page_content.page_reserved .reserved_fee .table01 .tr04 td,
  .page_content.page_reserved .reserved_fee .table01 .tr05 td,
  .page_content.page_reserved .reserved_fee .table01 .tr06 td{
    font-size: 18px;
  }
  .page_content.page_reserved .reserved_fee .table01.table02 .tr01 th{
    font-size: 11px;
  }
  .page_content.page_reserved .reserved_fee .table01.table02 .tr01 th span{
    font-size: 14px;
  }
  .page_content.page_reserved .reserved_fee .table01.table02 h3{
    padding-top: 40px;
  }
  .page_content.page_reserved .reserved_fee .table01.table02 td{
    width: 18%;
  }
  .page_content.page_reserved .reserved_fee .table01.table02 tr th{
    font-size: 16px;
  }
  .page_content.page_reserved .reserved_fee .table01.table02 ul{
    font-size: 13px;
    margin-top: 20px;
  }
  .page_content.page_reserved ul.ex02 li:not(:nth-of-type(2)) dl dd {
    text-align: right;
    padding-right: 40px;
  }
  .page_content.page_reserved ul.ex02 li:nth-of-type(2) dl dd {
    text-align: left;
    padding-left: 40px;
  }
}

@media screen and (min-width: 767px) {
  .page_content.page_reserved .top_area.reserved_area .area_link li:hover {
    transform: none;
  }
  .page_content.page_reserved .top_area .area_link li.small {
    transform: none;
  }
}


@media screen and (max-width: 634px) {
  .page_content.page_reserved .reserved_fee .table01 th span{
    display: block;
  }
}

