@charset "utf-8";

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

body {
  width: 100%;
  font-size: 1.8rem;
  color: #211815;
  line-height: 2.2;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  overflow: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  background: #fff;
}

body * {
  box-sizing: border-box;
}

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

.eigo {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5rem;
}

img {
  width: 100%;
  height: auto;
  border-style: none;

}

*:focus {
  outline: none;
}

.red {
  color: #ff0033;
}


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

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

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

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

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

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


p {
  margin-bottom: 1em;
}

.only_pc_none {
  display: none;
}

.only_sp_none {
  display: block;
}

.sp_br {
  display: none;
}

.br_480 {
  display: none;
}

.sp_380_over {
  display: inline;
}

.sp_380_under {
  display: none;
}

.sp_contact {
  display: none;
}

#anc_concept,
#anc_location,
#anc_map,
#anc_detail {
  padding-top: 80px;
  margin-top: -90px;
  pointer-events: none;
  display: block;
}



/*---------------------------------------------
 ** 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 )";
}

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

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

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

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

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

.btn {
  height: 40px;
  line-height: 40px;
  text-align: center;
  outline: none;
}

.btn a {
  display: inline-block;
  background: #013b64;
  color: #fff;
  padding: 0 5%;
  box-sizing: border-box;
}

.btn a i.fa-file-alt {
  font-size: 280%;
  vertical-align: -1px;
  padding-right: 2px;
}

.btn a:hover {
  background: #33719d;
}

.btn_tri {
  height: 65px;
  line-height: 65px;
  text-align: center;
  outline: none;
  font-size: 110%;
}

.btn_tri a {
  display: inline-block;
  background: #013b64;
  color: #fff;
  padding: 0 3%;
  box-sizing: border-box;
  border-radius: 8px;
}

.btn_tri a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  padding-right: 8px;
}

.btn_tri a:hover {
  background: #33719d;
}

#side_btn {
  width: 51px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2;
  line-height: 1.4;
}

#side_btn a:nth-of-type(1) {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-align: center;
  letter-spacing: 0.5rem;
  display: block;
  padding: 35px 8px;
  font-size: 130%;
  font-weight: 500;
  color: #fff;
  transition: all 0.5s;
  background: #39b14a;
}

#side_btn a:nth-of-type(2) {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-align: center;
  letter-spacing: 0.5rem;
  display: block;
  padding: 35px 8px;
  font-size: 130%;
  font-weight: 500;
  transition: all 0.5s;
  background: #89d1de;
}

#side_btn a:nth-of-type(1):hover,
#side_btn a:nth-of-type(2):hover {
  padding: 60px 8px;
  opacity: 0.9;
}



.white_slide {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.white_slide img {
  opacity: 0;
}

.white_slide.white_slide_on img {
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: -1;
  opacity: 0;
  animation: apper_img 2s forwards;
  animation-delay: 0;
}


.white_slide.white_slide_on::before {
  animation: apper_right 2s forwards;
  background: #fff;
  bottom: 0;
  content: '';
  pointer-events: none;
  position: absolute;
  left: 0px;
  right: 0;
  top: 0;
  z-index: 1;
  animation-delay: 0;
  transform: translateX(100%);
}

.white_slide2.white_slide_on2::before {
  animation: apper_left 2s forwards;
}



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

  40% {
    opacity: 0;
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

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

  50% {
    transform: translateX(0);
  }

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

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

  50% {
    transform: translateX(0);
  }

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

/* ジャンプする動き */
.jump {
  opacity: 0;
}

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

@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%;
}


#header_in h1 {
  width: 170px;
  padding: 40px 0;
  margin: 0 auto;
}





.slide-line {
  position: absolute;
  width: 0;
  bottom: 0;
  height: 4px;
  background-color: #d9000f;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  pointer-events: none;
}

#nav_pc li:hover .slide-line {
  margin-left: -20px;
}

header #nav_pc>div>ul>li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  right: 0;
  left: 0;
  height: 4px;
  background-color: #a12d3a;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  pointer-events: none;
}


.mm-page {
  width: 100%;
  overflow: hidden;
}

