@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "游ゴシック体", "Yu Gothic", yugothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-family: "Cinzel";
  font-family: "Sawarabi Mincho";
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  overflow-x: hidden;
  overflow-wrap: break-word;
  padding-top: 100px;
}

@media (max-width: 767px) {
  body {
    padding-top: 60px;
  }
}

img {
  max-width: 100%;
  height: auto;
  border: none;
}

a {
  color: #333;
}

a:hover {
  text-decoration: none;
  border-bottom: none;
}

ul,
li {
  padding-left: 0;
  list-style: none;
  border-bottom: none;
}

.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  height: inherit;
}

@media (min-width: 1247px) {
  .inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 767px) {
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.section {
  padding-top: 100px;
  padding-bottom: 120px;
  height: 600px;
}

@media (max-width: 767px) {
  .section {
    padding-top: 30px;
    padding-bottom: 80px;
  }
}

button {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 70%;
  padding: 15px 0;
  border-radius: 999px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #0094ca;
  background-color: #fff;
  border: 3px solid #0094ca;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

button:hover {
  background-color: #0094ca;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 767px) {
  button {
    width: 90%;
    padding: 10px 0;
  }
}

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

@media (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header__cover {
  border-bottom: 2px solid #333;
}

.header__inner {
  padding-top: 30px;
  padding-bottom: 30px;
  width: 60%;
  margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1247px) {
  .header__inner {
    padding-top: 14px;
    padding-bottom: 14px;
    width: 70%;
  }
}

@media (max-width: 767px) {
  .header__inner {
    padding-top: 0;
    padding-bottom: 14px;
    width: 80%;
  }
}

.header__top {
  width: 100%;
}

.header__top a,
.header__top img {
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
  background-size: contain;
  background-repeat: no-repeat;
}

.header__top a:hover,
.header__top img:hover {
  -webkit-transform: translateY(-0.2em);
          transform: translateY(-0.2em);
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.header__nav {
  width: 100%;
  margin-top: 20px;
}

.header__nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.header__nav__item {
  color: #333;
  margin: 0 5px;
  font-weight: 700;
}

.header__nav__item a {
  color: #999;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__nav__item a:hover {
  color: #0094ca;
  cursor: pointer;
  -webkit-transform: translateY(-0.2em);
          transform: translateY(-0.2em);
}

.home {
  width: 100%;
}

.home__contents {
  width: 80%;
  text-align: center;
  margin: 0 auto;
  padding-top: 10%;
}

.home__contents a {
  color: #999;
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}

.home__contents a:hover {
  color: #333;
  cursor: pointer;
  -webkit-transform: translateY(-0.5em);
          transform: translateY(-0.5em);
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
}

.home__contents p {
  margin-bottom: 10px;
}

.home__contents h1 {
  line-height: 1.5;
}

@media (max-width: 767px) {
  .home__contents h1 {
    font-size: 2rem;
  }
}

.coming-soon p {
  text-align: center;
}

.work {
  height: auto;
}

.work__container {
  width: 80%;
  margin: 0 auto;
}

.work__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}

.work__item {
  width: 32%;
  margin: 5px;
}

@media (min-width: 768px) and (max-width: 1247px) {
  .work__item {
    width: 48%;
  }
}

@media (max-width: 767px) {
  .work__item {
    width: 90%;
    margin-bottom: 20px;
  }
  .work__item:last-of-type {
    margin-bottom: 0;
  }
}

.work__media a,
.work__media img {
  width: 100%;
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}

.work__media a:hover,
.work__media img:hover {
  -webkit-transform: translateY(-0.5em);
          transform: translateY(-0.5em);
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.work__content {
  text-align: center;
  font-size: 14px;
}

#grayDisplay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100% !important;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

#grayDisplay img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 40%;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translateY(0.5em);
          transform: translateY(0.5em);
}

@media (min-width: 768px) and (max-width: 1247px) {
  #grayDisplay img {
    min-width: 60%;
  }
}

@media (max-width: 767px) {
  #grayDisplay img {
    min-width: 80%;
  }
}

.shop {
  height: auto;
}

.shop__items {
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  margin: 0 auto;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 768px) and (max-width: 1247px) {
  .shop__items {
    width: 60%;
  }
}

.shop__item {
  width: 15%;
}

.shop__item a,
.shop__item img {
  opacity: 0.6;
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}

.shop__item a:hover,
.shop__item img:hover {
  opacity: 1;
  color: #666;
  cursor: pointer;
  -webkit-transform: translateY(-0.5em);
          transform: translateY(-0.5em);
}

@media (min-width: 768px) and (max-width: 1247px) {
  .shop__item {
    width: 34%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .shop__item {
    width: 40%;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}

.shop__item__container {
  width: 70%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.icon {
  width: 100%;
}

.icon-name {
  margin-top: 20px;
  text-align: center;
  font-style: 16px;
}

@media (max-width: 767px) {
  .icon-name {
    font-size: 0.8rem;
    margin-top: 10px;
  }
}

.sns {
  height: auto;
}

.sns__items {
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  margin: 0 auto;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 768px) and (max-width: 1247px) {
  .sns__items {
    width: 0 auto;
  }
}

@media (max-width: 767px) {
  .sns__items {
    width: 80%;
    width: 0 auto;
  }
}

.sns__item {
  width: 50%;
}

.sns__item a,
.sns__item img {
  opacity: 0.6;
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}

.sns__item a:hover,
.sns__item img:hover {
  opacity: 1;
  color: #000;
  cursor: pointer;
  -webkit-transform: translateY(-0.5em);
          transform: translateY(-0.5em);
}

.sns__item__container {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
}

.fab {
  font-size: 9em;
}

@media (min-width: 768px) and (max-width: 1247px) {
  .fab {
    font-size: 7rem;
  }
}

@media (max-width: 767px) {
  .fab {
    font-size: 5em;
  }
}

.contact {
  height: auto;
}

.contact__item {
  max-width: 800px;
  width: 100%;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  padding: 60px;
}

@media (max-width: 767px) {
  .contact__item {
    width: 100%;
    padding: 60px 20px;
  }
}

.contact__controls {
  margin-top: 0;
  margin-bottom: 33px;
}

.contact__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  font-weight: 700;
}

.contact__control:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .contact__control {
    display: block;
  }
}

.contact__control dt {
  width: 20%;
}

@media (max-width: 767px) {
  .contact__control dt {
    width: 100%;
    margin-bottom: 10px;
  }
}

.contact__control dd {
  width: calc(80% - 32px);
  margin-left: 32px;
}

@media (max-width: 767px) {
  .contact__control dd {
    width: 100%;
    margin-left: 0;
  }
}

.contact__control dd textarea {
  height: 240px;
  margin-bottom: 0;
}

.contact__label {
  font-weight: 400;
}

.form-input {
  border: 1px solid #707070;
  padding: 4px 16px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border-radius: 0;
  font-family: inherit;
  font-size: 14px;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 38px;
  width: 100%;
  padding: 12px 16px;
  color: #ccc;
}

@media (max-width: 767px) {
  .form-input {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}

.form-select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent url(../img/select-arrow.png) no-repeat center right 12px/17px 14px;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  padding: 3px 16px;
  width: 100%;
  border: 1px solid #0094ca;
  height: 38px;
}

@media (max-width: 767px) {
  .form-select {
    padding-top: 3px;
    padding-bottom: 3px;
    background-position: center right 10px;
  }
}

.form-select::-ms-expand {
  display: none;
}

.form-textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: none;
  border-radius: 0;
  font-family: inherit;
  font-size: 14px;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 240px;
  width: 100%;
  padding: 12px 16px;
}

@media (max-width: 767px) {
  .form-textarea {
    height: 180px;
  }
}

.contact__check,
.contact__submit {
  text-align: center;
}

.form-radio {
  display: none;
}

.form-radio + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 28px;
  position: relative;
}

