body {
  background: #F4ECE6;
  margin: 0;
  color: #613914;
  font-family: Verdana, "ヒラギノ丸ゴ Pro W4", HiraMaruPro-W4, "ＭＳ Ｐゴシック", sans-serif;
  
}

.wrapper {
  overflow: hidden;
}

/* HAMBURGER */
#hamburger {
  display: none;
}

#toggle {
  position: fixed;
  top: 25px;
  right: 25px;
}

#toggle-box {
  position: relative;
  width: 36px;
  height: 32px;
  cursor: pointer;
}

#toggle-box > span {
width: 100%;
height: 1px;
left: 0;
display: block;
background: #000;
position: absolute;
transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
}

#toggle-box > span:nth-child(1) {
  top: 0;
}
#toggle-box > span:nth-child(2) {
  top: 50%;
  transform: translatey(-50%);
}
#toggle-box > span:nth-child(3) {
  bottom: 0;
}

#toggle {
  z-index: 1000;
}

#nav-content {
  z-index: 900;
  overflow-x: hidden;
  width: 50%;
  height: 100%;
  background:  #613914;
  color: #fff;
  position: relative;
  position: fixed;
  top: 0;
  right: 0;
  text-align: center;
  transform: translateX(100%);
  transition:  transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  
}

#nav-content ul {
list-style: none;
display: block;
position: absolute;
top: -20px;
right: 0;
}

#nav-content ul li {
  width: 80%;
  border-bottom: 1px solid #fff;
  text-align: left;
  padding-left: 30px;
}



#nav-content a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  transition: opacity .6s ease;

}

#nav-content a:hover {
opacity: 0.6;
}

.is-open {
  overflow: hidden;
}

.is-open #toggle-box > span {
  background: #fff;
}

.is-open #toggle-box > span:nth-child(1) {
top: 50%;
transform: rotate(45deg) translatey(-50%);
}

.is-open #toggle-box > span:nth-child(2) {
width: 0;
}

.is-open #toggle-box > span:nth-child(3) {
top: 50%;
transform: rotate(-45deg) translatey(-50%);
}

.is-open #nav-content {
z-index: 999;
transform: translateX(0);
width: 50%;
}

/* nav-info2 */
.nav-info2 {
  position: absolute;
  top: 480px;
  right: -5px;
  width: 100%;
  padding: 5px;
  
}

.nav-info2 h2 {
  font-size: 11px;
  margin: 5px;
}

.nav-tell2 img {
  width: 2em;

}

.nav-tell2 a {
  font-size: 1.5em;
  text-align: center;
}

.nav-mail2 img {
  width: 2em;
}

.nav-mail2 a {
  font-size: 0.5em;
  text-align: center;
}

/*nav-line-hamburger*/
.nav-line-hamburger {
  margin-top: 50px;
}

.nav-line-hamburger h2 {
  text-align: left;
}

.nav-line-hamburger h2 span {
  display: block;

}

/* SM */
@media(max-width:519px){
  #hamburger {
    display: block;
  }
}
/* END HAMBURGER */


