:root {
  --sans: "Noto Sans JP", sans-serif;
  --serif: "Noto Serif JP", serif;
  --zen: "Zen Maru Gothic", sans-serif;
  --en: "Oswald", sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.75;
}

a {
  transition: 0.4s;
}
a:hover {
  opacity: 0.6;
  transition: 0.4s;
}

img {
  vertical-align: bottom;
}

.sp_only {
  display: none;
}

.flex,
.flex_r,
.flex_row {
  display: flex;
  justify-content: space-between;
}

.col-2,
.col-3,
.col-4 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.col-2 > * {
  width: 45%;
}

.col-3 > * {
  width: 28.3333333333%;
}

.col-4 > * {
  width: 20%;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .flex {
    flex-direction: column;
  }
  .flex_r {
    flex-direction: column-reverse;
  }
  .flex_row {
    flex-direction: row;
  }
  .flex > *,
  .flex_r > * {
    width: 100%;
  }
}
/* ----- main ----- */
.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 3em;
}

p,
a {
  font-family: var(--sans);
}

h2,
h3 {
  font-weight: 500;
  font-family: var(--zen);
  color: #b28247;
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.head-sideline {
  font-size: 4.2rem;
  font-weight: 500;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}
.head-sideline:before, .head-sideline:after {
  content: "";
  width: 380px;
  height: 2px;
  border-top: 2px dotted #b28247;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.head-sideline:before {
  transform: translate(-100%, -50%);
  left: 0;
}
.head-sideline:after {
  transform: translate(100%, -50%);
  right: 0%;
}
@media screen and (max-width: 1023px) {
  .head-sideline:after {
    right: 0%;
  }
}

.btn {
  font-size: 3.2rem;
  font-weight: 500;
  display: table;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  background-color: #8dc21f;
  padding: 10px 50px;
  border-radius: 20px;
  position: relative;
}
.btn:after {
  content: "";
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  right: 20px;
}

@media screen and (max-width: 1023px) {
  .head-sideline {
    font-size: 2.4rem;
    padding-left: 20px;
    padding-right: 20px;
  }
  .head-sideline:before, .head-sideline:after {
    width: 50px;
  }
  .btn {
    font-size: 1.6rem;
    padding: 10px 40px;
    border-radius: 10px;
  }
  .btn:after {
    width: 10px;
    height: 10px;
  }
}
body.fixed,
body.fixed main {
  height: 100%;
  overflow: hidden;
}

.burger .burger-btn {
  cursor: pointer;
  display: block;
  width: 80px;
  position: fixed;
  right: 20px;
  top: 100px;
  z-index: 99;
}
.burger .burger-menu {
  width: 100%;
  height: 100vh;
  color: #776650;
  background: #f5f2ec;
  transition: 0.6s;
  overflow: scroll;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.burger .burger-menu.active {
  visibility: visible;
  opacity: 1;
}
.burger .burger-menu .burger-inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.burger .burger-menu ul {
  width: 100%;
  padding: 0;
  margin: 0 auto 40px;
}
.burger .burger-menu ul li {
  width: 100%;
  padding: 0;
  list-style-type: none;
  transition: 0.4s all;
  border-bottom: 1px solid;
}
.burger .burger-menu ul li:last-child {
  padding-bottom: 0;
}
.burger .burger-menu ul li a {
  font-size: 2rem;
  display: block;
  color: #776650;
  padding: 20px;
  text-decoration: none;
}
.burger .burger-menu .close {
  font-size: 2rem;
  text-align: center;
  color: #776650;
  margin-bottom: 40px;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .burger .burger-btn {
    width: 40px;
    top: 7px;
    right: 5px;
  }
  .burger .burger-menu .burger-inner {
    padding: 40px 40px 0;
  }
  .burger .burger-menu ul {
    margin: 0 auto 30px;
  }
  .burger .burger-menu ul li a {
    font-size: 1.6rem;
    padding: 10px;
  }
  .burger .burger-menu .close {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}

#header {
  background-color: #402727;
}
#header .header-inner {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .header-logo {
  max-width: 360px;
}
#header .header-nav {
  display: flex;
}
#header .header-nav .item {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  padding: 0 15px;
}
#header .header-nav .item a {
  padding: 0 5px 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
#header .header-nav .item a:hover {
  opacity: 1;
  border-bottom: 1px solid rgb(255, 255, 255);
}
@media screen and (max-width: 1023px) {
  #header .header-inner {
    padding: 10px;
  }
  #header .header-logo {
    max-width: 200px;
  }
  #header .header-nav {
    display: none;
  }
}

#footer {
  text-align: center;
  color: #fff;
  background-color: #4b453d;
  padding: 20px 0;
}
#footer small {
  font-size: 1.2rem;
}
@media screen and (max-width: 1023px) {
  #footer {
    padding: 10px 0;
  }
}/*# sourceMappingURL=common.css.map */