@charset "utf-8";


/*---------------------------------------------
	body
---------------------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}


/* 10px */
body {
  width: 100%;
  font-size: 1.7rem;
  line-height: 1.8;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  position: relative;
  color: #000;
  background: #fff;
  letter-spacing: 0.02em;
  overflow: hidden;
}

_::-webkit-full-page-media,
_:future,
:root .text {
  font-family: 'Noto Sans JP', sans-serif;
}


p {
  text-align: left;
}

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

.mincho {
  font-family: 'Noto Serif JP', serif;
}

.eigo {
  font-family: 'Allura', cursive;
}



/*---------------------------------------------
	Anchor
---------------------------------------------*/
a {
  outline: none;
}

a:link {
  color: #e19797;
  text-decoration: none;
}

a:visited {
  color: #e19797;
  text-decoration: none;
}

a:hover {
  color: #a8eff6;
  text-decoration: none;
}

a:active {
  color: #a8eff6;
  text-decoration: none;
}

a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

#merit01,
#facility {
  padding-top: 30px;
  margin-top: -30px;
  display: block;
  pointer-events: none;
}


#anc_entry {
  padding-top: 30px;
  margin-top: -30px;
  display: block;
  pointer-events: none;
}

#anc_cuisine {
  padding-top: 10px;
  margin-top: -10px;
  display: block;
  pointer-events: none;
}




/*---------------------------------------------
	p
---------------------------------------------*/
p {
  margin-bottom: 1.5em;
}

.only_pc_none {
  display: none;
}

.only_sp_none {
  display: block;
}

.sp_br {
  display: none;
}

.pc_br {
  display: inline;
}


/*---------------------------------------------
 ** ON OFF hover
---------------------------------------------*/
.hover {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.hover:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}

/*=================================================================================================================================*/
/**  共通部分	*/
/*=================================================================================================================================*/

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.scroll-up.done,
.scroll-fade.done {
  opacity: 1;
  transform: translate(0, 0);
}

.load-fade {
  opacity: 0;
  transition: all 4s
    /*処理にかかる時間*/
  ;
}

.mb_8 {
  margin-bottom: 8%;
}

.load-up {
  opacity: 0;
  transform: translateY(30px)
    /*スクロールアップする距離*/
  ;
  transition: all 4s
    /*処理にかかる時間*/
  ;
}

.load-up.done,
.load-fade.done {
  opacity: 1;
  transform: translate(0, 0);
}

.btn_tri {
  position: relative;
  display: inline-block;
  padding: 3px 30px 0px 20px;
  text-align: center;
  outline: none;
  font-size: 90%;
  background: #003399;
  color: #fff !important;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.btn_tri::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 4px solid #003399;
  box-sizing: border-box;
  z-index: -1;
  transform: scale(0.8);
  opacity: 0;
  transition: transform ease .3s, opacity .3s;
}

.btn_tri:hover {
  color: #003399 !important;
  background: transparent;
}

.btn_tri:hover::before {
  transform: scale(1);
  opacity: 1;
}

.btn_tri span::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 35%;
  right: 7px;
  margin: auto;
  box-sizing: border-box;
  border: 5px solid transparent;
  border-left: 8px solid #fff;
  transition: transform ease .3s, opacity .3s;
}

.btn_tri:hover span::after {
  border-left: 8px solid #003399;
}

.btn_white,
.btn_pink {
  text-align: center;
}

.btn_white a {
  min-width: 140px;
  height: 40px;
  font-size: 130%;
  font-weight: lighter;
  display: inline-block;
  line-height: 1.4;
  padding: 5px 10px 0 0;
  box-sizing: border-box;
  position: relative;
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
}

.btn_pink a {
  min-width: 140px;
  height: 90px;
  font-size: 120%;
  font-weight: 500;
  display: inline-block;
  line-height: 1.4;
  padding: 15px 30px;
  box-sizing: border-box;
  position: relative;
  color: #e19797;
  border: 1px solid #e19797;
  text-align: center;
  margin: 2% auto 5%;
  box-sizing: border-box;
}


.btn_white a::before,
.btn_pink a::before {
  content: '';
  width: 0%;
  height: 90px;
  background: #fff;
  opacity: 0.3;
  transition: all 0.3s;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.btn_white a:hover::before {
  content: '';
  width: 100%;
  height: 40px;
  background: #fff;
}

.btn_white a::after {
  content: '';
  display: block;
  width: 60px;
  height: 10px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  /*傾きを調節*/
  transform: skew(45deg);
  /*下線矢印をテキストに合わせてうまい具合にはめる*/
  margin: -10px 0 0 -25px;
  position: absolute;
  top: 48%;
  right: -15px;
  transition: all 0.3s;
}

.btn_white a:hover:after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  right: -30px;
}

.btn_pink a:hover::before {
  content: '';
  width: 100%;
  height: 90px;
  background: #e19797;
}

.btn_pink a::after {
  content: '';
  display: block;
  width: 60px;
  height: 10px;
  border-bottom: 1px solid #e19797;
  border-right: 1px solid #e19797;
  /*傾きを調節*/
  transform: skew(45deg);
  /*下線矢印をテキストに合わせてうまい具合にはめる*/
  margin: -10px 0 0 -25px;
  position: absolute;
  top: 48%;
  right: -35px;
  transition: all 0.3s;
}

.btn_pink a:hover:after {
  border-bottom: 1px solid #e19797;
  border-right: 1px solid #e19797;
  right: -50px;
}


/*---------------------------------------------
 ** フェードイン
---------------------------------------------*/
.scrollanime {
  opacity: 0;
}

