@charset "UTF-8";
/* --------------------------------

  CSS Reset

-------------------------------- */
/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  border-style: solid;
  border-width: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  /* 2 */
  border-top-width: 1px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  clear: both;
  color: inherit;
  /* 1 */
  height: 0;
  margin: 0;
  /* 1 */
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  color: #000000;
  text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img {
  max-width: 100%;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border-radius: 0;
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
  /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  min-width: 0;
  padding: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
}

caption {
  text-align: left;
}

td,
th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

/* --------------------------------

  共通スタイル

-------------------------------- */
/* 共通見出し（h2相当）*/
.main-heading,
.news-heading {
  color: #000000;
  display: block;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 767.98px) {
  .main-heading,
.news-heading {
    font-size: 3rem;
    margin-bottom: 1.6rem;
  }
}
/* 共通見出し（h3相当）*/
.main-subheading {
  color: #000000;
  display: block;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.7em;
}

/* サブページタイトル */
@media (max-width: 640px) {
  .contents .contents__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-subheading {
    font-size: 2rem;
    margin-bottom: 0.5em;
  }
}
/* 注釈（※）用インデント */
.note {
  margin-left: 1em;
  text-indent: -1em;
}

.link-button {
  color: #cccccc;
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

@media screen and (max-width: 1099.98px) {
  .link-button {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767.98px) {
  .link-button {
    font-size: 1.6rem;
    line-height: 1.1;
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 479.98px) {
  .link-button {
    font-size: 1.3rem;
  }
}
/* 共通リンクボタン（ホバー）*/
a.link-button:hover {
  color: #000000;
  text-decoration: none;
}

/* コンテンツ画面中央寄せ */
.inner {
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  position: relative;
}

/* .inner::after {
  clear: both;
  content: "";
  display: table;
} */

/* アンカー位置調整 */
.anchor-point {
  display: block;
}

.anchor-point::before {
  background: transparent;
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 150px;
  margin-top: -151px;
  position: relative;
  z-index: -100;
}

@media screen and (min-width: 1100px), print {
  .anchor-point::before {
    margin-bottom: 280px;
    margin-top: -281px;
  }
}
/* 検索BOX */
.global-search__wrap {
  -webkit-align-items: center;
  align-items: center;
  border: 1px solid #cccccc;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
}

.global-search__box {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  /* color: #ccc; */
  color: #000000;
  font-family: inherit;
  font-size: 1.6rem;
  font-style: inherit;
  font-weight: inherit;
  line-height: 1.2;
  min-height: 40px;
  min-width: 400px;
  outline: none;
  padding: 8px 10px 8px 10px;
  vertical-align: middle;
}

@media screen and (max-width: 1099.98px) {
  .global-search__box {
    min-width: 322px;
  }
}
@media screen and (max-width: 479.98px) {
  .global-search__box {
    min-height: inherit;
    min-width: 250px;
    padding: 4px 10px 4px 10px;
  }
}
.global-search__box::-webkit-input-placeholder {
  color: #cccccc;
  font-weight: 700;
  line-height: 1.2;
}

.global-search__box:-ms-input-placeholder {
  color: #cccccc;
  font-weight: 700;
  line-height: 1.2;
}

.global-search__box::-ms-input-placeholder {
  color: #cccccc;
  font-weight: 700;
  line-height: 1.2;
}

.global-search__box::-moz-placeholder {
  color: #cccccc;
  font-weight: 700;
  line-height: 1.2;
}

.global-search__box::placeholder {
  color: #cccccc;
  font-weight: 700;
  line-height: 1.2;
}

.global-search__btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #eeeeee;
  border-left: 1px solid #cccccc;
  border-radius: 0;
  cursor: pointer;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  min-height: 40px;
  min-width: 51px;
  outline: none;
  padding: 8px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  vertical-align: middle;
}

@media screen and (max-width: 1099.98px) {
  .global-search__btn {
    min-width: 40px;
    /* min-height: 36px; */
  }
}
@media screen and (max-width: 479.98px) {
  .global-search__btn {
    min-height: 36px;
    min-width: 36px;
  }
}
.global-search__btn:hover {
  background-color: #ffffff;
}

.global-search__btn span {
  background: url("../../assets/img/base/icon_search.png") no-repeat center/cover;
  display: block;
  height: 18px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 17px;
}

/* 言語切替 */
.lang-switch__btn {
  margin-left: 1.5em;
}

.lang-switch__btn .jp__btn {
  background: #000000;
  border: 1px solid #999999;
  color: #999999;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.82em 0.2em 0.72em 0.2em;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 30px;
  height: 40px;
}

.lang-switch__btn .jp__btn:hover {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #000000;
}

.lang-switch__btn .jp__btn.is-active {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #000000;
}

.lang-switch__btn .en__btn {
  background: #000000;
  border: 1px solid #999999;
  color: #999999;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-left: -4px;
  padding: 0.82em 0.2em 0.72em 0.2em;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 30px;
  height: 40px;
}

.header .lang-switch__btn .en__btn {
  border-left: 0;
}

.lang-switch__btn .en__btn:hover {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #000000;
}

.lang-switch__btn .en__btn.is-active {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #000000;
}

/* EDIT */
.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #f9f9f9;
  border: 1px solid #999999;
  border-radius: 0;
  color: #000000;
  font-family: inherit;
  font-size: 1.6rem;
  font-style: inherit;
  font-weight: inherit;
  line-height: 1.2;
  min-height: 40px;
  outline: none;
  padding: 9px 10px 8px 10px;
  vertical-align: middle;
  width: 100%;
  word-break: break-all;
  word-wrap: break-word;
}

@media screen and (max-width: 767.98px) {
  .form-control {
    font-size: 1.2rem;
    min-height: 30px;
    padding: 9px 10px 8px 10px;
  }
}
.form-control::-webkit-input-placeholder {
  color: #cccccc;
  font-size: 1.6rem;
}

@media screen and (max-width: 767.98px) {
  .form-control::-webkit-input-placeholder {
    font-size: 1.2rem;
  }
}
.form-control::-moz-placeholder {
  color: #cccccc;
  font-size: 1.6rem;
}

@media screen and (max-width: 767.98px) {
  .form-control::-moz-placeholder {
    font-size: 1.2rem;
  }
}
.form-control:-ms-input-placeholder {
  color: #cccccc;
  font-size: 1.6rem;
}

@media screen and (max-width: 767.98px) {
  .form-control:-ms-input-placeholder {
    font-size: 1.2rem;
  }
}
.form-control::-ms-input-placeholder {
  color: #cccccc;
  font-size: 1.6rem;
}

@media screen and (max-width: 767.98px) {
  .form-control::-ms-input-placeholder {
    font-size: 1.2rem;
  }
}
.form-control::-webkit-input-placeholder {
  color: #cccccc;
  font-size: 1.6rem;
}

.form-control:-ms-input-placeholder {
  color: #cccccc;
  font-size: 1.6rem;
}

.form-control::-ms-input-placeholder {
  color: #cccccc;
  font-size: 1.6rem;
}

.form-control::-moz-placeholder {
  color: #aaaaaa;
  font-size: 1.6rem;
}

.form-control::placeholder {
  color: #aaaaaa;
  font-size: 1.6rem;
}

@media screen and (max-width: 767.98px) {
  .form-control::-webkit-input-placeholder {
    font-size: 1.2rem;
  }
  .form-control:-ms-input-placeholder {
    font-size: 1.2rem;
  }
  .form-control::-ms-input-placeholder {
    font-size: 1.2rem;
  }
  .form-control::-moz-placeholder {
    font-size: 1.2rem;
  }
  .form-control::placeholder {
    font-size: 1.2rem;
  }
}
.form-textarea {
  height: 360px;
  max-height: 35em;
  min-height: 360px;
  padding: 15px 18px 15px 18px;
  resize: vertical;
  vertical-align: top;
}

@media screen and (max-width: 767.98px) {
  .form-textarea {
    height: 250px;
    min-height: 250px;
    padding: 10px 13px 10px 13px;
  }
}
/* Button */
.upload__content .upload__foot .cancel__btn {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #ffffff;
  border: 1px solid #cccccc;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  font-family: "Roboto", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8rem;
  min-width: 130px;
  padding: 10px;
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: color;
  transition-property: color;
}

.close__btn img {
  vertical-align: baseline;
}

/* --------------------------------

  html, body

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}
body {
  background-color: #ffffff;
  color: #000000;
  font-family: "Roboto", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  min-width: 320px;
  text-align: left;
}

html.nav-open,
html.contact-open {
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
  width: 100%;
}

body.fixed {
  height: 100%;
  left: 0;
  position: fixed;
  width: 100%;
}

/* --------------------------------

  wrapper

-------------------------------- */
.wrapper {
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 1100px), print {
  .wrapper {
    overflow: visible;
  }
}
/* --------------------------------

  header

-------------------------------- */
@media screen and (min-width: 1100px), print {
  .header {
    background-color: #ffffff;
    overflow: hidden;
  }
}
.header .inner {
  max-width: none;
  z-index: auto;
}

@media screen and (min-width: 1100px), print {
  .header .inner {
    -webkit-align-items: center;
    align-items: center;
    background-color: #ffffff;
    border-bottom: 1px solid #cccccc;
    -webkit-box-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    -ms-flex-align: center;
    height: 80px;
    left: 0;
    max-width: none;
    padding: 0 1rem 0 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: auto;
    z-index: 1010;
  }
}
@media screen and (min-width: 1100px), print {
  .header-btn-area {
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: center;
    -webkit-box-flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-align: center;
    margin-left: 1.5em;
    max-width: 207px;
    min-width: 0;
  }
  .header-btn-area .header-btn-link {
    border: 1px solid #cccccc;
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 100px;
    padding: 0.8em 0.5em 0.8em 0.5em;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 100%;
  }
  .header-btn-area .header-btn-link:hover {
    background-color: #000000;
    color: #ffffff;
  }
  .header-btn-area .header-btn-link:first-child {
    margin-right: 0.6em;
  }
}
@media screen and (max-width: 1099.98px) {
  .header-btn-area {
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    margin: 0 auto;
    margin-top: 2em;
    max-width: 274px;
  }
  .header-btn-area .header-btn-link {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 130px;
    padding: 0.8em 0.5em 0.6em 0.5em;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 100%;
  }
  .header-btn-area .header-btn-link:hover {
    background-color: #000000;
    color: #ffffff;
  }
  .header-btn-area .header-btn-link:first-child {
    margin-right: 1em;
  }
}
@media screen and (max-width: 1099.98px) {
  .header-logo {
    -webkit-align-items: center;
    align-items: center;
    background-color: #ffffff;
    border-bottom: 1px solid #cccccc;
    -webkit-box-align: center;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-pack: start;
    font-size: 100%;
    height: 70px;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    left: 0;
    padding: 0 0 0 1em;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 900;
  }
}
@media screen and (min-width: 1100px), print {
  .header-logo {
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
    height: auto;
    position: relative;
    z-index: auto;
  }
}
.header-logo .site-logo {
  width: 195px;
}

@media screen and (min-width: 1100px), print {
  .header-logo .site-logo {
    display: block;
    height: auto;
    width: 195px;
  }
}
@media screen and (max-width: 359.98px) {
  .header-logo .site-logo {
    width: 180px;
  }
}
.header-logo a,
.header-logo img {
  display: block;
  width: 100%;
}

.header-logo a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.header-logo a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 1100px), print {
  .header-content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 1em;
    min-width: 0;
  }
}
/* ログインメニュー  */
ms {
  min-height: 40px;
}

.header .header__cart {
  margin-right: 10px;
}

.header .header__profile li a {
  background-color: #ffffff;
}

.header .header__profile li .profile__setting .profile__setting--item a {
  background: #efefef;
  border-top: 1px solid #cccccc;
}

.header .header__profile li:hover .profile__setting .profile__setting--item:nth-child(2) a {
  border-top: 0;
}

.header .header__profile li:hover .profile__setting .profile__setting--item:last-child {
  border-top: 0;
}

.header .header__profile li .profile__setting .profile__setting--item:last-child a {
  border-top: 1px solid #999999;
}

@media screen and (max-width: 1099.98px) {
  .header__btn--area a:has(.not-authenticate) {
    margin-right: 1rem;
  }
  .header .header__cart {
    margin-left: 0px;
  }
}
@media screen and (max-width: 1099.98px) {
  .header__btn--area > * {
    margin-bottom: 0.6rem !important;
  }
  .header .header__cart {
    /* margin-right: 0; */
    margin-left: 0;
  }
  .header .header__profile li:hover .profile__setting .profile__setting--item {
    height: auto;
  }
  .header .header__profile li .profile__setting .profile__setting--item a {
    font-size: 1.4rem;
  }
  .header .header__profile {
    width: 70px;
  }
}
@media screen and (max-width: 599.98px) {
  .header__btn--area a:has(.not-authenticate) {
    margin-left: 3.8rem;
    margin-right: 3.8rem;
  }
}
/* スクロール時固定用 */
/* --------------------------------

  nav

-------------------------------- */
.nav-secondary {
  padding-top: 70px;
  z-index: 0;
}

@media screen and (min-width: 1100px), print {
  .nav-secondary {
    padding-top: 80px;
  }
}
.nav-secondary .inner {
  border-bottom: 1px solid #cccccc;
  height: 80px;
  max-width: none;
  padding: 0 1rem 0 0;
  width: 100%;
}