/* SHUTTER ANIMATION */
.shutter{
  width: 100%;
  height: 100%;
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  margin: auto;
  background-color:#fff;
  z-index:99;
  -webkit-animation: byeShutter 3.5s forwards;
  animation: byeShutter 3.5s forwards;
}
.shutter-logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-animation: logo 0.8s forwards;
  animation: logo 0.8s forwards;
  animation-delay: 0.2s;
}
@keyframes byeShutter {
  50% {
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}
@keyframes logo {
  0% {
    opacity: 1;
  }
  50% {
    transform: rotate(10deg);     
  }
  100% {
    transform: scale(0.8);
  }
}
/* END SHUTTER ANIMATION */


/* HEADER */

header {
  position: relative;
  
}

nav {
  width: 100%;
  height: 210px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  width: 100%;
  margin-top: 100px;/*.nav-info用*/
}

nav li {
  padding: 5px 0;
  list-style: none;
  width: 8em;
  text-align: center;
}

nav li a {
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: #613914;
  font-family: Verdana, "ヒラギノ丸ゴ Pro W4", HiraMaruPro-W4, "ＭＳ Ｐゴシック", sans-serif;
}

nav li a:hover {
  color: #EA5415;
}

nav li:nth-child(3) {
  margin-right: 25%;

}
/* nav-line */
.nav-line {
  position: absolute;
  top: 10px;
  left: 30px;
}

.nav-line h2 {
  font-size: 1em;
}

.nav-line h2 span {
  display: block;
}

.nav-line2 {
  width: 300px;
  display: flex;
}

/*
.nav-line2 img {
  display: block;
  margin: auto;
}
*/

.nav-line2 .line-annai {
  width: 30%;
  margin: auto;
  object-fit: contain;
}

/* nav info */
.nav-info {
  position: absolute;
  top: 10px;
  right: 30px;
  text-align: left;
}

.nav-info h2 {
  margin: 0;
  font-size: 15px;
}

.nav-tell a {
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  color: #613914;
  text-decoration: none;
}

.nav-tell a:hover {
  color: #EA5415;
}

.nav-tell a img {
  width: 30px;
}

.nav-mail a {
  font-size: 23px;
  font-weight: bold;
  cursor: pointer;
  color: #613914;
  text-decoration: none;
}

.nav-mail a:hover {
  color: #EA5415;
}

.nav-mail a img {
  width: 30px;
  padding-right: 10px;
}

.logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  z-index: 20;
  height: 200px;
}

.logo img {
  margin: 0 auto;
  display: block;
  width: 180px;
  object-fit: contain;
}

.logo h1 {
  font-size: 40px;
  font-weight: bolder;
  text-align: center;
  margin-top: -10px;
  line-height: 40px;
}

.Vegas img {
  width: 100%;
  height: 100%;
  margin: auto;
  display: block;
}

