@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800&display=swap");
* {
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
* :focus {
  outline: none;
}

[type=reset], [type=submit], button, html [type=button], input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input, button {
  border-radius: 0;
}

button {
  border: none;
  background: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl, dt, dd {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.8em;
  line-height: 1.6;
  font-size: 1em;
  font-weight: 500;
}

figure {
  margin: 0;
  padding: 0;
}

a, a:hover {
  text-decoration: none;
}

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

th, td {
  font-weight: normal;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.75;
  font-family: "M PLUS Rounded 1c", sans-serif;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-feature-settings: "palt";
  background-color: #333;
}

ul {
  list-style: none;
}

p, span {
  text-align: justify;
}

p {
  margin: 0;
}

a {
  color: #fff;
}

h1, h2, h3, h4, h5 {
  line-height: 1;
  margin-bottom: 0;
}

.box_lr {
  display: flex;
  align-items: center;
}
.box_lr .box_l {
  width: 50%;
}
.box_lr .box_r {
  width: 50%;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

#wrapper {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  box-shadow: 0 0 15px #000;
}

header {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  transform: translate(-50%, 0);
  background-color: #333;
  z-index: 5;
}
header .header_inner {
  display: flex;
  width: 100%;
  max-width: 768px;
  min-height: 60px;
  margin: 0 auto;
  padding: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
header .header_inner .logo_box a {
  transition: all 0.3s;
}
header .header_inner .logo_box a .image_box {
  width: 100%;
  max-width: 100px;
  margin: 0 auto;
}
header .header_inner .logo_box a:hover {
  filter: saturate(1.2);
}
header .header_inner .header_menu ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
header .header_inner .header_menu ul li a {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 6px 8px;
  border-radius: 8px;
  line-height: 1.4;
  transition: all 0.3s;
}
header .header_inner .header_menu ul .header_btn01 a {
  border: 1px solid #967E2E;
  color: #967E2E;
  background-color: #fff;
}
header .header_inner .header_menu ul .header_btn01 a:hover {
  color: #fff;
  background-color: #967E2E;
}
header .header_inner .header_menu ul .header_btn02 {
  position: relative;
}
header .header_inner .header_menu ul .header_btn02 a {
  position: relative;
  color: #fff;
  border: 1px solid #FDBE2D;
}
header .header_inner .header_menu ul .header_btn02::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(to right, #FDBE2D, #FF6514);
  transition: all 0.3s;
}
header .header_inner .header_menu ul .header_btn02:hover a {
  color: #fff;
  background-color: #FDBE2D;
}
header .header_inner .header_menu ul .header_btn02:hover::before {
  opacity: 0;
}

footer {
  padding: 40px 20px 20px;
  background-color: #333;
}
footer .footer_inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
footer .footer_inner .footer_logo {
  width: 140px;
}
footer .footer_inner .footer_logo a {
  transition: all 0.3s;
}
footer .footer_inner .footer_logo a:hover {
  opacity: 0.7;
}
footer .footer_inner .footer_menu ul li {
  margin-bottom: 5px;
}
footer .footer_inner .footer_menu ul li:last-child {
  margin-bottom: 0;
}
footer .footer_inner .footer_menu ul li a {
  color: #fff;
  border-bottom: 1px solid #333;
  transition: all 0.3s;
}
footer .footer_inner .footer_menu ul li a:hover {
  border-bottom: 1px solid #fff;
  transition: all 0.3s;
}
footer .copy {
  margin-top: 40px;
}
footer .copy p {
  font-size: 12px;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}

.contents_wrap {
  background-color: #333;
}
.contents_wrap .contents_container {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding: 80px 0;
  background-color: #000;
}
.contents_wrap .contents_container .image_box {
  width: calc(100% - 80px);
  max-width: 768px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.contents_wrap .contents_container .reserve_box {
  width: calc(100% - 80px);
  max-width: 768px;
  margin: 0 auto;
}
.contents_wrap .contents_container .reserve_box a {
  display: block;
  transition: all 0.3s ease;
}
.contents_wrap .contents_container .reserve_box a:hover {
  filter: brightness(1.25);
}

@media (min-width: 380px) {
  header .header_inner .logo_box .image_box {
    max-width: 110px;
  }
  header .header_inner .header_menu ul li a {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 6px 10px;
    border: 2px solid #90ABCC;
  }
  header .header_inner .header_menu ul .header_btn02 a {
    padding: 6px 16px;
  }
}
@media (min-width: 768px) {
  body {
    font-size: 22px;
    font-size: 2.2rem;
  }
  header .header_inner {
    min-height: 100px;
    padding: 10px 30px 10px 20px;
  }
  header .header_inner .logo_box a .image_box {
    width: 100%;
    max-width: 200px;
  }
  header .header_inner .header_menu ul {
    gap: 20px;
  }
  header .header_inner .header_menu ul li a {
    font-size: 22px;
    font-size: 2.2rem;
    padding: 10px 14px;
  }
  header .header_inner .header_menu ul .header_btn02 a {
    padding: 10px 20px;
  }
  footer {
    padding: 60px 20px 20px;
  }
  footer .footer_inner {
    gap: 40px;
  }
  footer .footer_inner .footer_logo {
    width: 100%;
    max-width: 240px;
    margin: 0 auto 0 0;
  }
  footer .copy {
    margin-top: 60px;
  }
  footer .copy p {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .contents_wrap .contents_container .image_box {
    width: calc(100% - 160px);
  }
  .contents_wrap .contents_container .reserve_box {
    width: calc(100% - 160px);
  }
}/*# sourceMappingURL=styles.css.map */