@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+JP::wght@300,400;500;600&display=swap");
/*
$baseFont: "メイリオ", "Meiryo", verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;

$baseFont: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
*/
/*thin*/
/*normal*/
/*bold*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

/*
@mixin fontsize($size: 24, $base: 16) {
  font-size: $size + px;
  font-size: ($size / $base) * 1rem;
}
*/
/* 汎用クラス */
.opacity {
  opacity: 0.7;
  -moz-opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

.box_size {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  background: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif, monospace;
  color: #444;
  line-height: 1.8;
  letter-spacing: 0.025em;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (max-width: 575px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

img {
  vertical-align: bottom;
}

a {
  color: #666;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:link {
  color: #666;
}
a:visited {
  color: #666;
}
a:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
a:active {
  color: #666;
}
a:focus {
  outline: none !important;
}
a img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 575px) {
  a:hover {
    color: #666;
  }
  a:hover img {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

input,
textarea {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif, monospace;
  -webkit-appearance: none;
}

.inputBox,
input,
textarea {
  width: 100%;
  padding: 5px 8px;
  background: #fff;
  border: solid 1px #ddd;
  border-radius: 2px;
  color: #444;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  box-sizing: border-box;
  outline: none;
}
@media only screen and (max-width: 575px) {
  .inputBox,
  input,
  textarea {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.inputBox::placeholder,
input::placeholder,
textarea::placeholder {
  color: #ccc;
}
.inputBox.is-error,
input.is-error,
textarea.is-error {
  border: solid 2px #cc0000;
}
.inputBox.is-error:hover, .inputBox.is-error:focus,
input.is-error:hover,
input.is-error:focus,
textarea.is-error:hover,
textarea.is-error:focus {
  border: solid 2px #cc0000;
}
.inputBox:focus,
input:focus,
textarea:focus {
  border: solid 1px #999;
}
.inputBox:disabled,
input:disabled,
textarea:disabled {
  background: #eee;
  border: solid 1px #ddd;
  color: #999;
}
.inputBox::-ms-value,
input::-ms-value,
textarea::-ms-value {
  color: #999;
}
.inputBox.is-active-hover:hover,
input.is-active-hover:hover,
textarea.is-active-hover:hover {
  border: solid 1px #999;
}

.mwform-tel-field input {
  width: 60px;
}

textarea.inputBox,
textarea {
  height: auto;
  overflow: auto;
}

.textareaBox {
  height: 120px !important;
}

/* for IE11 */
*::-ms-backdrop,
_:-ms-lang(x),
.inputBox {
  padding: 3px 8px 7px 8px !important;
}

.selectBox,
select {
  position: relative;
  display: inline-block;
  background: #fff;
  border: solid 1px #ddd;
  border-radius: 2px;
  color: #444;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: normal;
  box-sizing: border-box;
  outline: none;
  width: 100%;
  padding: 7px 39px 5px 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
@media only screen and (max-width: 575px) {
  .selectBox,
  select {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.selectBox.is-selected,
select.is-selected {
  color: #444;
}
.selectBox.is-error,
select.is-error {
  border: solid 2px #cc0000;
}
.selectBox:disabled,
select:disabled {
  background: #eee;
  color: #999;
  cursor: initial;
}
.selectBox::-ms-value,
select::-ms-value {
  color: #999;
}
.selectBox-wrap,
select-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.selectBox-wrap:after,
select-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 5px 3.5px 0 3.5px;
  border-color: #666 transparent transparent transparent;
  pointer-events: none;
}
.selectBox-option-default,
select-option-default {
  color: #ccc;
}
.selectBox.is-error,
select.is-error {
  border: solid 2px #cc0000;
}

/* for IE11 */
*::-ms-backdrop,
_:-ms-lang(x),
.c-mn-select::-ms-expand {
  display: none;
}

*::-ms-backdrop,
_:-ms-lang(x),
.c-mn-select {
  padding: 7px 39px 5px 8px;
}

.mw_wp_form_confirm .selectBox-wrap:after {
  display: none;
}

@media screen and (max-width: 767px) {
  .displayPC {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .displayPC {
    display: none;
  }
}

.displayTAB {
  display: none;
}
@media screen and (max-width: 767px) {
  .displayTAB {
    display: block;
  }
}
@media only screen and (max-width: 575px) {
  .displayTAB {
    display: block;
  }
}

@media only screen and (max-width: 575px) {
  .displayPCTab {
    display: none;
  }
}

.displaySP {
  display: none;
}
@media screen and (max-width: 767px) {
  .displaySP {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .displaySP {
    display: block;
  }
}

@media only screen and (max-width: 575px) {
  .brPC {
    display: none;
  }
}

.brSP {
  display: none;
}
@media only screen and (max-width: 575px) {
  .brSP {
    display: block;
  }
}

.mt0 {
  margin-top: 0 !important;
}

.mt10 {
  /*@include marginBottom(1);*/
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt40 {
  margin-top: 40px !important;
}

#btnPagetop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 50px;
  height: 50px;
}
#btnPagetop a {
  display: block;
  width: 100%;
  height: 100%;
  border: solid 1px #333;
  border-radius: 100px;
}
#btnPagetop a:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-top: -3px;
  margin-left: -7px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#btnPagetop a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media screen and (max-width: 767px) {
  #btnPagetop {
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

/*----------------------------------------------------
  header
----------------------------------------------------*/
.header {
  position: fixed;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 0 30px;
  background: #fff;
  border-bottom: solid 1px #ddd;
  box-sizing: border-box;
}
@media only screen and (max-width: 575px) {
  .header {
    height: 60px;
    padding: 0 0 0 20px;
  }
}
.header__title a {
  display: block;
}
.header__title a img {
  width: 336px;
}
@media only screen and (max-width: 575px) {
  .header__title a img {
    width: 160px;
  }
}
.header__navi-wrap {
  display: flex;
  align-items: center;
}
.header__navi-language {
  margin-right: 20px;
}
@media only screen and (max-width: 575px) {
  .header__navi-language {
    margin-right: 10px;
  }
}
.header__navi-language ul {
  display: flex;
}
.header__navi-language ul li {
  position: relative;
}
.header__navi-language ul li:first-child {
  margin-left: 5px;
  padding-right: 5px;
}
.header__navi-language ul li:first-child::after {
  content: "/";
}
.header__navi-language ul li a {
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.025em;
  line-height: 1.5;
  color: #444;
}
.header__navi-humburger {
  width: 60px;
  height: 60px;
}

#hamburger {
  position: relative;
  z-index: 9999;
  display: block;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: 1s;
  flex-shrink: 0;
}

.hamburger__line {
  display: block;
  position: absolute;
  left: 15px;
  width: 20px;
  height: 2px;
  transition: 1s;
  border-radius: 4px;
  background: #444;
}

#line1 {
  top: 18px;
}

#line2 {
  top: 24px;
}

#line3 {
  top: 30px;
  width: 12px;
}

.in {
  transform: translateX(-360px);
}
@media only screen and (max-width: 575px) {
  .in {
    transform: translateX(-100%);
  }
}

.line_1,
.line_2,
.line_3 {
  background: #fff;
}

.line_1 {
  transform: rotate(-45deg);
  top: 30px !important;
}

.line_2 {
  opacity: 0;
}

.line_3 {
  transform: rotate(45deg);
  bottom: 30px !important;
  width: 20px !important;
}

#spNav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: -360px;
  z-index: 9998;
  width: 360px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.7s;
}
@media only screen and (max-width: 575px) {
  #spNav {
    right: auto;
    left: 100%;
    width: 100%;
  }
}

.spNav__main li {
  margin-top: 15px;
}
.spNav__main li:first-child {
  margin-top: 0;
}
.spNav__main li a {
  display: block;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.025em;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
}
.spNav__language {
  display: flex;
  margin: 60px 0 0;
}
.spNav__language li {
  position: relative;
  color: #fff;
}
.spNav__language li:first-child {
  margin-left: 5px;
  padding-right: 5px;
}
.spNav__language li:first-child::after {
  content: "/";
}
.spNav__language li a {
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.025em;
  line-height: 1.5;
  color: #fff;
}
.spNav__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0 0;
}
.spNav__sns li {
  padding: 0 15px;
}
.spNav__sns li a {
  display: flex;
  align-items: center;
  width: 30px;
  height: 100%;
}
.spNav__sns li a img {
  width: 100%;
}

/*----------------------------------------------------
  footer
----------------------------------------------------*/
.footer {
  padding: 0 0 80px;
}
@media only screen and (max-width: 575px) {
  .footer {
    padding-bottom: 40px;
  }
}
.footer__navi ul {
  display: flex;
  justify-content: center;
}
.footer__navi ul li {
  padding: 0 10px;
}
.footer__navi ul li a {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #444;
}
@media only screen and (max-width: 575px) {
  .footer__navi ul li a {
    font-size: 10px;
    font-size: 1rem;
  }
}
.footer__navi ul li a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  text-decoration: none;
}
.footer__sns {
  margin: 40px 0 0;
}
.footer__sns ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__sns ul li {
  padding: 0 15px;
}
.footer__sns ul li a {
  display: flex;
  align-items: center;
  width: 30px;
  height: 100%;
}
.footer__sns ul li a img {
  width: 100%;
}
.footer__copyright {
  margin: 30px 0 0;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .footer__copyright {
    font-size: 10px;
    font-size: 1rem;
  }
}

/*----------------------------------------------------
  #wrapper
----------------------------------------------------*/
#wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  /*
  @include responsive(tab) {
    padding-top: 100px;
  }
  @include responsive(sp) {
    padding-top: 70px;
  }
  */
}

