@charset "UTF-8";
html {
  overflow: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

@media all and (max-width: 767px) {
  html.is-fixed {
    height: 100%;
    overflow: hidden;
  }
  html.is-fixed body {
    height: 100%;
    overflow: hidden;
  }
}

* {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  padding: 0;
  margin: 0;
}

*::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.5;
  word-wrap: break-word;
  overflow: hidden;
  font-size: 62.5%;
  letter-spacing: .05em;
  width: 100%;
  background: #FFF9EE;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border: 0;
  vertical-align: bottom;
}

a {
  color: #333;
  text-decoration: none;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

a:hover {
  opacity: .5;
}

ul {
  list-style: none;
}

.btn {
  border-radius: 10px;
}

.btn:hover {
  background: #333;
  color: #ddd;
  opacity: inherit;
}

.pc_only {
  display: block !important;
}

.sp_only {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
}

.jpn {
  display: block;
  font-size: .9rem;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .jpn {
    font-size: 1rem;
  }
}

.product__inner {
  width: 90%;
  margin: 0 auto;
}

.header {
  height: 70px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header__ttl {
  text-align: center;
}

.header__ttl a {
  color: #000;
}

.header__ttl a img {
  max-width: 60px;
}

.header__wrap {
  width: 100%;
  padding: 0 4%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__nav--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__nav--item {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  margin: 0 15px 0 0;
}

.header__nav--item:last-child {
  margin: 0;
}

.header__nav--item a {
  color: #000;
}

.header__nav--item--contact {
  border-radius: 20px;
  padding: 15px 25px;
  color: #fff;
  letter-spacing: 0.15em;
}

.header__line--img {
  width: 50%;
  display: block;
  margin: 0 auto 20px;
  max-width: 60px;
}

.header__line--txt {
  font-size: 14px;
  margin: 0 auto 20px;
}

.header__line--btn {
  background: #06C755;
  color: #fff;
  width: 140px;
  height: 40px;
  margin: 0 auto;
}

.header__line--btn a {
  color: #fff;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  position: relative;
  padding: 0 0 0 10px;
}

.header__line--btn a:before {
  position: absolute;
  content: "";
  background-image: url(./img/arrow-white.svg);
  background-size: contain;
  width: 12px;
  height: 12px;
  right: 5px;
}

@media (max-width: 768px) {
  .header {
    position: fixed;
    z-index: 50;
    width: 100%;
    height: 55px;
    left: 0;
    top: 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__ttl {
    font-size: calc(100vw * 20 / 390);
    color: #fff;
    margin: 0;
    padding: 0 0 0 5%;
    text-align: left;
    font-size: 20px;
    position: relative;
    font-weight: 400;
  }
  .header__nav--item {
    margin: 0;
  }
  .header__btn {
    padding: 8px 20px;
    font-size: calc(100vw * 16 / 390);
  }
}

@media screen and (min-width: 500px) and (max-width: 1000px) {
  .header__ttl a img {
    max-width: 60px;
  }
  .header__nav--item {
    font-size: 15px;
    margin: 0 10px 0 0;
  }
  .header__line--img {
    margin: 0 auto 10px;
    max-width: 60px;
  }
  .header__line--txt {
    font-size: 12px;
    letter-spacing: 0;
  }
  .header__line--btn {
    background: #06C755;
    color: #fff;
    width: 100px;
    height: 40px;
    margin: 0 auto;
  }
  .header__line--btn a {
    font-size: 11px;
  }
  .header__line--btn a:before {
    position: absolute;
    content: "";
    background-image: url(./img/arrow-white.svg);
    background-size: contain;
    width: 12px;
    height: 12px;
    right: 5px;
  }
}

.nav-toggle {
  display: none;
  position: absolute;
  right: 16px;
  top: 20px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  z-index: 101;
}

.nav-toggle div {
  position: relative;
}

.nav-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 25px;
  background: #000;
  left: 0;
  right: 0;
  margin: auto;
}

.nav-toggle span:nth-child(1) {
  top: 0;
}

.nav-toggle span:nth-child(2) {
  top: 8px;
}

.nav-toggle span:nth-child(3) {
  top: 16px;
}

.nav-toggle span.nav-toggle-txt {
  height: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  text-align: center;
}

#top-head.fixed .logo, #top-head .mobile-logo {
  text-align: left;
}

.p-header-nav {
  position: absolute;
  visibility: hidden;
  top: 0;
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 65vh;
  height: 65svh;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px 0;
  left: 0;
  right: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  z-index: 100;
}

.p-header-nav ul {
  list-style: none;
  position: static;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-header-nav ul li {
  float: none;
  position: static;
  width: 100%;
  display: block;
  color: #fff;
  display: block;
  text-decoration: none;
  padding: 3% 0;
  -webkit-transition: color .6s ease;
  transition: color .6s ease;
  font-size: 20px;
}

.p-header-nav ul li a {
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  color: #fff;
  font-size: 1.2rem;
}

.p-header-nav #top-head.fixed #global-nav ul li a {
  font-size: 1.5rem;
}

#nav-toggle {
  display: block;
}

.open #nav-toggle {
  position: fixed;
}