/*スクロールダウン全体の場所*/
.scrolldown1{
  /*描画位置※位置は適宜調整してください*/
position:absolute;
left:50%;
bottom:10px;
  /*全体の高さ*/
height:50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
  /*描画位置*/
position: absolute;
left:-40px;
top: -55px;
  /*テキストの形状*/
color: #613914;
font-size: 1.5rem;
letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after{
content: "";
  /*描画位置*/
position: absolute;
top: -50px;
left: -5px;
  /*線の形状*/
width: 3px;
height: 10px;
background: #613914;
  /*線の動き1.4秒かけて動く。永遠にループ*/
animation: pathmove 1.8s ease-in-out infinite;
opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
0%{
  height:0;
  top:0;
  opacity: 0;
}
30%{
  height:30px;
  opacity: 1;
}
100%{
  height:0;
  top:50px;
  opacity: 0;
}
}

@media(max-width: 1024px) {
  .nav-info {
    top: 0;
    right: 0;
    text-align: left;
    width: 100%;
    max-width: 400px;
    margin: 10px;
  }
  
  .nav-info h2 {
    font-size: 13px;
  }
  
  .nav-tell a {
    font-size: 25px;
  }
  
  .nav-tell a img {
    width: 25px;
  }
  
  .nav-mail a {
    font-size: 20px;
  }
  
  .nav-mail a img {
    width: 20px;
  }
  
  .logo {
    width: 200px;
    height: 180px;
  }
  
  .logo img {
    width: 150px;
  }
  
  .logo h1 {
    font-size: 33px;
    font-weight: bolder;
    text-align: center;
    margin-top: -10px;
    line-height: 40px;
  }
  
  nav li a {
    font-size: 17px;
  }
  
}

@media(max-width:834px) {
  .nav-line {
    width: 100%;
    max-width: 330px;
    margin: 10px;
  }

  .nav-line h2 {
    font-size: .7em;
  }

  .nav-line2 img {
    width: 80%;
    object-fit: contain;
  }

  .nav-info {
  top: 0;
  right: 0;
  text-align: left;
  width: 100%;
  max-width: 330px;
  margin: 10px;
}

.nav-info h2 {
  font-size: 10px;
}

.nav-tell a {
  font-size: 20px;
}

.nav-tell a img {
  width: 20px;
}

.nav-mail a {
  font-size: 15px;
}

.nav-mail a img {
  width: 15px;
}

nav li a {
  font-size: 15px;
}

}

@media(max-width:768px) {
  .nav-info {
    top: 0;
    right: 0;
    text-align: left;
    width: 100%;
    max-width: 300px;
    margin: 10px;
  }
  
  .nav-info h2 {
    font-size: 13px;
  }
  
  .nav-tell a {
    font-size: 20px;
  }
  
  .nav-tell a img {
    width: 20px;
  }
  
  .nav-mail a {
    font-size: 15px;
  }
  
  .nav-mail a img {
    width: 15px;
  }
  
  .logo {
    width: 200px;
    height: 180px;
  }
  
  .logo img {
    width: 130px;
  }
  
  .logo h1 {
    font-size: 28px;
  }

  nav {
    width: 100%;
    height: 210px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 90%;
    margin-top: 100px;/*.nav-info用*/
  }
  
  nav li a {
    font-size: 13px;
  }

}

@media(max-width: 519px) {
  .nav-line , .line-annai , .nav-info , .pc {
    display: none;
  }
  
  .logo img {
    width: 100px;
  }
  
  .logo h1 {
    font-size: 30px;
    font-weight: bolder;
    text-align: center;
    margin-top: -10px;
    line-height: 40px;
  }
  
  nav {
    width: 100%;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

}

/* END HEADER */
.contents0-container img {
  width: 100%;
  /*
  width: 100%;
  height: 100%;
  */

}

.contents0-container2 {
  background-color: rgba(255, 255, 255, 0.7);
  margin: 0 30px;
  padding: 30px 0;
  border-radius: 10px;
  background: url(img/bg-dot.jpg);
}

.contents0-container2 video {
  width: 100%;
  max-width: 60%;
  display: block;
  margin: 30px auto;
}

.contents0-container2 p {
  font-size: 1.1rem;
  text-align: center;
  line-height: 3rem;
}

.contents0-container .tokuchou {
  display: block;
  margin: 50px auto 0 auto;
  width: 250px;
}

@media(max-width: 1024px) {

}


@media(max-width:768px) {
  .contents0-container2 p {
    font-size: .8rem;
    text-align: center;
    line-height: 2rem;
  }

}


@media(max-width:519px) {
  .contents0-container .tokuchou {
    margin: 10px auto;
    width: 150px;
  }

  .contents0-container2 video {
    max-width: 90%;
    margin: 10px auto 30px;
  }

  .contents0-container2 p {
    font-size: .8rem;
    text-align: center;
    width: 95%;
    margin: auto;
    line-height: 1.7rem;
  }

}

/* CONTENTS1 */
.contents1-container {
  height: 100%;
  position: relative;
  /*
  background: url(img/木背景２.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -40px;
  */
}

.huusen {
  position: absolute;
  top: 20px;
  left: 30px;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
		wobbling_y 1.1s ease-in-out infinite alternate;
}

.huusen2 {
  position: absolute;
  top: 650px;
  left: 100px;
  width: 80px;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
		wobbling_y 1.1s ease-in-out infinite alternate;
}


.huusen3 {
  position: absolute;
  top: 0;
  right: 30px;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
		wobbling_y 1.1s ease-in-out infinite alternate;
}

@keyframes wobbling_x {
	0% {
		margin-left: 8px;
	}

	100% {
		margin-left: 0px;
	}
}

@keyframes wobbling_y {
	0% {
		margin-top: 0px;
	}

	100% {
		margin-top: 8px;
	}
}

.contents1-container .tokuchou {
  display: block;
  margin: 50px auto 0 auto;
  width: 350px;
}

.contents1-container2 {
  background-color: rgba(255, 255, 255, 0.7);
  margin: 0 30px;
  border-radius: 10px;
  background: url(img/bg-dot.jpg);
}

.contents1-container3 {
  display: flex;
  justify-content: center;
  position: relative;
}

.contents1-box {
  width: 100%;
  margin: 30px;
}

/*フェードインアニメ*/
.fadein {
  opacity : 0;
  transition : all 5s;
}
  
.fadein.active{
  opacity : 1;
}

/*フェードインアニメ*/
/*左から右にフェードイン*/
/*
.left-to-right {
  opacity: 0.1;
  transform: translateX(-20px);
  transition: all 1s;
}
.left-to-right.scrollin {
  opacity: 1;
  transform: translate(0);
}
*/

.contents1-box p {
  text-align: center;
  font-size: 1em;
}

.contents1-box img {
  border-radius: 10px;
  display: block;
  width: 100%;
}

.contents1-box h3 {
  text-align: center;
  font-size: 2.2em;
  font-weight: bolder;
  color: #F0C076;
  line-height: 1.5em;
}

.tokuchou-img {
  width: 100%;
  max-width: 100px;
  margin: auto;
  margin-top: 10px;
}


/* contents1-box_btn */
.contents1-box_btn {
  text-align: center;
  padding-bottom: 50px;
}

.btn,
a.btn,
button.btn {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
}

.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #f56500;
}

a.btn--radius {
  border-radius: 100vh;
}

@media(max-width: 1024px) {
  .contents1-container .tokuchou {
    display: block;
    margin: 10px auto 0 auto;
    width: 350px;
  }

  .contents1-box {
    width: 100%;
    margin: 10px;
  }

  .contents1-box h3 {
    text-align: center;
    font-size: 1.7em;
    font-weight: bolder;
    color: #F0C076;
    line-height: 1em;
  }
  

}

@media(max-width:768px) {
  .contents1-container .tokuchou {
    display: block;
    margin: 20px auto 10px auto;
    width: 350px;
  }

  .tokuchou-img {
    width: 100%;
    max-width: 70px;
    margin: auto;
    margin-top: 10px;
  } 

  .contents1-box {
    width: 100%;
    margin: 20px;
  }

  .contents1-box h3 {
    text-align: center;
    font-size: 1.1em;
    font-weight: bolder;
    color: #F0C076;
    line-height: 1.2em;
  }

  .contents1-box p {
    text-align: center;
    font-size: 0.7em;
  }

  .contents1-box_btn {
    text-align: center;
    padding-bottom: 50px;
  }
  
  .btn,
  a.btn,
  button.btn {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 0.5rem 3rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    border-radius: 0.5rem;
  }
  
  .btn--orange,
  a.btn--orange {
    color: #fff;
    background-color: #eb6100;
  }
  
  .btn--orange:hover,
  a.btn--orange:hover {
    color: #fff;
    background: #f56500;
  }
  
  a.btn--radius {
    border-radius: 100vh;
  }

  .huusen {
    top: 100px;
    left: 0;
    width: 50px;
  }
  
  .huusen2 {
    top: 750px;
    left: 0;
    width: 50px;
  }
  
  .huusen3 {
    top: 350px;
    right: 0;
    width: 40px;
  }

  

}

@media(max-width: 519px) {
  .contents1-container2 {
    padding: 20px;
    margin: 0 10px;
  }

  .contents1-container .tokuchou {
    margin: 10px auto;
    width: 200px;
  }

  .contents1-container3 {
    display: block;
  }
  
  .contents1-box {
    margin: 10px auto;
  }

  .contents1-box p {
    font-size: 1em;
    margin-top: -1rem;
    margin-bottom: 20px;
  }
  
  .contents1-box img {
    display: block;
    width: 70%;
    margin: auto;
  }
  
  .contents1-box h3 {
    font-size: 1.5em;
    margin-top: -0.03rem;
  }

  
  .tokuchou-img {
    width: 100%;
    max-width: 40px;
    margin: 10px auto;
  }

  .contents1-box_btn {
    text-align: center;
    padding: 30px;
  }
  
  .btn,
  a.btn,
  button.btn {
    font-size: 0.5rem;
    font-weight: 400;
    line-height: 1;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    border-radius: 0.5rem;
  }

  .huusen {
    top: 100px;
    left: 0;
    width: 50px;
  }
  
  .huusen2 {
    top: 750px;
    left: 0;
    width: 50px;
  }
  
  .huusen3 {
    top: 350px;
    right: 0;
    width: 40px;
  }
  
  
}

/* END CONTENTS1 */

/* CONTENTS2 */
.contents2-container {
  position: relative;
  /*
  background: url(img/木背景２.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -30px;
  */
}


.huusen4 {
  position: absolute;
  width: 70px;
  top: 50px;
  left: 30px;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
		wobbling_y 1.1s ease-in-out infinite alternate;
}

.huusen5 {
  position: absolute;
  width: 100px;
  top: 300px;
  right: 30px;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
		wobbling_y 1.1s ease-in-out infinite alternate;
}

.huusen6 {
  position: absolute;
  width: 70px;
  top: 500px;
  left: 30px;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
		wobbling_y 1.1s ease-in-out infinite alternate;
}

@keyframes wobbling_x {
	0% {
		margin-left: 8px;
	}

	100% {
		margin-left: 0px;
	}
}

@keyframes wobbling_y {
	0% {
		margin-top: 0px;
	}

	100% {
		margin-top: 8px;
	}
}

.contents2-container .shinnryou {
  display: block;
  margin: 50px auto 0 auto;
  width: 180px;
}

.contents2-container2 {
  margin: 0 30px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  background: url(img/bg-dot.jpg);
}

.contents2-container3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 150px 0 150px;
}