/*一瞬表示されるのを防ぐ*/
.fadeInDown {
  animation-name: fadeInDown;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-delay: 2s;
  opacity: 0;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

/*2.上下の動きを指定*/
.updown {
  transform: translateY(-50px);
}

.downup {
  transform: translateY(50px);
}

/*3.左右の動きを指定*/
.sect02 {
  overflow: hidden;
}

/*横スクロールバーを隠す*/
.slide-right {
  transform: translateX(100px);
}

.slide-left {
  transform: translateX(-100px);
}


/*---------------------------------------------
 ** ローディング
---------------------------------------------*/

.start {
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}

.start p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 70%;
  max-width: 350px;
}


/* fadeUpをするアイコンの動き */

.fadeIn {
  animation-name: fadeUpAnime;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: block !important;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ジャンプする動き */
.jump_on {
  animation: poyoyon 1s ease-in-out 1 forwards;
  animation-delay: 2s;
  mix-blend-mode: multiply;
}

.jump_on02 {
  animation: poyoyon 1s ease-in-out 1 forwards;
  animation-delay: 1s;
}

.jump_on03 {
  animation: poyoyon 1s ease-in-out 1 forwards;
  animation-delay: 1.5s;
}

@keyframes poyoyon {
  0% {
    transform: scale(0.5, 0.5) translate(0, 0);
  }

  15% {
    transform: scale(0.7, 0.7) translate(0, 8px);
  }

  30% {
    transform: scale(1.02, 1.0) translate(0, 12px);
  }

  50% {
    transform: scale(0.98, 1.05) translate(0, -12px);
  }

  70% {
    transform: scale(1.0, 0.9) translate(0, 8px);
  }

  100% {
    transform: scale(1.0, 1.0) translate(0, 0);
  }

  0%,
  100% {
    opacity: 1;
  }
}


/*---------------------------------------------
 ** ヘッダー　ナビ
---------------------------------------------*/

header {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 9999;
}


h1 {
  position: absolute;
  top: 0px;
  left: 20px;
  z-index: 10;
}


#head_contact {
  width: 75%;
  z-index: 5;
}

.navOpen #head_btn {
  background: unset;
}

header h1 {
  width: 240px;
  margin-top: 20px;
  margin-left: 10px;
  z-index: 10;
}

header.navOpen h1 {
  width: 240px;
  margin-top: 20px;
  margin-left: 10px;
  z-index: 10;
  position: fixed;
}

header h1 img:nth-child(2) {
  opacity: 0;
}

header.navOpen h1 img:nth-child(1) {
  display: none;
}

header.navOpen h1 img:nth-child(2) {
  animation: fadeIn 2s 1 forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1
  }

  100% {
    opacity: 0
  }
}

/* ぼやけながらフェードイン */
@keyframes blur {
  0% {
    filter: blur(100px);
    opacity: 0;
  }

  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes slide_left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}


/*---------------------------------------------
 ** メイン
---------------------------------------------*/
#main {
  width: 100%;
  height: 100vh;
  margin: 0 auto 0;
  z-index: 0;
  background: url(../img/main_bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}


.main_ttl {
  width: 40%;
  height: 680px;
  display: block;
  max-width: 980px;
  position: absolute;
  top: 7%;
  left: 5%;
}

.main_ttl>img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: main_anime 1.5s ease-in-out 1 forwards;
  animation-delay: 1.5s;
  opacity: 0;
}

@keyframes main_anime {
  0% {
    transform: rotate(0);
    opacity: 0;
  }

  100% {
    transform: rotate(380deg);
    opacity: 1;
  }
}

.main_ttl>img:nth-child(1) {
  mix-blend-mode: screen;

}

.main_ttl>div {
  width: 77%;
  position: absolute;
  top: 32%;
  left: 0;
  right: 0;
  margin: 0 auto;
  animation: main_anime2 1s ease-in-out 1 forwards;
  animation-delay: 2s;
  opacity: 0;
}

@keyframes main_anime2 {
  0% {
    opacity: 0;
    transform: rotate(15deg);
  }

  100% {
    opacity: 1;
    transform: rotate(0);

  }
}


.main_ttl>div>img:nth-child(1) {
  width: 60%;
  display: block;
  margin: 0% auto -10%;
}

.main_ttl>div>img:nth-child(2) {
  width: 100%;
  margin-top: 4%;
}

#main_camp_pc {
  width: 100%;
  background: #e19797;
  padding: 15px 0;
  display: block;
  position: absolute;
  bottom: 0;
  z-index: 10;
}
#main_camp_pc>p{
  width: 88%;
  max-width: 1030px;
  margin:0 auto 10px;
  background:url(../img/plus/plus_limited_bg.png) repeat-x left center;
  background-size:auto 10px;
  text-align: center;
}
#main_camp_pc>p>img{
  width:95%;
  max-width:720px;
  background:#e19797;
  display: block;
  margin:0 auto;
  padding:10px 15px;
}

#main_camp_pc>div {
  width: 90%;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#main_camp_pc>div>img {
  margin: 0 5px;
}

#main_camp_pc>div>img:nth-child(1) {
  width: 40%;
}

#main_camp_pc>div>img:nth-child(2) {
  width: 45%;
}


/* #main_camp_pc>div>img:nth-child(3) {
  width: 5%;
}
 */

#main_sp {
  display: none;
}

@media screen and (max-width: 1850px) {
  #main {
    background: url(../img/main_bg.jpg) no-repeat right 20% center;
    background-size: cover;
  }

  .main_ttl>div {
    width: 73%;
  }
}

@media screen and (max-width: 1960px) {
  .main_ttl {
    top: 12%;
  }

  .main_ttl>div {
    top: 26%;
  }
}

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


  .main_ttl>div {
    top: 21%;
  }
}

@media screen and (max-width: 1350px) {
  .main_ttl>div {
    top: 18%;
  }
}

@media screen and (max-width: 1050px) {
  .main_ttl>div {
    top: 15%;
  }
}



/*---------------------------------------------
 **  コンテンツ
---------------------------------------------*/

.camp {
  background: url(../img/camp_bg.jpg) no-repeat;
  background-size: cover;
  overflow: hidden;
}