@media screen and (max-width: 1099.98px) {
  .nav-secondary .inner {
    height: auto;
    padding: 1.6rem 0.8rem;
  }
}
@media screen and (max-width: 479.98px) {
  .nav-secondary .inner {
    font-size: 14px;
    padding: 1.6rem 0 0.8rem 0;
  }
}
.nav-secondary-container {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  height: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 1099.98px) {
  .nav-secondary-container {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 1100px), print {
  .nav-primary {
    margin-left: auto;
    max-width: 882px;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav-primary {
    display: block;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: opacity, left;
    transition-property: opacity, left;
    width: 100%;
    z-index: 1010;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav-open .nav-primary {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
  }
}
.contact-open .nav-primary {
  z-index: 920;
}

.nav-primary .nav-primary-container {
  background-color: #ffffff;
  display: block;
  margin: auto;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 1100px), print {
  .nav-primary .nav-primary-container {
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: center;
    -webkit-box-pack: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav-primary .nav-primary-container {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 5em 1em;
  }
}
@media screen and (max-width: 479.98px) {
  .nav-primary .nav-primary-container {
    font-size: 14px;
    padding: 2.3em 1em;
  }
}
.nav .inner {
  display: block;
  height: 100%;
  max-width: none;
  width: 100%;
  z-index: 1;
}

@media screen and (min-width: 1100px), print {
  .nav-item-primary {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -ms-flex-positive: 1;
    text-align: center;
  }
}
@media screen and (min-width: 1100px), print {
  .nav-item-secondary {
    /*-webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;*/
  }
}
@media screen and (max-width: 1099.98px) {
  .nav-item-secondary {
    margin-bottom: 1.1em;
  }
}
.nav-link-primary {
  display: inline-block;
}

@media screen and (min-width: 1100px), print {
  .nav-link-primary {
    -webkit-box-flex: 1;
    color: #999999;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -ms-flex-positive: 1;
    font-size: 1.4rem;
    line-height: 1.2;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .nav-link-primary:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav-link-primary {
    color: #ffffff;
    font-size: 2.8rem;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .nav-link-primary:hover {
    color: #999999;
  }
}
.nav-link-primary span {
  font-weight: 700;
}

.nav-link-secondary {
  display: block;
}

@media screen and (min-width: 1100px), print {
  .nav-link-secondary {
    color: #999999;
    /* -webkit-box-flex: 1; */
    -ms-flex-positive: 1;
    /* flex-grow: 1; */
    font-size: 1.4rem;
    line-height: 1.2;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .nav-link-secondary:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav-link-secondary {
    color: #999999;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    padding: 0 0 0 0.8em;
    position: relative;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .nav-link-secondary::before {
    content: ">";
    font-size: 1.1rem;
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .nav-link-secondary:hover {
    color: #ffffff;
  }
}
.nav-link-secondary span {
  font-weight: 700;
}

/* メインナビ */
.main-nav {
  max-width: 640px;
}

@media screen and (max-width: 1099.98px) {
  .main-nav {
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    font-size: 16px;
    -webkit-justify-content: center;
    justify-content: center;
    line-height: 1;
    /* margin-bottom: .6em; */
    margin: 0 auto 0.8em auto;
    vertical-align: bottom;
    width: 100%;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav {
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    /*justify-content: center;*/
    -webkit-justify-content: flex-start;
    -webkit-box-pack: start;
            justify-content: flex-start;
    width: 100%;
  }
}
.main-nav .nav-item {
  /*-webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;*/
}

.main-nav .nav-link {
  color: #000000;
  display: inline-block;
  font-size: 2rem;
  line-height: 1.2;
  padding: 0.6em 1em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

@media screen and (max-width: 1099.98px) {
  .main-nav {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .main-nav .nav-link {
    padding: 0 1em;
  }
}
@media screen and (max-width: 768px) {
  .main-nav .nav-link {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599.98px) {
  .main-nav .nav-link {
    font-size: 1.6rem;
    padding: 0 0.5em;
  }
}
@media screen and (max-width: 413.98px) {
  .main-nav .nav-link {
    font-size: 1.5rem;
    padding: 0 0.5em;
  }
}
@media screen and (max-width: 320px) {
  .main-nav .nav-link {
    font-size: 1.25rem;
    padding: 0 0.4em;
  }
}
.main-nav .nav-link:hover {
  color: #999999;
}

.main-nav .nav-link span {
  font-weight: 700;
}

.main-nav-primary {
  display: none;
}

@media screen and (min-width: 1100px), print {
  .main-nav-primary {
    -webkit-align-items: center;
    align-items: center;
    border-right: 1px solid #cccccc;
    -webkit-box-align: center;
    -webkit-box-flex: 1;
    -webkit-box-pack: center;
    display: none;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-right: 1.3em;
    max-width: 300px;
    min-width: 0;
    padding-right: 1.3em;
    width: 100%;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav-primary {
    margin: 0 auto;
    margin-bottom: 1.5em;
    max-width: 274px;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav-secondary {
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    /*width: 100%;*/
    /*-webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
    max-width: 330px;*/
  }
  .main-nav-secondary li {
    margin: 0 1em;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav-secondary {
    margin: 0 auto;
    max-width: 274px;
  }
}
/* ナビゲーション開閉ボタン */
.nav-button {
  cursor: pointer;
  display: block;
  height: 70px;
  line-height: 1;
  position: fixed;
  right: 13px;
  top: 0;
  width: 50px;
  z-index: 910;
}

@media screen and (min-width: 1100px), print {
  .nav-button {
    display: none;
  }
}
.nav-open .nav-button {
  display: none;
}

.nav-button-icon {
  display: block;
  height: 70px;
  position: relative;
  width: 50px;
}

.nav-button-icon span {
  background-color: #000000;
  display: block;
  height: 2px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
}

.nav-button-icon span::before {
  background-color: #000000;
  content: "";
  height: 2px;
  position: absolute;
  right: 0;
  top: -13px;
  width: 50px;
}

.nav-button-icon span::after {
  background-color: #000000;
  content: "";
  height: 2px;
  position: absolute;
  right: 0;
  top: 13px;
  width: 30px;
}

/* ナビゲーション開閉ボタン */
.nav-close-button {
  cursor: pointer;
  display: block;
  height: 50px;
  line-height: 1;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 50px;
  z-index: 10;
}

@media screen and (min-width: 1100px), print {
  .nav-close-button {
    display: none;
  }
}
.nav-close-button:hover {
  opacity: 0.8;
}

.nav-close-button .nav-button-icon {
  height: 50px;
  position: relative;
  width: 50px;
}

.nav-close-button .nav-button-icon::before,
.nav-close-button .nav-button-icon::after {
  background-color: #ffffff;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 35px;
}

.nav-close-button .nav-button-icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(32deg);
  transform: translate(-50%, -50%) rotate(32deg);
}

.nav-close-button .nav-button-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-32deg);
  transform: translate(-50%, -50%) rotate(-32deg);
}

/* ナビゲーション背景 */
@media screen and (min-width: 1100px), print {
  .nav-screen {
    display: none;
  }
}
.nav-screen-overlay {
  background-color: #000000;
  display: block;
  height: 100%;
  left: 0;
  margin: auto;
  min-height: 100vh;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  width: 100%;
}

.nav-open .nav-screen-overlay {
  cursor: pointer;
  opacity: 0.4;
  pointer-events: auto;
}

@media screen and (min-width: 1100px) {
  .nav.fixed {
    -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
    padding: 0;
    position: fixed;
    top: -60px;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
  }
  #top .nav.fixed {
    top: -60px;
  }
  .nav.fixed .main-nav {
    height: 80px;
  }
}
/* --------------------------------

  main

-------------------------------- */
.main {
  background: #ffffff;
  display: block;
  overflow: hidden;
  padding: 3em 1em 0 1em;
  position: relative;
  z-index: 100;
}

@media screen and (max-width: 1099.98px) {
  .main {
    padding: 4.8rem 0 0 0;
  }
}
#top .main {
  padding: 0 1em 0 1em;
}

@media screen and (max-width: 1099.98px) {
  #top .main {
    padding: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .main {
    overflow: visible;
    padding: 3em 0 0 0;
  }
  #top .main {
    padding: 0;
  }
}
.main > .inner {
  max-width: none;
}

/* --------------------------------

  footer

-------------------------------- */
.footer {
  background-color: #000000;
  margin-top: 8rem;
  padding: 4.8rem 3.2rem 4.8rem 3.2rem;
}

.footer .inner {
  width: 100%;
}

@media screen and (min-width: 1100px), print {
  .footer {
    padding: 5em 2em 5em 2em;
  }
}
@media screen and (max-width: 479.98px) {
  .footer {
    margin-top: 4rem;
    padding: 4rem 2.4rem;
  }
}
.footer-nav {
  border-bottom: 1px solid rgba(204, 204, 204, 0.7);
  margin-bottom: 3.2rem;
  padding-bottom: 4rem;
}

.footer-nav-primary {
  margin-right: 3em;
}

@media screen and (max-width: 1279.98px) {
  .footer-nav-primary {
    margin-right: 1em;
  }
}
@media screen and (max-width: 1099.98px) {
  .footer-nav-primary {
    margin-bottom: 1.8em;
    margin-right: 0;
  }
}
.footer-nav-secondary {
  display: none;
}

.footer-nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 1099.98px) {
  .footer-nav-container {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
    /* max-width: 545px; */
  }
}
.footer-nav-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media screen and (min-width: 1100px), print {
  .footer-nav-main {
    margin-right: 1em;
    width: 70%;
  }
}
@media screen and (max-width: 1099.98px) {
  .footer-nav-main {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 2em;
  }
}
.footer-nav-item:not(:last-child) {
  margin-bottom: 1.7em;
}

@media screen and (max-width: 1099.98px) {
  .footer-nav-item:not(:last-child) {
    margin-bottom: 0.8em;
  }
}
.footer-nav-link {
  color: #ffffff;
  font-size: 3rem;
  line-height: 1.2;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer-nav-link:hover {
  color: #999999;
}

.footer-nav-link span {
  font-weight: 700;
}

.footer-nav-other-item:not(:last-child) {
  margin-bottom: 1.25em;
}

@media screen and (max-width: 1099.98px) {
  .footer-nav-other-item:not(:last-child) {
    margin-bottom: 0.8em;
  }
}
.footer-nav-other-link {
  color: #999999;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.2;
  padding-left: 1.3em;
  position: relative;
}

.footer-nav-other-link:hover {
  color: #ffffff;
}

.footer-nav-other-link:hover::before {
  border-left: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
}

.footer-nav-other-link::before {
  border-left: 1px solid #999999;
  border-top: 1px solid #999999;
  content: "";
  display: block;
  height: 7px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  width: 7px;
}

.footer-nav-other-link span {
  font-weight: 500;
  word-break: break-all;
  word-wrap: break-word;
}

.footer-nav-other-heading {
  color: #666666;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 1099.98px) {
  .footer-nav-other-heading {
    margin-bottom: 0.4em;
  }
}
.footer-subnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 1.3em;
  max-width: 550px;
}

@media screen and (max-width: 479.98px) {
  .footer-subnav-list {
    margin: 0.7em 0 -0.8em 1.1em;
    margin-bottom: 10px;
    margin-top: 20px;
    max-width: 270px;
  }
}
.footer-subnav-item {
  margin: 0 1em 1em 0;
}

@media screen and (max-width: 479.98px) {
  .footer-subnav-item {
    margin: 0 2em 0.8em 0;
  }
}
.footer-subnav-link {
  color: #999999;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.2;
  padding-left: 1.3em;
  position: relative;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer-subnav-link:hover {
  color: #ffffff;
}

.footer-subnav-link:hover::before {
  border-left: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
}

.footer-subnav-link::before {
  border-left: 1px solid #999999;
  border-top: 1px solid #999999;
  content: "";
  display: block;
  height: 8px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  width: 8px;
}

.footer-subnav-link span {
  font-weight: 500;
}

.footer .mail__btn {
  bottom: 40px;
  display: none;
  height: 40px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  right: 0;
  text-align: center;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  width: 40px;
  z-index: 100;
}

@media screen and (min-width: 480px), print {
  .footer .mail__btn {
    bottom: 60px;
    height: 60px;
    right: 0;
    width: 60px;
  }
}
.footer .mail__btn.fixed {
  opacity: 1;
  pointer-events: auto;
}

.footer .mail__btn a {
  background-color: #444444;
  color: #ffffff;
  display: block;
  height: 100%;
  text-align: center;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  width: 100%;
}

.footer .mail__btn a:hover {
  background-color: #cccccc;
  color: #ffffff;
  text-decoration: none;
}

.footer .mail__btn a::before {
  background: url("../../assets/img/base/icon_contact.png") no-repeat center/cover;
  content: "";
  display: block;
  height: 20px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 28px;
}

@media screen and (max-width: 479.98px) {
  .footer .mail__btn a::before {
    height: 16px;
    width: 22px;
  }
}
.footer .pagetop {
  bottom: 0;
  display: block;
  height: 40px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  right: 0;
  text-align: center;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  width: 40px;
  z-index: 100;
}

@media screen and (min-width: 480px), print {
  .footer .pagetop {
    bottom: 0;
    height: 60px;
    right: 0;
    width: 60px;
  }
}
@media screen and (min-width: 1100px), print {
  .footer .pagetop {
    bottom: 0;
    right: 0;
  }
}
.footer .pagetop.fixed {
  opacity: 1;
  pointer-events: auto;
}

.footer .pagetop a {
  background-color: #222222;
  color: #ffffff;
  display: block;
  height: 100%;
  text-align: center;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  width: 100%;
}

.footer .pagetop a:hover {
  background-color: #cccccc;
  color: #ffffff;
  text-decoration: none;
}

.footer .pagetop a::before {
  border-right: 3px solid #ffffff;
  border-top: 3px solid #ffffff;
  bottom: 0;
  content: "";
  display: block;
  height: 1.2em;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0.5em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 1.2em;
}

@media screen and (max-width: 479.98px) {
  .footer .pagetop a::before {
    border-right: 2px solid #ffffff;
    border-top: 2px solid #ffffff;
    height: 1em;
    width: 1em;
  }
}
.footer .pagetop a::after {
  background-color: #ffffff;
  content: "";
  display: block;
  height: 4px;
  left: 50%;
  position: absolute;
  top: 63%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 4px;
}

@media screen and (max-width: 479.98px) {
  .footer .pagetop a::after {
    height: 3px;
    width: 3px;
  }
}
.footer .copy small {
  color: #999999;
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}

@media screen and (max-width: 479.98px) {
  .footer .copy small {
    font-size: 1.1rem;
  }
}
.footer .copy span {
  font-weight: 500;
}

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

.footer-sns__area-item:not(:last-child) {
  margin-right: 1em;
}

.footer-sns__area-item a {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-sns__area-item a:hover {
  opacity: 0.7;
}

.footer-sns__area-item img {
  height: auto;
  width: 50%;
}

@media screen and (max-width: 767.98px) {
  .footer-sns__area-item img {
    width: 70%;
  }
}
.footer-foot__wrap {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 767.98px) {
  .footer-foot__wrap {
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: center;
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -ms-flex-align: center;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.footer-foot__main {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
}

@media screen and (max-width: 767.98px) {
  .footer-foot__main {
    margin-bottom: 3.2rem;
  }
}
/* --------------------------------

  スライダー

-------------------------------- */
.slider {
  position: relative;
}

@media screen and (min-width: 1100px), print {
  .slider {
    padding: 2em 2em 0 2em;
  }
}
.slider .inner {
  height: 100%;
  margin: 0 auto;
  max-width: 1380px;
  width: 100%;
}

.slider-main {
  display: block;
  position: relative;
}

.slider-main-container {
  display: block;
  position: relative;
}

.slider-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  margin: 0;
  position: relative;
}

.slider-img::before {
  content: "";
  display: block;
  padding-top: 47%;
}

@media screen and (min-width: 1100px), print {
  .slider-img::before {
    padding-top: 640px;
  }
}
@media screen and (max-width: 767.98px) {
  .slider-img::before {
    padding-top: 397px;
  }
}
@media screen and (max-width: 359.98px) {
  .slider-img::before {
    padding-top: 340px;
  }
}
.slider-img.slider-img__1 {
  background-image: url("../../assets/img/top/slide1.jpg");
}

.slider-img.slider-img__2 {
  background-image: url("../../assets/img/top/slide2.jpg");
}

.slider-img.slider-img__3 {
  background-image: url("../../assets/img/top/slide3.jpg");
}

.slider-img.slider-img__4 {
  background-image: url("../../assets/img/top/slide4.jpg");
}

.slider-img.slider-img__5 {
  background-image: url("../../assets/img/top/slide5.jpg");
}

.slider .slider-arrow {
  bottom: 0;
  display: block;
  height: 1px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 110;
}

@media screen and (min-width: 1440px), print {
  .slider .slider-arrow {
    max-width: 1380px;
  }
}
.slider .slider-prev,
.slider .slider-next {
  border: 1px solid #000000;
  border-radius: 100%;
  cursor: pointer;
  display: block;
  height: 80px;
  position: absolute;
  top: -41px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 80px;
}

@media screen and (max-width: 1099.98px) {
  .slider .slider-prev,
.slider .slider-next {
    height: 50px;
    top: -25px;
    width: 50px;
  }
}
.slider .slider-prev {
  left: 15px;
}

@media screen and (max-width: 1099.98px) {
  .slider .slider-prev {
    left: 40px;
  }
}
@media screen and (max-width: 359.98px) {
  .slider .slider-prev {
    left: 25px;
  }
}
.slider .slider-prev::before {
  background-color: #000000;
  content: "";
  display: block;
  height: 3px;
  left: -34px;
  position: absolute;
  top: 38px;
  width: 80px;
}

@media screen and (max-width: 1099.98px) {
  .slider .slider-prev::before {
    height: 2px;
    left: -20px;
    top: 24px;
    width: 50px;
  }
}
.slider .slider-prev::after {
  background-color: #000000;
  content: "";
  display: block;
  height: 3px;
  left: -38px;
  position: absolute;
  top: 23px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 40px;
}

@media screen and (max-width: 1099.98px) {
  .slider .slider-prev::after {
    height: 2px;
    left: -23px;
    top: 15px;
    width: 25px;
  }
}
.slider .slider-next {
  right: 15px;
}

@media screen and (max-width: 1099.98px) {
  .slider .slider-next {
    right: 40px;
  }
}
@media screen and (max-width: 359.98px) {
  .slider .slider-next {
    right: 25px;
  }
}
.slider .slider-next::before {
  background-color: #000000;
  content: "";
  display: block;
  height: 3px;
  left: 34px;
  position: absolute;
  top: 38px;
  width: 80px;
}

@media screen and (max-width: 1099.98px) {
  .slider .slider-next::before {
    height: 2px;
    left: 20px;
    top: 24px;
    width: 50px;
  }
}
.slider .slider-next::after {
  background-color: #000000;
  content: "";
  display: block;
  height: 3px;
  left: 78px;
  position: absolute;
  top: 23px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 40px;
}

@media screen and (max-width: 1099.98px) {
  .slider .slider-next::after {
    height: 2px;
    left: 48px;
    top: 15px;
    width: 25px;
  }
}
.slider .slick-slider {
  height: 100%;
  opacity: 0;
  visibility: hidden;
  width: 100%;
}

.slider .slick-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}

.slider .slick-slider.slick-slider1 .slick-list,
.slider .slick-slider.slick-slider1 .slick-track {
  height: 100%;
}

.slider .slick-slider .slide {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider-side {
  bottom: 8%;
  left: 6.3%;
  position: absolute;
}

@media screen and (max-width: 479.98px) {
  .slider-side {
    bottom: 6%;
    left: 5%;
  }
}
.slider-catch-date {
  display: block;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (max-width: 1099.98px) {
  .slider-catch-date {
    font-size: 3.7rem;
  }
}
@media screen and (max-width: 767.98px) {
  .slider-catch-date {
    font-size: 3rem;
  }
}
@media screen and (max-width: 479.98px) {
  .slider-catch-date {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 359.98px) {
  .slider-catch-date {
    font-size: 2.1rem;
  }
}
.slider-catch-title {
  display: block;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (max-width: 1099.98px) {
  .slider-catch-title {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767.98px) {
  .slider-catch-title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 479.98px) {
  .slider-catch-title {
    font-size: 3.3rem;
  }
}
@media screen and (max-width: 359.98px) {
  .slider-catch-title {
    font-size: 2.8rem;
  }
}
.slider-catch-by {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0.37em;
}

@media screen and (max-width: 1099.98px) {
  .slider-catch-by {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767.98px) {
  .slider-catch-by {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 479.98px) {
  .slider-catch-by {
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    font-size: 1.4rem;
    letter-spacing: -0.02em;
  }
}
.fat-slider-list__primary {
  margin: 0 -180px 0 0;
  max-width: 1200px;
}

@media screen and (max-width: 1099.98px) {
  .fat-slider-list__primary {
    max-width: 1100px;
  }
}
@media screen and (max-width: 767.98px) {
  .fat-slider-list__primary {
    max-width: 677px;
  }
}
@media screen and (max-width: 639.98px) {
  .fat-slider-list__primary {
    max-width: none;
  }
}
@media screen and (max-width: 479.98px) {
  .fat-slider-list__primary {
    margin: 0 -100px 0 0;
  }
}
.fat-slider-list__primary .slick-list {
  padding: 0 180px 0 0 !important;
}

@media screen and (max-width: 639.98px) {
  .fat-slider-list__primary .slick-list {
    padding: 0 300px 0 0 !important;
  }
}
@media screen and (max-width: 479.98px) {
  .fat-slider-list__primary .slick-list {
    padding: 0 170px 0 0 !important;
  }
}
@media screen and (max-width: 359.98px) {
  .fat-slider-list__primary .slick-list {
    padding: 0 150px 0 0 !important;
  }
}
.fat-slider-list__primary .fat-slider-img {
  max-width: 320px;
}

@media screen and (min-width: 480px), print {
  .fat-slider-list__primary .fat-slider-img img {
    height: 240px;
  }
}
.fat-slider-list__primary .fat-slider-link {
  max-width: 320px;
}

.fat-slider-list__secondary {
  margin: 0 -110px 0 0;
}

@media screen and (max-width: 767.98px) {
  .fat-slider-list__secondary {
    max-width: 580px;
  }
}
@media screen and (max-width: 479.98px) {
  .fat-slider-list__secondary {
    margin: 0 -20px 0 0;
  }
}
.fat-slider-list__secondary .slick-list {
  padding: 0 110px 0 0 !important;
}

@media screen and (max-width: 479.98px) {
  .fat-slider-list__secondary .slick-list {
    padding: 0 20px 0 0 !important;
  }
}
.fat-slider-list__secondary .fat-slider-img {
  max-width: 320px;
}

@media screen and (min-width: 480px), print {
  .fat-slider-list__secondary .fat-slider-img img {
    height: 240px;
  }
}
.fat-slider-list__secondary .fat-slider-link {
  max-width: 320px;
}

.fat-slider-date {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 -0.08em 0;
}

@media screen and (max-width: 639.98px) {
  .fat-slider-date {
    font-size: 1.8rem;
  }
}
.fat-slider-item {
  margin: 0 0.45em;
}

.fat-slider-link {
  display: inline-block;
  width: 100%;
}

.fat-slider-title {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1em;
  word-break: break-all;
  word-wrap: break-word;
}

#slick-slider5 .fat-slider-title {
  margin-bottom: 0.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fat-slider-area {
  margin-bottom: 0.3em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fat-slider-date2 {
  font-weight: normal;
}

@media screen and (max-width: 639.98px) {
  .fat-slider-title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 479.98px) {
  .fat-slider-title {
    font-size: 1.5rem;
    margin-bottom: 0.8em;
  }
}
.fat-slider-img {
  display: block;
  margin: 0 auto 1em;
  text-align: center;
}

@media screen and (max-width: 479.98px) {
  .fat-slider-img {
    margin: 0 auto 0.8em;
  }
}
.fat-slider-img img {
  font-family: "object-fit: cover;";
  margin: 0 auto;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

#slick-slider2 .fat-slider-img img {
  background-color: #fafafa;
  font-family: "object-fit: contain;";
  -o-object-fit: contain;
  object-fit: contain;
  padding: 5px;
}

#slick-slider5 .fat-slider-img img {
  background: #fafafa;
  font-family: "object-fit: contain;";
  -o-object-fit: contain;
  object-fit: contain;
}

.fat-slider-name {
  display: block;
  font-size: 1.6rem;
  line-height: 1.2;
  word-break: break-all;
  word-wrap: break-word;
}

@media screen and (max-width: 479.98px) {
  .fat-slider-name {
    font-size: 1.2rem;
  }
}
.slider-arrow2 {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: 2.4rem;
}

@media screen and (max-width: 1279.98px) {
  .slider-arrow2 {
    padding-right: 1em;
  }
}
@media screen and (max-width: 639.98px) {
  .slider-arrow2 {
    margin-top: 1.6rem;
  }
}
.slider-arrow2 .slider-prev__secondary,
.slider-arrow2 .slider-next__secondary {
  border: 1px solid #cccccc;
  border-radius: 100%;
  cursor: pointer;
  display: block;
  height: 60px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 60px;
}

@media screen and (max-width: 1099.98px) {
  .slider-arrow2 .slider-prev__secondary,
.slider-arrow2 .slider-next__secondary {
    height: 40px;
    width: 40px;
  }
}
.slider-arrow2 .slider-prev__secondary:hover,
.slider-arrow2 .slider-next__secondary:hover {
  border-color: #000000;
}

.slider-arrow2 .slider-prev__secondary:hover::before,
.slider-arrow2 .slider-prev__secondary:hover::after,
.slider-arrow2 .slider-next__secondary:hover::before,
.slider-arrow2 .slider-next__secondary:hover::after {
  background-color: #000000;
}

.slider-arrow2 .slider-prev__secondary {
  margin-right: 3.5em;
}

@media screen and (max-width: 1099.98px) {
  .slider-arrow2 .slider-prev__secondary {
    margin-right: 2em;
  }
}
.slider-arrow2 .slider-prev__secondary::before {
  background-color: #cccccc;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 60px;
}

@media screen and (max-width: 1099.98px) {
  .slider-arrow2 .slider-prev__secondary::before {
    width: 40px;
  }
}
.slider-arrow2 .slider-prev__secondary::after {
  background-color: #cccccc;
  content: "";
  display: block;
  height: 2px;
  left: -36px;
  position: absolute;
  top: 31%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 30px;
}

@media screen and (max-width: 1099.98px) {
  .slider-arrow2 .slider-prev__secondary::after {
    left: -24px;
    top: 30%;
    width: 20px;
  }
}
.slider-arrow2 .slider-next__secondary::before {
  background-color: #cccccc;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
  width: 60px;
}

@media screen and (max-width: 1099.98px) {
  .slider-arrow2 .slider-next__secondary::before {
    width: 40px;
  }
}
.slider-arrow2 .slider-next__secondary::after {
  background-color: #cccccc;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  right: -36px;
  top: 31%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 30px;
}

@media screen and (max-width: 1099.98px) {
  .slider-arrow2 .slider-next__secondary::after {
    right: -24px;
    top: 30%;
    width: 20px;
  }
}
.slick-prev3,
.slick-next3 {
  border: 1px solid #cccccc;
  border-radius: 100%;
  cursor: pointer;
  height: 80px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 80px;
  z-index: 1;
}

@media screen and (max-width: 1099.98px) {
  .slick-prev3,
.slick-next3 {
    height: 50px;
    width: 50px;
  }
}
@media screen and (max-width: 767.98px) {
  .slick-prev3,
.slick-next3 {
    height: 40px;
    width: 40px;
  }
}
.slick-prev3:hover,
.slick-next3:hover {
  border-color: #000000;
}

.slick-prev3:hover::before,
.slick-prev3:hover::after,
.slick-next3:hover::before,
.slick-next3:hover::after {
  background-color: #000000;
}

.slick-prev3 {
  left: 10px;
}

.slick-prev3::before {
  background-color: #cccccc;
  content: "";
  display: block;
  height: 3px;
  left: -34px;
  position: absolute;
  top: 38px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 80px;
}

@media screen and (max-width: 1099.98px) {
  .slick-prev3::before {
    height: 2px;
    left: -20px;
    top: 24px;
    width: 50px;
  }
}
@media screen and (max-width: 767.98px) {
  .slick-prev3::before {
    top: 18px;
    width: 40px;
  }
}
.slick-prev3::after {
  background-color: #cccccc;
  content: "";
  display: block;
  height: 3px;
  left: -38px;
  position: absolute;
  top: 23px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 40px;
}

@media screen and (max-width: 1099.98px) {
  .slick-prev3::after {
    height: 2px;
    left: -23px;
    top: 15px;
    width: 25px;
  }
}
@media screen and (max-width: 767.98px) {
  .slick-prev3::after {
    left: -22px;
    top: 12px;
    width: 18px;
  }
}
.slick-next3 {
  right: 10px;
}

.slick-next3::before {
  background-color: #cccccc;
  content: "";
  display: block;
  height: 3px;
  left: 34px;
  position: absolute;
  top: 38px;
  width: 80px;
}

@media screen and (max-width: 1099.98px) {
  .slick-next3::before {
    height: 2px;
    left: 20px;
    top: 24px;
    width: 50px;
  }
}
@media screen and (max-width: 767.98px) {
  .slick-next3::before {
    top: 18px;
    width: 40px;
  }
}
.slick-next3::after {
  background-color: #cccccc;
  content: "";
  display: block;
  height: 3px;
  left: 78px;
  position: absolute;
  top: 23px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 40px;
}

@media screen and (max-width: 1099.98px) {
  .slick-next3::after {
    height: 2px;
    left: 48px;
    top: 15px;
    width: 25px;
  }
}
@media screen and (max-width: 767.98px) {
  .slick-next3::after {
    left: 44px;
    top: 12px;
    width: 18px;
  }
}
@media screen and (max-width: 479.98px) {
  #slick-slider2 .fat-slider-img img {
    height: 180px;
  }
}
@media screen and (max-width: 359.98px) {
  #slick-slider2 .fat-slider-img img {
    height: 150px;
  }
}
#slick-slider4 .fat-slider-img img {
  height: 320px;
}

@media screen and (max-width: 479.98px) {
  #slick-slider4 .fat-slider-img img {
    height: 320px;
  }
}
@media screen and (max-width: 359.98px) {
  #slick-slider4 .fat-slider-img img {
    height: 273px;
  }
}
@media screen and (max-width: 479.98px) {
  #slick-slider3 .fat-slider-img img {
    height: 200px;
  }
}
@media screen and (max-width: 359.98px) {
  #slick-slider3 .fat-slider-img img {
    height: 173px;
  }
}
#slick-slider2 .fat-slider-img img {
  background-color: #fafafa;
  font-family: "object-fit: contain;";
  -o-object-fit: contain;
  object-fit: contain;
  padding: 5px;
}

@media screen and (min-width: 480px), print {
  #slick-slider5.fat-slider-list__secondary .fat-slider-img img {
    height: 170px;
  }
}
@media screen and (max-width: 479.98px) {
  #slick-slider5 .fat-slider-img img {
    height: 150px;
  }
}
@media screen and (max-width: 359.98px) {
  #slick-slider5 .fat-slider-img img {
    height: 128px;
  }
}
/* --------------------------------

  ページタイトル

-------------------------------- */
.pagetitle {
  padding: 3em 1em 0 1em;
}

@media screen and (min-width: 1100px), print {
  .pagetitle {
    padding: 5em 2em 0 2em;
  }
}
@media screen and (max-width: 767.98px) {
  .pagetitle {
    padding: 2em 1em 0 1em;
  }
}
.pagetitle-container {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 767.98px) {
  .pagetitle-container.accent1 {
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
  }
}
.pagetitle-name {
  display: inline-block;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (max-width: 1099.98px) {
  .pagetitle-name {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 4rem;
    line-height: 1.1;
    min-width: 0;
  }
}
@media screen and (max-width: 359.98px) {
  .pagetitle-name {
    font-size: 3rem;
  }
}
@media screen and (max-width: 639.98px) {
  .pagetitle-name .br {
    display: block;
  }
}
.pagetitle-name .subtitle {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-left: 0.5em;
}

@media screen and (max-width: 1099.98px) {
  .pagetitle-name .subtitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767.98px) {
  .pagetitle-name .subtitle {
    display: block;
    margin-left: 0;
    margin-top: 0.5em;
  }
}
@media screen and (max-width: 359.98px) {
  .pagetitle-name .subtitle {
    font-size: 1.4rem;
  }
}
.pagetitle-name-jp {
  color: #cccccc;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}

@media screen and (max-width: 1099.98px) {
  .pagetitle-name-jp {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767.98px) {
  .pagetitle-name-jp {
    margin-bottom: 0.8rem;
  }
}
@media screen and (max-width: 639.98px) {
  .pagetitle-name-jp {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 479.98px) {
  .pagetitle-name-jp {
    font-size: 1.2rem;
  }
}
.pageback-more {
  margin-top: 5em;
}

@media screen and (max-width: 767.98px) {
  .pageback-more {
    margin-top: 2.5em;
  }
}
.pagetitle-name-link {
  color: #cccccc;
  display: inline-block;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  padding-left: 1.15em;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1099.98px) {
  .pagetitle-name-link {
    font-size: 4rem;
  }
}
@media screen and (max-width: 479.98px) {
  .pagetitle-name-link {
    padding-left: 0.9em;
  }
}
@media screen and (max-width: 359.98px) {
  .pagetitle-name-link {
    font-size: 3rem;
    padding-left: 1.1em;
  }
}
.pagetitle-name-link::before {
  background-color: #cccccc;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 50px;
}

@media screen and (max-width: 1099.98px) {
  .pagetitle-name-link::before {
    width: 35px;
  }
}
@media screen and (max-width: 479.98px) {
  .pagetitle-name-link::before {
    width: 30px;
  }
}
@media screen and (max-width: 359.98px) {
  .pagetitle-name-link::before {
    width: 25px;
  }
}
.pagetitle-name-link::after {
  background-color: #cccccc;
  content: "";
  display: block;
  height: 2px;
  left: -2px;
  position: absolute;
  top: 38%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 20px;
}

@media screen and (max-width: 1099.98px) {
  .pagetitle-name-link::after {
    width: 15px;
  }
}
@media screen and (max-width: 479.98px) {
  .pagetitle-name-link::after {
    top: 40%;
    width: 13px;
  }
}
@media screen and (max-width: 359.98px) {
  .pagetitle-name-link::after {
    width: 10px;
  }
}
.pagetitle-name-link:hover {
  color: #000000;
}

.pagetitle-name-link:hover::before,
.pagetitle-name-link:hover::after {
  background-color: #000000;
}

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

.pankz-nav dt,
.pankz-nav dd {
  color: #cccccc;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}

@media screen and (max-width: 1099.98px) {
  .pankz-nav dt,
.pankz-nav dd {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 639.98px) {
  .pankz-nav dt,
.pankz-nav dd {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 479.98px) {
  .pankz-nav dt,
.pankz-nav dd {
    font-size: 1.2rem;
  }
}
.pankz-nav dt {
  border-right: 2px solid #cccccc;
  margin-right: 0.5em;
  padding-right: 0.38em;
}

/* --------------------------------

  pagination

-------------------------------- */
.pagination {
  margin: 0;
  margin-top: 1.5em;
  overflow: hidden;
  text-align: center;
}

.pagination h2.screen-reader-text {
  display: none;
}

.pagination a,
.pagination span {
  background-color: #aaaaaa;
  border-radius: 0.35rem;
  color: #ffffff;
  display: inline-block;
  font-size: 0.9em;
  margin: 0.2rem;
  padding: 0.5rem 1.1rem;
  text-align: center;
  vertical-align: middle;
}

@media print, screen and (min-width: 768px) {
  .pagination a,
.pagination span {
    font-size: 0.95em;
    font-weight: 400;
    padding: 0.35em 0.75em;
  }
  .pagination {
    margin-top: 2.5em;
  }
}
.pagination a:hover,
.pagination span.current {
  background-color: #000000;
}

.pagination a:hover {
  text-decoration: none;
}

/* --------------------------------

  アニメーション

-------------------------------- */
/* --------------------------------

  ローディング

-------------------------------- */
.loader {
  background-color: #ffffff;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  width: 100%;
  z-index: 9999;
}

@media screen and (max-width: 1099.98px) {
  .loader {
    height: auto;
    padding-top: 47%;
    position: absolute;
  }
}
@media screen and (max-width: 767.98px) {
  .loader {
    padding-top: 397px;
  }
}
@media screen and (max-width: 359.98px) {
  .loader {
    padding-top: 340px;
  }
}
.loader.loading {
  opacity: 1;
  pointer-events: auto;
}

.loader::before {
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
  border: 4px solid #dddddd;
  border-radius: 50%;
  border-top: 4px solid #000000;
  bottom: 0;
  content: "";
  display: block;
  height: 60px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: -45px;
  width: 60px;
  z-index: 1;
}

@media screen and (max-width: 1099.98px) {
  .loader::before {
    border: 2px solid #dddddd;
    border-top: 2px solid #000000;
    height: 40px;
    top: 0;
    width: 40px;
  }
}
.loader img {
  bottom: 0;
  display: block;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 140px;
}

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

  ログインヘッダー

-------------------------------- */
@media screen and (max-width: 1099.98px) {
  .header.header__login .inner {
    -webkit-align-items: center;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid #cccccc;
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    left: 0;
    max-width: none;
    padding: 4px 5px 0px 5px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
  }
  .header.header__login .header__logo--area {
    margin-bottom: 0.5em !important;
    margin-top: 0.25em;
    vertical-align: bottom;
  }
  .header.header__login .header__logo--area .logo {
    margin-right: 0 !important;
  }
  .header.header__login + .nav-secondary {
    padding-top: 91px;
  }
}
@media screen and (max-width: 767.98px) {
  .header.header__login .lang-switch__btn {
    width: auto !important;
    margin-right: 0;
    margin-left: 1rem;
  }
  .header.header__login .header__logo--area .logo a {
    display: block;
    line-height: 1.8;
  }
  .header.header__login .inner {
    font-size: 16px;
    line-height: 2;
    vertical-align: bottom;
  }
}
/* --------------------------------

  フォーム部品

-------------------------------- */
.form-label {
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-align: start;
  color: #000000;
  cursor: default;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: start;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.65;
  padding: 0.36em 0;
  width: 15em;
}

@media screen and (max-width: 767.98px) {
  .form-label {
    margin-bottom: 0.5em;
    padding: 0;
    width: 100%;
  }
}
.form-icon {
  color: #ffffff;
  display: block;
  font-size: 1.2rem;
  line-height: 1.65em;
  margin-right: 1.3rem;
  margin-top: 1px;
  min-width: 40px;
  text-align: center;
  width: 40px;
}

@media screen and (max-width: 1099.98px) {
  .form-icon {
    font-size: 1.2rem;
    line-height: 1.65em;
    min-width: 40px;
    width: 40px;
  }
}
.form-icon span {
  letter-spacing: 0.1em;
}

.form-check {
  margin: 0 3.5em 0.15em 0;
}

@media screen and (max-width: 479.98px) {
  .form-check {
    margin: 0 1em 0.15em 0;
  }
}
.form-check-desc {
  font-size: 1.3rem;
  margin-top: 0.6em;
  padding-left: 2.3em;
}

.form-check-inline {
  padding-left: 0;
}

.form-check-label {
  color: #ffffff;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
  vertical-align: top;
}

.form-check-icon {
  display: block;
  margin-right: 1.9em;
}

.form-check-icon::before {
  background-color: #eeeeee;
  border: 1px solid #999999;
  content: "";
  display: block;
  height: 22px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: border-color 0.2s, background-color 0.2s;
  transition: border-color 0.2s, background-color 0.2s;
  width: 22px;
}

@media screen and (min-width: 1100px), print {
  .form-check-icon::before {
    height: 22px;
    width: 22px;
  }
}
.form-check-radio::before {
  border-radius: 100%;
}

.form-check-radio::after {
  background-color: transparent;
  border-radius: 100%;
  content: "";
  display: block;
  height: 12px;
  left: 5px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  width: 12px;
}

@media screen and (min-width: 1100px), print {
  .form-check-radio::after {
    height: 12px;
    left: 5px;
    top: 50%;
    width: 12px;
  }
}
.form-check-input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.form-check-input[type=radio]:checked + .form-check-icon::after {
  background-color: #000000;
}

.form-check-input[type=checkbox].validate-error + .form-check-icon::before,
.form-check-input[type=radio].validate-error + .form-check-icon::before {
  border-color: #cc0000;
}

.ar-desc {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 500;
}

.ar-body {
  color: #ffffff;
  margin-top: 1.5em;
}

@media screen and (min-width: 768px), print {
  .ar-body {
    margin-top: 2.5em;
    padding-left: 1em;
  }
}
.ar-block {
  margin-top: 4em;
}

@media screen and (max-width: 767.98px) {
  .ar-block {
    margin-top: 2em;
  }
}
.ar-block .setting__title {
  max-width: none;
}

.ar-radio-item:not(:last-child) {
  margin-bottom: 1.8em;
}

@media screen and (max-width: 767.98px) {
  .ar-radio-item:not(:last-child) {
    margin-bottom: 1.5em;
  }
}
.ar-radio-item_link {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #000000;
  display: inline-block;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.7em 1em 0.65em 1em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.ar-radio-item_link:hover {
  background-color: #000000;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.ar-radio-item_more {
  margin-left: 1em;
}

@media screen and (max-width: 767.98px) {
  .ar-radio-item_more {
    margin-left: 0;
    margin-top: 1em;
  }
}
.ar-radio-wrap {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  max-width: 650px;
}

@media screen and (max-width: 767.98px) {
  .ar-radio-wrap {
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-align: start;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
    -ms-flex-align: start;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
/* --------------------------------

  label

-------------------------------- */
label.label-box {
  cursor: inherit;
}

.label-box {
  border: 1px solid #000000;
  display: inline-block;
  font-size: 12px;
  line-height: 1.2;
  padding: 0.2em 0.5em;
}

a.label-box:hover {
  opacity: 0.6;
}

.collections-category {
  background-color: #ffffff;
}

/* --------------------------------

  id01　トップページ

-------------------------------- */
/* ページ内共通 */
.section-secondary {
  padding-left: 1em;
  padding-right: 1em;
}

@media screen and (min-width: 1100px), print {
  .section-secondary {
    padding-left: 2em;
    padding-right: 2em;
  }
}
.section-secondary:not(:last-child) {
  /* margin-bottom: 4em; */
}

@media screen and (max-width: 639.98px) {
  .section-secondary:not(:last-child) {
    /* margin-bottom: 1.5em; */
    /* padding-top: 0; */
  }
}
.section-secondary .inner {
  line-height: 1.5;
}

@media screen and (min-width: 768px), print {
  .section-secondary .inner {
    line-height: 1.8;
  }
}
.section-dummy:not(:last-child) {
  margin-bottom: 5em;
}

.section-dummy .inner {
  max-width: none;
  text-align: center;
}

.section-dummy_wide {
  overflow: hidden;
}

.section-dummy_wide .inner {
  margin-left: -23%;
  margin-right: -23%;
}

@media screen and (min-width: 1100px), print {
  .section-dummy_wide .inner {
    margin-left: -250px;
    margin-right: -250px;
  }
}
.section-header {
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-align: end;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: end;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 0 auto 3em;
  max-width: 1200px;
}

@media screen and (max-width: 1099.98px) {
  .section-header {
    margin: 0 auto 2.5em;
  }
}
.section-heading {
  display: inline-block;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width: 1099.98px) {
  .section-heading {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767.98px) {
  .section-heading {
    font-size: 3.2rem;
    line-height: 1.15;
  }
}
@media screen and (max-width: 479.98px) {
  .section-heading {
    font-size: 3.2rem;
    line-height: 1;
  }
}
@media screen and (max-width: 359.98px) {
  .section-heading {
    font-size: 3.2rem;
  }
}
.section-heading .br {
  display: none;
}

@media screen and (max-width: 479.98px) {
  .section-heading .br {
    display: block;
  }
}
.section-more {
  margin-left: 1em;
}

/* FATCollectionとは */
.fat-about-section {
  padding: 3em 1em;
}

@media screen and (min-width: 1100px), print {
  .fat-about-section {
    padding: 5em 2em;
  }
}
@media screen and (max-width: 479.98px) {
  .fat-about-section .section-heading {
    font-size: 3rem;
  }
}
.fat-about-container {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1.7em -1.7em 0;
}

@media screen and (max-width: 1099.98px) {
  .fat-about-container {
    margin: 0 -0.5em -0.5em 0;
  }
}
.fat-about-box {
  border: 1px solid #cccccc;
  margin: 0 1.7em 1.7em 0;
  padding: 2.75em 1em 2.3em 1em;
  text-align: center;
  width: calc(25% - 28px);
}

@media screen and (max-width: 1099.98px) {
  .fat-about-box {
    margin: 0 0.5em 0.5em 0;
    width: calc(25% - 8px);
  }
}
@media screen and (max-width: 767.98px) {
  .fat-about-box {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 639.98px) {
  .fat-about-box {
    padding: 1.5em 1em 1.4em 1em;
  }
}
@media screen and (max-width: 479.98px) {
  .fat-about-box {
    padding: 1em 0.5em 1em 0.5em;
  }
}
.fat-about-box dt {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

@media screen and (max-width: 479.98px) {
  .fat-about-box dt {
    font-size: 1.5rem;
  }
}
.fat-about-box dd {
  color: #aaaaaa;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 160px;
}

@media screen and (max-width: 479.98px) {
  .fat-about-box dd {
    font-size: 1.2rem;
    max-width: 120px;
  }
}
/* アーティスト作品一覧 */
.fat-category-define dt {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2em;
}

@media screen and (max-width: 479.98px) {
  .fat-category-define dt {
    font-size: 1.2rem;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 359.98px) {
  .fat-category-define dt {
    margin-bottom: 0.5em;
  }
}
.fat-category-define.artworks-category-define dt {
  padding-right: 4.7em;
  position: relative;
}

@media screen and (max-width: 1099.98px) {
  .fat-category-define.artworks-category-define dt {
    display: inline-block;
    padding-right: 7.1em;
  }
}
@media screen and (max-width: 479.98px) {
  .fat-category-define.artworks-category-define dt {
    padding-right: 12em;
  }
}
.fat-category-define.artworks-category-define dt::after {
  background-color: #cccccc;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 80px;
}

@media screen and (max-width: 1099.98px) {
  .fat-category-define.artworks-category-define dt::after {
    width: 130px;
  }
}
.fat-category-define.artworks-category-define .fat-category-link:hover {
  -webkit-transform: translateX(7px);
  transform: translateX(7px);
}

@media screen and (max-width: 1099.98px) {
  .fat-category-define.artworks-category-define .fat-category-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -1em -1em 0;
  }
}
@media screen and (max-width: 479.98px) {
  .fat-category-define.artworks-category-define .fat-category-list {
    margin: 0 -0.8em -0.8em 0;
  }
}
.fat-category-define.artworks-category-define .fat-category-item {
  margin: 0 1em 1em 0;
}

@media screen and (max-width: 479.98px) {
  .fat-category-define.artworks-category-define .fat-category-item {
    margin: 0 0.8em 0.8em 0;
  }
}
@media screen and (max-width: 1099.98px) {
  .fat-category-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -1em -1em 0;
  }
}
@media screen and (max-width: 479.98px) {
  .fat-category-list {
    margin: 0 -0.8em -0.8em 0;
  }
}
@media screen and (max-width: 1099.98px) {
  .fat-category-item {
    margin: 0 1em 1em 0;
  }
}
@media screen and (max-width: 479.98px) {
  .fat-category-item {
    margin: 0 0.8em 0.8em 0;
  }
}
.fat-category-item:not(:last-child) {
  margin-bottom: 1.28em;
}

@media screen and (max-width: 1099.98px) {
  .fat-category-item:not(:last-child) {
    margin: 0 1em 1em 0;
  }
}
.fat-category-link {
  color: #999999;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  padding-left: 2.5em;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 479.98px) {
  .fat-category-link {
    font-size: 1.2rem;
    padding-left: 1.5em;
  }
}
.fat-category-link:hover {
  color: #000000;
  -webkit-transform: translateX(7px);
  transform: translateX(7px);
}

.fat-category-link:hover::before,
.fat-category-link:hover::after {
  background-color: #000000;
}

.fat-category-link::before {
  background-color: #999999;
  bottom: 4px;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 21px;
}

@media screen and (max-width: 479.98px) {
  .fat-category-link::before {
    width: 11px;
  }
}
.fat-category-link::after {
  background-color: #999999;
  bottom: 8px;
  content: "";
  display: block;
  height: 1px;
  left: 11px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 11px;
}

@media screen and (max-width: 479.98px) {
  .fat-category-link::after {
    bottom: 6px;
    left: 6px;
    width: 6px;
  }
}
.fat-artworks-section {
  overflow: hidden;
  padding: 4em 2em;
}

@media screen and (min-width: 1100px), print {
  .fat-artworks-section {
    padding: 5em 2em;
  }
}
.fat-artworks-section .inner {
  max-width: 1200px !important;
}

.fat-artworks-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 1099.98px) {
  .fat-artworks-container {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.fat-artworks-main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.fat-artworks-side {
  margin-right: 5em;
}

@media screen and (max-width: 1279.98px) {
  .fat-artworks-side {
    margin-right: 3em;
  }
}
@media screen and (max-width: 1099.98px) {
  .fat-artworks-side {
    margin-bottom: 2em;
    margin-right: 0;
  }
}
@media screen and (max-width: 479.98px) {
  .fat-artworks-side {
    margin-bottom: 1em;
    margin-right: 0;
  }
}
/* 展覧会一覧 */
.fat-artists-section {
  overflow: hidden;
  padding: 4em 2em;
}

@media screen and (min-width: 1100px), print {
  .fat-artists-section {
    padding: 4em 2em;
  }
}
.fat-artists-section .inner {
  max-width: 1200px !important;
}

.fat-artists-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.fat-artists-main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.fat-artists-side {
  display: none;
  margin-right: 5em;
}

@media screen and (max-width: 1279.98px) {
  .fat-artists-side {
    margin-right: 3em;
  }
}
@media screen and (max-width: 991.98px) {
  .fat-artists-side {
    margin-right: 2em;
  }
}
@media screen and (max-width: 639.98px) {
  .fat-artists-side {
    margin-right: 1.5em;
  }
}
@media screen and (max-width: 359.98px) {
  .fat-artists-side {
    margin-right: 1em;
  }
}
/* アート展 開催情報 */
.fat-artfairs-section {
  overflow: hidden;
  padding: 3em 1em;
}

@media screen and (min-width: 1100px), print {
  .fat-artfairs-section {
    padding: 4em 2em;
  }
}
.fat-artfairs-section .inner {
  max-width: 1200px !important;
}

.fat-artfairs-main {
  margin-left: 6em;
}

@media screen and (max-width: 767.98px) {
  .fat-artfairs-main {
    margin-left: -0.5em;
  }
}
/* SP時 TOPコンテンツ幅 */
@media screen and (max-width: 599px), print {
  .fat-artworks-section,
.fat-artists-section,
#fat-exhibitions.fat-artists-section {
    padding: 2em 1em;
  }
}
/* --------------------------------

  id01　MYPAGE

-------------------------------- */
@media screen and (max-width: 1099.98px) {
  .mypage-assets {
    /* max-width: 623px; */
    margin: 0 auto;
  }
}
@media screen and (max-width: 767.98px) {
  .mypage-assets {
    /* max-width: 337px; */
  }
}
.mypage-assets-section {
  /* padding: 3em 1em;  */
  line-height: 1.8;
}

@media screen and (min-width: 1100px), print {
  .mypage-assets-section {
    /* padding: 5em 2em;  */
    line-height: 1.8;
  }
}
.mypage-assets-section.purchaser {
  margin: 0 auto;
  margin-bottom: 0;
  /* max-width: 1255px; */
  max-width: 1000px;
  padding: 3em 1em 2.5em 1em;
  padding-left: 1em;
}

@media screen and (min-width: 1100px), print {
  .mypage-assets-section.purchaser {
    padding: 5em 2em 4em 2em;
    padding-left: 0;
  }
}
.mypage-assets-section.purchaser .mypage-assets-menu {
  margin: 0;
  max-width: 880px;
}

.mypage-assets-section .inner {
  max-width: 1000px;
}

.mypage-assets-heading {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.6em;
}

@media screen and (max-width: 767.98px) {
  .mypage-assets-heading {
    font-size: 2rem;
  }
}
.mypage-assets-title {
  /*font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 700;
  word-break: break-all;
  word-wrap: break-word;
  margin-top: .4em;*/
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5em;
  word-break: break-all;
  word-wrap: break-word;
}

@media screen and (max-width: 767.98px) {
  .mypage-assets-title {
    font-size: 1.4rem;
  }
}
.mypage-assets-more {
  margin-top: 5em;
  text-align: center;
}

@media screen and (max-width: 767.98px) {
  .mypage-assets-more {
    margin-top: 3em;
  }
}
.mypage-assets-more__link {
  background-color: #ffffff;
  border: 1px solid #999999;
  color: #999999;
  display: inline-block;
  font-size: 2rem;
  line-height: 1.2;
  max-width: 400px;
  padding: 1.35em 1em;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .mypage-assets-more__link {
    font-size: 1.8rem;
    max-width: 240px;
    padding: 1em 1em;
  }
}
.mypage-assets-more__link:hover {
  background-color: #000000;
  color: #ffffff;
}

.mypage-assets-more__link:hover::before {
  right: -5px;
}

.mypage-assets-more__link:hover::after {
  right: -36px;
}

@media screen and (max-width: 767.98px) {
  .mypage-assets-more__link:hover::after {
    right: -26px;
  }
}
.mypage-assets-more__link::before {
  background-color: #999999;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 55px;
  z-index: 1;
}

@media screen and (max-width: 767.98px) {
  .mypage-assets-more__link::before {
    width: 40px;
  }
}
.mypage-assets-more__link::after {
  background-color: #999999;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: -31px;
  top: 41%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 20px;
  z-index: 1;
}

@media screen and (max-width: 767.98px) {
  .mypage-assets-more__link::after {
    right: -21px;
    width: 15px;
  }
}
.mypage-assets-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 1em;
}

.mypage-assets-wrap label {
  -webkit-align-self: end;
  align-self: end;
  -ms-flex-item-align: end;
}

@media screen and (max-width: 767.98px) {
  .mypage-assets-wrap {
    -webkit-align-self: flex-end;
    align-self: flex-end;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-item-align: end;
    -ms-flex-preferred-size: 100%;
  }
}
.mypage-assets-wrap .rubbish-assets-btn {
  background-color: #ffffff;
  border: 1px solid #999999;
  display: inline-block;
  font-size: 1.6rem;
  padding: 0.6em 1.2em;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767.98px) {
  .mypage-assets-wrap .rubbish-assets-btn {
    padding: 0.89em 1.2em;
    width: 100%;
  }
}
.mypage-assets-wrap .rubbish-assets-btn::before {
  background: url("../../assets/img/base/icon_rubbish_gray.png") no-repeat center/cover;
  content: "";
  display: block;
  height: 20px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 12px;
}

@media screen and (max-width: 767.98px) {
  .mypage-assets-wrap .rubbish-assets-btn::before {
    height: 18px;
    width: 10px;
  }
}
.mypage-assets-wrap .rubbish-assets-btn:hover {
  background-color: #000000;
}

.mypage-assets-wrap .rubbish-assets-btn:hover::before {
  background: url("../../assets/img/base/icon_rubbish_wht.png") no-repeat center/cover;
}

.mypage-assets-btn {
  background-color: #ffffff;
  border: 1px solid #999999;
  color: #999999;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-right: 0.8em;
  padding: 0.6em 1.6em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767.98px) {
  .mypage-assets-btn {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    font-size: 1.2rem;
    margin-bottom: 0.5em;
    margin-right: 0;
    text-align: center;
    width: 100%;
  }
}
.mypage-assets-btn:hover {
  background-color: #000000;
  color: #ffffff;
}

.mypage-assets-image {
  background: #fafafa;
  margin-bottom: 2rem;
  /* max-width: 320px; */
  overflow: hidden;
  text-align: center;
}

@media screen and (max-width: 767.98px) {
  .mypage-assets-image {
    /* max-width: 160px; */
    margin-bottom: 1rem;
  }
}
.mypage-assets-image img {
  font-family: "object-fit: contain;";
  height: 240px;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .mypage-assets-item a:hover .mypage-assets-image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
@media screen and (max-width: 767.98px) {
  .mypage-assets-image img {
    height: 120px;
  }
}
.mypage-assets-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 3rem -3em -3em 0;
}

@media screen and (max-width: 1099.98px) {
  .mypage-assets-container {
    margin: 1.6rem -2em -2em 0;
  }
}
@media screen and (max-width: 767.98px) {
  .mypage-assets-container {
    margin: 1rem -2em -2em 0;
  }
}
.mypage-assets-item {
  margin: 0 3em 3em 0;
  width: calc(33.333333% - 3em);
}

@media screen and (max-width: 767.98px) {
  .mypage-assets-item {
    margin: 0 2em 2em 0;
    width: calc(50% - 2em);
  }
}
@media screen and (max-width: 767.98px) {
  .mypage-assets-item {
    margin: 0 2em 2em 0;
  }
}
.mypage-assets-menu {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  margin: 0 auto 3em;
  max-width: 1000px;
}

@media screen and (max-width: 767.98px) {
  .mypage-assets-menu {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    /* flex-direction: column; */
    -webkit-box-pack: start !important;
    -ms-flex-direction: column;
    -ms-flex-pack: start !important;
    -webkit-justify-content: start !important;
    justify-content: start !important;
    /* max-width: 337px; */
  }
  .mypage-tab-section .mypage-tab-item a {
    padding: 0.5rem 1.5rem 0.3rem 1.5rem !important;
  }
  .mypage-assets-menu {
    overflow: auto;
    padding-right: 2rem;
    width: calc(100% + 2rem) !important;
  }
  .mypage-assets-menu {
    scrollbar-width: none;
  }
  .mypage-assets-menu::-webkit-scrollbar {
    display: none;
  }
}
.mypage-assets-menu__item {
  border-right: 1px solid #999999;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -ms-flex-positive: 1;
  height: 60px;
  min-width: 0;
}

@media screen and (max-width: 1099.98px) {
  .mypage-assets-menu__item {
    height: 40px;
  }
}
@media screen and (max-width: 767.98px) {
  .mypage-assets-menu__item {
    border: 1px solid #999999;
    width: 100%;
  }
}
.mypage-assets-menu__item:first-child {
  border-left: 1px solid #999999;
}

@media screen and (max-width: 767.98px) {
  .mypage-assets-menu__item:not(:last-child) {
    margin-bottom: 0.8em;
  }
}
.mypage-assets-menu__link {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  font-size: 1.8rem;
  height: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  line-height: 1.2;
  padding: 0.55em 0.5em 0.5em 0.5em;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1099.98px) {
  .mypage-assets-menu__link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767.98px) {
  .mypage-assets-menu__link {
    font-size: 1.8rem;
    padding: 0.5em 0.5em 0.45em 0.5em;
  }
}
.mypage-assets-menu__link:hover {
  background-color: #000000;
  color: #ffffff;
}

.mypage-assets-menu__link span {
  font-weight: 700;
}

.mypage-detail-section {
  padding: 0 1em 4.8rem 1em;
}

@media screen and (min-width: 1100px), print {
  .mypage-detail-section {
    padding: 0 2em 8rem 2em;
  }
}
.mypage-detail-section .inner {
  max-width: 1000px;
}

.mypage-detail-section.purchaser {
  padding: 3em 1em 2em 1em;
}

@media screen and (min-width: 1100px), print {
  .mypage-detail-section.purchaser {
    padding: 6em 2em 2.5em 2em;
  }
}
.mypage-detail-section.purchaser .mypage-heading__area {
  max-width: none;
}

.mypage-detail-section.purchaser .mypage-btn__area {
  max-width: 160px;
  width: 100%;
}

.mypage-detail-section.purchaser .mypage-edit__btn {
  max-width: 160px;
  text-align: center;
  width: 100%;
}

.mypage-detail-section.purchaser .mypage-detail-header {
  border-bottom: 1px solid #cccccc;
  margin-bottom: 0;
  padding: 2em 1em;
  padding-top: 0;
}

@media screen and (max-width: 767.98px) {
  .mypage-detail-section.purchaser .mypage-detail-header {
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    margin-top: -2rem;
    padding: 0;
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 767.98px) {
  .mypage-detail-section.purchaser .mypage-detail-header.accent1 .mypage-btn__area {
    /*margin: 1.2em 0 0 0*/
    margin: 1.6rem auto 0 auto;
  }
}
.mypage-detail-block {
  /* margin-top: 2em; */
  /* max-height: 530px; */
  overflow: hidden;
  position: relative;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1099.98px) {
  .mypage-detail-block {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.mypage-detail-block.active {
  max-height: none;
}

.mypage-detail-block.active::before {
  background: transparent;
}

@media screen and (max-width: 767.98px) {
  .mypage-detail-block {
    /* margin-top: 1.5em; */
  }
}
.mypage-detail-text {
  line-height: 2.25;
  overflow: visible;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  -webkit-flex-basis: calc(100% - 365px);
      -ms-flex-preferred-size: calc(100% - 365px);
          flex-basis: calc(100% - 365px);
}

@media screen and (max-width: 1099.98px) {
  .mypage-detail-text {
    line-height: 1.9;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    margin-bottom: 2.4rem;
  }
}
@media screen and (max-width: 767.98px) {
  .mypage-detail-text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 479.98px) {
  .mypage-detail-text {
    margin: 0 auto 2.4rem auto;
    text-align: justify;
  }
}
.mypage-detail-text p {
  /* font-weight: 500; */
  word-break: break-all;
  /* max-height: 175px; */
}

.mypage-detail-image {
  -webkit-align-items: center;
  align-items: center;
  border: 1px solid #cccccc;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  /* float: right;*/
  height: 220px;
  margin: 0 0 0 3rem;
  position: relative;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  width: 480px;
  -webkit-flex-basis: 480px;
      -ms-flex-preferred-size: 480px;
          flex-basis: 480px;
  background: #fafafa;
}

.mypage-detail-image img + img {
  display: none;
}

@media screen and (max-width: 1099.98px) {
  .mypage-detail-image {
    float: none;
    height: 219px;
    margin: 0 auto;
    /* width: 335px; */
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 414px;
  }
}
@media screen and (max-width: 767.98px) {
  .mypage-detail-image {
    height: 157px;
    margin: auto;
    max-width: 100%;
    width: 300px;
    -webkit-flex-basis: 300px;
        -ms-flex-preferred-size: 300px;
            flex-basis: 300px;
  }
}
@media screen and (max-width: 639.98px) {
  .mypage-detail-image {
    float: none;
    margin: 0 auto 1.3em;
    overflow: hidden;
    text-align: center;
    height: 191px;
    max-width: 414px;
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
@media screen and (max-width: 375px) {
  .mypage-detail-image {
    height: 171px;
  }
}
.mypage-detail-image img {
  font-family: "object-fit: contain;";
  max-height: 360px;
  -o-object-fit: cover;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.mypage-detail-header {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 0 auto 4em;
  max-width: 1000px;
}

@media screen and (max-width: 767.98px) {
  .mypage-detail-header {
    margin: 0 auto 4.8rem;
  }
}
@media screen and (max-width: 479.98px) {
  .mypage-detail-header {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    display: block;
    -webkit-flex-direction: column;
    /* -webkit-box-orient: vertical; */
    /* -webkit-box-direction: normal; */
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.mypage-detail-header.accent1 {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

@media screen and (max-width: 767.98px) {
  .mypage-detail-header.accent1 {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .mypage-detail-header.accent1 .mypage-btn__area {
    margin: 1.8em 0 0 0;
  }
  .mypage-detail-header.accent1 .mypage-heading__area {
    width: 100%;
  }
}
.mypage-detail-heading {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.6rem;
}

@media screen and (max-width: 1099.98px) {
  .mypage-detail-header .mypage-detail-heading {
    margin-bottom: 0.4rem;
  }
  .mypage-detail-heading,
.mypage-detail-section + .artworks-concept-section .artworks-concept-header .main-heading {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .mypage-detail-heading.accent1 {
    /* margin-bottom: 0; */
  }
}
@media screen and (max-width: 767.98px) {
  .mypage-detail-heading {
    margin-bottom: 1.6rem;
  }
}
.mypage-detail-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.8rem;
}

@media screen and (max-width: 1099.98px) {
  .mypage-detail-date {
    margin-top: 0.4em;
  }
}
.mypage-detail-date dt,
.mypage-detail-date dd {
  font-weight: 700;
}

@media screen and (max-width: 1099.98px) {
  .mypage-detail-date dt,
.mypage-detail-date dd {
    font-size: 1.2rem;
  }
}
.mypage-detail-date dt {
  margin-right: 1em;
}

.mypage-detail-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 767.98px) {
  .mypage-detail-wrap {
    margin: 0 auto;
    max-width: 390px;
  }
}
@media screen and (max-width: 767.98px) {
  .mypage-detail-wrap.accent1 {
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-align: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: none;
  }
  .mypage-detail-wrap.accent1 .mypage-detail-item dd {
    width: 100%;
  }
  .mypage-detail-wrap.accent1 .mypage-detail-main {
    margin: 2em 0 0 0;
    max-width: 480px;
    width: 100%;
  }
}
.mypage-detail-main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 5.3em;
  margin-top: -0.5em;
  min-width: 0;
}

@media screen and (max-width: 1099.98px) {
  .mypage-detail-main {
    margin-left: 3em;
    margin-top: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .mypage-detail-main {
    margin-left: 1.6rem;
  }
}
@media screen and (max-width: 359.98px) {
  .mypage-detail-main {
    margin-left: 1em;
  }
}
.mypage-detail-body {
  margin-top: 0;
}

@media screen and (max-width: 1099.98px) {
  .mypage-detail-body {
    margin-top: 0.6em;
  }
}
.mypage-detail-link {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mypage-detail-link:hover {
  color: #000000;
}

.mypage-detail-thumb {
  max-height: 280px;
  max-width: 280px;
  min-height: 280px;
  position: relative;
}

@media screen and (max-width: 767.98px) {
  .mypage-detail-thumb {
    max-height: 140px;
    max-width: 140px;
    min-height: 140px;
  }
}
@media screen and (max-width: 359.98px) {
  .mypage-detail-thumb {
    max-height: 120px;
    max-width: 120px;
    min-height: 120px;
  }
}
.mypage-detail-thumb img {
  font-family: "object-fit: cover;";
  max-height: 280px;
  min-height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .mypage-detail-thumb img {
    max-height: 140px;
    min-height: 140px;
  }
}
@media screen and (max-width: 359.98px) {
  .mypage-detail-thumb img {
    max-height: 120px;
    min-height: 120px;
  }
}
.mypage-detail-item {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
}

.mypage-detail-item:not(:last-child) {
  margin-bottom: 2.4rem;
}

@media screen and (max-width: 767.98px) {
  .mypage-detail-item:not(:last-child) {
    margin-bottom: 1em;
  }
}
.mypage-detail-item dt {
  border-right: 1px solid #cccccc;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-right: 1.6em;
  padding-right: 1em;
  width: 7.5em;
}

@media screen and (max-width: 767.98px) {
  .mypage-detail-item dt {
    font-size: 1.3rem;
  }
}
.mypage-detail-item dd {
  -webkit-box-flex: 1;
  color: #999999;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.2;
  line-height: 1.2;
  min-width: 0;
  word-break: break-all;
  word-wrap: break-word;
}

@media screen and (max-width: 767.98px) {
  .mypage-detail-item dd {
    font-size: 1.2rem;
    width: 100%;
  }
}
.mypage-detail-item dd.accent1 {
  color: #000000;
}

@media screen and (max-width: 767.98px) {
  .mypage-detail-item.accent1 {
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-align: start;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-align: start;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .mypage-detail-item.accent1 dt {
    border: none;
    margin: 0 0 0.8rem 0;
    padding: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767.98px) {
  .mypage-detail-item.accent2 dt {
    line-height: 1;
    margin-right: 0.5em;
    padding-right: 0.5em;
    width: 2.5em;
  }
  .mypage-detail-item.accent2 .footer-sns__area-item:not(:last-child) {
    margin-right: 0;
  }
  .mypage-detail-item.accent2 .footer-sns__area-item img {
    width: 48%;
  }
  .mypage-detail-item.accent2 .footer-sns__area-item {
    text-align: center;
  }
}
.mypage-detail-item.accent3 {
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
}

.mypage-btn__area {
  margin-left: 1em;
}

@media screen and (max-width: 479.98px) {
  .mypage-btn__area {
    margin-left: 0;
    margin-top: 1.6rem;
    text-align: center;
  }
}
.mypage-read-more {
  margin-top: 1em;
  text-align: center;
}

.mypage-read-more__btn {
  background-color: #ffffff;
  border: 1px solid #999999;
  color: #999999;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 240px;
  padding: 1.25em 1em 1.17em 1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .mypage-read-more__btn {
    font-size: 1.8rem;
    padding: 1.13em 1em 0.95em 1em;
  }
}
.mypage-read-more__btn:hover {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
}

.mypage-heading__edit {
  display: block;
}

.mypage-heading__area {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 698px;
  min-width: 0;
}

@media screen and (max-width: 599px) {
  .mypage-heading__area {
    width: 100%;
  }
}
.mypage-thumb__btn {
  background-color: #000000;
  bottom: 0;
  display: block;
  height: 30px;
  position: absolute;
  right: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 30px;
}

@media screen and (max-width: 767.98px) {
  .mypage-thumb__btn {
    height: 15px;
    width: 15px;
  }
}
.mypage-thumb__btn:hover {
  background-color: #999999;
}

.mypage-thumb__btn span {
  display: block;
  height: 30px;
  position: relative;
  width: 30px;
}

@media screen and (max-width: 767.98px) {
  .mypage-thumb__btn span {
    height: 15px;
    width: 15px;
  }
}
.mypage-thumb__btn span::before {
  background-color: #ffffff;
  content: "";
  display: block;
  height: 4px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 18px;
}

@media screen and (max-width: 767.98px) {
  .mypage-thumb__btn span::before {
    height: 2px;
    width: 9px;
  }
}
.mypage-thumb__btn span::after {
  background-color: #ffffff;
  content: "";
  display: block;
  height: 18px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 4px;
}

@media screen and (max-width: 767.98px) {
  .mypage-thumb__btn span::after {
    height: 9px;
    width: 2px;
  }
}
.mypage-upload-more {
  margin-top: 4.8rem;
  text-align: center;
}

@media screen and (max-width: 767.98px) {
  .mypage-upload-more {
    margin-top: 2.4rem;
  }
}
.mypage-upload__btn {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  display: inline-block;
  font-size: 2rem;
  line-height: 1.2;
  max-width: 420px;
  padding: 1.35em 1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .mypage-upload__btn {
    max-width: 240px;
    padding: 0.85em 1em;
  }
}
.mypage-upload__btn:hover {
  background-color: #ffffff;
  border: 1px solid #999999;
  color: #999999;
}

.mypage-upload__btn:hover span::before {
  background: url("../../assets/img/base/icon_upload_gray.png") no-repeat center/cover;
}

.mypage-upload__btn span {
  display: inline-block;
  font-weight: 500;
  padding-left: 1.5em;
  position: relative;
}

@media screen and (max-width: 767.98px) {
  .mypage-upload__btn span {
    padding-left: 1.1em;
  }
}
.mypage-upload__btn span::before {
  background: url("../../assets/img/base/icon_upload.png") no-repeat center/cover;
  content: "";
  display: block;
  height: 18px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 20px;
}

@media screen and (max-width: 767.98px) {
  .mypage-upload__btn span::before {
    height: 14px;
    width: 16px;
  }
}
.mypage-edit__btn {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-top: 0.15em;
  padding: 0.61em 2.15em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1099.98px) {
  .mypage-edit__btn {
    font-size: 1.4rem;
    padding: 0.7em 3.2em 0.55em 3.2em;
  }
}
.mypage-edit__btn:hover {
  background-color: #ffffff;
  border: 1px solid #999999;
  color: #999999;
}

.mypage-edit__btn2 {
  margin-top: 0;
}

.mypage-sns-edit {
  margin-top: -0.55em;
}

@media screen and (max-width: 767.98px) {
  .mypage-sns-edit {
    margin-top: 0;
  }
}
.mypage-sns-edit__item {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
}

.mypage-sns-edit__item:not(:last-child) {
  margin-bottom: 1em;
}

.mypage-sns-edit__image {
  margin-right: 1em;
  width: 2em;
}

@media screen and (max-width: 767.98px) {
  .mypage-sns-edit__image {
    width: 1.5em;
  }
}
.mypage-sns-edit__image.insta img {
  height: 20px;
  width: 20px;
}

@media screen and (max-width: 767.98px) {
  .mypage-sns-edit__image.insta img {
    height: 15px;
    width: 15px;
  }
}
.mypage-sns-edit__image.twitter img {
  height: 18px;
  width: 24px;
}

@media screen and (max-width: 767.98px) {
  .mypage-sns-edit__image.twitter img {
    height: 11px;
    width: 17px;
  }
}
.mypage-sns-edit__image.facebook {
  padding-left: 0.1em;
}

.mypage-sns-edit__image.facebook img {
  height: 19px;
  width: 11px;
}

@media screen and (max-width: 767.98px) {
  .mypage-sns-edit__image.facebook img {
    height: 16px;
    width: 8px;
  }
}
.mypage-sns-edit__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.mypage-checkbox-edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1.5em -0.7em 0;
}

@media screen and (max-width: 767.98px) {
  .mypage-checkbox-edit {
    margin: 0 -1em -0.7em 0;
  }
}
.mypage-checkbox-edit__item {
  margin: 0 1.5em 0.7em 0;
}

@media screen and (max-width: 767.98px) {
  .mypage-checkbox-edit__item {
    margin: 0 1em 0.7em 0;
  }
}
.mypage-checkbox-edit__item input[type=checkbox] {
  display: none;
}

.mypage-checkbox-edit__item input[type=checkbox]:checked + label::after {
  border-left: 2px solid #000000;
  border-top: 2px solid #000000;
  content: "";
  display: block;
  height: 13px;
  left: 7px;
  position: absolute;
  top: 2px;
  -webkit-transform: translateY(-50%);
  -webkit-transform: rotate(225deg);
  transform: translateY(-50%);
  transform: rotate(225deg);
  width: 6px;
}

@media screen and (max-width: 767.98px) {
  .mypage-checkbox-edit__item input[type=checkbox]:checked + label::after {
    border-left: 1px solid #000000;
    border-top: 1px solid #000000;
    height: 8px;
    left: 4px;
    top: 2px;
    width: 4px;
  }
}
.mypage-checkbox-edit__item input[type=checkbox]:checked + label::before {
  border-color: #000000;
}

.mypage-checkbox-edit__text {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.2;
  padding-left: 1.65em;
  position: relative;
}

@media screen and (max-width: 767.98px) {
  .mypage-checkbox-edit__text {
    font-size: 1.2rem;
    padding-left: 1.45em;
  }
}
.mypage-checkbox-edit__text::before {
  background-color: #f9f9f9;
  border: 1px solid #999999;
  border-radius: 0;
  content: "";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
}

@media screen and (max-width: 767.98px) {
  .mypage-checkbox-edit__text::before {
    height: 12px;
    width: 12px;
  }
}
.mypage-edit-foot {
  -webkit-box-pack: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin: 8rem -2.3em -2.3em 0;
}

@media screen and (max-width: 1099.98px) {
  .mypage-edit-foot {
    margin: 7em -1em -1em 0;
  }
}
@media screen and (max-width: 767.98px) {
  .mypage-edit-foot {
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-align: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
    margin-top: 4em;
    max-width: 480px;
  }
}
.mypage-edit-item {
  margin: 0 2.3em 4.8rem 0;
  width: calc(50% - 37px);
}

@media screen and (max-width: 1099.98px) {
  .mypage-edit-item {
    margin: 0 1em 4.8rem 0;
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 767.98px) {
  .mypage-edit-item {
    margin: 0 0 4.8rem 0;
    width: 100%;
  }
}
.mypage-edit-summary__body {
  margin-top: 0;
}

@media screen and (max-width: 1099.98px) {
  .mypage-edit-summary__body {
    /* margin-top: 0.5em; */
  }
}
.mypage-edit-image__body {
  margin-top: 1.3em;
  max-width: 480px;
  position: relative;
}

@media screen and (max-width: 1099.98px) {
  .mypage-edit-image__body {
    margin-top: 0.5em;
  }
}
.mypage-edit-image__body img {
  font-family: "object-fit: cover;";
  height: 360px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .mypage-edit-image__body img {
    height: 250px;
  }
}
.mypage-profile-header {
  margin-top: 6em;
}

@media screen and (max-width: 767.98px) {
  .mypage-profile-header {
    margin-top: 3em;
  }
}
/*-------------------
 MY PAGE ver2
-------------------*/
#setting_user {
  padding-bottom: 0rem;
}

#setting_user .purchaser-name-section.section-secondary,
#setting_user .mypage-detail-section.purchaser {
  padding-top: 0;
}

#setting_user .mypage-detail-block {
  padding-top: 8rem;
}

#setting_user .section-secondary.artworks-concept-section {
  margin-bottom: 0;
  padding-bottom: 8rem;
  padding-top: 0;
}

.mypage-heading__area .mypage-heading__input {
  width: 100%;
}

/*-------------------
アーティストマイページ 公開ステータス
-------------------*/
.label-box.artist-visibility,
.label-box.artist-invisibility {
  font-size: 16px;
}

.label-box.artist-invisibility {
  border: 1px solid #999999;
  color: #999999;
}

@media screen and (max-width: 599px) {
  .label-box.artist-visibility,
.label-box.artist-invisibility {
    font-size: 1.4rem;
  }
}
.mypage-heading__area .label-box {
  margin-bottom: 1em;
}

/*-----------------------
MyPage Tab Contents
-------------------------*/
.mypage-tab-section {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 0;
  position: relative;
  /*----- Activity -----*/
  /*----- Artworks（公開中の作品） -----*/
  /*----- Unpublished（非公開の作品） -----*/
  /*----- Purchased（購入した作品） -----*/
  /*----- Artists（Label所属アーティスト） -----*/
  /*----- Artists Artworks（Label所属アーティスト作品） -----*/
  /*----- Liked（Likeした作品） -----*/
  /*----- Following（フォロー一覧） -----*/
}

.mypage-tab-section .mypage-assets-more {
  margin-top: 4em;
}

.mypage-tab-section .inner {
  max-width: 1000px;
  width: 100%;
}

/* マイページタブメニュー */
/* タブ */
.mypage-assets-section {
  /* padding: 0; */
}

.mypage-assets-section .mypage-tab-list {
  border-bottom: 1px solid #cccccc;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 1rem;
  width: 100%;
}

.mypage-assets-section .mypage-tab-item {
  border-bottom: 4px solid #ffffff;
  color: #999999;
  cursor: pointer;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.mypage-assets-section .mypage-tab-item a {
  color: #999999;
  padding: 0.5rem 2rem 0.3rem 2rem;
}

@media screen and (max-width: 320px) {
  .mypage-tab-section .mypage-tab-item a {
    padding: 0.5rem 1rem 0.3rem 1rem !important;
  }
}
.mypage-assets-section .mypage-tab-item.active {
  border-bottom: 4px solid #000000;
  color: #000000;
}

.mypage-tab-section .mypage-tab-item.active a {
  color: #000000;
}

/* タブコンテンツ中身 */
.mypage-tab-section.tab-contents-container {
  margin-top: 2rem;
  padding-top: 0;
}

.mypage-tab-section .tab-content.active {
  display: block;
}

.mypage-tab-section .artworks-list-container {
  -webkit-box-pack: inherit;
  display: grid;
  -ms-flex-pack: inherit;
  gap: 6rem 5%;
  grid-template-columns: repeat(auto-fit, 30%);
  -webkit-justify-content: inherit;
  justify-content: inherit;
  margin: 0;
}

.mypage-tab-section .artworks-list-container:after {
  display: none;
}

.mypage-tab-section .artworks-list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  max-width: inherit;
  min-width: inherit;
  width: inherit;
}

.mypage-tab-section .artworks-list-item__link {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
}

.mypage-tab-section .artworks-list-image-wrap {
  bottom: 0;
  left: 0;
  margin-bottom: 2rem;
  overflow: hidden;
  position: relative;
  right: 0;
  top: 0;
  width: 100%;
}

.mypage-tab-section .artworks-list-image-wrap:before {
  content: "";
  display: block;
  padding-top: 70%;
}

.mypage-tab-section .artworks-list-image {
  bottom: 0;
  left: 0;
  margin-bottom: 0;
  max-width: inherit;
  position: absolute;
  right: 0;
  top: 0;
}

.mypage-tab-section .artworks-list-image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.mypage-tab-section .mypage-artist-list {
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-box-align: stretch;
  display: grid;
  -ms-flex-align: stretch;
  gap: 6rem 5%;
  grid-template-columns: repeat(auto-fit, 30%);
  margin: 0 auto;
}

.mypage-tab-section .mypage-artist-list .list_item {
  position: relative;
}

.mypage-tab-section .mypage-artist-list .artist-container {
  border: 1px solid #000000;
  height: 100%;
}

.mypage-tab-section .mypage-artist-list .artist-container .artist-cover {
  background-color: #fafafa;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: relative;
  right: 0;
  top: 0;
  width: 100%;
}

.mypage-tab-section .mypage-artist-list .artist-container .artist-cover:before {
  content: "";
  display: block;
  padding-top: 53%;
}

.mypage-tab-section .mypage-artist-list .artist-container .artist-cover .artist-cover-image {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.mypage-tab-section .mypage-artist-list .artist-container .artist-cover .artist-cover-image img {
  font-family: "object-fit: cover;";
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.mypage-tab-section .mypage-artist-list .artist-container .artist-main {
  padding: 1.5rem 1.3rem;
}

.mypage-tab-section .mypage-artist-list .artist-container .artist-main .artist-main-header {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
}

.mypage-tab-section .mypage-artist-list .artist-container .artist-main .artist-icon {
  border-radius: 100px;
  display: block;
  height: 46px;
  margin-right: 1rem;
  overflow: hidden;
  width: 46px;
}

.mypage-tab-section .mypage-artist-list .artist-container .artist-main .artist-icon img {
  font-family: "object-fit: cover;";
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.mypage-tab-section .mypage-artist-list .artist-container .artist-main .artist-main-right-header {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 1rem;
  width: 100%;
}

.mypage-tab-section .mypage-artist-list .artist-container .artist-main .artist-name {
  -webkit-flex-basis: calc(100% - 146px);
  flex-basis: calc(100% - 146px);
  -ms-flex-preferred-size: calc(100% - 146px);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-right: 1rem;
  word-break: break-all;
}

.mypage-tab-section .mypage-artist-list .artist-container .artist-main .artist-follow-btn-wrap {
  -webkit-flex-basis: 76px;
  flex-basis: 76px;
  -ms-flex-preferred-size: 76px;
}

.mypage-tab-section .mypage-artist-list .artist-container .artist-main .artist-follow-btn,
.mypage-tab-section .mypage-artist-list .artist-container .artist-main .artist-follow-btn.following.unflow {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  min-height: 34px;
  padding: 0.7em 0.4em 0.6em 0.4em;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 76px;
}

.mypage-tab-section .mypage-artist-list .artist-container .artist-main .artist-follow-btn.following {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  color: #000000;
}

.mypage-tab-section .mypage-artist-list .artist-container .artist-main .artist-category {
  display: block;
  margin-bottom: 0.6rem;
  max-height: 3.1em;
  overflow: hidden;
}

.mypage-tab-section .mypage-artist-list .artist-container .artist-main .cate-label {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  color: #777777;
  display: inline-block;
  font-size: 1.2rem;
  margin-bottom: 0.3em;
  margin-right: 0.3em;
  padding: 0.4em 0.3em 0.3em 0.3em;
}

.mypage-tab-section .mypage-artist-list .artist-container .artist-main .artist-bio p {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 1.2rem;
  -webkit-line-clamp: 3;
  line-height: 1.4;
  overflow: hidden;
  word-break: break-all;
}

.mypage-tab-section .mypage-artist-list .artist-container .artist-main .artist-bio p br {
  display: none;
}

.mypage-tab-section .artworks-list-fee {
  margin-top: 0.4em;
}

.mypage-tab-section .mypage-assets-btn {
  font-size: 1.4rem;
}

.mypage-tab-section .tab-content-sort-area {
  -webkit-box-pack: end;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  -webkit-justify-content: end;
  justify-content: end;
  padding: 0rem 0 2rem 0;
}

.mypage-tab-section .tab-content-sort-area .input-wrap select {
  height: 42px;
  padding-bottom: 0.5em;
  padding-top: 0.5em;
}

@media screen and (max-width: 767.98px) {
  .mypage-tab-section .tab-content-sort-area {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
.mypage-tab-section #container-activity .activity-filter-list {
  -webkit-box-pack: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  font-size: 1.4rem;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.mypage-tab-section #container-activity .activity-filter-item a {
  color: #999999;
  cursor: pointer;
  display: block;
  font-weight: 700;
  min-width: 8rem;
  padding: 0.3rem 1.5rem;
  text-align: center;
}

.mypage-tab-section #container-activity .activity-filter-item.active a {
  background-color: #efefef;
  color: #000000;
}

.mypage-tab-section #container-activity .activity-list {
  width: 100%;
}

.mypage-tab-section #container-activity .activity-list-container {
  border-top: 1px solid #cccccc;
}

.mypage-tab-section #container-activity .activity-list-item {
  border-bottom: 1px solid #cccccc;
}

.mypage-tab-section #container-activity .activity-list-item__link {
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-align: start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  padding: 2.5rem 0;
}

.mypage-tab-section #container-activity .activity-list-image-wrap {
  bottom: 0;
  -webkit-flex-basis: 32%;
  flex-basis: 32%;
  -ms-flex-preferred-size: 32%;
  left: 0;
  margin-right: 2rem;
  overflow: hidden;
  position: relative;
  right: 0;
  top: 0;
}

.mypage-tab-section #container-activity .activity-list-image-wrap:before {
  content: "";
  display: block;
  padding-top: 53%;
}

.mypage-tab-section #container-activity .activity-list-image {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.mypage-tab-section #container-activity .activity-list-image img {
  font-family: "object-fit: cover;";
  height: 100%;
  max-height: 387px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.mypage-tab-section #container-activity .activity-list-item.listings .activity-list-image {
  bottom: 0;
  left: 0;
  margin-bottom: 0;
  max-width: inherit;
  position: absolute;
  right: 0;
  top: 0;
}

.mypage-tab-section #container-activity .activity-list-item.listings .activity-list-image img {
  background-color: #fafafa;
  font-family: "object-fit: contain;";
  -o-object-fit: contain;
  object-fit: contain;
  padding: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.mypage-tab-section #container-activity .activity-list-item.exhibition .activity-list-image {
  border: 1px solid #eeeeee;
  overflow: hidden;
}

.mypage-tab-section #container-activity .activity-list-body {
  -webkit-flex-basis: calc(68% - 2rem);
  flex-basis: calc(68% - 2rem);
  -ms-flex-preferred-size: calc(68% - 2rem);
  line-height: 1.4;
  word-break: break-all;
}

.mypage-tab-section #container-activity .activity-list-header {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.mypage-tab-section #container-activity .activity-list-time {
  color: #999999;
  font-size: 1.3rem;
}

.mypage-tab-section #container-activity .activity-list-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.7rem;
}

.mypage-tab-section #container-activity .activity-list-title .art-tx {
  font-size: 80%;
  font-weight: 500;
  padding-left: 0.5em;
}

.mypage-tab-section #container-activity .activity-list-artist {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
}

.mypage-tab-section #container-activity .activity-list-artist .activity-artist-ico {
  border-radius: 100px;
  height: 24px;
  overflow: hidden;
  width: 24px;
}

.mypage-tab-section #container-activity .activity-list-artist .activity-artist-ico img {
  font-family: "object-fit: cover;";
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: baseline;
  width: 100%;
}

.mypage-tab-section #container-activity .activity-list-artist .activity-artist-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-left: 0.6rem;
}

.mypage-tab-section #container-activity .activity-list-btn-wrap {
  margin-top: 2.1rem;
}

.mypage-tab-section #container-activity .activity-list-btn-wrap label {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.2;
  padding: 0.61em 2.15em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mypage-tab-section #container-activity .activity-list-exhibition-info {
  font-size: 1.4rem;
}

.mypage-tab-section #container-activity .activity-list-exhibition-info .activity-list-exhibition-date,
.mypage-tab-section #container-activity .activity-list-exhibition-info .activity-list-exhibition-area {
  margin-bottom: 0.7rem;
}

.mypage-tab-section #container-artworks .artworks-list-subtitle {
  display: none;
}

.mypage-tab-section #container-unpublished .artworks-list-subtitle {
  display: none;
}

.mypage-tab-section #container-purchased .artworks-list-fee {
  display: none;
}

.mypage-tab-section .mypage-assets-more__link::before,
.mypage-tab-section .mypage-assets-more__link::after {
  display: none;
}

.mypage-tab-section .tab-content-empty {
  grid-column-end: 4;
  grid-column-start: 1;
  grid-row-end: 3;
  grid-row-start: 1;
  margin-top: 5em;
  padding-bottom: 7em;
  text-align: center;
  width: 100%;
}

.mypage-tab-section .mypage-assets .tab-content-empty {
  margin-left: -1em;
}

.mypage-tab-section .empty-title {
  color: #999999;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1em;
}

@media screen and (max-width: 599px) {
  .mypage-tab-section .empty-title {
    font-size: 1.8rem;
  }
}
.mypage-tab-section .empty-message {
  color: #999999;
  font-weight: 700;
}

.mypage-tab-section .empty-btn-wrap {
  margin-top: 3em;
}

.mypage-tab-section .follow-modal__btn {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.2;
  padding: 1.35em 1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 280px;
}

@media screen and (min-width: 767.98px) {
  .mypage-tab-section .mypage-tab-item:hover,
.mypage-tab-section .mypage-tab-item:hover a {
    color: #000000;
  }
  .mypage-tab-section .mypage-tab-item:hover {
    border-bottom: 4px solid #000000;
  }
  .mypage-tab-section #container-activity .activity-filter-item a:hover {
    color: #000000;
  }
  .mypage-tab-section #container-activity .activity-list-item__link:hover {
    opacity: 0.5;
  }
  .mypage-tab-section #container-activity .activity-list-item__link:hover .activity-list-image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  .mypage-tab-section .follow-modal__btn:hover {
    background-color: #ffffff;
    border: 1px solid #999999;
    color: #999999;
  }
}
@media screen and (max-width: 1100px) {
  #setting_user .section-secondary.artworks-concept-section {
    padding: 0 1em 8rem 1em;
  }
}
@media screen and (max-width: 920px) {
  .mypage-tab-section.tab-contents-container {
    width: 100%;
  }
  .mypage-assets-section {
    position: relative;
  }
  .mypage-assets-section .mypage-tab-list:after {
    background: #ffffff;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#ffffff));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    content: " ";
    height: 3.4rem;
    position: absolute;
    right: -1.6rem;
    top: 1px;
    width: 50px;
  }
  .mypage-tab-section .mypage-tab-container.inner .mypage-tab-list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    overflow-x: scroll;
    padding-right: 7rem;
  }
  .mypage-tab-section .mypage-tab-container.inner .mypage-tab-item {
    /*&:last-child:after{
        content:"";
        display: block;
        width: 100px;
        height: 10px;
      }*/
  }
  .mypage-tab-section .mypage-tab-container.inner .mypage-tab-item a {
    padding: 0.5rem 1.3rem 0.2rem 1.3rem;
  }
  .mypage-tab-section .tab-contents-container.inner {
    overflow: hidden;
    width: 100%;
  }
  .mypage-tab-section .artworks-list-container {
    gap: 4rem 8%;
    grid-template-columns: repeat(auto-fit, 46%);
  }
  .mypage-tab-section .artworks-list {
    max-width: inherit;
  }
  .mypage-tab-section .artworks-list-subtitle {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 767.98px) {
  .mypage-artist-list .artist-container .artist-main .artist-follow-btn:hover {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    color: #000000;
  }
  .mypage-artist-list .artist-container .artist-main .artist-follow-btn.following:hover,
.mypage-tab-section .mypage-artist-list .artist-container .artist-main .artist-follow-btn.following.unflow:hover {
    background-color: #000000;
    border: 1px solid #000000;
    color: #ffffff;
  }
  .mypage-artist-list .artist-container .artist-main .artist-icon:hover {
    opacity: 0.5;
  }
  .mypage-artist-list .artist-container .artist-main .artist-name:hover {
    color: #999999;
  }
}
@media screen and (max-width: 767.98px) {
  .mypage-detail-section .inner {
    width: 100%;
  }
  #setting_user .mypage-detail-block {
    padding-top: 4.8rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .mypage-tab-section #container-activity .activity-list-item__link {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .mypage-tab-section #container-activity .activity-list-image-wrap {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    margin-right: 0;
  }
  .mypage-tab-section #container-activity .activity-list-header {
    margin-bottom: 1.5rem;
  }
  .mypage-tab-section #container-activity .activity-list-body {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    margin-top: 1.5rem;
  }
  .mypage-tab-section #container-activity .activity-list-title {
    font-size: 1.6rem;
  }
  .mypage-tab-section #container-activity .activity-list-btn-wrap label {
    font-size: 1.4rem;
  }
  .mypage-tab-section #container-activity .activity-list-exhibition-info .activity-list-exhibition-date,
