@charset "UTF-8";

html {
  font-size:62.5%;
}
body {
  font-size:1.4rem;
  /*margin: 3% 10% 3% 10%;*/
}


*, *::before, *::after {
  box-sizing:border-box;
}
.clearfix::after {
  content:'';
  display:block;
  clear:both;
}

#header-area{
  bAckground-color: #ffffff;
  margin: 3% 10% 1% 10%;
}

header ul li a {
  color: #FBB161;
}

header {
  display: flex;
  justify-content: flex-end;
}

header ul li{
  display: inline;
  font-size: 2rem;
  margin-right: 24px;
}

nav {
  display: flex;
  justify-content: flex-end;
}

nav ul li{
  display: inline;
  font-size: 2rem;
  margin-right: 24px;
}

nav ul li a {
  color: #FBB161;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 80px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #e7880b;
  position: absolute;
  height: 4px;
  width: 80px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -16px;
}

.menu-button::after {
  content: '';
  margin-top: 16px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}



/*sectionタグ-start-*/


/*main-visual ----start----*/
.main-area{
background-color: #c5e8f0;
}

#main-visual{
  text-align: center;
}

*,body,ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}

.slid-wrapper {
  max-width: 100vw;
  overflow: hidden;
  width: 100%;
  position: relative;
  height: 800px;
}

.next {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  bottom: 130px;
  transition: all 0.3s;
  z-index: 10;
  cursor: pointer;
}

.next::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-top: solid 3px #828282;
  border-right: solid 3px #828282;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 15px;
  top: 10px;
}

.next:hover {
  background-color: #fff;
  transition: all 0.3s;
}

.prev {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  bottom: 130px;
  transition: all 0.3s;
  z-index: 10;
  cursor: pointer;
}

.prev::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-top: solid 3px #828282;
  border-right: solid 3px #828282;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  position: absolute;
  left: 15px;
  top: 10px;
}

.prev:hover {
  background-color: #fff;
  transition: all 0.3s;
}

.slider {
  width: 400vw;
  display: flex;
  margin: 0 auto;
}

.slider1 {
  transform: translateX(0);
  transition: all 0.3s;
}

.slider2 {
  transform: translateX(-100vw);
  transition: all 0.3s;
}

.slider3 {
  transform: translateX(-200vw);
  transition: all 0.3s;
}

.slider4 {
  transform: translateX(-300vw);
  transition: all 0.3s;
}

.content {
  width: 100%;
  max-width: 100vw;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content1 {
  background-color: #ede1d5;
}

.content2 {
  background-color: #ede1d5;
}

.content3 {
  background-color: #ede1d5;
}

.content4 {
  background-color: #ede1d5;
}

.indicator {
  width: 100%;
  position: absolute;
  bottom: 10px;
  display: flex;
  z-index: 10;
  justify-content: center;
  align-items: center;
}

.indicator li {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: relative;
  list-style: none;
  border: 1px #000 solid;
  margin-left: 10px;
  margin-right: 10px;
  cursor: pointer;
}

.indicator li:after {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px #000 solid;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  left: -4px;
  z-index: 9;
}

#list1 {
  background-color: #000;
}

/*main-visual ----end----*/


/*about ----start----*/

.about{
  height: 300px;
  padding: 72px 0px 25px 0px;
  background-color: #FFEFCF;
}

#about-b{
  padding: 10px 0;
}

.about h2{

  text-align: center;

}

.about p{
  text-align: center;
}


/*about ----end----*/


/*info ----start----*/

.info-wrapper{
  padding: 20px;
  background-color: #fff7f1;
  height: 300px;
}

.info-wrapper h2{
  text-align: center;
}

#oshiraseArea{
  padding-left: 24%;
  padding-top: 20px;
}



dl{
  width:800px;
}
dt{
 border-bottom:1px solid #ccc;
  float:left;
  padding:10px 5px;
}
dd{
 border-bottom:1px solid #ccc;
  margin-left:100px;
  padding:10px 5px;
}
dt a{
  background-color:red;
  border-radius:5px;
  color:#fff;
  margin:0 20px;
  padding:5px 15px;
  text-decoration:none;
}




/*info ----end----*/

/*sectionタグ-end-*/

footer{
  background-color: #554940;
  height: 200px;
  position: relative;
}

.footer-area{
  display: flex;
  justify-content: center;
}


.footer-area ul{
  padding-top: 2%;
}

.footer-area ul li{
  display: inline;
  font-size: 2rem;
  margin-right: 24px;
  color: #ffffff;
}

.footer-area ul li a{
  text-decoration: none;
  color: #ffffff;
}

.small-area{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 48%;
}

small{
  color: #ffffff;
}

/*レスポンシブ対応*/

@media screen and (max-width: 1000px) {
    body {
        background-color: #ffffff;
    }

    h1 img {
      height: 100%;
      width: 100%;
    }

    h2 {
	font-size: 50px;	    
    }

    .about p{
    	font-size: 32px;
    }

    #header-area{
      height: 280px;
    }
    /*
    #header-area{
      height: 200px;
    }*/

    /*ハンバーガーメニュー--start--*/

    .menu-button-container {
    display: flex;
    }
    .menu {
      position: absolute;
      top: 0;
      margin-top: 240px;
      left: 0;
      flex-direction: column;
      width: 100%;
      justify-content: center;
      align-items: center;
    }
    #menu-toggle ~ .menu li {
      height: 0;
      margin: 0;
      padding: 0;
      border: 0;
      transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    #menu-toggle:checked ~ .menu li {
      border: 1px solid #333;
      height: 2.5em;
      padding: 0.5em;
      transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .menu > li {
      display: flex;
      justify-content: center;
      margin: 0;
      padding: 0.5em 0;
      width: 100%;
      color: white;
      background-color: #222;
    }
    .menu > li:not(:last-child) {
      border-bottom: 1px solid #444;
    }

    .header-nav{
      display: none;
    }

    /*ハンバーガーメニュー--end--*/


    /*スライドショー--start--*/
    .content1 a img, .content2 a img, .content3 a img{

      width: 100%;
      
    }
    
    .content4 img{
      width: 100%;
    }

    .slid-wrapper{
      height: 700px;
    }

    .content{
      height: 700px;
    }

    /*スライドショー--end--*/


    .info-wrapper{
      height: 400px;
    }

    #oshiraseArea{
      padding-left: 8%;
    }

    dt a{
      display: none;
    }

    dt, dd{
	font-size: 22px;
    }

    .about{
	height: 600px;
}	

    
