@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, a, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
  word-break: break-all;
}

body {
  -webkit-text-size-adjust: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul:not([class]),
ol:not([class]) {
  padding-left: 1.25em;
}

ul[class],
ol[class] {
  list-style: none;
}

span {
  font-weight: inherit;
}

blockquote, q {
  quotes: none;
}

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

a {
  color: inherit;
}
@media all and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}

a[class] {
  text-decoration: none;
}

ins {
  background-color: #ff9;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

address {
  font-style: normal;
}

sup {
  vertical-align: text-top;
  font-size: 0.75em;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.75em;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgba(19, 33, 75, 0.2);
  margin: 1em 0;
  padding: 0;
}

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

iframe {
  max-width: 100%;
}

/* form
================================================== */
input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}
@media all and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
    font-size: 1.6rem;
  }
}

input[type=text], input[type=email], input[type=tel], textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type=radio], input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

select {
  color: inherit;
}

textarea {
  resize: vertical;
}

button {
  color: inherit;
  font-weight: normal;
  cursor: pointer;
}

/* 02_base
================================================ */
html {
  overflow: auto;
}

body {
  position: relative;
  min-width: 320px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  color: #13214b;
  font-size: 1.4rem;
  line-height: 2.2;
  letter-spacing: 0.1em;
  overflow: hidden;
}
body::before {
  position: absolute;
  content: "";
  z-index: -7;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #edece7;
}
@media all and (min-width: 768px) {
  body {
    min-width: 1120px;
    font-size: 1.6rem;
  }
}

::-moz-selection {
  background: #b1ac97;
  color: #13214b;
}

::selection {
  background: #b1ac97;
  color: #13214b;
}

::-moz-selection {
  background: #b1ac97;
  color: #13214b;
}

.l-wrapper {
  position: relative;
}

@media all and (min-width: 768px) {
  .l-container.is-col2 {
    display: flex;
    width: 1080px;
    margin: 0 auto;
  }
  .l-container.is-col2 .l-contents {
    flex: 1;
  }
  .l-container.is-col2 .l-sidebar {
    width: 288px;
    margin-left: 50px;
  }
}

/* .l-contents-col2
/* サイドバーの順序がPC/SPで変わる場合
/* ※ブログ詳細
================================================ */
@media all and (min-width: 768px) {
  .l-contents-col2 {
    display: flex;
    flex-wrap: wrap;
    width: 1080px;
    margin: 0 auto;
  }
  .l-contents-col2__main {
    order: 1;
    flex: 1;
  }
  .l-contents-col2__main-bottom {
    order: 3;
    width: 100%;
  }
  .l-contents-col2 .l-sidebar {
    order: 2;
    width: 288px;
    margin-left: 50px;
  }
}

/* sp <--> tb <--> pc
-------------------------------------- */
.u-media-query {
  display: none;
  font-family: "sp";
}
@media all and (min-width: 768px) {
  .u-media-query {
    font-family: "tb";
  }
}
@media all and (min-width: 1120px) {
  .u-media-query {
    font-family: "pc";
  }
}