.mypage-tab-section #container-activity .activity-list-exhibition-info .activity-list-exhibition-area {
    margin-bottom: 1rem;
  }
  .mypage-tab-section #container-activity .activity-list-btn-wrap {
    margin-top: 2rem;
  }
  .mypage-tab-section .mypage-artist-list {
    gap: 2rem 3%;
    grid-template-columns: repeat(auto-fit, 100%);
  }
  .mypage-tab-section .tab-content-empty {
    margin-top: 4em;
  }
  .mypage-tab-section .empty-message {
    font-size: 1.3rem;
    padding-left: 1em;
    padding-right: 1em;
  }
  .mypage-tab-section .tab-content-empty {
    grid-column-end: 3;
  }
  .mypage-tab-section .mypage-artist-list .tab-content-empty {
    grid-column-end: 2;
  }
}
/* --------------------------------

  id02　Artists

-------------------------------- */
.artists-detail {
  /* max-width: 800px; */
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  width: 100%;
}

.artists-detail-section {
  /* padding: 3em 1em; */
}

@media screen and (min-width: 1100px), print {
  .artists-detail-section {
    padding: 5em 2em;
  }
}
@media screen and (max-width: 767.98px) {
  .artists-detail-section {
    /* padding: 1.5em 1em 2em 1em;*/
  }
  .artists-detail-section .artworks-concept-section {
    padding: 0;
  }
}
@media screen and (min-width: 480px), print {
  .artists-detail-section {
    overflow: hidden;
  }
}
@media screen and (min-width: 480px), print {
  .artists-detail-section .slick-list {
    overflow: visible !important;
  }
}
.artists-detail-section > .inner {
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 1099.98px) {
  .artists-detail-section > .inner {
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-align: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (min-width: 480px), print {
  .artists-detail-title {
    display: none;
  }
}
@media screen and (max-width: 479.98px) {
  .artists-detail-title {
    color: #000000;
    display: block;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 0.8em;
    text-align: center;
  }
}
@media screen and (max-width: 359.98px) {
  .artists-detail-title {
    font-size: 1.4rem;
  }
}
.artists-detail-profile {
  margin: 0 auto;
  /* margin-bottom: 4em; */
  /* margin-top: 6em; */
  /* max-width: 1000px; */
}

@media screen and (max-width: 767.98px) {
  .artists-detail-profile {
    /* margin-bottom: 3em; */
    /* margin-top: 4em; */
  }
}
.artists-detail-profile._secondary {
  /* margin-top: 0; */
}

@media screen and (max-width: 1099.98px) {
  .artists-detail-profile._secondary {
    /* margin-top: 2em; */
  }
}
.artists-detail-profile._secondary .artists-detail-profile__body .artists-detail-profile__image {
  float: none;
  margin: 0 auto 2em;
}

@media screen and (max-width: 767.98px) {
  .artists-detail-profile._secondary .artists-detail-profile__body .artists-detail-profile__image {
    margin: 0 auto 1.5em;
  }
}
.artists-detail-profile__body {
  max-height: 530px;
  overflow: hidden;
  position: relative;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}

.artists-detail-profile__body.active {
  max-height: none;
}

.artists-detail-profile__body.active::before {
  background: transparent;
}

.artists-detail-profile__text {
  line-height: 2.25;
  overflow: visible;
}

@media screen and (max-width: 1099.98px) {
  .artists-detail-profile__text {
    line-height: 1.9;
  }
}
@media screen and (max-width: 767.98px) {
  .artists-detail-profile__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 479.98px) {
  .artists-detail-profile__text {
    margin: 0 auto;
    max-width: 335px;
    text-align: justify;
  }
}
.artists-detail-profile__text p {
  /* font-weight: 500; */
}

.artists-detail-profile__image {
  float: right;
  margin: 0.4em 0 1.8em 3.5em;
  max-width: 480px;
  position: relative;
}

@media screen and (max-width: 1099.98px) {
  .artists-detail-profile__image {
    margin: 0.3em 0 0.5em 1.5em;
    max-width: 335px;
  }
}
@media screen and (max-width: 767.98px) {
  .artists-detail-profile__image {
    margin: 0.3em 0 0.5em 0.8em;
  }
}
@media screen and (max-width: 639.98px) {
  .artists-detail-profile__image {
    float: none;
    margin: 0 auto 1.3em;
  }
}
.artists-detail-profile__image img {
  font-family: "object-fit: cover;";
  height: 360px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 1099.98px) {
  .artists-detail-profile__image img {
    height: 250px;
  }
}
@media screen and (max-width: 359.98px) {
  .artists-detail-profile__image img {
    height: 220px;
  }
}
.artists-detail-container {
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  /* margin-bottom: 4em; */
}

@media screen and (max-width: 1099.98px) {
  .artists-detail-container {
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-align: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.artists-detail-side {
  margin-right: 5em;
  max-width: 260px;
}

@media screen and (max-width: 1099.98px) {
  .artists-detail-side {
    /* margin-bottom: 4em; */
    margin-right: 0;
    max-width: none;
    /* margin-top: 4rem; */
  }
}
@media screen and (max-width: 767.98px) {
  .artists-detail-side {
    /* margin-bottom: 3em; */
    width: 100%;
  }
}
.artists-detail-name {
  color: #000000;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2em;
  word-break: break-all;
  word-wrap: break-word;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.artists-detail-name:hover {
  color: #999999;
}

@media screen and (max-width: 1099.98px) {
  .artists-detail-name {
    margin-bottom: 0.8em;
  }
}
@media screen and (max-width: 767.98px) {
  .artists-detail-name {
    font-size: 1.5rem;
  }
}
#artists-detail-gallery {
  width: calc(100% + 8px);
}

@media screen and (max-width: 767.98px) {
  #artists-detail-gallery {
    width: calc(100% + 9px);
  }
}
.artists-detail-gallery .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -0.5em -0.5em 0;
  width: 100% !important;
}

@media screen and (max-width: 767.98px) {
  .artists-detail-gallery .slick-track {
    margin: 0 -0.4em -0.4em 0;
  }
}
.artists-detail-gallery__item {
  cursor: pointer;
  margin: 0 0.5em 0.5em 0;
  outline: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: calc(20% - 8px) !important;
}

@media screen and (max-width: 767.98px) {
  .artists-detail-gallery__item {
    margin: 0 0.4em 0.4em 0;
    width: calc(20% - 7px) !important;
  }
}
@media screen and (max-width: 479.98px) {
  .artists-detail-gallery__item {
    /* max-width: 62px; */
    /* width: 100% !important; */
  }
}
@media screen and (max-width: 413.98px) {
  .artists-detail-gallery__item {
    max-width: 57px;
  }
}
@media screen and (max-width: 320px) {
  .artists-detail-gallery__item {
    max-width: 60px;
  }
}
.artists-detail-gallery__item:hover {
  opacity: 0.7;
}

.artists-detail-gallery__item.slick-current img {
  opacity: 0.7;
}

.artists-detail-gallery__item img {
  background: #fafafa;
  font-family: "object-fit: contain;";
  height: 110px;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 5px;
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .artists-detail-gallery__item img {
    height: 59px;
  }
}
@media screen and (max-width: 479.98px) {
  .artists-detail-gallery__item img {
    height: 55px;
  }
}
.artists-detail-thumb {
  margin-bottom: 1em;
  position: relative;
}

@media screen and (max-width: 767.98px) {
  .artists-detail-thumb {
    margin-bottom: 0.5em;
  }
}
.artists-detail-thumb__item img {
  background: #fafafa;
  font-family: "object-fit: contain;";
  height: 552px;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 6px;
  width: 100%;
  margin: auto;
}

@media screen and (max-width: 767.98px) {
  .artists-detail-thumb__item img {
    height: 245px;
  }
}
.artists-detail-main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: -0.5em;
  max-width: 800px;
  min-width: 0;
  /* background: #ccc; */
}

@media screen and (max-width: 1099.98px) {
  .artists-detail-main {
    margin: 0 auto;
    margin-top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767.98px) {
  .artists-detail-main {
    max-width: 335px;
  }
}
@media screen and (max-width: 1099.98px) {
  .artists-detail-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
@media screen and (max-width: 1099.98px) {
  .artists-detail-info__body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
  }
}
.artists-detail-info__list {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
}

.artists-detail-info__list-item:not(:last-child) {
  margin-right: 1em;
}

@media screen and (max-width: 767.98px) {
  .artists-detail-info__list-item:not(:last-child) {
    margin-right: 0.3em;
  }
}
.artists-detail-info__list-item a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.artists-detail-info__list-item a:hover {
  opacity: 0.7;
}

.artists-detail-info__list-item img {
  width: 63%;
}

@media screen and (max-width: 767.98px) {
  .artists-detail-info__list-item img {
    width: 50%;
  }
}
.artists-detail-info__image {
  margin: 0 auto 1.8em;
  margin-left: 0;
  max-width: 280px;
}

@media screen and (max-width: 1099.98px) {
  .artists-detail-info__image {
    margin: 0 2em 0 0;
  }
}
@media screen and (max-width: 767.98px) {
  .artists-detail-info__image {
    margin: 0 1.6em 0 0;
    max-width: 140px;
  }
}
@media screen and (max-width: 359.98px) {
  .artists-detail-info__image {
    margin: 0 1em 0 0;
    max-width: 120px;
  }
}
.artists-detail-info__image img {
  font-family: "object-fit: cover;";
  height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .artists-detail-info__image img {
    height: 140px;
  }
}
@media screen and (max-width: 359.98px) {
  .artists-detail-info__image img {
    height: 120px;
  }
}
.artists-detail-info__item {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
}

.artists-detail-info__item:not(:last-child) {
  margin-bottom: 1.6em;
}

@media screen and (max-width: 767.98px) {
  .artists-detail-info__item:not(:last-child) {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 767.98px) {
  .artists-detail-info__item.accent1 {
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-align: start;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-align: start;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 767.98px) {
  .artists-detail-info__item.accent1 dt {
    border-right: none;
    margin-bottom: 0.5em;
    margin-right: 0;
    padding-right: 0;
    width: 100%;
  }
}
.artists-detail-info__item.accent2 {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
}

@media screen and (max-width: 767.98px) {
  .artists-detail-info__item.accent2 dt {
    width: 3em;
  }
}
.artists-detail-info__item dt {
  border-right: 1px solid #999999;
  color: #000000;
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-right: 1em;
  padding-right: 0.5em;
  width: 4.6em;
}

@media screen and (max-width: 767.98px) {
  .artists-detail-info__item dt {
    font-size: 1.3rem;
  }
}
.artists-detail-info__item dd {
  -webkit-box-flex: 1;
  color: #999999;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  min-width: 0;
  word-break: break-all;
  word-wrap: break-word;
}

@media screen and (max-width: 767.98px) {
  .artists-detail-info__item dd {
    font-size: 1.2rem;
  }
}
.artists-detail-info__link {
  color: #999999;
  display: inline-block;
  font-weight: 700;
  line-height: 1.5;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.artists-detail-info__link:hover {
  color: #000000;
}

.artists-top-section {
  padding: 3em 1em;
}

@media screen and (min-width: 1100px), print {
  .artists-top-section {
    padding: 5em 2em;
  }
}
@media screen and (max-width: 767.98px) {
  .artists-top-section {
    padding: 1.5em 1em 2em 1em;
  }
}
.artists-top-section .inner {
  max-width: 1200px;
}

@media screen and (max-width: 767.98px) {
  #user_list .artists-top-section {
    padding-left: 0;
    padding-right: 0;
  }
  #user_list .artists-top-section .inner {
    /* width: 100%;*/
  }
}
.artists-top-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1em -3em 0;
}

@media screen and (max-width: 991.98px) {
  .artists-top-wrap {
    margin: 0 -1em -1.5em 0;
  }
}
@media screen and (max-width: 767.98px) {
  .artists-top-wrap {
    margin: 0 -1em -1.5em 0;
  }
}
@media screen and (max-width: 639.98px) {
  .artists-top-wrap {
    margin: 0 -0.5em -1em 0;
  }
}
.artists-top-item {
  margin: 0 1em 3em 0;
  width: calc(25% - 16px);
}

@media screen and (max-width: 991.98px) {
  .artists-top-item {
    margin: 0 1em 1.5em 0;
  }
}
@media screen and (max-width: 767.98px) {
  .artists-top-item {
    margin: 0 1em 1.5em 0;
    width: calc(33.33333% - 16px);
  }
}
@media screen and (max-width: 639.98px) {
  .artists-top-item {
    margin: 0 0.5em 2em 0;
    width: calc(50% - 8px);
  }
}
.artists-top-item__link {
  display: block;
  margin: 0 auto;
  max-width: 180px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 991.98px) {
  .artists-top-item__link {
    max-width: 150px;
  }
}
.artists-top-item__link:hover .artists-top-name {
  color: #999999;
}

.artists-top-item__link:hover .artists-top-image img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.artists-top-side {
  display: none;
}

.artists-top-more {
  margin-top: 5em;
  text-align: center;
}

@media screen and (max-width: 767.98px) {
  .artists-top-more {
    margin-top: 2.5em;
  }
}
.artists-top-image {
  margin: 0 auto;
  max-height: 180px;
  max-width: 180px;
  overflow: hidden;
}

@media screen and (max-width: 991.98px) {
  .artists-top-image {
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-box-align: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: end;
    max-height: 150px;
    max-width: 150px;
  }
}
@media screen and (max-width: 359.98px) {
  .artists-top-image {
    max-height: 125px;
    max-width: 125px;
  }
}
.artists-top-image img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  font-family: "object-fit: cover;";
  height: 180px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

@media screen and (max-width: 991.98px) {
  .artists-top-image img {
    height: 150px;
  }
}
@media screen and (max-width: 359.98px) {
  .artists-top-image img {
    height: 125px;
  }
}
.artists-top-name {
  color: #000000;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0.6em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767.98px) {
  .artists-top-name {
    font-size: 1.3rem;
  }
}
.artists-top-text {
  color: #999999;
  font-family: "Roboto", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
}

@media screen and (max-width: 767.98px) {
  .artists-top-text {
    font-size: 1.4rem;
    line-height: 1.28;
  }
}
.artists-detail-thumb__item:hover .thumb-moreview-btn {
  opacity: 1;
}

.artists-detail-thumb__item .thumb-moreview-btn {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media screen and (min-width: 480px), print {
  .artists-detail-thumb__item .thumb-moreview-btn {
    bottom: 0;
    opacity: 0;
    position: absolute;
    right: -2px;
    z-index: 1;
  }
}
@media screen and (max-width: 479.98px) {
  .artists-detail-thumb__item .thumb-moreview-btn {
    margin: 1.5em 0;
    text-align: center;
  }
}
.artists-detail-thumb__item .thumb-moreview-link {
  background-color: #000000;
  border: 1px solid #999999;
  color: #ffffff;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.2;
  max-width: 180px;
  padding: 0.6em 1.8em;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .artists-detail-thumb__item .thumb-moreview-link {
    font-size: 1.4rem;
    padding: 0.58em 1.5em 0.5em 1.5em;
  }
}
@media screen and (max-width: 479.98px) {
  .artists-detail-thumb__item .thumb-moreview-link {
    max-width: 130px;
  }
}
.artists-detail-thumb__item .thumb-moreview-link:hover {
  background-color: #ffffff;
  border: 1px solid #999999;
  color: #999999;
}

.artists-detail-thumb__item .thumb-moreview-link:hover::before {
  right: -3px;
}

.artists-detail-thumb__item .thumb-moreview-link:hover::after {
  right: -20px;
}

@media screen and (max-width: 767.98px) {
  .artists-detail-thumb__item .thumb-moreview-link:hover::after {
    right: -17px;
  }
}
.artists-detail-thumb__item .thumb-moreview-link::before {
  background-color: #999999;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 30px;
  z-index: 1;
}

@media screen and (max-width: 767.98px) {
  .artists-detail-thumb__item .thumb-moreview-link::before {
    width: 25px;
  }
}
.artists-detail-thumb__item .thumb-moreview-link::after {
  background-color: #999999;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: -17px;
  top: 40%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 12px;
  z-index: 1;
}

@media screen and (max-width: 767.98px) {
  .artists-detail-thumb__item .thumb-moreview-link::after {
    right: -14px;
    top: 39%;
    width: 10px;
  }
}
/* ソートタブ  */
ul.sort-tab {
  -webkit-box-pack: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.5em;
  width: 100%;
}

ul.sort-tab li {
  color: #999999;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

ul.sort-tab li:hover {
  color: #cccccc;
}

ul.sort-tab li.active {
  border-bottom: 4px solid #000000;
  color: #000000;
}

ul.sort-tab li .tx {
  cursor: pointer;
  font-weight: 700;
  padding: 0.3em 0.8em;
}

@media screen and (max-width: 767.98px) {
  ul.sort-tab li {
    font-size: 1.4rem;
  }
}
/* --------------------------------

  id03　Artworks

-------------------------------- */
/* ----- 作品一覧 ----- */
#model_list .artworks-category-section,
#model_list .artworks-list-section {
  /* background:#eee; */
}

#model_list .artworks-category-section {
  padding: 0 3.2rem 2.4rem 3.2rem;
}

#model_list .artworks-list-section {
  padding: 0 3.2rem 3.2rem 3.2rem;
}

#model_list > .inner {
  width: 95%;
}