.camp>div {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  padding: 0 0 1%;
}


.camp>div>h2 {
  width: 60%;
  max-width: 600px;
  margin-bottom: 5%;
  padding: 0;
}

.camp_box {
  z-index: 2;
}

h2 {
  color: #e19797;
  padding: 60px 0 0;
  margin-bottom: 3%;
  font-size: 110%;
  position: relative;
}

.camp h2 {
  background: url(../img/h2_camp.png) no-repeat top center;
  background-size: 350px auto;
}

.now_entry>img{
  width:90%;
  max-width:1200px;
  margin:-10px auto 50px;
}
.now_entry a {
  width: 90%;
  max-width: 900px;
  margin: 0 auto 4%;
  background: url(../img/now_entry_bg.png) repeat-y top left;
  background-size: 100% auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s;
  position: relative;
  overflow: visible;
}

.now_entry a:hover {
  transform: scale(1.05);
}

.now_entry a::before {
  content: '';
  width: 140px;
  height: 140px;
  background: url(../img/limit.png) no-repeat top left;
  background-size: 100% auto;
  position: absolute;
  top: -40px;
  right: -70px;
}

.now_entry strong {
  width: 45%;
  text-align: right;
  font-size: 190%;
  font-weight: 500;
  color: #e19797;
}

.now_entry p {
  width: 50%;
  margin-bottom: 0;
  font-size: 120%;
  font-weight: 500;
}

.now_entry a p {
  color: #000;
}

.now_entry p span {
  background: #e19797;
  color: #fff;
  text-align: center;
  padding: 3px 10px;
  margin-right: 10px;
  font-size: 80%;
}
.plus_present{
  width:90%;
  max-width:1000px;
  margin:-2% auto 4%;
  display: block;
}

@media screen and (max-width: 1050px) {
  .now_entry a {
    max-width: 600px;
    padding: 1.5% 0;
  }

  .now_entry a::before {
    content: '';
    width: 120px;
    top: 10px;
    right: -20px;
  }

  .now_entry strong {
    width: 100%;
    text-align: center;
  }

  .now_entry p {
    width: 100%;
    text-align: center;
  }

}

.camp_about {
  max-width: 900px;
  margin: 0 auto 3%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  line-height: 1.6;
}

.camp_about>div:nth-child(1) {
  width: 42%;
  background: #fff;
  padding: 4% 5% 1%;
  box-sizing: border-box;
}

.camp_about>div:nth-child(1) dl {
  margin-bottom: 8%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
}

.camp_about>div:nth-child(1) dl dt {
  display: inline-block;
  padding: 0 15px;
  background: #e19797;
  color: #fff;
  margin-bottom: 8px;
}



.camp_about>div:nth-child(2) {
  width: 53%;
  background: #fff;
  padding: 4%;
  box-sizing: border-box;
}

.camp_about>div:nth-child(2) strong {
  width: 95%;
  margin: 8px auto 10px;
  border: 1px solid #e19797;
  color: #e19797;
  font-weight: 500;
  font-size: 200%;
  padding: 6px 7%;
  box-sizing: border-box;
  display: block;
}

.camp_about>div:nth-child(2) p {
  margin-bottom: 10px;
}

.camp_about>div:nth-child(2) p:nth-of-type(2) {
  margin-bottom: 2%;
  text-align: center;
}


@media screen and (max-width: 980px) {
  .camp h2 {
    background-size: 280px auto;
    padding-top: 50px;
  }

  .camp_about>div:nth-child(1) {
    width: 90%;
    margin: 0 auto 5%;
  }

  .camp_about>div:nth-child(2) {
    width: 90%;
    margin: 0 auto 3%;
  }

  .camp_about>div:nth-child(1) dl dt {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    font-size: 110%;
  }

  .camp_about>div:nth-child(1) dl dd {
    width: 100%;
    text-align: center;
    display: block;
  }

  .camp_about>div:nth-child(1) dl dd br {
    display: none;
  }
}

.exclusive {
  width: 100%;
  max-width: 900px;
  margin: 5% auto 3%;
  text-align: center;
  position: relative;
  z-index: 0;
}

.exclusive::after {
  content: '';
  width: 100%;
  height: 3px;
  background: #e19797;
  position: absolute;
  display: block;
  top: 28px;
  z-index: -1;
}

.exclusive img {
  width: 300px;
  margin: 0 auto;
  z-index: 2;
}

.about {
  width: 100%;
  margin: 0 auto;
  padding: 3% 0 6%;
  background:url(../img/plus/plus_about_bg.jpg) no-repeat center top;
  background-size:cover;
}

.slide_left {
  width: 50%;
  position: relative;
  z-index: -1;
  opacity: 0;
  overflow: hidden;
}


.slide_left_on {
  opacity: 1;
}

img.blur {
  opacity: 0;
}

img.blur_on {
  animation-name: blur;
  animation-timing-function: ease-out;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}



.slide_left_on::before {
  content: '';
  width: 100%;
  height: 1000px;
  background: #f9edf1;
  display: block;
  animation-name: slide_left;
  animation-timing-function: ease-out;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  position: absolute;
  left: 0;
  top: 0;
}


.about_data {
  width: 90%;
  max-width:1200px;
  margin: 0 auto;
  padding: 0 3%;
  box-sizing: border-box;
}

.about h2 {
  width: 50%;
  max-width: 210px;
  margin: 0 auto 7%;
}

.about_data p {
  text-align: center;
}

.green_present {
  width: 110%;
  height: 1500px;
  overflow: visible;
  position: absolute;
  top: -200px;
  left: -5%;
}

.green_present2 {
  width: 130%;
  top: 45%;
  left: -15%;
}

.green_present img {
  mix-blend-mode: screen;
}