@media all and (max-width: 1119px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-tb {
    display: none !important;
  }
}
@media all and (min-width: 1120px) {
  .u-view-tb {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .u-view-sp {
    display: none !important;
  }
}

@media all and (min-width: 1120px) {
  .u-view-under-tb {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-upper-tb {
    display: none !important;
  }
}

/* nav専用
---------------------------------------- */
@media all and (min-width: 1080px) {
  .u-view-nav-sp {
    display: none !important;
  }
}

@media all and (max-width: 1079px) {
  .u-view-nav-pc {
    display: none !important;
  }
}

/* overflow
-------------------------------------- */
.u-overflow-wrap {
  overflow: auto;
}
.u-overflow-wrap .u-overflow-sec {
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .u-overflow-wrap .u-overflow-sec {
    min-width: 1120px;
  }
}

/* text
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}

/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}
@media all and (min-width: 768px) {
  a.u-alpha {
    transition: all 0.3s ease;
  }
  a.u-alpha:hover {
    opacity: 0.6;
  }
}

a.u-zoom {
  display: block;
  text-decoration: none;
}
a.u-zoom .u-zoom__img {
  display: block;
}
a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  a.u-zoom .u-zoom__img {
    transition: all 0.3s ease;
  }
  a.u-zoom:hover .u-zoom__img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@media all and (min-width: 768px) {
  .u-link-underline {
    pointer-events: none;
    background-image: linear-gradient(90deg, #13214b, #13214b);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0 1px;
    transition: all 0.3s ease;
  }
  a.u-link-underline-wrap:hover .u-link-underline {
    background-image: linear-gradient(90deg, #b1ac97, #b1ac97);
    background-size: 100% 1px;
  }
}

.u-loop-arrow {
  position: relative;
  display: block;
  width: 21px;
  height: 5px;
  overflow: hidden;
  pointer-events: none;
}
.u-loop-arrow::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 21px;
  height: 5px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2221.001%22%20height%3D%225.001%22%20viewBox%3D%220%200%2021.001%205.001%22%3E%3Cpath%20d%3D%22M9324%2C6377l6%2C2.5-6%2C2.5Zm-15%2C3v-1h15v1Z%22%20transform%3D%22translate(-9308.999%20-6376.999)%22%20fill%3D%22%2313214b%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .u-loop-arrow::before {
    transition: all 0.3s ease;
  }
}

.u-loop-line {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  border-bottom: 1px solid #13214b;
  pointer-events: none;
}
@media all and (min-width: 768px) {
  .u-loop-line {
    transition: all 0.3s ease;
  }
}

.u-loop-line02 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  width: 100%;
  pointer-events: none;
}
.u-loop-line02::before, .u-loop-line02::after {
  position: absolute;
  content: "";
  z-index: 0;
  display: block;
  left: 0;
  bottom: 0;
}
.u-loop-line02::before {
  width: 100%;
  border-bottom: 1px solid rgba(19, 33, 75, 0.2);
}
.u-loop-line02::after {
  width: 100px;
  border-bottom: 1px solid #13214b;
}
@media all and (min-width: 768px) {
  .u-loop-line02::before, .u-loop-line02::after {
    transition: all 0.3s ease;
  }
}

@media all and (min-width: 768px) {
  a.u-loop-wrap:hover .u-loop-arrow::before {
    -webkit-animation: rightOutLeftIn 0.6s cubic-bezier(0.17, 0.67, 0.69, 0.99);
    animation: rightOutLeftIn 0.6s cubic-bezier(0.17, 0.67, 0.69, 0.99);
    display: inline-block;
    width: 21px;
    height: 5px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2221.001%22%20height%3D%225.001%22%20viewBox%3D%220%200%2021.001%205.001%22%3E%3Cpath%20d%3D%22M9324%2C6377l6%2C2.5-6%2C2.5Zm-15%2C3v-1h15v1Z%22%20transform%3D%22translate(-9308.999%20-6376.999)%22%20fill%3D%22%23b1ac97%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  a.u-loop-wrap:hover .u-loop-line {
    border-bottom-color: #b1ac97;
    -webkit-animation: rightOutLeftIn 0.9s cubic-bezier(0.17, 0.67, 0.69, 0.99);
    animation: rightOutLeftIn 0.9s cubic-bezier(0.17, 0.67, 0.69, 0.99);
  }
  a.u-loop-wrap:hover .u-loop-line02::before {
    border-bottom-color: rgba(177, 172, 151, 0.2);
  }
  a.u-loop-wrap:hover .u-loop-line.is-reverse {
    border-bottom-color: #b1ac97;
    -webkit-animation: leftOutRightIn 0.9s cubic-bezier(0.17, 0.67, 0.69, 0.99);
    animation: leftOutRightIn 0.9s cubic-bezier(0.17, 0.67, 0.69, 0.99);
  }
  a.u-loop-wrap:hover .u-loop-line02::after {
    border-bottom-color: #b1ac97;
    -webkit-animation: rightOutLeftIn02 1.5s cubic-bezier(0.17, 0.67, 0.69, 0.99);
    animation: rightOutLeftIn02 1.5s cubic-bezier(0.17, 0.67, 0.69, 0.99);
  }
}

/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
}
@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: 1080px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

.u-inner-wide {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
}
@media all and (min-width: 768px) {
  .u-inner-wide {
    width: 100%;
    max-width: 1360px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: none;
  }
}

.u-inner-small {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
}
@media all and (min-width: 768px) {
  .u-inner-small {
    width: 100%;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: none;
  }
}

/* .font
---------------------------------------- */
.u-font-serif {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

.u-font-garamond {
  font-family: "EB Garamond", serif;
  letter-spacing: 0.15em;
  line-height: 1.1;
  font-weight: 400;
}

/* .c-anchor01
================================================ */
.c-anchor01__item-link {
  line-height: 1.7;
  position: relative;
  display: block;
  padding: 18px 20px 18px 0;
  box-sizing: border-box;
  letter-spacing: 0.3em;
  overflow: hidden;
}
.c-anchor01__item-link:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 1px solid #13214b;
  border-bottom: 1px solid #13214b;
  box-sizing: border-box;
}
@media all and (min-width: 768px) {
  .c-anchor01 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -30px -60px;
  }
  .c-anchor01__item {
    width: calc(33.33% - 60px);
    margin: 0 30px 60px;
  }
  .c-anchor01__item-link {
    padding: 16px 30px 16px 0;
    font-size: 1.8rem;
    transition: all 0.3s ease;
  }
  .c-anchor01__item-link:hover {
    color: #b1ac97;
  }
  .c-anchor01__item-link:hover:after {
    border-color: #b1ac97;
  }
  .c-anchor01__item-link:after {
    right: 12px;
    transition: all 0.3s ease;
  }
}

/*  .c-archive01
================================================== */
.c-archive01__item-in {
  position: relative;
  display: block;
  padding: 30px 0 35px;
}
.c-archive01__item-date {
  font-size: 1.2rem;
  color: rgba(19, 33, 75, 0.6);
}
.c-archive01__item-head {
  margin-top: 10px;
  font-size: 1.4rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.7;
}
.c-archive01__item .u-loop-arrow {
  position: absolute;
  right: 0;
  bottom: 20px;
}
.c-archive01__item .u-loop-line {
  border-bottom-color: rgba(19, 33, 75, 0.2);
}
@media all and (min-width: 768px) {
  .c-archive01__item-in {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
    padding: 22px 0 24px;
  }
  .c-archive01__item-date {
    flex-basis: 118px;
    font-size: 1.4rem;
  }
  .c-archive01__item-head {
    margin: 0;
    flex-basis: calc(100% - 25px - 118px);
    -webkit-line-clamp: 1;
    font-size: 1.6rem;
  }
  .c-archive01__item .u-loop-arrow {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .c-archive01__item .u-loop-wrap:hover .u-loop-line {
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
  }
}

/* .c-archive02
================================================ */
.c-archive02 {
  margin: 0 -10px;
}
.c-archive02__item-link {
  display: block;
  padding: 30px 0;
  border-bottom: 1px solid rgba(19, 33, 75, 0.2);
  box-sizing: border-box;
}
.c-archive02__header {
  display: flex;
  align-items: flex-start;
}
.c-archive02__header-img {
  position: relative;
  min-width: 164px;
  width: 164px;
  margin-right: 15px;
  box-sizing: border-box;
}
.c-archive02__header-img::before {
  display: block;
  padding-top: 54.8%;
  content: "";
}
.c-archive02__header-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-archive02__header-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}
.c-archive02__header-play-ico {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  margin: 7px auto 0;
  border: 1px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}
.c-archive02__header-play-ico::before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: 1px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 12px;
  height: 11px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214%22%20height%3D%2216%22%20viewBox%3D%220%200%2014%2016%22%3E%3Cpath%20d%3D%22M8%2C2.016%2C1.723%2C13H14.277L8%2C2.016M8%2C0l8%2C14H0Z%22%20transform%3D%22translate(14)%20rotate(90)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.c-archive02__header-play-txt {
  display: block;
  margin-top: 5px;
  font-size: 1rem;
  color: #fff;
}
.c-archive02__header-area-txt {
  width: 100%;
}
.c-archive02__header-sub {
  line-height: 1.7;
  position: relative;
  padding-left: 24px;
  box-sizing: border-box;
  color: rgba(19, 33, 75, 0.6);
  font-size: 1.2rem;
}
.c-archive02__header-sub:before {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22166px%22%20height%3D%22157px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%237F8598%22%20d%3D%22M110.596%2C62.785%20C96.747%2C62.785%2096.747%2C71.72%2082.947%2C71.72%20C69.122%2C71.72%2069.122%2C62.785%2055.297%2C62.785%20C41.498%2C62.785%2041.498%2C71.72%2027.675%2C71.72%20C18.958%2C71.72%2015.723%2C67.788%2011.68%2C65.353%20L11.68%2C156.998%20L154.956%2C156.999%20L154.956%2C147.776%20L155.10%2C147.776%20L154.956%2C147.728%20L154.956%2C65.353%20C150.276%2C67.788%20147.68%2C71.72%20138.324%2C71.72%20C124.473%2C71.72%20124.473%2C62.785%20110.596%2C62.785%20M89.70%2C119.800%20L89.70%2C88.608%20L140.730%2C88.608%20L140.730%2C119.800%20L89.70%2C119.800%20M29.413%2C145.176%20L29.413%2C83.72%20L73.106%2C83.72%20L73.106%2C145.176%20L29.413%2C145.176%20M145.249%2C0.1%20L20.748%2C0.1%20L0.0%2C33.64%20L0.0%2C49.932%20C13.823%2C49.932%2013.823%2C58.257%2027.623%2C58.257%20C41.447%2C58.257%2041.447%2C49.932%2055.272%2C49.932%20C69.69%2C49.932%2069.71%2C58.257%2082.895%2C58.257%20C96.718%2C58.257%2096.718%2C49.932%20110.570%2C49.932%20L110.568%2C49.933%20C124.419%2C49.933%20124.419%2C58.259%20138.270%2C58.259%20C152.121%2C58.259%20152.121%2C49.934%20165.999%2C49.934%20L165.999%2C33.64%20L145.249%2C0.1%20%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.c-archive02__header-head {
  line-height: 1.7;
  margin-top: 8px;
  font-size: 1.3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.c-archive02__txt {
  line-height: 1.7;
  margin-top: 12px;
  padding: 8px 10px;
  box-sizing: border-box;
  background-color: rgba(19, 33, 75, 0.04);
  font-size: 1.2rem;
}
.c-archive02__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10px;
}
.c-archive02__option-cat {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
}
.c-archive02__option-cat-item {
  margin-right: 8px;
  padding: 2px 0;
  font-size: 1.2rem;
  color: rgba(19, 33, 75, 0.6);
  line-height: 1.7;
}
.c-archive02__option-cat-item.has-bg {
  display: inline-flex;
  padding: 2px 10px;
  background: #13214b;
  color: #fff;
}
.c-archive02__option-price {
  line-height: 1.7;
  margin-top: 5px;
}
.c-archive02__option-price-num {
  font-size: 1.8rem;
}
.c-archive02__notfound {
  margin-top: 30px;
  text-align: center;
}
@media all and (min-width: 768px) {
  .c-archive02 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px -52px;
  }
  .c-archive02__item {
    width: calc(33.33% - 40px);
    margin: 0 20px 52px;
  }
  .c-archive02__item-link {
    padding: 0;
    border-bottom: 0;
  }
  .c-archive02__item-link:hover .c-archive02__header-img::after {
    opacity: 1;
  }
  .c-archive02__item-link:hover .c-archive02__header-play-ico {
    background: #fff;
  }
  .c-archive02__item-link:hover .c-archive02__header-play-ico::before {
    display: inline-block;
    width: 16px;
    height: 14px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214%22%20height%3D%2216%22%20viewBox%3D%220%200%2014%2016%22%3E%3Cpath%20d%3D%22M8%2C2.016%2C1.723%2C13H14.277L8%2C2.016M8%2C0l8%2C14H0Z%22%20transform%3D%22translate(14)%20rotate(90)%22%20fill%3D%22%23717993%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
    box-shadow: none;
  }
  .c-archive02__item-link:hover .c-archive02__header-play-txt-in {
    -webkit-animation: topOutBottomIn 0.7s cubic-bezier(0.17, 0.67, 0.69, 0.99);
    animation: topOutBottomIn 0.7s cubic-bezier(0.17, 0.67, 0.69, 0.99);
  }
  .c-archive02__item-link:hover .c-archive02__header-head-in {
    background-size: 100% 1px;
  }
  .c-archive02__header {
    display: block;
  }
  .c-archive02__header-img {
    min-width: 0;
    width: 100%;
    margin-right: 0;
  }
  .c-archive02__header-img::after {
    position: absolute;
    content: "";
    z-index: 1;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(19, 33, 75, 0.7);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .c-archive02__header-play-ico {
    width: 46px;
    height: 46px;
    margin-top: 15px;
    transition: all 0.3s ease;
  }
  .c-archive02__header-play-ico::before {
    width: 16px;
    height: 14px;
    margin-left: 2px;
  }
  .c-archive02__header-play-txt {
    margin-top: 8px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  .c-archive02__header-play-txt-in {
    display: block;
    transition: all 0.3s ease;
  }
  .c-archive02__header-sub {
    margin-top: 30px;
    padding-left: 28px;
    font-size: 1.4rem;
  }
  .c-archive02__header-sub:before {
    top: 1px;
    width: 18px;
    height: 18px;
  }
  .c-archive02__header-head {
    margin-top: 12px;
    font-size: 1.8rem;
    -webkit-line-clamp: 2;
  }
  .c-archive02__header-head-in {
    background-image: linear-gradient(90deg, #13214b, #13214b);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0 1px;
    transition: background 0.9s ease;
  }
  .c-archive02__txt {
    margin-top: 18px;
    font-size: 1.4rem;
  }
  .c-archive02__option {
    margin-top: 15px;
  }
  .c-archive02__option-cat-item {
    margin-right: 15px;
    font-size: 1.4rem;
  }
  .c-archive02__option-cat-item.has-bg {
    padding: 2px 15px;
  }
  .c-archive02__option-price {
    font-size: 1.4rem;
  }
}

.c-bg-beige {
  background-color: #e4e4df;
}

/*  .c-btn01.is-back
================================================== */
.c-btn01.is-back .c-btn01__link {
  flex-direction: row-reverse;
}
.c-btn01.is-back .c-btn01__arrow {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

/*  .c-btn01.is-small-pc
================================================== */
@media all and (min-width: 768px) {
  .c-btn01.is-small-pc {
    width: 126px;
  }
  .c-btn01.is-small-pc .c-btn01__link-txt {
    font-size: 1.3rem;
  }
}

/*  .c-btn01.is-white
================================================== */
.c-btn01.is-white .c-btn01__link-txt {
  color: #fff;
}
.c-btn01.is-white .u-loop-arrow::before {
  display: inline-block;
  width: 21px;
  height: 5px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2221.001%22%20height%3D%225.001%22%20viewBox%3D%220%200%2021.001%205.001%22%3E%3Cpath%20d%3D%22M9324%2C6377l6%2C2.5-6%2C2.5Zm-15%2C3v-1h15v1Z%22%20transform%3D%22translate(-9308.999%20-6376.999)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.c-btn01.is-white .u-loop-line {
  border-bottom-color: #fff;
}
/*  .c-btn01
================================================== */
.c-btn01 {
  width: 147px;
}
.c-btn01__link {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  padding-bottom: 15px;
}
.c-btn01__link-txt {
  font-size: 1.6rem;
  color: #13214b;
}
@media all and (min-width: 768px) {
  .c-btn01__link {
    padding-bottom: 12px;
  }
  .c-btn01__link-txt {
    transition: all 0.3s ease;
  }
  .c-btn01__link:hover .c-btn01__link-txt {
    color: #b1ac97;
  }
}

/*  .c-btn02
================================================== */
.c-btn02 {
  max-width: 326px;
  width: 100%;
}
.c-btn02__link {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #fff;
  height: 80px;
}
.c-btn02__link-txt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
}
.c-btn02__link-txt::before {
  margin-right: 10px;
  display: inline-block;
  width: 18px;
  height: 12px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217.999%22%20height%3D%2212%22%20viewBox%3D%220%200%2017.999%2012%22%3E%3Cpath%20d%3D%22M8725%2C6389v-9.49l9%2C6.229%2C9-6.229V6389Zm0-10.91V6377h18v1.09l-9%2C6.229Z%22%20transform%3D%22translate(-8725%20-6377)%22%20fill%3D%22%2313214b%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .c-btn02 {
    max-width: 400px;
  }
  .c-btn02__link {
    height: 100px;
    transition: all 0.3s ease;
  }
  .c-btn02__link-txt {
    transition: all 0.3s ease;
  }
  .c-btn02__link:hover {
    background: #b1ac97;
  }
  .c-btn02__link:hover .c-btn02__link-txt {
    color: #fff;
  }
  .c-btn02__link:hover .c-btn02__link-txt::before {
    display: inline-block;
    width: 18px;
    height: 12px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217.999%22%20height%3D%2212%22%20viewBox%3D%220%200%2017.999%2012%22%3E%3Cpath%20d%3D%22M8725%2C6389v-9.49l9%2C6.229%2C9-6.229V6389Zm0-10.91V6377h18v1.09l-9%2C6.229Z%22%20transform%3D%22translate(-8725%20-6377)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
}

/*  .c-card01.is-column3-pc
================================================== */
@media all and (min-width: 768px) {
  .c-card01.is-column3-pc {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
  }
}

/*  .c-card01
================================================== */
.c-card01 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 16px;
}
.c-card01__item {
  box-sizing: border-box;
  position: relative;
}
.c-card01__item-in {
  display: block;
}
.c-card01__item-img {
  position: relative;
  min-width: 100%;
}
.c-card01__item-img::before {
  display: block;
  padding-top: 54.8%;
  content: "";
}
.c-card01__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-card01__item-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}
.c-card01__item-play-ico {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  margin: 7px auto 0;
  border: 1px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}
.c-card01__item-play-ico::before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: 1px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 12px;
  height: 11px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214%22%20height%3D%2216%22%20viewBox%3D%220%200%2014%2016%22%3E%3Cpath%20d%3D%22M8%2C2.016%2C1.723%2C13H14.277L8%2C2.016M8%2C0l8%2C14H0Z%22%20transform%3D%22translate(14)%20rotate(90)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.c-card01__item-play-txt {
  display: block;
  margin-top: 5px;
  font-size: 1rem;
  color: #fff;
}
.c-card01__item-head {
  margin-top: 20px;
  line-height: 1.7;
  font-size: 1.3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: #13214b;
}
.c-card01__item-cat {
  margin-top: 10px;
}
.c-card01__item-cat-item {
  padding: 2px 0;
  font-size: 1.2rem;
  color: rgba(19, 33, 75, 0.6);
  line-height: 1.7;
}
.c-card01__item-cat-item.has-bg {
  display: inline-flex;
  padding: 2px 10px;
  background: #13214b;
  color: #fff;
}
@media all and (max-width: 767px) {
  .c-card01__item[data-anime-delay]:nth-child(odd) {
    transition-delay: 0s;
  }
  .c-card01__item[data-anime-delay]:nth-child(even) {
    transition-delay: 0.2s;
  }
}
@media all and (min-width: 768px) {
  .c-card01 {
    display: -ms-grid;
    display: grid;
    -webkit-text-size-adjust: none;
  }
  .c-card01.is-not-slider-pc .slick-track {
    margin: 0 !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
  }
  .c-card01__item-in:hover .c-card01__item-img::after {
    opacity: 1;
  }
  .c-card01__item-in:hover .c-card01__item-play-ico {
    background: #fff;
  }
  .c-card01__item-in:hover .c-card01__item-play-ico::before {
    display: inline-block;
    width: 16px;
    height: 14px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214%22%20height%3D%2216%22%20viewBox%3D%220%200%2014%2016%22%3E%3Cpath%20d%3D%22M8%2C2.016%2C1.723%2C13H14.277L8%2C2.016M8%2C0l8%2C14H0Z%22%20transform%3D%22translate(14)%20rotate(90)%22%20fill%3D%22%23717993%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
    box-shadow: none;
  }
  .c-card01__item-in:hover .c-card01__item-play-txt-in {
    -webkit-animation: topOutBottomIn 0.7s cubic-bezier(0.17, 0.67, 0.69, 0.99);
    animation: topOutBottomIn 0.7s cubic-bezier(0.17, 0.67, 0.69, 0.99);
  }
  .c-card01__item-in:hover .c-card01__item-head-in {
    background-size: 100% 1px;
  }
  .c-card01__item-img {
    position: relative;
  }
  .c-card01__item-img::after {
    position: absolute;
    content: "";
    z-index: 1;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(19, 33, 75, 0.7);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .c-card01__item-play-ico {
    width: 46px;
    height: 46px;
    margin-top: 15px;
    transition: all 0.3s ease;
  }
  .c-card01__item-play-ico::before {
    width: 16px;
    height: 14px;
    margin-left: 2px;
  }
  .c-card01__item-play-txt {
    margin-top: 8px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  .c-card01__item-play-txt-in {
    display: block;
    transition: all 0.3s ease;
  }
  .c-card01__item-head {
    margin-top: 27px;
    font-size: 1.8rem;
    -webkit-line-clamp: 2;
  }
  .c-card01__item-head-in {
    background-image: linear-gradient(90deg, #13214b, #13214b);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0 1px;
    transition: background 0.9s ease;
  }
  .c-card01__item-cat {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
  }
  .c-card01__item-cat-item {
    flex-basis: auto;
    margin-right: 15px;
    font-size: 1.4rem;
  }
  .c-card01__item-cat-item.has-bg {
    padding: 2px 15px;
  }
}

/* .c-card01__notfound
================================================ */
.c-card01__notfound {
  padding: 20px 0;
  box-sizing: border-box;
  background-color: #fff;
  text-align: center;
}

/*  .c-card02.is-archive
================================================== */
.c-card02.is-archive .c-card02__item + .c-card02__item {
  margin-top: 40px;
}
.c-card02.is-archive .c-card02__item-in {
  margin: 0;
}
@media all and (min-width: 768px) {
  .c-card02.is-archive {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 25px auto 25px auto;
    grid-template-columns: repeat(3, auto);
    gap: 60px 25px;
  }
  .c-card02.is-archive .c-card02__item + .c-card02__item {
    margin-top: 0;
  }
  .c-card02.is-archive .c-card02__item-area-txt {
    margin-top: 15px;
  }
  .c-card02.is-archive .c-card02__item-head {
    margin-top: 10px;
    font-size: 1.6rem;
  }
}

/*  .c-card02.is-column3-pc
================================================== */
@media all and (min-width: 768px) {
  .c-card02.is-column3-pc {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 320px 60px 320px 60px 320px;
    grid-template-columns: repeat(3, 320px);
    gap: 0 60px;
  }
}

/*  .c-card02
================================================== */
.c-card02__item {
  box-sizing: border-box;
  position: relative;
}
.c-card02__item-in {
  position: relative;
  display: block;
  margin: 0 10px;
  padding-bottom: 35px;
  overflow: hidden;
}
.c-card02__item-img {
  position: relative;
  min-width: 100%;
}
.c-card02__item-img.is-border {
  border: 1px solid rgba(19, 33, 75, 0.2);
  box-sizing: border-box;
}
.c-card02__item-img::before {
  display: block;
  padding-top: 70%;
  content: "";
}
.c-card02__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-card02__item-area-txt {
  margin-top: 25px;
}
.c-card02__item-date {
  font-size: 1.2rem;
  color: rgba(19, 33, 75, 0.6);
}
.c-card02__item-head {
  margin-top: 10px;
  line-height: 1.7;
  font-size: 1.6rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.c-card02__item-txt {
  margin-top: 12px;
  line-height: 1.7;
  font-size: 1.3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.c-card02__item .u-loop-arrow {
  position: absolute;
  bottom: 19px;
  right: 0;
}
@media all and (min-width: 768px) {
  .c-card02 {
    display: -ms-grid;
    display: grid;
  }
  .c-card02__item-in {
    margin: 0;
    padding: 0 0 44px;
  }
  .c-card02__item-in:hover .c-card02__item-img::after {
    opacity: 1;
  }
  .c-card02__item-img {
    position: relative;
  }
  .c-card02__item-img::after {
    position: absolute;
    content: "";
    z-index: 1;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(19, 33, 75, 0.7);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .c-card02__item-date {
    font-size: 1.4rem;
  }
  .c-card02__item-head {
    margin-top: 17px;
    font-size: 1.8rem;
  }
  .c-card02__item-txt {
    font-size: 1.4rem;
  }
}

/* .c-card02__notfound
================================================ */
.c-card02__notfound {
  padding: 20px 0;
  box-sizing: border-box;
  background-color: #fff;
  text-align: center;
}

/* .c-content01
================================================ */
.c-content01 {
  overflow: hidden;
}
.c-content01 > *:nth-child(1) {
  margin-top: 0 !important;
}
.c-content01 > *:last-child {
  margin-bottom: 0 !important;
}
.c-content01 h1,
.c-content01 h2,
.c-content01 h3,
.c-content01 h4,
.c-content01 h5,
.c-content01 h6 {
  line-height: 1.7;
  letter-spacing: 0.3em;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  clear: both;
}
.c-content01 h1,
.c-content01 h2,
.c-content01 h6 {
  margin: 32px 0 14px;
  font-size: 1.6rem;
}
.c-content01 h3 {
  margin: 35px 0 20px;
  font-size: 2rem;
}
.c-content01 h4 {
  margin: 32px 0 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid #CFD2DB;
  box-sizing: border-box;
  font-size: 1.8rem;
}
.c-content01 h5 {
  position: relative;
  margin: 32px 0 14px;
  padding-left: 10px;
  box-sizing: border-box;
  font-size: 1.6rem;
}
.c-content01 h5:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  margin: 4px 0 2px;
  background-color: #13214b;
}
.c-content01 p {
  margin-bottom: 22px;
}
.c-content01 strong {
  background: linear-gradient(transparent 0%, #b1ac97 0%);
  color: #fff;
  font-weight: 400;
}
.c-content01 a {
  color: #A5975C;
  text-decoration: underline !important;
}
.c-content01 ul,
.c-content01 ol {
  list-style: none;
  margin-bottom: 18px;
  padding-left: 0;
}
.c-content01 ul li {
  position: relative;
  padding-left: 1.4em;
  box-sizing: border-box;
}
.c-content01 ul li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.c-content01 ol {
  counter-reset: number 0;
}
.c-content01 ol li {
  position: relative;
  padding-left: 1.4em;
  box-sizing: border-box;
  counter-increment: number 1;
}
.c-content01 ol li:before {
  content: counter(number) ".";
  position: absolute;
  top: 0;
  left: 0;
}
.c-content01 blockquote {
  position: relative;
  margin: 34px 0 32px;
  padding: 46px 30px 40px;
  box-sizing: border-box;
  background: #E4E4DF;
}
.c-content01 blockquote:before {
  content: '"';
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: "Noto Serif JP", serif;
  color: rgba(19, 33, 75, 0.2);
  font-size: 5rem;
  font-weight: 700;
  pointer-events: none;
}
.c-content01 blockquote p {
  margin-bottom: 0;
}
.c-content01 blockquote p + p {
  margin-top: 1.3em;
}
.c-content01 table {
  table-layout: auto !important;
  border-top: 1px solid rgba(19, 33, 75, 0.2);
  box-sizing: border-box;
}
.c-content01 table th, .c-content01 table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(19, 33, 75, 0.2);
  box-sizing: border-box;
  text-align: left;
}
.c-content01 table th {
  background-color: rgba(19, 33, 75, 0.04);
  font-size: 1.3rem;
  font-weight: 400;
}
.c-content01 table td {
  padding-right: 0;
  font-size: 1.2rem;
}
@media all and (max-width: 767px) {
  .c-content01 img {
    float: none !important;
    display: block;
    max-width: 100%;
    width: auto !important;
    height: auto !important;
    margin: 36px auto 24px;
  }
}
@media all and (min-width: 768px) {
  .c-content01 h1,
.c-content01 h2,
.c-content01 h6 {
    margin: 42px 0 12px;
    font-size: 1.8rem;
  }
  .c-content01 h3 {
    margin: 56px 0 22px;
    font-size: 2.2rem;
  }
  .c-content01 h4 {
    margin: 42px 0 16px;
    font-size: 2rem;
  }
  .c-content01 h5 {
    margin: 42px 0 12px;
    padding-left: 12px;
    font-size: 1.8rem;
  }
  .c-content01 h5:before {
    margin: 6px 0 4px;
  }
  .c-content01 p {
    margin-bottom: 34px;
  }
  .c-content01 a:hover {
    text-decoration: none !important;
  }
  .c-content01 ul,
.c-content01 ol {
    margin-bottom: 34px;
  }
  .c-content01 blockquote {
    margin: 44px 0 32px;
    padding: 44px 40px 46px;
  }
  .c-content01 blockquote:before {
    left: 30px;
  }
  .c-content01 img {
    display: block;
    margin: 44px auto 46px;
    padding: 0 40px;
  }
  .c-content01 table th, .c-content01 table td {
    padding: 12px 30px;
    vertical-align: middle;
  }
  .c-content01 table th {
    font-size: 1.6rem;
  }
  .c-content01 table td {
    padding-right: 0;
    font-size: 1.5rem;
  }
}

/*  .c-cv01
================================================== */
.c-cv01 {
  background: #353a4b;
}
.c-cv01__inner {
  padding-top: 60px;
  padding-bottom: 70px;
  text-align: center;
}
.c-cv01-head {
  color: #fff;
}
.c-cv01-head__en {
  font-size: 2.2rem;
}
.c-cv01-head__ja {
  margin-top: 5px;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
}
.c-cv01__txt {
  margin-top: 20px;
  color: #fff;
}
.c-cv01__btn {
  margin: 45px auto 0;
}
@media all and (min-width: 768px) {
  .c-cv01__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 158px;
    padding-bottom: 137px;
    text-align: left;
  }
  .c-cv01-head {
    position: relative;
    flex-basis: 100%;
  }
  .c-cv01-head::after {
    position: absolute;
    content: "";
    z-index: 0;
    display: block;
    top: 50%;
    left: 244px;
    right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  .c-cv01-head__en {
    font-size: 3.2rem;
  }
  .c-cv01-head__ja {
    font-size: 1.3rem;
  }
  .c-cv01__txt {
    flex-basis: 50%;
    margin-top: 50px;
    text-align: left;
  }
  .c-cv01__btn {
    margin: 34px 0 0;
  }
}

/* .c-faq01
================================================ */
.c-faq01__item + .c-faq01__item {
  margin-top: 10px;
}
.c-faq01__q {
  position: relative;
  padding: 15px 50px 15px 36px;
  box-sizing: border-box;
  border-bottom: 1px solid #CFD2DB;
}
.c-faq01__q:after {
  content: "";
  position: absolute;
  top: 20px;
  right: 12px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 12px;
  height: 12px;
  border-right: 1px solid #13214b;
  border-bottom: 1px solid #13214b;
  box-sizing: border-box;
}
.c-faq01__q.is-active:after {
  -webkit-transform: rotate(-45deg) scaleY(-1);
  transform: rotate(-45deg) scaleY(-1);
  margin-top: 8px;
}
.c-faq01__q-ico {
  line-height: 1;
  position: absolute;
  top: 18px;
  left: 0;
  font-size: 2.2rem;
}
.c-faq01__a {
  padding: 15px 20px;
  box-sizing: border-box;
  background-color: #E4E4DF;
}
.c-faq01__a-link {
  color: #A5975C;
  text-decoration: underline !important;
}
@media all and (min-width: 768px) {
  .c-faq01__item + .c-faq01__item {
    margin-top: 0;
  }
  .c-faq01__q {
    padding: 28px 70px 28px 52px;
  }
  .c-faq01__q:after {
    top: 50%;
    right: 32px;
    width: 10px;
    height: 10px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }
  .c-faq01__q.is-active:after {
    -webkit-transform: translateY(-50%) rotate(-45deg) scaleY(-1);
    transform: translateY(-50%) rotate(-45deg) scaleY(-1);
    margin-top: 0;
  }
  .c-faq01__q-ico {
    top: 28px;
    font-size: 2.9rem;
  }
  .c-faq01__a {
    padding: 25px 30px 20px;
  }
  .c-faq01__a-link:hover {
    text-decoration: none !important;
  }
}

/*  .c-filter01
================================================== */
.c-filter01 {
  padding: 35px 25px;
  background: rgba(19, 33, 75, 0.04);
}
.c-filter01__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.c-filter01__item + .c-filter01__item {
  margin-top: 20px;
}
.c-filter01__item-label {
  flex-basis: 80px;
  color: rgba(19, 33, 75, 0.6);
}
.c-filter01__item-select {
  flex-basis: calc(100% - 80px);
  background: no-repeat 20px 50%/auto 15px;
}
.c-filter01__item-select.is-area {
  background-image: url(../img/common/ico_area01.png);
}
.c-filter01__item-select.is-genre {
  background-image: url(../img/common/ico_genre01.png);
}
.c-filter01__item-select select {
  display: block;
  width: 100%;
  height: 54px;
  padding-right: 25px;
  padding-left: 40px;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  background: no-repeat right 20px top 50%/12px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAYAAADE6YVjAAAABHNCSVQICAgIfAhkiAAAAOxJREFUSEvt1cERgjAQBdBdvOmFwQbSgXQgXrEItQNLwA4sAYuQq5RgCWkAhpNHY1CBUSDJCsNFcs7sy/7JJggDLBzAgBEhpTzG9c9x2cx3JwBuwqOQlINis8P84A63Y8bjDHPAArwggg1C7PqAHLYOZb2NEOIqoRXOmR8D4rI8VEeoAIp6EjrITjzbglks5UVXqA7AKeXn7XMY+4DagLx+OfFdIBXwgfzakQ6oIVTIBGhETCFToBXRQRRAibRDIOcKvGoOXtdU9VJo/5PGW/euKIQe0HZSnK4JMgWMke/oKAAJqaDpPuVRQHmtH+AxqZYNTp7iAAAAAElFTkSuQmCC");
  box-sizing: border-box;
  border: 1px solid #13214b;
  border-radius: 2px;
  letter-spacing: 0.1em;
}
@media all and (max-width: 374px) {
  .c-filter01 {
    padding-right: 10px;
    padding-left: 10px;
  }
  .c-filter01__item-label {
    flex-basis: 65px;
    font-size: 1.2rem;
  }
  .c-filter01__item-select {
    flex-basis: calc(100% - 65px);
    background-position: 10px 50%;
  }
  .c-filter01__item-select select {
    padding-left: 25px;
    background-position: right 10px top 50%;
  }
}
@media all and (min-width: 768px) {
  .c-filter01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1080px;
    margin: auto;
    padding: 35px 0;
  }
  .c-filter01__item {
    flex-basis: 345px;
    justify-content: flex-start;
  }
  .c-filter01__item + .c-filter01__item {
    flex-basis: 365px;
    margin: 0 0 0 40px;
  }
  .c-filter01__item-label {
    width: auto;
    flex-basis: auto;
    margin-right: 18px;
    font-size: 1.4rem;
  }
  .c-filter01__item-select {
    flex-basis: 280px;
    background-position: 25px 50%;
  }
  .c-filter01__item-select select {
    font-size: 1.4rem;
    padding-left: 45px;
    background-position: right 25px top 50%;
  }
}

/*  .c-head01
================================================== */
.c-head01 {
  margin-bottom: 30px;
  text-align: center;
}
.c-head01__icon {
  width: 30px;
  margin: auto;
}
.c-head01__en {
  margin-top: 14px;
  font-size: 2.4rem;
}
.c-head01__ja {
  margin-top: 5px;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
}
@media all and (min-width: 768px) {
  .c-head01 {
    margin-bottom: 40px;
  }
  .c-head01__icon {
    width: 40px;
  }
  .c-head01__en {
    margin-top: 25px;
    font-size: 3.6rem;
  }
  .c-head01__ja {
    font-size: 1.5rem;
  }
}

/*  .c-head02
================================================== */
.c-head02 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 35px;
}
.c-head02__en {
  font-size: 2.2rem;
}
.c-head02__ja {
  margin-left: 20px;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
}
@media all and (min-width: 768px) {
  .c-head02 {
    align-items: flex-end;
    margin-bottom: 55px;
  }
  .c-head02__en {
    font-size: 3.2rem;
  }
  .c-head02__ja {
    margin-bottom: -3px;
    margin-left: 18px;
    font-size: 1.3rem;
  }
}

/* .c-head03
================================================ */
.c-head03 {
  line-height: 1.7;
  margin-bottom: 35px;
  padding-bottom: 17px;
  box-sizing: border-box;
  border-bottom: 1px solid #13214b;
  font-size: 2.2rem;
  letter-spacing: 0.3em;
}
@media all and (min-width: 768px) {
  .c-head03 {
    margin-bottom: 48px;
    padding-bottom: 21px;
    font-size: 3rem;
  }
}

/* .c-head04
================================================ */
.c-head04 {
  line-height: 1.7;
  position: relative;
  margin-bottom: 12px;
  padding-left: 10px;
  box-sizing: border-box;
  font-size: 1.6rem;
  letter-spacing: 0.3em;
}
.c-head04:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background-color: #13214b;
}
@media all and (min-width: 768px) {
  .c-head04 {
    padding-left: 12px;
    font-size: 1.8rem;
  }
  .c-head04:before {
    margin: 6px 0 4px;
  }
}

/* .c-links01
================================================ */
.c-links01 {
  position: relative;
  z-index: 1;
}
.c-links01:before {
  content: "";
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100% - 70px);
  background-color: #E4E4DF;
  z-index: -1;
  pointer-events: none;
}
.c-links01__inner {
  padding-bottom: 70px;
}
.c-links01-btns__item + .c-links01-btns__item {
  margin-top: 20px;
}
.c-links01-btns__item-link {
  display: block;
  padding: 0 20px 25px;
  border-top: 2px solid #13214b;
  box-sizing: border-box;
  background-color: #fff;
}
.c-links01-btns__area-head {
  position: relative;
  margin-bottom: 18px;
  padding: 25px 40px 20px 54px;
  box-sizing: border-box;
  overflow: hidden;
}
.c-links01-btns__ico {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  margin-top: 2px;
}
.c-links01-btns__ico.is-blog {
  left: 4px;
  width: 32px;
}
.c-links01-btns__en {
  font-size: 1.7rem;
}
.c-links01-btns__head {
  line-height: 1.7;
  margin-top: 5px;
  font-size: 1rem;
  letter-spacing: 0.3em;
}
.c-links01-btns__arrow {
  position: absolute;
  top: 50%;
  right: 0;
}
.c-links01-btns__line {
  border-color: rgba(19, 33, 75, 0.2);
}
.c-links01-btns__txt {
  line-height: 1.7;
  font-size: 1.3rem;
}
@media all and (min-width: 768px) {
  .c-links01__inner {
    max-width: 1405px;
    padding-bottom: 100px;
  }
  .c-links01-btns {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px -20px;
  }
  .c-links01-btns__item {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
  }
  .c-links01-btns__item + .c-links01-btns__item {
    margin-top: 0;
  }
  .c-links01-btns__item-link {
    padding: 0 50px 45px;
  }
  .c-links01-btns__area-head {
    margin-bottom: 20px;
    padding: 48px 40px 22px 68px;
  }
  .c-links01-btns__ico {
    width: 50px;
    margin-top: 12px;
  }
  .c-links01-btns__ico.is-blog {
    left: 4px;
    width: 40px;
  }
  .c-links01-btns__en {
    font-size: 2.2rem;
  }
  .c-links01-btns__head {
    margin-top: 8px;
    font-size: 1.4rem;
  }
  .c-links01-btns__arrow {
    margin-top: 10px;
  }
  .c-links01-btns__txt {
    font-size: 1.4rem;
  }
}
@media (max-width: 1225px) and (min-width: 768px) {
  .c-links01-btns__item-link {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* .c-pager01
================================================ */
.c-pager01 {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin: 46px -25px -20px;
  padding: 0 50px;
  box-sizing: border-box;
  overflow: hidden;
}
.c-pager01 li {
  margin: 0 10px 20px;
}
.c-pager01 li a, .c-pager01 li span {
  line-height: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 34px;
  padding: 0 5px;
  box-sizing: border-box;
  color: #717993;
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
}
.c-pager01 li a:after, .c-pager01 li span:after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 0;
  height: 2px;
  background-color: #13214b;
  pointer-events: none;
  opacity: 0;
}
.c-pager01 li.current span {
  color: #13214b;
}
.c-pager01 li.current span:after {
  opacity: 1;
}
.c-pager01 li.previous, .c-pager01 li.next {
  position: absolute;
  top: 0;
}
.c-pager01 li.previous a, .c-pager01 li.next a {
  display: block;
  white-space: nowrap;
  width: 30px;
  padding: 0;
  text-indent: 100%;
  overflow: hidden;
}
.c-pager01 li.previous a:before, .c-pager01 li.next a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #13214b;
  border-right: 2px solid #13214b;
  box-sizing: border-box;
}
.c-pager01 li.previous {
  left: 0;
}
.c-pager01 li.previous a:before {
  right: auto;
  left: 12px;
  -webkit-transform: translateY(-50%) rotate(-45deg) scaleX(-1);
  transform: translateY(-50%) rotate(-45deg) scaleX(-1);
}
.c-pager01 li.next {
  right: 0;
}
.c-pager01 li.pages, .c-pager01 li.first, .c-pager01 li.extend, .c-pager01 li.last {
  display: none;
}
@media all and (min-width: 768px) {
  .c-pager01 {
    margin: 76px -10px -20px;
    padding: 0;
  }
  .c-pager01 li a, .c-pager01 li span {
    padding: 0 10px;
    transition: all 0.3s ease;
  }
  .c-pager01 li a:after, .c-pager01 li span:after {
    right: 8px;
    left: 8px;
    transition: all 0.3s ease;
  }
  .c-pager01 li a:hover, .c-pager01 li span:hover {
    color: #13214b;
  }
  .c-pager01 li a:hover:after, .c-pager01 li span:hover:after {
    opacity: 1;
  }
  .c-pager01 li.previous, .c-pager01 li.next {
    position: static;
  }
  .c-pager01 li.previous a, .c-pager01 li.next a {
    width: 30px;
    transition: all 0.3s ease;
  }
  .c-pager01 li.previous a:before, .c-pager01 li.next a:before {
    right: 12px;
  }
  .c-pager01 li.previous a:after, .c-pager01 li.next a:after {
    content: none;
  }
  .c-pager01 li.previous a:hover, .c-pager01 li.next a:hover {
    opacity: 0.7;
  }
  .c-pager01 li.previous {
    margin-right: 58px;
  }
  .c-pager01 li.previous a:before {
    right: auto;
    left: 12px;
  }
  .c-pager01 li.next {
    margin-left: 58px;
  }
}

/* .c-pager02
================================================ */
.c-pager02 {
  line-height: 1.7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 38px;
  letter-spacing: 0.15em;
}
.c-pager02__previous, .c-pager02__next {
  margin-bottom: 34px;
}
.c-pager02__previous a, .c-pager02__next a {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  font-size: 1.6rem;
}
.c-pager02__previous {
  margin-right: auto;
}
.c-pager02__next {
  margin-left: auto;
  text-align: right;
}
.c-pager02__all {
  width: 100%;
}
.c-pager02__all a {
  position: relative;
  display: block;
  max-width: 174px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 8px 30px;
  box-sizing: border-box;
  font-size: 1.6rem;
  text-align: right;
  text-decoration: none;
  overflow: hidden;
}
.c-pager02__all-arrow {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) scaleX(-1);
  transform: translateY(-50%) scaleX(-1);
  margin-top: -2px;
}
@media all and (min-width: 768px) {
  .c-pager02 {
    position: relative;
    margin-top: 80px;
    padding: 0 120px;
    box-sizing: border-box;
  }
  .c-pager02__previous, .c-pager02__next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0 !important;
  }
  .c-pager02__previous a, .c-pager02__next a {
    transition: all 0.3s ease;
  }
  .c-pager02__previous a:hover, .c-pager02__next a:hover {
    color: #b1ac97;
  }
  .c-pager02__previous {
    left: 0;
  }
  .c-pager02__next {
    right: 0;
  }
  .c-pager02__all a {
    transition: all 0.3s ease;
  }
  .c-pager02__all a:hover {
    color: #b1ac97;
  }
  .c-pager02__all-arrow {
    margin-top: -4px;
  }
}

/* .c-set01
================================================== */
.c-set01__inner {
  padding-top: 68px;
  padding-bottom: 68px;
}
.c-set01__header {
  margin-bottom: 30px;
  padding-bottom: 17px;
  box-sizing: border-box;
  border-bottom: 1px solid #13214b;
}
.c-set01__header h1 {
  line-height: 1.7;
  font-size: 2rem;
  letter-spacing: 0.3em;
}
.c-set01__header time {
  color: rgba(19, 33, 75, 0.6);
}
.c-set01__sec + .c-set01__sec {
  margin-top: 60px;
}
.c-set01__table th {
  text-align: left;
}
@media all and (max-width: 767px) {
  .c-set01__table table, .c-set01__table tbody, .c-set01__table tr, .c-set01__table th, .c-set01__table td {
    display: block;
    box-sizing: border-box;
  }
  .c-set01__table th, .c-set01__table td {
    padding: 10px 0;
  }
  .c-set01__table th {
    padding-bottom: 0;
  }
  .c-set01__table td {
    border-bottom: 1px solid rgba(19, 33, 75, 0.2);
  }
}
@media all and (min-width: 768px) {
  .c-set01__inner {
    padding-bottom: 160px;
  }
  .c-set01__header {
    margin-bottom: 54px;
    padding-bottom: 26px;
  }
  .c-set01__header h1 {
    font-size: 2.6rem;
  }
  .c-set01__header time {
    font-size: 1.4rem;
  }
  .c-set01__sec + .c-set01__sec {
    margin-top: 100px;
  }
  .c-set01__table th, .c-set01__table td {
    padding: 20px;
    border-bottom: 1px solid rgba(19, 33, 75, 0.2);
    box-sizing: border-box;
  }
  .c-set01__table th {
    width: 250px;
  }
}

/* .c-single01
================================================ */
.c-single01__inner {
  padding-top: 78px;
  padding-bottom: 50px;
}
@media all and (min-width: 768px) {
  .c-single01__inner {
    padding-top: 76px;
    padding-bottom: 120px;
  }
}

/* .c-single01-share
================================================ */
.c-single01-share {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.c-single01-share__head {
  margin-right: 30px;
  font-size: 1.6rem;
}
.c-single01-share__area-ico {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.c-single01-share__area-ico .c-single01-share__ico + .c-single01-share__ico {
  margin-left: 20px;
}
.c-single01-share__ico {
  width: 32px;
}
.c-single01-share__ico-link {
  position: relative;
  display: block;
  height: 32px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
}
.c-single01-share__ico-link:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.c-single01-share__ico.is-twitter .c-single01-share__ico-link:before {
  display: inline-block;
  width: 32px;
  height: 26px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2226.008%22%20viewBox%3D%220%200%2032%2026.008%22%3E%3Cpath%20d%3D%22M583.122%2C118.541c12.078%2C0%2C18.685-10.007%2C18.685-18.685q0-.426-.019-.849a13.367%2C13.367%2C0%2C0%2C0%2C3.272-3.4%2C13.073%2C13.073%2C0%2C0%2C1-3.772%2C1.034%2C6.589%2C6.589%2C0%2C0%2C0%2C2.887-3.632%2C13.2%2C13.2%2C0%2C0%2C1-4.169%2C1.594%2C6.573%2C6.573%2C0%2C0%2C0-11.191%2C5.988A18.638%2C18.638%2C0%2C0%2C1%2C575.28%2C93.73a6.573%2C6.573%2C0%2C0%2C0%2C2.032%2C8.768%2C6.518%2C6.518%2C0%2C0%2C1-2.974-.822v.085a6.571%2C6.571%2C0%2C0%2C0%2C5.268%2C6.437%2C6.6%2C6.6%2C0%2C0%2C1-1.731.23%2C6.53%2C6.53%2C0%2C0%2C1-1.234-.118%2C6.572%2C6.572%2C0%2C0%2C0%2C6.141%2C4.56%2C13.179%2C13.179%2C0%2C0%2C1-8.157%2C2.817%2C13.444%2C13.444%2C0%2C0%2C1-1.566-.091%2C18.586%2C18.586%2C0%2C0%2C0%2C10.066%2C2.945%22%20transform%3D%22translate(-573.06%20-92.534)%22%20fill%3D%22%2313214b%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.c-single01-share__ico.is-facebook .c-single01-share__ico-link:before {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2231.806%22%20viewBox%3D%220%200%2032%2031.806%22%3E%3Cpath%20d%3D%22M-343-708a16%2C16%2C0%2C0%2C0-16-16%2C16%2C16%2C0%2C0%2C0-16%2C16%2C16%2C16%2C0%2C0%2C0%2C13.5%2C15.806v-11.181h-4.062V-708h4.063v-3.525c0-4.01%2C2.389-6.225%2C6.043-6.225a24.615%2C24.615%2C0%2C0%2C1%2C3.582.313v3.938h-2.017A2.313%2C2.313%2C0%2C0%2C0-356.5-711v3h4.438l-.709%2C4.625H-356.5v11.181A16%2C16%2C0%2C0%2C0-343-708Z%22%20transform%3D%22translate(375%20724)%22%20fill%3D%22%2313214b%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.c-single01-share.is-footer {
  justify-content: center;
  margin: 50px 0 0;
  padding: 18px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
}
@media all and (min-width: 768px) {
  .c-single01-share {
    margin-bottom: 0;
  }
  .c-single01-share.is-footer {
    margin: 60px 0 0;
  }
}

/* .c-single01
================================================ */
.c-single01-header {
  margin-bottom: 30px;
  padding-bottom: 17px;
  box-sizing: border-box;
  border-bottom: 1px solid #13214b;
}
.c-single01-header-meta {
  margin-bottom: 4px;
}
.c-single01-header-meta__date {
  color: rgba(19, 33, 75, 0.6);
}
.c-single01-header__head {
  line-height: 1.7;
  font-size: 2rem;
  letter-spacing: 0.3em;
}
.c-single01__eyecatch {
  margin-bottom: 40px;
  text-align: center;
}
.c-single01 #toc_container {
  margin-bottom: 50px;
  padding: 18px 10px 10px;
  border: 1px solid #13214b;
  box-sizing: border-box;
}
.c-single01 #toc_container .toc_title {
  line-height: 1.7;
  margin-bottom: 12px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
}
.c-single01 #toc_container ul {
  list-style: none;
  padding-left: 0;
}
.c-single01 #toc_container .toc_list {
  margin: 0;
  padding: 18px 20px;
  box-sizing: border-box;
  background-color: #E4E4DF;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}
.c-single01 #toc_container .toc_list li {
  padding-left: 0;
}
.c-single01 #toc_container .toc_list li + li {
  margin-top: 15px;
}
.c-single01 #toc_container .toc_list li:before {
  content: none;
}
.c-single01 #toc_container .toc_list li a {
  line-height: 1.7;
  display: block;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(19, 33, 75, 0.2);
  box-sizing: border-box;
  color: #13214b;
  font-size: 1.5rem;
  text-decoration: none !important;
}
.c-single01 #toc_container .toc_list li .toc_number:after {
  content: ".";
}
.c-single01 #toc_container .toc_list li .toc_number:not(.toc_depth_1) {
  display: none !important;
}
.c-single01 #toc_container .toc_list li > ul {
  margin: 14px 0 0;
}
.c-single01 #toc_container .toc_list li > ul li + li {
  margin-top: 6px;
}
.c-single01 #toc_container .toc_list li > ul li a {
  position: relative;
  padding: 0 0 0 1em;
  border-bottom: 0;
  font-size: 1.3rem;
}
.c-single01 #toc_container .toc_list li > ul li a:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 1px;
  background: #13214b;
}
.c-single01 #toc_container .toc_list li > ul li > ul {
  margin: 6px 0 0 0.9em;
}
.c-single01 #toc_container .toc_list li > ul li > ul li + li {
  margin-top: 4px;
}
.c-single01 #toc_container .toc_list li > ul li > ul li a {
  padding: 0;
  color: #717993;
  font-size: 1.1rem;
}
.c-single01 #toc_container .toc_list li > ul li > ul li a:before {
  content: none;
}
.c-single01-content {
  overflow: hidden;
}
.c-single01-content > *:not(#toc_container):nth-child(1) {
  margin-top: 0 !important;
}
.c-single01-content > *:last-child {
  margin-bottom: 0 !important;
}
.c-single01-content h1,
.c-single01-content h2,
.c-single01-content h3,
.c-single01-content h4,
.c-single01-content h5,
.c-single01-content h6 {
  line-height: 1.7;
  letter-spacing: 0.3em;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  clear: both;
}
.c-single01-content h1,
.c-single01-content h5,
.c-single01-content h6 {
  margin: 32px 0 14px;
  font-size: 1.6rem;
}
.c-single01-content h2 {
  margin: 50px 0 20px;
  font-size: 2rem;
}
.c-single01-content h3 {
  margin: 32px 0 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid #CFD2DB;
  box-sizing: border-box;
  font-size: 1.8rem;
}
.c-single01-content h4 {
  position: relative;
  margin: 32px 0 14px;
  padding-left: 10px;
  box-sizing: border-box;
  font-size: 1.6rem;
}
.c-single01-content h4:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  margin: 4px 0 2px;
  background-color: #13214b;
}
.c-single01-content p {
  margin-bottom: 22px;
}
.c-single01-content strong {
  background: linear-gradient(transparent 0%, #b1ac97 0%);
  color: #fff;
  font-weight: 400;
}
.c-single01-content a {
  color: #A5975C;
  text-decoration: underline !important;
}
.c-single01-content ul,
.c-single01-content ol {
  list-style: none;
  margin-bottom: 18px;
  padding-left: 0;
}
.c-single01-content ul li {
  position: relative;
  padding-left: 1.4em;
  box-sizing: border-box;
}
.c-single01-content ul li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.c-single01-content ol {
  counter-reset: number 0;
}
.c-single01-content ol li {
  position: relative;
  padding-left: 1.4em;
  box-sizing: border-box;
  counter-increment: number 1;
}
.c-single01-content ol li:before {
  content: counter(number) ".";
  position: absolute;
  top: 0;
  left: 0;
}
.c-single01-content blockquote {
  position: relative;
  margin: 34px 0 32px;
  padding: 46px 30px 40px;
  box-sizing: border-box;
  background: #E4E4DF;
}
.c-single01-content blockquote:before {
  content: '"';
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: "Noto Serif JP", serif;
  color: rgba(19, 33, 75, 0.2);
  font-size: 5rem;
  font-weight: 700;
  pointer-events: none;
}
.c-single01-content blockquote p {
  margin-bottom: 0;
}
.c-single01-content blockquote p + p {
  margin-top: 1.3em;
}
.c-single01-content img {
  display: block;
  max-width: 100%;
  width: auto;
  margin: 36px auto 24px;
}
@media all and (min-width: 768px) {
  .c-single01-header {
    margin-bottom: 54px;
    padding-bottom: 26px;
  }
  .c-single01-header-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .c-single01-header-meta__date {
    margin-right: 40px;
    font-size: 1.4rem;
  }
  .c-single01-header__head {
    font-size: 2.6rem;
  }
  .c-single01__eyecatch {
    margin-bottom: 50px;
  }
  .c-single01 #toc_container {
    margin-bottom: 56px;
    padding: 18px 20px 20px;
  }
  .c-single01 #toc_container .toc_title {
    margin-bottom: 16px;
    font-size: 1.8rem;
  }
  .c-single01 #toc_container .toc_list {
    padding: 28px 30px;
  }
  .c-single01 #toc_container .toc_list li + li {
    margin-top: 25px;
  }
  .c-single01 #toc_container .toc_list li a {
    padding-bottom: 9px;
    font-size: 1.6rem;
    transition: all 0.3s ease;
  }
  .c-single01 #toc_container .toc_list li a:hover {
    color: #b1ac97;
  }
  .c-single01 #toc_container .toc_list li > ul li + li {
    margin-top: 8px;
  }
  .c-single01 #toc_container .toc_list li > ul li a {
    font-size: 1.4rem;
  }
  .c-single01 #toc_container .toc_list li > ul li a:before {
    top: 11px;
  }
  .c-single01 #toc_container .toc_list li > ul li > ul li + li {
    margin-top: 6px;
  }
  .c-single01 #toc_container .toc_list li > ul li > ul li a {
    font-size: 1.2rem;
  }
  .c-single01-content h1,