@media screen and (max-width: 1099.98px) {
  #model_list .pagetitle .inner {
    width: 100%;
    padding: 0 1.6rem 0 1.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  #model_list .pagetitle .inner {
    width: 100%;
    padding: 0;
  }
  #model_list .artworks-category-section {
    padding: 0 1.6rem 1.6rem 1.6rem;
  }
  #model_list .artworks-list-section {
    padding: 0 1.6rem 3.2rem 1.6rem;
  }
}
@media screen and (max-width: 640px) {
  #model_list .pagetitle {
    padding-left: 0;
    padding-right: 0;
    width: 95%;
    margin: auto;
  }
  #model_list .pagetitle .inner {
    width: 95%;
    padding: 0 1.6rem 0 1.6rem;
  }
}
/* Category */
.artworks-category-section {
  padding: 3em 1em;
  padding-top: 0;
}

@media screen and (min-width: 1100px), print {
  .artworks-category-section {
    padding: 5em 2em;
    padding-top: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-category-section {
    padding: 1.5em 1em 2em 1em;
    padding-top: 0;
  }
}
.artworks-category-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 1099.98px) {
  .artworks-category-container {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.artworks-category-main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 2.5em;
  min-width: 0;
}

@media screen and (max-width: 1099.98px) {
  .artworks-category-main {
    margin-left: 0;
    margin-top: 3em;
  }
}
.artworks-category-wrap {
  border: 1px solid #cccccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 2.5em;
}

@media screen and (max-width: 1279.98px) {
  .artworks-category-wrap {
    padding: 1.5em;
  }
}
@media screen and (max-width: 1099.98px) {
  .artworks-category-wrap {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.artworks-category-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 2em;
  margin-top: -0.5em;
  min-width: 0;
}

@media screen and (max-width: 1279.98px) {
  .artworks-category-body {
    margin-top: 0;
  }
}
@media screen and (max-width: 1099.98px) {
  .artworks-category-body {
    margin-left: 0;
    margin-top: 2em;
  }
}
.artworks-category-heading {
  font-size: 3.7rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8em;
  word-break: break-all;
  word-wrap: break-word;
}

@media screen and (max-width: 1279.98px) {
  .artworks-category-heading {
    font-size: 2rem;
  }
}
.artworks-category-text {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 1.4rem;
  -webkit-line-clamp: 7;
  line-height: 1.8;
  margin-top: 1em;
  max-height: 250px;
  overflow: hidden;
  word-break: break-all;
  word-wrap: break-word;
}

@media screen and (max-width: 1279.98px) {
  .artworks-category-text {
    font-size: 1.2rem;
    -webkit-line-clamp: 5;
    margin-top: 1.5em;
    max-height: 125px;
  }
}
@media screen and (max-width: 1099.98px) {
  .artworks-category-text {
    -webkit-line-clamp: 3;
  }
}
.artworks-category-more {
  margin-top: 2em;
}

@media screen and (max-width: 1279.98px) {
  .artworks-category-more {
    margin-top: 2em;
  }
}
@media screen and (max-width: 1099.98px) {
  .artworks-category-more {
    text-align: center;
  }
}
.artworks-category-more__link {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  display: inline-block;
  font-size: 2rem;
  line-height: 1.2;
  max-width: 300px;
  padding: 1.35em 1em;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

@media screen and (max-width: 1279.98px) {
  .artworks-category-more__link {
    font-size: 1.8rem;
    max-width: 240px;
    padding: 1em 1em;
  }
}
.artworks-category-more__link:hover {
  background-color: #ffffff;
  border: 1px solid #999999;
  color: #999999;
}

.artworks-category-more__link:hover::before {
  right: -5px;
}

.artworks-category-more__link:hover::after {
  right: -36px;
}

@media screen and (max-width: 1279.98px) {
  .artworks-category-more__link:hover::after {
    right: -26px;
  }
}
.artworks-category-more__link::before {
  background-color: #999999;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 55px;
  z-index: 1;
}

@media screen and (max-width: 1279.98px) {
  .artworks-category-more__link::before {
    width: 40px;
  }
}
.artworks-category-more__link::after {
  background-color: #999999;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: -31px;
  top: 41%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 20px;
  z-index: 1;
}

@media screen and (max-width: 1279.98px) {
  .artworks-category-more__link::after {
    right: -21px;
    width: 15px;
  }
}
.artworks-category-name {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  word-break: break-all;
  word-wrap: break-word;
}

@media screen and (max-width: 1279.98px) {
  .artworks-category-name {
    font-size: 1.5rem;
  }
}
.artworks-category-fee {
  font-size: 2rem;
  line-height: 1.2;
  margin-top: 0.8em;
}

@media screen and (max-width: 1279.98px) {
  .artworks-category-fee {
    font-size: 1.5rem;
  }
}
.artworks-category-image {
  max-width: 500px;
}

@media screen and (max-width: 1279.98px) {
  .artworks-category-image {
    max-width: 295px;
  }
}
@media screen and (max-width: 1099.98px) {
  .artworks-category-image {
    margin: 0 auto;
  }
}
.artworks-category-image img {
  background: #fafafa;
  font-family: "object-fit: contain;";
  height: 500px;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 6px;
  width: 100%;
}

@media screen and (max-width: 1279.98px) {
  .artworks-category-image img {
    height: 295px;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-list {
    margin: 0 auto;
    /* max-width: 337px; */
  }
}
.artworks-list-section {
  /* margin-top: 2.4rem; */
  /* padding: 0 1em 4em 1em; */
}

@media screen and (max-width: 1099px), print {
  .artworks-list-section {
    padding: 2em;
    padding-top: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-list-section {
    padding: 1em;
    padding-top: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .artworks-list-section {
    padding: 4em 2em;
    padding-top: 0;
  }
}
.artworks-list-section .inner {
  max-width: 1000px;
}

.artworks-list-section.purchaser .artworks-list-header {
  margin-bottom: 1.5em;
}

.artworks-list-section.purchaser .artworks-list-subtitle {
  margin: 0.5em 0 0.5em 0;
}

.artworks-list-section.accent1 {
  background-color: #efefef;
  padding: 3em 1em;
}

@media screen and (min-width: 1100px), print {
  .artworks-list-section.accent1 {
    padding: 5em 2em;
  }
}
@media screen and (max-width: 1099px), print {
  .artworks-list-section.accent1 {
    padding: 4em 2em;
  }
}
@media screen and (max-width: 639.98px), print {
  .artworks-list-section.accent1 {
    padding: 3em 1.5em;
  }
}
.artworks-list-section.accent1 .artworks-list-label dt {
  background-color: #ffffff;
}

.artworks-list-section.accent1 .artworks-list-label dt::before {
  border-left: 10px solid #ffffff;
  right: -10px;
}

.artworks-list-section.accent1 .artworks-list-label dt::after {
  background-color: #efefef;
}

.artworks-list-section.accent2 {
  margin-bottom: 0;
}

#detail .artists-detail-profile._secondary,
#detail .artworks-concept-section,
#detail .artists-detail-section #fat-exhibitions {
  padding: 6.4rem 3.2rem;
}

@media screen and (max-width: 1099.98px) {
  #detail .artists-detail-section .artists-detail-side,
#detail .artists-detail-section .artists-detail-main,
#detail .artists-detail-profile._secondary,
#detail .artworks-concept-section,
#detail .artists-detail-section #fat-exhibitions {
    width: 100%;
    padding: 4rem 2.4rem;
  }
  #detail .artists-detail-container .artists-detail-main {
    max-width: inherit;
  }
}
@media screen and (max-width: 767.98px) {
  #detail .artists-detail-section .artists-detail-side,
#detail .artists-detail-section .artists-detail-main,
#detail .artists-detail-profile._secondary,
#detail .artworks-concept-section,
#detail .artists-detail-section #fat-exhibitions {
    padding: 3.2rem 0;
  }
  .artists-detail-section .section-secondary {
    /* margin-bottom: 4em; */
  }
}
#detail .artists-detail-profile._secondary .main-heading {
  max-width: 1000px;
  margin: 0 auto 2.4rem auto;
}

#detail .artists-detail-profile._secondary .artists-detail-profile__body {
  max-width: 1000px;
  margin: auto;
}