@media screen and (max-width: 1170px) {
  .slide_left {
    width: 100%;
    max-width: 680px;
  }

  .about_data {
    width: 100%;
  }

  .about h2 {
    margin-bottom: 3%;
  }

  .green_present img.greenpresent {
    max-width: 400px;
    margin-top: 30px;
  }
}

@media screen and (max-width: 950px) {
  .slide_left {
    width: 100%;
    max-width: 600px;
  }

  .about_data {
    width: 100%;
    text-align: center;
  }


  .about h2 {
    text-align: center;
    background: url(../img/h2_about.png) no-repeat top center;
    background-size: 200px auto;
    padding-top: 60px;
    margin-bottom: 10%;
  }

  .about h2::before {
    bottom: -20%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .about div p {
    text-align: center;
  }
}

.camp_head {
  background: url(../img/old/flower01.jpg) no-repeat top center;
  background-size: auto 100%;
  padding: 5% 0;
}

.camp_head_no_bg {
  background: none !important;
}

.camp_head>div {
  width: 90%;
  max-width: 1000px;
  background: url(../img/old/pink_bg.jpg) no-repeat top center;
  background-size: cover;
  padding: 60px 3%;
  box-sizing: border-box;
  margin: 0 auto;
}

.camp_head01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative
}

.flower_p17 {
  width: 50%;
  overflow: visible;
  position: absolute;
  top: -50%;
  left: -15%;
  z-index: 0;
}

.flower17 {
  width: 50%;
  padding-top: 50px;
}

.camp_head01 .flower17 {
  width: 60px;
  padding-top: 50px;
}


.flower_p18 {
  width: 50%;
  overflow: visible;
  position: absolute;
  top: 90%;
  right: -15%;
}

.flower18 {
  width: 50%;
  padding-top: 50px;
}

.camp_head01 .flower18 {
  width: 100px;
  padding-top: 50px;
}

.camp_head01 h2 {
  width: 40%;
  font-size: 460%;
  position: relative;
  color: #e19797;
  font-family: 'Allura', cursive;
  line-height: 1.0;
}

.camp_head01 h2 span {
  font-size: 2.4rem;
  display: inline-block;
  position: absolute;
  top: -10px;
  right: 2%;
}

.camp_head01 p {
  width: 55%;
  font-size: 110%;
  border-left: 4px solid #e19797;
  padding-left: 3%;
  box-sizing: border-box;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.camp_head01 p span {
  font-size: 180%;
  display: block;
  line-height: 1.6;
  text-indent: 0.2em;
}

.camp_head02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.camp_head02>div:nth-child(1) {
  width: 40%;
  padding: 3% 3% 1%;
  box-sizing: border-box;
  background: #fff;
  text-align: left;
}

.camp_head02>div dl {
  margin-bottom: 10%;
}

.camp_head02>div>dl>dt {
  display: block;
  background: #e19797;
  color: #fff;
  letter-spacing: 0.1em;
  padding: 0 3%;
  margin-bottom: 1%;
  min-width: 8em;
  text-align: center;
  white-space: nowrap;
}


.camp_head02>div:nth-child(2) {
  width: 55%;
  padding: 3% 4%;
  box-sizing: border-box;
  background: #fff;
}

.camp_head02>div:nth-child(2) p a {
  font-size: 200%;
  display: block;
  text-align: center;
  background: #d5b45c;
  letter-spacing: 0.1em;
  color: #717071 !important;
  transition: all 0.5s;
}

.camp_head02>div:nth-child(2) p a:hover {
  background: #f4e0a7;
}

.camp_head02>div:nth-child(2) p {
  margin-bottom: 10px;
}

.camp_head02>div:nth-child(2) p:nth-child(3) {
  text-align: center;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 950px) {
  .camp_head02>div:nth-child(1) {
    width: 100%;
    padding: 3% 3% 1%;
    margin-bottom: 5%;
  }

  .camp_head02>div dl {
    margin-bottom: 3%;
  }

  .camp_head02>div:nth-child(2) {
    width: 100%;
    padding: 3% 4%;
  }
}

.camp_head03 {
  width: 100%;
  margin: 0 auto 5%;
  background: #e19797 !important;
  font-size: 200%;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0 !important;
}

#camp_gaiyo {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 5%;
  position: relative;
  padding: 8% 0;
  z-index: 1;
}

#camp_gaiyo h2 {
  color: #e19797;
  font-size: 260%;
  margin-bottom: 6%;
  position: relative;
  font-weight: 500;
}

#camp_gaiyo h2:before {
  content: '';
  display: block;
  width: 300px;
  height: 3px;
  background: #e19797;
  position: absolute;
  bottom: -20px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

#camp_gaiyo p {
  text-align: center;
}



.flower_p>div {
  height: 1200px !important;
  overflow: visible;
  pointer-events: none;
}

.flower_p02 {
  opacity: 1;
}

.flower_p02>div {
  overflow: visible !important;
}

#camp_gaiyo img.flower02 {
  width: 180px;
  padding-top: 50px;
}

.flower_p03 {
  width: 50%;
  overflow: visible;
  position: absolute;
  top: 50%;
  right: -20%;
}

#camp_gaiyo img.flower03 {
  width: 180px;
  padding-top: 50px;
}

#camp_present {
  background: url(../img/present_bg.jpg) no-repeat bottom right;
  background-size: cover;
  z-index: 1;
  padding: 55px 0 10px;
  margin-bottom: 50px;
  position: relative;
}

.present_head {
  padding: 15px 0;
  background: #e19797;
  font-weight: 500;
}

.present_head>div {
  max-width: 890px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 190%;
}

.present_head ul {
  width: 68%;
  margin-left: 4%;
}

.present_head ul li {
  display: inline-block;
  background: #fff;
  padding: 0 20px;
  color: #e19797;
  margin-right: 2%;
  line-height: 1.4;
  box-sizing: content-box;
  white-space: nowrap;
}


.present_head span {
  width: 28%;
  font-size: 130%;
  color: #fff;
  line-height: 1.2;
  text-align: left;
}

