@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
.clearfix {
  *zoom: 1;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

html {
  font-size: 62.5% !important;
}

body {
  width: 100%;
  margin: 0 auto;
  font: 0.625rem "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #FFF;
  font-size: 15px;
  word-break: break-all;
  overflow: hidden;
  background-color: #11171D;
  position: relative;
}

body.fixed {
  width: 100%;
  position: fixed;
  overflow: hidden;
  top: 0;
}

address {
  font-style: normal;
}

/* for IE 6 */
* html body {
  font-size: 75%;
}

/* for IE 7 */
*:first-child + html body {
  font-size: 75%;
}

.pos-base {
  position: relative;
}

a {
  color: #E6E6E6;
  text-decoration: none;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

a.imgLink {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

a:hover {
  color: #FFF;
  cursor: pointer;
}

a img {
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

a:hover img {
  opacity: 0.75;
}

.link-underline {
  text-decoration: underline;
}

.link-block {
  display: block;
}

.link-color {
  color: #2175cb;
}

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

img.aligncenter {
  margin: 0 auto;
  display: block;
}

p {
  line-height: 1.7;
}

p:not(:last-child) {
  margin-bottom: 1.5em;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-serif {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
}

.text-serif .link-more {
  font-family: "Cinzel", serif;
}

.text-caution {
  color: #C31213;
}

.text-important {
  color: #C31213;
}

.text-bold {
  font-weight: bold;
}

.text-cf01 {
  font-family: "Quicksand", sans-serif;
}

.text-red {
  color: #ea5454;
}

.hr-type01 {
  margin: 80px auto;
  border: none;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

ul {
  list-style-type: none;
}

ul.dot {
  list-style-type: none;
}

ul.dot li {
  text-indent: -1.1em;
  margin-left: 1.1em;
}

ul.dot li:before {
  content: '・';
}

ul.dot li:not(:last-child) {
  margin-bottom: .3em;
}

ul.note {
  list-style-type: none;
}

ul.note li {
  text-indent: -1.1em;
  margin-left: 1.1em;
}

ul.note li:before {
  content: '※';
  font-family: cursive;
}

ul.note li:not(:last-child) {
  margin-bottom: .3em;
}

dl.note dt {
  position: relative;
}

dl.note dt span {
  position: absolute;
}

dl.note dd {
  padding-left: 1em;
}

dl.caution dt {
  margin-bottom: .3em;
  color: #cfa972;
  font-weight: 600;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #242424;
}

::-webkit-scrollbar-thumb {
  background: #333333;
}

.loader,
.loader:after {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.loader {
  margin: 0 auto;
  position: relative;
  text-indent: -9999em;
  border-top: 5px solid rgba(255, 255, 255, 0.2);
  border-right: 5px solid rgba(255, 255, 255, 0.2);
  border-bottom: 5px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid #E6E6E6;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

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

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

.shadow-type01 {
  -webkit-box-shadow: 0 0 6px 0 rgba(151, 153, 155, 0.2);
          box-shadow: 0 0 6px 0 rgba(151, 153, 155, 0.2);
}

.pc_only {
  display: inherit;
}

@media screen and (max-width: 477px) {
  .pc_only {
    display: none;
  }
}

.tab_only {
  display: none;
}

@media screen and (max-width: 835px) {
  .tab_only {
    display: inherit;
  }
}

.sp_only {
  display: none;
}

@media screen and (max-width: 477px) {
  .sp_only {
    display: inherit;
  }
}

/* Flexbox レイアウト */
.flex_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex_wrap.v_center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_wrap.vh_center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex_wrap.space_between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex_wrap.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex_wrap.column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.flex_wrap.wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.site-header {
  width: 100%;
  height: 58px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #252F3D;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}

.site-header .site-navi {
  margin-top: auto;
  margin-bottom: 20px;
}

.header-title {
  padding-left: 20px;
  line-height: 1;
}

.header-title a {
  display: block;
}

.header-info {
  height: 100%;
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-search {
  padding: 0 30px;
}

.btn-search.is-open {
  opacity: .5;
}

.search-menu {
  display: none;
  padding: 50px;
  position: absolute;
  top: 58px;
  right: 0;
  left: 240px;
  background-color: rgba(29, 37, 47, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
}

.search-box:not(:last-child) {
  margin-bottom: 30px;
}

.search-box .headline {
  margin-bottom: 1em;
}

.search-box .btn-submit {
  width: 300px;
  margin: 0 auto;
  padding: 15px;
  display: block;
  background-color: #FF9900;
  border-radius: 5px;
}

.search-tag {
  margin-bottom: -15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.check-tag {
  margin: 0 15px 15px 0;
}

.check-tag .check-original {
  display: none;
}

.check-tag .check-original:checked + .check-box {
  border-color: #F3AA46;
  color: #F3AA46;
}

.check-tag .check-original:checked + .check-box::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.check-tag .check-box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 44px;
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.check-tag .check-box::before {
  content: '';
  width: 14px;
  height: 14px;
  margin-right: 8px;
  display: block;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cpath%20id%3D%22plus-solid%22%20d%3D%22M18.571%2C39.857H12.143V33.429A1.429%2C1.429%2C0%2C0%2C0%2C10.714%2C32H9.286a1.429%2C1.429%2C0%2C0%2C0-1.429%2C1.429v6.429H1.429A1.429%2C1.429%2C0%2C0%2C0%2C0%2C41.286v1.429a1.429%2C1.429%2C0%2C0%2C0%2C1.429%2C1.429H7.857v6.429A1.429%2C1.429%2C0%2C0%2C0%2C9.286%2C52h1.429a1.429%2C1.429%2C0%2C0%2C0%2C1.429-1.429V44.143h6.429A1.429%2C1.429%2C0%2C0%2C0%2C20%2C42.714V41.286A1.429%2C1.429%2C0%2C0%2C0%2C18.571%2C39.857Z%22%20transform%3D%22translate(0%20-32)%22%20fill%3D%22%23888%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.user-navi {
  padding: 19px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.user-navi .user-name {
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.user-navi .user-name::after {
  content: '';
  width: 6px;
  height: 6px;
  margin-left: 6px;
  display: inline-block;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.user-navi .user-name.is-open {
  opacity: .5;
}

.user-navi .user-name.is-open::after {
  margin-top: 4px;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}

.user-menu {
  display: none;
  padding: 20px 30px;
  position: absolute;
  top: 58px;
  right: 15px;
  background-color: rgba(29, 37, 47, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  font-size: 14px;
}

.user-menu li:not(:last-child) {
  margin-bottom: 1em;
}

.user-menu a:hover {
  color: #F3AA46;
}

#hamburger-menu {
  display: none;
}

#nav-toggle {
  margin: 0;
  display: block;
  width: 32px;
  height: 24px;
  text-align: center;
  cursor: pointer;
}

#nav-toggle div {
  position: relative;
}

#nav-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #FFF;
  border-radius: 2px;
  -webkit-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 0;
  left: 0;
}

#nav-toggle span:nth-child(2) {
  top: 11px;
  left: 0;
}

#nav-toggle span:nth-child(3) {
  top: 22px;
  right: 0;
}

.open #nav-toggle span:nth-child(1) {
  top: 11px;
  left: 0;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}

.open #nav-toggle span:nth-child(2) {
  opacity: 0;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.open #nav-toggle span:nth-child(3) {
  top: 11px;
  right: 0;
  -webkit-transform: rotate(-315deg);
          transform: rotate(-315deg);
}

.infinite-pagination {
  display: none;
}

.infinite-scroll-request {
  margin-top: 60px;
}

.infinite-scroll-error,
.infinite-scroll-last {
  display: none;
  margin-top: 60px;
  font-size: 14px;
  text-align: center;
  color: #AAA;
}

#sideBar {
  width: 240px;
  position: fixed;
  top: 58px;
  left: 0;
  bottom: 0;
  background-color: #1D252F;
  overflow-y: auto;
}

.side-box {
  padding: 25px 30px;
}

.side-box:not(:last-of-type) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.side-navi > li:not(:last-of-type) {
  margin-bottom: 20px;
}

.side-navi .count {
  width: 30px;
  margin-left: 8px;
  padding: 2px 0;
  background-color: #FFF;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #1D252F;
  display: inline-block;
  border-radius: 8px;
}

.side-navi .is-current {
  color: #F3AA46;
}

.has-child {
  position: relative;
}

.has-child::after {
  content: '';
  width: 0;
  height: 0;
  display: block;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #888888 transparent transparent transparent;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  right: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.has-child.is-open::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.child-menu {
  display: none;
  margin-top: 15px;
  margin-left: 10px;
  font-size: 13px;
}

.child-menu li:not(:last-of-type) {
  margin-bottom: 12px;
}

.child-menu a[aria-current="page"] {
  color: #F3AA46;
}

.site-container {
  margin-top: 58px;
  margin-left: 240px;
  padding: 30px 0;
}

.site-container.pt-lg {
  padding-top: 60px;
}

.section-wrap {
  width: 100%;
  padding-right: 7vw;
  padding-left: 7vw;
  position: relative;
}

.section-wrap:not(:last-of-type) {
  margin-bottom: 80px;
}

.section-wrap.pd-off {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.section-wrap.pd_top-off {
  padding-top: 0 !important;
}

.section-wrap.pd_btm-off {
  padding-bottom: 0 !important;
}

.section-wrap.full .content {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.text-area p {
  line-height: 1.9285;
}

.tag-area {
  margin-bottom: 30px;
  padding-left: 7vw;
}

.tag-area .tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  line-height: 1;
}

.tag-area .tag-list li {
  margin-right: 12px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}

.tag-area .tag-list a {
  width: 100%;
  height: 32px;
  padding: 0 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #252F3D;
  border-radius: 16px;
}

.tag-area .slick-arrow {
  background-color: rgba(17, 23, 28, 0.75);
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
}

.tag-area .slick-prev {
  left: -36px;
}

.tag-area .slick-next {
  right: 0;
}

.tag-area .slick-disabled {
  opacity: 0;
}

.main-slider {
  margin-bottom: 50px;
}

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

.main-slider img {
  width: 100%;
}

.main-slider .slide-text {
  width: 100%;
  padding: 20px 30px;
  background-color: rgba(17, 23, 29, 0.75);
  position: absolute;
  bottom: 0;
  left: 0;
}

.main-slider .date {
  margin-bottom: 5px;
  font-size: 18px;
  display: inline-block;
}

.main-slider .title {
  font-size: 20px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feature-slider {
  margin: 0 -12px;
}

.feature-slider li {
  margin: 0 12px;
}

.feature-slider a {
  display: block;
}

.card-type01 {
  position: relative;
}

.card-type01::before {
  content: '';
  display: block;
  border: 2px solid #F3AA46;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.card-type01:hover::before {
  top: -5px;
  bottom: -5px;
  right: -5px;
  left: -5px;
  opacity: 1;
}

.card-type01:hover .thumbnail img {
  opacity: 1;
}

.card-type01 a {
  display: block;
}

.card-type01 .thumbnail {
  width: 100%;
  height: 13.8888vw;
  background-color: #252f3d;
  background-image: url(./images/logo_wh2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
}

.card-type01 .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-type01 .card-text {
  padding: 16px;
  background-color: #1D252F;
}

.card-type01 .title {
  font-size: 15px;
  font-weight: 500;
}

.card-type01 .tag {
  margin-top: .5em;
  font-size: 13px;
  color: #AAAAAA;
  display: inline-block;
}

.card-type01 .tag:not(:last-of-type)::after {
  content: ',';
  margin: 0 3px;
}

.card-type01 .tag:hover {
  color: #FFF;
}

.favorites-list .thumbnail + p {
  display: none;
}

.favorites-list .card-text {
  position: relative;
}

.favorites-list .simplefavorite-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 6px;
  margin-left: auto;
  display: block;
  line-height: 1;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
}

.favorites-list .simplefavorite-button.active {
  color: #FF9900;
  opacity: 1;
}

.favorites-list .simplefavorite-button:hover {
  opacity: .75;
}

.favorites-list .simplefavorite-button .fa-heart {
  vertical-align: bottom;
}

.favorites-list .simplefavorite-button .text {
  display: none;
}

.not-login .site-container,
.not-login .site-footer {
  margin-left: 0;
}

.not-login .headline-01 {
  max-width: 450px;
  margin-right: auto;
  margin-left: auto;
}

.empty-content {
  margin-top: 60px;
  text-align: center;
  color: #AAA;
}

.video-box {
  position: relative;
  height: 0;
  padding: 0 0 56.25%;
  overflow: hidden;
}

.video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-info {
  margin-top: 40px;
  margin-bottom: 40px;
  padding-right: 200px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.video-title {
  font-size: 24px;
  font-weight: 500;
}

.video-tag {
  margin-top: .8em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.video-tag li:not(:last-child) {
  margin-right: .5em;
}

.video-tag li:not(:last-child)::after {
  content: ',';
}

.video-tag a {
  color: #AAA;
}

.video-tag a:hover {
  color: #FFF;
}

.btn-favorite {
  width: 180px;
  padding: 12px 0;
  background-color: #FF9900;
  border: 2px solid #FF9900;
  border-radius: 5px;
  position: absolute;
  right: 0;
  bottom: 30px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.btn-favorite.is-active {
  background: none;
  color: #FF9900;
}

.section-single .simplefavorite-button {
  width: 180px;
  padding: 12px 0;
  background-color: #FF9900;
  border: 2px solid #FF9900;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 0;
  bottom: 30px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.section-single .simplefavorite-button.active {
  background: none;
  color: #FF9900;
  opacity: 1;
}

.section-single .simplefavorite-button .fa-heart {
  margin-right: 5px;
}

.feature-eyecatch {
  margin-bottom: 50px;
}

.video-comment h1,
.feature-post h1 {
  margin-bottom: .8em;
  font-size: 28px;
}

.video-comment h2,
.feature-post h2 {
  margin-bottom: .8em;
  font-size: 24px;
}

.video-comment h3,
.feature-post h3 {
  margin-bottom: .8em;
  font-size: 20px;
}

.video-comment h4,
.feature-post h4 {
  margin-bottom: .8em;
  font-size: 18px;
}

.video-comment p,
.feature-post p {
  line-height: 2;
}

.video-comment a,
.feature-post a {
  color: #F3AA46;
  text-decoration: underline;
}

.video-comment ul li,
.feature-post ul li {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.8;
}

.video-comment ul li::before,
.feature-post ul li::before {
  content: '・';
}

.video-comment ul li:not(:last-child),
.feature-post ul li:not(:last-child) {
  margin-bottom: .5em;
}

.video-comment hr,
.feature-post hr {
  margin: 40px auto;
  border: none;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.faq-box {
  padding: 20px 30px;
  background-color: #1D252F;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.faq-box:not(:last-child) {
  margin-bottom: 30px;
}

.faq-box .question,
.faq-box .anser {
  padding-left: 45px;
  position: relative;
}

.faq-box .question::before,
.faq-box .anser::before {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
}

.faq-box .question {
  font-size: 16px;
  font-weight: 700;
}

.faq-box .question::before {
  content: 'Q';
  top: 0;
  left: 0;
}

.faq-box .question::after {
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cpath%20id%3D%22plus-solid%22%20d%3D%22M18.571%2C39.857H12.143V33.429A1.429%2C1.429%2C0%2C0%2C0%2C10.714%2C32H9.286a1.429%2C1.429%2C0%2C0%2C0-1.429%2C1.429v6.429H1.429A1.429%2C1.429%2C0%2C0%2C0%2C0%2C41.286v1.429a1.429%2C1.429%2C0%2C0%2C0%2C1.429%2C1.429H7.857v6.429A1.429%2C1.429%2C0%2C0%2C0%2C9.286%2C52h1.429a1.429%2C1.429%2C0%2C0%2C0%2C1.429-1.429V44.143h6.429A1.429%2C1.429%2C0%2C0%2C0%2C20%2C42.714V41.286A1.429%2C1.429%2C0%2C0%2C0%2C18.571%2C39.857Z%22%20transform%3D%22translate(0%20-32)%22%20fill%3D%22%23888%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 2px;
  right: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.faq-box .question.is-open::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.faq-box .anser {
  display: none;
  margin-top: 20px;
  font-size: 14px;
}

.faq-box .anser::before {
  content: 'A';
  color: #F3AA46;
  top: 1px;
  left: 1px;
}

.faq-box .anser a {
  color: #F3AA46;
  text-decoration: underline;
}

.l-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.l-column.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.l-column.col_half {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-column.col_half .col_inner {
  width: 48%;
}

.l-column.col2 {
  margin-bottom: -2%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-column.col2 .col-inner {
  width: 49%;
  margin-bottom: 2%;
}

.l-column.col3 {
  margin-bottom: -2.9%;
}

.l-column.col3 .col-inner {
  width: 31.4%;
  margin: 0 2.9% 2.9% 0;
}

.l-column.col3 .col-inner:nth-child(3n) {
  margin-right: 0;
}

.l-column.col4 {
  margin-bottom: -2%;
}

.l-column.col4 .col-inner {
  width: 23.5%;
  margin: 0 2% 2% 0;
}

.l-column.col4 .col-inner:nth-child(4n) {
  margin: 0 0 2% 0;
}

@media screen and (max-width: 477px) {
  .l-column.col4.sp_col2 {
    margin-bottom: -4%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-column.col4.sp_col2 .col-inner {
    width: 48.5%;
    margin: 0 0 3%;
  }
  .l-column.col4.sp_col2 .col-inner:nth-child(4n) {
    margin: 0 0 3%;
  }
  .l-column.col3.sp_col1 {
    margin-bottom: -30px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-column.col3.sp_col1 .col-inner {
    width: 100%;
    margin: 0 0 30px;
  }
  .l-column.col3.sp_col1 .col-inner:nth-child(3n) {
    margin-right: 0;
  }
  .l-column.col3.sp_col2 {
    margin-bottom: -20px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-column.col3.sp_col2 .col-inner {
    width: 48%;
    margin: 0 0 20px;
  }
  .l-column.col3.sp_col2 .col-inner:nth-child(3n) {
    margin-right: 0;
  }
  .l-column.col2.sp_col1 {
    margin-bottom: -4%;
  }
  .l-column.col2.sp_col1 .col-inner {
    width: 100%;
    margin: 0 0 4%;
  }
  .l-column.col_half.sp_col1 {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .l-column.col_half.sp_col1 .col-inner {
    width: 100%;
  }
  .l-column.col_half.sp_col1 .col-inner:not(:last-child) {
    margin-bottom: 40px;
  }
  .l-content.col2 {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .l-content.col2 .col-main {
    width: 100%;
  }
  .l-content.col2 .col-side {
    width: 100%;
    margin-top: 70px;
  }
}

.site-footer {
  margin-top: 120px;
  margin-left: 240px;
  padding: 65px 50px;
  background-color: #252F3D;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.site-footer .footer-info {
  font-size: 14px;
}

.site-footer .footer-info dt {
  margin-bottom: 4px;
}

.site-footer .copyright {
  margin-top: auto;
  font-size: 12px;
}

.headline-01 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}

.headline-group01 {
  margin-bottom: 36px;
  line-height: 1;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.headline-group01 + .headline-01 {
  margin-top: -10px;
}

.headline-group01 + .headline-02 {
  margin-top: -10px;
}

.headline-group01 .title {
  width: 100%;
  margin-top: 1em;
  font-size: 16px;
  font-weight: 500;
}

.headline-group01 .sub {
  width: 100%;
  font-family: "Quicksand", sans-serif;
  font-size: 36px;
  color: #f0932b;
  letter-spacing: 0.05em;
}

.headline-group01 .sub::before {
  content: '-';
  margin-right: 24px;
}

.headline-group01 .sub::after {
  content: '-';
  margin-left: 24px;
}

.headline-group01.sm .title {
  font-size: 13px;
}

.headline-group01.sm .sub {
  font-size: 30px;
}

.headline-group02 {
  margin-bottom: 60px;
  font-weight: bold;
  text-align: center;
}

.headline-group02 .title {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
}

.headline-group02 .sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 34px;
  font-weight: bold;
}

.section-headline {
  opacity: .1;
  position: absolute;
  top: 0;
  z-index: -2;
}

.section-headline.right {
  right: calc((100vw - 1000px - 285px) / 2);
}

.section-headline.left {
  left: calc((100vw - 1000px - 285px) / 2);
}

.section-headline.jpn {
  font-size: 190px;
  font-weight: 500;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.section-headline.en {
  font-family: "Cinzel", serif;
  font-size: 174px;
  font-weight: 400;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.btn {
  display: inline-block;
  text-align: center;
}

.btn-center {
  margin-right: auto;
  margin-left: auto;
}

.btn-type01 {
  width: 380px;
  max-width: 100%;
  margin: 50px auto 0;
  padding: 18px 0;
  display: block;
  font-size: 1.8rem;
  color: #000000;
  text-align: center;
}

.btn-more {
  width: 290px;
  max-width: 100%;
  margin: 50px auto 0;
  padding: 17px 1em;
  display: block;
  font-size: 1.6rem;
  color: #FFF;
  text-align: center;
  line-height: 1;
  background-color: #000000;
  border-radius: 5px;
}

.link-wrapper {
  position: relative;
}

.link-more {
  padding: 2px 13px 4px;
  display: inline-block;
  font-size: 13px;
  background-color: #373737;
  border: 1px solid #4B4B4B;
  border-radius: 5px;
  position: absolute;
  top: 2px;
  right: 0;
}

*:focus {
  outline: none;
}

input::-webkit-input-placeholder {
  color: #AAA;
}

input:-ms-input-placeholder {
  color: #AAA;
}

input::-moz-placeholder {
  color: #AAA;
}

textarea::-webkit-input-placeholder {
  color: #AAA;
}

textarea:-ms-input-placeholder {
  color: #AAA;
}

textarea::-moz-placeholder {
  color: #AAA;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20id%3D%22select_arr%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2011.4%206.2%22%20style%3D%22enable-background%3Anew%200%200%2011.4%206.2%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Anone%3Bstroke%3A%23BFBFBF%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3B%7D%3C%2Fstyle%3E%3Cpath%20id%3D%22path01%22%20class%3D%22st0%22%20d%3D%22M10.7%2C0.6l-5%2C5l-5-5%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 5px;
}

select.form_control {
  padding: 12px 24px 12px 10px;
}

select.error {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20id%3D%22select_error%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2011.4%206.2%22%20style%3D%22enable-background%3Anew%200%200%2011.4%206.2%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Anone%3Bstroke%3A%23FF0000%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3B%7D%3C%2Fstyle%3E%3Cpath%20id%3D%22path01%22%20class%3D%22st0%22%20d%3D%22M10.7%2C0.7l-5%2C5l-5-5%22%2F%3E%3C%2Fsvg%3E");
}

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

.radio_wrap {
  padding-top: 15px;
  font-size: 16px;
}

.radio_wrap.horizon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.radio_wrap.horizon .radio:not(:last-child) {
  margin-right: 20px;
  margin-bottom: 0;
}

.radio:not(:last-child) {
  margin-bottom: 10px;
}

.radio input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.radio input[type="radio"] + .radio-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.radio input[type="radio"] + .radio-label:before {
  content: '';
  background: #FFF;
  border-radius: 100%;
  border: 1px solid #707070;
  display: inline-block;
  width: 18px;
  height: 18px;
  position: relative;
  top: 0;
  margin-right: .5em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.radio input[type="radio"]:checked + .radio-label:before {
  background-color: #000000;
  -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
          box-shadow: inset 0 0 0 4px #f4f4f4;
}

.radio input[type="radio"]:focus + .radio-label:before {
  outline: none;
  border-color: #000000;
}

.radio input[type="radio"]:disabled + .radio-label:before {
  -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
          box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}

.radio input[type="radio"] + .radio-label:empty:before {
  margin-right: 0;
}

.checkbox-input {
  display: none;
}

.checkbox-input:checked + .checkbox-parts:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 5px;
  width: 8px;
  height: 12px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  border-bottom: 3px solid #F3AA46;
  border-right: 3px solid #F3AA46;
  margin-top: -8px;
}

.checkbox-parts {
  padding-left: 22px;
  position: relative;
}

.checkbox-parts:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  margin-top: -9px;
}

textarea.form-control {
  min-height: 218px;
}

.form-area {
  max-width: 812px;
  margin-right: auto;
  margin-left: auto;
}

.form-area .title {
  margin-bottom: 30px;
  padding-bottom: 10px;
  font-size: 20px;
  line-height: 1;
  color: #000000;
  border-bottom: 1px solid #000000;
}

.required-comment {
  color: #f13636;
  font-size: 14px;
}

.form-group:not(:last-of-type) {
  margin-bottom: 60px;
}

.form-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form-box:not(:last-child) {
  margin-bottom: 40px;
}

.form-box dt {
  width: 25%;
  margin-right: 10px;
  padding-top: 13px;
  font-size: 17px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  position: relative;
}

.form-box dt .sub {
  font-size: 12px;
}

.form-box dd {
  width: 100%;
  position: relative;
}

.form-box .required {
  color: #f13636;
  font-size: 14px;
  position: absolute;
  top: -5px;
  left: 0;
}

.form-box .required:before {
  content: "※";
}

.form-box .unit {
  font-size: 14px;
}

.form-box .unit:first-of-type {
  margin-right: 10px;
}

.form-box .note {
  margin-top: .3em;
  font-size: 12px;
}

.form-box .note::before {
  content: '※';
}

.form-child .form-box:not(:last-child) {
  margin-bottom: 10px;
}

.form-child .form-box dt {
  width: 164px;
  padding-top: 15px;
  font-size: 14px;
}

.form_column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.form_column .column_inner {
  width: 100%;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form_column .column_inner:not(:last-child) {
  margin-right: 20px;
}

.form_column .label {
  margin-right: 1em;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  font-size: 14px;
}

.form_column .spacer {
  width: 20px;
  display: block;
}

.form_column.old .column_inner {
  max-width: 100px;
}

.form_column.tel .column_inner {
  max-width: 340px;
}

.form_column.post_code .column_inner {
  max-width: 160px;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #eeeeee;
  border-radius: 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #333;
}

.form_textarea {
  min-height: 220px;
  line-height: 1.9;
}

.address_search {
  max-width: 118px;
  padding: 12px 0;
  line-height: 1.2;
}

.address_search:hover {
  cursor: pointer;
}

.textarea_wrap {
  position: relative;
}

.textarea_wrap .textarea_sample {
  position: absolute;
  top: 12px;
  left: 13px;
  font-size: 12px;
  color: #6E6E6E;
  line-height: 1.9;
  pointer-events: none;
}

.privacy_area .privacy_title {
  margin-bottom: 10px;
  font-size: 16px;
}

.privacy_area p {
  font-size: 14px;
}

.privacy_area .privacy_text {
  width: 100%;
  height: 160px;
  padding: 20px 20px;
  border: 1px solid #000000;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.privacy_area .privacy_text p {
  line-height: 1.7;
  text-align: justify;
}

.privacy_area .doui {
  margin-top: 20px;
  text-align: center;
  position: relative;
}

.privacy_area .doui label {
  margin-left: 5px;
  font-weight: bold;
}

.privacy_area .doui .form_error {
  width: 100%;
  display: block;
}

.form_error {
  margin-top: 5px;
  color: #cf0202;
  font-size: 12px;
  display: none;
}

.errr_label {
  margin-bottom: 30px;
  padding: 12px 20px;
  background-color: #FF0000;
  color: #FFF;
  display: inline-block;
}

.btn_submit {
  width: 358px;
  margin-top: 60px;
  margin-right: auto;
  margin-left: auto;
  padding: 17px 1em;
  font-size: 17px;
  text-align: center;
  background-color: #f0932b;
  display: block;
}

/* IE11用　*/
_:-ms-fullscreen body, :root body {
  font-family: "メイリオ", Meiryo, sans-serif;
}

/* Firefox用 */
@-moz-document url-prefix() {}/* SE用 */
.main_slider {
  opacity: 0;
  -webkit-transition: opacity .3s linear;
  transition: opacity .3s linear;
}

.main_slider.slick-initialized {
  opacity: 1;
}

.slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 50%;
  bottom: -30px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  border-radius: 50%;
  background-color: #FFF;
  opacity: .5;
}

.slick-dots li.slick-active {
  opacity: 1;
}

.slick-dots button {
  display: none;
}

.slick-arrow {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slick-arrow::before {
  content: '';
  width: 8px;
  height: 8px;
  display: block;
}

.slick-prev {
  left: -25px;
}

.slick-prev::before {
  margin-right: -4px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.slick-next {
  right: -25px;
}

.slick-next::before {
  margin-left: -4px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (max-width: 834px) {
  .tab_none {
    display: none;
  }
  .site-header {
    padding-right: 3vw;
  }
  .site-header .site-navi {
    display: none;
    margin: 0;
    background-color: #FFF;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
  }
  .header-title {
    padding-left: 3vw;
  }
  .search-menu {
    left: 0;
  }
  .navi-list {
    padding-top: 120px;
    padding-left: 20px;
    font-size: 4.8000vw;
    display: block;
  }
  .navi-list li:not(:first-child) {
    margin-top: 1.5em;
    margin-left: 0;
  }
  #hamburger-menu {
    display: block;
  }
  #sideBar {
    display: none;
  }
  .site-footer {
    margin-top: 80px;
    margin-left: 0;
    padding: 50px 3vw;
  }
  .site-container {
    margin-left: 0;
  }
  .section-wrap {
    padding-right: 3vw;
    padding-left: 3vw;
  }
  .tag-area {
    padding-left: 3vw;
  }
}

@supports (-webkit-touch-callout: none) {
  #main_visual {
    /* Safari用のハック */
    max-height: -webkit-fill-available;
  }
  #hero-artist {
    height: -webkit-fill-available;
  }
}

@media (max-width: 477px) {
  .search-menu {
    padding: 30px 20px;
  }
  .search-tag {
    margin-bottom: -10px;
  }
  .check-tag {
    margin: 0 10px 10px 0;
  }
  .check-tag .check-box {
    height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }
  .check-tag .check-box::before {
    width: 10px;
    height: 10px;
    margin-right: 3px;
  }
  .user-navi {
    display: none;
  }
  .site-footer {
    margin-top: 60px;
    padding-bottom: 50px 0;
    display: block;
    text-align: center;
  }
  .site-footer .footer-info {
    font-size: 13px;
  }
  .site-footer .copyright {
    margin-top: 20px;
    font-size: 10px;
  }
  .link-more {
    font-size: 12px;
    top: 3px;
  }
  .hr-type01 {
    margin: 40px auto;
  }
  .loader,
  .loader:after {
    width: 40px;
    height: 40px;
  }
  .loader {
    border-top-width: 4px;
    border-right-width: 4px;
    border-bottom-width: 4px;
    border-left-width: 4px;
  }
  body {
    font-size: 14px;
  }
  .sp_hide {
    display: none;
  }
  .site-container {
    padding: 20px 0;
  }
  .site-container.pt-lg {
    padding-top: 30px;
  }
  .section-wrap {
    padding-right: 4vw;
    padding-left: 4vw;
  }
  .section-wrap:not(:last-of-type) {
    margin-bottom: 60px;
  }
  .tag-area {
    margin-bottom: 20px;
    padding-left: 4vw;
  }
  .main-slider .slide-text {
    padding: 15px 15px;
    background-color: #1D252F;
    position: relative;
  }
  .main-slider .date {
    font-size: 14px;
  }
  .main-slider .title {
    font-size: 14px;
  }
  .feature-slider {
    margin-right: -4vw;
    margin-left: -4vw;
  }
  .feature-slider li {
    margin: 0 7px;
  }
  .card-type01 .thumbnail {
    height: 28.2666vw;
  }
  .card-type01 .card-text {
    margin-top: 10px;
    padding: 0;
    background: none;
  }
  .card-type01 .title {
    font-size: 14px;
  }
  .card-type01 .tag {
    font-size: 12px;
  }
  .sp_col1 .thumbnail {
    height: 56.5332vw;
  }
  .um-form {
    padding-right: 15px;
    padding-left: 15px;
  }
  .um .um-form input[type=text] {
    font-size: 16px !important;
  }
  .video-info {
    margin-top: 25px;
    margin-bottom: 25px;
    padding-right: 0;
    padding-bottom: 25px;
  }
  .video-title {
    font-size: 18px;
  }
  .btn-favorite {
    width: 140px;
    margin-top: 20px;
    padding: 6px 0;
    font-size: 13px;
    position: relative;
    right: 0;
    bottom: auto;
  }
  .section-single .simplefavorite-button {
    width: 140px;
    margin-top: 15px;
    margin-left: auto;
    padding: 6px 0;
    font-size: 13px;
    position: relative;
    right: 0;
    bottom: auto;
  }
  .section-single .simplefavorite-button .fa-heart {
    width: 14px;
    height: 14px;
  }
  .feature-eyecatch {
    margin-bottom: 20px;
  }
  .video-comment h1,
  .feature-post h1 {
    font-size: 22px;
  }
  .video-comment h2,
  .feature-post h2 {
    font-size: 20px;
  }
  .video-comment h3,
  .feature-post h3 {
    font-size: 18px;
  }
  .video-comment h4,
  .feature-post h4 {
    font-size: 16px;
  }
  .video-comment hr,
  .feature-post hr {
    margin: 30px auto;
  }
  .video-comment ul li,
  .feature-post ul li {
    line-height: 1.5;
  }
  .faq-box {
    padding: 18px 18px;
    border-radius: 10px;
  }
  .faq-box:not(:last-child) {
    margin-bottom: 20px;
  }
  .faq-box .question,
  .faq-box .anser {
    padding-left: 32px;
    position: relative;
  }
  .faq-box .question::before,
  .faq-box .anser::before {
    font-size: 19px;
  }
  .faq-box .question {
    padding-right: 32px;
    font-size: 15px;
  }
  .faq-box .question::before {
    top: 0;
  }
  .faq-box .question::after {
    width: 16px;
    height: 16px;
    top: 4px;
  }
  .faq-box .anser {
    margin-top: 18px;
    font-size: 13px;
  }
  .faq-box .anser::before {
    top: 0;
  }
}
