@charset "UTF-8";
/*---------------------------------------- 
	setting Layout
------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* iframe,*/
html, body, div, span, applet, object,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}

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

html {
  -webkit-text-size-adjust: none;
  height: 100%;
  font-size: 62.5%;
}

body {
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

ol, ul, ul li, ol li {
  list-style: none;
}

iframe {
  /*	z-index:1;	*/
}

img {
  border: none;
  vertical-align: text-bottom;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

a {
  text-decoration: none;
}

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

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: top;
}

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

blockquote, q {
  quotes: "" "";
}

option {
  padding-right: 10px;
}

.cf:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

a:hover {
  transition: 0.3s all;
}

main {
  overflow-x: hidden;
}

.scroll-fade {
  opacity: 0;
}

.scroll-fade.done {
  -webkit-animation-name: fadeAnime-1;
          animation-name: fadeAnime-1;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
}

.scroll-fade.-fade.done {
  -webkit-animation-name: fadeAnime-2;
          animation-name: fadeAnime-2;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
}

@-webkit-keyframes fadeAnime-1 {
  0% {
    opacity: 0;
    transform: translateX(-12px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeAnime-1 {
  0% {
    opacity: 0;
    transform: translateX(-12px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeAnime-2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeAnime-2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeAnime-3 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeAnime-3 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 
@media screen and(max-width: 768px){

	html{
		font-size: calc(100vw / 40);
	}

}
 */
/*メールフォーム用css*/
.contact {
  padding: 120px 20px;
}
.contact .inner {
  max-width: 720px;
  margin: 0 auto;
}

.l__inquiry {
  max-width: 1000px;
  margin: auto;
  position: relative;
  transition: opacity 0.3s ease;
  font-size: 0.875em;
}
.l__inquiry.dimmed {
  opacity: 0.5;
  pointer-events: none;
}
.l__inquiry--headline {
  text-align: center;
  font-size: 1.5em;
  margin: 0 0 40px;
  font-weight: bold;
}
.l__inquiry .error_log {
  display: block;
  font-size: 0.875em;
  color: #666;
  margin: 16px 0 24px;
}
.l__inquiry .--check {
  display: none;
}
.l__inquiry .form--block {
  padding: 24px;
  display: flex;
  align-items: center;
}
.l__inquiry .form--block.--error input {
  background: #ffd9d9;
}
.l__inquiry .form--block.--top {
  align-items: flex-start;
}
.l__inquiry .form--block .form--headline {
  flex-basis: 25%;
}
.l__inquiry .form--block .form--headline .--title {
  font-size: 1em;
}
.l__inquiry .form--block .form--headline .--req {
  display: block;
  color: #666;
  font-size: 0.875em;
  margin: 0 0;
}
.l__inquiry .form--block .form--input {
  flex-basis: calc(75% - 40px);
}
.l__inquiry .form--block .form--input .radio--wrapper {
  margin: 24px 0;
  overflow: hidden;
  display: flex;
}
.l__inquiry .form--block .form--input .radio--wrapper .radio--item {
  display: block;
  width: auto;
}
.l__inquiry .form--block .form--input .radio--wrapper .radio--item input[type=radio] {
  display: none;
}
.l__inquiry .form--block .form--input .radio--wrapper .radio--item label {
  display: inline-block;
  position: relative;
  margin-left: 24px;
  padding: 8px 24px;
  border-radius: 2px;
  color: #1A1519;
  font-size: 1em;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}
.l__inquiry .form--block .form--input .radio--wrapper .radio--item label:before {
  position: absolute;
  content: "";
  top: 50%;
  left: -10px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #f2f2f2;
  border-radius: 50%;
}
.l__inquiry .form--block .form--input .radio--wrapper .radio--item input[type=radio]:checked + label {
  font-weight: bold;
}
.l__inquiry .form--block .form--input .radio--wrapper .radio--item input[type=radio]:checked + label:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: #222;
}
.l__inquiry .form--block .form--input textarea,
.l__inquiry .form--block .form--input select,
.l__inquiry .form--block .form--input input[type=text],
.l__inquiry .form--block .form--input input[type=date],
.l__inquiry .form--block .form--input input[type=datetime-local],
.l__inquiry .form--block .form--input input[type=tel],
.l__inquiry .form--block .form--input input[type=email] {
  padding: 16px;
  font-size: 1.25em;
  width: 100%;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #ccc;
}
.l__inquiry .form--block .form--input textarea:focus,
.l__inquiry .form--block .form--input select:focus,
.l__inquiry .form--block .form--input input[type=text]:focus,
.l__inquiry .form--block .form--input input[type=date]:focus,
.l__inquiry .form--block .form--input input[type=datetime-local]:focus,
.l__inquiry .form--block .form--input input[type=tel]:focus,
.l__inquiry .form--block .form--input input[type=email]:focus {
  outline: none;
}
.l__inquiry .form--block .form--input textarea {
  height: 280px;
}
.l__inquiry .--privacy {
  margin: 24px 0 0;
}
.l__inquiry .--privacy a {
  text-decoration: underline;
}
.l__inquiry .--submit {
  text-align: center;
  margin: 40px 0 0;
}
.l__inquiry .--submit .--send {
  border: 1px solid #222;
  color: #222;
  padding: 26px 52px;
  font-size: 1em;
  line-height: 1;
  display: block;
  margin: auto;
  min-width: 315px;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 40px;
  background: none;
  cursor: pointer;
  transition: all 0.4s;
}
.l__inquiry .--submit .--send:hover {
  opacity: 0.4;
}
.l__inquiry .--submit .--send:focus {
  outline: 0;
}
.l__inquiry .--submit .--send:disabled {
  opacity: 0.2;
}

.--complete {
  display: none;
  font-size: 1.125em;
  text-align: center;
  padding: 48px 0;
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  display: none;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 5px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 767px) {
  .l__inquiry--headline {
    font-size: 1em;
    margin: 0 0 5%;
  }
  .l__inquiry .error_log {
    display: block;
    font-size: 0.875em;
    color: #666;
    margin: 16px 0 24px;
  }
  .l__inquiry .--check {
    display: none;
  }
  .l__inquiry .form--block {
    padding: 3% 0;
    display: block;
  }
  .l__inquiry .form--block.--error input {
    background: #ffd9d9;
  }
  .l__inquiry .form--block.--top {
    align-items: flex-start;
  }
  .l__inquiry .form--block .form--headline {
    flex-basis: auto;
    margin: 0 0 2%;
  }
  .l__inquiry .form--block .form--headline .--title {
    font-size: 1em;
    display: inline-block;
  }
  .l__inquiry .form--block .form--headline .--req {
    display: block;
    color: #666;
    font-size: 0.8em;
    margin: 0;
    display: inline-block;
  }
  .l__inquiry .form--block .form--input {
    flex-basis: auto;
  }
  .l__inquiry .form--block .form--input .radio--wrapper {
    margin: 2% 0;
    display: block;
  }
  .l__inquiry .form--block .form--input .radio--wrapper .radio--item label {
    margin-left: 12px;
    padding: 3% 0 2% 17px;
  }
  .l__inquiry .form--block .form--input textarea {
    height: 200px;
  }
  .l__inquiry .--submit {
    margin: 48px 0 0;
  }
  .l__inquiry .--submit .--send {
    width: 90%;
    padding: 20px 0;
    font-size: 0.9em;
    margin: 5% auto;
  }
  .l__inquiry .--submit .--send:hover {
    opacity: 1;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

a, a:visited {
  color: #333;
}

.btn {
  display: inline-block;
  background: #fff;
  border: 1px solid black;
  padding: 26px 52px;
  font-size: 0.9em;
  color: black;
  border-radius: 40px;
  margin: 40px;
  transition: all 0.2s;
  line-height: 1;
}
.btn:hover {
  background: black;
  color: #fff;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .btn {
    width: 90%;
    padding: 20px 0;
    font-size: 0.9em;
    margin: 5% 0;
  }
}
.header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding: 1rem;
  background: transparent;
  z-index: 1000;
}
.header__inner {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hamburger {
  position: fixed;
  top: 28px;
  right: 20px;
  z-index: 1001;
  width: 54px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 1px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.4s ease;
}
.hamburger span:nth-child(1), .hamburger span:nth-child(2), .hamburger span:nth-child(3) {
  width: 100%;
}
.hamburger span:nth-child(3) {
  width: 50%;
  align-self: flex-end;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(10.5px);
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-10.5px);
  opacity: 0;
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 200px;
  padding: 70px 0 0 0;
  z-index: 999;
  transition: right 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01), 0 1px 3px rgba(0, 0, 0, 0.02);
}
.nav-menu.active {
  right: 0;
}
.nav-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-menu__list li {
  margin-bottom: 12px;
}
.nav-menu__list li a {
  border: 1px solid black;
  background: black;
  padding: 12px 20px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  width: 100%;
  height: 100%;
  display: block;
  color: #fff;
  text-align: left;
  transition: all 0.2s;
}
.nav-menu__list li a:hover {
  border: 1px solid black;
  border-right: 1px solid white;
  background: #fff;
  color: black;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .hamburger {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 16px;
  }
  .nav-menu {
    max-width: 128px;
    padding: 52px 0 0 0;
  }
  .nav-menu__list li {
    margin-bottom: 8px;
  }
  .nav-menu__list li a {
    padding: 10px 8px 10px 16px;
    font-size: 13px;
  }
}
.hero__content {
  height: 100vh;
  min-height: 800px;
  background: #EDECE8;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__content h1 {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  display: flex;
}
.hero__content h1 img {
  width: 100%;
  height: auto;
  max-height: 100vh;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .hero__content h1 {
    width: 98%;
  }
}
@media screen and (max-width: 440px) {
  .hero__content {
    min-height: inherit;
  }
}

.about__content {
  padding: 120px 20px;
}
.about__content .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.about__content .inner h2 {
  text-align: center;
  line-height: 2;
  margin-bottom: 40px;
}
.about__content .inner small {
  text-align: right;
  display: block;
}
@media screen and (max-width: 768px) {
  .about__content {
    padding: 20% 5%;
  }
  .about__content .inner h2 {
    font-size: 14px;
    text-align: left;
    margin-bottom: 5%;
  }
  .about__content .inner h2 br {
    display: none;
  }
  .about__content .inner small {
    font-size: 12px;
  }
}

.exhibition__content {
  padding: 200px 20px;
  width: calc(100% - 40px);
  margin: 0 auto;
  background: #EDECE8;
  text-align: center;
}
.exhibition__content .inner h2 {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 40px;
}
.exhibition__content .inner h3 {
  font-size: 1.2em;
  margin-bottom: 20px;
}
.exhibition__content .inner p:not(:last-of-type) {
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .exhibition__content {
    padding: 20% 2%;
    width: 96%;
  }
  .exhibition__content .inner h2 {
    font-size: 1em;
    margin-bottom: 5%;
  }
  .exhibition__content .inner h3 {
    font-size: 0.9em;
    margin-bottom: 2.5%;
  }
  .exhibition__content .inner h3 span {
    display: inline-block;
  }
  .exhibition__content .inner p {
    font-size: 14px;
  }
  .exhibition__content .inner p:not(:last-of-type) {
    margin: 2.5% 0;
  }
}

.footer {
  width: calc(100% - 40px);
  margin: 120px auto 0;
  border-top: 1px solid #C6C6C6;
  padding: 72px 0;
}
.footer ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer ul .links {
  font-size: 13px;
  text-decoration: underline;
}
.footer ul .links a, .footer ul .links a:visited {
  color: #333;
}
.footer ul .copyright {
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 7.5% 2%;
    width: 96%;
    margin: 20% auto 0;
  }
  .footer ul .links,
.footer ul .copyright {
    font-size: 10px;
    letter-spacing: -0.5px;
  }
  .footer ul .logo {
    flex-basis: 20%;
  }
}
/*# sourceMappingURL=style.css.map */