.present_list {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto 5%;
  position: relative;
  z-index: 0;
}

#present_resort {
  background: url(../img/pre_res_bg.jpg) no-repeat top center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding-bottom: 60%;
  pointer-events: none
}

#camp_present h2 {
  width: 40%;
  max-width: 280px;
  margin: 0 auto 3%;
}

.present_set {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 4%;
  background: url(../img/now_entry_bg.png) repeat-y top left;
  background-size: 100% auto;
  padding: 2.5% 0 1.5%;
  text-align: center;
}

.present_set ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.present_set ul li {
  padding: 0 3%;
  line-height: 1.6;
  margin: 0 10px 8px;
  background: #d5b45c;
  color: #fff;
  font-size: 180%;
  text-align: center;
  box-sizing: border-box;
}

.present_set p {
  text-align: center;
  font-size: 300%;
  font-weight: 500;
  color: #e19797;
  margin: 0;
}
.present_set p br{
  display: none;
}

.present_list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 auto;
}

.present_list dl {
  width: 22%;
  margin-right: 4%;
  margin-bottom: 5%;
}

.present_list dl:nth-child(4n) {
  margin-right: 0;
}

.present_list dl dt {
  width: 100%;
  margin-bottom: 3%;
}

.present_list dl dd {
  width: 100%;
  font-size: 110%;
  text-align: center;
  line-height: 1.4;
  font-weight: 400;
}

.present_list dl:last-child {
  width: 35%;
  margin-left: 8%;
  text-align: center;
}

.present_list dl:last-child ul {
  display: inline-block;
  margin: 12% auto 0;
}

.camp_last li {
  font-size: 90%;
  line-height: 1.8;
  text-align: left;
  text-indent: -1.7rem;
  margin-left: 1.0rem;
}

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

  .present_list dl dd {
    font-size: 105%;
  }
}

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

  .present_list {
    justify-content: center;
  }

  .present_list dl {
    width: 29%;
    margin-right: 4.333%;
    margin-bottom: 5%;
  }

  .present_list dl:nth-child(4n) {
    margin-right: 4.333%;
  }

  .present_list dl:nth-child(3n) {
    margin-right: 0;
  }

  .present_list dl:last-child {
    width: 100%;
    margin-left: 0;
  }

  .present_list dl:last-child ul {
    margin: 2% auto 0;
  }

  .green_present2 {
    top: 55%;
  }

}

.present_list dl dd span {
  font-size: 13px;
  display: block;
  margin-top: 2px;
  font-weight: normal;
}


#soft_resort {
  padding: 3% 0 3%;
}

#soft_resort h2 {
  width: 70%;
  max-width: 450px;
  margin: 0 auto 3%;
}

#soft_resort>div {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto 3%;
  position: relative;
}

.green_resort {
  width: 60%;
  height: 500px;
  overflow: visible;
  position: absolute;
  top: -20%;
  right: -30%;
  z-index: 2;
}

.green_resort img.greenresort {
  width: 80%;
  max-width: 600px;
}


#soft_resort p {
  line-height: 2.2;
  letter-spacing: 0.1rem;
  text-align: center;
}

.resort_spot>div {
  position: relative;
}

.resort_spot01 {
  width: 40%;
  margin-left: 0;
  margin-top: 0%;
}

.resort_spot01 img:nth-child(2) {
  width: 320px;
  position: absolute;
  left: 35%;
  top: 85%;
}

.resort_spot02 {
  width: 40%;
  margin-left: 50%;
  margin-top: -20%;
}

.resort_spot02 img:nth-child(2) {
  width: 350px;
  position: absolute;
  right: -10%;
  top: 90%;
}

.resort_spot03 {
  width: 40%;
  margin-left: 5%;
  margin-top: 0%;
}

.resort_spot03 img:nth-child(2) {
  width: 380px;
  position: absolute;
  left: -5%;
  top: 90%;
}

.resort_spot04 {
  width: 40%;
  margin-left: 55%;
  margin-top: -20%;
}

.resort_spot04 img:nth-child(2) {
  width: 280px;
  position: absolute;
  right: 0%;
  top: 90%;
}

.resort_spot05 {
  width: 40%;
  margin-left: 10%;
  margin-top: -3%;
}

.resort_spot05 img:nth-child(2) {
  width: 280px;
  position: absolute;
  left: 95%;
  top: 65%;
}


@media screen and (max-width: 1100px) {
  .resort_spot01 img:nth-child(2) {
    width: 218px;
  }

  .resort_spot02 img:nth-child(2) {
    width: 300px;
  }

  .resort_spot03 img:nth-child(2) {
    width: 280px;
  }

  .resort_spot04 img:nth-child(2) {
    width: 190px;
  }

  .resort_spot05 img:nth-child(2) {
    width: 170px;
  }
}



#travel {
  padding: 5% 0 3%;
  background: url(../img/travel_bg.png) no-repeat center top;
  background-size: 100% 100%;
  margin-top: -50%;
  margin-bottom: 30%;
  position: relative;
  z-index: 5;
}

#travel>div {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

#travel h2 {
  width: 40%;
  max-width: 300px;
  margin: 0 auto 3%;
}

#travel h2+p {
  text-align: center;
  margin: 2% auto 5%;
}

.travel_days {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 3% auto 5%;
}

.travel_days>div:nth-of-type(1) {
  width: 450px;
}

.travel_days>div:nth-of-type(1) h3 {
  width: 200px;
  margin-bottom: 3%;
}

.travel_days>div:nth-of-type(1) dl {
  text-align: left;
  margin-left: 15%;
  margin-bottom: 8%;
}

.travel_days>div:nth-of-type(1) dl dt {
  font-size: 120%;
  font-weight: 500;
}

.travel_days>div:nth-of-type(1) dl dd {
  color: #717071;
  font-size: 90%;
  margin-bottom: 5%;
}