.contents2-box {
  margin: 50px;
}

.contents2-box img {
  width: 180px;
}

/* contents2-box_btn */
.contents2-box_btn {
  text-align: center;
  padding-bottom: 50px;
}

.btn,
a.btn,
button.btn {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
}

.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #f56500;
}

a.btn--radius {
  border-radius: 100vh;
}

@media(max-width: 1024px) {

}

@media(max-width:768px) {
  .contents2-container .shinnryou {
    display: block;
    margin: 50px auto 10px auto;
    width: 180px;
  }

  .contents2-container2 {
    margin: 0 10px;
  }

  .contents2-container3 {
    padding: 60px;
  }
  
  .contents2-box {
    margin: 10px;
  }
  
  .contents2-box img {
    width: 140px;
  }
  
  .huusen4 {
    width: 50px;
    top: 50px;
    left: 0;
  }
  
  .huusen5 {
    width: 50px;
    top: 300px;
    right: 0;
  }
  
  .huusen6 {
    width: 40px;
    top: 500px;
    left: 0;
  }

  
  /* contents2-box_btn */
.contents2-box_btn {
  text-align: center;
  padding-bottom: 50px;
}

.btn,
a.btn,
button.btn {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.5rem 3rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
}

.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #f56500;
}

a.btn--radius {
  border-radius: 100vh;
}


  
}

