@charset "UTF-8";
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%;
  vertical-align: baseline;
  background: transparent;
  overflow-wrap: break-word;
  line-height: 1;
  box-sizing: border-box;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

figure {
  margin: 0;
}

img {
  display: block;
  width: 100%;
}

ul {
  list-style: none;
}

.wrap {
  overflow: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

.wrap {
  overflow: hidden;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
}

.wrap {
  flex: 1;
}

footer {
  position: sticky;
  top: 100vh;
}

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

.contents {
  margin-top: 80px;
  margin-bottom: 80px;
  background: #f0eaea;
}
.contents.contents--top {
  padding-top: 60px;
  padding-bottom: 100px;
  margin-top: 60px;
  margin-bottom: 20px;
}

.inner-l {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 0;
}

.inner-s {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 40px;
}

.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
.tab-wrap {
  background: #f0eaea;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 0 0 20px;
}
.tab-wrap::after {
  content: "";
  height: 20px;
  order: -1;
  width: 100%;
}

.tab-label {
  color: #666;
  cursor: pointer;
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  order: -1;
  padding: 24px 24px;
  position: relative;
  text-align: center;
  transition: cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
}
.tab-label::before {
  background: #f0eaea;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  transform: translateX(100%);
  transition: cubic-bezier(0.4, 0, 0.2, 1) 0.2s 80ms;
  width: 100%;
}
.tab-label::after {
  background: #000;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(100%);
  transition: cubic-bezier(0.4, 0, 0.2, 1) 0.2s 80ms;
  width: 100%;
}
.tab-label:hover {
  background: #f0eaea;
}

.tab-switch:checked + .tab-label {
  color: #000;
}

.tab-switch:checked ~ .tab-label::after {
  transform: translateX(-100%);
}

.tab-switch:checked + .tab-label::after {
  opacity: 1;
  transform: translateX(0);
}

.tab-content {
  height: 0;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  transform: translateX(-30%);
  transition: transform 0.3s 80ms, opacity 0.3s 80ms;
  width: 100%;
}

.tab-switch:checked ~ .tab-content {
  transform: translateX(30%);
}

.tab-switch:checked + .tab-label + .tab-content {
  height: auto;
  opacity: 1;
  order: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.tab-switch {
  display: none;
}

@media screen and (max-width: 767px) {
  .tab-label {
    font-size: 14px;
    padding: 18px 24px;
  }
}
.page-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 16px;
  bottom: 32px;
  z-index: 99;
}

.lum-lightbox {
  z-index: 9;
}

.lum-lightbox-inner img {
  max-width: inherit;
  width: auto;
  max-height: 500px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .luminous {
    max-width: 100%;
    max-height: inherit;
  }
  .lum-lightbox-inner img {
    max-width: 100%;
    max-height: inherit;
  }
  .lum-gallery-button:after {
    height: 20px;
    width: 20px;
  }
}
.header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo {
  padding: 24px;
}

.header__nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__nav-item + .header__nav-item {
  margin-left: 16px;
}

.hamburger__wrap {
  display: none;
}

@media screen and (max-width: 767px) {
  .header {
    flex-direction: column;
  }
  .header__nav {
    background: #ccc;
  }
  .header__nav-inner {
    flex-direction: column;
    padding: 40px 0;
  }
  .header__nav-item + .header__nav-item {
    margin-left: 0;
    margin-top: 20px;
  }
  .hamburger__wrap {
    display: block;
    position: absolute;
    right: 34px;
    top: 47px;
    transform: translate(0, -50%);
    z-index: 4;
  }
  .hamburger {
    display: block;
    z-index: 4;
    position: relative;
    cursor: pointer;
    width: 37px;
    height: 45px;
    background: transparent;
    border: none;
  }
  .hamburger .hamburger__item {
    position: absolute;
    display: inline-block;
    transition: 0.4s;
    right: 0;
    height: 3px;
    border-radius: 5px;
    width: 100%;
    background: #2E2E2E;
  }
  .hamburger .hamburger__item:nth-of-type(1) {
    top: 0;
  }
  .hamburger .hamburger__item:nth-of-type(2) {
    top: 11px;
  }
  .hamburger .hamburger__item:nth-of-type(3) {
    top: 22px;
  }
  .hamburger .hamburger__item:nth-of-type(3)::after {
    content: "";
    position: absolute;
    top: 5px;
    left: -2px;
    font-size: 0.6rem;
    text-transform: uppercase;
  }
  .hamburger.active .hamburger__item:nth-of-type(1) {
    top: 14px;
    left: 0;
    transform: translateY(6px) rotate(-45deg);
  }
  .hamburger.active .hamburger__item:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger.active .hamburger__item:nth-of-type(3) {
    top: 26px;
    left: 0;
    transform: translateY(-6px) rotate(45deg);
  }
  .hamburger.active .hamburger__item:nth-of-type(3)::after {
    content: "";
    transform: translateY(0) rotate(-45deg);
    top: 5px;
    left: 4px;
  }
  .hamburger__wrap .hamburger.active {
    top: -8px;
    right: 0;
  }
  .js-header__nav .header__nav {
    display: none;
  }
  .js-header__nav.nav_active {
    position: fixed;
    z-index: 2;
    top: 57px;
    left: 0;
    width: 100%;
    height: 100vh;
    animation: NavAnime 0.5s forwards;
    overflow: scroll;
  }
  .js-header__nav.nav_active .header__nav {
    display: block;
  }
  @keyframes NavAnime {
    from {
      opacity: 0;
      transform: translateY(0);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 0 16px 0;
}

.footer__nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__nav-item {
  font-size: 15px;
  position: relative;
}
.footer__nav-item::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 16px;
  border-right: solid 1px #666;
  top: 50%;
  right: -16px;
  margin: auto;
  transform: translate(0, -65%) rotate(40deg);
}
.footer__nav-item:last-child::after {
  content: none;
}

.footer__nav-item + .footer__nav-item {
  margin-left: 28px;
}

.footer__copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
}

.profile {
  margin-bottom: 48px;
}

.profile__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: min(80%, 600px);
  margin: 0 auto;
  margin-bottom: 0;
}