.artworks-list-header {
  margin: 0 auto 3em;
  max-width: 1000px;
}

@media screen and (max-width: 767.98px) {
  #detail .artists-detail-profile._secondary .main-heading {
    margin: 0 auto 1.6rem auto;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-list-header {
    margin: 0 auto 1.6rem;
  }
}
.artworks-list-header .main-heading {
  margin: 0;
}

.artworks-list-container {
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 0 -1em -3em 0;
}

@media screen and (max-width: 767.98px) {
  .artworks-list-container {
    margin: 0 -1em -2em 0;
  }
}
@media screen and (max-width: 359.98px) {
  .artworks-list-container {
    margin: 0 -0.5em -1.5em 0;
  }
}
.artworks-list-container::after {
  content: "";
  display: block;
  margin: 0 1em 4em 0;
  width: calc(28.33333% - 14px);
}

@media screen and (max-width: 767.98px) {
  .artworks-list-container::after {
    margin: 0 1em 2em 0;
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 359.98px) {
  .artworks-list-container::after {
    margin: 0 0.5em 1.5em 0;
    width: calc(50% - 8px);
  }
}
.artworks-list-item {
  margin: 0 1em 4em 0;
  width: calc(28.33333% - 14px);
}

@media screen and (max-width: 767.98px) {
  .artworks-list-item {
    margin: 0 1em 2em 0;
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 359.98px) {
  .artworks-list-item {
    margin: 0 0.5em 1.5em 0;
    width: calc(50% - 8px);
  }
}
.artworks-list-item__link {
  display: block;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.artworks-list-item__link:hover .artworks-list-image img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.artworks-list-image {
  margin: 0 auto 1.2em;
  max-width: 320px;
  overflow: hidden;
}

@media screen and (max-width: 767.98px) {
  .artworks-list-image {
    /* max-width: 160px; */
  }
}
.artworks-list-image img {
  background-color: #fafafa;
  font-family: "object-fit: contain;";
  height: 240px;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

@media screen and (max-width: 991.98px) {
  .artworks-list-image img {
    height: 220px;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-list-image img {
    height: 130px;
  }
}
@media screen and (max-width: 359.98px) {
  .artworks-list-image img {
    height: 120px;
  }
}
.artworks-list-info {
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #999999;
  border-top: 1px solid #999999;
  -webkit-box-align: center;
  display: none;
  -ms-flex-align: center;
  margin: 0.7em 0;
  padding: 0.5em 0 0.45em 0;
}

@media screen and (max-width: 767.98px) {
  .artworks-list-info {
    margin: 0.55em 0;
    padding: 0.48em 0 0.43em 0;
  }
}
.artworks-list-fee {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0.4em;
}

@media screen and (max-width: 1099.98px) {
  .artworks-list-fee {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-list-fee {
    font-size: 1.2rem;
  }
}
.artworks-list-view dt {
  padding-left: 1.5em;
  position: relative;
}

@media screen and (max-width: 767.98px) {
  .artworks-list-view dt {
    padding-left: 1.6em;
  }
}
@media screen and (max-width: 359.98px) {
  .artworks-list-view dt {
    padding-left: 1.3em;
  }
}
.artworks-list-view dt::before {
  background: url("../../assets/img/base/icon_view.png") no-repeat center/cover;
  content: "";
  display: block;
  height: 10px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 18px;
}

@media screen and (max-width: 1099.98px) {
  .artworks-list-view dt::before {
    height: 8px;
    width: 14px;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-list-view dt::before {
    height: 7px;
    width: 12px;
  }
}
@media screen and (max-width: 359.98px) {
  .artworks-list-view dt::before {
    height: 6px;
    width: 10px;
  }
}
.artworks-list-like dt {
  padding-left: 1.5em;
  position: relative;
}

@media screen and (max-width: 359.98px) {
  .artworks-list-like dt {
    padding-left: 1.2em;
  }
}
.artworks-list-like dt::before {
  background: url("../../assets/img/base/icon_like.png") no-repeat center/cover;
  content: "";
  display: block;
  height: 13px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 14px;
}

@media screen and (max-width: 1099.98px) {
  .artworks-list-like dt::before {
    height: 11px;
    width: 12px;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-list-like dt::before {
    height: 9px;
    top: 47%;
    width: 10px;
  }
}
@media screen and (max-width: 359.98px) {
  .artworks-list-like dt::before {
    height: 9px;
    width: 8px;
  }
}
.artworks-list-define {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
}

.artworks-list-define dt,
.artworks-list-define dd {
  color: #999999;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.25;
}

@media screen and (max-width: 1099.98px) {
  .artworks-list-define dt,
.artworks-list-define dd {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-list-define dt,
.artworks-list-define dd {
    font-size: 1rem;
  }
}
@media screen and (max-width: 359.98px) {
  .artworks-list-define dt,
.artworks-list-define dd {
    font-size: 0.9rem;
  }
}
.artworks-list-define dd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 0.35em;
  min-width: 0;
}

.artworks-list-define:first-child {
  margin-right: 1em;
}

@media screen and (max-width: 359.98px) {
  .artworks-list-define:first-child {
    margin-right: 0.5em;
  }
}
.artworks-list-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.4em;
  word-break: break-all;
  word-wrap: break-word;
}

@media screen and (max-width: 1099.98px) {
  .artworks-list-title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-list-title {
    font-size: 1.2rem;
  }
}
.artworks-list-subtitle {
  font-size: 1.4rem;
  line-height: 1.25;
  margin-bottom: 0.2em;
  word-break: break-all;
  word-wrap: break-word;
}

@media screen and (max-width: 1099.98px) {
  .artworks-list-subtitle {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-list-subtitle {
    font-size: 1.25rem;
  }
}
.artworks-list-label {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
}

.artworks-list-label dt,
.artworks-list-label dd {
  line-height: 1.2;
}

.artworks-list-label dt {
  background-color: #eeeeee;
  display: inline-block;
  display: none;
  font-size: 1.6rem;
  font-weight: 700;
  height: 24px;
  padding: 0.2em 0.65em 0.2em 0.5em;
  position: relative;
}

@media screen and (max-width: 1099.98px) {
  .artworks-list-label dt {
    font-size: 1.4rem;
    height: 20px;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-list-label dt {
    font-size: 1.2rem;
    height: 18px;
    padding: 0.21em 0.65em 0.15em 0.5em;
  }
}
.artworks-list-label dt::before {
  border-bottom: 12px solid transparent;
  border-left: 10px solid #eeeeee;
  border-top: 12px solid transparent;
  content: "";
  display: block;
  position: absolute;
  right: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 1099.98px) {
  .artworks-list-label dt::before {
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-list-label dt::before {
    border-bottom: 9px solid transparent;
    border-left: 8px solid #eeeeee;
    border-top: 9px solid transparent;
    right: -8px;
  }
}
.artworks-list-label dt::after {
  background-color: #ffffff;
  border-radius: 100%;
  content: "";
  display: block;
  height: 6px;
  position: absolute;
  right: -3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6px;
}

@media screen and (max-width: 767.98px) {
  .artworks-list-label dt::after {
    height: 4px;
    right: -2px;
    width: 4px;
  }
}
.artworks-list-label dd {
  -webkit-box-flex: 1;
  color: #999999;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.4rem;
  min-width: 0;
}

@media screen and (max-width: 1099.98px) {
  .artworks-list-label dd {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-list-label dd {
    font-size: 1.2rem;
  }
}
.artworks-category-section {
  padding-bottom: 0;
}

.artworks-category-section .input-wrap {
  -webkit-box-pack: end;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: 2.4rem;
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .artworks-category-section .input-wrap {
    width: 95%;
    margin: 1.6rem auto 0 auto;
  }
}
/* Artworks一覧ページのみに適用 */
.artworks-category-section + .artworks-list-section .inner {
  max-width: inherit;
}

.artworks-category-section + .artworks-list-section .artworks-list-container {
  margin: inherit;
}

.artworks-category-section + .artworks-list-section .artworks-list-item {
  -webkit-flex-basis: 30%;
  flex-basis: 30%;
  -ms-flex-preferred-size: 30%;
  margin: 0;
  margin-bottom: 6.4rem;
  width: inherit;
}

.artworks-category-section + .artworks-list-section .artworks-list-image {
  max-width: inherit;
}

@media screen and (max-width: 1099px), print {
  .artworks-category-section + .artworks-list-section {
    padding: 0 1em;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-category-section + .artworks-list-section {
    padding: 0 1em;
  }
  .artworks-category-section + .artworks-list-section .artworks-list {
    max-width: inherit;
  }
  .artworks-category-section + .artworks-list-section .artworks-list-item {
    -webkit-flex-basis: 47%;
    flex-basis: 47%;
    -ms-flex-preferred-size: 47%;
    margin: 0;
    margin-bottom: 4.8rem;
    width: inherit;
  }
  .artworks-category-section + .artworks-list-section .artworks-list-image {
    max-width: inherit;
  }
  .artworks-category-section + .artworks-list-section .artworks-list-image img {
    height: 220px;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-category-section + .artworks-list-section {
    padding: 0 1em;
  }
  .artworks-category-section + .artworks-list-section .inner {
    /* width: 100%;*/
  }
  .artworks-category-section + .artworks-list-section .artworks-list-item {
    margin-bottom: 3.2rem;
  }
  .artworks-category-section + .artworks-list-section .artworks-list-image {
    max-width: inherit;
  }
  .artworks-category-section + .artworks-list-section .artworks-list-image img {
    height: 130px;
  }
}
/* --------------------------------
  作品詳細
-------------------------------- */
.pageback-section {
  padding: 0 2em 7em 2em;
}

@media screen and (max-width: 1099.98px) {
  .pageback-section {
    padding: 0 2em 3em 2em;
  }
}
@media screen and (max-width: 639.98px) {
  .pageback-section {
    padding-left: 0;
  }
}
/* -------- 詳細ページ上部 -------- */
.artworks-detail-section {
  padding: 3em 1em 1em 1em;
  padding-top: 0;
}

@media screen and (min-width: 1100px), print {
  .artworks-detail-section {
    padding: 5em 2em 1em 2em;
    padding-top: 0;
  }
}
.artworks-detail-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1099.98px) {
  .artworks-detail-container {
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-align: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 1099.98px) {
  .artworks-detail-container {
    -webkit-flex-direction: inherit;
    -ms-flex-direction: inherit;
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
            flex-direction: inherit;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.artworks-detail-main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 4em;
  min-width: 0;
}

@media screen and (max-width: 1279.98px) {
  .artworks-detail-main {
    margin-left: 4rem;
    width: 352px;
    -webkit-flex-basis: 352px;
        -ms-flex-preferred-size: 352px;
            flex-basis: 352px;
  }
}
@media screen and (max-width: 1099.98px) {
  .artworks-detail-main {
    margin-left: 0;
    margin-top: 4em;
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-detail-main {
    margin-top: 3em;
    padding: 0;
    max-width: 335px;
    -webkit-animation-name: auto;
    animation-name: auto;
    max-width: inherit;
    width: 100%;
  }
}
@media screen and (max-width: 479.98px) {
  .artworks-detail-main {
    margin-top: 2em;
  }
}
/* ---- 作品画像部分 ---- */
.artworks-detail-side {
  display: block;
  max-width: 720px;
  position: relative;
  width: 100%;
  -webkit-flex-basis: calc(100% - 392px);
      -ms-flex-preferred-size: calc(100% - 392px);
          flex-basis: calc(100% - 392px);
}

@media screen and (max-width: 1279.98px) {
  .artworks-detail-side {
    /* max-width: 620px; */
  }
}
@media screen and (max-width: 1099.98px) {
  .artworks-detail-side {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    margin: auto;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-detail-side {
    max-width: 335px;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
/* -- 作品画像スライダー -- */
.artworks-detail-side .thumbnail-main {
  left: 0;
  margin-bottom: 0.5em;
  max-width: 720px;
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (max-width: 1279.98px) {
  .artworks-detail-side .thumbnail-main {
    /* max-width: 620px; */
    margin: auto;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-detail-side .thumbnail-main {
    /* max-width: 335px; */
  }
}
.artworks-detail-side .thumbnail-main img {
  background: #fafafa;
  font-family: "object-fit: contain;";
  height: 540px;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 6px;
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-side .thumbnail-main img {
    height: 250px;
  }
}
.artworks-detail-side .thumbnail-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: grid;
  -ms-flex-wrap: wrap;
  gap: 8px;
  grid-template-columns: repeat(5, 1fr);
  margin: 0 -0.5em -0.5em 0;
  max-width: 720px;
  padding-top: 548px;
  /* flex-wrap: wrap; */
  width: 100%;
}

@media screen and (max-width: 1279.98px) {
  .artworks-detail-side .thumbnail-side {
    /* max-width: 620px; */
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-detail-side .thumbnail-side {
    /* max-width: 335px; */
    padding-top: 256px;
  }
}
.artworks-detail-side .thumbnail-item {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-basis: 20%;
  flex-basis: 20%;
  -ms-flex-preferred-size: 20%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.artworks-detail-side .thumbnail-item:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-side .thumbnail-side {
    grid-gap: 5px;
  }
  .artworks-detail-side .thumbnail-item {
    /* max-width: 60px; */
  }
}
.artworks-detail-side .thumbnail-item img {
  background: #fafafa;
  font-family: "object-fit: contain;";
  height: 110px;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 5px;
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-side .thumbnail-item img {
    height: 55px;
  }
}
/* ----タグ---- */
.artworks-detail-tag {
  background-color: #eeeeee;
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8em;
  padding: 0.31em 0.7em 0.2em 0.7em;
  text-align: center;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-tag {
    font-size: 1.4rem;
    padding: 0.31em 1.6em 0.19em 1.6em;
  }
}
/* ----View、Like---- */
.artworks-detail-body .artworks-list-info {
  margin: 1.2em 0;
  padding: 1.2em 0;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-body .artworks-list-info {
    margin: 0.7em 0;
    padding: 0.7em 0 0.6em 0;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-detail-body .artworks-list-info .artworks-list-define dt,
.artworks-detail-body .artworks-list-info .artworks-list-define dd {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-detail-body .artworks-list-info .artworks-list-like dt::before {
    height: 10px;
    top: 39%;
    width: 11px;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-detail-body .artworks-list-info .artworks-list-view dt {
    padding-left: 1.8em;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-detail-body .artworks-list-info .artworks-list-view dt::before {
    height: 8px;
    width: 14px;
  }
}
/* ----カテゴリ---- */
.artworks-detail-header .collections-category-wrap {
  margin-bottom: 0.8em;
}
.artworks-detail-header .collections-category-wrap .label-box {
  font-size: 1.4rem;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-header .collections-category-wrap {
    margin-bottom: 0.6em;
  }
  .artworks-detail-header .collections-category-wrap .label-box {
    font-size: 1.2rem;
  }
}
/* ----作品名---- */
.artworks-detail-title {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.4em;
  word-break: break-all;
  word-wrap: break-word;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-title {
    font-size: 1.8rem;
  }
}
/* ----作品詳細情報---- */
.artworks-detail-define {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  margin-top: 0.7em;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-define {
    margin-top: 1em;
  }
}
@media screen and (max-width: 599px) {
  .artworks-detail-define {
    margin-top: 0.8em;
  }
}
.artworks-detail-define dt {
  display: inline-block;
  font-weight: 700;
  margin-right: 2em;
  width: 6em;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-define dt {
    margin-right: 1.5em;
  }
}
.artworks-detail-define dd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 500;
  min-width: 0;
  word-break: break-all;
  word-wrap: break-word;
}

.artworks-detail-define dt,
.artworks-detail-define dd {
  font-size: 1.5rem;
  line-height: 1.4;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-define dt,
.artworks-detail-define dd {
    font-size: 1.3rem;
  }
}
/* --ファイル形式-- */
.artworks-detail-files span {
  display: block;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 1.5rem;
  line-height: 1.2;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-files span {
    font-size: 1.3rem;
  }
}
.artworks-detail-files span:not(:last-child) {
  margin-bottom: 0.2em;
}

/* --ライセンス-- */
.artworks-detail-license_define {
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #000000;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.35em 0 0.31em 0;
}

.artworks-detail-license_define:first-child {
  border-top: 1px solid #000000;
}

.artworks-detail-license_define dt,
.artworks-detail-license_define dd {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 1.3rem;
  line-height: 1.2;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-license_define dt,
.artworks-detail-license_define dd {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .artworks-detail-define dt,
.artworks-detail-define dd,
.artworks-detail-files span,
.artworks-detail-license_define dt,
.artworks-detail-license_define dd {
    font-size: 1.2rem;
  }
}
.artworks-detail-license_define dt {
  width: 9em;
}

.artworks-detail-license_define dd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  text-align: right;
}

/* ---- ボタン ---- */
.artworks-detail-btn__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* justify-content: center; */
  margin: 0.8em 0 1.8em 0;
}

.artworks-detail-btn:first-child {
  margin-left: 0;
}

@media screen and (max-width: 479.98px) {
  .artworks-detail-btn__area {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    /* -webkit-justify-content: center; */
    /* justify-content: center; */
  }
}
.artworks-detail-btn {
  margin: 0 0.5em;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-btn {
    max-width: 100px;
    width: 100%;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-detail-btn:first-child {
    margin-right: 0.5em;
  }
}
@media screen and (max-width: 359.98px) {
  .artworks-detail-btn:first-child {
    margin-right: 0.35em;
  }
}
.artworks-detail-btn__share {
  border: 1px solid #999999;
  display: inline-block;
  height: 30px;
  line-height: 1.2;
  padding: 0.3em 1.4em 0.1em 1.4em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 110px;
  background: #fff;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-btn__share {
    max-width: 110px;
    padding: 0.24em 1em 0.1em 1em;
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 359.98px) {
  .artworks-detail-btn__share {
    padding: 0.24em 0.35em 0.1em 0.35em;
  }
}
.artworks-detail-btn__share:hover {
  background-color: #000000;
}

.artworks-detail-btn__share:hover span {
  color: #ffffff;
}

.artworks-detail-btn__share:hover span::before {
  background: url("../../assets/img/base/icon_share_wht.png") no-repeat center/cover;
}

.artworks-detail-btn__share span {
  color: #999999;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  padding-left: 1.45em;
  position: relative;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-btn__share span {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 359.98px) {
  .artworks-detail-btn__share span {
    font-size: 1.3rem;
  }
}
.artworks-detail-btn__share span::before {
  background: url("../../assets/img/base/icon_share.png") no-repeat center/cover;
  content: "";
  height: 14px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 15px;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-btn__share span::before {
    height: 12px;
    width: 13px;
  }
}
/* --Likeボタン-- */
.artworks-detail-btn__like {
  border: 1px solid #999999;
  display: inline-block;
  height: 30px;
  line-height: 1.2;
  padding: 0.3em 1.2em 0.1em 1.2em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 110px;
  background: #fff;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-btn__like {
    max-width: 110px;
    padding: 0.24em 1em 0.1em 1em;
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 359.98px) {
  .artworks-detail-btn__like {
    padding: 0.24em 0.35em 0.1em 0.35em;
  }
}
.artworks-detail-btn__like:hover {
  background-color: #000000;
}

.artworks-detail-btn__like:hover span {
  color: #ffffff;
}

.artworks-detail-btn__like:hover span::before {
  background: url("../../assets/img/base/icon_like_wht.png") no-repeat center/cover;
}

.artworks-detail-btn__like span {
  color: #999999;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  padding-left: 1.45em;
  position: relative;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-btn__like span {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 359.98px) {
  .artworks-detail-btn__like span {
    font-size: 1.3rem;
  }
}
.artworks-detail-btn__like span::before {
  background: url("../../assets/img/base/icon_like.png") no-repeat center/cover;
  content: "";
  height: 13px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 14px;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-btn__like span::before {
    height: 11px;
    width: 12px;
  }
}
/* Like済み*/
.like-btn_active {
  background-color: #000000;
}

.like-btn_active span {
  color: #ffffff;
}

.like-btn_active span::before {
  background: url("../../assets/img/base/icon_like_wht.png") no-repeat center/cover;
}

/* --カートボタン-- */
.artworks-detail-more {
  margin-top: 1.5em;
  /* text-align: center; */
}

@media screen and (max-width: 1099.98px) {
  .artworks-detail-more {
    margin-top: 1.8em;
    text-align: center;
  }
}
.artworks-detail-more .add-cart-link {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  font-weight: bold;
  display: inline-block;
  font-size: 2rem;
  height: 80px;
  line-height: 1.2;
  max-width: 352px;
  padding: 1.36em 0.7em;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.artworks-detail-more .add-cart-link-sold-out {
  background-color: #ffffff;
  border: 1px solid #999999;
  color: #999999;
  display: inline-block;
  font-size: 2rem;
  height: 80px;
  line-height: 1.2;
  max-width: 352px;
  padding: 1.36em 0.7em;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-more .add-cart-link {
    font-size: 1.6rem;
    height: 60px;
    padding: 1.25em 0.7em;
  }
  .artworks-detail-more .add-cart-link-sold-out {
    font-size: 1.6rem;
    height: 60px;
    padding: 1.25em 0.7em;
  }
}
.artworks-detail-more .add-cart-link:hover {
  background-color: #ffffff;
  border: 1px solid #999999;
  color: #999999;
}

.artworks-detail-more .add-cart-link:hover span::before {
  background: url("../../assets/img/base/icon_cart_gray.png") no-repeat center/cover;
}

.artworks-detail-more .add-cart-link span {
  padding-left: 1.6em;
  position: relative;
}

.artworks-detail-more .add-cart-link span::before {
  background: url("../../assets/img/base/icon_cart.png") no-repeat center/cover;
  content: "";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 24px;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-more .add-cart-link span::before {
    height: 16px;
    width: 20px;
  }
  .artworks-detail-more .add-cart-link-sold-out span::before {
    height: 16px;
    width: 20px;
  }
}
/* --ダウンロードボタン-- */
.download-more {
  margin-bottom: 1em;
  margin-top: 1em;
  text-align: center;
}

@media screen and (max-width: 767.98px) {
  .download-more {
    margin-top: 1em;
  }
}
@media screen and (max-width: 479.98px) {
  .download-more {
    margin-left: 1em;
    margin-right: 1em;
    margin-top: 1em;
  }
}
.download-more-btn {
  /* height: 80px; */
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  display: inline-block;
  font-size: 2rem;
  line-height: 1.2;
  max-width: 352px;
  padding: 1.36em 0.7em;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .download-more-btn {
    font-size: 1.6rem;
    height: 60px;
    margin-bottom: 3.5em;
    max-width: 352px;
    padding: 1.25em 0.7em;
  }
}
@media screen and (max-width: 479.98px) {
  .download-more-btn:active {
    background-color: #ffffff;
    border: 1px solid #999999;
    color: #999999;
  }
  .download-more-btn:active span::before {
    background: url("../../assets/img/base/icon_download_gray.png") no-repeat center/cover;
  }
}
@media screen and (min-width: 480px), print {
  .download-more-btn:hover {
    background-color: #ffffff;
    border: 1px solid #999999;
    color: #999999;
  }
  .download-more-btn:hover span::before {
    background: url("../../assets/img/base/icon_download_gray.png") no-repeat center/cover;
  }
}
.download-more-btn span {
  padding-left: 1.6em;
  position: relative;
}

.download-more-btn span::before {
  background: url("../../assets/img/base/icon_download.png") no-repeat center/cover;
  content: "";
  display: block;
  height: 18px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 20px;
}

@media screen and (max-width: 767.98px) {
  .download-more-btn span::before {
    height: 16px;
    width: 18px;
  }
}
/* --ARで飾るボタン-- */
.artworks-decolation-more {
  margin: 1em 0 0 0;
  text-align: center;
}

@media screen and (max-width: 1099.98px) {
  .artworks-decolation-more {
    margin: 2.4rem 0 0 0;
  }
}
@media screen and (max-width: 639.98px) {
  .artworks-decolation-more {
    margin: 2.4rem 0 0 0;
  }
}
.artworks-decolation-btn {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  display: inline-block;
  font-size: 2rem;
  height: 80px;
  line-height: 1.2;
  max-width: 352px;
  padding: 1.36em 0.7em;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .artworks-decolation-btn {
    font-size: 1.6rem;
    height: 60px;
    max-width: 352px;
    padding: 1.25em 0.7em;
  }
}
@media screen and (max-width: 479.98px) {
  .artworks-decolation-btn:active {
    background-color: #ffffff;
    border: 1px solid #999999;
    color: #999999;
  }
  .artworks-decolation-btn:active span::before {
    background: url("../../assets/img/base/icon_ar_gray.svg") no-repeat center/cover;
  }
}
@media screen and (min-width: 480px), print {
  .artworks-decolation-btn:hover {
    background-color: #ffffff;
    border: 1px solid #999999;
    color: #999999;
  }
  .artworks-decolation-btn:hover span::before {
    background: url("../../assets/img/base/icon_ar_gray.svg") no-repeat center/cover;
  }
}
.artworks-decolation-btn span {
  padding-left: 1.4em;
  position: relative;
}

.artworks-decolation-btn span::before {
  background: url("../../assets/img/base/icon_ar.svg") no-repeat center/cover;
  content: "";
  display: block;
  height: 19px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 17px;
}

@media screen and (max-width: 767.98px) {
  .artworks-decolation-btn span::before {
    height: 16px;
    width: 14px;
  }
}
/*----- 価格、カートボタン等 -----*/
.artworks-detail-foot {
  margin-top: 0.7em;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-foot {
    margin-top: 0.7em;
  }
}
/* 価格 */
.artworks-detail-fee {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
}

.artworks-detail-fee dt,
.artworks-detail-fee dd {
  line-height: 1;
}

.artworks-detail-fee dt {
  font-size: 2rem;
  font-weight: 700;
  margin-right: 1em;
  margin-top: 0.7em;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-fee dt {
    font-size: 1.4rem;
  }
}
.artworks-detail-fee dd {
  font-size: 5rem;
  font-weight: 700;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-fee dd {
    font-size: 2.5rem;
  }
}
.artworks-detail-fee dd span {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  margin-right: 0.35em;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-fee dd span {
    font-size: 1.2rem;
  }
}
/* ----- 詳細ページ中部 ----- */
/* ---- 共通設定 ---- */
#model .artworks-detail-section,
#model .artworks-concept-section,
#model .artworks-profile-section,
#model .artworks-list-section.accent2,
#model .fat-artists-section {
  padding: 6.4rem 3.2rem;
}

#model .artworks-detail-section {
  padding-top: 0;
}

.artworks-list-section.accent2 {
  margin-top: 0;
}

.artworks-concept-section .inner,
.artworks-profile-section .inner,
.artworks-list-section .inner {
  max-width: 1000px;
}

@media screen and (max-width: 767.98px) {
  #model .artworks-detail-section,
#model .artworks-concept-section,
#model .artworks-profile-section,
#model .artworks-list-section.accent2,
#model .fat-artists-section {
    padding-top: inherit;
    padding: 3.2rem 1.6rem;
    /* background-color: #ccc; */
  }
  #model .artworks-detail-section {
    padding-top: 0;
  }
  #model .artworks-list-section.accent2 {
    margin-top: 0;
  }
  .artworks-detail-section .inner,
.artworks-guaranteecard-section .inner,
.artworks-list-section.accent1 .inner {
    width: 100%;
  }
  .artworks-concept-section .artworks-concept-header .main-heading,
.artists-detail-profile._secondary .main-heading,
.artworks-concept-section .inner,
.artworks-profile-section .inner,
.artworks-list-section.accent2 .inner {
    display: block;
    margin: auto;
    width: 100%;
  }
}
/* ---- ▲共通設定ここまで ---- */
/* Concept */
.artworks-concept-header {
  margin: 0 auto 2.4rem auto;
  max-width: 1000px;
}

@media screen and (max-width: 767.98px) {
  .artworks-concept-header {
    margin: 0 auto 1.6rem;
  }
}
.artworks-concept-header .main-heading {
  margin: 0;
}

.artworks-concept-text {
  font-size: 1.6rem;
  line-height: 2.25;
  max-height: 175px;
  overflow: hidden;
  position: relative;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
  word-break: break-all;
}

@media screen and (max-width: 767.98px) {
  .artworks-concept-text {
    font-size: 1.2rem;
    line-height: 1.9;
  }
}
.artworks-concept-text.active {
  max-height: none;
}

.artworks-concept-text.active::before {
  background: transparent;
}

/* Profile */
.artworks-profile-header {
  margin: 0 auto 3em;
  max-width: 1000px;
}

@media screen and (max-width: 767.98px) {
  .artworks-profile-header {
    margin: 0 auto 1.6rem;
  }
}
.artworks-profile-header .main-heading {
  margin: 0;
}

.artworks-profile-body {
  max-height: 725px;
  overflow: hidden;
  position: relative;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}

@media screen and (max-width: 767.98px) {
  .artworks-profile-body {
    max-height: 550px;
  }
}
.artworks-profile-body.active {
  max-height: none;
}

.artworks-profile-body.active::before {
  background: transparent;
}

.artworks-profile-body .artists-detail-name {
  margin-bottom: 1em;
}

.artworks-profile-main {
  float: left;
  margin: 0.4em 5em 0.5em 0;
  max-width: 300px;
  position: relative;
}

@media screen and (max-width: 1099.98px) {
  .artworks-profile-main {
    float: none;
    margin: 0 auto 1.3em;
    max-width: 605px;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-profile-main {
    max-width: 335px;
  }
}
.artworks-profile-text {
  font-size: 1.6rem;
  line-height: 2.25;
  overflow: auto;
}

@media screen and (max-width: 1099.98px) {
  .artworks-profile-text {
    line-height: 1.9;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-profile-text {
    font-size: 1.2rem;
  }
}
/* ---- 証明書 ---- */
.artworks-guaranteecard {
  background-color: #ffffff;
  border: 1px solid #999999;
  margin: 0 auto;
  max-width: 800px;
  padding: 0.7em;
}

@media screen and (max-width: 767.98px) {
  .artworks-guaranteecard {
    max-width: 380px;
    padding: 0.5em;
  }
}
.artworks-guaranteecard-section {
  padding: 2em 2em 1em 2em;
}

@media screen and (max-width: 767.98px) {
  .artworks-guaranteecard-section {
    padding: 1em;
  }
}
@media screen and (min-width: 1100px), print {
  .artworks-guaranteecard-section {
    padding: 2em 2em 1em 2em;
  }
}
.artworks-guaranteecard-header {
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #999999;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 1.6em;
  padding-bottom: 1.2em;
}

@media screen and (max-width: 767.98px) {
  .artworks-guaranteecard-header {
    margin-bottom: 1em;
    padding: 0 0 1em 0;
  }
}
@media screen and (max-width: 359.98px) {
  .artworks-guaranteecard-header {
    padding: 0 0 0.5em 0;
  }
}
.artworks-guaranteecard-heading {
  display: inline-block;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (max-width: 767.98px) {
  .artworks-guaranteecard-heading {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 359.98px) {
  .artworks-guaranteecard-heading {
    font-size: 1.6rem;
  }
}
.artworks-guaranteecard-name {
  color: #ac9d61;
  display: block;
  font-family: "Roboto", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  word-break: break-all;
  word-wrap: break-word;
}

@media screen and (max-width: 767.98px) {
  .artworks-guaranteecard-name {
    font-size: 1.8rem;
  }
}
.artworks-guaranteecard-subname {
  color: #000000;
  font-family: "Roboto", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1.35em;
  text-align: center;
  word-break: break-all;
  word-wrap: break-word;
}

@media screen and (max-width: 767.98px) {
  .artworks-guaranteecard-subname {
    font-size: 1.2rem;
  }
}
.artworks-guaranteecard-block {
  margin: 0 auto 2em;
  max-width: 530px;
}

@media screen and (max-width: 767.98px) {
  .artworks-guaranteecard-block {
    margin: 0 auto 1em;
    max-width: 290px;
  }
}
@media screen and (max-width: 359.98px) {
  .artworks-guaranteecard-block {
    margin: 0 auto 0.85em;
  }
}
.artworks-guaranteecard-define:not(:last-child) {
  margin-bottom: 1.3em;
}

.artworks-guaranteecard-define.accent1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.artworks-guaranteecard-define.accent1 dt {
  margin-right: 1.3em;
  width: 9em;
}

@media screen and (max-width: 767.98px) {
  .artworks-guaranteecard-define.accent1 dt {
    width: 6em;
  }
}
@media screen and (max-width: 767.98px) {
  .artworks-guaranteecard-define.accent1 dt .pc {
    display: none;
  }
}
.artworks-guaranteecard-define.accent1 dd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.artworks-guaranteecard-define dt {
  color: #cccccc;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 767.98px) {
  .artworks-guaranteecard-define dt {
    font-size: 1.2rem;
  }
}
.artworks-guaranteecard-define dd {
  font-size: 1.6rem;
  line-height: 1.5;
  word-break: break-all;
  word-wrap: break-word;
}

@media screen and (max-width: 767.98px) {
  .artworks-guaranteecard-define dd {
    font-size: 1.2rem;
  }
}
.artworks-guaranteecard-jp {
  color: #cccccc;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-left: 1em;
}

@media screen and (max-width: 767.98px) {
  .artworks-guaranteecard-jp {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 359.98px) {
  .artworks-guaranteecard-jp {
    font-size: 1.1rem;
  }
}
.artworks-guaranteecard-container {
  position: relative;
}

.artworks-guaranteecard-container::before {
  background: url("../../assets/img/base/border-waku_icon.png") no-repeat center/cover;
  content: "";
  display: block;
  height: 50px;
  left: 10px;
  position: absolute;
  top: 10px;
  width: 50px;
}

@media screen and (max-width: 767.98px) {
  .artworks-guaranteecard-container::before {
    height: 25px;
    left: 5px;
    top: 5px;
    width: 25px;
  }
}
.artworks-guaranteecard-container::after {
  background: url("../../assets/img/base/border-waku_icon.png") no-repeat center/cover;
  content: "";
  display: block;
  height: 50px;
  position: absolute;
  right: 10px;
  top: 10px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 50px;
}

@media screen and (max-width: 767.98px) {
  .artworks-guaranteecard-container::after {
    height: 25px;
    right: 5px;
    top: 5px;
    width: 25px;
  }
}
.artworks-guaranteecard-container__secondary {
  border: 2px solid #ac9d61;
  padding: 3em;
  position: relative;
}

@media screen and (max-width: 767.98px) {
  .artworks-guaranteecard-container__secondary {
    padding: 2em 0.9em;
  }
}
@media screen and (max-width: 359.98px) {
  .artworks-guaranteecard-container__secondary {
    padding: 1.5em 0.9em;
  }
}
.artworks-guaranteecard-container__secondary::before {
  background: url("../../assets/img/base/border-waku_icon.png") no-repeat center/cover;
  bottom: 10px;
  content: "";
  display: block;
  height: 50px;
  left: 10px;
  position: absolute;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  width: 50px;
}

@media screen and (max-width: 767.98px) {
  .artworks-guaranteecard-container__secondary::before {
    bottom: 5px;
    height: 25px;
    left: 5px;
    width: 25px;
  }
}
.artworks-guaranteecard-container__secondary::after {
  background: url("../../assets/img/base/border-waku_icon.png") no-repeat center/cover;
  bottom: 10px;
  content: "";
  display: block;
  height: 50px;
  position: absolute;
  right: 10px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  width: 50px;
}

@media screen and (max-width: 767.98px) {
  .artworks-guaranteecard-container__secondary::after {
    bottom: 5px;
    height: 25px;
    right: 5px;
    width: 25px;
  }
}
.artworks-guaranteecard-wrap {
  border-top: 2px solid #cccccc;
  padding-top: 2em;
}

@media screen and (max-width: 767.98px) {
  .artworks-guaranteecard-wrap {
    border-top: 1px solid #cccccc;
    padding: 1.5em 1em 0 1em;
  }
}
@media screen and (max-width: 359.98px) {
  .artworks-guaranteecard-wrap {
    padding: 1.5em 0.3em 0 0.3em;
  }
}
.hide::before {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, rgba(255, 255, 255, 0)), to(white));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 65%, white 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 65%, white 100%);
  bottom: 0;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
}

/* ---- モーダル ---- */
.artworks-detail-modal_btn {
  /* max-width: 207px; */
  line-height: 1.2;
  margin-top: 0.4em;
  text-align: right;
}

.artworks-detail-modal_btn span {
  cursor: pointer;
  display: inline-block;
  font-size: 1.4rem;
  text-decoration: underline;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-modal_btn span {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .artworks-detail-modal_btn span {
    font-size: 1.2rem;
  }
}
.artworks-detail-modal_btn span:hover {
  color: #999999;
  text-decoration: none;
}

.artworks-detail-modal_body {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  visibility: hidden;
  width: 100%;
  z-index: 1;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.artworks-detail-modal_body.active {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 991.98px) {
  .artworks-detail-modal_body {
    padding: 0 1em;
  }
}
.artworks-detail-modal_header {
  margin-bottom: 1.6em;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-modal_header {
    margin-bottom: 1.1em;
  }
}
.artworks-detail-modal_heading {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-modal_heading {
    font-size: 2.4rem;
  }
}
.artworks-detail-modal_define {
  border-bottom: 1px solid #999999;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.artworks-detail-modal_define.accent {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.artworks-detail-modal_define.accent dt {
  margin-bottom: 0.5em;
  padding-bottom: 0;
}

.artworks-detail-modal_define.accent dd {
  color: #999999;
  font-weight: 500;
  padding-top: 0;
}

.artworks-detail-modal_define:first-child {
  border-top: 1px solid #999999;
}

.artworks-detail-modal_define dt,
.artworks-detail-modal_define dd {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.9em 0 0.8em 0;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-modal_define dt,
.artworks-detail-modal_define dd {
    font-size: 1.6rem;
  }
}
.artworks-detail-modal_define dd .ok {
  padding-left: 1.2em;
}

.artworks-detail-modal_define dd .ok::before {
  border-left: 2px solid #000000;
  border-top: 2px solid #000000;
  content: "";
  display: block;
  height: 12px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-70%) rotate(-135deg);
  transform: translateY(-70%) rotate(-135deg);
  width: 7px;
}

.artworks-detail-modal_define dd .ng {
  color: #999999;
  font-size: 1.8rem;
  padding-left: 1.2em;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-modal_define dd .ng {
    font-size: 1.6rem;
  }
}
.artworks-detail-modal_define dd .ng::before {
  content: "×";
  display: block;
  font-size: 2.4rem;
  left: 0;
  line-height: 1.2;
  position: absolute;
  top: -4px;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-modal_define dd .ng::before {
    font-size: 2.1rem;
  }
}
.artworks-detail-modal_define dd .no {
  color: #999999;
  font-size: 1.8rem;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-modal_define dd .no {
    font-size: 1.6rem;
  }
}
.artworks-detail-modal_define dd span {
  display: inline-block;
  font-weight: 600;
  position: relative;
}

.artworks-detail-modal_content {
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
  margin: auto;
  max-width: 750px;
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  padding: 3em 3em 3.5em 3em;
  position: relative;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-modal_content {
    padding: 1.5em 1.5em 2em 1.5em;
  }
}
@media screen and (max-width: 359.98px) {
  .artworks-detail-modal_content {
    padding: 1em 1em 1.5em 1em;
  }
}
.artworks-detail-modal .modalClose {
  -webkit-align-items: center;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #999999;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  color: #999999;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  font-size: 3rem;
  font-weight: 700;
  height: 28px;
  -webkit-justify-content: center;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 10px;
  top: 10px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 28px;
}

.artworks-detail-modal .modalClose:hover {
  background-color: #999999;
  color: #ffffff;
}

.artworks-detail-define.accent {
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
}

/* ---- About Original Artwork ---- */
.artworks-detail-original {
  border: 1px solid #999999;
  margin-top: 2em;
  padding: 1.2em;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-original {
    margin-top: 1em;
    padding: 0.7em;
  }
}
.artworks-detail-original .artworks-detail-define dt {
  width: 9.5em;
}

/* ▲作品詳細ここまで */
/* --------------------------------

  id01　Purchaser MYPAGE

-------------------------------- */
.purchaser-name-section {
  padding: 3em 1em 2em 1em;
  /* box-sizing: border-box; */
}

@media screen and (min-width: 1100px), print {
  .purchaser-name-section {
    padding: 6em 2em 2.5em 2em;
  }
}
.purchaser-name-section.section-secondary {
  margin-bottom: 0;
}

.purchaser-name-container {
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #cccccc;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  margin: 0 auto;
  max-width: 1000px;
  padding: 0 1em 2em 1em;
}

@media screen and (max-width: 767.98px) {
  .purchaser-name-container {
    padding: 0 1em 1.5em 1em;
  }
}
@media screen and (max-width: 639.98px) {
  .purchaser-name-section .inner {
    width: 100%;
  }
  .purchaser-name-container {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    /* align-items: flex-start; */
    display: block;
    /* -webkit-box-align: start; */
    -ms-flex-align: start;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: -2rem;
    padding: 0;
    padding-bottom: 2.4rem;
    text-align: center;
  }
}
.purchaser-name-text {
  -webkit-box-flex: 1;
  color: #000000;
  display: block;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: "Roboto", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  min-width: 0;
  word-break: break-all;
  word-wrap: break-word;
}

@media screen and (max-width: 767.98px) {
  .purchaser-name-text {
    font-size: 2rem;
  }
}
.purchaser-name-btn {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-left: 1em;
  max-width: 160px;
  padding: 0.6em 0.5em;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .purchaser-name-btn {
    font-size: 1.4rem;
    max-width: 150px;
  }
}
@media screen and (max-width: 639.98px) {
  .purchaser-name-btn {
    margin-left: 0;
    margin-top: 1.5em;
  }
}
.purchaser-name-btn:hover {
  background-color: #ffffff;
  border: 1px solid #999999;
  color: #999999;
}

/* --------------------------------

support.css

-------------------------------- */
html {
  overflow-y: scroll;
}

/* 追加部分 */
.support-item-section {
  padding: 1em 1em 2em 1em;
}

@media screen and (min-width: 1100px), print {
  .support-item-section {
    padding: 2em 2em 3em 2em;
  }
}
.support-item-section .inner {
  max-width: 1000px;
}

.support-item-list li {
  border-bottom: 2px solid #efefef;
  list-style: none;
  padding: 1.8em 0.1em;
}

@media screen and (max-width: 767.98px) {
  .support-item-list li {
    padding: 1.5em 0.1em;
  }
}
.support-item-list li:first-child {
  border-top: 2px solid #efefef;
}

.support-item-wrap {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
}

.support-item-image {
  display: block;
  height: 45px;
  margin-right: 1em;
  width: 45px;
}

@media screen and (max-width: 767.98px) {
  .support-item-image {
    height: 40px;
    width: 40px;
  }
}
.support-item-more {
  margin-top: 2.5em;
  text-align: center;
}

@media screen and (max-width: 767.98px) {
  .support-item-more {
    margin-top: 2em;
  }
}
.support-item-more__btn {
  background-color: #ffffff;
  border: 1px solid #999999;
  color: #999999;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 240px;
  padding: 1.25em 1em 1.17em 1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .support-item-more__btn {
    font-size: 1.8rem;
    padding: 1.13em 1em 0.95em 1em;
  }
}
.support-item-more__btn:hover {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
}

.support-item-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 1.6rem;
  line-height: 1.4;
  min-width: 0;
}

@media screen and (max-width: 767.98px) {
  .support-item-text {
    font-size: 1.4rem;
  }
}
.support-item-text .support-name {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media screen and (max-width: 767.98px) {
  .support-item-text .support-name {
    font-size: 1.6rem;
  }
}
.support-item-text .support-color {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media screen and (max-width: 767.98px) {
  .support-item-text .support-color {
    font-size: 1.6rem;
  }
}
/* --------------------------------

Cart

-------------------------------- */
@media (max-width: 640px) {
  #cart .underlayer__title {
    margin-bottom: 1rem !important;
  }
  #cart .shopping-cart__list {
    width: 100%;
  }
  #cart .shopping-cart__list td {
    padding: 20px 5px;
  }
  #cart .shopping-cart__list .thumbnail {
    padding-right: 5px;
  }
  #cart .shopping-cart__list .assets-name {
    font-size: 1.4rem;
  }
  #cart .shopping-cart__list .assets-name a {
    display: block;
    margin-bottom: 5px;
  }
  #cart .shopping-cart__list .user-name {
    font-size: 1.2rem;
  }
  #cart .shopping-cart__list .price {
    font-size: 1.4rem;
    /* line-height: 1.8; */
  }
  #cart .shopping-cart__list--wrap .shopping-cart__list--text {
    display: none;
  }
}
/* --------------------------------

フォローリコメンドモーダル（follow）

-------------------------------- */
.spb {
  display: none;
}

@media screen and (max-width: 767.98px) {
  .pcb {
    display: none;
  }
  .spb {
    display: block;
  }
}
/*----- modal -----*/
.follow__wrap *,
.follow__wrap ::after,
.follow__wrap ::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.follow__wrap.modal {
  background: rgba(0, 0, 0, 0.7);
  display: none;
  height: 100%;
  left: 0;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1060;
  z-index: 90000;
}

.follow__wrap .modal-dialog {
  margin: 0.5rem;
  pointer-events: none;
  position: relative;
  width: auto;
}

.follow__wrap .modal-dialog-scrollable {
  height: calc(100% - 3.5rem);
  margin: 1.75rem auto;
}

.follow__wrap .modal-dialog-centered {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  height: calc(100% - 3.5rem);
}

.follow__wrap .modal-content {
  background-clip: padding-box;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: auto;
  max-width: 1280px;
  outline: 0;
  pointer-events: auto;
  position: relative;
  width: 95%;
}

.follow__wrap .modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.follow__wrap .modal-header {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-negative: 0;
  -ms-flex-pack: justify;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.follow__wrap .modal-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
}

.follow__wrap .modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.follow__wrap .modal-footer {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: end;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-negative: 0;
  -ms-flex-pack: end;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

/*----- contents -----*/
.follow__wrap input {
  display: none;
}

.follow__wrap .modal-body-list input[type=checkbox],
.follow__wrap .modal-body-list input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  margin: 0;
  outline: none;
  padding: 0;
}

.follow__wrap .follow__content {
  -webkit-align-self: center;
  align-self: center;
  background: #ffffff;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #000000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-item-align: center;
  line-height: 1;
  margin: 0 auto;
  overflow: auto;
  padding: 4rem;
  padding-bottom: 3rem;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}

.follow__wrap .modal-header {
  margin-bottom: 3rem;
}

.follow__wrap .modal-header .title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.6em;
}

.follow__wrap .modal-header p {
  font-weight: 700;
  line-height: 1.4;
}

.follow__wrap .modal-header .label-step {
  color: #999999;
  font-weight: 700;
  margin-right: 1em;
}

.follow__wrap .modal-header .btn-wrap {
  display: block;
}

.follow__wrap .modal-header .btn-wrap .tx-link {
  color: #999999;
  display: block;
  font-weight: 700;
  margin: 0 auto;
  margin-top: 1em;
  text-align: center;
}

.follow__wrap .modal-header .btn-wrap .tx-link:hover {
  color: #000000;
}

.follow__wrap .modal_body {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
}

.follow__wrap .modal-body-list-wrap {
  /* overflow-y: scroll;
  overflow-y: auto;
  max-height: 67vh;*/
}

.follow__wrap .modal-body-list-wrap label span {
  display: block;
}

.follow__wrap .modal-body-list-wrap label input[type=checkbox] {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}

.follow__wrap .modal-body-list {
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-box-align: stretch;
  display: grid;
  -ms-flex-align: stretch;
  gap: 2% 3%;
  grid-template-columns: repeat(auto-fit, 31.3%);
  margin: 0 auto;
}

.follow__wrap .modal-body-list.follow-category-list {
  gap: 3% 3%;
  margin-bottom: 1rem;
}

.follow__wrap .modal-body-list::after {
  /*display: block;
  content: '';
  clear: both;*/
}

.follow__wrap .list_item {
  position: relative;
}

.follow__wrap .list_item .check-thumb-wrap {
  bottom: 0;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: relative;
  right: 0;
  top: 0;
  width: 100%;
}

.follow__wrap .list_item .check-thumb-wrap:before {
  content: "";
  display: block;
  padding-top: 53%;
}

.follow__wrap .list_item .check-thumb-wrap .check-thumb-wrap-image {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.follow__wrap .list_item .check-thumb-wrap .check-thumb-wrap-image img {
  font-family: "object-fit: cover;";
  height: 100%;
  max-height: 387px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.follow__wrap .list_item .check-title {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1em;
  text-align: center;
}

.follow__wrap .list_item label {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  display: block;
  position: relative;
  word-break: break-all;
}

.follow__wrap .list_item label input[type=checkbox] + span,
.follow__wrap .list_item label input[type=radio] + span {
  position: relative;
}

.follow__wrap .follow-category-list label input[type=checkbox] + span::before,
.follow__wrap .follow-category-list label input[type=checkbox] + span::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  content: "";
  display: inline-block;
  left: inherit;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.follow__wrap .follow-category-list label input[type=checkbox] + span::before {
  background-color: transparent;
  border-radius: 100px;
  height: 46px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 46px;
  z-index: 0;
}

.follow__wrap .follow-category-list label input[type=checkbox] + span::after {
  height: 21px;
  margin: 5px 8px;
  width: 14px;
  z-index: 1;
}

.follow__wrap .follow-category-list label input[type=checkbox]:checked + span::before,
.follow__wrap .follow-category-list label input[type=checkbox]:checked + span::after {
  left: inherit;
  position: absolute;
  z-index: 30;
}

.follow__wrap .follow-category-list label input[type=checkbox]:checked + span::before {
  background-color: #000000;
  right: 1rem;
  top: 1rem;
}

.follow__wrap .follow-category-list label input[type=checkbox]:checked + span::after {
  border: 2px solid #ffffff;
  border-width: 0 2px 2px 0;
  right: 1.7rem;
  top: 1.6rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.follow__wrap .list_item .check-overlay {
  background: rgba(0, 0, 0, 0.2);
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  z-index: 10;
}

.follow__wrap .list_item label input[type=checkbox]:checked + span .check-overlay {
  opacity: 1;
}

.follow__wrap .follow-artist-list .artist-container {
  border: 1px solid #000000;
  height: 100%;
}

.follow__wrap .follow-artist-list .artist-container .artist-cover {
  background-color: #fafafa;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: relative;
  right: 0;
  top: 0;
  width: 100%;
}

.follow__wrap .follow-artist-list .artist-container .artist-cover:before {
  content: "";
  display: block;
  padding-top: 53%;
}

.follow__wrap .follow-artist-list .artist-container .artist-cover .artist-cover-image {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.follow__wrap .follow-artist-list .artist-container .artist-cover .artist-cover-image img {
  font-family: "object-fit: cover;";
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.follow__wrap .follow-artist-list .artist-container .artist-main {
  padding: 1.5rem 1.3rem;
}

.follow__wrap .follow-artist-list .artist-container .artist-main .artist-main-header {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 1rem;
  width: 100%;
}

.follow__wrap .follow-artist-list .artist-container .artist-main .artist-icon {
  border-radius: 100px;
  display: block;
  height: 46px;
  margin-right: 1rem;
  overflow: hidden;
  width: 46px;
}

.follow__wrap .follow-artist-list .artist-container .artist-main .artist-icon img {
  font-family: "object-fit: cover;";
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.follow__wrap .follow-artist-list .artist-container .artist-main .artist-main-right-header {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 1rem;
  width: 100%;
}

.follow__wrap .follow-artist-list .artist-container .artist-main .artist-name {
  -webkit-flex-basis: calc(100% - 146px);
  flex-basis: calc(100% - 146px);
  -ms-flex-preferred-size: calc(100% - 146px);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-right: 1rem;
  word-break: break-all;
}

.follow__wrap .follow-artist-list .artist-container .artist-main .artist-follow-btn-wrap {
  -webkit-flex-basis: 76px;
  flex-basis: 76px;
  -ms-flex-preferred-size: 76px;
}

.follow__wrap .follow-artist-list .artist-container .artist-main .artist-follow-btn {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  min-height: 34px;
  padding: 0.7em 0.4em 0.6em 0.4em;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 76px;
}

.follow__wrap .follow-artist-list .artist-container .artist-main .artist-follow-btn.following {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  color: #000000;
}

.follow__wrap .follow-artist-list .artist-container .artist-main .artist-category {
  display: block;
  margin-bottom: 0.6rem;
  max-height: 3.1em;
  overflow: hidden;
}

.follow__wrap .follow-artist-list .artist-container .artist-main .cate-label {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  color: #777777;
  display: inline-block;
  font-size: 1.2rem;
  margin-bottom: 0.3em;
  margin-right: 0.3em;
  padding: 0.4em 0.3em 0.3em 0.3em;
}

.follow__wrap .follow-artist-list .artist-container .artist-main .artist-bio p {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 1.2rem;
  -webkit-line-clamp: 3;
  line-height: 1.4;
  overflow: hidden;
  word-break: break-all;
}

.follow__wrap .follow-artist-list .artist-container .artist-main .artist-bio p br {
  display: none;
}

.follow__wrap .foot-btn-wrap {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  text-align: center;
  width: 100%;
}

.follow__wrap .follow-modal__btn,
.follow__wrap .follow-modal-back-btn {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: inline-block;
  -webkit-flex-basis: 49%;
  flex-basis: 49%;
  -ms-flex-preferred-size: 49%;
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 2rem auto;
  margin-bottom: 0;
  max-width: 300px;
  min-width: 200px;
  padding: 1em 2em 1em 2em;
  position: relative;
  text-align: center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.follow__wrap .follow-modal__btn {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  font-weight: 700;
}

.follow__wrap .follow-modal-back-btn {
  background-color: #ffffff;
  border: 1px solid #999999;
  color: #999999;
}

.follow__wrap .foot-btn-wrap.btn-wrap-flex .follow-modal__btn,
.follow__wrap .foot-btn-wrap.btn-wrap-flex .follow-modal-back-btn {
  margin: 2rem 0.5rem;
  margin-bottom: 0;
}

.follow__wrap#follow-first-modal .modal-content {
  max-width: 900px;
}

.follow__wrap#follow-first-modal .title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 4rem;
  text-align: center;
}

.follow__wrap#follow-first-modal p {
  color: #999999;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 4rem;
  text-align: center;
}

.follow__wrap#follow-first-modal .image_wrap img {
  display: block;
  margin: 0 auto;
  max-width: 360px;
  width: 100%;
}

.follow__wrap#follow-first-modal .follow-modal__btn {
  margin: 4rem auto;
  margin-bottom: 2rem;
}

@media screen and (min-width: 767.98px) {
  .list_item:hover span .check-overlay {
    opacity: 1;
  }
  .follow__wrap .follow-artist-list .artist-container .artist-main .artist-follow-btn:hover {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    color: #000000;
  }
  .follow__wrap .follow-artist-list .artist-container .artist-main .artist-follow-btn.following:hover {
    background-color: #000000;
    border: 1px solid #000000;
    color: #ffffff;
  }
  .follow__wrap .follow-artist-list .artist-container .artist-main .artist-icon:hover {
    opacity: 0.5;
  }
  .follow__wrap .follow-artist-list .artist-container .artist-main .artist-name:hover {
    color: #999999;
  }
  .follow__wrap .follow-modal__btn:hover {
    background-color: #ffffff;
    border: 1px solid #999999;
    color: #999999;
    cursor: pointer;
  }
  .follow__wrap .follow-modal-back-btn:hover {
    background-color: #000000;
    border: 1px solid #000000;
    color: #ffffff;
  }
  .follow__wrap .modal-body-list-wrap {
    max-height: 75vh;
    /* background: #ccc; */
  }
}
@media screen and (max-width: 1100px) {
  .follow__wrap .modal-body-list.follow-artist-list {
    gap: 1% 3%;
    grid-template-columns: repeat(auto-fit, 48.5%);
  }
}
@media screen and (max-width: 900px) {
  .follow__wrap .follow__content {
    padding: 4rem 2rem 0rem 2rem;
  }
  .follow__wrap .modal-header {
    display: block;
    margin-bottom: 2rem;
  }
  .follow__wrap .modal-header .title {
    font-size: 1.8rem;
  }
  .follow__content p {
    font-size: 1.4rem;
  }
  .follow__wrap .modal-body-list.follow-category-list {
    gap: 2% 3%;
    grid-template-columns: repeat(auto-fit, 48.5%);
  }
  .follow__wrap .follow-category-list label input[type=checkbox] + span::before,
.follow__wrap .follow-category-list label input[type=checkbox] + span::after {
    right: 0.5rem;
    top: 0.5rem;
  }
  .follow__wrap .follow-category-list label input[type=checkbox] + span::before {
    height: 36px;
    width: 36px;
  }
  .follow__wrap .follow-category-list label input[type=checkbox] + span::after {
    height: 20px;
    width: 13px;
  }
  .follow__wrap .follow-category-list label input[type=checkbox]:checked + span::before {
    right: 0.5rem;
    top: 0.5rem;
  }
  .follow__wrap .follow-category-list label input[type=checkbox]:checked + span::after {
    right: 0.8rem;
    top: 0.5rem;
  }
  .follow__wrap .list_item .check-title {
    font-size: 1.4rem;
    padding: 0.6em;
  }
  .follow__wrap .modal-footer {
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: center;
    -webkit-box-pack: end;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-negative: 0;
    -ms-flex-pack: end;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .follow__wrap .foot-btn-wrap {
    max-width: inherit;
    width: 100%;
  }
  .follow__wrap .follow-modal__btn,
.follow__wrap .follow-modal-back-btn,
.follow__wrap .foot-btn-wrap.btn-wrap-flex .follow-modal__btn,
.follow__wrap .foot-btn-wrap.btn-wrap-flex .follow-modal-back-btn {
    font-size: 1.4rem;
    margin: 1rem auto;
    padding: 1em 0.3em 0.8em 0.3em;
  }
  .follow__wrap .foot-btn-wrap.btn-wrap-flex .follow-modal__btn,
.follow__wrap .foot-btn-wrap.btn-wrap-flex .follow-modal-back-btn {
    min-width: inherit;
  }
  .follow__wrap .follow-modal__btn,
.follow__wrap .follow-modal-back-btn {
    max-width: inherit;
  }
}
@media screen and (max-width: 767.98px) {
  .follow__wrap .follow-artist-list .artist-container .artist-cover:before {
    padding-top: 47%;
  }
  .follow__wrap .follow-artist-list .artist-container .artist-main {
    padding: 1.5rem 1rem;
  }
  .follow__wrap .follow-artist-list .artist-container .artist-main .artist-main-right {
    -webkit-flex-basis: calc(100% - 50px);
    flex-basis: calc(100% - 50px);
    -ms-flex-preferred-size: calc(100% - 50px);
  }
  .follow__wrap .follow-artist-list .artist-container .artist-main .artist-icon {
    height: 40px;
    width: 40px;
  }
  .follow__wrap .follow-artist-list .artist-container .artist-main .artist-main-right .artist-main-right-header {
    margin-top: 0.3rem;
  }
  .follow__wrap .follow-artist-list .artist-container .artist-main .artist-main-right .cate-label {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 680px) {
  .follow__wrap .modal-body-list.follow-artist-list {
    gap: 1.5rem 0;
    grid-template-columns: repeat(auto-fit, 100%);
  }
  .follow__wrap .foot-btn-wrap.btn-wrap-flex {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .follow__wrap .follow-modal__btn,
.follow__wrap .follow-modal-back-btn,
.follow__wrap .foot-btn-wrap.btn-wrap-flex .follow-modal__btn,
.follow__wrap .foot-btn-wrap.btn-wrap-flex .follow-modal-back-btn {
    margin: 1rem 0;
  }
  .follow__wrap#follow-first-modal .title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .follow__wrap#follow-first-modal p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: left;
  }
  .follow__wrap#follow-first-modal .image_wrap img {
    max-width: 60%;
  }
  .follow__wrap#follow-first-modal .follow-modal__btn {
    margin: 2rem auto 2rem auto;
  }
  .follow__wrap#follow-first-modal .modal-header {
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media screen and (max-width: 375px) {
  .follow__wrap .modal-header .title {
    font-size: 1.7rem;
  }
  .follow__wrap .list_item .check-title {
    font-size: 1.3rem;
    padding: 0.5em 0.2em;
  }
  .follow__wrap#follow-first-modal .title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .follow__wrap#follow-first-modal p {
    font-size: 1.2rem;
  }
}
/* --------------------------------

トップページ（toppage）

-------------------------------- */
/*----- イベント表示対応 TOPスライダー -----*/
.top-slider {
  position: relative;
}

@media screen and (min-width: 1100px), print {
  .top-slider {
    padding: 2em 2em 0 2em;
  }
}
.top-slider .inner {
  height: 100%;
  margin: 0 auto;
  max-width: 1380px;
  width: 100%;
}

.top-slider .inner .slider-main {
  display: block;
  position: relative;
}

.top-slider .inner .slider-main-container {
  display: block;
  position: relative;
}

.top-slider .inner .event-slide-item {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.top-slider .inner .event-slide-item a {
  background-color: #ffffff;
  display: block;
  position: relative;
  width: 100%;
}

.top-slider .inner .event-slide-image {
  background-color: #ffffff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.top-slider .inner .event-slide-image:before {
  content: "";
  display: block;
  padding-top: 60%;
}

.top-slider .inner .event-slide-image .event-slide-image-wrap {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.top-slider .inner .event-slide-image .event-slide-image-wrap img {
  font-family: "object-fit: cover;";
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.top-slider .inner .event-slide-tx {
  background-color: rgba(255, 255, 255, 0.8);
  bottom: 0;
  left: 0;
  max-width: 100%;
  padding: 2rem;
  position: absolute;
  z-index: 10;
}

.top-slider .inner .event-slide-tx.logo-slide {
  background-color: inherit;
  bottom: 8%;
  left: 6.3%;
  padding: 0;
  position: absolute;
}

.top-slider .inner .label-box {
  font-size: 1.4rem;
  margin-bottom: 0.3em;
}

.top-slider .inner .event-slide-title {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.05em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-slider .inner .event-slide-date {
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.2em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-slider .inner .event-slide-area {
  font-size: 1.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (min-width: 1100px), print {
  .top-slider .inner .event-slide-image:before {
    padding-top: 640px;
  }
}
@media screen and (max-width: 767.98px) {
  .top-slider .inner .event-slide-image:before {
    padding-top: 397px;
  }
  .top-slider .inner .event-slide-tx {
    padding: 1rem;
  }
  .top-slider .inner .label-box {
    font-size: 1.2rem;
  }
  .top-slider .inner .event-slide-title {
    font-size: 2rem;
  }
  .top-slider .inner .event-slide-date {
    font-size: 1.3rem;
    margin-bottom: 0.1em;
  }
  .top-slider .inner .event-slide-area {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 375px) {
  .top-slider .inner .event-slide-image:before {
    padding-top: 250px;
  }
  .top-slider .inner .event-slide-title {
    font-size: 1.7rem;
  }
  .top-slider .inner .label-box {
    display: none;
  }
  .top-slider .inner .event-slide-tx:not(.logo-slide) {
    background: none;
    background: black;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), color-stop(73%, rgba(64, 64, 64, 0.3)), to(rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 0%, rgba(64, 64, 64, 0.3) 73%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(64, 64, 64, 0.3) 73%, rgba(255, 255, 255, 0) 100%);
    color: #ffffff;
    padding-top: 2rem;
    width: 100%;
  }
}
.top-slider + main {
  padding-top: 0;
}

@media screen and (max-width: 767.98px) {
  .top-slider + main {
    padding: 0;
  }
}
.top-slider .slick-prev,
.top-slider .slick-next {
  border: 1px solid #000000;
  border-radius: 100%;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 80px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 80px;
  z-index: 10;
}

@media screen and (max-width: 1099.98px) {
  .top-slider .slick-prev,
.top-slider .slick-next {
    height: 50px;
    width: 50px;
  }
}
.top-slider .slick-prev {
  left: 15px;
}

@media screen and (max-width: 1099.98px) {
  .top-slider .slick-prev {
    left: 40px;
  }
}
@media screen and (max-width: 359.98px) {
  .slider .slick-prev {
    left: 25px;
  }
}
.top-slider .slick-prev::before {
  background-color: #000000;
  content: "";
  display: block;
  height: 3px;
  left: -34px;
  position: absolute;
  top: 38px;
  width: 80px;
}

@media screen and (max-width: 1099.98px) {
  .top-slider .slick-prev::before {
    height: 2px;
    left: -20px;
    top: 24px;
    width: 50px;
  }
}
.top-slider .slick-prev::after {
  background-color: #000000;
  content: "";
  display: block;
  height: 3px;
  left: -38px;
  position: absolute;
  top: 23px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 40px;
}

@media screen and (max-width: 1099.98px) {
  .top-slider .slick-prev::after {
    height: 2px;
    left: -23px;
    top: 15px;
    width: 25px;
  }
}
.top-slider .slick-next {
  right: 15px;
}

@media screen and (max-width: 1099.98px) {
  .top-slider .slick-next {
    right: 40px;
  }
}
@media screen and (max-width: 359.98px) {
  .top-slider .slick-next {
    right: 25px;
  }
}
.top-slider .slick-next::before {
  background-color: #000000;
  content: "";
  display: block;
  height: 3px;
  left: 34px;
  position: absolute;
  top: 38px;
  width: 80px;
}

@media screen and (max-width: 1099.98px) {
  .top-slider .slick-next::before {
    height: 2px;
    left: 20px;
    top: 24px;
    width: 50px;
  }
}
.top-slider .slick-next::after {
  background-color: #000000;
  content: "";
  display: block;
  height: 3px;
  left: 78px;
  position: absolute;
  top: 23px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 40px;
}

@media screen and (max-width: 1099.98px) {
  .top-slider .slick-next::after {
    height: 2px;
    left: 48px;
    top: 15px;
    width: 25px;
  }
}
@media screen and (max-width: 480px) {
  .top-slider .slick-prev,
.top-slider .slick-next {
    display: none !important;
  }
}
.top-slider .slick-slider {
  height: 100%;
  opacity: 0;
  visibility: hidden;
  width: 100%;
}

.top-slider .slick-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}

.top-slider .slick-slider.slick-slider1 .slick-list,
.top-slider .slick-slider.slick-slider1 .slick-track {
  height: 100%;
}

.top-slider .slick-slider .slide {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 480px) {
  .top-slick-slider .event-slide-item a:hover img {
    opacity: 0.5;
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}
@media screen and (max-width: 479.98px) {
  .slider-side.logo-slide {
    bottom: 6%;
    left: 5%;
  }
}
/* Dots */
.top-slider .slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.top-slider .slick-dots {
  bottom: -35px;
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.top-slider .slick-dots li {
  cursor: pointer;
  display: inline-block;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  position: relative;
  width: 20px;
}

.top-slider .slick-dots li button {
  background: transparent;
  border: 0;
  color: transparent;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 20px;
  line-height: 0;
  outline: none;
  padding: 5px;
  width: 20px;
}

.top-slider .slick-dots li button:hover,
.top-slider .slick-dots li button:focus {
  outline: none;
}

.top-slider .slick-dots li button:hover:before,
.top-slider .slick-dots li button:focus:before {
  opacity: 1;
}

.top-slider .slick-dots li button:before {
  color: black;
  content: "●";
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  height: 20px;
  left: 0;
  line-height: 20px;
  opacity: 0.25;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  text-align: center;
  top: 0;
  width: 20px;
}

.top-slider .slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* --------------------------------

展覧会（Exhibition）

-------------------------------- */
#fat-exhibitions {
  padding: 4em 2em;
}

@media screen and (max-width: 639.98px) {
  #fat-exhibitions {
    /* margin-bottom: 1.5em; */
    /* padding: 1em; */
  }
}
@media screen and (max-width: 767.98px) {
  #fat-exhibitions .section-header {
    margin: 0 auto 1.6rem;
  }
  #fat-exhibitions .section-heading {
    font-size: 3rem !important;
  }
}
@media screen and (max-width: 1099.98px) {
  #fat-artists + #fat-exhibitions .section-header {
    margin: 0 auto 2.5em;
  }
}
@media screen and (max-width: 767.98px) {
  #fat-artists + #fat-exhibitions .section-heading {
    font-size: 3.2rem !important;
    line-height: 1.15;
  }
}
/*---- フォーム系 ----*/
.input-box {
  margin-right: 2rem;
}

.input-title {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 0.7rem;
}

.input-wrap {
  display: inline-block;
}

.input-wrap * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.input-wrap select {
  background: url(../img/arrow-down_s_gray.png) no-repeat #ffffff;
  background-position: right 0.8rem bottom 50%;
  background-size: 10px 6px;
  border: 1px solid #cccccc;
  color: #000000;
  cursor: pointer;
  font-size: 1.4rem;
  max-width: 150px;
  padding: 10px;
  padding-right: 1.7em;
}

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

.date-select .date-select-box {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
}

.date-select .title {
  margin-bottom: 1rem;
}

.date-select .tx {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  font-size: 1.6rem;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 0.5rem;
}

.date-select .date__pickup-input-wrap {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
}

.date-select .date__pickup {
  font-size: 1.4rem;
  margin-bottom: 0;
}

.date-select .date__pickup::-webkit-input-placeholder {
  color: #999999;
}

.date-select .date__pickup::-moz-placeholder {
  color: #999999;
}

.date-select .date__pickup:-ms-input-placeholder {
  color: #999999;
}

.date-select .date__pickup::-ms-input-placeholder {
  color: #999999;
}

.date-select .date__pickup::placeholder {
  color: #999999;
}

_:lang(x) + _:-webkit-full-screen-document,
.date-select .date__pickup {
  max-width: 100%;
  min-height: 40px;
  min-width: 90px;
}

@media screen and (max-width: 767.98px) {
  .date-select .date-select-box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
/*----- SNSシェア -----*/
.sns-btn {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 1rem 0;
}

.sns-btn li {
  margin: 0 0.7rem;
  text-align: center;
}

.sns-btn li a {
  cursor: pointer;
  font-size: 12px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sns-btn li a .tx {
  margin-top: 3px;
}

.sns-btn.sns-btn-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.sns-btn.sns-btn-right li {
  margin: 0 0.5rem;
}

.sns-btn.sns-btn-right li img {
  height: auto;
  width: 30px;
}

@media screen and (min-width: 767.98px) {
  .sns-btn li a:hover {
    opacity: 0.5;
  }
}
/*----- Exhibitions 一覧 ----- */
#exhibitions_list .pagetitle + .inner {
  max-width: inherit;
}

.exhibition-top-section {
  padding: 0 2em;
  padding-bottom: 10rem;
}

@media screen and (max-width: 1100px), print {
  .exhibition-top-section {
    padding: 0 1em 10rem 1em;
  }
}
@media screen and (max-width: 767.98px) {
  .exhibition-top-section {
    padding: 0 1em 10rem 1em;
  }
}
.exhibition-detail-section .pageback-more {
  padding-left: 2em;
}

.exhibitions-filter {
  border-bottom: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3rem;
  padding: 3rem 0;
  width: 100%;
}

.exhibitions-filter * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.exhibitions-filter .exhibitions-filter-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.exhibitions-filter .exhibitions-filter-inputwrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.exhibitions-filter .exhibitions-filter-btn {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.2;
  padding: 0.65em 2em;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.exhibitions-sort-area {
  -webkit-box-pack: end;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  -webkit-justify-content: end;
  justify-content: end;
  padding: 3rem 0;
}

@media screen and (min-width: 480px) {
  .exhibitions-filter-btn:hover {
    background-color: #ffffff;
    border: 1px solid #999999;
    color: #999999;
  }
}
.sp-exhibitions-filter-trigger {
  background-size: 10px 6px;
  display: none;
}

@media screen and (max-width: 840px) {
  .exhibitions-filter {
    padding-bottom: 0;
    padding-top: 0;
    position: relative;
  }
  .sp-exhibitions-filter-trigger {
    display: block;
    font-weight: 700;
    padding: 2rem 0;
    position: relative;
    width: 100%;
  }
  .sp-exhibitions-filter-trigger::before {
    background: url(../img/arrow-down_s_gray.png) no-repeat;
    content: "";
    height: 6px;
    position: absolute;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 10px;
    z-index: -1;
  }
  .sp-exhibitions-filter-trigger.open::before {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .exhibitions-filter {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .exhibitions-filter .exhibitions-filter-content {
    display: none;
    padding-bottom: 2rem;
  }
  .exhibitions-filter .exhibitions-filter-inputwrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }
  .exhibitions-filter .input-box {
    margin-bottom: 2rem;
    margin-right: 0;
    padding-right: 0;
    width: 100%;
  }
  .exhibitions-filter .input-box .input-wrap {
    width: 100%;
  }
  .exhibitions-filter .input-box .input-wrap select {
    max-width: inherit;
    width: 100%;
  }
  .exhibitions-filter .date-select .date-select-box {
    display: block;
  }
  .exhibitions-filter .input-title {
    display: block;
    margin-bottom: 0.5rem;
    width: 100%;
  }
  .exhibitions-filter .exhibitions-filter-btnwrap {
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 840px) {
  .exhibitions-filter .exhibitions-filter-btnwrap .exhibitions-filter-btn {
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .exhibitions-filter .exhibitions-filter-btnwrap .exhibitions-filter-btn {
    max-width: 375px;
    padding-left: 0;
    width: 100%;
  }
}
.exhibition-list {
  display: grid;
  gap: 6rem 5%;
  grid-template-columns: repeat(auto-fit, 30%);
  width: 100%;
}

.exhibition-list * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.exhibition-list > li {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.exhibition-list > li a {
  display: block;
  overflow: hidden;
  position: relative;
}

.exhibition-list > li a .exhibition-list-image {
  bottom: 0;
  left: 0;
  margin-bottom: 1.8rem;
  overflow: hidden;
  position: relative;
  right: 0;
  top: 0;
  width: 100%;
}

.exhibition-list > li a .exhibition-list-image:before {
  content: "";
  display: block;
  padding-top: 53%;
}

.exhibition-list > li a .exhibition-list-image .exhibition-list-image-wrap {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.exhibition-list > li a .exhibition-list-image .exhibition-list-image-wrap img {
  font-family: "object-fit: cover;";
  height: 100%;
  max-height: 387px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.exhibition-list > li a .exhibition-list-tx {
  line-height: 1.4;
}

.exhibition-list > li a .exhibition-list-tx .exhibition-list-title {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 1.6rem;
  font-weight: 700;
  -webkit-line-clamp: 2;
  margin-bottom: 0.5em;
  overflow: hidden;
  word-break: break-all;
  word-wrap: break-word;
}

.exhibition-list > li a .exhibition-list-tx .exhibition-list-date {
  font-size: 1.4rem;
  margin-bottom: 0.3em;
}

.exhibition-list > li a .exhibition-list-tx .exhibition-list-area {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 1.4rem;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-break: break-all;
  word-wrap: break-word;
}

@media screen and (min-width: 480px) {
  .exhibition-list > li a:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
@media screen and (max-width: 767.98px) {
  #exhibitions_list.contents .inner {
    width: 100%;
  }
  .exhibitions-sort-area {
    display: block;
    padding: 2rem 0;
    width: 100%;
  }
  .exhibitions-sort-area .input-wrap {
    display: block;
  }
  .exhibitions-sort-area .input-wrap select {
    max-width: inherit;
    width: 100%;
  }
  .exhibition-list {
    gap: 5rem 0;
    grid-template-columns: repeat(auto-fit, 100%);
  }
  .exhibition-list > li a .exhibition-list-image {
    margin-bottom: 1.5rem;
  }
  .exhibition-list > li a .exhibition-list-tx .exhibition-list-title {
    font-size: 1.6rem;
  }
  .exhibition-list > li a .exhibition-list-tx .exhibition-list-date {
    font-size: 1.4rem;
  }
  .exhibition-list > li a .exhibition-list-tx .exhibition-list-area {
    font-size: 1.4rem;
  }
}
/*----- Exhibitions 詳細 ----- */
.exhibition-detail-section {
  padding: 3em 0;
  padding-top: 0;
}

@media screen and (min-width: 1100px), print {
  .exhibition-detail-section {
    padding: 5em 0;
    padding-top: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .exhibition-detail-section {
    padding: 0 0 2em 0;
  }
}
.exhibition-detail-section .pageback-more {
  padding-left: 2em;
}

#exhibitions_detail.contents .inner {
  max-width: inherit;
  width: 100%;
}

#exhibitions_detail .exhibition-detail-main {
  margin: auto;
  max-width: 800px;
}

#exhibitions_detail .exhibition-detail-main .image-main {
  text-align: center;
  width: 100%;
}

#exhibitions_detail .exhibition-detail-main .image-main img {
  max-height: 680px;
}

#exhibitions_detail .exhibition-detail-header-tx {
  letter-spacing: 0.05em;
  margin: auto;
  padding: 4rem 0 5rem 0;
  text-align: center;
}

#exhibitions_detail .exhibition-detail-header-tx:after {
  background-color: #cccccc;
  content: " ";
  display: block;
  height: 1px;
  margin: auto;
  margin-top: 5rem;
  width: 100px;
}

#exhibitions_detail .exhibition-detail-header-tx .title {
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 0.6em;
  word-break: break-all;
}

#exhibitions_detail .exhibition-detail-header-tx .date {
  font-size: 2.8rem;
  margin-bottom: 1em;
}

#exhibitions_detail .exhibition-detail-header-tx .area {
  font-size: 1.8rem;
  word-break: break-all;
}

#exhibitions_detail .exhibition-detail-body {
  border-bottom: 1px solid #cccccc;
  line-height: 2;
  margin: auto;
  padding-bottom: 8rem;
  word-break: break-all;
}

#exhibitions_detail .exhibition-detail-attending {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 6rem;
}

@media screen and (max-width: 840px) {
  #exhibitions_detail #main {
    padding-top: 0;
  }
  #exhibitions_detail .exhibition-detail-header .sns-btn.sns-btn-right {
    margin-right: 1rem;
  }
  #exhibitions_detail .exhibition-detail-header-tx,
#exhibitions_detail .exhibition-detail-body {
    width: 90%;
  }
  #exhibitions_detail .exhibition-detail-header-tx .title {
    font-size: 2.6rem;
  }
  #exhibitions_detail .exhibition-detail-header-tx .date,
#exhibitions_detail .exhibition-detail-header-tx .area {
    font-size: 1.4rem;
  }
  #exhibitions_detail .exhibition-detail-body p {
    font-size: 1.4rem;
  }
}
.exhibition-detail-artists,
.exhibition-detail-artworks {
  padding-top: 6rem;
}

.exhibition-detail-artists h2,
.exhibition-detail-artworks h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

.exhibition-detail-artists .artworks-list-container,
.exhibition-detail-artists .artists-top-wrap,
.exhibition-detail-artworks .artworks-list-container,
.exhibition-detail-artworks .artists-top-wrap {
  -webkit-box-pack: start;
  display: grid;
  -ms-flex-pack: start;
  gap: 5rem 6%;
  grid-template-columns: repeat(auto-fit, 20%);
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin: 0 auto;
  width: 100%;
}

.exhibition-detail-artists .artworks-list-container a,
.exhibition-detail-artists .artworks-list-container .artists-top-item__link,
.exhibition-detail-artists .artists-top-wrap a,
.exhibition-detail-artists .artists-top-wrap .artists-top-item__link,
.exhibition-detail-artworks .artworks-list-container a,
.exhibition-detail-artworks .artworks-list-container .artists-top-item__link,
.exhibition-detail-artworks .artists-top-wrap a,
.exhibition-detail-artworks .artists-top-wrap .artists-top-item__link {
  display: block;
  max-height: inherit;
  max-width: inherit;
  overflow: hidden;
  position: relative;
}

.exhibition-detail-artists .artworks-list-container .artworks-list-item,
.exhibition-detail-artists .artworks-list-container .artists-top-item,
.exhibition-detail-artists .artists-top-wrap .artworks-list-item,
.exhibition-detail-artists .artists-top-wrap .artists-top-item,
.exhibition-detail-artworks .artworks-list-container .artworks-list-item,
.exhibition-detail-artworks .artworks-list-container .artists-top-item,
.exhibition-detail-artworks .artists-top-wrap .artworks-list-item,
.exhibition-detail-artworks .artists-top-wrap .artists-top-item {
  margin: 0;
  width: inherit;
}

.exhibition-detail-artists .artworks-list-container .artworks-list-title,
.exhibition-detail-artists .artworks-list-container .artists-top-name,
.exhibition-detail-artists .artists-top-wrap .artworks-list-title,
.exhibition-detail-artists .artists-top-wrap .artists-top-name,
.exhibition-detail-artworks .artworks-list-container .artworks-list-title,
.exhibition-detail-artworks .artworks-list-container .artists-top-name,
.exhibition-detail-artworks .artists-top-wrap .artworks-list-title,
.exhibition-detail-artworks .artists-top-wrap .artists-top-name {
  font-size: 1.4rem;
  margin-bottom: 0.5em;
}

.exhibition-detail-artists .artworks-list-container .artworks-list-subtitle,
.exhibition-detail-artists .artists-top-wrap .artworks-list-subtitle,
.exhibition-detail-artworks .artworks-list-container .artworks-list-subtitle,
.exhibition-detail-artworks .artists-top-wrap .artworks-list-subtitle {
  font-size: 1.2rem;
}

.exhibition-detail-artists .artworks-list-container .artworks-list-fee,
.exhibition-detail-artists .artists-top-wrap .artworks-list-fee,
.exhibition-detail-artworks .artworks-list-container .artworks-list-fee,
.exhibition-detail-artworks .artists-top-wrap .artworks-list-fee {
  display: none;
}

.exhibition-detail-artists .artworks-list-container .artworks-list-image,
.exhibition-detail-artists .artworks-list-container .artists-top-image,
.exhibition-detail-artists .artists-top-wrap .artworks-list-image,
.exhibition-detail-artists .artists-top-wrap .artists-top-image,
.exhibition-detail-artworks .artworks-list-container .artworks-list-image,
.exhibition-detail-artworks .artworks-list-container .artists-top-image,
.exhibition-detail-artworks .artists-top-wrap .artworks-list-image,
.exhibition-detail-artworks .artists-top-wrap .artists-top-image {
  bottom: 0;
  left: 0;
  margin-bottom: 1rem;
  max-height: inherit;
  max-width: inherit;
  position: relative;
  right: 0;
  top: 0;
  width: 100%;
}

.exhibition-detail-artists .artworks-list-container .artworks-list-image:before,
.exhibition-detail-artists .artworks-list-container .artists-top-image:before,
.exhibition-detail-artists .artists-top-wrap .artworks-list-image:before,
.exhibition-detail-artists .artists-top-wrap .artists-top-image:before,
.exhibition-detail-artworks .artworks-list-container .artworks-list-image:before,
.exhibition-detail-artworks .artworks-list-container .artists-top-image:before,
.exhibition-detail-artworks .artists-top-wrap .artworks-list-image:before,
.exhibition-detail-artworks .artists-top-wrap .artists-top-image:before {
  content: "";
  display: block;
  padding-top: 90%;
}

.exhibition-detail-artists .artworks-list-container .artworks-list-image .artworks-list-image-wrap,
.exhibition-detail-artists .artworks-list-container .artworks-list-image .artists-top-image-wrap,
.exhibition-detail-artists .artworks-list-container .artists-top-image .artworks-list-image-wrap,
.exhibition-detail-artists .artworks-list-container .artists-top-image .artists-top-image-wrap,
.exhibition-detail-artists .artists-top-wrap .artworks-list-image .artworks-list-image-wrap,
.exhibition-detail-artists .artists-top-wrap .artworks-list-image .artists-top-image-wrap,
.exhibition-detail-artists .artists-top-wrap .artists-top-image .artworks-list-image-wrap,
.exhibition-detail-artists .artists-top-wrap .artists-top-image .artists-top-image-wrap,
.exhibition-detail-artworks .artworks-list-container .artworks-list-image .artworks-list-image-wrap,
.exhibition-detail-artworks .artworks-list-container .artworks-list-image .artists-top-image-wrap,
.exhibition-detail-artworks .artworks-list-container .artists-top-image .artworks-list-image-wrap,
.exhibition-detail-artworks .artworks-list-container .artists-top-image .artists-top-image-wrap,
.exhibition-detail-artworks .artists-top-wrap .artworks-list-image .artworks-list-image-wrap,
.exhibition-detail-artworks .artists-top-wrap .artworks-list-image .artists-top-image-wrap,
.exhibition-detail-artworks .artists-top-wrap .artists-top-image .artworks-list-image-wrap,
.exhibition-detail-artworks .artists-top-wrap .artists-top-image .artists-top-image-wrap {
  background-color: #fafafa;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.exhibition-detail-artists .artworks-list-container .artworks-list-image .artworks-list-image-wrap img,
.exhibition-detail-artists .artworks-list-container .artworks-list-image .artists-top-image-wrap img,
.exhibition-detail-artists .artworks-list-container .artists-top-image .artworks-list-image-wrap img,
.exhibition-detail-artists .artworks-list-container .artists-top-image .artists-top-image-wrap img,
.exhibition-detail-artists .artists-top-wrap .artworks-list-image .artworks-list-image-wrap img,
.exhibition-detail-artists .artists-top-wrap .artworks-list-image .artists-top-image-wrap img,
.exhibition-detail-artists .artists-top-wrap .artists-top-image .artworks-list-image-wrap img,
.exhibition-detail-artists .artists-top-wrap .artists-top-image .artists-top-image-wrap img,
.exhibition-detail-artworks .artworks-list-container .artworks-list-image .artworks-list-image-wrap img,
.exhibition-detail-artworks .artworks-list-container .artworks-list-image .artists-top-image-wrap img,
.exhibition-detail-artworks .artworks-list-container .artists-top-image .artworks-list-image-wrap img,
.exhibition-detail-artworks .artworks-list-container .artists-top-image .artists-top-image-wrap img,
.exhibition-detail-artworks .artists-top-wrap .artworks-list-image .artworks-list-image-wrap img,
.exhibition-detail-artworks .artists-top-wrap .artworks-list-image .artists-top-image-wrap img,
.exhibition-detail-artworks .artists-top-wrap .artists-top-image .artworks-list-image-wrap img,
.exhibition-detail-artworks .artists-top-wrap .artists-top-image .artists-top-image-wrap img {
  -webkit-filter: inherit;
  filter: inherit;
  font-family: "object-fit: cover;";
  height: 100%;
  max-height: 387px;
  max-width: inherit;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.exhibition-detail-artworks .artworks-list-container .artworks-list-image .artworks-list-image-wrap img,
.exhibition-detail-artworks .artworks-list-container .artworks-list-image .artists-top-image-wrap img {
  font-family: "object-fit: contain;";
  -o-object-fit: contain;
  object-fit: contain;
}

.exhibition-detail-artists .artworks-list-container::after,
.exhibition-detail-artworks .artworks-list-container::after {
  display: none;
}

@media screen and (min-width: 480px) {
  .exhibition-detail-artworks .artworks-list-container a:hover {
    color: #999999;
  }
}
@media screen and (max-width: 840px) {
  .exhibition-detail-artworks .artworks-list,
.exhibition-detail-artists .artists-top-main {
    margin: 0 auto;
    max-width: inherit;
    width: 90%;
  }
  .exhibition-detail-artworks .artworks-list-container,
.exhibition-detail-artists .artists-top-wrap {
    gap: 5rem 5%;
    grid-template-columns: repeat(auto-fit, 30%);
  }
  .exhibition-detail-artists h2,
.exhibition-detail-artworks h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 639.98px) {
  .exhibition-detail-artworks .artworks-list-container,
.exhibition-detail-artists .artists-top-wrap {
    gap: 5rem 5%;
    grid-template-columns: repeat(auto-fit, 47%);
  }
}
.exhibition-detail-info {
  padding-bottom: 6rem;
  padding-top: 6rem;
}

.exhibition-detail-info h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

@media screen and (max-width: 840px) {
  .exhibition-detail-info h2 {
    font-size: 2.6rem;
  }
}
table.info-table {
  margin: 0 auto;
  width: 100%;
  word-break: break-all;
  word-wrap: break-word;
}

table.info-table th,
table.info-table td {
  line-height: 1.7;
  padding: 0.5em;
}

table.info-table th {
  min-width: 120px;
}

table.info-table a {
  color: #999999;
}

table.info-table a:hover {
  color: #000000;
}

table.info-table iframe {
  margin: 1em 0;
  max-width: 100%;
}

@media screen and (max-width: 840px) {
  table.info-table {
    font-size: 1.4rem;
    width: 90%;
  }
  table.info-table th,
table.info-table td {
    display: block;
    padding: 0;
  }
  table.info-table th {
    margin-bottom: 0.4em;
  }
  table.info-table td {
    margin-bottom: 1.5em;
    padding-top: 0;
  }
  table.info-table iframe {
    max-height: 200px;
  }
}
.exhibition-detail-share.share-block {
  background-color: #efefef;
  padding: 3rem 1rem;
}

.exhibition-detail-share.share-block .share-block-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
}

.exhibition-detail-share.share-block .sns-btn li a svg {
  height: 50px;
  width: 50px;
}

@media screen and (max-width: 840px) {
  .exhibition-detail-share.share-block .share-block-title {
    font-size: 2.2rem;
  }
}
#exhibitions_detail .other-exhibition {
  padding: 10rem 0;
}

.other-exhibition .other-exhibition-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

.other-exhibition .event-slide {
  margin: 0 auto;
  max-width: 840px;
  width: 90%;
}

.other-exhibition .event-slide-item {
  margin: 0 2rem 1rem 2rem;
  overflow: hidden;
}

.other-exhibition .event-slide-item a {
  display: block;
  width: 100%;
}

.other-exhibition .event-slide-image {
  margin-bottom: 1em;
  /* margin-bottom: 1.5rem; */
  overflow: hidden;
  position: relative;
}

.other-exhibition .event-slide-image:before {
  content: "";
  display: block;
  padding-top: 52.5%;
}

.other-exhibition .event-slide-image .event-slide-image-wrap {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.other-exhibition .event-slide-image .event-slide-image-wrap img {
  font-family: "object-fit: cover;";
  height: 100%;
  max-height: 387px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.other-exhibition .event-slide-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.2em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.other-exhibition .event-slide-area {
  font-size: 1.4rem;
  margin-bottom: 0.2em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.other-exhibition .event-slide-date {
  font-size: 1.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (min-width: 480px) {
  .other-exhibition .event-slide-item a:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  .other-exhibition .event-slide-item a:hover {
    color: #999999;
  }
}
.slider-arrow {
  padding: 0;
}

.slider-arrow .slick-prev,
.slider-arrow .slick-next {
  background: transparent;
  border: none;
  color: transparent;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 20px;
  line-height: 0;
  outline: none;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 20px;
  z-index: 2;
}

.slider-arrow .slick-prev:hover,
.slider-arrow .slick-prev:focus,
.slider-arrow .slick-next:hover,
.slider-arrow .slick-next:focus {
  background: transparent;
  color: transparent;
  outline: none;
}

.slider-arrow .slick-prev:hover:before,
.slider-arrow .slick-prev:focus:before,
.slider-arrow .slick-next:hover:before,
.slider-arrow .slick-next:focus:before {
  opacity: 1;
}

.slider-arrow .slick-prev.slick-disabled:before,
.slider-arrow .slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slider-arrow .slick-prev:before,
.slider-arrow .slick-next:before {
  color: #000000;
  font-family: "slick";
  font-size: 20px;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  opacity: 0.75;
  -moz-osx-font-smoothing: grayscale;
}

.slider-arrow .slick-prev {
  left: -45px;
}

.slider-arrow [dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}

.slider-arrow .slick-prev:before {
  content: "←";
}

.slider-arrow [dir=rtl] .slick-prev:before {
  content: "→";
}

.slider-arrow .slick-next {
  right: -45px;
}

.slider-arrow [dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}

.slider-arrow .slick-next:before {
  content: "→";
}

.slider-arrow [dir=rtl] .slick-next:before {
  content: "←";
}

.slider-arrow .slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slider-arrow .slick-dots {
  bottom: -25px;
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.slider-arrow .slick-dots li {
  cursor: pointer;
  display: inline-block;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  position: relative;
  width: 20px;
}

.slider-arrow .slick-dots li button {
  background: transparent;
  border: 0;
  color: transparent;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 20px;
  line-height: 0;
  outline: none;
  padding: 5px;
  width: 20px;
}

.slider-arrow .slick-dots li button:hover,
.slider-arrow .slick-dots li button:focus {
  outline: none;
}

.slider-arrow .slick-dots li button:hover:before,
.slider-arrow .slick-dots li button:focus:before {
  opacity: 1;
}

.slider-arrow .slick-dots li button:before {
  color: black;
  content: "●";
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  height: 20px;
  left: 0;
  line-height: 20px;
  opacity: 0.25;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  text-align: center;
  top: 0;
  width: 20px;
}

.slider-arrow .slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.slider-arrow .slick-prev,
.slider-arrow .slick-next {
  border: 1px solid #cccccc;
  border-radius: 100%;
  cursor: pointer;
  display: block;
  height: 50px;
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 50px;
}

.slider-arrow .slick-prev::before,
.slider-arrow .slick-prev::after,
.slider-arrow .slick-next::before,
.slider-arrow .slick-next::after {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slider-arrow .slick-prev::before {
  background-color: #cccccc;
  content: "";
  display: block;
  height: 2px;
  left: -20px;
  position: absolute;
  top: 24px;
  width: 50px;
}

.slider-arrow .slick-prev::after {
  background-color: #cccccc;
  content: "";
  display: block;
  height: 2px;
  left: -23px;
  position: absolute;
  top: 15px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 25px;
}

.slider-arrow .slick-next::before {
  background-color: #cccccc;
  content: "";
  display: block;
  height: 2px;
  left: 20px;
  position: absolute;
  top: 24px;
  width: 50px;
}

.slider-arrow .slick-next::after {
  background-color: #cccccc;
  content: "";
  display: block;
  height: 2px;
  left: 48px;
  position: absolute;
  top: 15px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 25px;
}

@media screen and (min-width: 480px) {
  .slider-arrow .slick-prev:hover,
.slider-arrow .slick-next:hover {
    border-color: #000000;
  }
  .slider-arrow .slick-prev:hover::before,
.slider-arrow .slick-prev:hover::after,
.slider-arrow .slick-next:hover::before,
.slider-arrow .slick-next:hover::after {
    background-color: #000000;
  }
}
@media screen and (max-width: 992px) {
  .slider-arrow .slick-prev,
.slider-arrow .slick-next {
    height: 30px;
    width: 30px;
  }
  .slider-arrow .slick-prev {
    left: -20px;
  }
  .slider-arrow .slick-next {
    right: -20px;
  }
  .slider-arrow .slick-prev::before {
    height: 2px;
    left: -11px;
    top: 14px;
    width: 26px;
  }
  .slider-arrow .slick-prev::after {
    left: -14px;
    top: 9px;
    width: 15px;
  }
  .slider-arrow .slick-next::before {
    height: 2px;
    left: 14px;
    top: 14px;
    width: 26px;
  }
  .slider-arrow .slick-next::after {
    left: 27px;
    top: 9px;
    width: 15px;
  }
}
@media screen and (max-width: 840px) {
  .other-exhibition .other-exhibition-title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .other-exhibition .event-slide {
    width: 100%;
  }
  .other-exhibition .event-slide-title {
    font-size: 1.4rem;
  }
  .other-exhibition .event-slide-area,
.other-exhibition .event-slide-date {
    font-size: 1.2rem;
  }
}
/*---- 作品詳細ページ Collectionセレクトボックス ----*/
.artworks-detail-collection-title {
  margin-bottom: 0.2em;
}

.collection-select {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  word-break: break-all;
  z-index: 2;
}

.collection-select .collection-select-list {
  display: none;
  max-height: 320px;
  overflow-y: auto;
  position: absolute;
  top: 72px;
  width: 100%;
}

.collection-select .select-trigger {
  cursor: pointer;
  padding-right: 1.7em;
  position: relative;
}

.collection-select .select-trigger:after {
  background: url(../img/arrow-down_s_gray.png) no-repeat;
  background-position: center;
  content: "";
  height: 7px;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 11px;
}

.collection-select .select-trigger.open {
  background-color: #efefef;
}

.collection-select .select-trigger.open:after {
  top: 48%;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.collection-select .collection-select-item {
  -webkit-align-items: center;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  -ms-flex-pack: justify;
  -ms-flex-preferred-size: 100%;
  height: 72px;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 1rem;
  padding-right: 1.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 352px;
}

@media screen and (max-width: 1099.98px) {
  .collection-select .collection-select-item {
    max-width: inherit;
  }
}
.collection-select .collection-select-item.collections-link {
  text-align: center;
}

.collection-select .collection-select-item.collections-link .select-tx {
  margin: auto;
}

.collection-select .collection-select-list .collection-select-item {
  border-top: 0;
}

.collection-select .collection-select-list .collection-select-item .select-tx {
  padding-right: 0;
}

.collection-select .select-image {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: relative;
  right: 0;
  top: 0;
  width: 50px;
}

.collection-select .select-image:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.collection-select .select-image-wrap {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.collection-select .select-image-wrap img {
  background-color: #fafafa;
  font-family: "object-fit: contain;";
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  padding: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.collection-select .select-tx {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-flex-basis: calc(100% - 62px);
  flex-basis: calc(100% - 62px);
  -ms-flex-preferred-size: calc(100% - 62px);
  font-weight: 700;
  -webkit-line-clamp: 2;
  line-height: 1.4;
  overflow: hidden;
  padding-right: 1.4em;
}

@media screen and (min-width: 480px) {
  .collection-select .collection-select-item:hover {
    background-color: #efefef;
  }
}
@media screen and (max-width: 480px) {
  .artists-detail {
    width: 100%;
  }
  .main-nav {
    /* gap: 5px; */
  }
}
/*# sourceMappingURL=collection.css.map */
.add-follow-btn {
  background-color: #000000;
  border: 1px solid #999999;
  border: 1px solid #000000;
  color: #ffffff;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-right: 0.8em;
  padding: 0.6em 1.6em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767.98px) {
  .add-follow-btn {
    font-size: 1.4rem;
  }
}
.artworks-detail-side .thumbnail-item.parent-item {
  background: #fafafa;
  display: block;
  overflow: hidden;
  padding-top: 110px;
  position: relative;
  position: relative;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-side .thumbnail-item.parent-item {
    padding-top: 55px;
  }
}
.artworks-detail-side .thumbnail-item .child-item {
  height: 50px;
  left: 0;
  position: absolute;
  top: 10px;
  -webkit-transform: translate(64%, 44%);
  transform: translate(64%, 44%);
  width: 50px;
}

.thumbnail-main.video-custom {
  background: currentColor;
  height: auto;
  height: 100%;
  left: 0;
  margin: auto;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: auto;
  width: 100%;
}

.artworks-detail-side .thumbnail-item.parent-item .thumbnail-main.video-custom {
  max-height: 100%;
  max-width: 100%;
}

@media screen and (max-width: 767.98px) {
  .artworks-detail-side > iframe.thumbnail-main {
    height: 250px;
    width: 100%;
  }
}
.d-contents {
  display: contents !important;
}

@media screen and (max-width: 1100px) {
  .tab-content-empty {
    /* height: 300px; */
  }
  .mypage-tab-section .artworks-list-section .tab-content-empty {
    /* height: 300px; */
    margin-left: -1.6rem;
  }
}
/*------------------------------
作品詳細　NFT関連
------------------------------*/
.cart-btn {
  -webkit-align-items: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #000000;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  height: 64px;
  -webkit-justify-content: center;
  justify-content: center;
  max-width: 256px;
  min-width: 256px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cart-btn.__soldout {
  pointer-events: none !important;
}

.cart-btn span {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
}

@media screen and (min-width: 460px) {
  .cart-btn:hover {
    background-color: #ffffff;
    border: 1px solid #999999;
  }
  .cart-btn:hover span {
    color: #999999;
  }
}
.store-detail-accordion {
  margin-top: 2.4rem;
  text-align: center;
}

@media screen and (max-width: 1099.98px) {
  .store-detail-accordion .accordion-block {
    margin: auto;
  }
}
.accordion-block {
  border: 1px solid #cccccc;
  display: block;
  position: relative;
  width: 100%;
  max-width: 352px;
  /* margin: auto; */
  text-align: left;
  background: #fff;
}

@media screen and (max-width: 1099.98px) {
  .accordion-block {
    max-width: inherit;
  }
}
.accordion-block .cart-btn {
  margin: 1.6rem auto;
}

.accordion-block:not(:last-child) {
  margin-bottom: 15px;
}

.accordion-block .accordion-title {
  color: #000000;
  cursor: pointer;
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.9;
  padding: 0.93em;
  position: relative;
  width: 100%;
}

@media screen and (max-width: 639.98px) {
  .accordion-block .accordion-title {
    font-size: 1.4rem;
  }
}
.accordion-block .accordion-title::after {
  background: url("../img/base/icon_arrow_gray01.svg") no-repeat center/cover;
  content: "";
  display: block;
  height: 16px;
  position: absolute;
  right: 20px;
  top: 1.4em;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 8px;
}

.accordion-block .accordion-title.active::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.accordion-block .accordion-body {
  display: none;
  padding: 0 0.93em 0.93em 0.93em;
}

.accordion-block.open .accordion-body {
  display: block;
}

.accordion-block .accordion-box dt {
  color: #999999;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}

.accordion-block .accordion-box dd {
  color: #000000;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
}

.accordion-block .accordion-box:not(:last-child) {
  margin-bottom: 10px;
}

.accordion-block .accordion-text p {
  color: #000000;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
}

.accordion-block .accordion-attention p {
  color: #000000;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
}

.accordion-block .link-wrap {
  font-size: 1.4rem;
  text-align: right;
}

.accordion-block .link-wrap .ico {
  vertical-align: middle;
}

.accordion-block .link-wrap .ico svg {
  vertical-align: middle;
}

.accordion-block .contract-btn {
  max-width: calc(100% - 25px);
}

.accordion-block .contract-btn .tx {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.accordion-block .contract-btn .ico {
  display: inline-block;
}

.copy-btn,
.link-wrap a {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media screen and (min-width: 460px) {
  .copy-btn:hover,
.link-wrap a:hover {
    opacity: 0.4;
  }
}
@media screen and (max-width: 1099.98px) {
  .store-detail-main {
    margin-left: 0;
    margin-top: 40px;
  }
}
@media screen and (max-width: 639.98px) {
  .store-detail-info .info_item:not(:last-child) {
    margin-right: 1em;
  }
  .store-detail-header .colletion_title,
.store-detail-header .image_title,
.store-detail-header .edition_title {
    font-size: 3rem;
  }
  .store-detail-fee .num {
    font-size: 4rem;
  }
  .store-detail-fee .unit {
    font-size: 2rem;
  }
  .store-detail-fee .tax {
    font-size: 1.8rem;
  }
  .cart-btn {
    height: 55px;
    max-width: 210px;
    min-width: 210px;
  }
  .cart-btn span {
    font-size: 1.6rem;
  }
}
/*------------------------------

NFTの転送

------------------------------*/
.subheading,
.contents .subheading.contents__title {
  font-size: 2.4rem;
  margin-bottom: 4rem;
}

@media (max-width: 640px) {
  .subheading,
.contents .subheading.contents__title {
    font-size: 1.9rem;
  }
}
.common__btn {
  line-height: 1.4;
}

.common-cancel__btn {
  background: #ffffff;
  border: 1px solid #999999;
  color: #999999;
  cursor: pointer;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  max-height: 60px;
  min-width: 380px;
  padding: 14px 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  vertical-align: middle;
}

@media (max-width: 640px) {
  .common-cancel__btn {
    max-height: initial;
    min-width: initial;
    width: 95%;
  }
}
.disable {
  background-color: #aaaaaa;
  border-color: #aaaaaa;
  color: #ffffff;
  cursor: not-allowed;
}

.disable:hover {
  background-color: #aaaaaa;
  border-color: #aaaaaa;
  color: #ffffff;
}

.nft-transfer .contents .contents__wrap .inner {
  padding: 0 20px;
}

.nft-transfer .section {
  padding: 4rem 0;
}

.nft-transfer .tx-title,
.nft-transfer .tx-address {
  font-weight: bold;
  line-height: 1.4;
}

.nft-transfer .transfer_item {
  margin: auto;
  margin-bottom: 20px;
  text-align: center;
}

.nft-transfer .purchase-flow_image {
  background: #fafafa;
  display: inline-block;
  max-width: 120px;
  vertical-align: middle;
  width: 100%;
}

.nft-transfer .purchase-flow_image img {
  font-family: "object-fit: contain;";
  height: 120px;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.nft-transfer .transfer_item_title {
  color: #000000;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-left: 1.6rem;
  max-width: calc(100% - 160px);
  text-align: left;
  vertical-align: middle;
  width: auto;
}

.nft-transfer .common__text-box--wrap {
  display: block;
  width: 440px;
}

.nft-transfer .common__text-box--wrap .title {
  margin-bottom: 5px;
  margin-right: 0;
  min-width: initial;
  width: 100%;
}

.nft-transfer .common__text-box {
  min-width: 440px;
}

.nft-transfer .modal__text-area--wrap {
  width: 100%;
}

.nft-transfer .check-box-area {
  margin: 4rem auto 2rem auto;
  text-align: center;
}

.nft-transfer .check-box-area p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
}

.nft-transfer .check-box-area .red {
  color: #ff6347;
}

.nft-transfer .checkbox-wrap {
  margin: 2rem auto;
}

.nft-transfer .check__box + label {
  display: inline-block;
  margin-right: 0;
}

.nft-transfer input.check__box[type=checkbox]:checked + label:after {
  left: 4.5px;
  top: 4px;
}

.nft-transfer .back-link {
  margin-top: 2.4rem;
}

.nft-transfer .back-link a {
  font-size: 1.4rem;
  text-decoration: underline;
}

.nft-transfer .back-link a:hover {
  text-decoration: none;
}

@media (max-width: 640px) {
  .nft-transfer .common__text-box--wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }
  .nft-transfer .common__text-box {
    min-width: inherit;
    width: 100%;
  }
  .nft-transfer .check-box-area p {
    font-size: 1.4rem;
    text-align: left;
  }
  .nft-transfer input.check__box[type=checkbox]:checked + label:after {
    top: 3px;
  }
  .nft-transfer .check__box + label {
    font-size: 1.4rem;
  }
}
#nft-transfer-complete .transfer_item {
  margin: 4rem auto 3rem auto;
}

#nft-transfer-complete p.center {
  line-height: 1.6;
}

#nft-transfer-complete .message-p {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1em;
}

#nft-transfer-complete .common-btn__area {
  margin-top: 2rem;
}

@media (max-width: 640px) {
  #nft-transfer-complete p.center {
    text-align: left;
  }
}
/*----- modal -----*/
.nft-transfer__wrap *,
.nft-transfer__wrap ::after,
.nft-transfer__wrap ::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.nft-transfer__wrap.modal {
  background: rgba(0, 0, 0, 0.7);
  display: none;
  height: 100%;
  left: 0;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.nft-transfer__wrap .modal-dialog {
  margin: 0.5rem;
  pointer-events: none;
  position: relative;
  width: 100%;
}

.follow__wrap .modal-dialog-scrollable {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: calc(100% - 3.5rem);
  margin: 1.75rem auto;
}

.nft-transfer__wrap .modal-dialog-centered {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  height: calc(100% - 3.5rem);
}

.nft-transfer__wrap .modal-content {
  background-clip: padding-box;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto;
  max-width: 800px;
  outline: 0;
  pointer-events: auto;
  position: relative;
  width: 95%;
}

.nft-transfer__wrap .modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.nft-transfer__wrap .modal-header {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-negative: 0;
  -ms-flex-pack: justify;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.nft-transfer__wrap .modal-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
}

.nft-transfer__wrap .modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.nft-transfer__wrap .modal-footer {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: end;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-negative: 0;
  -ms-flex-pack: end;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.nft-transfer__wrap input {
  display: none;
}

.nft-transfer__wrap .modal-body-list input[type=checkbox],
.nft-transfer__wrap .modal-body-list input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  margin: 0;
  outline: none;
  padding: 0;
}

.nft-transfer__wrap .nft-transfer__content {
  -webkit-align-self: center;
  align-self: center;
  background: #ffffff;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #000000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-item-align: center;
  line-height: 1;
  margin: 0 auto;
  overflow: auto;
  padding: 4rem;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}

.nft-transfer__wrap .modal-header {
  margin-bottom: 3rem;
}

.nft-transfer__wrap .modal-header .title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.6em;
}

.nft-transfer__wrap .modal-header p {
  font-weight: 700;
  line-height: 1.4;
}

.nft-transfer__wrap.modal p {
  font-size: 1.6rem;
  line-height: 1.9;
  overflow-wrap: break-word;
  text-align: center;
}

.nft-transfer__wrap.modal p .tx-title,
.nft-transfer__wrap.modal p .tx-address {
  font-weight: bold;
}

@media (max-width: 640px) {
  .nft-transfer__wrap.modal p {
    text-align: left;
  }
}
.nft-transfer__wrap .modal-header .btn-wrap {
  display: block;
}

.nft-transfer__wrap .modal-header .btn-wrap .tx-link {
  color: #999999;
  display: block;
  font-weight: 700;
  margin: 0 auto;
  margin-top: 1em;
  text-align: center;
}

.nft-transfer__wrap .modal-header .btn-wrap .tx-link:hover {
  color: #000000;
}

.nft-transfer__wrap .modal_body {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
}

.nft-transfer__wrap .modal-body-list-wrap label span {
  display: block;
}

.nft-transfer__wrap .modal-body-list-wrap label input[type=checkbox] {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}

.nft-transfer__wrap .modal-body-list {
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-box-align: stretch;
  display: grid;
  -ms-flex-align: stretch;
  gap: 2% 3%;
  grid-template-columns: repeat(auto-fit, 31.3%);
  margin: 0 auto;
}

.nft-transfer__wrap .modal-body-list.nft-transfer-category-list {
  gap: 3% 3%;
}

.nft-transfer__wrap .modal-body-list::after {
  /*display: block;
  content: '';
  clear: both;*/
}

.nft-transfer__wrap .list_item {
  position: relative;
}

.nft-transfer__wrap .list_item .check-thumb-wrap {
  bottom: 0;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: relative;
  right: 0;
  top: 0;
  width: 100%;
}

.nft-transfer__wrap .list_item .check-thumb-wrap:before {
  content: "";
  display: block;
  padding-top: 53%;
}

.nft-transfer__wrap .list_item .check-thumb-wrap .check-thumb-wrap-image {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.nft-transfer__wrap .list_item .check-thumb-wrap .check-thumb-wrap-image img {
  font-family: "object-fit: cover;";
  height: 100%;
  max-height: 387px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.nft-transfer__wrap .list_item .check-title {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1em;
  text-align: center;
}

.nft-transfer__wrap .list_item label {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  display: block;
  position: relative;
  word-break: break-all;
}

.nft-transfer__wrap .list_item label input[type=checkbox] + span,
.nft-transfer__wrap .list_item label input[type=radio] + span {
  position: relative;
}

.nft-transfer__wrap .nft-transfer-category-list label input[type=checkbox] + span::before,
.nft-transfer__wrap .nft-transfer-category-list label input[type=checkbox] + span::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  content: "";
  display: inline-block;
  left: inherit;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.nft-transfer__wrap .nft-transfer-category-list label input[type=checkbox] + span::before {
  background-color: transparent;
  border-radius: 100px;
  height: 46px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 46px;
  z-index: 0;
}

.nft-transfer__wrap .nft-transfer-category-list label input[type=checkbox] + span::after {
  height: 21px;
  margin: 5px 8px;
  width: 14px;
  z-index: 1;
}

.nft-transfer__wrap .nft-transfer-category-list label input[type=checkbox]:checked + span::before,
.nft-transfer__wrap .nft-transfer-category-list label input[type=checkbox]:checked + span::after {
  left: inherit;
  position: absolute;
  z-index: 30;
}

.nft-transfer__wrap .nft-transfer-category-list label input[type=checkbox]:checked + span::before {
  background-color: #000000;
  right: 1rem;
  top: 1rem;
}

.nft-transfer__wrap .nft-transfer-category-list label input[type=checkbox]:checked + span::after {
  border: 2px solid #ffffff;
  border-width: 0 2px 2px 0;
  right: 1.7rem;
  top: 1.6rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nft-transfer__wrap .list_item .check-overlay {
  background: rgba(0, 0, 0, 0.2);
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  z-index: 10;
}

.nft-transfer__wrap .list_item label input[type=checkbox]:checked + span .check-overlay {
  opacity: 1;
}

.nft-transfer__wrap .nft-transfer-artist-list .artist-container {
  border: 1px solid #000000;
  height: 100%;
}

.nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-cover {
  background-color: #fafafa;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: relative;
  right: 0;
  top: 0;
  width: 100%;
}

.nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-cover:before {
  content: "";
  display: block;
  padding-top: 53%;
}

.nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-cover .artist-cover-image {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-cover .artist-cover-image img {
  font-family: "object-fit: cover;";
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main {
  padding: 1.5rem 1.3rem;
}

.nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main .artist-main-header {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 1rem;
  width: 100%;
}

.nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main .artist-icon {
  border-radius: 100px;
  display: block;
  height: 46px;
  margin-right: 1rem;
  overflow: hidden;
  width: 46px;
}

.nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main .artist-icon img {
  font-family: "object-fit: cover;";
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main .artist-main-right-header {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 1rem;
  width: 100%;
}

.nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main .artist-name {
  -webkit-flex-basis: calc(100% - 146px);
  flex-basis: calc(100% - 146px);
  -ms-flex-preferred-size: calc(100% - 146px);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-right: 1rem;
  word-break: break-all;
}

.nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main .artist-nft-transfer-btn-wrap {
  -webkit-flex-basis: 76px;
  flex-basis: 76px;
  -ms-flex-preferred-size: 76px;
}

.nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main .artist-nft-transfer-btn {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  min-height: 34px;
  padding: 0.7em 0.4em 0.6em 0.4em;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 76px;
}

.nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main .artist-nft-transfer-btn.nft-transfering {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  color: #000000;
}

.nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main .artist-category {
  display: block;
  margin-bottom: 0.6rem;
  max-height: 3.1em;
  overflow: hidden;
}

.nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main .cate-label {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  color: #777777;
  display: inline-block;
  font-size: 1.2rem;
  margin-bottom: 0.3em;
  margin-right: 0.3em;
  padding: 0.4em 0.3em 0.3em 0.3em;
}

.nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main .artist-bio p {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 1.2rem;
  -webkit-line-clamp: 3;
  line-height: 1.4;
  overflow: hidden;
  word-break: break-all;
}

.nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main .artist-bio p br {
  display: none;
}

.nft-transfer__wrap .foot-btn-wrap {
  margin: 4rem auto 0 auto;
  position: relative;
  text-align: center;
  width: 100%;
}

.nft-transfer__wrap .foot-btn-wrap .btn-wrap-inner + .btn-wrap-inner {
  margin-top: 1rem;
}

.nft-transfer__wrap .nft-transfer-modal__btn {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  font-weight: 700;
}

.nft-transfer__wrap .nft-transfer-modal-back-btn {
  background-color: #ffffff;
  border: 1px solid #999999;
  color: #999999;
}

.nft-transfer__wrap .foot-btn-wrap.btn-wrap-flex .nft-transfer-modal__btn,
.nft-transfer__wrap .foot-btn-wrap.btn-wrap-flex .nft-transfer-modal-back-btn {
  margin: 2rem 0.5rem;
  margin-bottom: 0;
}

.nft-transfer__wrap#nft-transfer-first-modal .modal-content {
  max-width: 900px;
}

.nft-transfer__wrap#nft-transfer-first-modal .title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 4rem;
  text-align: center;
}

.nft-transfer__wrap#nft-transfer-first-modal p {
  color: #999999;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 4rem;
  text-align: center;
}

.nft-transfer__wrap#nft-transfer-first-modal .image_wrap img {
  display: block;
  margin: 0 auto;
  max-width: 360px;
  width: 100%;
}

.nft-transfer__wrap#nft-transfer-first-modal .nft-transfer-modal__btn {
  margin: 4rem auto;
  margin-bottom: 2rem;
}

@media screen and (min-width: 767.98px) {
  .list_item:hover span .check-overlay {
    opacity: 1;
  }
  .nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main .artist-nft-transfer-btn:hover {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    color: #000000;
  }
  .nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main .artist-nft-transfer-btn.nft-transfering:hover {
    background-color: #000000;
    border: 1px solid #000000;
    color: #ffffff;
  }
  .nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main .artist-icon:hover {
    opacity: 0.5;
  }
  .nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main .artist-name:hover {
    color: #999999;
  }
  .nft-transfer__wrap .nft-transfer-modal__btn:hover {
    background-color: #ffffff;
    border: 1px solid #999999;
    color: #999999;
  }
  .nft-transfer__wrap .nft-transfer-modal-back-btn:hover {
    background-color: #000000;
    border: 1px solid #000000;
    color: #ffffff;
  }
  .nft-transfer__wrap .modal-body-list-wrap {
    max-height: 75vh;
  }
}
@media screen and (max-width: 1100px) {
  .nft-transfer__wrap .modal-body-list.nft-transfer-artist-list {
    gap: 1% 3%;
    grid-template-columns: repeat(auto-fit, 48.5%);
  }
}
@media screen and (max-width: 900px) {
  .nft-transfer__wrap .modal-header {
    display: block;
    margin-bottom: 2rem;
  }
  .nft-transfer__wrap .modal-header .title {
    font-size: 1.8rem;
  }
  .nft-transfer__content p {
    font-size: 1.4rem;
  }
  .nft-transfer__wrap .modal-body-list.nft-transfer-category-list {
    gap: 1% 3%;
    grid-template-columns: repeat(auto-fit, 48.5%);
  }
  .nft-transfer__wrap .nft-transfer-category-list label input[type=checkbox] + span::before,
.nft-transfer__wrap .nft-transfer-category-list label input[type=checkbox] + span::after {
    right: 0.5rem;
    top: 0.5rem;
  }
  .nft-transfer__wrap .nft-transfer-category-list label input[type=checkbox] + span::before {
    height: 36px;
    width: 36px;
  }
  .nft-transfer__wrap .nft-transfer-category-list label input[type=checkbox] + span::after {
    height: 20px;
    width: 13px;
  }
  .nft-transfer__wrap .nft-transfer-category-list label input[type=checkbox]:checked + span::before {
    right: 0.5rem;
    top: 0.5rem;
  }
  .nft-transfer__wrap .nft-transfer-category-list label input[type=checkbox]:checked + span::after {
    right: 0.8rem;
    top: 0.5rem;
  }
  .nft-transfer__wrap .list_item .check-title {
    font-size: 1.4rem;
    padding: 0.7em;
  }
  .nft-transfer__wrap .modal-footer {
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: center;
    -webkit-box-pack: end;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-negative: 0;
    -ms-flex-pack: end;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .nft-transfer__wrap .foot-btn-wrap {
    max-width: inherit;
    width: 100%;
  }
  .nft-transfer__wrap .nft-transfer-modal__btn,
.nft-transfer__wrap .nft-transfer-modal-back-btn,
.nft-transfer__wrap .foot-btn-wrap.btn-wrap-flex .nft-transfer-modal__btn,
.nft-transfer__wrap .foot-btn-wrap.btn-wrap-flex .nft-transfer-modal-back-btn {
    font-size: 1.4rem;
    margin: 1rem auto;
    padding: 1em 0.3em 0.8em 0.3em;
  }
  .nft-transfer__wrap .foot-btn-wrap.btn-wrap-flex .nft-transfer-modal__btn,
.nft-transfer__wrap .foot-btn-wrap.btn-wrap-flex .nft-transfer-modal-back-btn {
    min-width: inherit;
  }
  .nft-transfer__wrap .nft-transfer-modal__btn,
.nft-transfer__wrap .nft-transfer-modal-back-btn {
    max-width: inherit;
  }
}
@media screen and (max-width: 767.98px) {
  .nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-cover:before {
    padding-top: 47%;
  }
  .nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main {
    padding: 1.5rem 1rem;
  }
  .nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main .artist-main-right {
    -webkit-flex-basis: calc(100% - 50px);
    flex-basis: calc(100% - 50px);
    -ms-flex-preferred-size: calc(100% - 50px);
  }
  .nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main .artist-icon {
    height: 40px;
    width: 40px;
  }
  .nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main .artist-main-right .artist-main-right-header {
    margin-top: 0.3rem;
  }
  .nft-transfer__wrap .nft-transfer-artist-list .artist-container .artist-main .artist-main-right .cate-label {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 680px) {
  .nft-transfer__wrap .modal-body-list.nft-transfer-artist-list {
    gap: 1.5rem 0;
    grid-template-columns: repeat(auto-fit, 100%);
  }
  .nft-transfer__wrap .foot-btn-wrap.btn-wrap-flex {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .nft-transfer__wrap .nft-transfer-modal__btn,
.nft-transfer__wrap .nft-transfer-modal-back-btn,
.nft-transfer__wrap .foot-btn-wrap.btn-wrap-flex .nft-transfer-modal__btn,
.nft-transfer__wrap .foot-btn-wrap.btn-wrap-flex .nft-transfer-modal-back-btn {
    margin: 1rem 0;
  }
  .nft-transfer__wrap#nft-transfer-first-modal .title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .nft-transfer__wrap#nft-transfer-first-modal p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: left;
  }
  .nft-transfer__wrap#nft-transfer-first-modal .image_wrap img {
    max-width: 60%;
  }
  .nft-transfer__wrap#nft-transfer-first-modal .nft-transfer-modal__btn {
    margin: 2rem auto 2rem auto;
  }
  .nft-transfer__wrap#nft-transfer-first-modal .modal-header {
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media screen and (max-width: 375px) {
  .nft-transfer__wrap .modal-header .title {
    font-size: 1.7rem;
  }
  .nft-transfer__wrap .list_item .check-title {
    font-size: 1.3rem;
    padding: 0.7em 0.2em;
  }
  .nft-transfer__wrap#nft-transfer-first-modal .title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .nft-transfer__wrap#nft-transfer-first-modal p {
    font-size: 1.2rem;
  }
}
.nft_text_replace_download {
  background-color: #fef6eb;
  margin: 30px auto 80px auto;
  max-width: 1000px;
  padding: 40px;
}

@media screen and (max-width: 1099px), print {
  .nft_text_replace_download {
    margin: 2em;
  }
}
@media screen and (max-width: 767.98px) {
  .nft_text_replace_download {
    margin: 1em;
  }
}
.nft_text_replace_download .nft_text_header_replace_download {
  line-height: 1.9;
}

.nft_text_replace_download .nft_text_content_replace_download {
  font-size: 14px;
  line-height: 30px;
  line-height: 1.9;
  margin-top: 10px;
}

@media screen and (max-width: 375px) {
  .nft_text_replace_download .nft_text_content_replace_download {
    font-size: 12px;
  }
}
@media screen and (max-width: 375px) {
  .nft_text_replace_download {
    background-color: #fef6eb;
    font-size: 14px;
    margin: auto;
    margin-bottom: 1.5em;
    max-width: 100%;
    padding: 25px;
  }
  .nft_text_replace_download .nft_text_header_replace_download {
    line-height: 25px;
  }
  .nft_text_replace_download .nft_text_content_replace_download {
    margin-top: 10px;
  }
}
.property-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.property-item {
  border: 1px solid #999999;
  -webkit-flex-basis: calc(50% - 5px);
  flex-basis: calc(50% - 5px);
  -ms-flex-preferred-size: calc(50% - 5px);
  max-width: calc(50% - 5px);
  overflow-wrap: break-word;
  padding: 10px;
}

@media screen and (max-width: 767.98px) {
  .property-wrap {
    /* width: 100%; */
  }
  .property-item {
    /*flex: none;
    width: 100%;
    max-width: 100%;
    margin: 0 15px 15px 0;
    padding: 10px;*/
  }
}
.lb_radi_btn_visibility {
  color: black;
  margin-left: -0.5em;
  margin-right: 1em;
}

.radi_btn_visibility {
  margin-top: 8px;
}

.form-select-input {
  background: url(/assets/img/arrow-down_s_gray.png) 92% 50% no-repeat #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2392156863);
  color: rgba(0, 0, 0, 0.6705882353);
  cursor: pointer;
  float: right;
  font-size: 2rem;
  margin-right: 4em;
  max-height: 50px;
  padding: 5px 10px;
  width: 7pc;
}/*# sourceMappingURL=fat_styles.css.map */