@media(max-width: 519px) {
  .contents2-container .shinnryou {
    display: block;
    margin: 50px auto 10px auto;
    width: 110px;
  }

  .contents2-container2 {
    margin: 0 10px;
  }

  .contents2-container3 {
    padding: 10px;
  }
  
  .contents2-box {
    margin: 10px;
  }
  
  .contents2-box img {
    width: 140px;
  }
  
  .huusen4 {
    width: 50px;
    top: 50px;
    left: 0;
  }
  
  .huusen5 {
    width: 50px;
    top: 300px;
    right: 0;
  }
  
  .huusen6 {
    width: 40px;
    top: 500px;
    left: 0;
  }

  
  /* contents2-box_btn */
.contents2-box_btn {
  text-align: center;
  padding-bottom: 50px;
}

.btn,
a.btn,
button.btn {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.5rem 3rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
}

.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #f56500;
}

a.btn--radius {
  border-radius: 100vh;
}


}

/* END CONTENTS2 */

/* CONTENTS3 */
.contents3-container {
  position: relative;
  /*
  background: url(img/木背景２.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -30px;
  padding-bottom: 150px;
  */
}

.huusen7 {
  position: absolute;
  top: -100px;
  right: 0;
  width: 200px;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
		wobbling_y 1.1s ease-in-out infinite alternate;
}

@keyframes wobbling_x {
	0% {
		margin-left: 8px;
	}

	100% {
		margin-left: 0px;
	}
}

@keyframes wobbling_y {
	0% {
		margin-top: 0px;
	}

	100% {
		margin-top: 8px;
	}
}

.contents3-container .osirase {
  display: block;
  margin: 50px auto 0 auto;
  width: 170px;
}

.contents3-container2 {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  margin: 0 100px 0 100px;
}
/*お知らせ↓ここから*/
.info {
  -webkit-overflow-scrolling: touch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  /* max-width: 600px; */
  /*付け加えた*/
  width: auto;
  height: 13em;
  margin: auto;
  overflow-y: scroll
}


@media (min-width:768px) {
  .info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    flex-wrap: wrap
  }
}