.open #nav-toggle span {
  background: #fff;
}

.open #nav-toggle span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.open #nav-toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}

.open #nav-toggle span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.open #global-nav {
  visibility: visible;
  position: fixed;
}

.main {
  max-width: 1440px;
}

@media (min-width: 1441px) {
  .main {
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .main {
    width: 100%;
    margin: 0 auto;
  }
}

.content {
  margin: 100px auto;
}

@media (max-width: 768px) {
  .content {
    margin: 40px auto;
  }
}

.content__inner {
  width: 90%;
  max-width: 920px;
  margin: auto;
  position: relative;
}

@media (max-width: 768px) {
  .content__inner {
    width: 80%;
  }
}

.content__ttl {
  text-align: center;
  display: inline-block;
  margin: 0 auto 20px;
  padding: 0 0 16px;
  font-size: 24px;
  position: relative;
  font-weight: 400;
}

.content__ttl::before {
  content: '';
  position: absolute;
  margin: auto;
  background-color: #FFCDB8;
  border-radius: 50%;
  left: -1em;
  top: -15px;
  width: 50px;
  height: 50px;
  z-index: -1;
}

@media (max-width: 768px) {
  .content__ttl {
    margin-bottom: 20px;
    font-size: 20px;
  }
}

.content__inner {
  max-width: 90%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .content__inner {
    max-width: 1040px;
  }
}

/********************* メインビジュアル *********************/
.mv {
  scroll-margin-top: 100px;
  background-image: url(./img/mv-pc.png);
  background-size: cover;
}

.mv__area {
  height: calc(100vh - 40px);
  position: relative;
}

.mv__area--content {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  position: absolute;
  right: 10%;
  top: 20%;
}

.mv__area--ttl {
  width: 100%;
  padding: 0;
  font-weight: 600;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0em;
  font-family: "Sawarabi Gothic";
}

@media (max-width: 768px) {
  .mv {
    background-image: url(./img/mv-sp.png);
  }
  .mv__area--content {
    margin: 0 auto;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 10%;
    top: 25%;
    height: inherit;
  }
  .mv__area--ttl {
    font-weight: 700;
    color: #000;
    width: auto;
    margin: 0;
    letter-spacing: .4em;
    padding: 0;
    font-size: calc(100vw * 18 / 390);
    text-shadow: 1px 1px 5px white;
  }
}

@media screen and (min-width: 768px) and (max-width: 1439px) {
  .mv {
    background-position: center;
  }
  .mv__area {
    min-height: 450px;
  }
  .mv__area--content {
    width: auto;
    margin: 0;
  }
  .mv__area--ttl {
    font-size: calc(100vw * 24 / 1280);
    height: 100%;
  }
}

@media screen and (min-width: 501px) and (max-width: 767px) {
  .mv__area--ttl {
    font-size: calc(100vw * 11 / 390);
    letter-spacing: 0.25em;
  }
}

@media (max-width: 500px) {
  .mv__area--content {
    left: 10%;
    right: auto;
    top: 20%;
    height: inherit;
  }
  .mv__area--ttl {
    letter-spacing: 0.25em;
    padding: 0;
    font-size: calc(100vw * 16 / 390);
  }
}

/********************* メインビジュアル *********************/
/********************* ギャラリー *********************/
.floor__inner {
  width: 89%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.floor__content {
  width: 100%;
  margin: 0 auto;
}

.floor__content--list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: (1fr)[3];
      grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  max-width: 1040px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .floor__inner {
    width: 90%;
    margin: 80px auto 0;
  }
  .floor__content {
    width: 100%;
  }
  .floor__content--ttl:before {
    right: -60%;
  }
  .floor__content--list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: (1fr)[2];
        grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    max-width: 1040px;
    margin: 0 auto;
  }
}

