@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
*, *::before,
*::after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

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

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
}

span {
  color: inherit;
  font-weight: inherit;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #333;
  margin: 0;
  padding: 0;
}

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

img[src$=".svg"] {
  width: 100%;
}

input, select, textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input, select {
  vertical-align: middle;
}

/*
 * Settings
 */
html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  color: #292422;
  font-size: 14px;
  font-family: "Noto Sans JP", "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
}

.tenmincho {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}

.din {
  font-family: "DIN Alternate", "Bahnschrift", "Noto Sans JP", sans-serif;
}

.inner {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .inner {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    padding: 0;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8999;
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(90deg, #f66620, #fa931c);
  color: #fff;
  /*
   * バーガーメニュー 
   */
}
.header__logo {
  width: 120px;
}
.header__button {
  position: relative;
  z-index: 9999;
  width: 45px;
  height: 18px;
  cursor: pointer;
}
.header__button.active .header__line {
  background: #fa931c;
}
.header__button.active .header__line--top {
  transform: translateY(8px) rotate(30deg);
}
.header__button.active .header__line--middle {
  opacity: 0;
}
.header__button.active .header__line--bottom {
  transform: translateY(-8px) rotate(-30deg);
}
.header__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  transition: 0.2s;
}
.header__line--top {
  top: 0;
}
.header__line--middle {
  top: 50%;
  transform: translateY(-50%);
}
.header__line--bottom {
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 25px 5% 15px;
  }
  .header__logo {
    width: 110px;
  }
  .header__button {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .header {
    display: flex;
  }
  .header__logo {
    width: 185px;
  }
}

.nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
  color: #fa931c;
}
.nav.active {
  transform: translateX(0);
}
.nav__contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  white-space: nowrap;
}
.nav__logo {
  position: absolute;
  top: 15px;
  left: 20px;
  width: 120px;
}
.nav__list {
  margin-bottom: 40px;
}
.nav__item {
  margin-bottom: 1.5em;
  text-align: center;
}
.nav__item:last-of-type {
  margin-bottom: 0;
}
.nav__item a {
  display: inline-block;
  position: relative;
  font-weight: bold;
}
.nav__item a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.nav__item a:hover::after {
  transform: scale(1, 1);
}
.nav__item a span {
  display: block;
}
.nav__item a span:first-of-type {
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.15em;
}
.nav__item a span:last-of-type {
  font-size: 13px;
}
.nav__sns ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__sns li {
  width: 30px;
  margin: 0 10px;
}
.nav__sns li a img:last-of-type {
  display: none;
}
.nav__pattern {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  transform: translate(20%, 20%);
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .nav {
    display: block;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: auto;
    max-width: initial;
    margin-left: auto;
    overflow: visible;
    background: transparent;
  }
  .nav__contents {
    position: static;
    transform: none;
    width: auto;
  }
  .nav__logo {
    display: none;
  }
  .nav__list {
    display: flex;
    margin: 0;
    color: #fff;
  }
  .nav__item {
    margin: 0 35px 0 0;
  }
  .nav__item:last-of-type {
    margin-right: 0;
  }
  .nav__item a span:first-of-type {
    font-size: 14px;
  }
  .nav__item a span:last-of-type {
    display: none;
  }
  .nav__sns {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .nav__contents {
    display: flex;
    align-items: center;
  }
  .nav__list {
    margin-right: 35px;
  }
  .nav__item a span:first-of-type {
    font-size: 16px;
  }
  .nav__sns {
    display: block;
  }
  .nav__sns li {
    width: 24px;
    margin: 0 20px 0 0;
  }
  .nav__sns li a img:first-of-type {
    display: none;
  }
  .nav__sns li a img:last-of-type {
    display: block;
  }
}

.footer {
  padding: 50px 0 30px;
  background: linear-gradient(90deg, #f66620, #fa931c);
  color: #fff;
}
.footer__inner {
  position: relative;
}
.footer__sanseito {
  position: absolute;
  top: 0;
  right: 20px;
  width: 100px;
}
.footer__name {
  width: 220px;
  margin-bottom: 20px;
}
.footer__info {
  margin-bottom: 2em;
  padding-bottom: 2em;
}
.footer__contact {
  margin-bottom: 1em;
}
.footer__link {
  width: 150px;
  margin-bottom: 1em;
}
.footer__sns ul {
  display: flex;
  align-items: center;
}
.footer__sns li {
  width: 26px;
  margin-right: 10px;
}
.footer__sns li:last-of-type {
  margin-right: 0;
}
.footer__sns li a {
  display: block;
  padding: 2px;
}
.footer__nav {
  margin-bottom: 2em;
}
.footer__nav li {
  margin-bottom: 10px;
}
.footer__nav li:last-of-type {
  margin-bottom: 0;
}
.footer__nav li a {
  display: inline-block;
  position: relative;
  font-weight: bold;
  letter-spacing: 0.15em;
}
.footer__nav li a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.footer__nav li a:hover::after {
  transform: scale(1, 1);
}
.footer__copyright {
  font-size: 11px;
  text-align: center;
  text-indent: 0.05em;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    display: flex;
    flex-wrap: wrap;
  }
  .footer__info, .footer__nav {
    width: 50%;
    margin-bottom: 0;
    padding: 1em 0 2em;
  }
  .footer__info {
    border-bottom: none;
  }
  .footer__nav {
    padding-left: 10%;
  }
  .footer__copyright {
    width: 100%;
    margin-top: 2em;
  }
}
@media screen and (min-width: 1200px) {
  .footer {
    padding: 115px 0 110px;
  }
  .footer__name {
    width: 270px;
    margin-bottom: 60px;
  }
  .footer__nav li {
    margin-bottom: 30px;
  }
  .footer__copyright {
    font-size: 13px;
    text-align: right;
  }
}/*# sourceMappingURL=main.css.map */