.travel_days>div:nth-of-type(1) dl dd i {
  font-style: normal;
  display: inline-block;
  margin-top: 2%;
}

.travel_days>div:nth-of-type(1) dl dd span {
  display: block;
  text-align: right;
  font-size: 90%;
}


.travel_days>div:nth-of-type(2) {
  width: calc(95% - 450px);
  position: relative;
}

.travel_days>div:nth-of-type(2) img:nth-of-type(1) {
  width: 70%;
  margin-left: 30%;
  margin-top: 3%;
}

.travel_days>div:nth-of-type(2) img:nth-of-type(2) {
  width: 55%;
  position: absolute;
  left: 0;
  top: 300px;
}

#travel .onsen,
#travel #tokuten {
  background: #fff;
  padding: 10% 5% 5%;
  box-sizing: border-box;
  position: relative;
  text-align: center;
  margin: 20% auto 0;
}

#travel #tokuten {
  margin: 12% auto 20%;
}

#travel .onsen h3,
#travel #tokuten h3 {
  width: 90%;
  max-width: 550px;
  margin: 0 auto;
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
}

.onsen_slide {
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  object-fit: cover;
}

.onsen_slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.onsen_slide dl {
  width: 47.5%;
  margin-bottom: 5%;
}

.onsen_slide dl:nth-child(2n) {
  margin-left: 5%;
}

.onsen_slide dl dt {
  position: relative;
}

button {
  width: auto;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  font-size: 0;
  line-height: 0;
  overflow: visible;
  cursor: pointer;
}

.slick-arrow img {
  width: 35px;
  z-index: 1;
}

.slide button:nth-of-type(1) {
  position: absolute;
  top: 42%;
  left: 10px;
  z-index: 2;
  transform: rotate(180deg);
}

.slide button:nth-of-type(2) {
  position: absolute;
  top: 42%;
  right: 10px;
  z-index: 2;
}

.onsen_slide dl dd {
  font-size: 120%;
  margin-top: 5px;
}

#tokuten>div {
  width: 90%;
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

#tokuten>div>dl {
  width: 30%;
  margin-bottom: 4%;
}

#tokuten>div>dl dt {
  margin-bottom: 5%;
  display: block;
  position: relative;
}


#tokuten>div>dl dd {
  font-size: 90%;
  text-align: left;
}

#tokuten>div>dl dd span {
  font-size: 150%;
  font-weight: 500;
  color: #81cde4;
  display: block;
  text-align: center;
  line-height: 1.4;
  height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3%;
}

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

  #travel {
    background: url(../img/travel_bg.png) no-repeat center top;
    background-size: auto 100%;
  }
}

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

  .travel_days {
    margin-top: 6%;
  }

  .travel_days>div:nth-of-type(2) img:nth-of-type(1) {
    width: 90%;
    margin-left: 10%;
  }

  .travel_days>div:nth-of-type(2) img:nth-of-type(2) {
    width: 65%;
    top: 370px;
  }

  #tokuten>div>dl dd span {
    font-size: 130%;
  }
}

#report {
  padding: 5% 0 13%;
  background: url(../img/report_bg.png) no-repeat center top;
  background-size: 100% 100%;
  margin-top: -40%;
  margin-bottom: 30%;
  position: relative;
  z-index: 5;
}

#report>div.bride {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  position:relative;
}
#report .bride h2{
  width:90%;
  max-width:900px;
  margin:0 auto 2%;
  position:absolute;
  top:-430px;
  right:0;
  left:0;
}
.bride_message{
  width:78%;
  height:600px;
  position:relative;
  margin:200px auto 0;
}
.bride_message>img:nth-of-type(1){
  width:65%;
  position:absolute;
  top:0;
  left:0;
}
.bride_message>picture:nth-of-type(1) img{
  width:40%;
  position:absolute;
  top:150px;
  right:0;
}
.bride_message>picture:nth-of-type(2) img{
  width:55%;
  position:absolute;
  bottom:0;
  left:0;
}
.sen_report h2{
  width:90%;
  max-width:700px;
  margin:0 auto 3%;
  background:url(../img/plus/report_ttl.png) no-repeat top left;
  background-size:80% auto;
  padding:300px 0 0 350px;
  font-size:90%;
  box-sizing: border-box;
  color:#000;
  text-align: left;
}
.sen_report>img{
  max-height:800px;
  object-fit: cover;
  object-position: top center;
}
.report_block{
  width:90%;
  max-width:1100px;
  margin:3% auto 0;
}
.report_block>dl{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items:flex-end;
  margin-bottom:5%;
}
.report_block>dl:nth-child(2n){
  flex-direction: row-reverse;
}
.report_block>dl dt{
  width:60%;
  z-index:1;
}
.report_block>dl dd{
  width:35%;
  text-align: left;
  z-index:2;
}
.report_block>dl dd span{
  position:relative;
  display: inline-block;
}
.report_block>dl.report01 dd span img{
  width:440px;
  position:absolute;
  top:-180px;
  left:-100px;
}
.report_block>dl.report02 dd span img{
  width:400px;
  position:absolute;
  top:-150px;
  left:-70px;
}
.report_block>dl.report03 dd span img{
  width:400px;
  position:absolute;
  top:-170px;
  left:-70px;
}
.report_block>dl.report04 dd span img{
  width:460px;
  position:absolute;
  top:-155px;
  left:-50px;
}
.report_deco {
  width: 20%;
  max-width:400px;
  height: 1500px;
  overflow: visible;
  position: absolute;
  top: 360px;
  right:-2%;
}

