/* RESET
------------------------*/
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, caption, canvas, center, cite, code, dd, del, details, dfn, dialog, div, dl, dt, em, embed, figure, fieldset, figcaption, figure, form, footer, header, hgroup, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, main, small, span, strike, strong, sub, summary, sup, tt, table, tbody, textarea, tfoot, thead, time, tr, th, td, u, ul, var, video {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
  margin: 0;
  padding: 0;
  text-align: left;
  vertical-align: baseline;
  white-space: normal;
  border: 0;
  outline: 0;
  background: transparent;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

html {
  font-size: 62.5%;
}

body {
  font-family: "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1a1a1a;
  text-size-adjust: 100%;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

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

a {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #1a1a1a;
}

h2 {
  font-family: "roboto", "San Francisco";
  font-size: 6rem;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 4.8rem;
  }
}

.inner_l {
  max-width: 1720px;
  width: 96%;
  margin: 0 auto;
}
.inner_m {
  max-width: 1400px;
  width: 96%;
  margin: 0 auto;
}
.inner_s {
  max-width: 960px;
  width: 96%;
  margin: 0 auto;
}

.contents_wrap {
  padding: 12rem 0;
}
.contents_wrap_sub {
  padding-bottom: 18rem;
}
.contents_block {
  max-width: 65rem;
  width: 45%;
}

.bg_green {
  background-color: #79afb1;
}
.bg_blue {
  background-color: #aadada;
}

.btn a {
  width: 100%;
  background-color: #231815;
  color: #fff;
  padding: 1rem 0;
  position: relative;
  font-weight: bold;
  border-radius: 5px;
  overflow: hidden;
  display: block;
}
.btn a::after {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 0.1rem;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
@media screen and (min-width: 769px) {
  .btn a:hover::before {
    animation: shine 0.7s;
  }
}
.btn_contact {
  margin-bottom: 1em;
}
.btn_media a {
  background-color: #fff;
  color: #231815;
}
.btn_media a::after {
  background-color: #231815;
}
.btn_media a::before {
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
.gotop {
  position: fixed;
  right: 20px;
  z-index: 3;
}
.gotop a {
  position: relative;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: #231815;
}
.gotop a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d8";
  font-size: 3rem;
  color: #aadada;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.header {
  width: 100%;
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}
.header_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .header .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header .sp {
    position: fixed;
    top: 35px;
    right: 100px;
    z-index: 100;
  }
  .header .sp a {
    filter: drop-shadow(5px 5px 5px rgba(255, 255, 255, 0.5));
  }
}
.header_logo {
  filter: drop-shadow(5px 5px 5px rgba(255, 255, 255, 0.5));
}
@media screen and (min-width: 769px) {
  .header_logo {
    max-width: 120px;
    min-width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .header_logo {
    max-width: 80px;
  }
}

.gnav_list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .gnav_list {
    display: block;
    position: fixed;
    width: 70%;
    height: 100%;
    background-color: #231815;
    padding: 10rem 8rem;
    top: 0;
    right: 0;
    transform: translateY(-100%);
    z-index: 1;
    transition: 0.4s ease-in-out;
    overflow-y: scroll;
  }
}
@media screen and (max-width: 500px) {
  .gnav_list {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .gnav_list li:last-of-type {
    display: none;
  }
}
.gnav_list li a {
  font-weight: bold;
  font-family: "roboto", "San Francisco";
  font-size: 2rem;
  color: #231815;
  position: relative;
  text-shadow: 1px 1px 4px #fff;
}
@media screen and (max-width: 768px) {
  .gnav_list li a {
    color: #fff;
    padding: 3rem 0;
  }
}
.gnav_list li a:not(.gnav_insta) {
  padding-right: 1em;
}
@media screen and (min-width: 769px) {
  .gnav_list li a:not(.gnav_insta)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 1em);
    height: 2px;
    background: #231815;
    transition: all 0.3s;
    transform: scale(0, 1);
    transform-origin: left top;
  }
  .gnav_list li a:not(.gnav_insta):hover::after {
    transform: scale(1, 1);
  }
}
@media screen and (min-width: 769px) {
  .gnav_btn {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .gnav_btn {
    position: fixed;
    top: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #231815;
    border-radius: 10px;
    cursor: pointer;
    z-index: 10;
    transition: 0.6s;
  }
  .gnav_btn span {
    position: absolute;
    display: block;
    left: 10px;
    width: 40px;
    height: 2px;
    background-color: #fff;
    transition: 0.4s;
  }
  .gnav_btn span:nth-of-type(1) {
    top: 30%;
  }
  .gnav_btn span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .gnav_btn span:nth-of-type(3) {
    bottom: 30%;
  }
}
.gnav_insta {
  transition: 0.2s;
}
@media screen and (min-width: 769px) {
  .gnav_insta:hover {
    opacity: 0.7;
  }
}

.open .gnav_btn span:nth-of-type(1) {
  transform: rotate(45deg);
  background-color: #fff;
  top: 30%;
}
.open .gnav_btn span:nth-of-type(2) {
  opacity: 0;
}
.open .gnav_btn span:nth-of-type(3) {
  transform: rotate(-45deg);
  background-color: #fff;
  top: 30%;
}
.open .gnav_list {
  transform: translateY(0);
}

.sub_ttl {
  background-color: #79afb1;
  color: #fff;
  display: inline-block;
  padding: 1rem 0;
  width: 100%;
  line-height: 1.2;
}
@media screen and (min-width: 769px) {
  .sub_ttl {
    max-width: 60rem;
  }
}

.copyright {
  text-align: center;
  padding: 1rem 0;
  background-color: #231815;
  color: #fff;
}

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