.profile__img img {
  width: 120px;
}

.profile__desc {
  text-align: center;
  margin-top: 8px;
}

.profile__ttl {
  line-height: 1.8;
  font-weight: normal;
}

.profile__name {
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  font-weight: 400;
}
.profile__name span {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.profile__txt {
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  margin-top: 0;
}

.profile__contact {
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  margin-top: 4px;
}

.profile__sns {
  margin-top: 20px;
}
.profile__sns svg {
  background: #000;
  color: #fff;
  padding: 6px;
  border-radius: 50%;
}

.sns__icon-item + .sns__icon-item {
  margin-left: 8px;
}

.item-wrap {
  margin: auto;
}

.item {
  list-style: none;
  width: 100%;
  margin-bottom: 0;
}

.item img {
  width: 98%;
}

.page-top object {
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .header__logo {
    padding: 16px;
    padding-bottom: 0;
  }
  .header__logo object {
    width: 240px;
  }
  .profile__img img {
    width: 100px;
  }
  .profile__name {
    font-size: 18px;
  }
  .profile__txt {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 0;
  }
}
@media screen and (min-width: 480px) {
  .item {
    width: 380px;
  }
}
/* loading setting */
#loading {
  transition: all 3s; /*ローディングにかかる時間*/
  background-color: #EEE;
  z-index: 999;
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

/* spinner by spinkit 
https://tobiasahlin.com/spinkit/
*/
.spinner {
  margin: 100px auto;
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;
  animation: sk-rotate 2s infinite linear;
}

.dot1, .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #333;
  border-radius: 100%;
  animation: sk-bounce 2s infinite ease-in-out;
}

.dot2 {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}
@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}/*# sourceMappingURL=style.css.map */