.main {
  width: 100%;
}
.main--lower {
  padding-top: 140px;
}
@media only screen and (max-width: 575px) {
  .main--lower {
    padding-top: 90px;
  }
}
.main__title {
  margin: 0 0 60px;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.025em;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.5;
  text-align: center;
  /*
  & + .main__section {
    padding-top: 0;
  }
  */
}
@media only screen and (max-width: 575px) {
  .main__title {
    margin-bottom: 30px;
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.main__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 40px;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.025em;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .main__subtitle {
    font-size: 20px;
    font-size: 2rem;
  }
}
.main__subtitle::before, .main__subtitle::after {
  content: "";
  width: 20px;
  height: 1px;
  background: #444;
}
.main__subtitle::before {
  margin-right: 20px;
}
.main__subtitle::after {
  margin-left: 20px;
}
@media only screen and (max-width: 575px) {
  .main__subtitle {
    margin-bottom: 20px;
  }
}
.main__section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px 80px;
  box-sizing: border-box;
}
@media only screen and (max-width: 575px) {
  .main__section {
    padding: 0 20px 40px;
  }
}

.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 48px;
  background: #000;
  border-radius: 100px;
  overflow: hidden;
}
@media only screen and (max-width: 575px) {
  .btn {
    height: 40px;
  }
}
.btn span {
  position: relative;
  z-index: 10;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.025em;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.1em;
}
.btn img {
  position: relative;
  z-index: 10;
  width: auto;
  height: 18px;
  margin-left: -10px;
  margin-right: 10px;
}
.btn:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  text-decoration: none;
}
.btn:hover::after {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 100px;
  background: #555;
  transition: 0.3s ease-in-out;
}
.btn--reverse {
  background: #ccc;
}
.btn--reverse span {
  color: #444;
}
.btn--reverse::after {
  background: #fff;
  border: solid 2px #666;
}
.btn--ac {
  cursor: pointer;
}
.btn--ac span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn--ac span::before {
  content: "VIEW MORE";
}
.btn--ac.active span::before {
  content: "CLOSE";
}

.movie {
  position: relative;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
}
.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#breadcrumb {
  padding: 10px 0;
  background: #f8f8f8;
}
#breadcrumb:after {
  content: " ";
  display: block;
  clear: both;
}
#breadcrumb .inner {
  font-size: 12px;
  font-size: 1.2rem;
  color: #444;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 575px) {
  #breadcrumb .inner {
    font-size: 10px;
    font-size: 1rem;
  }
}
#breadcrumb .inner a {
  color: #666;
  text-decoration: none;
}
#breadcrumb .inner a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  #breadcrumb {
    padding: 5px 0;
  }
  #breadcrumb .inner {
    font-size: 10px;
    font-size: 1rem;
  }
}