.c-single01-content h5,
.c-single01-content h6 {
    margin: 42px 0 12px;
    font-size: 1.8rem;
  }
  .c-single01-content h2 {
    margin: 56px 0 22px;
    font-size: 2.2rem;
  }
  .c-single01-content h3 {
    margin: 42px 0 16px;
    font-size: 2rem;
  }
  .c-single01-content h4 {
    margin: 42px 0 12px;
    padding-left: 12px;
    font-size: 1.8rem;
  }
  .c-single01-content h4:before {
    margin: 6px 0 4px;
  }
  .c-single01-content p {
    margin-bottom: 34px;
  }
  .c-single01-content a:hover {
    text-decoration: none !important;
  }
  .c-single01-content ul,
.c-single01-content ol {
    margin-bottom: 34px;
  }
  .c-single01-content blockquote {
    margin: 44px 0 32px;
    padding: 44px 40px 46px;
  }
  .c-single01-content blockquote:before {
    left: 30px;
  }
  .c-single01-content img.alignright {
    display: inline;
    margin: 44px auto 46px;
    padding-left: 40px;
    float: right;
  }
  .c-single01-content img.alignleft {
    display: inline;
    margin: 44px auto 46px;
    padding-right: 40px;
    float: left;
  }
  .c-single01-content img,
.c-single01-content img.aligncenter {
    display: block;
    margin: 44px auto 46px;
  }
}

/* .c-single01-relation
================================================ */
.c-single01-relation {
  position: relative;
  z-index: 1;
}
.c-single01-relation:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e4e4df;
  pointer-events: none;
  z-index: -1;
}
.c-single01-relation__inner {
  padding-top: 48px;
  padding-bottom: 70px;
}
@media all and (min-width: 768px) {
  .c-single01-relation:before {
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
  }
  .c-single01-relation__inner {
    padding-top: 118px;
    padding-bottom: 140px;
  }
}
@media (max-width: 1120px) and (min-width: 768px) {
  .c-single01-relation:before {
    width: 1940px;
    margin-left: -970px;
  }
}

