/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre, iframe, hr, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button, input, select {
  margin: 0;
}

html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img, video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

body {
  font-family: Nunito sans, sans-serif;
}

.nav {
  position: fixed;
  height: 70px;
  width: 100%;
  background: linear-gradient(to bottom, #333, #626262);
  z-index: 10;
}

.liste-nav {
  background: linear-gradient(to bottom, #333, #626262);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  list-style-type: none;
  z-index: 15;
}

.item-nav {
  display: flex;
  align-items: center;
}

.item-nav a {
  font-size: 22px;
  color: #f1f1f1;
  text-decoration: none;
  margin: 0 20px;
  text-transform: uppercase;
}
.item-nav a::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 0%;
  height: 2px;
  background-color: #f1f1f1;
  transition: width 0.2s ease-in-out;
}
.item-nav a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  width: 50px;
  height: 42px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 25;
}

.lignes {
  background-color: #f1f1f1;
  height: 6px;
  width: 100%;
  border-radius: 5px;
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.lignes:nth-child(1) {
  top: 0px;
}

.lignes:nth-child(2) {
  top: 18px;
}

.lignes:nth-child(3) {
  top: 36px;
}

.burger-menu.active .lignes:nth-child(1) {
  top: 18px;
  transform: rotate(135deg);
}

.burger-menu.active .lignes:nth-child(2) {
  transform: translateX(-20px);
  opacity: 0;
}

.burger-menu.active .lignes:nth-child(3) {
  top: 18px;
  transform: rotate(-135deg);
}

@media screen and (max-width: 700px) {
  .burger-menu {
    display: block;
  }
  .liste-nav {
    display: none;
    padding-top: 70px;
    flex-direction: column;
    height: auto;
    position: relative;
  }
  .liste-nav.active {
    display: block;
  }
  .item-nav {
    height: 70px;
    justify-content: center;
  }
}
.accueil {
  width: 100%;
  height: 100vh;
  min-height: 960px;
  background-image: url(ress-kyoto/accueil-pic-lum-down.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 1px dotted #777;
  padding-top: 1px;
}

.logo-kyoto {
  border-radius: 50%;
  width: 180px;
  display: block;
  margin: 179px auto 0 auto;
  transition: all 0.2s ease-in-out;
}
.logo-kyoto:hover {
  box-shadow: 0 0 7px #ff0000, 0 0 50px #fc7575, 0 0 300px red;
}

.titre {
  text-align: center;
  font-size: 100px;
  text-shadow: 0 0 10px #000;
  color: #f1f1f1;
  margin-top: 10px;
  font-family: Merienda one, sans-serif;
}

.sous-titre {
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  color: #f1f1f1;
  margin: 5px 0;
  text-shadow: 0 0 10px #000;
}

.btn-acceuil {
  background-color: crimson;
  border-radius: 9999px;
  border: 1px solid #333;
  color: #f1f1f1;
  text-align: center;
  font-size: 22px;
  display: block;
  width: 200px;
  height: 70px;
  line-height: 70px;
  text-decoration: none;
  margin: 30px auto 0 auto;
  transition: all 0.2s ease-in-out;
}
.btn-acceuil:hover {
  background-color: #c51236;
  color: white;
}

@media screen and (max-width: 850px) {
  .accueil {
    background-position: right;
    height: 650px;
    min-height: auto;
  }
  .logo-kyoto {
    margin: 120px auto 0 auto;
  }
  .titre {
    font-size: 60px;
  }
  .sous-titre {
    font-size: 23px;
  }
  .btn-acceuil {
    width: 150px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    margin: 15px auto 0 auto;
  }
}
@media screen and (max-width: 400px) {
  .accueil {
    height: 550px;
  }
  .logo-kyoto {
    width: 150px;
    margin: 110px auto 0 auto;
  }
  .titre {
    font-size: 35px;
  }
  .sous-titre {
    font-size: 20px;
  }
  .btn-acceuil {
    width: 130px;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
  }
}
.section-asym {
  display: grid;
  grid-template: 200px repeat(3, auto)/1fr 600px 1fr;
  background-color: #f1f1f1;
}

.section-asym h2 {
  grid-area: 1/1/2/-1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  font-size: 50px;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.bloc-1, .img-grid-1 {
  grid-area: 2/2/3/3;
}

.bloc-right, .img-grid-2 {
  grid-area: 3/2/4/3;
}

.bloc-3, .img-grid-3 {
  grid-area: 4/2/5/3;
}

.bloc {
  background-color: #333;
  color: #f1f1f1;
  position: relative;
  border-radius: 2px;
  height: 750px;
  margin-bottom: 250px;
}
.bloc button {
  background-color: crimson;
  border-radius: 9999px;
  border: 1px solid #333;
  color: #f1f1f1;
  text-align: center;
  font-size: 22px;
  display: block;
  width: 200px;
  height: 70px;
  line-height: 70px;
  text-decoration: none;
  margin: 30px auto 0 auto;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  transform: scale(0.7);
  display: block;
  margin: -10px auto 0 auto;
}
.bloc button:hover {
  background-color: #c51236;
  color: white;
}

.img-grid {
  width: 500px;
  height: 700px;
  object-fit: cover;
  position: relative;
}

.img-grid-1, .img-grid-3 {
  top: 130px;
  left: 20px;
}

.bloc-left {
  left: -250px;
}

.bloc-txt-left {
  width: 47%;
  height: 100%;
}
.bloc-txt-left h3 {
  white-space: nowrap;
  font-size: 35px;
  margin: 30px 15px;
}
.bloc-txt-left p {
  line-height: 40px;
  padding: 15px;
}

.bloc-right {
  right: -300px;
}

.img-grid-2 {
  top: 130px;
  left: 100px;
}

.bloc-txt-right {
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
}
.bloc-txt-right h3 {
  position: relative;
  font-size: 35px;
  margin: 30px 15px;
}
.bloc-txt-right p {
  line-height: 40px;
  padding: 15px;
}
.bloc-txt-right button {
  margin: -18px auto 0 auto;
}

.ligne-gauche {
  grid-area: 1/2/-1/3;
  border-left: 1px solid #333;
}

.ligne-droite {
  grid-area: 1/3/-1/4;
  border-left: 1px solid #333;
}

@media screen and (max-width: 1200px) {
  .section-asym {
    grid-template: 200px repeat(6, auto) 100px/1fr 600px 1fr;
  }
  .section-asym h2 {
    font-size: 50px;
    padding-bottom: 0;
  }
  .bloc-1 {
    grid-area: 2/2/3/3;
  }
  .img-grid-1 {
    grid-area: 3/2/4/3;
  }
  .bloc-right {
    grid-area: 4/2/5/3;
  }
  .img-grid-2 {
    grid-area: 5/2/6/3;
  }
  .bloc-3 {
    grid-area: 6/2/7/3;
  }
  .img-grid-3 {
    grid-area: 7/2/8/3;
  }
  .bloc {
    height: 100%;
    margin-bottom: 0;
    left: 0;
  }
  .img-grid {
    position: static;
    width: 600px;
    height: 750px;
  }
  .img-grid-1, .img-grid-2, .img-grid-3 {
    top: 0;
    left: 0;
  }
  .bloc-txt-left {
    width: 100%;
    height: 100%;
  }
  .bloc-txt-right h3, .bloc-txt-left h3 {
    text-align: center;
  }
  .bloc-txt-right p, .bloc-txt-left p {
    font-size: 20px;
    line-height: 1.8;
    padding: 15px;
  }
  .bloc-txt-right {
    position: static;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 600px) {
  .section-asym {
    grid-template: 150px repeat(6, auto) 100px/100%;
  }
  .section-asym h2 {
    font-size: 30px;
  }
  .ligne-droite, .ligne-gauche {
    display: none;
  }
  .bloc, .img-grid {
    grid-area: auto;
  }
  .img-grid {
    width: 100%;
    height: 500px;
  }
  .bloc-txt-right {
    width: 100%;
  }
}
.parallax {
  width: 100%;
  height: 300px;
  background: url(ress-kyoto/parallax-large.jpg);
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.parallax p {
  font-size: 65px;
  color: #f1f1f1;
}
.parallax span {
  display: block;
  font-size: 25px;
  color: #f1f1f1;
}

@media screen and (max-width: 400px) {
  .parallax p {
    font-size: 55px;
  }
}
.section-tarifs {
  padding-bottom: 150px;
  border-bottom: 1px dashed #333;
}
.section-tarifs h3 {
  text-align: center;
  font-size: 45px;
  margin: 120px 0 20px 0;
  padding: 0 30px;
}
.section-tarifs hr {
  width: 200px;
  margin: 20px auto 80px auto;
}

.container-tarifs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.container-tarifs .cartes-tarifs {
  width: 350px;
  height: auto;
  border-radius: 5px;
  margin: 15px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease-in-out;
  position: relative;
}
.container-tarifs .cartes-tarifs:hover {
  transform: translateY(-5px);
  scale: 1.05;
}

.cartes-tarifs h4 {
  text-align: center;
  padding: 25px 20px;
  font-size: 35px;
  clip-path: polygon(0 0, 100% 0%, 100% 80%, 0% 100%);
}
.cartes-tarifs span {
  display: block;
  text-align: center;
  padding: 15px;
  font-size: 25px;
  font-weight: bold;
}
.cartes-tarifs p {
  font-size: 18px;
  padding: 20px 10px;
  border-top: 1px solid rgb(194, 194, 194);
}
.cartes-tarifs a {
  background-color: crimson;
  border-radius: 9999px;
  border: 1px solid #333;
  color: #f1f1f1;
  text-align: center;
  font-size: 22px;
  display: block;
  width: 200px;
  height: 70px;
  line-height: 70px;
  text-decoration: none;
  margin: 30px auto 0 auto;
  transition: all 0.2s ease-in-out;
  background-color: transparent;
  height: 50px;
  color: #333;
  font-size: 18px;
  line-height: 50px;
  margin: 20px auto;
}
.cartes-tarifs a:hover {
  background-color: #c51236;
  color: white;
}

.cartes-tarifs p:last-of-type {
  border-bottom: 1px solid rgb(194, 194, 194);
}

.cartes-tarifs p:nth-child(odd) {
  background-color: rgba(195, 195, 195, 0.5);
}

.container-tarifs .cartes-tarifs .bgc1 {
  background-color: #ff7c96;
}
.container-tarifs .cartes-tarifs .bgc2 {
  background-color: #ff496d;
}
.container-tarifs .cartes-tarifs .bgc3 {
  background-color: #ff1645;
}

@media screen and (max-width: 900px) {
  .section-tarifs h3 {
    font-size: 35px;
  }
}
@media screen and (max-width: 425px) {
  .section-tarifs h3 {
    font-size: 30px;
    padding: 0 10px;
  }
  .section-tarifs hr {
    margin: 20px auto;
  }
}
.section-contact {
  padding-bottom: 100px;
}
.section-contact h2 {
  text-align: center;
  color: #333;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 50px;
  padding: 70px 0 0 0;
}

.container-form {
  margin: 0 auto;
  width: 70%;
}

.form-groupe {
  position: relative;
  margin-bottom: 45px;
}
.form-groupe label {
  color: #aaa;
  font-size: 20px;
}
.form-groupe input {
  display: block;
  width: 100%;
  padding: 10px 0;
  border: none;
  outline: none;
  background: none;
  border-bottom: 3px solid #aaa;
  color: #666;
  font-size: 20px;
}
.form-groupe textarea {
  width: 100%;
  height: 200px;
  border: 3px solid #aaa;
  border-radius: 3px;
  padding: 5px;
  resize: none;
  outline: none;
  font-size: 20px;
  background-color: #f1f1f1;
}

.form-groupe:nth-child(4) {
  margin-bottom: 25px;
}

.form-groupe .button-sub {
  width: auto;
  padding: 15px 60px;
  border: 3px solid rgb(144, 144, 144);
  border-radius: 9999px;
  background-image: linear-gradient(to right, transparent 50%, rgb(65, 65, 65) 50%, rgb(134, 134, 134));
  background-size: 200%;
  transition: all 0.5s ease-in-out;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
}
.form-groupe .button-sub:hover {
  background-position: 100%;
  color: #f1f1f1;
}

@media screen and (max-width: 1300px) {
  .section-contact {
    padding: 70px 0 0 0;
  }
  .container-form {
    padding-left: 0;
  }
}
footer {
  width: 100%;
  text-align: center;
  height: 200px;
  background-image: linear-gradient(to top, #000 1%, rgb(250, 250, 250));
}
footer p {
  font-size: 25px;
  font-family: Merienda One, sans-serif;
  text-shadow: 7px 5px 7px #000, 0 0 20px #aaa, 0 0 300px rgb(200, 200, 200);
  cursor: context-menu;
}

/*# sourceMappingURL=index.css.map */