#main {
  min-height: 800px;
  background: url(../img/main.jpg) no-repeat top center;
  background-size: cover;
  position: relative;
}



.main_catch {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  position: absolute;
  left: 5%;
  top: -5%;
  font-size: 110%;
  font-weight: 500;
}


#concept {
  margin: 0 auto;
  padding: 5% 0;
}

#concept h2 {
  font-size: 160%;
  letter-spacing: 0.5rem;
  text-align: center;
  margin-bottom: 3%;
  font-weight: 600;
}

#concept h3 {
  font-size: 150%;
  text-align: center;
  margin-bottom: 3%;
  font-weight: 600;
}

#concept p {
  text-align: center;
  z-index: 2;
  letter-spacing: -0.1rem;
}

.concept_img {
  display: flex;
  margin-top: -50px;
  z-index: -1;
  position: relative;
}

@media screen and (max-width: 1050px) {
  .concept_img {
    margin-top: 0px;
  }
}

.concept_img>div {
  width: 50%;
}

#location {
  margin: 0 auto;
  padding: 5% 0;
  position: relative;
}

.icon_sun {
  width: 8%;
  position: absolute;
  top: 0px;
  right: 25%;
}

#location h2 {
  font-size: 160%;
  letter-spacing: 0.5rem;
  text-align: center;
  margin-bottom: 3%;
  font-weight: 600;
}

#location h3 {
  font-size: 150%;
  text-align: center;
  margin-bottom: 3%;
  font-weight: 600;
}

.location01 {
  width: 90%;
  max-width: 1030px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.icon_cloud01 {
  width: 15%;
  position: absolute;
  top: -150px;
  left: -80px;
}

.icon_tree01 {
  width: 7%;
  position: absolute;
  top: -130px;
  right: 0%;
}


.location01>p {
  position: absolute;
  top: 0;
  left: 0;
}

.location01>div {
  width: 55%;
  position: relative;
}

.location01 .station_img {
  width: 40%;
}

.location01>div p {
  width: 55%;
  position: relative;
}

.location01>div img {
  width: 30%;
  max-width: 180px;
  display: block;
  position: absolute;
  bottom: 20%;
  right: 0;
}




.location02 {
  width: 90%;
  max-width: 1030px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.icon_cloud02 {
  width: 11%;
  position: absolute;
  top: 60px;
  right: 20px;
}


.location02 .kinder_img {
  width: 65%;
}

.location02>div {
  width: 30%;
  position: relative;
}

.location02>div img {
  width: 55%;
  max-width: 180px;
  position: absolute;
  bottom: 10%;
  left: 0;
}

.location02+p {
  width: 90%;
  max-width: 1030px;
  margin: 2% auto 10%;
  font-size: 70%;
  line-height: 1.4;
}

.location03 {
  width: 90%;
  max-width: 1030px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.icon_tree02 {
  width: 12%;
  position: absolute;
  top: -140px;
  right: -50px;
}


.location03 dl {
  width: 47.5%;
  margin-bottom: 3%;
}

.location03 dl dd {
  font-size: 90%;
  text-align: center;
  line-height: 1.6;
  margin-top: 8px;
}

.location03 dl dd span {
  font-size: 80%;
  display: block;
}

.location03+p,
.location04+p {
  width: 90%;
  max-width: 1030px;
  margin: 0 auto;
  text-align: right;
  font-size: 70%;
  line-height: 1.4;
}

.location04 {
  width: 90%;
  max-width: 1030px;
  margin: 5% auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.location04>div {
  width: 49%;
}

.location04 h4 {
  color: #89d1de;
  text-align: left;
  margin-bottom: 0px;
  font-weight: 500;
  font-size: 90%;
}

.location04 dl {
  font-size: 80%;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.location04 dl dt {
  width: 160px;
  display: block;
}

.location04 dl dd {
  width: calc(99% - 160px);
  display: block;
}

@media screen and (max-width: 960px) {
  .location04 dl {
    font-size: 70%;
  }

  .location04 dl dt {
    width: 130px;
  }

  .location04 dl dd {
    width: calc(99% - 130px);
  }
}

#access {
  background: #f2f2f2;
  position: relative;
  margin: 70px auto;
  text-align: center;
  padding: 40px 0;
}

#access::before {
  content: '';
  width: 100%;
  height: 200px;
  display: block;
  background: url(../img/bg_green01.jpg) no-repeat bottom center;
  background-size: 100% auto;
  position: absolute;
  top: -200px;
  left: 0;
}

#access::after {
  content: '';
  width: 100%;
  height: 200px;
  display: block;
  background: url(../img/bg_green02.jpg) no-repeat top center;
  background-size: 100% auto;
  position: absolute;
  bottom: -200px;
  left: 0;
}

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

.icon_cloud02_2 {
  width: 13%;
  position: absolute;
  top: 30px;
  left: -80px;
}

.icon_cloud03 {
  width: 13%;
  position: absolute;
  top: 220px;
  right: -80px;
}

.icon_train {
  width: 9%;
  position: absolute;
  top: 220px;
  left: 80px;
}

.icon_car {
  width: 11%;
  position: absolute;
  top: 40px;
  right: 120px;
}

@media screen and (max-width: 1150px) {
  .icon_cloud02_2 {
    top: -10px;
    left: -10px;
  }

  .icon_cloud03 {
    top: 150px;
    right: -10px;
  }

  .icon_train {
    top: 150px;
    left: 30px;
  }

  .icon_car {

    top: -20px;
    right: 50px;
  }
}

#access h2 {
  font-size: 160%;
  letter-spacing: 0.5rem;
  text-align: center;
  margin-bottom: 3%;
  font-weight: 600;
}

#access h3 {
  font-size: 150%;
  text-align: center;
  margin-bottom: 3%;
  font-weight: 600;
}