/********************* ギャラリー *********************/
/********************* アクセス *********************/
.info__inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  max-width: 1160px;
  margin: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  font-size: 16px;
}

.info__area {
  margin: 0 auto;
}

.info__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}

.info__content--box {
  width: 50%;
}

.info__content--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.info__content--item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 36px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.info__content--date {
  width: 15%;
}

.info__content--company {
  margin: 0 0 0 10%;
}

.info__content--company dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 20px;
  padding: 0 0 10px 20px;
  border-bottom: 1px solid;
  font-size: 14px;
  line-height: 2;
}

.info__content--company dt {
  width: 30%;
}

@media (max-width: 768px) {
  .info {
    margin: 70px auto 0;
  }
  .info__inner {
    width: 92%;
  }
  .info__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .info__content--box {
    width: 100%;
  }
  .info__content--list {
    width: 100%;
  }
  .info__content--item {
    width: 100%;
    margin: 0 auto 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .info__content--date {
    width: 100%;
    margin: 0 0 10px;
  }
  .info__content--company {
    margin: 40px 0 0;
  }
  .info__content--company dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto 20px;
    line-height: 1.5;
  }
  .info__content--company dt {
    width: 25%;
  }
}

/********************* アクセス *********************/
/********************* お問い合わせ *********************/
.contact__inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  max-width: 1160px;
  margin: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  font-size: 16px;
}

.contact__area {
  margin: 0 auto;
}

.contact__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}

.contact__content--box {
  width: 50%;
}

.contact__content--sns {
  width: 40%;
  margin: 0 5%;
}

.contact__content--txt {
  font-size: 15px;
  margin: 0 0 20px 10%;
  line-height: 1.75;
}

.contact__content--txt span {
  font-size: 18px;
}

@media (max-width: 768px) {
  .contact {
    margin: 70px auto 0;
  }
  .contact__inner {
    width: 92%;
  }
  .contact__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contact__content--box {
    width: 100%;
  }
  .contact__content--sns {
    margin: 0;
  }
  .contact__content--list {
    width: 100%;
  }
  .contact__content--txt {
    margin: 20px 0;
  }
}

/********************* お問い合わせ *********************/
/********************* お問い合わせ *********************/
.privacy__inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  max-width: 1160px;
  margin: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  font-size: 16px;
}

.privacy__area {
  margin: 0 auto;
}

.privacy__content p {
  font-size: 15px;
  letter-spacing: 0;
  margin: 0 0 20px;
}

.privacy__content h3 {
  font-size: 18px;
  letter-spacing: 0;
  margin: 0 0 20px;
}

.privacy__content ol {
  margin: 10px 0 20px 20px;
}

.privacy__content li {
  font-size: 15px;
  letter-spacing: 0;
  margin: 0 0 10px 20px;
}

@media (max-width: 768px) {
  .privacy {
    margin: 70px auto 0;
  }
  .privacy__inner {
    width: 92%;
  }
  .privacy__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .privacy__content--box {
    width: 100%;
  }
  .privacy__content--sns {
    margin: 0;
  }
  .privacy__content--list {
    width: 100%;
  }
  .privacy__content--txt {
    margin: 20px 0;
  }
}

/********************* お問い合わせ *********************/
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 5%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  height: 40px;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__privacy {
  margin: 0 20px 0 0;
}

.footer__copy {
  text-align: center;
}

@media (max-width: 768px) {
  .footer__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
    padding: 0 0 20px;
  }
  .footer__content {
    width: 100%;
    margin: 20px auto 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__logo {
    width: 100px;
    margin: 0 auto;
    text-align: center;
  }
  .footer__privacy {
    text-align: center;
    width: 100%;
    margin: 0;
  }
  small {
    margin: 0 auto 10px;
    text-align: center;
    display: block;
    font-size: 10px;
  }
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}

#page-top a {
  background: #fff;
  text-decoration: none;
  color: #fff;
  width: 40px;
  padding: 13px 5px 13px 8px;
  height: 40px;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border: 1px solid #4A5764;
}

@media (max-width: 768px) {
  #page-top {
    bottom: 80px;
  }
}

.fas {
  color: #4A5764;
}

.fa-brands, .fab {
  font-size: 20px;
}
/*# sourceMappingURL=style.css.map */