.report_deco2 {
  top: 760px;
  left:-2%;
  right:auto;
}



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

  #report {
    background: url(../img/report_bg.png) no-repeat center top;
    background-size: auto 100%;
  }
}
@media screen and (max-width: 1100px) {
  .bride_message{
    width:78%;
    height:500px;
  }
}
@media screen and (max-width: 1280px) {
  .report_block>dl dt{
    width:50%;
  }
  .report_block>dl dd{
    width:47%;
    font-size:90%;
  }
  .report_block>dl.report01 dd span img{
    width:110%;
    position:absolute;
    top:-160px;
    left:-60px;
  }
  .report_block>dl.report02 dd span img{
    width:100%;
    position:absolute;
    top:-130px;
    left:20px;
  }
  .report_block>dl.report03 dd span img{
    width:120%;
    position:absolute;
    top:-140px;
    left:-50px;
  }
  .report_block>dl.report04 dd span img{
    width:120%;
    position:absolute;
    top:-135px;
    left:20px;
  }
}

@media screen and (max-width: 1000px) {
  .bride_message{
    width:85%;
    height:500px;
    position:relative;
    margin:200px auto 0;
  }
}



#facility {
  padding: 5% 0 10%;
  background: url(../img/facility_bg.png) no-repeat center top;
  background-size: cover;
  margin-top: -35%;
  position: relative;
  z-index: 5;
}

#facility>div {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

#facility h2 {
  width: 40%;
  max-width: 300px;
  margin: 0 auto 3%;
}

#facility h2+p {
  text-align: center;
  width: 90%;
  margin: 2% auto 5%;

}

.faci_block {
  border-top: 1px solid #000;
}

.faci_block>div {
  border-bottom: 1px solid #000;
  padding: 5% 0;
  position: relative;
  box-sizing: border-box;
}

.faci_block>div>div {
  width: 40%;
}

.faci_block>div>div h3 {
  text-align: left;
  margin-bottom: 5px;
}

.faci_block>div>div p {
  margin-bottom: 18px;
  min-height: 90px;
}

.faci_block>div>div h3 img {
  margin-bottom: 3%;
}

.faci_cere h3 img {
  width: 80%;
  max-width: 280px;
}

.faci_party h3 img {
  width: 70%;
  max-width: 150px;
}

.faci_garden h3 img {
  width: 75%;
  max-width: 200px;
}

.faci_dress h3 img {
  width: 70%;
  max-width: 150px;
}

.faci_cuis h3 img {
  width: 72%;
  max-width: 180px;
}

.faci_block>div>div>div.flex_right {
  display: flex;
  justify-content: right;
}

.faci_block>div>div>div img {
  width: 65%;
  max-width: 350px;
}

.faci_block>div:nth-child(2n)>div>div {
  text-align: left;
}

.faci_block>div>img {
  width: 55%;
  position: absolute;
  top: 12%;
  right: 0;
}

.faci_block>div:nth-child(2n)>div {
  width: 40%;
  margin-left: 60%;
  text-align: right;
}

.faci_block>div>img.down760 {
  display: none;
}

.faci_block>div:nth-child(2n) h3 {
  text-align: right;
}


.faci_block>div:nth-child(2n)>div p {
  text-align: right;
}

.faci_block>div:nth-child(2n)>img {
  width: 55%;
  position: absolute;
  top: 10%;
  left: 0;
}

@media screen and (max-width: 1100px) {
  .faci_block>div>div {
    width: 52%;
  }

  .faci_block>div>div>div img {
    width: 55%;
  }

  .faci_block>div>img {
    width: 45%;
    position: absolute;
    bottom: 10%;
    right: 0;
    top: auto;
  }

  .faci_block>div:nth-child(2n)>div {
    width: 52%;
    margin-left: 48%;
  }

  .faci_block>div:nth-child(2n)>img {
    width: 45%;
    position: absolute;
    bottom: 10%;
    right: 0;
    top: auto;
  }
}

#osusume {
  width: 90%;
  max-width: 1000px;
  margin: 10% auto 15%;
  z-index: 2;
}

#osusume>div {
  background: url(../img/osusume_bg_01.png) no-repeat top center;
  background-size: 100% 100%;
  position: relative;
  padding-top: 15%;
}

#osusume h2 {
  width: 80%;
  max-width: 720px;
  margin: -5% auto 2%;
  position: absolute;
  top: -15%;
  left: 0;
  right: 0;
}

#osusume>div dl {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding-bottom: 8%;
}

#osusume>div dl dd {
  position: relative;
}

.osusume01 {
  padding-top: 18%;
}

#osusume>div dl:nth-child(2n-1) {
  flex-direction: row-reverse;
}

#osusume>div dl dt {
  width: 40%;
}

#osusume>div dl dt img {
  margin-top: -8%;
}


#osusume>div dl dd {
  width: 55%;
  margin-bottom: 3%;
  text-align: left;
  padding-top: 20%;
}

.osusume01 dd img {
  width: 125%;
  position: absolute;
  top: -35%;
  right: -20%;
}

.osusume02 dd img {
  width: 125%;
  position: absolute;
  top: -55%;
  left: -32%;
}

.osusume03 dd img {
  width: 115%;
  position: absolute;
  top: -15%;
  right: -10%;
}


#access {
  padding: 10% 0 5%;
  background: url(../img/access_bg.png) no-repeat top center;
  background-size: 100% 90%;
  margin-top: -20%;
  position: relative;
  z-index: -1;
}

#access>div {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}

#access h2 {
  width: 40%;
  max-width: 260px;
  margin: 0 auto 3%;
}

#access h2+p {
  text-align: center;
  margin-bottom: 5%;
}

#access>div>div {
  width: 100%;
  max-width: 700px;
  margin: 8% auto;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 3%;
  box-sizing: border-box;
  line-height: 2.4;
  letter-spacing: 0.05em;
}

#access>div>div p {
  text-align: center;
  margin-bottom: 0;
}

#access>div>div ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

#access>div>div ul li {
  display: inline-block;
  margin: 0 2%;
}


#condition {
  margin-bottom: 3%;
}