#access p {
  text-align: center;
  z-index: 2;
  letter-spacing: -0.1rem;
}

#access iframe {
  width: 90%;
  max-width: 1030px;
  margin: 3% auto 5%;
}

#access>img {
  width: 90%;
  max-width: 1030px;
  margin: 1% auto 3%;
}

#landplan {
  padding: 10% 0 5% 0;
  text-align: center;
}

#landplan>div {
  width: 90%;
  max-width: 1030px;
  margin: 0 auto;
  position: relative;
}

.icon_tree03 {
  width: 8%;
  position: absolute;
  top: 30px;
  right: 30px;
}

.icon_tree04 {
  width: 8%;
  position: absolute;
  bottom: -30px;
  left: 0px;
}


#landplan h2 {
  font-size: 160%;
  letter-spacing: 0.5rem;
  text-align: center;
  margin-bottom: 3%;
  font-weight: 600;
}

#landplan h3 {
  font-size: 150%;
  text-align: center;
  margin-bottom: 3%;
  font-weight: 600;
}

#landplan p {
  text-align: center;
  z-index: 2;
  letter-spacing: -0.1rem;
}

#landplan .plan_img {
  width: 90%;
  max-width: 1030px;
  margin: 1% auto 3%;
}

#detail {
  width: 90%;
  max-width: 900px;
  margin: 1% auto 10%;
}

#detail h3 {
  font-size: 150%;
  text-align: center;
  margin-bottom: 2%;
  font-weight: 600;
}

#detail p {
  font-size: 70%;
}




#footer01 {
  background: #d9000f;
  padding: 2% 0;
  position: relative;
}

#footer01>div:nth-child(1) {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

#footer01>div p:first-child {
  font-size: 110%;
  letter-spacing: 0.1rem;
  line-height: 1.6;
}


#footer01>div a {
  width: 60%;
  max-width: 450px;
  display: block;
  margin: 2% auto 3%;
}

#footer02>div:nth-child(1) {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

#footer02>div:nth-child(1) a {
  width: 200px;
  display: block;
  margin: 5% auto 2%;
}


#footer_fixed {
  display: none;
}


#copy {
  transform: scale(0.8);
  text-align: center;
  font-size: 80%;
  padding: 8px 0;
  margin: 0 0 40px;
}


#pageTop {
  position: absolute;
  top: 15%;
  right: 5%;
  z-index: 1;
}

#pageTop a {
  display: block;
  width: 45px !important;
  height: 45px !important;
  background: url(../img/page_top.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.5;
}