/*----------------------------------------------------
  top
----------------------------------------------------*/
.top-main {
  position: relative;
  width: 100%;
  height: 100vh;
}
.top-main__hamburger {
  position: absolute !important;
  top: 15px;
  right: 30px;
}
@media only screen and (max-width: 575px) {
  .top-main__hamburger {
    top: 10px;
    right: 10px;
  }
}
.top-main__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 5;
}
@media only screen and (max-width: 575px) {
  .top-main__title {
    top: auto;
    left: auto;
    bottom: 4.49vh;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
  }
}
.top-main__title-logo {
  width: 39.0625vw;
  margin: 0 auto;
}
.top-main__title-logo img {
  width: 100%;
}
@media only screen and (max-width: 575px) {
  .top-main__title-logo {
    width: 84%;
  }
}
.top-main__title-text {
  width: 100%;
  margin-top: 3.125vw;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.025em;
  font-size: 1.06vw;
  line-height: 2.25;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 575px) {
  .top-main__title-text {
    width: 84%;
    margin-top: 2.99vh;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    font-size: 2.93vw;
    line-height: 2;
  }
}
.top-main__title-sns {
  margin: 40px 0 0;
}
.top-main__title-sns ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-main__title-sns ul li {
  padding: 0 10px;
}
.top-main__title-sns ul li a {
  display: flex;
  align-items: center;
  width: 30px;
  height: 100%;
}
.top-main__title-sns ul li a img {
  width: 100%;
}
.top-main__image {
  width: 100%;
  height: calc(100vh - 90px);
}
@media only screen and (max-width: 575px) {
  .top-main__image {
    height: 100vh;
  }
}
.top-main__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-main .swiper {
  width: 100%;
  height: calc(100vh - 90px);
}
@media only screen and (max-width: 575px) {
  .top-main .swiper {
    height: 100vh;
  }
}
.top-main__navi {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 90px;
  background: #fff;
}
@media only screen and (max-width: 575px) {
  .top-main__navi {
    display: none;
  }
}
.top-main__navi-gnavi ul, .top-main__navi-language ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-main__navi-gnavi ul li a, .top-main__navi-language ul li a {
  display: block;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.025em;
  line-height: 1.5;
  color: #444;
  letter-spacing: 0.025em;
}
.top-main__navi-gnavi ul li a:hover, .top-main__navi-language ul li a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  text-decoration: none;
}
.top-main__navi-gnavi ul li a {
  padding: 0 15px;
}
.top-main__navi-language {
  margin-top: 15px;
}
.top-main__navi-language ul li:first-child {
  border-right: solid 1px #333;
}
.top-main__navi-language ul li a {
  padding: 0 20px;
  font-size: 11px;
  font-size: 1.1rem;
}
.top-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px 80px;
  box-sizing: border-box;
}
.top-section:nth-of-type(odd) {
  background: #f8f8f8;
}
@media only screen and (max-width: 575px) {
  .top-section {
    padding: 0 20px 40px;
  }
}
.top-section__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.top-section__inner + .top-section__inner {
  margin-top: 80px;
}
@media only screen and (max-width: 575px) {
  .top-section__inner + .top-section__inner {
    margin-top: 40px;
  }
}
.top-section__title {
  margin: 0 0 40px;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.025em;
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .top-section__title {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 575px) {
  .top-section__title {
    margin-bottom: 20px;
  }
}
.top-music-art {
  max-width: 100%;
  padding: 60px 0;
  background: #f8f8f8;
}
@media only screen and (max-width: 575px) {
  .top-music-art {
    padding: 30px 20px;
  }
}
.top-music-art__list {
  display: flex;
  justify-content: space-between;
}
.top-music-art__list li {
  width: calc(50% - 20px);
}
@media only screen and (max-width: 575px) {
  .top-music-art__list li {
    width: calc(50% - 10px);
  }
}
.top-music-art__list li a {
  display: block;
}
.top-music-art__list li a img {
  width: 100%;
}
.top-music-art__list li a .top-section__title {
  margin-top: 20px;
  margin-bottom: 0;
  color: #444;
}
@media only screen and (max-width: 575px) {
  .top-music-art__list li a .top-section__title {
    margin-top: 10px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.top-music-art__list li a:hover {
  text-decoration: none;
}
.top-music-art__list li a:hover .top-section__title {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.top-music, .top-project, .top-profile, .top-information, .top-inspiration, .top-support {
  max-width: 100%;
  padding: 60px 0;
}
@media only screen and (max-width: 575px) {
  .top-music, .top-project, .top-profile, .top-information, .top-inspiration, .top-support {
    padding: 30px 20px;
  }
}
.top-profile {
  padding-top: 80px;
}
@media only screen and (max-width: 575px) {
  .top-profile {
    padding-top: 40px;
  }
}
.top-profile__wrap {
  position: relative;
  width: 100%;
  padding: 40px 0 0 60px;
  box-sizing: border-box;
}
@media only screen and (max-width: 575px) {
  .top-profile__wrap {
    padding: 0;
  }
}
.top-profile__text-wrap {
  max-width: 100%;
  padding: 40px 20px 40px 460px;
  background: #fff;
  box-sizing: border-box;
}
@media only screen and (max-width: 575px) {
  .top-profile__text-wrap {
    padding: 20px 20px 30px;
  }
}
.top-profile__title {
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.025em;
  font-size: 20px;
  font-size: 2rem;
}
@media only screen and (max-width: 575px) {
  .top-profile__title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 575px) and (max-width: 575px) {
  .top-profile__title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.top-profile__text {
  margin: 15px 0 0;
  line-height: 1.75;
  color: #444;
}
@media only screen and (max-width: 575px) {
  .top-profile__text {
    margin-top: 10px;
  }
}
.top-profile__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 480px;
}
@media only screen and (max-width: 575px) {
  .top-profile__img {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }
}
.top-profile__img img {
  width: 100%;
}
.top-profile__btn {
  margin: 25px 0 0;
}
@media only screen and (max-width: 575px) {
  .top-profile__btn {
    margin: 20px auto 0;
  }
}
.top-information__list, .top-inspiration__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: -20px;
}
.top-information__list li, .top-inspiration__list li {
  width: calc((100% - 40px) / 3);
  margin: 20px 20px 0 0;
  background: #f8f8f8;
}
.top-information__list li:nth-child(3n), .top-inspiration__list li:nth-child(3n) {
  margin-right: 0;
}
.top-information__list li a, .top-inspiration__list li a {
  display: block;
  padding-bottom: 20px;
}
.top-information__list li a:hover, .top-inspiration__list li a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  text-decoration: none;
}
.top-information__list-img, .top-inspiration__list-img {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.top-information__list-img img, .top-inspiration__list-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-information__list-date, .top-information__list-title, .top-inspiration__list-date, .top-inspiration__list-title {
  margin: 15px 0 0;
  padding: 0 15px;
  line-height: 1.5;
  color: #444;
  /*
  @include responsive(sp) {
    margin-top: 10px;
    padding: 0 10px;
  }
  */
}
.top-information__list-title, .top-inspiration__list-title {
  margin: 5px 0 0;
}
@media only screen and (max-width: 575px) {
  .top-information__list-title, .top-inspiration__list-title {
    margin-top: 2px;
  }
}
.top-information__list-date, .top-inspiration__list-date {
  font-size: 12px;
  font-size: 1.2rem;
  color: #666;
}
@media only screen and (max-width: 575px) {
  .top-information__list-date, .top-inspiration__list-date {
    font-size: 10px;
    font-size: 1rem;
  }
}
.top-information__btn, .top-inspiration__btn {
  margin: 40px auto 0;
}
@media only screen and (max-width: 575px) {
  .top-information__btn, .top-inspiration__btn {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .top-information__list {
    flex-direction: column;
  }
  .top-information__list li {
    width: 100%;
    margin: 20px 0 0;
  }
  .top-information__list li:first-child {
    margin-top: 0;
  }
}
.top-inspiration__list li a {
  padding-bottom: 0;
}
.top-inspiration__list-img {
  padding-top: 100%;
}
@media only screen and (max-width: 575px) {
  .top-inspiration__list {
    flex-wrap: wrap;
    margin-top: -20px;
  }
  .top-inspiration__list li {
    width: calc((100% - 20px) / 2);
    margin: 20px 20px 0 0;
  }
  .top-inspiration__list li:nth-child(3n) {
    margin-right: 20px;
  }
  .top-inspiration__list li:nth-child(2n) {
    margin-right: 0;
  }
}
.top-inspiration__btn {
  margin: 0 auto;
}
.top-support__list {
  display: flex;
  justify-content: center;
}
.top-support__list li {
  padding: 0 10px;
}
@media only screen and (max-width: 575px) {
  .top-support__list li {
    padding: 0 8px;
  }
}
.top-support__list li a {
  position: relative;
  display: block;
  width: 160px;
  padding: 7px 0;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  color: #666;
  border: solid 1px #666;
  border-radius: 100px;
}
@media only screen and (max-width: 575px) {
  .top-support__list li a {
    font-size: 10px;
    font-size: 1rem;
  }
}
.top-support__list li a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  text-decoration: none;
}
@media only screen and (max-width: 575px) {
  .top-support__list li a {
    width: 130px;
  }
}

/*----------------------------------------------------
  music
----------------------------------------------------*/
.music__lead {
  margin: 0 auto;
}
.music__lead p {
  margin-top: 20px;
  line-height: 2;
  letter-spacing: 0;
}
.music__lead p:first-of-type {
  margin-top: 0;
}
.music__lead p a {
  text-decoration: underline;
}
.music__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.music__list li {
  width: calc((100% - 60px) / 4);
  margin: 20px 20px 0 0;
}
.music__list li:nth-child(4n) {
  margin-right: 0;
}
.music__list li a {
  display: block;
}
.music__list li a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  text-decoration: none;
}
@media only screen and (max-width: 575px) {
  .music__list {
    margin-top: 10px;
  }
  .music__list li {
    width: calc((100% - 20px) / 2);
  }
  .music__list li:nth-child(2n) {
    margin-right: 0;
  }
}
.music__list-img {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.music__list-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.music__list-title, .music__list-date {
  margin: 2px 0 0;
  line-height: 1.5;
  color: #444;
  text-align: center;
}
.music__list-title {
  margin-top: 10px;
  font-weight: 500;
}
@media only screen and (max-width: 575px) {
  .music__list-title {
    margin-top: 5px;
  }
}
.music__list-title span {
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 575px) {
  .music__list-title span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.music__list-date {
  display: flex;
  justify-content: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #666;
}
@media only screen and (max-width: 575px) {
  .music__list-date {
    font-size: 10px;
    font-size: 1rem;
  }
}
.music__list-date span {
  margin: 0 5px;
}
.music__list-btn {
  margin: 40px auto 0;
  cursor: pointer;
}
@media only screen and (max-width: 575px) {
  .music__list-btn {
    margin-top: 20px;
  }
}
.music__list-wrap {
  display: none;
}
.music__list-wrap .music__list {
  margin-top: 0;
}
.music__spotify {
  width: 100%;
  height: 380px;
  margin-top: 80px;
}
@media only screen and (max-width: 575px) {
  .music__spotify {
    margin-top: 40px;
  }
}
.music__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 300px;
  padding: 40px;
  background: url("./img/music/bg_sns.jpg") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  box-sizing: border-box;
}
@media only screen and (max-width: 575px) {
  .music__sns {
    height: 150px;
    background-attachment: scroll;
    padding: 10px;
  }
}
.music__sns ul {
  display: flex;
  justify-content: center;
  width: 100%;
}
.music__sns ul li {
  margin-left: 20px;
}
.music__sns ul li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 991px) {
  .music__sns ul li {
    width: calc((100% - 40px) / 3);
  }
  .music__sns ul li .btn {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .music__sns ul li {
    margin-left: 10px;
  }
  .music__sns ul li .btn {
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 575px) and (max-width: 575px) {
  .music__sns ul li .btn {
    font-size: 10px;
    font-size: 1rem;
  }
}
.music__sns + .main__section {
  padding-top: 40px;
}
@media only screen and (max-width: 575px) {
  .music__sns + .main__section {
    padding-top: 20px;
  }
}
.music__movie {
  max-width: 800px;
  margin: 0 auto;
}
.music__movie-title {
  margin: 20px 0 0;
  line-height: 1.5;
  text-align: center;
}

.music-detail__wrap {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 575px) {
  .music-detail__wrap {
    flex-direction: column;
  }
}
.music-detail__jk, .music-detail__text {
  width: calc(50% - 20px);
}
@media only screen and (max-width: 575px) {
  .music-detail__jk, .music-detail__text {
    width: 100%;
  }
}
.music-detail__jk img {
  width: 100%;
}
@media only screen and (max-width: 575px) {
  .music-detail__jk {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .music-detail__text {
    margin-top: 10px;
  }
  .music-detail__text .music-detail__title,
  .music-detail__text .music-detail__date {
    display: none;
  }
}
.music-detail__text--sp {
  display: none;
}
@media only screen and (max-width: 575px) {
  .music-detail__text--sp {
    display: block;
  }
}
.music-detail__title {
  margin-bottom: 0;
  font-size: 24px;
  font-size: 2.4rem;
  text-align: left;
}
@media only screen and (max-width: 575px) {
  .music-detail__title {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 575px) {
  .music-detail__title {
    text-align: center;
  }
}
.music-detail__title span {
  font-size: 22px;
  font-size: 2.2rem;
}
.music-detail__date {
  display: flex;
  margin: 15px 0 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media only screen and (max-width: 575px) {
  .music-detail__date {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.music-detail__date span {
  margin-right: 5px;
}
@media only screen and (max-width: 575px) {
  .music-detail__date {
    justify-content: center;
    margin-top: 5px;
  }
  .music-detail__date span {
    margin: 0 5px;
  }
}
.music-detail__lead {
  margin: 30px 0 0;
}
.music-detail__lead p {
  margin-top: 15px;
  line-height: 2;
  letter-spacing: 0;
}
.music-detail__lead p:first-of-type {
  margin-top: 0;
}
.music-detail__lead p a {
  text-decoration: underline;
}
@media only screen and (max-width: 575px) {
  .music-detail__lead {
    margin-top: 20px;
  }
  .music-detail__lead p {
    margin-top: 10px;
  }
}
.music-detail__sns {
  display: flex;
  margin: 20px 0 0;
}
@media only screen and (max-width: 575px) {
  .music-detail__sns {
    margin-top: 10px;
  }
}
.music-detail__sns li {
  width: calc((100% - 20px) / 3);
  margin-left: 10px;
}
.music-detail__sns li:first-child {
  margin-left: 0;
}
.music-detail__sns li .btn {
  width: 100%;
  height: 36px;
}
.music-detail__sns li .btn span {
  font-size: 12px;
  font-size: 1.2rem;
}
@media only screen and (max-width: 575px) {
  .music-detail__sns li .btn span {
    font-size: 10px;
    font-size: 1rem;
  }
}
.music-detail__sns li .btn img {
  height: 12px;
  margin-left: -5px;
  margin-right: 5px;
}
.music-detail__sns li .btn--reverse span {
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 575px) {
  .music-detail__sns li .btn--reverse span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 575px) {
  .music-detail__sns li .btn {
    width: 100%;
    height: 40px;
  }
  .music-detail__sns li .btn span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 575px) and (max-width: 575px) {
  .music-detail__sns li .btn span {
    font-size: 10px;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 575px) {
  .music-detail__sns li .btn img {
    height: 18px;
    margin-left: -10px;
    margin-right: 10px;
  }
}
.music-detail__tracklist {
  margin-top: 30px;
}
@media only screen and (max-width: 575px) {
  .music-detail__tracklist {
    margin-top: 20px;
  }
}
.music-detail__tracklist-title {
  padding-bottom: 10px;
  border-bottom: solid 1px #ddd;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.025em;
  line-height: 1.5;
}
.music-detail__tracklist ol {
  width: 100%;
  margin-top: 10px;
  /*
  &-no {
    width: 20px;
    flex-shrink: 0;
    margin-right: 10px;
    @include responsive(sp) {
      margin-right: 5px;
    }
  }
  &-title {
    width: 100%;
  }
  */
}
.music-detail__tracklist ol li {
  position: relative;
  display: flex;
  width: 100%;
  margin-top: 5px;
  line-height: 1.75;
  list-style: none;
  counter-increment: mycounter;
}
.music-detail__tracklist ol li::before {
  content: counter(mycounter, decimal-leading-zero) ". ";
}
.music-detail__tracklist ol li:first-child {
  margin-top: 0;
}
.music-detail__btn {
  margin: 0 auto;
}
.music-detail__btn-wrap {
  width: 100%;
  padding: 0 0 80px;
}
@media only screen and (max-width: 575px) {
  .music-detail__btn-wrap {
    padding-bottom: 40px;
  }
}

/*----------------------------------------------------
  artwork
----------------------------------------------------*/
.artwork__lead {
  margin: 0 auto;
}
.artwork__lead p {
  margin-top: 20px;
  line-height: 2;
  letter-spacing: 0;
}
.artwork__lead p:first-of-type {
  margin-top: 0;
}
.artwork__lead p a {
  text-decoration: underline;
}
@media only screen and (max-width: 575px) {
  .artwork__lead p {
    margin-top: 10px;
  }
}
.artwork__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.artwork__list-wrap {
  display: none;
}
.artwork__list li {
  width: calc((100% - 40px) / 3);
  margin: 20px 20px 0 0;
  box-sizing: border-box;
}
.artwork__list li:nth-child(3n) {
  margin-right: 0;
}
.artwork__list li a {
  display: block;
}
.artwork__list li a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  text-decoration: none;
}
@media only screen and (max-width: 575px) {
  .artwork__list {
    width: 100%;
    margin: 10px 0 0;
  }
  .artwork__list li {
    width: 100%;
    margin: 10px 0 0;
    padding: 0;
  }
}
.artwork__list--painting li {
  width: calc((100% - 60px) / 4);
  margin: 20px 20px 0 0;
}
.artwork__list--painting li:nth-child(3n) {
  margin-right: 20px;
}
.artwork__list--painting li:nth-child(4n) {
  margin-right: 0;
}
.artwork__list--painting .artwork__list-img {
  padding-top: 100%;
}
@media only screen and (max-width: 575px) {
  .artwork__list--painting li {
    width: calc((100% - 20px) / 2);
  }
  .artwork__list--painting li:nth-child(2n) {
    margin-right: 0;
  }
}
.artwork__list-img {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.artwork__list-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.artwork__list-title, .artwork__list-date {
  margin: 10px 0 0;
  line-height: 1.5;
  color: #444;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .artwork__list-title, .artwork__list-date {
    margin-top: 5px;
  }
}
.artwork__list-title {
  font-weight: 500;
}
.artwork__list-date {
  margin-top: 2px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #666;
}
@media only screen and (max-width: 575px) {
  .artwork__list-date {
    font-size: 10px;
    font-size: 1rem;
  }
}
.artwork__list-btn {
  margin: 40px auto 0;
}
@media only screen and (max-width: 575px) {
  .artwork__list-btn {
    margin-top: 20px;
  }
}

.project__section {
  max-width: 100%;
  padding: 0 0 80px;
}
@media only screen and (max-width: 575px) {
  .project__section {
    padding-bottom: 40px;
  }
}
.project__list {
  width: 100%;
}
.project__list-wrap {
  display: none;
}
.project__list li {
  width: 100%;
  padding: 80px 0;
}
@media only screen and (max-width: 575px) {
  .project__list li {
    padding: 20px 0;
  }
}
.project__list li:nth-child(odd) {
  background: #f8f8f8;
}
.project__list-inner {
  max-width: 800px;
  margin: 0 auto;
}
@media only screen and (max-width: 575px) {
  .project__list-inner {
    padding: 0 20px;
  }
}
.project__list-jk {
  max-width: 500px;
  margin: 0 auto;
}
.project__list-jk img {
  width: 100%;
}
.project__list-title-wrap {
  display: flex;
  margin: 20px 0 0;
}
@media only screen and (max-width: 575px) {
  .project__list-title-wrap {
    flex-direction: column;
    margin-top: 10px;
  }
}
.project__list-date {
  position: relative;
  width: 75px;
  margin-right: 15px;
  padding-right: 15px;
  box-sizing: border-box;
  flex-shrink: 0;
}
.project__list-date--movie {
  width: 50px;
}
.project__list-date::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  width: 1px;
  height: 20px;
  background: #999;
}
@media only screen and (max-width: 575px) {
  .project__list-date {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
  }
  .project__list-date::after {
    display: none;
  }
}
.project__list-title {
  width: 100%;
}
@media only screen and (max-width: 575px) {
  .project__list-title {
    margin-top: 2px;
  }
}
.project__list-copy {
  margin: 10px 0 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 600;
}
@media only screen and (max-width: 575px) {
  .project__list-copy {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 575px) {
  .project__list-copy {
    margin-top: 5px;
  }
}
.project__list-text {
  margin: 10px 0 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.75;
}
@media only screen and (max-width: 575px) {
  .project__list-text {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 575px) {
  .project__list-text {
    margin-top: 5px;
  }
}
.project__list-btn {
  margin: 80px auto 0;
}
@media only screen and (max-width: 575px) {
  .project__list-btn {
    margin-top: 40px;
  }
}

.painting__section {
  max-width: 100%;
  padding: 0 0 80px;
}
@media only screen and (max-width: 575px) {
  .painting__section {
    padding-bottom: 40px;
  }
}
.painting__list {
  width: 100%;
}
.painting__list-wrap {
  display: none;
}
.painting__list li {
  width: 100%;
  padding: 80px 0;
}
@media only screen and (max-width: 575px) {
  .painting__list li {
    padding: 20px 0;
  }
}
.painting__list li:nth-child(odd) {
  background: #f8f8f8;
}
.painting__list-inner {
  max-width: 640px;
  margin: 0 auto;
}
@media only screen and (max-width: 575px) {
  .painting__list-inner {
    padding: 0 20px;
  }
}
.painting__list-img {
  width: 100%;
}
.painting__list-img img {
  width: 100%;
}
.painting__list-title {
  margin: 20px 0 0;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .painting__list-title {
    margin-top: 10px;
  }
}
.painting__list-text {
  margin: 10px 0 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .painting__list-text {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 575px) {
  .painting__list-text {
    margin-top: 5px;
  }
}
.painting__comment {
  margin-bottom: 60px;
  padding: 60px 0;
  /*
  margin-top: 40px;
  padding: 40px;
  padding-left: 25%;
  */
  background: #f8f8f8 url("./img/profile/bg_comment.jpg") no-repeat left center;
  background-size: auto 100%;
}
.painting__comment-img {
  display: none;
}
@media only screen and (max-width: 575px) {
  .painting__comment-img {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  .painting__comment-img img {
    width: 100%;
  }
}
.painting__comment .main__section {
  padding-bottom: 0;
}
@media only screen and (max-width: 575px) {
  .painting__comment {
    margin-bottom: 30px;
    padding: 0 0 30px;
    background-image: none;
  }
}
.painting__comment p {
  width: calc(100% - 320px);
  margin-left: 320px;
  line-height: 2;
  font-style: italic;
}
@media only screen and (max-width: 575px) {
  .painting__comment p {
    width: 100%;
    margin-left: 0;
  }
}
.painting__btn {
  margin: 30px auto 0;
}
@media only screen and (max-width: 575px) {
  .painting__btn {
    margin-top: 15px;
  }
}
.painting__fixed-wrap {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9998;
  width: 100%;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.8);
}
.painting__fixed-wrap.isActive {
  display: block;
}
.painting__fixed-wrap .painting__btn {
  margin-top: 0;
}

/*----------------------------------------------------
  inspiration
----------------------------------------------------*/
.inspiration {
  /*
  &__list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    li {
      width: calc((100% - 40px) / 3);
      margin: 20px 20px 0 0;
      background: #f8f8f8;
      &:nth-child(3n) {
        margin-right: 0;
      }
      a {
        display: block;
        //padding-bottom: 20px;
        &:hover {
          @include opacity($opValue);
          text-decoration: none;
        }
      }
    }
    &-img {
      position: relative;
      width: 100%;
      padding-top: 100%;
      img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }
  */
}
.inspiration__lead {
  margin: 0 auto;
}
.inspiration__lead p {
  margin-top: 20px;
  line-height: 2;
  letter-spacing: 0;
  text-align: center;
}
.inspiration__lead p:first-of-type {
  margin-top: 0;
}
.inspiration__lead p a {
  text-decoration: underline;
}
.inspiration__feed {
  margin-top: 40px;
}
@media only screen and (max-width: 575px) {
  .inspiration__feed {
    margin-top: 20px;
  }
}
.inspiration__feed #sbi_load {
  margin-top: 30px;
}
@media only screen and (max-width: 575px) {
  .inspiration__feed #sbi_load {
    margin-top: 10px;
  }
}

/*----------------------------------------------------
  information
----------------------------------------------------*/
.information__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: -40px 0 0;
}
.information__list li {
  width: calc((100% - 40px) / 3);
  margin: 40px 20px 0 0;
  background: #f8f8f8;
}
.information__list li:nth-child(3n) {
  margin-right: 0;
}
.information__list li a {
  display: block;
  padding-bottom: 20px;
}
.information__list li a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  text-decoration: none;
}
@media only screen and (max-width: 575px) {
  .information__list {
    flex-direction: column;
    margin-top: 0;
  }
  .information__list li {
    width: 100%;
    margin: 20px 0 0;
  }
  .information__list li:first-child {
    margin-top: 0;
  }
}
.information__list-img {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.information__list-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.information__list-date, .information__list-title {
  margin: 15px 0 0;
  padding: 0 15px;
  line-height: 1.5;
  color: #444;
  /*
  @include responsive(sp) {
    margin-top: 10px;
    padding: 0 10px;
  }
  */
}
.information__list-title {
  margin: 5px 0 0;
}
@media only screen and (max-width: 575px) {
  .information__list-title {
    margin-top: 2px;
  }
}
.information__list-date {
  font-size: 12px;
  font-size: 1.2rem;
  color: #666;
}
@media only screen and (max-width: 575px) {
  .information__list-date {
    font-size: 10px;
    font-size: 1rem;
  }
}
.information__btn {
  margin: 40px auto 0;
}

.information-detail__section {
  max-width: 800px;
  margin: 0 auto;
}
.information-detail__title {
  margin-bottom: 0;
  text-align: left;
  /*
  @include fontsize(28);
  @include responsive(sp) {
    margin-top: 5px;
    @include fontsize(24);
    text-align: left;
  }
  */
}
.information-detail__date {
  margin-top: 10px;
  line-height: 1.5;
}
@media only screen and (max-width: 575px) {
  .information-detail__date {
    margin-top: 5px;
  }
}
.information-detail__contents p,
.information-detail__contents img {
  margin-top: 40px;
}
@media only screen and (max-width: 575px) {
  .information-detail__contents p,
  .information-detail__contents img {
    margin-top: 20px;
  }
}
.information-detail__contents p img,
.information-detail__contents img img {
  margin-top: 0;
}
.information-detail__contents p + p {
  margin-top: 20px;
}
@media only screen and (max-width: 575px) {
  .information-detail__contents p + p {
    margin-top: 10px;
  }
}
.information-detail__btn {
  margin: 80px auto 0;
}
@media only screen and (max-width: 575px) {
  .information-detail__btn {
    margin-top: 40px;
  }
}

/*----------------------------------------------------
  profile
----------------------------------------------------*/
.profile__main {
  padding-top: 80px;
}
@media only screen and (max-width: 575px) {
  .profile__main {
    padding-top: 60px;
  }
}
.profile__section {
  max-width: 100%;
  padding: 0;
}
.profile__section--gray {
  margin-bottom: 80px;
  padding: 80px;
  background: #f8f8f8;
}
@media only screen and (max-width: 575px) {
  .profile__section--gray {
    margin-bottom: 40px;
    padding: 20px;
  }
}
.profile__kv {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
}
@media only screen and (max-width: 575px) {
  .profile__kv {
    height: calc(100vh - 60px);
  }
}
.profile__kv-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 5;
}
@media only screen and (max-width: 575px) {
  .profile__kv-text {
    width: 100%;
    top: 8vh;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
  }
}
.profile__kv-text-title {
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.025em;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 575px) {
  .profile__kv-text-title {
    font-size: 20px;
    font-size: 2rem;
  }
}
.profile__kv-text-wrap {
  width: 100%;
  max-width: 840px;
  margin: 20px 0 0;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
@media only screen and (max-width: 575px) {
  .profile__kv-text-wrap {
    margin-top: 20px;
    padding: 0;
    background-color: transparent;
  }
}
.profile__kv-text-wrap p {
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.025em;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .profile__kv-text-wrap p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.profile__kv-image {
  width: 100%;
  height: 100%;
  line-height: 1;
}
.profile__kv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.profile__title {
  margin-top: 60px;
}
@media only screen and (max-width: 575px) {
  .profile__title {
    margin-top: 30px;
  }
}
.profile__subtitle {
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.025em;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
@media only screen and (max-width: 575px) {
  .profile__subtitle {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 575px) and (max-width: 575px) {
  .profile__subtitle {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.profile__lead {
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.025em;
  font-weight: 600;
  color: #444;
}
.profile__wrap {
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media only screen and (max-width: 575px) {
  .profile__wrap {
    background-size: center top;
    background-size: 100% auto;
  }
}
.profile__wrap--right {
  background-position: right top;
}
@media only screen and (max-width: 575px) {
  .profile__wrap--right {
    background-size: center top;
  }
}
.profile__wrap--right .profile__wrap-text {
  padding-left: 10%;
}
@media only screen and (max-width: 575px) {
  .profile__wrap--right .profile__wrap-text {
    padding-left: 20px;
  }
}
.profile__wrap--left {
  background-position: left top;
}
@media only screen and (max-width: 575px) {
  .profile__wrap--left {
    background-size: center top;
  }
}
.profile__wrap--left .profile__wrap-text {
  margin-left: 40%;
  padding-right: 10%;
}
@media only screen and (max-width: 575px) {
  .profile__wrap--left .profile__wrap-text {
    margin-left: auto;
    padding-right: 20px;
  }
}
.profile__wrap--top {
  background-image: none;
  /*
  background-position: center top;
  background-size: 100% auto;
  padding-top: 50%;
  */
}
@media only screen and (max-width: 575px) {
  .profile__wrap--top {
    background-size: center top;
  }
}
.profile__wrap--top .profile__wrap-text {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  background: transparent;
}
@media only screen and (max-width: 575px) {
  .profile__wrap--top .profile__wrap-text {
    width: calc(100% - 40px);
    padding: 20px;
    background-color: #fff;
  }
}
.profile__wrap-text {
  width: 60%;
  padding: 60px;
  background-color: rgba(235, 235, 235, 0.8);
  box-sizing: border-box;
}
@media only screen and (max-width: 575px) {
  .profile__wrap-text {
    width: calc(100% - 40px);
    margin: 50vw auto 0;
    padding: 20px;
    background-color: #fff;
  }
}
.profile__wrap-text p {
  margin: 20px 0 0;
  line-height: 2;
}
@media only screen and (max-width: 575px) {
  .profile__wrap-text p {
    margin-top: 10px;
  }
}
.profile__wrap-text p a {
  text-decoration: underline;
}
.profile__wrap-text p a:hover {
  text-decoration: none;
}
.profile__wrap-bg-profile {
  background-image: url("./img/profile/bg_profile_pc.jpg");
}
@media only screen and (max-width: 575px) {
  .profile__wrap-bg-profile {
    background-image: url("./img/profile/bg_profile_sp.jpg");
  }
  .profile__wrap-bg-profile .profile__wrap-text {
    padding-bottom: 0;
  }
}
.profile__wrap-bg-story {
  background-image: url("./img/profile/bg_story_pc.jpg");
}
@media only screen and (max-width: 575px) {
  .profile__wrap-bg-story {
    background-image: url("./img/profile/bg_story_sp.jpg");
  }
}
.profile__wrap-bg-pioneer {
  background-image: url("./img/profile/bg_pioneer_pc.jpg");
}
@media only screen and (max-width: 575px) {
  .profile__wrap-bg-pioneer {
    background-image: url("./img/profile/bg_pioneer_sp.png");
  }
}
.profile__wrap-bg-paris {
  background-image: url("./img/profile/bg_paris_pc.jpg");
}
@media only screen and (max-width: 575px) {
  .profile__wrap-bg-paris {
    background-image: url("./img/profile/bg_paris_sp.jpg");
    background-color: rgba(235, 235, 235, 0.8);
  }
}
.profile__box {
  width: 100%;
  margin: 30px 0 0;
  padding: 30px;
  border: solid 1px #fff;
  box-sizing: border-box;
}
@media only screen and (max-width: 575px) {
  .profile__box {
    width: calc(100% + 40px);
    margin: 30px -20px 0;
    padding: 20px;
    border-color: #ddd;
  }
}
.profile__box-title {
  display: flex;
  align-items: center;
  position: relative;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.025em;
  color: #444;
}
.profile__box-title::before, .profile__box-title::after {
  content: "";
  width: 10px;
  height: 1px;
  background: #444;
}
.profile__box-title::before {
  margin-right: 10px;
}
.profile__box-title::after {
  margin-left: 10px;
}
.profile__box p {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 10px;
}
@media only screen and (max-width: 575px) {
  .profile__box p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.profile__image {
  width: 100%;
  height: 600px;
  background: url("./img/profile/bg_paris_pc.jpg") no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}
@media only screen and (max-width: 575px) {
  .profile__image {
    height: 75vw;
    background-attachment: scroll;
  }
}
.profile__history {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1px 40px 40px;
  background: #fff;
  box-sizing: border-box;
}
@media only screen and (max-width: 575px) {
  .profile__history {
    padding: 1px 20px 20px;
  }
}
.profile__history-title {
  margin: 40px 0;
  font-size: 24px;
  font-size: 2.4rem;
}
@media only screen and (max-width: 575px) {
  .profile__history-title {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 575px) {
  .profile__history-title {
    margin: 30px 0 20px;
  }
}
.profile__history-subtitle {
  margin: 0;
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 575px) {
  .profile__history-subtitle {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.profile__history-subtitle::before, .profile__history-subtitle::after {
  width: 10px;
}
.profile__history-subtitle::before {
  margin-right: 10px;
}
.profile__history-subtitle::after {
  margin-left: 10px;
}
.profile__history-table {
  margin: 20px 0 0;
}
@media only screen and (max-width: 575px) {
  .profile__history-table + .profile__history-title {
    margin-top: 40px;
  }
}
.profile__history-table + .profile__history-subtitle {
  margin-top: 40px;
}
@media only screen and (max-width: 575px) {
  .profile__history-table + .profile__history-subtitle {
    margin-top: 20px;
  }
}
.profile__history-table th,
.profile__history-table td {
  padding: 15px 0 0;
  line-height: 1.5;
}
@media only screen and (max-width: 575px) {
  .profile__history-table th,
  .profile__history-table td {
    padding-top: 10px;
  }
}
.profile__history-table th {
  width: 100px;
  padding-right: 20px;
  text-align: right;
  box-sizing: border-box;
}
@media only screen and (max-width: 575px) {
  .profile__history-table th {
    width: 100px;
    padding-right: 10px;
  }
}
.profile__history-table tr:first-of-type th,
.profile__history-table tr:first-of-type td {
  padding-top: 0;
}
.profile__history-table a {
  text-decoration: underline;
}
.profile__history-table a:hover {
  text-decoration: none;
}
.profile__history-table--en th {
  width: 120px;
}
@media only screen and (max-width: 575px) {
  .profile__history-table--en th {
    width: 100px;
  }
}
.profile__history-table--exhibition th {
  width: 210px;
}
@media only screen and (max-width: 575px) {
  .profile__history-table--exhibition th {
    width: 100px;
  }
}
.profile__history-table--exhibition-en th {
  width: 250px;
}
@media only screen and (max-width: 575px) {
  .profile__history-table--exhibition-en th {
    width: 120px;
  }
}
.profile__slide {
  max-width: 800px;
  margin: 20px auto 80px;
}
@media only screen and (max-width: 575px) {
  .profile__slide {
    margin: 10px auto 40px;
  }
}
.profile__slide-img {
  position: relative;
  width: 100%;
  z-index: 0;
}
.profile__slide-text {
  width: 100%;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.025em;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0;
}
@media only screen and (max-width: 575px) {
  .profile__slide-text {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.profile__slide-text-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 30px;
  box-sizing: border-box;
}
@media only screen and (max-width: 575px) {
  .profile__slide-text-wrap {
    padding: 10px;
  }
}
.profile__slide-year {
  width: 130px;
  flex-shrink: 0;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.025em;
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0;
}
@media only screen and (max-width: 575px) {
  .profile__slide-year {
    width: 75px;
    font-size: 28px;
    font-size: 2.8rem;
  }
}

/*----------------------------------------------------
  contact
----------------------------------------------------*/
.contact__section {
  max-width: 800px;
}
.contact__list {
  display: flex;
  width: 100%;
  margin-top: 30px;
}
.contact__list:first-of-type {
  margin-top: 0;
}
@media only screen and (max-width: 575px) {
  .contact__list {
    flex-direction: column;
    margin-top: 10px;
  }
}
.contact__list dt {
  width: 200px;
  padding-top: 5px;
  flex-shrink: 0;
  line-height: 1.5;
}
.contact__list dd {
  width: 100%;
}
.contact__list dd .error {
  margin-top: 5px;
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 575px) {
  .contact__list dd .error {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 575px) {
  .contact__list dd {
    margin-top: 5px;
  }
}
.contact__btn {
  margin: 40px auto 0;
}
@media only screen and (max-width: 575px) {
  .contact__btn {
    margin-top: 20px;
  }
}
.contact__btn button,
.contact__btn input {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  border-radius: 100px;
  box-sizing: border-box;
  line-height: 1.5;
  font-weight: 500;
  text-decoration: none !important;
  color: #fff;
  cursor: pointer;
}
.contact__complete-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0 80px;
  box-sizing: border-box;
}
@media only screen and (max-width: 575px) {
  .contact__complete-box {
    padding: 30px 0 40px;
  }
}
.contact__complete-box-title {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 600;
  color: #222;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .contact__complete-box-title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.contact__complete-box-text {
  margin-top: 30px;
  line-height: 2;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .contact__complete-box-text {
    margin-top: 15px;
    text-align: left;
  }
}

.swiper {
  position: relative;
  width: 100%;
  z-index: 0;
}

.swiper-wrapper {
  width: 100%;
}

.swiper-pagination {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 10px;
  z-index: 20;
}
@media only screen and (max-width: 575px) {
  .swiper-pagination {
    display: none;
  }
}

.swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  border-radius: 100px;
  margin: 0 5px;
  background: #fff;
}

.swiper-pagination-bullet-active {
  background: #999;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  z-index: 20;
  top: 50%;
  margin-top: -10px;
  width: 12px;
  height: 12px;
  border-bottom: solid 2px #fff;
  cursor: pointer;
}

.swiper-button-prev {
  left: 30px;
  right: auto;
  border-left: solid 2px #fff;
  transform: rotate(45deg);
}
@media only screen and (max-width: 575px) {
  .swiper-button-prev {
    left: 10px;
  }
}

.swiper-button-next {
  right: 30px;
  left: auto;
  border-right: solid 2px #fff;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 575px) {
  .swiper-button-next {
    right: 10px;
  }
}

/*----------------------------------------------------
  印刷用スタイル
----------------------------------------------------*/
@media print {
  * html body {
    zoom: 0.7;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22scss/style.scss%22,%22scss/_setting.scss%22,%22scss/_reset.scss%22,%22scss/_mixin.scss%22,%22scss/_layout.scss%22,%22scss/_print.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%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imBA;EAEE;EACA;EACA;EACA,YHvmBM;;AGymBR;EACE;;AAEF;EACE;;AD/oBF;EC2nBF;IAuBI;;;AAGJ;EACE;EACA;EACA;EACA;;ADzpBA;ECqpBF;IAMI;;;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;ADzqBE;ECgqBJ;IAWI;;;AAEF;EACE;EACA;ED/jBF;EACA;EACA;EACA,OF/EgB;EEgFhB;EC6jBE;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEF;EDhjBA,SCijBmB;ED/iBnB;ECgjBE;;AACA;EDnjBF,SFxIQ;EE0IR;;ACqjBA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEF;EACE;;AACA;EACE,OHlrBM;;AGorBR;EACE;EACA;;AAGJ;EACE;;AACA;EACE;EACA;EACA;;AACA;EACE;;AAKA;EACE;;;AAOV;EACE;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;;;AAIJ;EAEE;EACA;;ADtmBA;EACE;EACA;EACA;;AComBF;ED9rBA;EACA;EC+rBE,OHjuBQ;EGkuBR;EACA;EACA;;ADtwBA;ECiwBF;ID3rBE;IACA;;;ACgsBA;EACE,OH3uBQ;EG4uBR;;AACA;EACE;;ADvwBJ;ECyvBJ;IAmBI;;EAEA;IDxvBF;IACA;;;;AC6vBF;AAAA;AAAA;AAKE;EACE;EACA;EACA;;AACA;EACE;EACA;EACA;;ADpyBF;ECiyBA;IAKI;IACA;;;AAMJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;ADpzBF;EC6yBA;IASI;IACA;IACA;IACA;IACA;IACA;;;AAEF;EACE;EACA;;AACA;EACE;;ADj0BN;EC6zBE;IAOI;;;AAGJ;EACE;EACA;EDztBN;EACA;EACA;EACA,OF/EgB;EEgFhB;ECutBM;EACA;EACA;EACA;EACA;;AD/0BJ;ECu0BE;IAUI;IACA;IACA;IACA;IACA;IACA;IACA;;;AAGJ;EACE;;AACA;EACE;EACA;EACA;;AACA;EACE;;AACA;EACE;EACA;EACA;EA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A;IAII;;;AAGJ;EACE;;AACA;EACE;;AAIN;EACE;EACA;EACA;;ADt0CA;ECm0CF;IAKI;;;AAGJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;ADr1CA;EC20CF;IAYI;IACA;IACA;;;AAEF;EACE;EACA;EACA;;AACA;EACE;;AACA;EACE;;AD11CN;EC81CI;IACE;;EACA;IACE;;;ADz2CR;EC82CI;IACE;;EACA;ID7yCR;IACA;IC8yCU;;;ADl3CR;ECg3CM;ID1yCN;IACA;;;ACgzCA;EACE;;ADx3CF;ECu3CA;IAGI;;;AAIN;EACE;EACA;;AACA;EACE;EACA;EACA;;;AASJ;EACE;EACA;;AD/4CA;EC64CF;IAII;;;AAGJ;EAEE;;ADt5CA;ECo5CF;IAII;;;AAIF;EACE;;AD75CF;EC25CF;IAKI;;;ADh6CF;ECm6CF;IAEI;;EACA;AAAA;IAEE;;;AAGJ;EACE;;AD56CF;EC26CA;IAGI;;;AAIN;EACE;EDp5CF;EACA;ECq5CE;;ADr7CA;ECk7CF;IDh5CE;IACA;;;AAnCA;ECk7CF;IAKI;;;AAEF;ED/5CF;EACA;;ACk6CA;EACE;EACA;EDr4CF;EACA;ECs4CE;;ADj8CA;EC67CF;IDh4CE;IACA;;;ACo4CA;EACE;;ADn8CF;EC67CF;IASI;IACA;;EACA;IACE;;;AAIN;EACE;;AACA;EACE;EAEA;EACA;;AACA;EACE;;AAEF;EACE;;ADx9CJ;EC68CF;IAeI;;EACA;IACE;;;AAIN;EACE;EACA;;ADp+CA;ECk+CF;IAII;;;AAEF;EACE;EACA;;AACA;EACE;;AAEF;EACE;EACA;;AACA;ED96CN;EACA;;AApEE;ECi/CI;ID36CJ;IACA;;;AC66CI;EACE;EACA;EACA;;AAIF;EDj8CN;EACA;;AA3DE;EC2/CI;ID97CJ;IACA;;;AA9DA;ECggDI;IACE;IACA;;EACA;IDh8CR;IACA;;;AApEE;ECmgDM;ID77CN;IACA;;;AAvEA;ECsgDM;IACE;IACA;IACA;;;AAMV;EACE;;ADhhDA;EC+gDF;IAGI;;;AAEF;EACE;EACA;EDt6CJ;EACA;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%22,%22file%22:%22style.css%22%7D */