.info dd,
.info dt {
  box-sizing: border-box;
  width: 100%;
  padding-bottom: .5em;
  padding-left: .5em
}

.info dt {
  font-style: normal;
  font-weight: initial
}

@media (min-width:768px) {
  .info dt {
    width: 12.5em;
    margin-bottom: .5em;
    border-bottom: 1px dotted #343a40
  }
}

.info dt:first-of-type {
  padding-top: .5em;
  border-top: 1px dotted #343a40
}

.info dt time {
  /*margin-right: .5em;*/
  float: right;
}

.info dt span {
  box-sizing: border-box;
  display: inline-block;
  width: 7em;
  margin-right: .5em;
  padding: 0 .5em;
  background-color: #009688;
  color: #fff;
  font-size: .8em;
  line-height: 1.75;
  text-align: center
}

.info time {
  color: #adb5bd
}

.info dd {
  margin-left: 0;
  margin-bottom: .5em;
  border-bottom: 1px dotted #343a40
}

@media (min-width:768px) {
  .info dd {
    width: calc(100% - 12.5em)
  }
  .info dd:first-of-type {
    padding-top: .5em;
    border-top: 1px dotted #343a40
  }
}

.info dd:nth-of-type(-n+3) {
  position: relative
}

@media(max-width: 1024px) {

}


@media(max-width: 519px) {
  .contents3-container .osirase {
    margin: 50px auto 10px auto;
    width: 100px;
  }
  
  .contents3-container2 {
    margin: 0 10px 0 10px;
  }

  .info dt time {
    margin-right: 1.5em;
    float: left;
  }

  .huusen7 {
    width: 150px;
  }
  
   /* contents2-box_btn */
.contents2-box_btn {
  text-align: center;
  padding-bottom: 50px;
}

.btn,
a.btn,
button.btn {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.5rem 3rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
}

.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #f56500;
}

a.btn--radius {
  border-radius: 100vh;
}

}

/* END CONTENTS3 */

/* CONTENTS4 */
.contents4-container {
  margin: 30px 0;
}

.content {
  list-style: none;
  width: 300px;
  height: 300px;
}
.content:nth-child(1) {
  background: url(img/s1.JPG);
  background-size: cover;
  background-position: center;
}
.content:nth-child(2) {
  background: url(img/s2.JPG);
  background-size: cover;
  background-position: center;
}
.content:nth-child(3) {
  background: url(img/s3.JPG);
  background-size: cover;
  background-position: center;
}
.content:nth-child(4) {
  background: url(img/s4.JPG);
  background-size: cover;
  background-position: center;
}
.content:nth-child(5) {
  background: url(img/s5.JPG);
  background-size: cover;
  background-position: center;
}
.content:nth-child(6) {
  background: url(img/s7.JPG);
  background-size: cover;
  background-position: center;
}
.content:nth-child(7) {
  background: url(img/s8.JPG);
  background-size: cover;
  background-position: center;
}
.content:nth-child(8) {
  background: url(img/s9.JPG);
  background-size: cover;
  background-position: center;
}
.content:nth-child(9) {
  background: url(img/s10.JPG);
  background-size: cover;
  background-position: center;
}
.content:nth-child(10) {
  background: url(img/s11.JPG);
  background-size: cover;
  background-position: center;
}

.slideshow {
  display: flex;
  padding: 0;
  animation: loop-slide 70s infinite linear 1s both;
}

.wrap {
  display: flex;
  align-items: center;
  height: 340px;
  overflow: hidden;

}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media(max-width: 519px) {
  .contents4-container {
    margin: 50px 0 30px 0;
  }
  
  .content {
    height: 250px;
  }

}

/* END CONTENTS4 */

/* CONTENTS5 */
.contents5-container .access {
  display: block;
  margin: 50px auto 0 auto;
  width: 170px;
}

@media(max-width: 1024px) {

}

@media(max-width:768px) {
  
}

@media(max-width: 519px) {
  .contents5-container .access {
    margin: 50px auto 10px auto;
    width: 110px;
  }
}
/* END CONTENTS5 */

/* FOOTER */
footer {
  padding: 0 50px 0 50px;
}
 
footer p {
  text-align: center;
  padding: 10px;

}