/* .c-single02
================================================ */
.c-single02__inner {
  padding-top: 78px;
  padding-bottom: 70px;
}
.c-single02__header-cat {
  display: flex;
  flex-wrap: wrap;
}
.c-single02__header-cat-item {
  margin-right: 8px;
}
.c-single02__header-cat-item-link {
  padding: 2px 0;
  font-size: 1.2rem;
  color: rgba(19, 33, 75, 0.6);
  line-height: 1.7;
}
.c-single02__header-cat-item.has-bg .c-single02__header-cat-item-link {
  display: inline-flex;
  padding: 2px 10px;
  background: #13214b;
  color: #fff;
}
.c-single02__header-head {
  line-height: 1.7;
  margin-top: 5px;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
.c-single02__movie {
  margin: 25px -10px 0;
}
.c-single02__movie-in {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.c-single02__movie-in iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
@media all and (min-width: 768px) {
  .c-single02__inner {
    padding-top: 80px;
    padding-bottom: 120px;
  }
  .c-single02__header-cat-item {
    margin-right: 15px;
  }
  .c-single02__header-cat-item-link {
    font-size: 1.4rem;
  }
  .c-single02__header-cat-item.has-bg .c-single02__header-cat-item-link {
    padding: 4px 15px;
    transition: all 0.3s ease;
  }
  .c-single02__header-cat-item.has-bg .c-single02__header-cat-item-link:hover {
    background-color: #b1ac97;
  }
  .c-single02__header-head {
    margin-top: 15px;
    font-size: 2.4rem;
  }
  .c-single02__movie {
    margin: 37px 0 0;
  }
}

/* .c-single02-info
================================================ */
.c-single02-info__sns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
.c-single02-info__sns-head {
  margin-right: 30px;
  font-size: 1.6rem;
}
.c-single02-info__sns-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.c-single02-info__sns-item {
  width: 32px;
}
.c-single02-info__sns-item + .c-single02-info__sns-item {
  margin-left: 15px;
}
.c-single02-info__sns-item-link {
  position: relative;
  display: block;
  height: 32px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
}
.c-single02-info__sns-item-link:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.c-single02-info__sns-item.is-twitter .c-single02-info__sns-item-link:before {
  display: inline-block;
  width: 32px;
  height: 26px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2226.008%22%20viewBox%3D%220%200%2032%2026.008%22%3E%3Cpath%20d%3D%22M583.122%2C118.541c12.078%2C0%2C18.685-10.007%2C18.685-18.685q0-.426-.019-.849a13.367%2C13.367%2C0%2C0%2C0%2C3.272-3.4%2C13.073%2C13.073%2C0%2C0%2C1-3.772%2C1.034%2C6.589%2C6.589%2C0%2C0%2C0%2C2.887-3.632%2C13.2%2C13.2%2C0%2C0%2C1-4.169%2C1.594%2C6.573%2C6.573%2C0%2C0%2C0-11.191%2C5.988A18.638%2C18.638%2C0%2C0%2C1%2C575.28%2C93.73a6.573%2C6.573%2C0%2C0%2C0%2C2.032%2C8.768%2C6.518%2C6.518%2C0%2C0%2C1-2.974-.822v.085a6.571%2C6.571%2C0%2C0%2C0%2C5.268%2C6.437%2C6.6%2C6.6%2C0%2C0%2C1-1.731.23%2C6.53%2C6.53%2C0%2C0%2C1-1.234-.118%2C6.572%2C6.572%2C0%2C0%2C0%2C6.141%2C4.56%2C13.179%2C13.179%2C0%2C0%2C1-8.157%2C2.817%2C13.444%2C13.444%2C0%2C0%2C1-1.566-.091%2C18.586%2C18.586%2C0%2C0%2C0%2C10.066%2C2.945%22%20transform%3D%22translate(-573.06%20-92.534)%22%20fill%3D%22%2313214b%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.c-single02-info__sns-item.is-facebook .c-single02-info__sns-item-link:before {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2231.806%22%20viewBox%3D%220%200%2032%2031.806%22%3E%3Cpath%20d%3D%22M-343-708a16%2C16%2C0%2C0%2C0-16-16%2C16%2C16%2C0%2C0%2C0-16%2C16%2C16%2C16%2C0%2C0%2C0%2C13.5%2C15.806v-11.181h-4.062V-708h4.063v-3.525c0-4.01%2C2.389-6.225%2C6.043-6.225a24.615%2C24.615%2C0%2C0%2C1%2C3.582.313v3.938h-2.017A2.313%2C2.313%2C0%2C0%2C0-356.5-711v3h4.438l-.709%2C4.625H-356.5v11.181A16%2C16%2C0%2C0%2C0-343-708Z%22%20transform%3D%22translate(375%20724)%22%20fill%3D%22%2313214b%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .c-single02-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 60px;
  }
  .c-single02-info__sns {
    margin-top: 20px;
  }
}

/* .c-single02-info-detail
================================================ */
.c-single02-info-detail {
  margin-top: 25px;
}
.c-single02-info-detail__notbuy {
  margin-top: 25px;
  padding: 10px;
  text-align: center;
  background-color: rgba(19, 33, 75, 0.04);
}
.c-single02-info-detail__price {
  line-height: 1.7;
}
.c-single02-info-detail__price .sale-badge {
  margin-right: 5px;
  color: #df2f2f;
  font-weight: 700;
}
.c-single02-info-detail__price .before-price {
  margin-right: 5px;
  text-decoration: line-through;
}
.c-single02-info-detail__price .sale-priod {
  margin-top: 10px;
}
.c-single02-info-detail__price-products-num {
  font-size: 2.2rem;
}
.c-single02-info-detail__price-delivery {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  box-sizing: border-box;
  background-color: rgba(19, 33, 75, 0.04);
}
.c-single02-info-detail__option {
  margin-top: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(19, 33, 75, 0.2);
  box-sizing: border-box;
}
.c-single02-info-detail__option + .c-single02-info-detail__option {
  border-top: 0;
  margin-top: 20px;
  padding-top: 0;
}
.c-single02-info-detail__option .makeshop-option-wrap, .c-single02-info-detail__option-item {
  display: flex;
  align-items: center;
}
.c-single02-info-detail__option .makeshop-option-wrap + .c-single02-info-detail__option .makeshop-option-wrap, .c-single02-info-detail__option .makeshop-option-wrap + .c-single02-info-detail__option-item, .c-single02-info-detail__option-item + .c-single02-info-detail__option .makeshop-option-wrap, .c-single02-info-detail__option-item + .c-single02-info-detail__option-item {
  margin-top: 20px;
}
.c-single02-info-detail__option .makeshop-option-wrap + .makeshop-option-wrap {
  margin-top: 20px;
}
.c-single02-info-detail__option .makeshop-option-label, .c-single02-info-detail__option-head {
  line-height: 1.7;
  min-width: 95px;
  width: 95px;
  color: rgba(19, 33, 75, 0.6);
}
.c-single02-info-detail__option .makeshop-option-select-wrap, .c-single02-info-detail__option-input {
  width: 100%;
}
.c-single02-info-detail__option .makeshop-option-select-wrap input, .c-single02-info-detail__option-input input {
  position: relative;
  display: block;
  width: 100%;
  height: 54px;
  padding: 10px 50px 10px 18px;
  box-sizing: border-box;
  border: 1px solid #13214b;
  border-radius: 2px;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
}
.c-single02-info-detail__option .makeshop-option-select-wrap select, .c-single02-info-detail__option-input select {
  position: relative;
  display: block;
  width: 100%;
  height: 54px;
  padding: 10px 50px 10px 18px;
  box-sizing: border-box;
  border: 1px solid #13214b;
  border-radius: 2px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAYAAADE6YVjAAAABHNCSVQICAgIfAhkiAAAAOxJREFUSEvt1cERgjAQBdBdvOmFwQbSgXQgXrEItQNLwA4sAYuQq5RgCWkAhpNHY1CBUSDJCsNFcs7sy/7JJggDLBzAgBEhpTzG9c9x2cx3JwBuwqOQlINis8P84A63Y8bjDHPAArwggg1C7PqAHLYOZb2NEOIqoRXOmR8D4rI8VEeoAIp6EjrITjzbglks5UVXqA7AKeXn7XMY+4DagLx+OfFdIBXwgfzakQ6oIVTIBGhETCFToBXRQRRAibRDIOcKvGoOXtdU9VJo/5PGW/euKIQe0HZSnK4JMgWMke/oKAAJqaDpPuVRQHmtH+AxqZYNTp7iAAAAAElFTkSuQmCC") no-repeat center right 20px/12px;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  cursor: pointer;
}
.c-single02-info-detail__option .makeshop-option-select-wrap select::-ms-expand, .c-single02-info-detail__option-input select::-ms-expand {
  display: none;
}
.c-single02-info-detail__cart {
  max-width: 325px;
  width: 100%;
  margin: 25px auto 0;
}
.c-single02-info-detail__cart-link {
  line-height: 1.7;
  display: block;
  padding: 27px 0;
  box-sizing: border-box;
  background-color: #13214b;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
}
.c-single02-info-detail__cart-link:before {
  display: inline-block;
  width: 27px;
  height: 25px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220.833%22%20height%3D%2218.614%22%20viewBox%3D%220%200%2020.833%2018.614%22%3E%3Cpath%20d%3D%22M14.456%2C16.81a1.8%2C1.8%2C0%2C1%2C1%2C1.8%2C1.8A1.8%2C1.8%2C0%2C0%2C1%2C14.456%2C16.81Zm.768%2C0a1.036%2C1.036%2C0%2C1%2C0%2C1.036-1.036A1.036%2C1.036%2C0%2C0%2C0%2C15.224%2C16.81Zm-8.777%2C0a1.8%2C1.8%2C0%2C1%2C1%2C1.8%2C1.8A1.8%2C1.8%2C0%2C0%2C1%2C6.447%2C16.81Zm.767%2C0A1.036%2C1.036%2C0%2C1%2C0%2C8.25%2C15.774%2C1.036%2C1.036%2C0%2C0%2C0%2C7.214%2C16.81Zm-.573-2.8a.384.384%2C0%2C0%2C1-.373-.288L5.195%2C9.5V9.487l-.1-.406a.308.308%2C0%2C0%2C1%2C0-.091L3.253%2C1.029A.354.354%2C0%2C0%2C0%2C2.911.768H.383A.384.384%2C0%2C0%2C1%2C.383%2C0H2.906A1.122%2C1.122%2C0%2C0%2C1%2C4%2C.848L5.947%2C9.307l1%2C3.941H17.69l-.011%2C0a.384.384%2C0%2C0%2C1%2C0%2C.768Zm11.2-2.65H8.858a.383.383%2C0%2C0%2C1%2C0-.767h8.988a.961.961%2C0%2C0%2C0%2C.959-.814V9.756L20.07%2C4.192a.6.6%2C0%2C0%2C0-.595-.683H6.3a.384.384%2C0%2C0%2C1%2C0-.768H19.475a1.351%2C1.351%2C0%2C0%2C1%2C1.339%2C1.583V4.35L19.548%2C9.913a1.727%2C1.727%2C0%2C0%2C1-1.7%2C1.448Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
  margin: -5px 20px 0 0;
}
.c-single02-info-detail-btns {
  margin-top: 20px;
}
.c-single02-info-detail-btns__item + .c-single02-info-detail-btns__item {
  margin-top: 8px;
}
.c-single02-info-detail-btns__item-link {
  line-height: 1.7;
  font-size: 1.5rem;
  text-decoration: underline !important;
}
.c-single02-info-detail-btns__item-link:before {
  margin: -1px 10px 0 0;
}
.c-single02-info-detail-btns__item.is-favorite .c-single02-info-detail-btns__item-link:before {
  display: inline-block;
  width: 18px;
  height: 17px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22218px%22%20height%3D%22194px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%2313214b%22%20d%3D%22M101.843%2C190.888%20C98.967%2C188.912%2095.989%2C186.774%2092.724%2C184.372%20C86.916%2C180.99%2081.96%2C175.575%2075.412%2C170.922%20C61.661%2C159.798%2048.820%2C147.597%2037.11%2C134.433%20C24.93%2C119.872%2014.825%2C106.243%208.711%2C92.804%20C1.362%2C76.698%20-1.0%2C60.707%201.875%2C46.590%20C4.645%2C32.643%2012.421%2C20.188%2023.740%2C11.567%20C33.741%2C4.65%2045.910%2C0.9%2058.418%2C0.9%20C62.270%2C0.9%2066.112%2C0.396%2069.886%2C1.163%20C77.912%2C2.843%2085.484%2C6.218%2092.95%2C11.64%20C98.316%2C15.657%20104.79%2C20.839%20109.304%2C26.538%20C113.252%2C22.460%20117.408%2C18.588%20121.755%2C14.937%20L122.120%2C14.628%20C127.167%2C10.150%20132.940%2C6.564%20139.192%2C4.21%20C145.828%2C1.377%20152.909%2C0.27%20160.53%2C0.44%20C176.342%2C0.1%20191.888%2C6.847%20202.837%2C18.895%20C214.876%2C32.243%20220.0%2C51.40%20217.11%2C70.101%20L217.330%2C69.769%20L215.831%2C75.959%20C214.943%2C79.568%20213.829%2C83.118%20212.498%2C86.589%20C207.261%2C100.365%20198.566%2C114.377%20185.920%2C129.430%20C174.150%2C143.225%20161.210%2C155.980%20147.244%2C167.553%20C141.747%2C172.182%20135.992%2C176.764%20130.150%2C181.198%20C126.897%2C183.659%20123.679%2C186.10%20120.574%2C188.217%20C120.4%2C188.630%20119.411%2C189.86%20118.784%2C189.567%20C116.764%2C191.111%20114.492%2C192.861%20112.5%2C193.615%20C111.181%2C193.870%20110.323%2C194.0%20109.460%2C194.1%20C106.350%2C193.999%20103.748%2C192.206%20101.843%2C190.888%20ZM31.215%2C21.844%20C17.314%2C32.416%2010.787%2C50.533%2014.177%2C69.118%20C18.44%2C90.309%2031.786%2C108.680%2041.792%2C120.660%20C53.411%2C134.558%2067.561%2C148.218%2085.33%2C162.416%20C92.462%2C168.461%2099.949%2C174.143%20107.298%2C179.298%20C107.571%2C179.481%20107.846%2C179.697%20108.120%2C179.913%20C108.482%2C180.208%20108.863%2C180.479%20109.261%2C180.725%20C109.329%2C180.670%20109.398%2C180.625%20109.478%2C180.569%20C111.258%2C179.342%20113.142%2C178.8%20115.241%2C176.486%20C119.110%2C173.698%20123.69%2C170.715%20127.34%2C167.638%20L127.512%2C167.260%20C130.605%2C164.838%20133.675%2C162.368%20136.653%2C159.901%20C154.272%2C145.305%20168.343%2C131.325%20179.652%2C117.193%20C195.401%2C97.504%20203.504%2C80.685%20205.112%2C64.260%20C206.905%2C46.91%20198.928%2C29.0%20184.297%2C19.672%20C177.116%2C15.80%20168.767%2C12.640%20160.241%2C12.641%20C159.555%2C12.641%20158.872%2C12.653%20158.186%2C12.688%20C147.860%2C13.167%20138.387%2C17.246%20129.234%2C25.159%20C125.234%2C28.513%20121.435%2C32.101%20117.857%2C35.902%20C117.503%2C36.281%20117.171%2C36.671%20116.840%2C37.56%20C114.980%2C39.229%20112.869%2C41.701%20109.308%2C41.701%20C108.845%2C41.697%20108.383%2C41.654%20107.928%2C41.572%20C105.76%2C41.57%20103.500%2C39.135%20102.120%2C37.446%20C100.875%2C35.936%2099.461%2C34.494%2098.113%2C33.160%20C94.247%2C29.274%2090.162%2C25.610%2085.880%2C22.187%20C78.20%2C16.62%2068.334%2C12.743%2058.366%2C12.758%20C48.566%2C12.750%2039.31%2C15.941%2031.215%2C21.847%20L31.215%2C21.844%20Z%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.c-single02-info-detail-btns__item.is-contact .c-single02-info-detail-btns__item-link:before {
  display: inline-block;
  width: 18px;
  height: 12px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22247px%22%20height%3D%22173px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%2313214b%22%20d%3D%22M0.1%2C173.2%20L0.1%2C0.3%20L246.998%2C0.3%20L246.998%2C173.2%20L0.1%2C173.2%20ZM17.829%2C155.238%20L229.140%2C155.238%20L229.140%2C33.967%20L123.476%2C120.99%20L17.829%2C33.974%20L17.829%2C155.238%20ZM123.476%2C97.137%20L220.869%2C17.754%20L26.100%2C17.754%20L123.476%2C97.137%20Z%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .c-single02-info-detail {
    margin-top: 0;
    width: 560px;
    order: 1;
  }
  .c-single02-info-detail__notbuy {
    padding: 20px;
  }
  .c-single02-info-detail__price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .c-single02-info-detail__price-products {
    margin-right: 20px;
    font-size: 1.4rem;
  }
  .c-single02-info-detail__price-delivery {
    margin-top: 0;
    padding: 8px 10px;
    font-size: 1.4rem;
  }
  .c-single02-info-detail__option {
    margin-top: 24px;
    padding-top: 34px;
  }
  .c-single02-info-detail__option + .c-single02-info-detail__option {
    margin-top: 20px;
    padding-top: 0;
  }
  .c-single02-info-detail__option-head {
    font-size: 1.4rem;
  }
  .c-single02-info-detail__option-input input.is-small,
.c-single02-info-detail__option-input select.is-small {
    width: 200px;
  }
  .c-single02-info-detail__cart {
    max-width: none;
    margin: 36px auto 0;
  }
  .c-single02-info-detail__cart-link {
    padding: 22px 0;
    font-size: 1.6rem;
    transition: all 0.3s ease;
  }
  .c-single02-info-detail__cart-link:before {
    margin: -6px 15px 0 0;
  }
  .c-single02-info-detail__cart-link:hover {
    background-color: #b1ac97;
  }
  .c-single02-info-detail-btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 14px;
  }
  .c-single02-info-detail-btns__item {
    margin-right: 20px;
  }
  .c-single02-info-detail-btns__item + .c-single02-info-detail-btns__item {
    margin-top: 0;
  }
  .c-single02-info-detail-btns__item-link {
    font-size: 1.6rem;
  }
  .c-single02-info-detail-btns__item-link:hover {
    text-decoration: none !important;
  }
}

/* .c-single02-info-gallery
================================================ */
.c-single02-info-gallery {
  margin-top: 40px;
}
.c-single02-info-gallery__slider-img {
  display: block !important;
}
.c-single02-info-gallery__slider-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media all and (min-width: 768px) {
  .c-single02-info-gallery {
    order: 3;
    width: 100%;
    margin-top: 75px;
  }
  .c-single02-info-gallery__slider.is-not-slider-pc .slick-track {
    margin: 0 !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
  }
}

/* .c-single02-info-shop
================================================ */
.c-single02-info-shop {
  margin-top: 40px;
}
.c-single02-info-shop__content {
  padding: 18px 20px;
  box-sizing: border-box;
}
.c-single02-info-shop__content-head {
  line-height: 1.7;
  position: relative;
  margin-bottom: 4px;
  padding-left: 35px;
  box-sizing: border-box;
  color: rgba(19, 33, 75, 0.6);
  font-size: 1.6rem;
  font-weight: 400;
}
.c-single02-info-shop__content-head:before {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-block;
  width: 22px;
  height: 22px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22166px%22%20height%3D%22157px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%237F8598%22%20d%3D%22M110.596%2C62.785%20C96.747%2C62.785%2096.747%2C71.72%2082.947%2C71.72%20C69.122%2C71.72%2069.122%2C62.785%2055.297%2C62.785%20C41.498%2C62.785%2041.498%2C71.72%2027.675%2C71.72%20C18.958%2C71.72%2015.723%2C67.788%2011.68%2C65.353%20L11.68%2C156.998%20L154.956%2C156.999%20L154.956%2C147.776%20L155.10%2C147.776%20L154.956%2C147.728%20L154.956%2C65.353%20C150.276%2C67.788%20147.68%2C71.72%20138.324%2C71.72%20C124.473%2C71.72%20124.473%2C62.785%20110.596%2C62.785%20M89.70%2C119.800%20L89.70%2C88.608%20L140.730%2C88.608%20L140.730%2C119.800%20L89.70%2C119.800%20M29.413%2C145.176%20L29.413%2C83.72%20L73.106%2C83.72%20L73.106%2C145.176%20L29.413%2C145.176%20M145.249%2C0.1%20L20.748%2C0.1%20L0.0%2C33.64%20L0.0%2C49.932%20C13.823%2C49.932%2013.823%2C58.257%2027.623%2C58.257%20C41.447%2C58.257%2041.447%2C49.932%2055.272%2C49.932%20C69.69%2C49.932%2069.71%2C58.257%2082.895%2C58.257%20C96.718%2C58.257%2096.718%2C49.932%20110.570%2C49.932%20L110.568%2C49.933%20C124.419%2C49.933%20124.419%2C58.259%20138.270%2C58.259%20C152.121%2C58.259%20152.121%2C49.934%20165.999%2C49.934%20L165.999%2C33.64%20L145.249%2C0.1%20%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.c-single02-info-shop__content-txt {
  font-size: 1.2rem;
}
@media all and (min-width: 768px) {
  .c-single02-info-shop {
    margin-top: 0;
    width: calc(100% - 560px - 60px);
    order: 2;
  }
  .c-single02-info-shop__content {
    min-height: 316px;
    padding: 38px 40px 34px;
  }
  .c-single02-info-shop__content-head {
    margin-bottom: 14px;
    padding-left: 32px;
    font-size: 1.8rem;
  }
  .c-single02-info-shop__content-head:before {
    top: 4px;
  }
  .c-single02-info-shop__content-txt {
    font-size: 1.6rem;
  }
}

/* .c-single02-detail
================================================ */
.c-single02-detail {
  margin-top: 38px;
}
.c-single02-detail__table {
  margin-top: 24px;
}
.c-single02-detail__table table {
  border-top: 1px solid rgba(19, 33, 75, 0.2);
  box-sizing: border-box;
}
.c-single02-detail__table table th, .c-single02-detail__table table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(19, 33, 75, 0.2);
  box-sizing: border-box;
  text-align: left;
}
.c-single02-detail__table table th {
  width: 88px;
  background-color: rgba(19, 33, 75, 0.04);
  font-size: 1.3rem;
  font-weight: 400;
}
.c-single02-detail__table table td {
  padding-right: 0;
  font-size: 1.2rem;
}
.c-single02-detail__table-marker {
  background: #13214b;
  color: #fff;
}
@media all and (min-width: 768px) {
  .c-single02-detail {
    margin-top: 56px;
  }
  .c-single02-detail__table {
    margin-top: 28px;
  }
  .c-single02-detail__table table th, .c-single02-detail__table table td {
    padding: 12px 30px;
    vertical-align: middle;
  }
  .c-single02-detail__table table th {
    width: 250px;
    font-size: 1.6rem;
  }
  .c-single02-detail__table table td {
    padding-right: 0;
    font-size: 1.5rem;
  }
}

/* .c-single02-point
================================================ */
.c-single02-point {
  position: relative;
  margin-top: 70px;
  padding-top: 66px;
  box-sizing: border-box;
}
.c-single02-point:before {
  content: "";
  position: absolute;
  top: 0;
  left: -25px;
  width: calc(100% + 50px);
  height: 1px;
  background-color: rgba(19, 33, 75, 0.2);
}
@media all and (min-width: 768px) {
  .c-single02-point {
    margin-top: 100px;
    padding-top: 96px;
  }
  .c-single02-point:before {
    left: 50%;
    width: calc(100vw + 970px);
    margin-left: -970px;
  }
}

/* .c-single02-member
================================================== */
.c-single02-member {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 30px 20px 20px;
  background: #e4e4df;
}
.c-single02-member + .c-single02-member {
  margin-top: 20px;
}
.c-single02-member__img {
  position: relative;
  flex-basis: 70px;
  border-radius: 50%;
  height: 70px;
  overflow: hidden;
}
.c-single02-member__img::before {
  display: block;
  padding-top: 100%;
  content: "";
}
.c-single02-member__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-single02-member__area-txt {
  flex-basis: calc(100% - 80px);
}
.c-single02-member__head {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(19, 33, 75, 0.2);
  font-size: 1.7rem;
  line-height: 1.7;
}
.c-single02-member__txt + .c-single02-member__txt {
  margin-top: 0.75em;
}
@media all and (min-width: 768px) {
  .c-single02-member {
    padding: 40px 50px;
  }
  .c-single02-member__img {
    flex-basis: 100px;
    height: 100px;
  }
  .c-single02-member__area-txt {
    flex-basis: calc(100% - 125px);
  }
  .c-single02-member__head {
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 2rem;
  }
}

/* .c-single02-user
================================================ */
.c-single02-user {
  margin-top: 60px;
  padding: 18px 10px 10px;
  border: 1px solid #13214b;
  box-sizing: border-box;
}
.c-single02-user__head {
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 1.6rem;
  text-align: center;
}
.c-single02-user-content {
  padding: 20px;
  box-sizing: border-box;
  background-color: #E4E4DF;
}
.c-single02-user-content__head {
  line-height: 1.7;
  position: relative;
  margin-bottom: 4px;
  padding-left: 35px;
  box-sizing: border-box;
  color: rgba(19, 33, 75, 0.6);
  font-size: 1.6rem;
  font-weight: 400;
}
.c-single02-user-content__head:before {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-block;
  width: 22px;
  height: 22px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22166px%22%20height%3D%22157px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%237F8598%22%20d%3D%22M110.596%2C62.785%20C96.747%2C62.785%2096.747%2C71.72%2082.947%2C71.72%20C69.122%2C71.72%2069.122%2C62.785%2055.297%2C62.785%20C41.498%2C62.785%2041.498%2C71.72%2027.675%2C71.72%20C18.958%2C71.72%2015.723%2C67.788%2011.68%2C65.353%20L11.68%2C156.998%20L154.956%2C156.999%20L154.956%2C147.776%20L155.10%2C147.776%20L154.956%2C147.728%20L154.956%2C65.353%20C150.276%2C67.788%20147.68%2C71.72%20138.324%2C71.72%20C124.473%2C71.72%20124.473%2C62.785%20110.596%2C62.785%20M89.70%2C119.800%20L89.70%2C88.608%20L140.730%2C88.608%20L140.730%2C119.800%20L89.70%2C119.800%20M29.413%2C145.176%20L29.413%2C83.72%20L73.106%2C83.72%20L73.106%2C145.176%20L29.413%2C145.176%20M145.249%2C0.1%20L20.748%2C0.1%20L0.0%2C33.64%20L0.0%2C49.932%20C13.823%2C49.932%2013.823%2C58.257%2027.623%2C58.257%20C41.447%2C58.257%2041.447%2C49.932%2055.272%2C49.932%20C69.69%2C49.932%2069.71%2C58.257%2082.895%2C58.257%20C96.718%2C58.257%2096.718%2C49.932%20110.570%2C49.932%20L110.568%2C49.933%20C124.419%2C49.933%20124.419%2C58.259%20138.270%2C58.259%20C152.121%2C58.259%20152.121%2C49.934%20165.999%2C49.934%20L165.999%2C33.64%20L145.249%2C0.1%20%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.c-single02-user-content__txt {
  font-size: 1.2rem;
}
.c-single02-user-content__img {
  margin-top: 16px;
  text-align: center;
}
@media all and (min-width: 768px) {
  .c-single02-user {
    margin-top: 80px;
    padding: 26px 20px 20px;
  }
  .c-single02-user__head {
    margin-bottom: 26px;
    font-size: 2.2rem;
  }
  .c-single02-user-content {
    display: flex;
    flex-direction: row-reverse;
    padding: 50px;
  }
  .c-single02-user-content__area-txt {
    width: 100%;
  }
  .c-single02-user-content__head {
    margin-bottom: 12px;
    padding-left: 32px;
    font-size: 1.8rem;
  }
  .c-single02-user-content__head:before {
    top: 4px;
  }
  .c-single02-user-content__txt {
    font-size: 1.6rem;
  }
  .c-single02-user-content__img {
    min-width: 340px;
    width: 340px;
    margin: 0 40px 0 0;
  }
}

/* .c-single02-relation
================================================ */
.c-single02-relation {
  margin-bottom: 70px;
}
.c-single02-relation__inner {
  padding-top: 70px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .c-single02-relation {
    margin-bottom: 140px;
  }
  .c-single02-relation__inner {
    padding-top: 118px;
    padding-bottom: 120px;
  }
}

/*  .c-sns01
================================================== */
@media all and (min-width: 768px) {
  .c-sns01 {
    position: fixed;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    right: 3vw;
    bottom: 13vh;
    opacity: 0;
    transition: all 0.3s ease;
  }
  .c-sns01.is-animated {
    opacity: 1;
  }
  .c-sns01.is-hide {
    opacity: 0;
    visibility: hidden;
  }
  .c-sns01__cr {
    display: block;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    font-size: 1.1rem;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
  }
  .c-sns01__cr [data-mode-set=light] {
    color: #13214b;
  }
  .c-sns01__list {
    margin-top: 5.3vh;
  }
  .c-sns01__item + .c-sns01__item {
    margin-top: 2.5vh;
  }
  .c-sns01__item-link {
    display: block;
    width: 35px;
    height: 40px;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    text-indent: 500%;
    white-space: nowrap;
    transition: all 0.3s ease;
  }
  .c-sns01__item-link.is-twitter {
    display: inline-block;
    width: 32px;
    height: 26px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2226.008%22%20viewBox%3D%220%200%2032%2026.008%22%3E%3Cpath%20d%3D%22M583.122%2C118.541c12.078%2C0%2C18.685-10.007%2C18.685-18.685q0-.426-.019-.849a13.367%2C13.367%2C0%2C0%2C0%2C3.272-3.4%2C13.073%2C13.073%2C0%2C0%2C1-3.772%2C1.034%2C6.589%2C6.589%2C0%2C0%2C0%2C2.887-3.632%2C13.2%2C13.2%2C0%2C0%2C1-4.169%2C1.594%2C6.573%2C6.573%2C0%2C0%2C0-11.191%2C5.988A18.638%2C18.638%2C0%2C0%2C1%2C575.28%2C93.73a6.573%2C6.573%2C0%2C0%2C0%2C2.032%2C8.768%2C6.518%2C6.518%2C0%2C0%2C1-2.974-.822v.085a6.571%2C6.571%2C0%2C0%2C0%2C5.268%2C6.437%2C6.6%2C6.6%2C0%2C0%2C1-1.731.23%2C6.53%2C6.53%2C0%2C0%2C1-1.234-.118%2C6.572%2C6.572%2C0%2C0%2C0%2C6.141%2C4.56%2C13.179%2C13.179%2C0%2C0%2C1-8.157%2C2.817%2C13.444%2C13.444%2C0%2C0%2C1-1.566-.091%2C18.586%2C18.586%2C0%2C0%2C0%2C10.066%2C2.945%22%20transform%3D%22translate(-573.06%20-92.534)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .c-sns01__item-link.is-instagram {
    display: inline-block;
    width: 32px;
    height: 32px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2231.999%22%20height%3D%2232.002%22%20viewBox%3D%220%200%2031.999%2032.002%22%3E%3Cpath%20d%3D%22M9318.4%2C6408.905a11.728%2C11.728%2C0%2C0%2C1-3.884-.743%2C8.175%2C8.175%2C0%2C0%2C1-4.68-4.679%2C11.739%2C11.739%2C0%2C0%2C1-.743-3.884c-.077-1.707-.1-2.25-.1-6.6s.019-4.895.1-6.6a11.761%2C11.761%2C0%2C0%2C1%2C.743-3.884%2C8.2%2C8.2%2C0%2C0%2C1%2C4.68-4.682%2C11.751%2C11.751%2C0%2C0%2C1%2C3.884-.743c1.707-.077%2C2.251-.1%2C6.6-.1v0c4.346%2C0%2C4.893.019%2C6.6.1a11.767%2C11.767%2C0%2C0%2C1%2C3.884.743%2C8.189%2C8.189%2C0%2C0%2C1%2C4.68%2C4.679%2C11.775%2C11.775%2C0%2C0%2C1%2C.743%2C3.884c.077%2C1.707.1%2C2.25.1%2C6.6s-.019%2C4.9-.1%2C6.6a11.765%2C11.765%2C0%2C0%2C1-.743%2C3.884%2C8.181%2C8.181%2C0%2C0%2C1-4.68%2C4.679%2C11.723%2C11.723%2C0%2C0%2C1-3.884.743c-1.707.077-2.251.1-6.6.1S9320.105%2C6408.982%2C9318.4%2C6408.905Zm.134-28.931a8.794%2C8.794%2C0%2C0%2C0-2.97.551%2C5.288%2C5.288%2C0%2C0%2C0-3.041%2C3.038%2C8.95%2C8.95%2C0%2C0%2C0-.551%2C2.97c-.077%2C1.688-.094%2C2.194-.094%2C6.466s.017%2C4.78.094%2C6.465a8.924%2C8.924%2C0%2C0%2C0%2C.551%2C2.97%2C5.308%2C5.308%2C0%2C0%2C0%2C3.036%2C3.038%2C8.867%2C8.867%2C0%2C0%2C0%2C2.973.551c1.686.078%2C2.191.094%2C6.466.094s4.777-.016%2C6.465-.094a8.846%2C8.846%2C0%2C0%2C0%2C2.971-.551%2C5.3%2C5.3%2C0%2C0%2C0%2C3.038-3.036%2C8.774%2C8.774%2C0%2C0%2C0%2C.551-2.97c.077-1.686.094-2.192.094-6.466s-.017-4.777-.094-6.465a8.8%2C8.8%2C0%2C0%2C0-.551-2.97%2C5.269%2C5.269%2C0%2C0%2C0-3.038-3.038%2C8.793%2C8.793%2C0%2C0%2C0-2.971-.551c-1.687-.077-2.194-.094-6.465-.094S9320.223%2C6379.9%2C9318.537%2C6379.975ZM9316.781%2C6393a8.217%2C8.217%2C0%2C1%2C1%2C8.217%2C8.216A8.22%2C8.22%2C0%2C0%2C1%2C9316.781%2C6393Zm2.884%2C0a5.334%2C5.334%2C0%2C1%2C0%2C5.336-5.333A5.335%2C5.335%2C0%2C0%2C0%2C9319.665%2C6393Zm11.956-8.538a1.92%2C1.92%2C0%2C1%2C1%2C1.92%2C1.92A1.921%2C1.921%2C0%2C0%2C1%2C9331.621%2C6384.459Z%22%20transform%3D%22translate(-9309.001%20-6377)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .c-sns01__item-link.is-facebook {
    display: inline-block;
    width: 32px;
    height: 32px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2231.806%22%20viewBox%3D%220%200%2032%2031.806%22%3E%3Cpath%20d%3D%22M-343-708a16%2C16%2C0%2C0%2C0-16-16%2C16%2C16%2C0%2C0%2C0-16%2C16%2C16%2C16%2C0%2C0%2C0%2C13.5%2C15.806v-11.181h-4.062V-708h4.063v-3.525c0-4.01%2C2.389-6.225%2C6.043-6.225a24.615%2C24.615%2C0%2C0%2C1%2C3.582.313v3.938h-2.017A2.313%2C2.313%2C0%2C0%2C0-356.5-711v3h4.438l-.709%2C4.625H-356.5v11.181A16%2C16%2C0%2C0%2C0-343-708Z%22%20transform%3D%22translate(375%20724)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .c-sns01__item-link.is-youtube {
    display: inline-block;
    width: 35px;
    height: 25px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2235.713%22%20height%3D%2225%22%20viewBox%3D%220%200%2035.713%2025%22%3E%3Cpath%20d%3D%22M34.969%2C3.9A4.472%2C4.472%2C0%2C0%2C0%2C31.811.747C29.025%2C0%2C17.856%2C0%2C17.856%2C0S6.688%2C0%2C3.9.747A4.472%2C4.472%2C0%2C0%2C0%2C.747%2C3.9C0%2C6.688%2C0%2C12.5%2C0%2C12.5s0%2C5.812.747%2C8.6A4.472%2C4.472%2C0%2C0%2C0%2C3.9%2C24.253C6.688%2C25%2C17.856%2C25%2C17.856%2C25s11.168%2C0%2C13.952-.747A4.472%2C4.472%2C0%2C0%2C0%2C34.966%2C21.1c.747-2.784.747-8.6.747-8.6s0-5.812-.747-8.6ZM14.284%2C17.856V7.144L23.562%2C12.5l-9.278%2C5.356Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .c-sns01__item-link[data-mode-set=light].is-twitter {
    display: inline-block;
    width: 32px;
    height: 26px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2226.008%22%20viewBox%3D%220%200%2032%2026.008%22%3E%3Cpath%20d%3D%22M583.122%2C118.541c12.078%2C0%2C18.685-10.007%2C18.685-18.685q0-.426-.019-.849a13.367%2C13.367%2C0%2C0%2C0%2C3.272-3.4%2C13.073%2C13.073%2C0%2C0%2C1-3.772%2C1.034%2C6.589%2C6.589%2C0%2C0%2C0%2C2.887-3.632%2C13.2%2C13.2%2C0%2C0%2C1-4.169%2C1.594%2C6.573%2C6.573%2C0%2C0%2C0-11.191%2C5.988A18.638%2C18.638%2C0%2C0%2C1%2C575.28%2C93.73a6.573%2C6.573%2C0%2C0%2C0%2C2.032%2C8.768%2C6.518%2C6.518%2C0%2C0%2C1-2.974-.822v.085a6.571%2C6.571%2C0%2C0%2C0%2C5.268%2C6.437%2C6.6%2C6.6%2C0%2C0%2C1-1.731.23%2C6.53%2C6.53%2C0%2C0%2C1-1.234-.118%2C6.572%2C6.572%2C0%2C0%2C0%2C6.141%2C4.56%2C13.179%2C13.179%2C0%2C0%2C1-8.157%2C2.817%2C13.444%2C13.444%2C0%2C0%2C1-1.566-.091%2C18.586%2C18.586%2C0%2C0%2C0%2C10.066%2C2.945%22%20transform%3D%22translate(-573.06%20-92.534)%22%20fill%3D%22%2313214b%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .c-sns01__item-link[data-mode-set=light].is-instagram {
    display: inline-block;
    width: 32px;
    height: 32px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2231.999%22%20height%3D%2232.002%22%20viewBox%3D%220%200%2031.999%2032.002%22%3E%3Cpath%20d%3D%22M9318.4%2C6408.905a11.728%2C11.728%2C0%2C0%2C1-3.884-.743%2C8.175%2C8.175%2C0%2C0%2C1-4.68-4.679%2C11.739%2C11.739%2C0%2C0%2C1-.743-3.884c-.077-1.707-.1-2.25-.1-6.6s.019-4.895.1-6.6a11.761%2C11.761%2C0%2C0%2C1%2C.743-3.884%2C8.2%2C8.2%2C0%2C0%2C1%2C4.68-4.682%2C11.751%2C11.751%2C0%2C0%2C1%2C3.884-.743c1.707-.077%2C2.251-.1%2C6.6-.1v0c4.346%2C0%2C4.893.019%2C6.6.1a11.767%2C11.767%2C0%2C0%2C1%2C3.884.743%2C8.189%2C8.189%2C0%2C0%2C1%2C4.68%2C4.679%2C11.775%2C11.775%2C0%2C0%2C1%2C.743%2C3.884c.077%2C1.707.1%2C2.25.1%2C6.6s-.019%2C4.9-.1%2C6.6a11.765%2C11.765%2C0%2C0%2C1-.743%2C3.884%2C8.181%2C8.181%2C0%2C0%2C1-4.68%2C4.679%2C11.723%2C11.723%2C0%2C0%2C1-3.884.743c-1.707.077-2.251.1-6.6.1S9320.105%2C6408.982%2C9318.4%2C6408.905Zm.134-28.931a8.794%2C8.794%2C0%2C0%2C0-2.97.551%2C5.288%2C5.288%2C0%2C0%2C0-3.041%2C3.038%2C8.95%2C8.95%2C0%2C0%2C0-.551%2C2.97c-.077%2C1.688-.094%2C2.194-.094%2C6.466s.017%2C4.78.094%2C6.465a8.924%2C8.924%2C0%2C0%2C0%2C.551%2C2.97%2C5.308%2C5.308%2C0%2C0%2C0%2C3.036%2C3.038%2C8.867%2C8.867%2C0%2C0%2C0%2C2.973.551c1.686.078%2C2.191.094%2C6.466.094s4.777-.016%2C6.465-.094a8.846%2C8.846%2C0%2C0%2C0%2C2.971-.551%2C5.3%2C5.3%2C0%2C0%2C0%2C3.038-3.036%2C8.774%2C8.774%2C0%2C0%2C0%2C.551-2.97c.077-1.686.094-2.192.094-6.466s-.017-4.777-.094-6.465a8.8%2C8.8%2C0%2C0%2C0-.551-2.97%2C5.269%2C5.269%2C0%2C0%2C0-3.038-3.038%2C8.793%2C8.793%2C0%2C0%2C0-2.971-.551c-1.687-.077-2.194-.094-6.465-.094S9320.223%2C6379.9%2C9318.537%2C6379.975ZM9316.781%2C6393a8.217%2C8.217%2C0%2C1%2C1%2C8.217%2C8.216A8.22%2C8.22%2C0%2C0%2C1%2C9316.781%2C6393Zm2.884%2C0a5.334%2C5.334%2C0%2C1%2C0%2C5.336-5.333A5.335%2C5.335%2C0%2C0%2C0%2C9319.665%2C6393Zm11.956-8.538a1.92%2C1.92%2C0%2C1%2C1%2C1.92%2C1.92A1.921%2C1.921%2C0%2C0%2C1%2C9331.621%2C6384.459Z%22%20transform%3D%22translate(-9309.001%20-6377)%22%20fill%3D%22%2313214b%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .c-sns01__item-link[data-mode-set=light].is-facebook {
    display: inline-block;
    width: 32px;
    height: 32px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2231.806%22%20viewBox%3D%220%200%2032%2031.806%22%3E%3Cpath%20d%3D%22M-343-708a16%2C16%2C0%2C0%2C0-16-16%2C16%2C16%2C0%2C0%2C0-16%2C16%2C16%2C16%2C0%2C0%2C0%2C13.5%2C15.806v-11.181h-4.062V-708h4.063v-3.525c0-4.01%2C2.389-6.225%2C6.043-6.225a24.615%2C24.615%2C0%2C0%2C1%2C3.582.313v3.938h-2.017A2.313%2C2.313%2C0%2C0%2C0-356.5-711v3h4.438l-.709%2C4.625H-356.5v11.181A16%2C16%2C0%2C0%2C0-343-708Z%22%20transform%3D%22translate(375%20724)%22%20fill%3D%22%2313214b%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .c-sns01__item-link[data-mode-set=light].is-youtube {
    display: inline-block;
    width: 35px;
    height: 25px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2235.713%22%20height%3D%2225%22%20viewBox%3D%220%200%2035.713%2025%22%3E%3Cpath%20d%3D%22M34.969%2C3.9A4.472%2C4.472%2C0%2C0%2C0%2C31.811.747C29.025%2C0%2C17.856%2C0%2C17.856%2C0S6.688%2C0%2C3.9.747A4.472%2C4.472%2C0%2C0%2C0%2C.747%2C3.9C0%2C6.688%2C0%2C12.5%2C0%2C12.5s0%2C5.812.747%2C8.6A4.472%2C4.472%2C0%2C0%2C0%2C3.9%2C24.253C6.688%2C25%2C17.856%2C25%2C17.856%2C25s11.168%2C0%2C13.952-.747A4.472%2C4.472%2C0%2C0%2C0%2C34.966%2C21.1c.747-2.784.747-8.6.747-8.6s0-5.812-.747-8.6ZM14.284%2C17.856V7.144L23.562%2C12.5l-9.278%2C5.356Z%22%20fill%3D%22%2313214b%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
}

/* .l-breadcrumb
================================================ */
.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 16px;
}
.l-breadcrumb-list__item {
  display: inline-block;
  font-size: 1.3rem;
  vertical-align: top;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item {
  margin-left: 7px;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 1px;
  background-color: #13214b;
  margin: -2px 7px 0 0;
  vertical-align: middle;
}
.l-breadcrumb-list__txt {
  display: inline-block;
  max-width: 930px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #717993;
  vertical-align: top;
}
.l-breadcrumb-list a.l-breadcrumb-list__txt {
  color: #13214b;
}
@media all and (max-width: 767px) {
  .l-breadcrumb-list {
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
  }
  .l-breadcrumb-list::-webkit-scrollbar {
    display: none;
  }
}

/* .l-footer
================================================ */
.l-footer {
  background: #12182B;
  color: #fff;
}
.l-footer__inner {
  padding-top: 65px;
  padding-bottom: 40px;
}
.l-footer__logo {
  width: 132px;
  margin: auto;
}
.l-footer__logo-link {
  display: block;
}
@media all and (min-width: 768px) {
  .l-footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .l-footer__logo {
    width: 177px;
    margin: 0;
  }
}

/* .l-footer-info
---------------------------------------- */
@media all and (min-width: 768px) {
  .l-footer-info {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 1fr auto;
    -ms-grid-columns: 1fr auto;
    grid-template: 1fr auto/1fr auto;
    margin-top: -5px;
  }
}
@media (min-width: 768px) and (max-width: 1500px) {
  .l-footer-info {
    margin-right: 5.5vw;
  }
}

/* .l-footer-nav
---------------------------------------- */
.l-footer-nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
  -ms-grid-columns: 50% 0 50%;
  grid-template: repeat(5, 1fr)/repeat(2, 50%);
  grid-auto-flow: column;
  gap: 10px 0;
  margin-top: 32px;
}
@media all and (min-width: 768px) {
  .l-footer-nav {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: -2;
    grid-area: 1/3/1/1;
    -ms-grid-rows: 1fr 8px 1fr 8px 1fr;
    -ms-grid-columns: auto 80px auto 80px auto;
    grid-template: repeat(3, 1fr)/repeat(3, auto);
    gap: 8px 80px;
    margin: 0 0 85px;
    font-size: 1.5rem;
  }
  .l-footer-nav__item-link {
    transition: all 0.3s ease;
  }
  .l-footer-nav__item-link:hover {
    color: #b1ac97;
  }
}

/* .l-footer-nav-sub
---------------------------------------- */
.l-footer-nav-sub {
  margin-top: 35px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.l-footer-nav-sub__item + .l-footer-nav-sub__item {
  margin-top: 3px;
}
.l-footer-nav-sub__item + .l-footer-nav-sub__item.is-txt-en {
  margin-top: 11px;
}
.l-footer-nav-sub__item-link {
  display: block;
  font-size: 1.2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
@media all and (min-width: 768px) {
  .l-footer-nav-sub {
    margin: 0;
    padding: 0;
    border: 0;
  }
  .l-footer-nav-sub__item-link {
    text-align: left;
    transition: all 0.3s ease;
  }
  .l-footer-nav-sub__item-link.is-ja {
    font-size: 1.1rem;
  }
  .l-footer-nav-sub__item-link:hover {
    color: #b1ac97;
  }
}

/* .l-footer-sns
---------------------------------------- */
.l-footer-sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.l-footer-sns__item {
  margin: 0 20px;
}
.l-footer-sns__item-link {
  display: block;
  width: 35px;
  height: 40px;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  text-indent: 500%;
  white-space: nowrap;
}
.l-footer-sns__item-link.is-twitter {
  display: inline-block;
  width: 32px;
  height: 26px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2226.008%22%20viewBox%3D%220%200%2032%2026.008%22%3E%3Cpath%20d%3D%22M583.122%2C118.541c12.078%2C0%2C18.685-10.007%2C18.685-18.685q0-.426-.019-.849a13.367%2C13.367%2C0%2C0%2C0%2C3.272-3.4%2C13.073%2C13.073%2C0%2C0%2C1-3.772%2C1.034%2C6.589%2C6.589%2C0%2C0%2C0%2C2.887-3.632%2C13.2%2C13.2%2C0%2C0%2C1-4.169%2C1.594%2C6.573%2C6.573%2C0%2C0%2C0-11.191%2C5.988A18.638%2C18.638%2C0%2C0%2C1%2C575.28%2C93.73a6.573%2C6.573%2C0%2C0%2C0%2C2.032%2C8.768%2C6.518%2C6.518%2C0%2C0%2C1-2.974-.822v.085a6.571%2C6.571%2C0%2C0%2C0%2C5.268%2C6.437%2C6.6%2C6.6%2C0%2C0%2C1-1.731.23%2C6.53%2C6.53%2C0%2C0%2C1-1.234-.118%2C6.572%2C6.572%2C0%2C0%2C0%2C6.141%2C4.56%2C13.179%2C13.179%2C0%2C0%2C1-8.157%2C2.817%2C13.444%2C13.444%2C0%2C0%2C1-1.566-.091%2C18.586%2C18.586%2C0%2C0%2C0%2C10.066%2C2.945%22%20transform%3D%22translate(-573.06%20-92.534)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.l-footer-sns__item-link.is-instagram {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2231.999%22%20height%3D%2232.002%22%20viewBox%3D%220%200%2031.999%2032.002%22%3E%3Cpath%20d%3D%22M9318.4%2C6408.905a11.728%2C11.728%2C0%2C0%2C1-3.884-.743%2C8.175%2C8.175%2C0%2C0%2C1-4.68-4.679%2C11.739%2C11.739%2C0%2C0%2C1-.743-3.884c-.077-1.707-.1-2.25-.1-6.6s.019-4.895.1-6.6a11.761%2C11.761%2C0%2C0%2C1%2C.743-3.884%2C8.2%2C8.2%2C0%2C0%2C1%2C4.68-4.682%2C11.751%2C11.751%2C0%2C0%2C1%2C3.884-.743c1.707-.077%2C2.251-.1%2C6.6-.1v0c4.346%2C0%2C4.893.019%2C6.6.1a11.767%2C11.767%2C0%2C0%2C1%2C3.884.743%2C8.189%2C8.189%2C0%2C0%2C1%2C4.68%2C4.679%2C11.775%2C11.775%2C0%2C0%2C1%2C.743%2C3.884c.077%2C1.707.1%2C2.25.1%2C6.6s-.019%2C4.9-.1%2C6.6a11.765%2C11.765%2C0%2C0%2C1-.743%2C3.884%2C8.181%2C8.181%2C0%2C0%2C1-4.68%2C4.679%2C11.723%2C11.723%2C0%2C0%2C1-3.884.743c-1.707.077-2.251.1-6.6.1S9320.105%2C6408.982%2C9318.4%2C6408.905Zm.134-28.931a8.794%2C8.794%2C0%2C0%2C0-2.97.551%2C5.288%2C5.288%2C0%2C0%2C0-3.041%2C3.038%2C8.95%2C8.95%2C0%2C0%2C0-.551%2C2.97c-.077%2C1.688-.094%2C2.194-.094%2C6.466s.017%2C4.78.094%2C6.465a8.924%2C8.924%2C0%2C0%2C0%2C.551%2C2.97%2C5.308%2C5.308%2C0%2C0%2C0%2C3.036%2C3.038%2C8.867%2C8.867%2C0%2C0%2C0%2C2.973.551c1.686.078%2C2.191.094%2C6.466.094s4.777-.016%2C6.465-.094a8.846%2C8.846%2C0%2C0%2C0%2C2.971-.551%2C5.3%2C5.3%2C0%2C0%2C0%2C3.038-3.036%2C8.774%2C8.774%2C0%2C0%2C0%2C.551-2.97c.077-1.686.094-2.192.094-6.466s-.017-4.777-.094-6.465a8.8%2C8.8%2C0%2C0%2C0-.551-2.97%2C5.269%2C5.269%2C0%2C0%2C0-3.038-3.038%2C8.793%2C8.793%2C0%2C0%2C0-2.971-.551c-1.687-.077-2.194-.094-6.465-.094S9320.223%2C6379.9%2C9318.537%2C6379.975ZM9316.781%2C6393a8.217%2C8.217%2C0%2C1%2C1%2C8.217%2C8.216A8.22%2C8.22%2C0%2C0%2C1%2C9316.781%2C6393Zm2.884%2C0a5.334%2C5.334%2C0%2C1%2C0%2C5.336-5.333A5.335%2C5.335%2C0%2C0%2C0%2C9319.665%2C6393Zm11.956-8.538a1.92%2C1.92%2C0%2C1%2C1%2C1.92%2C1.92A1.921%2C1.921%2C0%2C0%2C1%2C9331.621%2C6384.459Z%22%20transform%3D%22translate(-9309.001%20-6377)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.l-footer-sns__item-link.is-facebook {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2231.806%22%20viewBox%3D%220%200%2032%2031.806%22%3E%3Cpath%20d%3D%22M-343-708a16%2C16%2C0%2C0%2C0-16-16%2C16%2C16%2C0%2C0%2C0-16%2C16%2C16%2C16%2C0%2C0%2C0%2C13.5%2C15.806v-11.181h-4.062V-708h4.063v-3.525c0-4.01%2C2.389-6.225%2C6.043-6.225a24.615%2C24.615%2C0%2C0%2C1%2C3.582.313v3.938h-2.017A2.313%2C2.313%2C0%2C0%2C0-356.5-711v3h4.438l-.709%2C4.625H-356.5v11.181A16%2C16%2C0%2C0%2C0-343-708Z%22%20transform%3D%22translate(375%20724)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.l-footer-sns__item-link.is-youtube {
  display: inline-block;
  width: 35px;
  height: 25px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2235.713%22%20height%3D%2225%22%20viewBox%3D%220%200%2035.713%2025%22%3E%3Cpath%20d%3D%22M34.969%2C3.9A4.472%2C4.472%2C0%2C0%2C0%2C31.811.747C29.025%2C0%2C17.856%2C0%2C17.856%2C0S6.688%2C0%2C3.9.747A4.472%2C4.472%2C0%2C0%2C0%2C.747%2C3.9C0%2C6.688%2C0%2C12.5%2C0%2C12.5s0%2C5.812.747%2C8.6A4.472%2C4.472%2C0%2C0%2C0%2C3.9%2C24.253C6.688%2C25%2C17.856%2C25%2C17.856%2C25s11.168%2C0%2C13.952-.747A4.472%2C4.472%2C0%2C0%2C0%2C34.966%2C21.1c.747-2.784.747-8.6.747-8.6s0-5.812-.747-8.6ZM14.284%2C17.856V7.144L23.562%2C12.5l-9.278%2C5.356Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
@media all and (max-width: 374px) {
  .l-footer-sns__item {
    margin: 0 15px;
  }
}
@media all and (min-width: 768px) {
  .l-footer-sns {
    margin: 0;
    justify-content: flex-end;
  }
  .l-footer-sns__item {
    margin: 0 15px;
  }
  .l-footer-sns__item:last-of-type {
    margin-right: 7px;
  }
  .l-footer-sns__item-link {
    transition: all 0.3s ease;
  }
  .l-footer-sns__item-link.is-twitter:hover {
    display: inline-block;
    width: 32px;
    height: 26px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2226.008%22%20viewBox%3D%220%200%2032%2026.008%22%3E%3Cpath%20d%3D%22M583.122%2C118.541c12.078%2C0%2C18.685-10.007%2C18.685-18.685q0-.426-.019-.849a13.367%2C13.367%2C0%2C0%2C0%2C3.272-3.4%2C13.073%2C13.073%2C0%2C0%2C1-3.772%2C1.034%2C6.589%2C6.589%2C0%2C0%2C0%2C2.887-3.632%2C13.2%2C13.2%2C0%2C0%2C1-4.169%2C1.594%2C6.573%2C6.573%2C0%2C0%2C0-11.191%2C5.988A18.638%2C18.638%2C0%2C0%2C1%2C575.28%2C93.73a6.573%2C6.573%2C0%2C0%2C0%2C2.032%2C8.768%2C6.518%2C6.518%2C0%2C0%2C1-2.974-.822v.085a6.571%2C6.571%2C0%2C0%2C0%2C5.268%2C6.437%2C6.6%2C6.6%2C0%2C0%2C1-1.731.23%2C6.53%2C6.53%2C0%2C0%2C1-1.234-.118%2C6.572%2C6.572%2C0%2C0%2C0%2C6.141%2C4.56%2C13.179%2C13.179%2C0%2C0%2C1-8.157%2C2.817%2C13.444%2C13.444%2C0%2C0%2C1-1.566-.091%2C18.586%2C18.586%2C0%2C0%2C0%2C10.066%2C2.945%22%20transform%3D%22translate(-573.06%20-92.534)%22%20fill%3D%22%23b1ac97%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .l-footer-sns__item-link.is-instagram:hover {
    display: inline-block;
    width: 32px;
    height: 32px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2231.999%22%20height%3D%2232.002%22%20viewBox%3D%220%200%2031.999%2032.002%22%3E%3Cpath%20d%3D%22M9318.4%2C6408.905a11.728%2C11.728%2C0%2C0%2C1-3.884-.743%2C8.175%2C8.175%2C0%2C0%2C1-4.68-4.679%2C11.739%2C11.739%2C0%2C0%2C1-.743-3.884c-.077-1.707-.1-2.25-.1-6.6s.019-4.895.1-6.6a11.761%2C11.761%2C0%2C0%2C1%2C.743-3.884%2C8.2%2C8.2%2C0%2C0%2C1%2C4.68-4.682%2C11.751%2C11.751%2C0%2C0%2C1%2C3.884-.743c1.707-.077%2C2.251-.1%2C6.6-.1v0c4.346%2C0%2C4.893.019%2C6.6.1a11.767%2C11.767%2C0%2C0%2C1%2C3.884.743%2C8.189%2C8.189%2C0%2C0%2C1%2C4.68%2C4.679%2C11.775%2C11.775%2C0%2C0%2C1%2C.743%2C3.884c.077%2C1.707.1%2C2.25.1%2C6.6s-.019%2C4.9-.1%2C6.6a11.765%2C11.765%2C0%2C0%2C1-.743%2C3.884%2C8.181%2C8.181%2C0%2C0%2C1-4.68%2C4.679%2C11.723%2C11.723%2C0%2C0%2C1-3.884.743c-1.707.077-2.251.1-6.6.1S9320.105%2C6408.982%2C9318.4%2C6408.905Zm.134-28.931a8.794%2C8.794%2C0%2C0%2C0-2.97.551%2C5.288%2C5.288%2C0%2C0%2C0-3.041%2C3.038%2C8.95%2C8.95%2C0%2C0%2C0-.551%2C2.97c-.077%2C1.688-.094%2C2.194-.094%2C6.466s.017%2C4.78.094%2C6.465a8.924%2C8.924%2C0%2C0%2C0%2C.551%2C2.97%2C5.308%2C5.308%2C0%2C0%2C0%2C3.036%2C3.038%2C8.867%2C8.867%2C0%2C0%2C0%2C2.973.551c1.686.078%2C2.191.094%2C6.466.094s4.777-.016%2C6.465-.094a8.846%2C8.846%2C0%2C0%2C0%2C2.971-.551%2C5.3%2C5.3%2C0%2C0%2C0%2C3.038-3.036%2C8.774%2C8.774%2C0%2C0%2C0%2C.551-2.97c.077-1.686.094-2.192.094-6.466s-.017-4.777-.094-6.465a8.8%2C8.8%2C0%2C0%2C0-.551-2.97%2C5.269%2C5.269%2C0%2C0%2C0-3.038-3.038%2C8.793%2C8.793%2C0%2C0%2C0-2.971-.551c-1.687-.077-2.194-.094-6.465-.094S9320.223%2C6379.9%2C9318.537%2C6379.975ZM9316.781%2C6393a8.217%2C8.217%2C0%2C1%2C1%2C8.217%2C8.216A8.22%2C8.22%2C0%2C0%2C1%2C9316.781%2C6393Zm2.884%2C0a5.334%2C5.334%2C0%2C1%2C0%2C5.336-5.333A5.335%2C5.335%2C0%2C0%2C0%2C9319.665%2C6393Zm11.956-8.538a1.92%2C1.92%2C0%2C1%2C1%2C1.92%2C1.92A1.921%2C1.921%2C0%2C0%2C1%2C9331.621%2C6384.459Z%22%20transform%3D%22translate(-9309.001%20-6377)%22%20fill%3D%22%23b1ac97%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .l-footer-sns__item-link.is-facebook:hover {
    display: inline-block;
    width: 32px;
    height: 32px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2231.806%22%20viewBox%3D%220%200%2032%2031.806%22%3E%3Cpath%20d%3D%22M-343-708a16%2C16%2C0%2C0%2C0-16-16%2C16%2C16%2C0%2C0%2C0-16%2C16%2C16%2C16%2C0%2C0%2C0%2C13.5%2C15.806v-11.181h-4.062V-708h4.063v-3.525c0-4.01%2C2.389-6.225%2C6.043-6.225a24.615%2C24.615%2C0%2C0%2C1%2C3.582.313v3.938h-2.017A2.313%2C2.313%2C0%2C0%2C0-356.5-711v3h4.438l-.709%2C4.625H-356.5v11.181A16%2C16%2C0%2C0%2C0-343-708Z%22%20transform%3D%22translate(375%20724)%22%20fill%3D%22%23b1ac97%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .l-footer-sns__item-link.is-youtube:hover {
    display: inline-block;
    width: 35px;
    height: 25px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2235.713%22%20height%3D%2225%22%20viewBox%3D%220%200%2035.713%2025%22%3E%3Cpath%20d%3D%22M34.969%2C3.9A4.472%2C4.472%2C0%2C0%2C0%2C31.811.747C29.025%2C0%2C17.856%2C0%2C17.856%2C0S6.688%2C0%2C3.9.747A4.472%2C4.472%2C0%2C0%2C0%2C.747%2C3.9C0%2C6.688%2C0%2C12.5%2C0%2C12.5s0%2C5.812.747%2C8.6A4.472%2C4.472%2C0%2C0%2C0%2C3.9%2C24.253C6.688%2C25%2C17.856%2C25%2C17.856%2C25s11.168%2C0%2C13.952-.747A4.472%2C4.472%2C0%2C0%2C0%2C34.966%2C21.1c.747-2.784.747-8.6.747-8.6s0-5.812-.747-8.6ZM14.284%2C17.856V7.144L23.562%2C12.5l-9.278%2C5.356Z%22%20fill%3D%22%23b1ac97%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
}

/* .l-footer__cr
---------------------------------------- */
.l-footer__cr {
  margin-top: 45px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}
/* .l-footer-page-top
================================================ */
.l-footer-page-top__link {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  right: 25px;
  bottom: 0;
  height: 132px;
}
.l-footer-page-top__link-txt {
  display: block;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  font-size: 1.1rem;
}
.l-footer-page-top__link-line {
  position: relative;
  display: block;
  left: 5px;
  bottom: 0;
  width: 1px;
  height: 60px;
  overflow: hidden;
}
.l-footer-page-top__link-line::before {
  position: absolute;
  content: "";
  z-index: 1;
  display: block;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #fff;
  -webkit-animation: bottomTopLine 2.1s cubic-bezier(0.17, 0.67, 0.69, 0.99) infinite;
  animation: bottomTopLine 2.1s cubic-bezier(0.17, 0.67, 0.69, 0.99) infinite;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .l-footer-page-top__link {
    right: 4.8vw;
    height: 178px;
  }
  .l-footer-page-top__link:hover .l-footer-page-top__link-txt {
    color: #b1ac97;
  }
  .l-footer-page-top__link:hover .l-footer-page-top__link-line::before {
    background: #b1ac97;
  }
  .l-footer-page-top__link-txt {
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }
  .l-footer-page-top__link-line {
    height: 90px;
  }
  .l-footer-page-top__link-line::before {
    transition: all 0.3s ease;
  }
}

.copy {
  position: fixed;
  right: 100px;
  bottom: 100px;
  mix-blend-mode: difference;
  background-color: transparent;
}

/* .l-header
================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 2000;
}
@media all and (min-width: 1080px) {
  .l-header {
    min-width: 1080px;
  }
}

/* .l-header-info
================================================== */
.l-header-info {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.l-header-info__logo {
  position: relative;
  z-index: 1;
  flex-basis: 80px;
  margin-right: auto;
  margin-left: 0;
}
.l-header-info__logo-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  background: #13214b;
}
.l-header-info__logo-link img {
  width: 52px;
}
@media all and (min-width: 1080px) {
  .l-header-info {
    height: 140px;
    transition: all 0.3s ease;
  }
  .l-header-info__logo {
    flex-basis: 140px;
    transition: all 0.3s ease;
  }
  .l-header-info__logo-link {
    height: 140px;
    transition: all 0.3s ease;
  }
  .l-header-info__logo-link:hover {
    opacity: 0.6;
  }
  .l-header-info__logo-link img {
    width: 88px;
    transition: all 0.3s ease;
  }
  .l-header.is-mini .l-header-info {
    height: 100px;
    background: #fff;
  }
  .l-header.is-mini .l-header-info__logo {
    flex-basis: 100px;
  }
  .l-header.is-mini .l-header-info__logo-link {
    height: 100px;
  }
  .l-header.is-mini .l-header-info__logo-link img {
    width: 64px;
  }
}

/* .l-nav-cart
================================================== */
.l-nav-cart {
  position: relative;
  z-index: 1;
}
.l-nav-cart__link {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  text-indent: 500%;
  white-space: nowrap;
  border: 1px solid transparent;
}
.l-nav-cart__link::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 20px;
  height: 18px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220.833%22%20height%3D%2218.614%22%20viewBox%3D%220%200%2020.833%2018.614%22%3E%3Cpath%20d%3D%22M14.456%2C16.81a1.8%2C1.8%2C0%2C1%2C1%2C1.8%2C1.8A1.8%2C1.8%2C0%2C0%2C1%2C14.456%2C16.81Zm.768%2C0a1.036%2C1.036%2C0%2C1%2C0%2C1.036-1.036A1.036%2C1.036%2C0%2C0%2C0%2C15.224%2C16.81Zm-8.777%2C0a1.8%2C1.8%2C0%2C1%2C1%2C1.8%2C1.8A1.8%2C1.8%2C0%2C0%2C1%2C6.447%2C16.81Zm.767%2C0A1.036%2C1.036%2C0%2C1%2C0%2C8.25%2C15.774%2C1.036%2C1.036%2C0%2C0%2C0%2C7.214%2C16.81Zm-.573-2.8a.384.384%2C0%2C0%2C1-.373-.288L5.195%2C9.5V9.487l-.1-.406a.308.308%2C0%2C0%2C1%2C0-.091L3.253%2C1.029A.354.354%2C0%2C0%2C0%2C2.911.768H.383A.384.384%2C0%2C0%2C1%2C.383%2C0H2.906A1.122%2C1.122%2C0%2C0%2C1%2C4%2C.848L5.947%2C9.307l1%2C3.941H17.69l-.011%2C0a.384.384%2C0%2C0%2C1%2C0%2C.768Zm11.2-2.65H8.858a.383.383%2C0%2C0%2C1%2C0-.767h8.988a.961.961%2C0%2C0%2C0%2C.959-.814V9.756L20.07%2C4.192a.6.6%2C0%2C0%2C0-.595-.683H6.3a.384.384%2C0%2C0%2C1%2C0-.768H19.475a1.351%2C1.351%2C0%2C0%2C1%2C1.339%2C1.583V4.35L19.548%2C9.913a1.727%2C1.727%2C0%2C0%2C1-1.7%2C1.448Z%22%20fill%3D%22%2313214b%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
  display: block;
}
.l-nav-cart__num {
  position: absolute;
  top: -4px;
  right: -4px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 1rem;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  background: #717993;
  color: #fff;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
@media all and (min-width: 1080px) {
  .l-nav-cart {
    margin-right: 3.6vw;
  }
  .l-nav-cart__link {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
  }
  .l-nav-cart__link::before {
    width: 25px;
    height: 22px;
    transition: all 0.3s ease;
  }
  .l-nav-cart__link:hover {
    background: #b1ac97;
    border-color: #b1ac97;
  }
  .l-nav-cart__link:hover::before {
    display: inline-block;
    width: 25px;
    height: 22px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220.833%22%20height%3D%2218.614%22%20viewBox%3D%220%200%2020.833%2018.614%22%3E%3Cpath%20d%3D%22M14.456%2C16.81a1.8%2C1.8%2C0%2C1%2C1%2C1.8%2C1.8A1.8%2C1.8%2C0%2C0%2C1%2C14.456%2C16.81Zm.768%2C0a1.036%2C1.036%2C0%2C1%2C0%2C1.036-1.036A1.036%2C1.036%2C0%2C0%2C0%2C15.224%2C16.81Zm-8.777%2C0a1.8%2C1.8%2C0%2C1%2C1%2C1.8%2C1.8A1.8%2C1.8%2C0%2C0%2C1%2C6.447%2C16.81Zm.767%2C0A1.036%2C1.036%2C0%2C1%2C0%2C8.25%2C15.774%2C1.036%2C1.036%2C0%2C0%2C0%2C7.214%2C16.81Zm-.573-2.8a.384.384%2C0%2C0%2C1-.373-.288L5.195%2C9.5V9.487l-.1-.406a.308.308%2C0%2C0%2C1%2C0-.091L3.253%2C1.029A.354.354%2C0%2C0%2C0%2C2.911.768H.383A.384.384%2C0%2C0%2C1%2C.383%2C0H2.906A1.122%2C1.122%2C0%2C0%2C1%2C4%2C.848L5.947%2C9.307l1%2C3.941H17.69l-.011%2C0a.384.384%2C0%2C0%2C1%2C0%2C.768Zm11.2-2.65H8.858a.383.383%2C0%2C0%2C1%2C0-.767h8.988a.961.961%2C0%2C0%2C0%2C.959-.814V9.756L20.07%2C4.192a.6.6%2C0%2C0%2C0-.595-.683H6.3a.384.384%2C0%2C0%2C1%2C0-.768H19.475a1.351%2C1.351%2C0%2C0%2C1%2C1.339%2C1.583V4.35L19.548%2C9.913a1.727%2C1.727%2C0%2C0%2C1-1.7%2C1.448Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .l-nav-cart__num {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  .l-header.is-mini .l-nav-cart__link {
    border-color: #13214b;
  }
  .l-header.is-mini .l-nav-cart__link:hover {
    border-color: #b1ac97;
  }
}

/* .l-nav-btn
================================================== */
.l-nav-btn {
  position: relative;
  margin: 0 15px 0 12px;
  width: 50px;
  height: 50px;
  border: 0;
  cursor: pointer;
}
.l-nav-btn__line {
  position: absolute;
  left: 10px;
  width: 30px;
  height: 1px;
  content: "";
  background: #fff;
  transition: all 0.3s ease;
}
.l-nav-btn__line:nth-child(1) {
  top: 17px;
}
.l-nav-btn__line:nth-child(2) {
  top: 25px;
}
.l-nav-btn__line:nth-child(3) {
  top: 33px;
}
.l-nav-btn.is-open .l-nav-btn__line {
  background: #13214b;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
  top: 25px;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(2) {
  opacity: 0;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(3) {
  top: 25px;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}
.l-nav-btn__txt {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
}

/* .l-nav
================================================ */
@media all and (max-width: 1079px) {
  .l-nav {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100vh;
    min-width: 320px;
    padding: 108px 25px 120px;
    background: #f6f6f6;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    -webkit-transform: translateX(120%);
    transform: translateX(120%);
    transition: all 0.3s ease;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav.is-open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@media all and (min-width: 1080px) {
  .l-nav {
    flex: 2 1 50%;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
  }
}

/* .l-nav-list
================================================== */
@media (min-width: 768px) and (max-width: 1079px) {
  .l-nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .l-nav-list__item {
    flex-basis: 47%;
  }
}
@media all and (max-width: 1079px) {
  .l-nav-list__item-in {
    display: block;
  }
  .l-nav-list__item-txt {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 31px 0 19px;
    border-bottom: 1px solid rgba(19, 33, 75, 0.2);
  }
  .l-nav-list__item-txt::after {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: 6px;
    display: inline-block;
    width: 21px;
    height: 5px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2221.001%22%20height%3D%225.001%22%20viewBox%3D%220%200%2021.001%205.001%22%3E%3Cpath%20d%3D%22M9324%2C6377l6%2C2.5-6%2C2.5Zm-15%2C3v-1h15v1Z%22%20transform%3D%22translate(-9308.999%20-6376.999)%22%20fill%3D%22%2313214b%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .l-nav-list__item-en {
    font-size: 2rem;
  }
  .l-nav-list__item-ja {
    margin-left: 14px;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
  }
}
@media (max-width: 390px) {
  .l-nav-list__item-en {
    font-size: 1.6rem;
  }
  .l-nav-list__item-ja {
    margin-left: 8px;
    font-size: 1rem;
  }
}
@media all and (min-width: 1080px) {
  .l-nav-list {
    position: relative;
    flex-basis: 100%;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    height: 100%;
    margin-right: 20px;
    margin-left: auto;
  }
  .l-nav-list__item {
    position: relative;
  }
  .l-nav-list__item-in {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    line-height: 1;
    height: 100%;
    transition: color 0.3s ease;
  }
  .l-nav-list__item-in:hover {
    color: rgba(19, 33, 75, 0.6);
  }
  .l-nav-list__item-txt {
    position: relative;
    display: block;
    height: 2em;
    overflow: hidden;
    transition: color 0.3s ease;
    padding: 0 10px;
  }
  .l-nav-list__item-txt:hover {
    color: rgba(19, 33, 75, 0.6);
  }
  .l-nav-list__item-en, .l-nav-list__item-ja {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 2em;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .l-nav-list__item-en {
    font-size: 1.5rem;
    color: #fff;
    -webkit-animation: slideBottomIn 0.6s forwards;
    animation: slideBottomIn 0.6s forwards;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    letter-spacing: 0.1em;
  }
  .l-header.is-mini .l-nav-list__item-en {
    color: #13214b;
  }
  .l-nav-list__item-ja {
    position: absolute;
    top: 0;
    left: -200%;
    z-index: 1;
    width: 500%;
    text-align: center;
    font-size: 1.3rem;
    color: #fff;
    -webkit-animation: slideTopOut 0.6s forwards;
    animation: slideTopOut 0.6s forwards;
    pointer-events: none;
    overflow: visible;
  }
  .l-header.is-mini .l-nav-list__item-ja {
    color: #13214b;
  }
  .l-nav-list__item:hover .l-nav-list__item-en {
    -webkit-animation: slideTopOut 0.6s forwards;
    animation: slideTopOut 0.6s forwards;
  }
  .l-nav-list__item:hover .l-nav-list__item-ja {
    -webkit-animation: slideBottomIn 0.6s forwards;
    animation: slideBottomIn 0.6s forwards;
  }
  .l-nav-list__item.is-guide .l-nav-list__item-txt {
    padding-right: 20px;
    padding-left: 20px;
  }
  .l-nav-list__item.is-guide .l-nav-list__item-in {
    margin-right: -10px;
    margin-left: -10px;
  }
  .l-nav-list__child-wrap {
    box-sizing: border-box;
    position: absolute;
    z-index: 7;
    top: 50%;
    left: 50%;
    margin-top: 25px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 450px;
    padding: 30px 32px;
    pointer-events: none;
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .l-nav-list__child-wrap::before {
    position: absolute;
    content: "";
    z-index: 0;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    border-top: 2px solid #13214b;
  }
  .l-nav-list__child {
    flex-basis: 190px;
    margin-top: -15px;
  }
  .l-nav-list__child-in {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .l-nav-list__child-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 2rem;
  }
  .l-nav-list__child-head img {
    width: 30px;
    margin-right: 10px;
  }
  .l-nav-list__child > li > a {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 9px 0 10px;
    box-sizing: border-box;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(19, 33, 75, 0.2);
    text-decoration: none;
  }
  .l-nav-list__child > li .l-nav-list__child-item-txt {
    transition: all 0.3s ease;
  }
  .l-nav-list__child > li > a:hover .l-nav-list__child-item-txt {
    color: #b1ac97;
  }
  .l-nav-list__child-item-link {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 9px 0 10px;
    box-sizing: border-box;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(19, 33, 75, 0.2);
  }
  .l-nav-list__child-item-txt {
    transition: all 0.3s ease;
  }
  .l-nav-list__child-item-link:hover .l-nav-list__child-item-txt {
    color: #b1ac97;
  }
  .l-nav-list__child-more {
    position: absolute;
    bottom: 30px;
  }
  .l-nav-list__item:hover .l-nav-list__child-wrap {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media (min-width: 1250px) {
  .l-nav-list__item-txt {
    padding: 0 17px;
  }
  .l-nav-list__item-txt-en {
    letter-spacing: 0.15em;
  }
  .l-nav-list__item-txt-ja {
    font-size: 1.4rem;
  }
}

/* .l-nav-sub
================================================== */
@media all and (max-width: 1079px) {
  .l-nav-sub {
    margin-top: 33px;
    text-align: center;
  }
  .l-nav-sub + .l-nav-sub {
    margin-top: 0;
  }
  .l-nav-sub__link {
    display: inline-flex;
    padding: 10px;
    font-size: 1.2rem;
  }
}

/* .l-nav-sns
================================================== */
.l-nav-sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
.l-nav-sns__item {
  margin: 0 20px;
}
.l-nav-sns__item-link {
  display: block;
  width: 35px;
  height: 40px;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  text-indent: 500%;
  white-space: nowrap;
}
.l-nav-sns__item-link.is-twitter {
  display: inline-block;
  width: 32px;
  height: 26px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2226.008%22%20viewBox%3D%220%200%2032%2026.008%22%3E%3Cpath%20d%3D%22M583.122%2C118.541c12.078%2C0%2C18.685-10.007%2C18.685-18.685q0-.426-.019-.849a13.367%2C13.367%2C0%2C0%2C0%2C3.272-3.4%2C13.073%2C13.073%2C0%2C0%2C1-3.772%2C1.034%2C6.589%2C6.589%2C0%2C0%2C0%2C2.887-3.632%2C13.2%2C13.2%2C0%2C0%2C1-4.169%2C1.594%2C6.573%2C6.573%2C0%2C0%2C0-11.191%2C5.988A18.638%2C18.638%2C0%2C0%2C1%2C575.28%2C93.73a6.573%2C6.573%2C0%2C0%2C0%2C2.032%2C8.768%2C6.518%2C6.518%2C0%2C0%2C1-2.974-.822v.085a6.571%2C6.571%2C0%2C0%2C0%2C5.268%2C6.437%2C6.6%2C6.6%2C0%2C0%2C1-1.731.23%2C6.53%2C6.53%2C0%2C0%2C1-1.234-.118%2C6.572%2C6.572%2C0%2C0%2C0%2C6.141%2C4.56%2C13.179%2C13.179%2C0%2C0%2C1-8.157%2C2.817%2C13.444%2C13.444%2C0%2C0%2C1-1.566-.091%2C18.586%2C18.586%2C0%2C0%2C0%2C10.066%2C2.945%22%20transform%3D%22translate(-573.06%20-92.534)%22%20fill%3D%22%2313214b%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.l-nav-sns__item-link.is-instagram {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2231.999%22%20height%3D%2232.002%22%20viewBox%3D%220%200%2031.999%2032.002%22%3E%3Cpath%20d%3D%22M9318.4%2C6408.905a11.728%2C11.728%2C0%2C0%2C1-3.884-.743%2C8.175%2C8.175%2C0%2C0%2C1-4.68-4.679%2C11.739%2C11.739%2C0%2C0%2C1-.743-3.884c-.077-1.707-.1-2.25-.1-6.6s.019-4.895.1-6.6a11.761%2C11.761%2C0%2C0%2C1%2C.743-3.884%2C8.2%2C8.2%2C0%2C0%2C1%2C4.68-4.682%2C11.751%2C11.751%2C0%2C0%2C1%2C3.884-.743c1.707-.077%2C2.251-.1%2C6.6-.1v0c4.346%2C0%2C4.893.019%2C6.6.1a11.767%2C11.767%2C0%2C0%2C1%2C3.884.743%2C8.189%2C8.189%2C0%2C0%2C1%2C4.68%2C4.679%2C11.775%2C11.775%2C0%2C0%2C1%2C.743%2C3.884c.077%2C1.707.1%2C2.25.1%2C6.6s-.019%2C4.9-.1%2C6.6a11.765%2C11.765%2C0%2C0%2C1-.743%2C3.884%2C8.181%2C8.181%2C0%2C0%2C1-4.68%2C4.679%2C11.723%2C11.723%2C0%2C0%2C1-3.884.743c-1.707.077-2.251.1-6.6.1S9320.105%2C6408.982%2C9318.4%2C6408.905Zm.134-28.931a8.794%2C8.794%2C0%2C0%2C0-2.97.551%2C5.288%2C5.288%2C0%2C0%2C0-3.041%2C3.038%2C8.95%2C8.95%2C0%2C0%2C0-.551%2C2.97c-.077%2C1.688-.094%2C2.194-.094%2C6.466s.017%2C4.78.094%2C6.465a8.924%2C8.924%2C0%2C0%2C0%2C.551%2C2.97%2C5.308%2C5.308%2C0%2C0%2C0%2C3.036%2C3.038%2C8.867%2C8.867%2C0%2C0%2C0%2C2.973.551c1.686.078%2C2.191.094%2C6.466.094s4.777-.016%2C6.465-.094a8.846%2C8.846%2C0%2C0%2C0%2C2.971-.551%2C5.3%2C5.3%2C0%2C0%2C0%2C3.038-3.036%2C8.774%2C8.774%2C0%2C0%2C0%2C.551-2.97c.077-1.686.094-2.192.094-6.466s-.017-4.777-.094-6.465a8.8%2C8.8%2C0%2C0%2C0-.551-2.97%2C5.269%2C5.269%2C0%2C0%2C0-3.038-3.038%2C8.793%2C8.793%2C0%2C0%2C0-2.971-.551c-1.687-.077-2.194-.094-6.465-.094S9320.223%2C6379.9%2C9318.537%2C6379.975ZM9316.781%2C6393a8.217%2C8.217%2C0%2C1%2C1%2C8.217%2C8.216A8.22%2C8.22%2C0%2C0%2C1%2C9316.781%2C6393Zm2.884%2C0a5.334%2C5.334%2C0%2C1%2C0%2C5.336-5.333A5.335%2C5.335%2C0%2C0%2C0%2C9319.665%2C6393Zm11.956-8.538a1.92%2C1.92%2C0%2C1%2C1%2C1.92%2C1.92A1.921%2C1.921%2C0%2C0%2C1%2C9331.621%2C6384.459Z%22%20transform%3D%22translate(-9309.001%20-6377)%22%20fill%3D%22%2313214b%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.l-nav-sns__item-link.is-facebook {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2231.806%22%20viewBox%3D%220%200%2032%2031.806%22%3E%3Cpath%20d%3D%22M-343-708a16%2C16%2C0%2C0%2C0-16-16%2C16%2C16%2C0%2C0%2C0-16%2C16%2C16%2C16%2C0%2C0%2C0%2C13.5%2C15.806v-11.181h-4.062V-708h4.063v-3.525c0-4.01%2C2.389-6.225%2C6.043-6.225a24.615%2C24.615%2C0%2C0%2C1%2C3.582.313v3.938h-2.017A2.313%2C2.313%2C0%2C0%2C0-356.5-711v3h4.438l-.709%2C4.625H-356.5v11.181A16%2C16%2C0%2C0%2C0-343-708Z%22%20transform%3D%22translate(375%20724)%22%20fill%3D%22%2313214b%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.l-nav-sns__item-link.is-youtube {
  display: inline-block;
  width: 35px;
  height: 25px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2235.713%22%20height%3D%2225%22%20viewBox%3D%220%200%2035.713%2025%22%3E%3Cpath%20d%3D%22M34.969%2C3.9A4.472%2C4.472%2C0%2C0%2C0%2C31.811.747C29.025%2C0%2C17.856%2C0%2C17.856%2C0S6.688%2C0%2C3.9.747A4.472%2C4.472%2C0%2C0%2C0%2C.747%2C3.9C0%2C6.688%2C0%2C12.5%2C0%2C12.5s0%2C5.812.747%2C8.6A4.472%2C4.472%2C0%2C0%2C0%2C3.9%2C24.253C6.688%2C25%2C17.856%2C25%2C17.856%2C25s11.168%2C0%2C13.952-.747A4.472%2C4.472%2C0%2C0%2C0%2C34.966%2C21.1c.747-2.784.747-8.6.747-8.6s0-5.812-.747-8.6ZM14.284%2C17.856V7.144L23.562%2C12.5l-9.278%2C5.356Z%22%20fill%3D%22%2313214b%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
@media all and (max-width: 374px) {
  .l-nav-sns__item {
    margin: 0 15px;
  }
}

/* .l-nav-overlay
================================================ */
.l-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 24, 43, 0.25);
  z-index: 1000;
}
@media all and (min-width: 1080px) {
  .l-nav-overlay {
    display: none !important;
  }
}

/* .l-ie-attention
================================================ */
.l-ie-attention {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.l-ie-attention__txt {
  font-size: 3rem;
  margin-bottom: 18px;
}
.l-ie-attention__note {
  color: #989898;
}
.l-ie-attention__note .l-ie-attention__note-link {
  display: inline-block;
}
.l-ie-attention__note-link {
  font-size: 1.8rem;
  border-bottom: 1px solid;
  position: relative;
  margin-right: 25px;
  display: inline-block;
}
.l-ie-attention__note-link::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 13px;
  width: 11px;
  height: 11px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%20%3Cg%20id%3D%22link%22%20transform%3D%22translate(0.5%200.5)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_23829%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2023829%22%20width%3D%228%22%20height%3D%228%22%20transform%3D%22translate(3)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_4323%22%20data-name%3D%22%E3%83%91%E3%82%B9%204323%22%20d%3D%22M688%2C718.025h-6v-6%22%20transform%3D%22translate(-682%20-707.025)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center/100%;
}

/* .l-main-loading
================================================== */
.l-main-loading {
  position: fixed;
  z-index: 2001;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 100vw;
  min-height: 100vh;
  background: #12182B;
  pointer-events: none;
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease;
  transition-duration: 0.6s;
}
.l-main-loading__logo {
  width: 140px;
}
.l-main-loading.is-hide {
  opacity: 0;
  visibility: hidden;
}
@media all and (min-width: 768px) {
  .l-main-loading__logo {
    width: 200px;
  }
}

@supports (-webkit-touch-callout: none) {
  .l-main-loading {
    min-height: -webkit-fill-available;
  }
}
/* .l-main-img HOME
================================================ */
.l-main-img {
  position: relative;
  z-index: -5;
  background: #12182B;
}
.l-main-img__inner {
  position: relative;
  z-index: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  height: 100vh;
  box-sizing: border-box;
}
.l-main-img__copy {
  margin: 0 0 17vh 25px;
}
.l-main-img__copy [data-copy] {
  opacity: 0;
  transition: all 0.3s ease;
  -webkit-transform: translateY(20px) rotate(2deg);
  transform: translateY(20px) rotate(2deg);
}
.l-main-img__copy-logo {
  width: 52vw;
  fill: #fff;
}
.l-main-img__copy-logo [data-copy] {
  transition-duration: 0.9s;
  -webkit-transform: translateY(20px) rotate(4deg);
  transform: translateY(20px) rotate(4deg);
}
.l-main-img__copy-logo [data-copy]:nth-of-type(1) {
  transition-delay: 0.05s;
}
.l-main-img__copy-logo [data-copy]:nth-of-type(2) {
  transition-delay: 0.1s;
}
.l-main-img__copy-logo [data-copy]:nth-of-type(3) {
  transition-delay: 0.15s;
}
.l-main-img__copy-logo [data-copy]:nth-of-type(4) {
  transition-delay: 0.2s;
}
.l-main-img__copy-logo [data-copy]:nth-of-type(5) {
  transition-delay: 0.25s;
}
.l-main-img__copy-logo [data-copy]:nth-of-type(6) {
  transition-delay: 0.3s;
}
.l-main-img__copy-txt {
  display: block;
  width: 65vw;
  margin-top: 33px;
  fill: #fff;
}
.l-main-img__copy-txt [data-copy] {
  transition-duration: 0.9s;
}
.l-main-img__copy-txt [data-copy]:nth-of-type(1) {
  transition-delay: 0.52s;
}
.l-main-img__copy-txt [data-copy]:nth-of-type(2) {
  transition-delay: 0.54s;
}
.l-main-img__copy-txt [data-copy]:nth-of-type(3) {
  transition-delay: 0.56s;
}
.l-main-img__copy-txt [data-copy]:nth-of-type(4) {
  transition-delay: 0.58s;
}
.l-main-img__copy-txt [data-copy]:nth-of-type(5) {
  transition-delay: 0.6s;
}
.l-main-img__copy-txt [data-copy]:nth-of-type(6) {
  transition-delay: 0.62s;
}
.l-main-img__copy-txt [data-copy]:nth-of-type(7) {
  transition-delay: 0.64s;
}
.l-main-img__copy-txt [data-copy]:nth-of-type(8) {
  transition-delay: 0.66s;
}
.l-main-img__copy-txt [data-copy]:nth-of-type(9) {
  transition-delay: 0.68s;
}
.l-main-img__copy-txt [data-copy]:nth-of-type(10) {
  transition-delay: 0.7s;
}
.l-main-img__copy-txt [data-copy]:nth-of-type(11) {
  transition-delay: 0.72s;
}
.l-main-img__copy-txt [data-copy]:nth-of-type(12) {
  transition-delay: 0.74s;
}
.l-main-img__copy-txt [data-copy]:nth-of-type(13) {
  transition-delay: 0.76s;
}
.l-main-img__copy-txt [data-copy]:nth-of-type(14) {
  transition-delay: 0.78s;
}
.l-main-img__copy-txt [data-copy]:nth-of-type(15) {
  transition-delay: 0.8s;
}
.l-main-img__copy-txt [data-copy]:nth-of-type(16) {
  transition-delay: 0.82s;
}
.l-main-img__copy-txt [data-copy]:nth-of-type(17) {
  transition-delay: 0.84s;
}
.l-main-img__copy.is-shown [data-copy] {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
  transform: translate3d(0, 0, 0) rotate(0deg);
}
.l-main-img__movie {
  position: fixed;
  z-index: -4;
  top: 0;
  left: 0;
  right: 0;
  height: 105vh;
}
.l-main-img__movie video {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 105vh;
  -o-object-fit: cover;
  object-fit: cover;
}
.l-main-img__movie.is-hide {
  display: none;
}
.l-main-img__scroll {
  position: absolute;
  display: block;
  right: 17px;
  bottom: 0;
  width: 1px;
  height: 132px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.17, 0.67, 0.69, 0.99);
  transition-delay: 1.2s;
}
.l-main-img__scroll.is-shown {
  opacity: 1;
}
.l-main-img__scroll::after {
  position: absolute;
  content: "";
  z-index: 1;
  display: block;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #fff;
  -webkit-animation: topBottomLine 2.1s cubic-bezier(0.17, 0.67, 0.69, 0.99) infinite;
  animation: topBottomLine 2.1s cubic-bezier(0.17, 0.67, 0.69, 0.99) infinite;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .l-main-img__copy {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto 17vh;
    padding: 0 25px;
  }
  .l-main-img__copy-logo {
    width: 385px;
  }
  .l-main-img__copy-txt {
    margin-top: 51px;
    width: 381px;
  }
  .l-main-img__scroll {
    right: auto;
    left: 70px;
    height: 10vh;
  }
}

/* .l-sub-img
================================================ */
@media all and (max-width: 767px) {
  #concept .l-sub-img {
    background-image: url(../img/concept/bg_mv01_sp.jpg);
  }

  #products .l-sub-img {
    background-image: url(../img/products/bg_mv01_sp.jpg);
  }

  #seller .l-sub-img {
    background-image: url(../img/seller/bg_mv01_sp.jpg);
  }

  #faq .l-sub-img {
    background-image: url(../img/faq/bg_mv01_sp.jpg);
  }

  #blog .l-sub-img {
    background-image: url(../img/blog/bg_mv01_sp.jpg);
  }
}
@media all and (min-width: 768px) {
  #concept .l-sub-img {
    background-image: url(../img/concept/bg_mv01_pc.jpg);
  }

  #products .l-sub-img {
    background-image: url(../img/products/bg_mv01_pc.jpg);
  }

  #seller .l-sub-img {
    background-image: url(../img/seller/bg_mv01_pc.jpg);
  }

  #faq .l-sub-img {
    background-image: url(../img/faq/bg_mv01_pc.jpg);
  }

  #blog .l-sub-img {
    background-image: url(../img/blog/bg_mv01_pc.jpg);
  }
}
.l-sub-img {
  background: #12182B no-repeat center/cover;
}
.l-sub-img__inner {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  height: 580px;
  padding-bottom: 48px;
}
.l-sub-img__area-txt {
  color: #fff;
}
.l-sub-img__en {
  line-height: 1.2;
  margin-bottom: 8px;
  font-size: 3.6rem;
}
.l-sub-img__head {
  line-height: 1.7;
  font-size: 1.8rem;
  letter-spacing: 0.3em;
}
.l-sub-img.is-low .l-sub-img__inner {
  height: 200px;
  padding-bottom: 25px;
}
.l-sub-img.is-low .l-sub-img__en {
  font-size: 3rem;
}
.l-sub-img.is-low .l-sub-img__head {
  font-size: 1.6rem;
}
@media all and (min-width: 768px) {
  .l-sub-img__inner {
    height: 795px;
    padding-bottom: 108px;
  }
  .l-sub-img__en {
    font-size: 7.3rem;
  }
  .l-sub-img__head {
    font-size: 2.6rem;
  }
  .l-sub-img.is-low .l-sub-img__inner {
    height: 350px;
    padding-bottom: 70px;
  }
  .l-sub-img.is-low .l-sub-img__en {
    font-size: 5rem;
  }
  .l-sub-img.is-low .l-sub-img__head {
    font-size: 1.8rem;
  }
}

.l-sub-img.is-simple .l-sub-img__inner {
  height: 250px;
}
@media all and (min-width: 768px) {
  .l-sub-img.is-simple .l-sub-img__inner {
    height: 445px;
  }
}

/* .l-sidebar
================================================ */
.l-sidebar {
  padding: 60px 25px;
  box-sizing: border-box;
}
@media all and (min-width: 768px) {
  .l-sidebar {
    padding: 76px 0 140px;
  }
}

/* .l-sidebar-sec
================================================== */
.l-sidebar-sec__head {
  line-height: 1.7;
  padding: 6px 0;
  box-sizing: border-box;
  background-color: #13214b;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.3em;
  text-align: center;
}
.l-sidebar-sec-list__item {
  border-bottom: 1px solid rgba(19, 33, 75, 0.2);
  box-sizing: border-box;
}
.l-sidebar-sec-list__item-link {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  box-sizing: border-box;
}
.l-sidebar-sec-list__img {
  position: relative;
  min-width: 115px;
  width: 115px;
  margin-right: 20px;
}
.l-sidebar-sec-list__img::before {
  display: block;
  padding-top: 70%;
  content: "";
}
.l-sidebar-sec-list__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.l-sidebar-sec-list__area-txt {
  width: 100%;
}
.l-sidebar-sec-list__date {
  margin-bottom: 4px;
  color: rgba(19, 33, 75, 0.6);
  font-size: 1.2rem;
}
.l-sidebar-sec-list__head {
  line-height: 1.7;
  font-size: 1.3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.l-sidebar-sec__notfound {
  margin-top: 20px;
  padding: 10px 0;
  box-sizing: border-box;
  background-color: #fff;
  text-align: center;
}
@media all and (min-width: 768px) {
  .l-sidebar-sec__head {
    padding: 6px 0;
    font-size: 1.8rem;
  }
  .l-sidebar-sec-list__item-link:hover .l-sidebar-sec-list__img:after {
    opacity: 1;
  }
  .l-sidebar-sec-list__item-link:hover .l-sidebar-sec-list__head {
    color: #b1ac97;
  }
  .l-sidebar-sec-list__img {
    margin-right: 16px;
  }
  .l-sidebar-sec-list__img::after {
    position: absolute;
    content: "";
    z-index: 1;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(19, 33, 75, 0.7);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .l-sidebar-sec-list__date {
    margin-bottom: 0;
    font-size: 1.4rem;
  }
  .l-sidebar-sec-list__head {
    font-size: 1.4rem;
    transition: all 0.3s ease;
  }
}

@-webkit-keyframes slideTopOut {
  0% {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes slideTopOut {
  0% {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@-webkit-keyframes slideBottomIn {
  0% {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideBottomIn {
  0% {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes rightOutLeftIn {
  0% {
    -webkit-transform: scale(1, 1) translateX(0);
    transform: scale(1, 1) translateX(0);
  }
  50% {
    -webkit-transform: scale(1, 1) translateX(120%);
    transform: scale(1, 1) translateX(120%);
  }
  50.01% {
    -webkit-transform: scale(1, 0) translateX(-120%);
    transform: scale(1, 0) translateX(-120%);
  }
  52% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1, 1) translateX(-120%);
    transform: scale(1, 1) translateX(-120%);
  }
  100% {
    -webkit-transform: scale(1, 1) translateX(0);
    transform: scale(1, 1) translateX(0);
  }
}
@keyframes rightOutLeftIn {
  0% {
    -webkit-transform: scale(1, 1) translateX(0);
    transform: scale(1, 1) translateX(0);
  }
  50% {
    -webkit-transform: scale(1, 1) translateX(120%);
    transform: scale(1, 1) translateX(120%);
  }
  50.01% {
    -webkit-transform: scale(1, 0) translateX(-120%);
    transform: scale(1, 0) translateX(-120%);
  }
  52% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1, 1) translateX(-120%);
    transform: scale(1, 1) translateX(-120%);
  }
  100% {
    -webkit-transform: scale(1, 1) translateX(0);
    transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes leftOutRightIn {
  0% {
    -webkit-transform: scale(1, 1) translateX(0);
    transform: scale(1, 1) translateX(0);
  }
  50% {
    -webkit-transform: scale(1, 1) translateX(-120%);
    transform: scale(1, 1) translateX(-120%);
  }
  50.01% {
    -webkit-transform: scale(1, 0) translateX(120%);
    transform: scale(1, 0) translateX(120%);
  }
  52% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1, 1) translateX(120%);
    transform: scale(1, 1) translateX(120%);
  }
  100% {
    -webkit-transform: scale(1, 1) translateX(0);
    transform: scale(1, 1) translateX(0);
  }
}
@keyframes leftOutRightIn {
  0% {
    -webkit-transform: scale(1, 1) translateX(0);
    transform: scale(1, 1) translateX(0);
  }
  50% {
    -webkit-transform: scale(1, 1) translateX(-120%);
    transform: scale(1, 1) translateX(-120%);
  }
  50.01% {
    -webkit-transform: scale(1, 0) translateX(120%);
    transform: scale(1, 0) translateX(120%);
  }
  52% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1, 1) translateX(120%);
    transform: scale(1, 1) translateX(120%);
  }
  100% {
    -webkit-transform: scale(1, 1) translateX(0);
    transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes rightOutLeftIn02 {
  0% {
    width: 100px;
    -webkit-transform: scale(1, 1) translateX(0);
    transform: scale(1, 1) translateX(0);
  }
  70% {
    width: 100%;
    -webkit-transform: scale(1, 1) translateX(120%);
    transform: scale(1, 1) translateX(120%);
  }
  70.01% {
    width: 100%;
    -webkit-transform: scale(1, 0) translateX(-120%);
    transform: scale(1, 0) translateX(-120%);
  }
  72% {
    width: 100px;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1, 1) translateX(-120%);
    transform: scale(1, 1) translateX(-120%);
  }
  100% {
    width: 100px;
    -webkit-transform: scale(1, 1) translateX(0);
    transform: scale(1, 1) translateX(0);
  }
}
@keyframes rightOutLeftIn02 {
  0% {
    width: 100px;
    -webkit-transform: scale(1, 1) translateX(0);
    transform: scale(1, 1) translateX(0);
  }
  70% {
    width: 100%;
    -webkit-transform: scale(1, 1) translateX(120%);
    transform: scale(1, 1) translateX(120%);
  }
  70.01% {
    width: 100%;
    -webkit-transform: scale(1, 0) translateX(-120%);
    transform: scale(1, 0) translateX(-120%);
  }
  72% {
    width: 100px;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1, 1) translateX(-120%);
    transform: scale(1, 1) translateX(-120%);
  }
  100% {
    width: 100px;
    -webkit-transform: scale(1, 1) translateX(0);
    transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes topOutBottomIn {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
    transform: scale(1, 1) translateY(0);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  50% {
    -webkit-transform: scale(1, 1) translateY(-120%);
    transform: scale(1, 1) translateY(-120%);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  50.01% {
    -webkit-transform: scale(1, 0) translateY(120%);
    transform: scale(1, 0) translateY(120%);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  52% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1, 1) translateY(120%);
    transform: scale(1, 1) translateY(120%);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
    transform: scale(1, 1) translateY(0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}
@keyframes topOutBottomIn {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
    transform: scale(1, 1) translateY(0);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  50% {
    -webkit-transform: scale(1, 1) translateY(-120%);
    transform: scale(1, 1) translateY(-120%);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  50.01% {
    -webkit-transform: scale(1, 0) translateY(120%);
    transform: scale(1, 0) translateY(120%);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  52% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1, 1) translateY(120%);
    transform: scale(1, 1) translateY(120%);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
    transform: scale(1, 1) translateY(0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}
@-webkit-keyframes topBottomLine {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  10% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  15% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  45% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}
@keyframes topBottomLine {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  10% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  15% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  45% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}
@-webkit-keyframes bottomTopLine {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  10% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  15% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  45% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
}
@keyframes bottomTopLine {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  10% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  15% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  45% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
}
.js-c-anime-elem[data-anime=fadein-up] {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  transition: all 0.9s ease;
}
.js-c-anime-elem[data-anime=fadein-up].is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.js-c-anime-elem[data-anime=fadein-left] {
  opacity: 0;
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  transition: all 0.9s ease;
}
.js-c-anime-elem[data-anime=fadein-left].is-animated {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.js-c-anime-elem[data-anime=fadein-right] {
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  transition: all 0.9s ease;
}
.js-c-anime-elem[data-anime=fadein-right].is-animated {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.js-c-anime-elem[data-anime=fadein] {
  opacity: 0;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  transition: all 1.2s ease;
}
.js-c-anime-elem[data-anime=fadein].is-animated {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.js-c-anime-elem[data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}
.js-c-anime-elem[data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}
.js-c-anime-elem[data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}
.js-c-anime-elem[data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}
.js-c-anime-elem[data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}
.js-c-anime-elem[data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}
.js-c-anime-elem[data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}
.js-c-anime-elem[data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}
.js-c-anime-elem[data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}
.js-c-anime-elem[data-anime-delay="1"] {
  transition-delay: 1s;
}
.js-c-anime-elem[data-anime-delay="1.1"] {
  transition-delay: 1.1s;
}
.js-c-anime-elem[data-anime-delay="1.2"] {
  transition-delay: 1.2s;
}
.js-c-anime-elem[data-anime-delay="1.3"] {
  transition-delay: 1.3s;
}
.js-c-anime-elem[data-anime-delay="1.4"] {
  transition-delay: 1.4s;
}
.js-c-anime-elem[data-anime-delay="1.5"] {
  transition-delay: 1.5s;
}
.js-c-anime-elem[data-anime-delay="1.6"] {
  transition-delay: 1.6s;
}
.js-c-anime-elem[data-anime-delay="1.7"] {
  transition-delay: 1.7s;
}
.js-c-anime-elem[data-anime-delay="1.8"] {
  transition-delay: 1.8s;
}
.js-c-anime-elem[data-anime-delay="1.9"] {
  transition-delay: 1.9s;
}
.js-c-anime-elem[data-anime-delay="2"] {
  transition-delay: 2s;
}

/* .js-c-card01-slider
================================================ */
.js-c-card01-slider {
  margin-left: -25px;
  margin-right: -25px;
}
.js-c-card01-slider .slick-slide {
  margin: 0 10px;
}
.js-c-card01-slider .c-card01__item {
  display: block !important;
}
.js-c-card01-slider .slick-arrow {
  top: 12.5vw;
}
@media all and (min-width: 768px) {
  .js-c-card01-slider {
    margin-left: -18px;
    margin-right: -18px;
  }
  .js-c-card01-slider .slick-slide {
    margin: 0 18px;
  }
  .js-c-card01-slider .slick-arrow {
    top: 75px;
  }
  .js-c-card01-slider .slick-arrow.slick-prev {
    left: 0;
  }
  .js-c-card01-slider .slick-arrow.slick-next {
    right: 0;
  }
}

/* .js-c-card02-slider
================================================ */
@media all and (max-width: 767px) {
  .js-c-card02-slider {
    margin: 0 -25px;
  }
}

@media all and (min-width: 768px) {
  #js-c-cursor {
    position: absolute;
    z-index: 9998;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 36px;
    height: 36px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(177, 172, 151, 0.3);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    transition-property: color, background, border, width, height;
  }

  #js-c-cursor.is-active {
    width: 56px;
    height: 56px;
    border-color: #a6a088;
    background-color: transparent;
  }
}
/* .js-c-single02-gallery-slider
================================================ */
.js-c-single02-gallery-slider {
  display: none;
  margin-right: -25px;
  margin-left: -25px;
}
.js-c-single02-gallery-slider.slick-initialized {
  display: block;
}
.js-c-single02-gallery-slider .slick-slide {
  margin: 0 5px;
}
.js-c-single02-gallery-slider .slick-arrow {
  top: 50%;
  margin-top: -20px;
}
.js-c-single02-gallery-slider .slick-arrow.slick-prev {
  left: 38px;
}
.js-c-single02-gallery-slider .slick-arrow.slick-next {
  right: 38px;
}
@media all and (min-width: 768px) {
  .js-c-single02-gallery-slider {
    margin-right: -6.5px;
    margin-left: -6.5px;
  }
  .js-c-single02-gallery-slider .slick-slide {
    margin: 0 6.5px;
  }
  .js-c-single02-gallery-slider .slick-arrow.slick-prev {
    left: -12px;
  }
  .js-c-single02-gallery-slider .slick-arrow.slick-next {
    right: -12px;
  }
}

.js-c-switch-tab {
  cursor: pointer;
}

.js-c-switch-content {
  display: none;
}
.js-c-switch-content.is-active {
  display: block;
}

.js-c-toggle-trigger {
  cursor: pointer;
}

.js-c-toggle-content {
  display: none;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-list {
  position: relative;
}

.slick-arrow {
  position: absolute;
  z-index: 1;
  top: 18.5vw;
  font-size: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(19, 33, 75, 0.7);
  border: 0;
}
.slick-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin-left: -8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

.slick-prev {
  left: 10px;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.slick-next {
  right: 10px;
}

/* .blog-archive
================================================ */
.blog-archive__inner {
  padding-top: 78px;
  padding-bottom: 20px;
}
@media all and (min-width: 768px) {
  .blog-archive__inner {
    padding-top: 76px;
    padding-bottom: 140px;
  }
}

/* .makeshopのデフォルトクラス
================================================== */
@media all and (max-width: 767px) {
  .order-box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 20% 80%;
    grid-template-columns: 20% 80%;
    -ms-grid-rows: auto auto auto auto;
    grid-template-rows: auto auto auto auto;
    width: 96%;
    margin: 0 auto 8px;
    background: #f1f1f1;
    padding: 6px;
  }
  .order-box > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .order-box > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .order-box > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .order-box > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .order-box > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .order-box > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .order-box > *:nth-child(7) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
  .order-box > *:nth-child(8) {
    -ms-grid-row: 4;
    -ms-grid-column: 2;
  }

  .cart-item-wrap {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }

  .cart-item-image a img {
    width: 100%;
  }

  .cart-item-name {
    text-align: left;
    margin: 0 auto;
    border-bottom: dotted 1px #ddd;
    padding: 6px 0;
    line-height: 1.5;
  }

  .cart-item-info {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }

  .cart-item-option {
    text-align: left;
    line-height: 1.2em;
    margin: 0 auto;
    border-bottom: dotted 1px #ddd;
    padding: 6px 0;
  }

  .price-box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
    padding: 6px 0;
  }

  .price-box > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .price-box > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }

  .name-print-box {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 3;
    grid-row: 3;
    text-align: left;
    padding: 6px 0;
  }

  .order-quantity-box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 48% 36% 16%;
    grid-template-columns: 48% 36% 16%;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 4;
    grid-row: 4;
    -ms-grid-row-align: center;
    align-self: center;
    margin-left: 16px;
  }

  .order-quantity-box > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .order-quantity-box > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }

  .order-quantity-box > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  .quantity-change-btn {
    margin: 0 auto;
    width: 96%;
  }

  .item-delete-btn {
    margin: 0;
    width: 100%;
  }

  .cart-item-price {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 1;
    grid-row: 1;
    text-align: left;
  }

  .cart-item-point {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 2;
    grid-row: 2;
    text-align: left;
  }

  .cart-title {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .cart-title i {
    margin-right: 8px;
  }

  .incart-total-item {
    padding: 16px;
    text-align: center;
    margin-bottom: 36px;
    border: solid 1px #222;
    margin: 0 auto 12px;
    box-sizing: border-box;
  }

  .incart-total-item__btn {
    margin: 30px auto 0;
  }

  .incart-total-count,
.incart-total-price {
    font-weight: bold;
    margin-right: 8px;
  }

  .cart-list {
    width: 100%;
    margin: 32px auto 48px;
  }

  .cart-list th, .cart-list td {
    border-top: 1px solid #999;
  }

  .cart-list thead th {
    font-size: 0.9rem;
    padding: 12px 0;
  }

  .cart-list td {
    padding: 16px 8px;
    vertical-align: middle;
  }

  .cart-list .cart-item-wrap {
    display: flex;
  }

  .cart-list .cart-item-image {
    width: 100px;
  }

  .cart-list .cart-item-image img {
    max-width: 100%;
  }

  .cart-list .cart-item-info {
    text-align: left;
    flex: 1;
    margin-left: 16px;
  }

  .cart-list .cart-item-option {
    font-size: 1.2rem;
  }

  .cart-list .cart-item-special {
    margin-top: 4px;
    font-size: 1.2rem;
    color: #999;
  }

  .cart-list .cart-item-price,
.cart-list .cart-item-unit-price,
.cart-list .cart-item-point {
    text-align: right;
    white-space: nowrap;
  }

  .cart-list input[name=item-quantity] {
    height: 35px;
    box-sizing: border-box;
  }

  .cart-list .cart-item-unit-price {
    font-size: 1.2rem;
    color: #999;
  }

  .cart-list .btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-size: 1.3rem;
    background: #13214b;
  }

  .cart-list .item-delete-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-size: 1.3rem;
    background: #717993;
  }

  .cart-list .item-delete-btn i {
    margin-right: 0;
  }

  .cart-list .cart-total-title {
    text-align: right;
  }

  .cart-list .cart-total-price-wrap {
    text-align: right;
  }

  .cart-list .cart-total-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #717993;
  }

  .cart-list .cart-total-point {
    color: #717993;
  }

  .free-shipping-wrap {
    margin-bottom: 48px;
    font-size: 0.9rem;
  }

  .payment-btn-wrap {
    text-align: center;
  }

  .payment-btn-wrap .btn {
    width: auto;
    display: inline-block;
    margin: 0;
  }

  .payment-btn-wrap .payment-btn {
    width: 60%;
    padding: 12px 0;
    background: #13214b;
    text-align: center;
    color: #fff;
  }

  .noitem-btn-wrap {
    margin-top: 64px;
  }

  .bulk-wrap {
    background: #f1f1f1;
    display: inline-block;
    padding: 18px;
    margin: 24px;
  }

  .bulk-box {
    margin-bottom: 12px;
  }

  .bulk-title {
    font-weight: bold;
    font-size: 18px;
  }

  .bulk-sub-title {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .cart-total-price {
    font-size: 24px;
    font-weight: bold;
  }

  .cart-bulk {
    color: #ef3c62;
    font-size: 16px;
    font-weight: bold;
  }

  .cart-bulk-under {
    font-size: 12px;
  }

  .cart-txt {
    margin-bottom: 30px;
  }
}
@media all and (min-width: 768px) {
  .order-box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 20% 16px 1fr;
    grid-template-columns: 20% 1fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
    width: 100%;
    margin: 0 auto 18px;
    background: #f1f1f1;
    padding: 12px;
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
    box-sizing: border-box;
  }
  .order-box > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .order-box > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .order-box > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .order-box > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .order-box > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .order-box > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }

  .cart-item-wrap {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    grid-row: 1/5;
  }

  .cart-item-image a img {
    width: 100%;
  }

  .cart-item-name {
    text-align: left;
    line-height: 1.2em;
    margin: 0 auto;
    border-bottom: dotted 1px #ddd;
    padding: 6px 0;
  }

  .cart-item-info {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }

  .cart-item-option {
    text-align: left;
    line-height: 1.2em;
    margin: 0 auto;
    border-bottom: dotted 1px #ddd;
    padding: 6px 0;
  }

  .price-box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
    text-align: left;
    padding: 6px 0;
  }

  .price-box > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .name-print-box {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 3;
    grid-row: 3;
    align-items: center;
    text-align: left;
  }

  .order-quantity-box {
    width: 300px;
    margin: 0 0 0 auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% 30% 20%;
    grid-template-columns: 50% 30% 20%;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 4;
    grid-row: 4;
    -ms-grid-row-align: center;
    align-self: center;
    padding: 6px 0;
  }

  .order-quantity-box > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .order-quantity-box > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }

  .order-quantity-box > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  .quantity-change-btn {
    margin: 0 auto;
    width: 96%;
  }

  .item-delete-btn {
    margin: 0;
    width: 100%;
  }

  .cart-item-point {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 2;
    grid-row: 2;
  }

  .name-print-box {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 3;
    grid-row: 3;
  }

  .cart-title {
    font-size: 1.6rem;
    margin-bottom: 32px;
    text-align: left;
  }

  .cart-title i {
    margin-right: 8px;
  }

  .incart-total-item {
    background: #f0f0f0;
    padding: 16px;
    text-align: left;
    margin-bottom: 36px;
    text-align: center;
  }

  .incart-total-item__btn {
    margin: 30px auto 0;
  }

  .incart-total-count,
.incart-total-price {
    font-weight: bold;
    margin-right: 8px;
  }

  .cart-list {
    width: 100%;
    margin: 32px auto 48px;
  }

  .cart-list th, .cart-list td {
    border-top: 1px solid #999;
  }

  .cart-list thead th {
    font-size: 0.9rem;
    padding: 12px 0;
  }

  .cart-list td {
    padding: 16px 8px;
    vertical-align: middle;
  }

  .cart-list .cart-item-wrap {
    display: flex;
  }

  .cart-list .cart-item-image {
    width: 100%;
  }

  .cart-list .cart-item-image a {
    display: block;
  }

  .cart-list .cart-item-image img {
    max-width: 100%;
  }

  .cart-list .cart-item-info {
    text-align: left;
    flex: 1;
  }

  .cart-list .cart-item-option {
    font-size: 1.2rem;
  }

  .cart-list .cart-item-special {
    margin-top: 4px;
    font-size: 1.2rem;
    color: #999;
  }

  .cart-list .cart-item-price,
.cart-list .cart-item-unit-price,
.cart-list .cart-item-point {
    text-align: right;
    white-space: nowrap;
  }

  .cart-list input[name=item-quantity] {
    padding: 2px 10px;
    height: 35px;
    box-sizing: border-box;
  }

  .cart-list .cart-item-unit-price {
    font-size: 0.8rem;
    color: #999;
  }

  .cart-list .btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-size: 1.3rem;
    background: #13214b;
  }

  .cart-list .item-delete-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-size: 1.3rem;
    background: #717993;
  }

  .cart-list .item-delete-btn i {
    margin-right: 0;
  }

  .cart-list .cart-total-title {
    text-align: right;
  }

  .cart-list .cart-total-price-wrap {
    text-align: right;
  }

  .cart-list .cart-total-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #717993;
  }

  .cart-list .cart-total-point {
    color: #717993;
  }

  .free-shipping-wrap {
    margin-bottom: 48px;
    font-size: 0.9rem;
  }

  .payment-btn-wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    text-align: right;
    justify-content: center;
  }

  .payment-btn-wrap .btn {
    width: auto;
    display: inline-block;
    margin: 0;
  }

  .payment-btn-wrap .payment-btn {
    width: 40%;
    padding: 12px 0;
    background: #13214b;
    text-align: center;
    color: #fff;
  }

  .noitem-btn-wrap {
    margin-top: 64px;
  }

  .bulk-wrap {
    background: #f1f1f1;
    display: inline-block;
    padding: 18px 48px;
    margin: 24px;
  }

  .bulk-box {
    margin-bottom: 12px;
  }

  .bulk-title {
    font-weight: bold;
    font-size: 18px;
  }

  .bulk-sub-title {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .cart-total-price {
    font-size: 24px;
    font-weight: bold;
  }

  .cart-bulk {
    color: #ef3c62;
    font-size: 16px;
    font-weight: bold;
  }

  .cart-bulk-under {
    font-size: 12px;
  }

  .cart-txt {
    margin-bottom: 30px;
    text-align: center;
  }
}
/* .concept-whats-intro
================================================ */
.concept-whats-intro__inner {
  padding-top: 78px;
  padding-bottom: 64px;
}
.concept-whats-intro__head {
  margin-bottom: 0;
}
@media all and (min-width: 768px) {
  .concept-whats-intro__inner {
    padding-top: 74px;
    padding-bottom: 164px;
  }
}

/* .concept-whats-detail
================================================ */
.concept-whats-detail {
  background: #12182B;
}
.concept-whats-detail-movie {
  position: relative;
  z-index: 1;
  margin-bottom: -30px;
  padding: 0 15px;
  box-sizing: border-box;
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
}
.concept-whats-detail-movie__in {
  position: relative;
  height: 184px;
}
.concept-whats-detail-movie__in video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.concept-whats-detail__inner {
  padding-top: 45px;
  padding-bottom: 70px;
}
.concept-whats-detail__txt {
  line-height: 2.4;
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.3em;
}
@media all and (max-width: 374px) {
  .concept-whats-detail__txt {
    font-size: 1.4rem;
  }
}
.concept-whats-detail__img {
  display: block;
  margin: 0 -6px;
  text-align: center;
}
.concept-whats-detail__img-wrap {
  position: relative;
}
.concept-whats-detail__img-txt {
  position: absolute;
  display: inline-block;
  color: #fff;
  font-size: 3.7vw;
  line-height: 1.5;
  text-align: center;
}
.concept-whats-detail__img-txt:nth-of-type(1) {
  top: 14vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.concept-whats-detail__img-txt:nth-of-type(2) {
  bottom: 10vw;
  left: 0;
}
.concept-whats-detail__img-txt:nth-of-type(3) {
  bottom: 10vw;
  right: 5vw;
}
@media all and (min-width: 768px) {
  .concept-whats-detail-movie {
    max-width: 1440px;
    width: 100%;
    min-width: 1080px;
    margin: 0 auto -100px;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    padding: 0 40px;
  }
  .concept-whats-detail-movie__in {
    height: 474px;
  }
  .concept-whats-detail__inner {
    padding-top: 136px;
    padding-bottom: 98px;
  }
  .concept-whats-detail__txt {
    line-height: 1.7;
    margin-bottom: -226px;
    font-size: 3rem;
  }
  .concept-whats-detail__img {
    max-width: 977px;
    width: 100%;
    margin: 0 auto;
  }
  .concept-whats-detail__img-txt {
    font-size: 2rem;
    letter-spacing: 0.3em;
  }
  .concept-whats-detail__img-txt:nth-of-type(1) {
    top: 412px;
  }
  .concept-whats-detail__img-txt:nth-of-type(2) {
    left: 220px;
    bottom: 180px;
  }
  .concept-whats-detail__img-txt:nth-of-type(3) {
    right: 250px;
    bottom: 180px;
  }
}

/* .concept-features
================================================ */
.concept-features__inner {
  padding-top: 70px;
  padding-bottom: 64px;
}
.concept-features-list__item + .concept-features-list__item {
  margin-top: 55px;
}
.concept-features-list__item:nth-of-type(even) .concept-features-list__img {
  margin-right: 0;
  margin-left: -25px;
}
.concept-features-list__img {
  margin: 0 -25px 20px 0;
}
.concept-features-list__img img {
  width: 100%;
}
.concept-features-list__num {
  line-height: 1.2;
  margin-bottom: 4px;
  color: #ccc;
  font-size: 6rem;
}
.concept-features-list__head {
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 2rem;
  letter-spacing: 0.3em;
}
@media all and (min-width: 768px) {
  .concept-features__inner {
    padding-top: 138px;
    padding-bottom: 140px;
  }
  .concept-features-list__item {
    display: flex;
    align-items: center;
  }
  .concept-features-list__item + .concept-features-list__item {
    margin-top: 100px;
  }
  .concept-features-list__item:nth-of-type(odd) {
    flex-direction: row-reverse;
  }
  .concept-features-list__item:nth-of-type(even) .concept-features-list__img {
    margin-right: 100px;
    margin-left: -420px;
  }
  .concept-features-list__img {
    min-width: 860px;
    width: 860px;
    margin: 0 -420px 0 100px;
  }
  .concept-features-list__area-txt {
    width: 100%;
  }
  .concept-features-list__num {
    margin-bottom: 16px;
    font-size: 8rem;
  }
  .concept-features-list__head {
    margin-bottom: 40px;
    font-size: 2.4rem;
  }
}
@media (max-width: 1300px) and (min-width: 768px) {
  .concept-features-list__item:nth-of-type(even) .concept-features-list__img {
    margin-right: 60px;
    margin-left: -380px;
  }
  .concept-features-list__img {
    margin-right: -380px;
    margin-left: 60px;
  }
}

/* .error-page404
================================================ */
.error-page404__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
.error-page404__head {
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 2.2rem;
  text-align: center;
}
.error-page404__txt {
  text-align: center;
}
.error-page404__btn {
  margin: 30px auto 0;
}
@media all and (min-width: 768px) {
  .error-page404__inner {
    padding-top: 60px;
    padding-bottom: 100px;
  }
  .error-page404__head {
    font-size: 3rem;
  }
  .error-page404__btn {
    margin: 40px auto 0;
  }
}

/* .faq-anchor
================================================ */
.faq-anchor__inner {
  padding-top: 40px;
}

/* .faq-content
================================================ */
.faq-content__inner {
  padding-bottom: 70px;
}
@media all and (min-width: 768px) {
  .faq-content__inner {
    padding-bottom: 140px;
  }
}

/* .faq-sec
================================================ */
.faq-sec {
  padding-top: 68px;
  box-sizing: border-box;
}
.faq-sec__head {
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 2.2rem;
  letter-spacing: 0.3em;
  text-align: center;
}
@media all and (min-width: 768px) {
  .faq-sec {
    padding-top: 116px;
  }
  .faq-sec__head {
    margin-bottom: 30px;
    font-size: 3rem;
  }
}

#home::before {
  top: 100vh;
}

/* .home-about
================================================== */
.home-about {
  background: url(../img/home/bg_map01.png) no-repeat 50% 35px/95% #12182B;
}
.home-about__inner {
  padding-top: 60px;
  color: #fff;
}
.home-about-set {
  position: relative;
}
.home-about-set > * {
  position: relative;
  z-index: 1;
}
.home-about-set__head {
  font-size: 2.2rem;
  line-height: 1.7;
  letter-spacing: 0.3em;
}
.home-about-set__txt {
  margin-top: 25px;
  line-height: 2.7;
}
.home-about-bnr {
  position: relative;
  margin-top: 50px;
  padding-bottom: 80px;
}
.home-about-bnr::before {
  position: absolute;
  content: "";
  z-index: 0;
  display: block;
  top: 21vw;
  left: -25px;
  right: -25px;
  bottom: 0;
  background: rgba(237, 236, 231, 0.1);
}
.home-about-bnr__link {
  position: relative;
  z-index: 1;
  display: block;
}
@media all and (min-width: 768px) {
  .home-about {
    background-position: 60% 60px;
    background-size: 800px auto;
  }
  .home-about__inner {
    max-width: none;
    padding-top: 230px;
    padding-bottom: 160px;
  }
  .home-about-set__head {
    font-size: 3rem;
  }
  .home-about-set__area-txt {
    width: 800px;
    margin: auto;
  }
  .home-about-set__txt {
    margin-top: 45px;
  }
  .home-about-bnr {
    max-width: 1080px;
    margin: 190px auto 0;
    padding-bottom: 60px;
  }
  .home-about-bnr picture {
    display: block;
  }
  .home-about-bnr::before {
    top: 60px;
    left: 0;
    right: 0;
  }
  .home-about-bnr__link {
    width: 800px;
    margin: auto;
  }
}

/* .home-products
================================================== */
.home-products {
  transition: background 1.2s ease, color 0.3s ease;
}
.home-products[data-mode-bg=dark] {
  background: #12182B;
  color: #fff;
}
.home-products[data-mode-bg=dark] .c-filter01 {
  background: rgba(255, 255, 255, 0.15);
}
.home-products[data-mode-bg=dark] .c-filter01 * {
  color: inherit;
}
.home-products[data-mode-bg=dark] .c-filter01__item-select.is-area {
  background-image: url(../img/common/ico_area01_white.png);
}
.home-products[data-mode-bg=dark] .c-filter01__item-select.is-genre {
  background-image: url(../img/common/ico_genre01_white.png);
}
.home-products[data-mode-bg=dark] .c-filter01 select {
  border-color: #fff;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAABHNCSVQICAgIfAhkiAAAAH9JREFUKFNjZCADMJKhh2Gwa/r//38CyF+MjIwL8PkPqM4AKB8PVFfICOSAFMcDcSIujVAN+0FmA7EBOCDwaUTT4AA0+AI89LBpxKYB7BVkfyBrBIpfAGKYk8A2wNRixBOSxg9QQ1E0YNgEMwmqMQDIx9CAUxM0cBSATnqALRoAR2E7K42XfOQAAAAASUVORK5CYII=);
}
.home-products[data-mode-bg=dark] .home-products-head__icon::before {
  opacity: 1;
}
.home-products[data-mode-bg=dark] .home-products-head__icon img {
  opacity: 0;
}
.home-products[data-mode-bg=light] {
  background: transparent;
  color: #13214b;
}
.home-products__inner {
  padding-top: 70px;
  padding-bottom: 80px;
}
.home-products-head__icon {
  position: relative;
}
.home-products-head__icon::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/ico_products01_white.svg) no-repeat 50% 50%/cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.home-products-head__icon img {
  opacity: 1;
  transition: opacity 1.2s ease;
}
.home-products__filter {
  margin: 40px -25px 0;
}
.home-products__archive {
  margin: 45px -10px 0;
}
.home-products__btn {
  margin: 50px auto 0;
}
@media all and (min-width: 768px) {
  .home-products__inner {
    max-width: none;
    padding-top: 140px;
    padding-bottom: 280px;
  }
  .home-products__filter {
    margin: 65px 0 0;
  }
  .home-products__archive {
    margin-top: 60px;
    padding: 0 7.2vw;
  }
  .home-products__archive .c-card01__item:nth-of-type(10) {
    display: none;
  }
  .home-products__btn {
    margin-top: 80px;
  }
}

/* .home-concept
================================================== */
.home-concept {
  position: relative;
  color: #fff;
}
.home-concept::before {
  position: absolute;
  content: "";
  z-index: 0;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #12182B;
}
.home-concept__inner {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}
.home-concept-movie {
  position: relative;
  z-index: 1;
  margin-bottom: -30px;
  padding: 0 15px;
  box-sizing: border-box;
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
}
.home-concept-movie__in {
  position: relative;
  height: 184px;
}
.home-concept-movie__in video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-concept__content {
  margin-top: -44px;
}
.home-concept__logo {
  position: relative;
  z-index: 1;
  width: 170px;
}
.home-concept-head {
  margin-top: 60px;
}
.home-concept-head__en {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home-concept-head__en img {
  display: block;
  width: 30px;
  margin-right: 15px;
}
.home-concept-head__ja {
  margin-top: 15px;
  font-size: 2.2rem;
  letter-spacing: 0.3em;
}
.home-concept__txt {
  margin-top: 15px;
  line-height: 2.7;
}
.home-concept__btn {
  margin: 40px auto 0;
}
@media all and (min-width: 768px) {
  .home-concept__inner {
    padding-bottom: 160px;
  }
  .home-concept-movie {
    min-width: 1080px;
    margin-bottom: -140px;
    -webkit-transform: translateY(-140px);
    transform: translateY(-140px);
    padding: 0 7.2vw;
    box-sizing: border-box;
  }
  .home-concept-movie__in {
    height: 570px;
  }
  .home-concept__content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .home-concept__logo {
    flex-basis: 100%;
    width: auto;
    margin-top: -35px;
    margin-bottom: 80px;
  }
  .home-concept__logo img {
    width: 342px;
  }
  .home-concept-head {
    flex-basis: 480px;
    margin-top: 0;
  }
  .home-concept-head__en {
    font-size: 2rem;
  }
  .home-concept-head__en img {
    width: 40px;
    margin-right: 20px;
  }
  .home-concept-head__ja {
    margin-top: 30px;
    font-size: 3rem;
  }
  .home-concept__area-txt {
    flex-basis: calc(100% - 480px);
    margin-top: -17px;
  }
  .home-concept__txt {
    margin-top: 0;
    line-height: 2.2;
  }
  .home-concept__btn {
    margin: 30px 0 0 auto;
  }
}

/* .home-customer
================================================== */
.home-customer {
  background: url(../img/home/bg_customer01_sp.jpg) no-repeat 50% 50%/cover;
}
.home-customer__inner {
  padding-top: 49vw;
  padding-bottom: 25px;
}
.home-customer__content {
  padding: 60px 0 75px;
  text-align: center;
  background: rgba(237, 236, 231, 0.9);
}
.home-customer__btn {
  margin: 45px auto 0;
}
@media all and (min-width: 768px) {
  .home-customer {
    background-image: url(../img/home/bg_customer01_pc.jpg);
  }
  .home-customer__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .home-customer__content {
    width: 520px;
    margin: 0 0 0 auto;
    padding: 80px 0;
    box-sizing: border-box;
  }
  .home-customer__btn {
    margin-top: 35px;
  }
}

/* .home-blog
================================================== */
.home-blog__inner {
  padding-top: 70px;
  padding-bottom: 70px;
}
.home-blog__btn {
  margin: 40px auto 0;
}
@media all and (min-width: 768px) {
  .home-blog__inner {
    position: relative;
    padding-top: 140px;
    padding-bottom: 115px;
  }
  .home-blog__btn {
    position: absolute;
    top: 145px;
    right: 0;
    margin: 0;
  }
}

/* .home-news
================================================== */
.home-news__inner {
  padding-bottom: 80px;
}
.home-news__archive {
  margin-top: -35px;
}
.home-news__btn {
  margin: 50px auto 0;
}
@media all and (min-width: 768px) {
  .home-news__inner {
    position: relative;
    padding-bottom: 140px;
  }
  .home-news__archive {
    margin-top: -35px;
  }
  .home-news__btn {
    position: absolute;
    top: 10px;
    right: 0;
    margin: 0;
  }
}

/* .products-content
================================================ */
.products-content__inner {
  padding-top: 74px;
  padding-bottom: 70px;
}
.products-content__lead {
  margin-bottom: 32px;
  font-size: 1.6rem;
}
@media all and (min-width: 768px) {
  .products-content__inner {
    padding-bottom: 140px;
  }
  .products-content__lead {
    margin-bottom: 116px;
    font-size: 1.8rem;
    text-align: center;
  }
  .products-content__area-map {
    position: relative;
  }
}

/* .products-content-map
================================================ */
.products-content-map__svg {
  display: block;
  width: calc(100vw - 66px);
  height: calc(100vw - 80px);
}
.products-content-map__svg-black {
  fill: #13214b;
}
.products-content-map__svg-white {
  fill: #fff;
}
.products-content-map__svg-gray {
  fill: #CFD2DB;
}
.products-content-map__svg-link {
  display: block;
}
.products-content-map__svg-link path {
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .products-content-map__svg {
    width: 934px;
    height: 890px;
    margin: 0 auto;
  }
  .products-content-map__svg-link:hover path {
    fill: #b1ac97;
  }
}

/* .products-content-detail
================================================ */
@media all and (min-width: 768px) {
  .products-content-detail-set {
    display: flex !important;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    width: 190px;
    height: 130px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    background-color: #fff;
    text-align: center;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .products-content-detail-set:before {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    left: 10px;
    bottom: 10px;
    border: 1px solid #CFD2DB;
    box-sizing: border-box;
    pointer-events: none;
  }
  .products-content-detail-set:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #fff transparent transparent transparent;
  }
}
@media (min-width: 768px) and (hover: hover) {
  .products-content-detail-set.is-current {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=hokkaido] {
    top: 26px;
    right: 276px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=aomori] {
    top: 180px;
    right: 360px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=akita] {
    top: 238px;
    right: 385px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=iwate] {
    top: 258px;
    right: 338px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=yamagata] {
    top: 308px;
    right: 398px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=miyagi] {
    top: 315px;
    right: 356px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=fukushima] {
    top: 375px;
    right: 390px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=ibaraki] {
    top: 444px;
    right: 387px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=tochigi] {
    top: 424px;
    right: 412px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=gunma] {
    top: 434px;
    right: 452px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=saitama] {
    top: 462px;
    right: 436px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=chiba] {
    top: 494px;
    right: 392px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=tokyo] {
    top: 480px;
    right: 430px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=kanagawa] {
    top: 496px;
    right: 436px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=niigata] {
    top: 380px;
    right: 456px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=yamanashi] {
    top: 484px;
    right: 468px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=nagano] {
    top: 454px;
    right: 496px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=toyama] {
    top: 426px;
    right: 534px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=ishikawa] {
    top: 424px;
    right: 560px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=fukui] {
    top: 464px;
    right: 582px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=gifu] {
    top: 474px;
    right: 542px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=shizuoka] {
    top: 524px;
    right: 492px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=aichi] {
    top: 518px;
    right: 534px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=mie] {
    top: 546px;
    right: 576px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=shiga] {
    top: 506px;
    right: 590px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=kyoto] {
    top: 506px;
    right: 616px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=osaka] {
    top: 542px;
    right: 616px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=hyogo] {
    top: 522px;
    right: 648px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=nara] {
    top: 556px;
    right: 600px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=wakayama] {
    top: 588px;
    right: 619px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=tottori] {
    top: 498px;
    right: 696px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=shimane] {
    top: 518px;
    right: 762px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=okayama] {
    top: 528px;
    right: 696px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=hiroshima] {
    top: 544px;
    right: 746px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=yamaguchi] {
    top: 566px;
    right: 802px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=tokushima] {
    top: 586px;
    right: 676px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=kagawa] {
    top: 566px;
    right: 690px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=ehime] {
    top: 594px;
    right: 740px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=kochi] {
    top: 600px;
    right: 716px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=fukuoka] {
    top: 606px;
    right: 846px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=saga] {
    top: 616px;
    right: 876px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=nagasaki] {
    top: 636px;
    right: 886px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=kumamoto] {
    top: 656px;
    right: 840px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=oita] {
    top: 626px;
    right: 812px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=miyazaki] {
    top: 676px;
    right: 816px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=kagoshima] {
    top: 706px;
    right: 846px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set[data-pc-products-map-popup*=okinawa] {
    top: 546px;
    right: 156px;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set__head {
    line-height: 1.7;
    font-size: 2.2rem;
    letter-spacing: 0.3em;
  }
}
@media all and (min-width: 768px) {
  .products-content-detail-set__txt {
    line-height: 1.5;
  }
  .products-content-detail-set__txt-num {
    font-size: 2.4rem;
  }
}

/* .products-new
================================================== */
.products-new__inner {
  padding-bottom: 80px;
}
.products-new__filter {
  margin: 40px -25px 0;
}
.products-new__list {
  margin: 45px -10px 0;
}
@media all and (min-width: 768px) {
  .products-new__inner {
    max-width: none;
    padding-bottom: 140px;
  }
  .products-new__filter {
    margin: 65px 0 0;
  }
  .products-new__list {
    margin-top: 60px;
    padding: 0 7.2vw;
  }
  .products-new__list .c-card01__item:nth-of-type(10) {
    display: none;
  }
}

/* .products-archive
================================================ */
.products-archive__inner {
  padding-bottom: 70px;
}
.products-archive__filter {
  margin: 0 -25px 56px;
}
.products-archive__head {
  line-height: 1.9;
  margin-bottom: 10px;
  font-size: 1.8rem;
  letter-spacing: 0.3em;
  text-align: center;
}
.products-archive__head-big {
  font-size: 2.2rem;
}
@media all and (min-width: 768px) {
  .products-archive__inner {
    max-width: none;
    padding-top: 78px;
    padding-bottom: 140px;
  }
  .products-archive__filter {
    margin: 0 0 56px;
  }
  .products-archive__head {
    margin-bottom: 50px;
    font-size: 2.6rem;
  }
  .products-archive__head-big {
    font-size: 3rem;
  }
  .products-archive__area-archive {
    padding: 0 7.2vw;
    box-sizing: border-box;
  }
}

/* .seller-intro
================================================ */
.seller-intro {
  position: relative;
  margin-top: 40px;
  z-index: 1;
  overflow: hidden;
}
.seller-intro__movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}
.seller-intro__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 580px;
}
.seller-intro__area-txt {
  margin-top: 10px;
}
.seller-intro__logo {
  max-width: 170px;
  width: 100%;
  margin: 0 auto 32px;
}
.seller-intro__head {
  line-height: 2.7;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.3em;
}
@media all and (max-width: 767px) {
  .seller-intro__head {
    margin: 0 -25px;
  }
}
@media all and (max-width: 374px) {
  .seller-intro__head {
    font-size: 1.6rem;
  }
}
@media all and (min-width: 768px) {
  .seller-intro {
    margin-top: 80px;
  }
  .seller-intro__inner {
    height: 668px;
  }
  .seller-intro__area-txt {
    margin-top: 20px;
  }
  .seller-intro__logo {
    max-width: 248px;
    margin: 0 auto 42px;
  }
  .seller-intro__head {
    font-size: 2.8rem;
  }
}

/* .seller-about
================================================ */
.seller-about__inner {
  padding-top: 70px;
  padding-bottom: 64px;
}
.seller-about-info__head {
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 1.6rem;
  letter-spacing: 0.3em;
}
@media all and (max-width: 374px) {
  .seller-about-info__head {
    font-size: 1.5rem;
  }
}
.seller-about-info__txt-link {
  color: #A5975C;
  text-decoration: underline !important;
}
.seller-about-info__img {
  margin: 0 8px 0 -12px;
  text-align: center;
}
.seller-about-merit {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 350px;
  width: 100%;
  margin: 10px auto 0;
}
.seller-about-merit__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(19, 33, 75, 0.3);
  box-sizing: border-box;
  text-align: center;
}
@media all and (max-width: 767px) {
  .seller-about-merit__item:nth-of-type(1) {
    margin: 0 50px;
  }
  .seller-about-merit__item:nth-of-type(2), .seller-about-merit__item:nth-of-type(3) {
    margin: -36px -10px 0;
  }
}
.seller-about-merit__item-wrap {
  position: relative;
  margin-top: -10px;
  padding-bottom: 10px;
  box-sizing: border-box;
}
.seller-about-merit__item-wrap:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background-color: #13214b;
}
.seller-about-merit__head {
  line-height: 1.2;
  font-size: 1rem;
}
.seller-about-merit__head-txt, .seller-about-merit__head-num {
  display: block;
}
.seller-about-merit__head-num {
  font-size: 2.6rem;
  letter-spacing: 0.15em;
}
.seller-about-merit__txt {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
}
@media (max-width: 390px) {
  .seller-about-merit__item {
    width: 150px;
    height: 150px;
  }
  .seller-about-merit__head-num {
    font-size: 2.4rem;
  }
  .seller-about-merit__txt {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) {
  .seller-about__inner {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .seller-about-info {
    display: flex;
  }
  .seller-about-info__area-txt {
    position: relative;
    width: 100%;
    z-index: 1;
  }
  .seller-about-info__head {
    margin-bottom: 44px;
    font-size: 2.4rem;
  }
  .seller-about-info__txt-link:hover {
    text-decoration: none !important;
  }
  .seller-about-info__img {
    min-width: 860px;
    width: 860px;
    margin: -62px -190px 0 -190px;
  }
  .seller-about-merit {
    max-width: none;
    margin: 30px 0 0;
  }
  .seller-about-merit__item {
    width: 380px;
    height: 380px;
  }
  .seller-about-merit__item + .seller-about-merit__item {
    margin-left: -30px;
  }
  .seller-about-merit__item-wrap {
    margin-top: -20px;
    padding-bottom: 30px;
  }
  .seller-about-merit__item-wrap:after {
    width: 60px;
  }
  .seller-about-merit__head {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
  .seller-about-merit__head-num {
    font-size: 4rem;
  }
  .seller-about-merit__txt {
    font-size: 2.2rem;
  }
}

/* .seller-flow
================================================ */
.seller-flow__inner {
  padding-top: 70px;
  padding-bottom: 65px;
}
.seller-flow-list__item {
  position: relative;
}
.seller-flow-list__item + .seller-flow-list__item {
  margin-top: 70px;
}
.seller-flow-list__item + .seller-flow-list__item:before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1px;
  height: 30px;
  background-color: #ccc;
}
.seller-flow-list-header {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 10px;
}
.seller-flow-list-header__img {
  min-width: 150px;
  width: 150px;
  margin-left: 10px;
}
.seller-flow-list-header__area-txt {
  width: 100%;
}
.seller-flow-list-header__num {
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 35px;
  height: 35px;
  margin-bottom: 24px;
  background-color: #13214b;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
}
.seller-flow-list-header__head {
  line-height: 1.7;
  font-size: 1.6rem;
  letter-spacing: 0.3em;
}
.seller-flow-list__btn {
  margin: 15px auto 0;
}
@media all and (max-width: 374px) {
  .seller-flow-list-header__img {
    min-width: 120px;
    width: 120px;
  }
  .seller-flow-list-header__num {
    margin-bottom: 10px;
  }
  .seller-flow-list-header__head {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 768px) {
  .seller-flow__inner {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .seller-flow__head {
    margin-bottom: 65px;
  }
  .seller-flow-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
  }
  .seller-flow-list__item {
    width: calc(25% - 40px);
    margin: 0 20px;
  }
  .seller-flow-list__item + .seller-flow-list__item {
    margin-top: 0;
  }
  .seller-flow-list__item + .seller-flow-list__item:before {
    top: 80px;
    left: -100px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    width: 100%;
    height: 1px;
  }
  .seller-flow-list-header {
    display: block;
    margin-bottom: 14px;
  }
  .seller-flow-list-header__img {
    position: relative;
    z-index: 1;
    min-width: 0;
    width: 100%;
    margin: 0 0 26px;
  }
  .seller-flow-list-header__num {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 45px;
    height: 45px;
    margin-bottom: 0;
    font-size: 1.8rem;
    z-index: 2;
  }
  .seller-flow-list-header__head {
    font-size: 2rem;
    text-align: center;
  }
  .seller-flow-list__btn {
    max-width: 200px;
    margin: 18px auto 0;
  }
  .seller-flow-list__btn-link {
    height: 70px;
  }
}

/* .seller-message
================================================ */
.seller-message__inner {
  padding-top: 68px;
  padding-bottom: 68px;
}
.seller-message__sub {
  line-height: 1.7;
  margin-bottom: 22px;
  font-size: 2rem;
  letter-spacing: 0.3em;
  text-align: center;
}
@media all and (max-width: 374px) {
  .seller-message__sub {
    font-size: 1.8rem;
  }
}
.seller-message__txt + .seller-message__txt {
  margin-top: 2.2em;
}
.seller-message__sign {
  line-height: 1.7;
  margin-top: 34px;
  text-align: right;
}
.seller-message__sign-small {
  display: block;
  font-size: 1.2rem;
}
.seller-message__sign-name {
  display: block;
  margin-top: 18px;
  font-size: 2rem;
  letter-spacing: 0.3em;
}
@media all and (min-width: 768px) {
  .seller-message__inner {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .seller-message__sub {
    margin-bottom: 42px;
    font-size: 2.4rem;
  }
  .seller-message__sign-small {
    font-size: 1.4rem;
  }
  .seller-message__sign-name {
    margin-top: 10px;
    font-size: 2.4rem;
  }
}