#condition>p {
  text-align: center;
  font-size: 220%;
  color: #fff;
  padding: 20px 0;
  background: #d5b45c;
}

#condition>dl {
  width: 90%;
  max-width: 900px;
  margin: 0 auto 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
}

#condition>dl dt {
  width: 200px;
  color: #ba9020;
  font-size: 105%;
  padding: 5px 0 15px;
  box-sizing: border-box;
}

#condition>dl dd {
  width: calc(100% - 200px);
  margin-bottom: 3%;
  padding: 5px 0 15px;
  box-sizing: border-box;
}

#condition>dl dd span {
  display: block;
  text-indent: -1em;
  margin-left: 1em;
}

#condition2>div {
  background: #e19797;
  padding: 3% 0;
}

#condition2>div>div {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#condition2>div>div>div {
  width: 45%;
  background: #fff;
  margin: 0 auto;
  position: relative;
  padding: 5px 0;
  box-sizing: border-box;
  z-index: 0;

}

#condition2>div>div>div:before {
  content: '';
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border: 1px solid #e19797;
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 1;
}

#condition2>div>div>div dl {
  width: 90%;
  margin: 0 auto;
  z-index: 2;
  text-align: center;
}

#condition2 dl dt {
  width: 95%;
  max-width: 270px;
  margin: 6% auto 4%;
}


#condition2 .limit dl dd {
  text-align:center !important;
  width: 90%;
  max-width: 340px;
  margin: 0 auto;
  font-size: 200%;
  text-align: left;
  color: #e19797;
  letter-spacing: 0.05em;
  line-height: 1.3;
  padding: 10px 0;
  font-weight: 500;
}

#condition2 .limit dl dd>span {
  font-size: 150%;
}

#condition2 .limit dl dd>span>span {
  font-size: 160%;
  font-weight: 500;
}


#condition2 .subject dl dd {
  font-size: 140%;
  line-height: 1.4;
  padding: 10px 0 20px;
  text-align: center;
  line-height: 1.4;
  box-sizing: border-box;
  margin-left: 0 !important;
}

@media screen and (max-width: 920px) {
  #condition2 .subject dl dd {
    font-size: 130%;
  }
}

#thanks_page {
  margin-bottom: 3%;
}

#thanks_page>p {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 3%;
}


#thanks_page>p.mincho {
  width: 100%;
  max-width: unset;
  text-align: center;
  font-size: 220%;
  color: #fff;
  padding: 20px 0;
  background: #e19797;
  margin-bottom: 5%;
}



/*---------------------------------------------
 **  フォーム・フッター
---------------------------------------------*/

#entry {
  background: #eeefef;
  padding: 20px 0;
}

#entry h2 {
  width: 45%;
  max-width: 380px;
  margin: 2% auto;
}

#entry h2+p {
  width: 90%;
  margin: 0 auto 3%;
  text-align: center;
}

#entry form+p {
  text-align: center;
  font-size: 85%;
  width: 90%;
  margin: 0 auto 3%;
}

#entry form {
  width: 90%;
  max-width: 700px;
  margin: 0 auto 3%;
  text-align: left;
}

#entry form+p+p {
  text-align: center;
  margin-top: -20px;
  margin-bottom: 20px;
}

#entry form+p+p a:link,
#entry form+p+p a:visited {
  text-decoration: underline;
}

#form_submit {
  text-align: center;
}

#foot_copy {
  background: #d5b45c;
  font-size: 240%;
  font-weight: 500;
  text-align: center;
  padding: 0.5% 0;
  color: #fff;
  letter-spacing: 0.05em;
}

#pageTop {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 5;
}

#pageTop a {
  display: block;
  width: 20px;
  height: 140px;
  background: url(../img/pagetop.png) no-repeat;
  background-size: 100%;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}

#anc_travel {
  display: block;
  margin-top: -40%;
  padding-top: 50%;
  pointer-events: none;
}
#anc_report {
  display: block;
  margin-top: -40%;
  padding-top: 45%;
  pointer-events: none;
}

#anc_facility {
  display: block;
  margin-top: -40%;
  padding-top: 35%;
  pointer-events: none;
}

#anc_access {
  display: block;
  margin-top: 0%;
  padding-top: 15%;
  pointer-events: none;
}

/*---------------------------------------------
 ** 追加2024.08
---------------------------------------------*/
.line_kikan{
font-size:28px;
margin-left:auto;
margin-right:auto;
}
.line_kikan p{
text-align:center;
font-weight:500;
}

.line_kikan span{
font-size:20px;
height:28px;
line-height:28px;
display:inline-block;
color:#fff;
background:#06c755;
padding:0 6px;
margin-right:15px;
}

.line_entry{
margin-top:-30px;
margin-bottom:16px;
}

.line_entry img,
.foot_line_btn img{
 transition:0.6s all;
 margin-left:auto;
 margin-right:auto;
}

.line_entry a:hover img,
.foot_line_btn a:hover img{
 transform:scale(1.1,1.1);
   transition:0.6s all;
}

.mx-img{
width:auto !important;
height:auto !important;
max-width:100% !important;
}

.tac-all{
text-align:center;
margin-left:auto;
margin-right:auto;
}

.only5{
position:absolute;
right:6%;
top:45%;
}

@media screen and (max-width: 1300px) {
.only5{
position:absolute;
right:2%;
top:45%;
}
}

@media screen and (max-width: 1160px) {
.only5{
position:absolute;
right:-1%;
top:45%;
}
}

@media screen and (max-width: 1100px) {
.only5{
position:absolute;
right:-1%;
top:44%;
width:140px;
}
}

@media screen and (max-width: 1046px) {
.only5{
position:absolute;
right:-1%;
top:44%;
width:110px;
}
}

.foot_line{
background:#efefef;
padding:3%;
}

.foot_info,
.foot_line_btn{
margin-left:auto;
margin-right:auto;
text-align:center;
margin-top:15px;
}