.footer-info {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.footer-logo {
  width: 300px;
  margin: auto;
}

.footer-logo a {
  text-decoration: none;

}

.footer-logo .logo-img1 {
  width: 200px;
  display: block;
  margin: auto;
}

.footer-logo .logo-img2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  animation: yurayura 2s linear infinite;
}

@keyframes yurayura {
  0% , 100%{
      transform: rotate(5deg);
  }
  50%{
      transform: rotate(-5deg);
  }
}

.footer-logo h2 {
  font-size: 40px;
  font-weight: bolder;
  margin-top: -10px;
  line-height: 40px;
  color: #613914;
  text-align: center;
}

footer address {
  font-size: 20px;
  text-align: center;
}

.footer-tell {
  text-align: center;/*<a＞用*/
}

.footer-tell a {
  font-size: 40px;
  font-weight: bold;
  text-decoration: none;
  color: #613914;
}

.footer-tell img {
  width: 30px;
  padding-right: 10px;
}

.footer-tell a:hover {
  color: #EA5415;
}

.footer-info_container1 {
  width: 50%;
  position: relative;
}

.footer-info_container2 {
  width: 50%;
}

.footer-info_container2 .info-img1 {
  display: block;
  margin: -100px auto 0 auto;
  width: 100%;
}

.footer-info_container2 .info-img2 {
  width: 110px;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media(max-width: 1024px) {
  .footer-logo .logo-img2 {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 80px;
    animation: yurayura 2s linear infinite;
  }

}


@media(max-width:834px) {
  .footer-tell a {
    font-size: 35px;
    font-weight: bold;
    text-decoration: none;
    color: #613914;
  }

  .footer-logo .logo-img2 {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 80px;
    animation: yurayura 2s linear infinite;
  }

}

@media(max-width:768px) {
  .footer-logo .logo-img2 {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 80px;
    animation: yurayura 2s linear infinite;
  }

  .footer-logo .logo-img2 {
    position: absolute;
    bottom: 60px;
    right: -100px;
    width: 80px;
    animation: yurayura 2s linear infinite;
  }

  .footer-tell a {
    font-size: 35px;
    font-weight: bold;
    text-decoration: none;
    color: #613914;
  }

  .footer-info_container2 p {
    font-size: .8em;
  }
  
}

@media(max-width: 519px) {
  footer {
    padding: 0 10px 0 10px;
    height: 100%;
  }

  .footer-info {
    display: block;
  }

  .footer-logo {
    width: 300px;
    margin: auto;
  }
  
  .footer-logo a {
    text-decoration: none;
  
  }
  
  .footer-logo .logo-img1 {
    width: 150px;
    display: block;
    margin: auto;
  }
  
  .footer-logo .logo-img2 {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 80px;
    animation: yurayura 2s linear infinite;
  }

  .footer-info_container1 {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .footer-info_container2 {
    width: 100%;
    height: 100%;
  }

  .footer-logo h2 {
    font-size: 30px;
  }

  .footer-tell a {
    font-size: 30px;
  }

  .footer-info_container2 .info-img1 {
    margin: 50px auto;
    width: 70%;
  }
  
  .footer-info_container2 .info-img2 {
    width: 70px;
  }

  .footer-info_container2 p {
    font-size: .4em;
    margin-top: -50px;
  }
  
}

/* 追従ボタン */
#page_top{
  width: 90px;
  height: 90px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #ef3f98;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
  content: 'PAGE TOP';
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 45px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

@media(max-width: 519px) {
  #page_top{
    width: 60px;
    height: 60px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    background: #ef3f98;
    opacity: 0.6;
    border-radius: 50%;
  }
  #page_top a{
    position: relative;
    display: block;
    width: 70px;
    height: 70px;
    text-decoration: none;
  }
  #page_top a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 20px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -30px;
    bottom: 10px;
    right: 10px;
    left: 0;
    margin: auto;
    text-align: center;
  }
  #page_top a::after{
    content: 'PAGE TOP';
    font-size: 10px;
    color: #fff;
    position: absolute;
    top: 35px;
    bottom: 10px;
    right: 10px;
    left: 0;
    margin: auto;
    text-align: center;
  }

}


/* END FOOTER */