.form-radio + span::before, .form-radio + span::after {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-radio + span::before {
  background: #fff;
  border: 1px solid #707070;
  display: block;
  left: 0;
  width: 20px;
  height: 20px;
}

.form-radio + span::after {
  background: #0094ca;
  border: 1px solid transparent;
  left: 5px;
  width: 10px;
  height: 10px;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  opacity: 0;
}

.form-radio:checked + span::after {
  opacity: 1;
}

.form-checkbox {
  display: none;
}

.form-checkbox + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 50px;
  position: relative;
}

@media (max-width: 767px) {
  .form-checkbox + span {
    padding-left: 46px;
  }
}

.form-checkbox + span::before, .form-checkbox + span::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-checkbox + span::before {
  background: #fff;
  border: 1px solid #707070;
  display: block;
  left: 0;
  width: 25px;
  height: 25px;
}

.form-checkbox + span::after {
  border: 1px solid transparent;
  left: 0;
  width: 25px;
  height: 25px;
  background: transparent url(../img/checkbox.png) no-repeat center center/contain;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  opacity: 0;
}

.form-checkbox:checked + span::after {
  opacity: 1;
}

.contact__radio {
  margin-bottom: 67px;
}

.contact__radio-item {
  margin-right: 36px;
}

.contact__check {
  margin-bottom: 50px;
  font-style: 16px;
  color: #999;
  font-weight: normal;
}

@media (max-width: 767px) {
  .contact__check {
    margin-bottom: 40px;
  }
}

.contact__check a {
  font-weight: 700;
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
  color: #999;
}

.contact__check a:hover {
  cursor: pointer;
  color: #0094ca;
}

.contact__label--required {
  position: relative;
}

.contact__label--required::after {
  content: "必須";
  position: absolute;
  color: #fff;
  background-color: #e81919;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  width: 44px;
  border-radius: 4px;
  top: 30px;
  left: 0;
}

@media (max-width: 767px) {
  .contact__label--required::after {
    left: 110%;
    top: 1px;
  }
}

.policy {
  height: auto;
}

.policy__contents {
  width: 80%;
  margin: 0 auto;
  line-height: 1.8;
}

.policy__contents h3 {
  text-align: center;
  color: #999;
  font-weight: 700;
  margin: 30px 0;
}

@media (max-width: 767px) {
  .policy__contents {
    text-align: left;
  }
  .policy__contents h3 {
    font-size: 1.5rem;
  }
  .policy__contents h4 {
    font-size: 1rem;
    font-weight: 700;
  }
}

.over {
  display: block;
  text-align: right;
}

footer {
  height: 158px;
}

footer p {
  text-align: center;
  color: #999;
}
