@charset "UTF-8";
/* media query */
/* font setting */
/* spacer */
/* absolute : position:absolute; */
/* 配置*/
/* flexbox*/
/* clearfix*/
/* chevron*/
/* btn*/
/* link*/
/* transition*/
/* 2.3 form
------------------------------ */
.form {
  width: 100%;
  margin: 0 auto;
}
.form dt {
  margin: 3em 0 0.75em;
  font-size: 15px;
}
.form dd {
  margin: 0 0 1em;
}

/* placeholder */
::-webkit-input-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
  opacity: 1;
}

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

:-moz-placeholder {
  color: #888;
}

/* autofill */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #fff inset;
}

/* icon--required */
.icon--required {
  position: relative;
}
.icon--required:before {
  position: absolute;
  content: "必須";
  color: #FFFFFF;
  font-size: 10px;
  text-align: center;
  line-height: 1;
  padding: 2px 4px;
  margin-left: 4px;
  position: relative;
  background: #c31515;
  border-radius: 2px;
  color: #707070;
}

/* input */
input[type=text],
input[type=tel],
input[type=email],
input[type=password],
input[type=number],
input[type=time],
input[type=date] {
  font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #ddd;
  padding: 1em 0.5em;
  font-family: "Kiwi Maru", serif !important;
  background: #fff;
  color: #000;
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=time]:focus,
input[type=date]:focus {
  border-color: inherit;
}
input[type=text].form__error,
input[type=tel].form__error,
input[type=email].form__error,
input[type=password].form__error,
input[type=number].form__error,
input[type=time].form__error,
input[type=date].form__error {
  background: #fff0ea;
  color: #c31515;
  border-color: #c31515;
}
input[type=text].form__error:focus,
input[type=tel].form__error:focus,
input[type=email].form__error:focus,
input[type=password].form__error:focus,
input[type=number].form__error:focus,
input[type=time].form__error:focus,
input[type=date].form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
input[type=text][disabled],
input[type=tel][disabled],
input[type=email][disabled],
input[type=password][disabled],
input[type=number][disabled],
input[type=time][disabled],
input[type=date][disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}

.input--half {
  width: 50% !important;
}

.input--quarter {
  width: 25% !important;
}

/* textarea */
textarea {
  font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #ddd;
  padding: 1em 0.5em;
  font-family: "Kiwi Maru", serif !important;
  height: auto;
  line-height: 1.6;
}
textarea:focus {
  border-color: inherit;
}
textarea.form__error {
  background: #fff0ea;
  color: #c31515;
  border-color: #c31515;
}
textarea.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
textarea[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}

/* select */
.form__select {
  display: inline-block;
  position: relative;
}
.form__select::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #FFFFFF;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  vertical-align: middle;
}
.form__select:after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #888;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  top: 50%;
  right: 0.75em;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.form__select select {
  font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #ddd;
  padding: 1em 0.5em;
  font-family: "Kiwi Maru", serif !important;
  padding-right: 1.5em;
  background-color: #fff;
}
.form__select select:focus {
  border-color: inherit;
}
.form__select select.form__error {
  background: #fff0ea;
  color: #c31515;
  border-color: #c31515;
}
.form__select select.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
.form__select select[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}

/* checkbox */
.form__checkbox label p {
  display: inline-block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__checkbox input[type=checkbox],
.form__checkbox input[type=radio],
.form__checkbox input[type=file] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__checkbox.form__error {
  color: #c31515;
}

/* radio */
.form__radio label p {
  display: inline-block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__radio input[type=checkbox],
.form__radio input[type=radio],
.form__radio input[type=file] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__radio.form__error {
  color: #c31515;
}

/* toggle button */
.form__toggle label p {
  display: inline-block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__toggle input[type=checkbox],
.form__toggle input[type=radio],
.form__toggle input[type=file] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__toggle.form__error {
  color: #c31515;
}
.form__toggle label p {
  padding-left: 0;
  position: relative;
}

/* horizontal */
.form--horizontal li {
  display: inline-block;
}
.form--horizontal li .form__selectbox {
  display: inline-block !important;
}

.form--horizontal label {
  display: inline-block;
  margin: 0 0.3em 0 0;
}

/* error-list */
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: inherit;
  margin: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/*# sourceMappingURL=normalize.min.css.map */
body {
  word-wrap: break-word;
}

section, main {
  display: block;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

i, em {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  line-height: 0;
}

* {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

/* common.scss
============================== */
html,
body {
  height: 100%;
  width: 100%;
  color: #707070;
  font-family: "Kiwi Maru", serif;
  font-weight: 300 !important;
  color: #707070;
  font-weight: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-font-kerning: normal;
          font-kerning: normal;
  font-optical-sizing: auto;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #FFFFFF;
}

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

.wrap {
  background: #FFF5CB;
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #707070;
}

.svg-parts, .svg-symbol {
  display: none;
}

@-webkit-keyframes txt-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes txt-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
.section-tit, .block-tit {
  letter-spacing: 0.02em;
}

.lead {
  margin-bottom: 30px;
}

.txt {
  margin: 0 0 1em;
}

.txt--sub,
.sub-txt-list {
  font-size: 0.85em;
  line-height: 1.4em;
}

.tit {
  word-break: break-word;
}

.copyright {
  letter-spacing: 0.09em;
}

.jasrac {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.02em;
}

.date, .category, .week {
  letter-spacing: 0.04em;
  line-height: 1;
}

.category, .week {
  color: #98CEC3;
}

.new .tit {
  position: relative;
}
.new .tit::after {
  content: "NEW";
  display: inline-block;
  font-family: "Caveat", cursive;
  font-size: 18px;
  color: #98CEC3;
  margin-left: 10px;
}

/* list
------------------------------ */
.list--info li {
  width: 100%;
  height: auto;
}
.list--info li:last-child {
  margin-bottom: 40px;
}
.list--info li a {
  transition: 0.3s;
  width: 100%;
  color: #707070;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.list--info li a .date {
  font-weight: 300;
  text-align: center;
  position: relative;
}
.list--info li a .date .month {
  position: relative;
  top: -18px;
  left: 4px;
  font-size: 14px;
}
.list--info li a .date .day {
  position: relative;
  line-height: 50px;
  top: 9px;
  left: -1px;
  font-size: 22px;
}
.list--info li a .date .day:before {
  transition: 0.3s;
  display: block;
  content: "";
  width: 35px;
  height: 0.8px;
  position: absolute;
  background: #707070;
  top: 3px;
  left: -15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.list--info li a .date .year {
  display: block;
  font-size: 10px;
  text-align: center;
  letter-spacing: 0.4em;
  padding: 5px 0 0;
}
.list--info li a .date__item .endDate {
  position: relative;
}
.list--info li a .date__item .endDate:before {
  content: "";
  position: absolute;
  display: inline-block;
  background: #707070;
  transition: 0.3s;
}
.list--info li a .tit {
  font-size: 18px;
  line-height: 1.4em;
  font-weight: 300;
  margin-left: 2%;
}
.list--info li a .tit-item {
  margin-left: 2%;
}

.category-9 .tit-item .tit,
.category-11 .tit-item .tit {
  margin-left: 0;
}

.list--info.list--live li .block--date__item {
  margin-right: 4%;
}

.no-data {
  width: 100%;
  margin: 0;
  padding: 80px 0;
  font-family: ronnia-condensed, "Kiwi Maru", serif;
  font-style: normal;
  font-weight: 700;
}
.no-data::before {
  display: none;
}

.list--video li a {
  display: block;
  width: 100%;
  color: #707070;
}
.list--video li a .thumb {
  line-height: 0;
  overflow: hidden;
  margin-bottom: 15px;
  height: 200px;
  position: relative;
}
.list--video li a .thumb::after {
  background: #EAF7FF;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scaleX(0.5) scaleY(1.8) skew(103deg) translate(-210%, -10%);
          transform: scaleX(0.5) scaleY(1.8) skew(103deg) translate(-210%, -10%);
  transition: 0.3s;
  opacity: 0.8;
  z-index: 10;
}
.list--video li a .thumb img {
  width: 100%;
}
.list--video li a:hover .thumb::after {
  -webkit-transform: scaleX(0.5) scaleY(1.8) skew(103deg) translate(360%, -10%);
          transform: scaleX(0.5) scaleY(1.8) skew(103deg) translate(360%, -10%);
}

.list--contents {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
.list--contents li.no-data {
  width: 100% !important;
  margin: 0 !important;
}
.list--contents li:nth-child(3n) {
  margin-right: 0;
}
.list--contents li a {
  display: block;
  width: 100%;
  color: #707070;
  transition: 0.3s;
}
.list--contents li .thumb {
  line-height: 0;
  overflow: hidden;
  margin-bottom: 15px;
  height: 200px;
  position: relative;
}
.list--contents li .thumb img {
  width: 100%;
}
.list--contents li .thumb .blur {
  -webkit-transform: scale(2);
          transform: scale(2);
  -webkit-filter: blur(20px);
          filter: blur(20px);
  background-size: cover;
}
.list--contents li .tit {
  font-size: 18px;
  display: inline-block;
  line-height: 1.5;
  margin-bottom: 5px;
}
.list--contents li .block--text {
  line-height: 0;
  margin-top: -1px;
}
.list--contents li .category {
  display: inline-block;
  font-size: 14px;
  margin-left: 0;
  margin-bottom: 8px;
  padding: 2px 4px;
}
.list--contents li .date {
  font-size: 14px;
  margin-bottom: 8px;
}

.list--attention li {
  text-indent: -0.5em;
  padding-left: 0.5em;
}
.list--attention li:not(:last-child) {
  margin-bottom: 1em;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  -webkit-transform: scale(0);
          transform: scale(0);
  transition: all 0.4s ease-out 0s;
  transition: opacity 0.4s cubic-bezier(0.16, 0.68, 0.65, 1.03) !important;
}
.drawer:before {
  content: "";
  background-image: url(/static/yhanzaki/official/common/logo_bg_cloud_top.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
}
.drawer:after {
  content: "";
  background-image: url(/static/yhanzaki/official/common/logo_bg_cloud.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  pointer-events: none;
}

.drawer-inner {
  height: 100%;
}
.drawer-inner .g-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.drawer-inner .g-nav .list--menu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
}
.drawer-inner .g-nav .list--menu li {
  transition: 0.3s;
}
.drawer-inner .g-nav .list--menu li a {
  color: #707070;
  word-break: break-all;
  line-height: 1;
  display: block;
}
.drawer-inner .g-nav .list--menu li a .menu {
  display: block;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.drawer-inner .g-nav .list--menu li a .submenu {
  position: relative;
  text-align: center;
  padding-left: 20px;
  left: -4px;
  opacity: 0.6;
  letter-spacing: -0.06em;
  color: #707070;
}
.drawer-inner .g-nav .list--menu li a .submenu:before {
  position: absolute;
  top: 50%;
  left: 5px;
  width: 10px;
  height: 1px;
  content: "";
  opacity: 0.6;
  border-bottom: 1px dashed #707070;
}
.drawer-inner .g-nav .works {
  text-align: center;
  color: #707070;
  opacity: 0.6;
}
.drawer-inner .g-nav .works:before {
  content: "";
  border-left: 1px dashed #707070;
  height: 16px;
  padding-left: 24px;
}
.drawer-inner .g-nav .works:after {
  content: "";
  border-right: 1px dashed #707070;
  padding-right: 24px;
}
.drawer-inner .g-nav .works-list {
  margin: 0 auto;
  max-width: 750px;
}
.drawer-inner .g-nav .works-list li {
  margin: 0 4% 0 0;
  transition: 0.3s;
  position: relative;
  display: inline-block;
}
.drawer-inner .g-nav .works-list li:after {
  content: "";
  position: absolute;
  top: 10px;
  right: -23px;
  display: inline-block;
  width: 16px;
  height: 1px;
  background-color: #707070;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.drawer-inner .g-nav .works-list li:last-child:after {
  display: none;
}
.drawer-inner .g-nav .works-list li a {
  transition: 0.3s;
}

.drawer__btn {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  transition: 0.5s;
  cursor: pointer;
}
.drawer__btn .open-menu-btn {
  height: 25px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transition: 0.3s;
}
.drawer__btn .open-menu-btn span {
  height: 1px;
  display: block;
  position: absolute;
  background-color: #899495;
  transition-duration: 0.3s;
  transition-property: all;
}
.drawer__btn .open-menu-btn span:nth-of-type(1) {
  top: 0;
  left: 4px;
}
.drawer__btn .open-menu-btn span:nth-of-type(2) {
  top: 8px;
  right: 4px;
}
.drawer__btn .open-menu-btn span:nth-of-type(3) {
  top: 16px;
  left: 4px;
}
.drawer__btn .open-menu-btn span:nth-of-type(4) {
  top: 24px;
  right: 4px;
}

.drawer-visible .drawer__btn span:nth-of-type(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 16px;
  left: 0;
}
.drawer-visible .drawer__btn span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.drawer-visible .drawer__btn span:nth-of-type(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 16px;
  left: 0;
}
.drawer-visible .drawer__btn span:nth-of-type(4) {
  opacity: 0; /*真ん中の線は透過*/
}
.drawer-visible .drawer {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1);
          transform: scale(1);
  background-color: #FFF5CB;
  z-index: 3;
}
.drawer-visible .drawer .drawer-inner {
  overflow-y: auto;
}
.drawer-visible .drawer .drawer-inner .submenu {
  position: relative;
  font-size: 10px;
  text-align: center;
  padding-left: 20px;
  top: 1px;
}
.drawer-visible .drawer .drawer-inner .submenu:before {
  position: absolute;
  top: 50%;
  left: 5px;
  width: 10px;
  height: 1px;
  content: "";
  border-bottom: 1px dashed #707070;
}

.footer {
  width: 100%;
  margin: 0;
  background-color: #EAF7FF;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer:after {
  content: "";
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.footer .inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.footer .inner .footer-main .footer_logo a {
  display: block;
}
.footer .inner .footer-main .sns-menu_list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.footer .inner .footer-main .sns-menu_list li:last-child {
  margin-right: 0;
}
.footer .inner .footer-main .sns-menu_list li img {
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .inner .footer-main a {
  display: block;
  line-height: 0;
}
.footer .inner .copyright {
  font-weight: normal;
  font-size: 10px;
}

.detail__btn, .list__more {
  font-family: ronnia-condensed, "Kiwi Maru", serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.detail__btn a, .list__more a {
  transition: 0.1s;
}

.detail__btn {
  font-size: 15px;
  text-align: center;
}
.detail__btn a {
  padding: 10px 0;
  display: inline-block;
}

.delighter {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
.delighter.started {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@-webkit-keyframes fadeIn_bottom {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn_bottom {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.page--home .wrap {
  background: #FFFFFF;
}
.page--home [class^=section--] {
  margin: 0 0 120px 0;
  z-index: 1;
  position: relative;
}
.page--home [class^=section--] .section-tit {
  text-align: center;
  line-height: 1;
}
.page--home [class^=section--] .section-tit span {
  display: block;
}
.page--home .section--top {
  height: 100vh;
  margin-bottom: 0;
}
.page--home .section--top .key_visual {
  position: relative;
}
.page--home .section--top .logo {
  width: auto;
  height: calc(100vh + 2px);
  position: fixed;
  top: -2px;
  left: 0;
}
.page--home .section--top .logo img, .page--home .section--top .logo svg {
  display: block;
  width: auto;
  height: 100%;
}
.page--home .mainvisual {
  background-color: #FFF5CB;
  position: relative;
  height: 100vh;
}
.page--home .mainvisual:after {
  content: "";
  background-image: url(/static/yhanzaki/official/common/logo_bg_cloud.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  position: absolute;
  width: 935px;
  height: 290px;
  bottom: 0;
  right: 0;
  z-index: 1;
  -webkit-animation: fadeIn_bottom forwards 1s 2s;
          animation: fadeIn_bottom forwards 1s 2s;
  opacity: 0;
}
.page--home .mainvisual h1 {
  opacity: 0;
  z-index: 2;
  position: absolute;
  bottom: 5%;
  right: 4%;
  -webkit-animation: fadeIn_bottom forwards 1s 2s;
          animation: fadeIn_bottom forwards 1s 2s;
}
.page--home .mainvisual h1 a {
  display: block;
  line-height: 0;
  transition: 0.3s;
}
.page--home .mainvisual h1 a:hover {
  opacity: 0.5;
}
.page--home .mainvisual .slider {
  opacity: 0;
  transition: opacity 0.5s;
}
.page--home .mainvisual .slider.slick-initialized {
  opacity: 1;
}
.page--home .mainvisual .slick-slider {
  margin-bottom: 0;
}
.page--home .mainvisual .slick-slide {
  height: 100vh;
}
.page--home .mainvisual .slick-slide img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.page--home .loaded .mainvisual:after {
  opacity: 1;
}
.page--home .loaded .mainvisual h1 {
  opacity: 1;
}
.page--home .section--bnr-top {
  margin-bottom: 0;
  background-color: #FFF5CB;
}
.page--home .section--bnr-top .slick-slider {
  transition: opacity 0.3s ease;
}
.page--home .section--bnr-top .banner-background .list--bnr {
  transition: opacity 0.3s linear;
}
.page--home .section--bnr-top .banner-background .list--bnr .slick-list {
  overflow: visible;
}
.page--home .section--bnr-top .banner-background .list--bnr li {
  margin-right: 24px;
  transition: 0.3s;
}
.page--home .section--bnr-top .banner-background .list--bnr li a {
  display: block;
  width: 100%;
  color: #707070;
  position: relative;
  overflow: hidden;
}
.page--home .section--bnr-top .banner-background .list--bnr .slick-dots {
  bottom: -44px;
  text-align: left;
}
.page--home .section--bnr-top .banner-background .list--bnr .slick-dots li {
  display: inline-block;
}
.page--home .section--bnr-top .banner-background .list--bnr .slick-dots li:last-child {
  margin-right: 0;
}
.page--home .section--bnr-top .banner-background .list--bnr .slick-dots li:first-child {
  margin-left: 0;
}
.page--home .section--bnr-top .banner-background .list--bnr .slick-dots li button {
  height: 3px;
  padding: 0;
  margin: 0;
  background: #ddd;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: none;
  -webkit-appearance: none;
}
.page--home .section--bnr-top .banner-background .list--bnr .slick-dots li button::before {
  display: none;
}
.page--home .section--bnr-top .banner-background .list--bnr .slick-dots .slick-active button {
  background: #98CEC3;
  opacity: 1;
}
.page--home .section--bnr-top .banner-background .list--bnr.slick-initialized {
  opacity: 1;
}
.page--home .footer {
  position: inherit;
}
.page--home .section--news:before {
  content: "";
  background-color: #FFF5CB;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.page--home .section--news:after {
  content: "";
  background-image: url(/static/yhanzaki/official/top/contents_cl.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  position: absolute;
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  z-index: -1;
}
.page--home .section--news .inner {
  margin: 0 auto;
  max-width: 960px;
  display: flex;
  flex-wrap: wrap;
}
.page--home .section--news .inner .block--tit {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page--home .section--news .inner .block--tit h2 {
  position: relative;
  font-weight: normal;
}
.page--home .section--news .inner .block--tit h2:before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  top: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/static/yhanzaki/official/top/icon_news.svg);
}
.page--home .section--news .inner .contents-left {
  z-index: 1;
}
.page--home .section--news .inner .contents-left li a {
  padding: 0;
}
.page--home .section--news .inner .contents-left li a .tit {
  width: 90%;
  font-weight: 300;
  position: relative;
}
.page--home .section--news .inner .contents-left li a .tit .new:after {
  content: "NEW";
  display: inline-block;
  font-family: "Caveat", cursive;
  font-size: 18px;
  color: #98CEC3;
  margin-left: 10px;
}
.page--home .section--news .inner .contents-left li a .date {
  width: 10%;
}
.page--home .section--live:before {
  content: "";
  background-color: #EAF7FF;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: -2;
}
.page--home .section--live:after {
  content: "";
  background-image: url(/static/yhanzaki/official/top/contents_cl.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  position: absolute;
  height: 180px;
  width: 22%;
  left: 0;
  z-index: -1;
}
.page--home .section--live .inner {
  margin: 0 auto;
  max-width: 960px;
  display: flex;
  flex-wrap: wrap;
}
.page--home .section--live .inner .block--tit {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page--home .section--live .inner .block--tit h2 {
  position: relative;
  font-weight: normal;
}
.page--home .section--live .inner .block--tit h2:before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  top: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/static/yhanzaki/official/top/icon_live.svg);
}
.page--home .section--live .inner .contents-left {
  z-index: 1;
}
.page--home .section--live .inner .contents-left li a {
  padding: 0;
}
.page--home .section--live .inner .contents-left li a .tit {
  width: 86%;
  font-weight: 300;
  position: relative;
}
.page--home .section--live .inner .contents-left li a .tit .new:after {
  content: "NEW";
  display: inline-block;
  font-family: "Caveat", cursive;
  font-size: 18px;
  color: #98CEC3;
  margin-left: 10px;
}
.page--home .section--live .inner .contents-left li a .date {
  width: 10%;
}
.page--home .section--live .inner .contents-left .more:after {
  background-color: #EAF7FF;
}
.page--home .section--content {
  padding: 0;
  margin-bottom: 0;
}
.page--home .section--content .mountain {
  background: linear-gradient(-45deg, #CFE2DE 25%, #D6EAE6 25%, #D6EAE6 50%, #CFE2DE 50%, #CFE2DE 75%, #D6EAE6 75%, #D6EAE6);
  background-size: 20px 20px;
}
.page--home .section--content .mountain:before {
  content: "";
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  position: absolute;
}
.page--home .section--content .mountain:after {
  content: "";
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  position: absolute;
}
.page--home .section--content .inner {
  background: linear-gradient(-45deg, #CFE2DE 25%, #D6EAE6 25%, #D6EAE6 50%, #CFE2DE 50%, #CFE2DE 75%, #D6EAE6 75%, #D6EAE6);
  background-size: 20px 20px;
}
.page--home .section--content .inner .bg {
  margin: 0 auto;
  background-color: #fff;
  position: relative;
}
.page--home .section--content .inner .bg ul {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}
.page--home .section--content .inner .bg ul li {
  height: auto;
  position: relative;
  text-align: center;
}
.page--home .section--content .inner .bg ul li:last-child {
  margin-right: 0;
}
.page--home .section--content .inner .bg ul li a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page--home .section--content .inner .bg ul li a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  top: 0;
  left: 0;
  z-index: 1;
}
.page--home .section--content .inner .bg ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  top: 0;
  left: 0;
  z-index: 1;
}
.page--home .section--content .inner .bg ul li a .line {
  height: 1px;
  display: block;
  position: absolute;
  background-color: #96a2a0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  z-index: 2;
}
.page--home .section--content .inner .bg ul li a .frame_top_bottom {
  position: relative;
  display: inline-block;
  width: 88%;
  height: 88%;
  box-sizing: border-box;
  border-top: 1px solid #96a2a0;
  border-bottom: 1px solid #96a2a0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page--home .section--content .inner .bg ul li a .frame_left_right {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 88%;
  box-sizing: border-box;
  border-left: 1px solid #96a2a0;
  border-right: 1px solid #96a2a0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page--home .section--content .inner .bg ul li a h3 {
  font-weight: normal;
}
.page--home .section--content .inner .bg ul li a h3 .content-tit {
  position: relative;
  font-weight: 300;
}
.page--home .section--content .inner .bg ul li a h3 .sub-tit {
  display: block;
}
.page--home .list--info li.no-data {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
}
.page--home .list--info li.no-data::before, .page--home .list--info li.no-data::after {
  display: none !important;
}

.slick-slide a {
  display: block;
  height: 100%;
}
.slick-slide a img {
  width: 100%;
  display: block;
  height: auto;
  margin: 0 auto;
}

.btn {
  position: relative;
  overflow: hidden;
}
.btn .btn--main {
  display: block;
  margin: 0 auto;
  border: none;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  font-size: 1em;
  width: 240px;
  height: 50px;
  line-height: 50px;
  background: #707070;
  box-sizing: content-box;
  font-weight: 400;
  color: #fff;
  border-radius: 3px;
}
.btn .btn--sub {
  display: block;
  margin: 0 auto;
  border: none;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  font-size: 1em;
  width: 240px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  box-sizing: content-box;
  font-weight: 400;
  color: #fff;
  border-radius: 3px;
  color: #707070;
  margin: 40px auto 0;
}

/* btn
------------------------------ */
.more {
  text-align: right;
  font-size: 14px;
  position: relative;
}
.more a {
  padding: 12px 57px 14px 24px;
  position: absolute;
  z-index: 1;
}
.more a:after {
  content: "";
  position: absolute;
  border-bottom: 1px dashed #707070;
  width: 56px;
  top: 21px;
  transition: 0.3s;
}
.more:before {
  content: "";
  position: absolute;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  border: 1px dashed #707070;
  transition: 0.6s;
}
.more:after {
  content: "";
  position: absolute;
  border-radius: 100%;
  width: 28px;
  height: 28px;
  background-color: #FFF5CB;
  transition: 1s;
}

.block--pager {
  text-align: center;
  margin: 80px auto 0;
  padding: 0;
  position: relative;
  padding: 10px;
}
.block--pager li {
  display: inline-block;
  font-size: 18px;
  margin: 0 5px;
  position: relative;
  vertical-align: middle;
}
.block--pager .pager__item--current {
  color: #98CEC3;
}
.block--pager .pager__item--current, .block--pager .pager__item--other a {
  padding: 0.5em;
  transition: 0.3s;
}
.block--pager .pager__item--current:hover, .block--pager .pager__item--other a:hover {
  opacity: 0.5;
}
.block--pager .pager__item--older, .block--pager .pager__item--newer {
  z-index: 2;
  padding: 0.5em 0;
}
.block--pager .pager__item--older span, .block--pager .pager__item--newer span {
  opacity: 0.2;
}
.block--pager .pager__item--older a, .block--pager .pager__item--older span, .block--pager .pager__item--newer a, .block--pager .pager__item--newer span {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 0.5em;
}
.block--pager .pager__item--older a:hover::after, .block--pager .pager__item--newer a:hover::after {
  opacity: 0.5;
}
.block--pager .pager__item--older {
  left: -0.5em;
}
.block--pager .pager__item--older a::after, .block--pager .pager__item--older span::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #707070;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  vertical-align: middle;
}
.block--pager .pager__item--newer {
  right: -0.5em;
}
.block--pager .pager__item--newer a::after, .block--pager .pager__item--newer span::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #707070;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  vertical-align: middle;
}

.block--category {
  margin-top: 40px;
  font-size: 16px;
  position: relative;
}
.block--category li {
  display: inline-block;
  margin: 0 0.25em;
}
.block--category li a {
  display: block;
  position: relative;
  line-height: 1.5;
  overflow: hidden;
  color: #707070;
  transition: 0.3s;
}
.block--category li a::after {
  content: attr(data-txt);
  display: block;
  width: 0;
  color: #EAF7FF;
  transition: 0.2s;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.2;
}
.block--category li a:hover {
  color: #98CEC3;
}
.block--category li.current a {
  color: #98CEC3;
}
.block--category li.current a:hover {
  color: #75ccba !important;
}
.block--category li.current a::after {
  width: 100%;
}

.block--share {
  text-align: right;
}
.block--share .social-list {
  text-align: right;
}
.block--share li {
  display: inline-block;
  margin: 0 6px 0 0;
  width: 22px;
  height: 22px;
}
.block--share li:last-of-type {
  margin-right: 0;
}
.block--share li a:hover i {
  color: #98CEC3;
}
.block--share li a:hover svg {
  fill: #98CEC3;
}
.block--share li a {
  padding: 0 4px 0 !important;
  cursor: pointer;
}
.block--share li i {
  transition: 0.2s;
  font-size: 18px;
  vertical-align: text-bottom;
  color: #707070;
}
.block--share li.share {
  width: 50px;
  margin-right: 10px;
  font-size: 10px;
  opacity: 0.6;
  letter-spacing: 0.1em;
  font-family: ronnia-condensed, "Kiwi Maru", serif;
  font-style: normal;
  font-weight: 800;
}
.block--share li.lineIco {
  vertical-align: -5px;
  fill: #707070;
}
.block--share li.lineIco svg {
  transition: 0.2s;
}

.list__more a,
.detail__btn a {
  font-weight: 300;
  display: inline-block;
  padding: 10px 0;
  text-shadow: 0 0 transparent;
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
  line-height: 1;
  letter-spacing: 0.05em;
}
.list__more a:hover,
.detail__btn a:hover {
  color: #75ccba;
}

.no-data {
  text-align: center;
  letter-spacing: 0.1em;
  margin: 30px auto;
}

.ph, .thumb {
  position: relative;
  margin: 1.5em 0;
  line-height: 0;
}
.ph::after, .thumb::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.video, .youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  padding-top: 56.25%;
  margin: 20px auto;
}
.video iframe, .video video, .youtube iframe, .youtube video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.video .jstream-eqPlayer, .youtube .jstream-eqPlayer {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.video .jstream-eqPlayer *, .youtube .jstream-eqPlayer * {
  background-size: auto;
}
.video .jstream-eqPlayer * .eq-center-icon-play, .youtube .jstream-eqPlayer * .eq-center-icon-play {
  color: transparent;
}
.video .eq-icon-play,
.video .eq-icon-sound, .youtube .eq-icon-play,
.youtube .eq-icon-sound {
  color: transparent;
}

.block--player {
  height: 0;
  aspect-ratio: 16/9;
  padding-top: 56.25%;
  background: #FFFFFF;
  line-height: 0;
  position: relative;
}
.block--player video,
.block--player img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.block--player .ulizahtml5 {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

@-webkit-keyframes scroll {
  to {
    fill: #000;
  }
}

@keyframes scroll {
  to {
    fill: #000;
  }
}
.section--list .list--info {
  position: relative;
}

.section--detail {
  width: 100%;
}
.section--detail.new {
  color: #707070;
}
.section--detail .block--main {
  max-width: 960px;
  position: relative;
  margin: 0 auto;
}
.section--detail .block--main .tit {
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 300;
}
.section--detail .block--main .date {
  margin-bottom: 40px;
  font-size: 14px;
}
.section--detail .block--main .endDate {
  padding-left: 16px;
  position: relative;
}
.section--detail .block--main .endDate:before {
  content: "ー";
  position: absolute;
  display: inline-block;
  left: -1px;
  top: 4px;
}
.section--detail .block--main .block--date {
  margin-bottom: 40px;
  font-size: 14px;
}
.section--detail .block--main .block--txt {
  margin: 0 auto 80px;
  line-height: 1.5;
}
.section--detail .block--main .block--txt p {
  font-size: 16px !important;
  font-family: ronnia-condensed, "Kiwi Maru", serif !important;
  color: #707070 !important;
}
.section--detail .block--main .block--txt span {
  font-size: 16px !important;
  font-family: ronnia-condensed, "Kiwi Maru", serif !important;
  color: #707070;
}
.section--detail .block--main .block--txt a {
  text-decoration: underline;
  color: #707070 !important;
  transition: 0.3s;
}
.section--detail .block--main .block--txt a:hover {
  color: #98CEC3 !important;
}

.category-16 .block--main .tit {
  margin-bottom: 40px;
}

.section--list,
.section--detail {
  margin: 0 auto;
  max-width: 960px;
  position: relative;
}
.section--list .block--title,
.section--detail .block--title {
  position: relative;
}
.section--list .block--title .section-tit,
.section--detail .block--title .section-tit {
  display: inline-block;
  font-weight: 300;
}

.block--title h2 {
  position: relative;
}
.block--title h2:after {
  content: "";
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  position: absolute;
}

.category-7 h2:after {
  background-image: url(/static/yhanzaki/official/common/icon_news_undertit.svg);
}

.page--mailmagazine h2:after {
  background-image: url(/static/yhanzaki/official/common/icon_mailmagazine.svg);
}

.category-9 h2:after {
  background-image: url(/static/yhanzaki/official/common/icon_live_undertit.svg);
}

.page--profile h2:after {
  background-image: url(/static/yhanzaki/official/top/icon_profile.svg);
}

.category-11 h2:after {
  background-image: url(/static/yhanzaki/official/top/icon_media.svg);
}

.category-16 h2:after {
  background-image: url(/static/yhanzaki/official/top/icon_movie.svg);
}

.page--disco h2:after {
  background-image: url(/static/yhanzaki/official/top/icon_discography.svg);
}

.page--contact h2:after {
  background-image: url(/static/yhanzaki/official/top/icon_contact.svg);
}

.category-76 h2:after {
  background-image: url(/static/yhanzaki/official/top/icon_works_01.svg);
}

.category-77 h2:after {
  background-image: url(/static/yhanzaki/official/top/icon_works_02.svg);
}

.category-78 h2:after {
  background-image: url(/static/yhanzaki/official/top/icon_works_03.svg);
}

.category-9 h3 {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 24px;
}
.category-9 .archive {
  margin-top: 20px;
  position: relative;
  font-size: 14px;
  transition: 0.3s;
}
.category-9 .archive:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  transition: all 0.3s;
  top: 6px;
  margin-left: 8px;
}
.category-9 .archive a {
  color: #707070;
  transition: 0.3s;
}
.category-9 .archive:hover a {
  color: #98CEC3;
}
.category-9 .archive:hover:after {
  border-top: 1px solid #98CEC3;
  border-right: 1px solid #98CEC3;
}
.category-9 .archive-live:after {
  left: 90px;
}

.category-11 h3 {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: -24px;
}
.category-11 .archive--list {
  display: flex;
}
.category-11 .archive {
  margin-top: 12px;
  position: relative;
  font-size: 14px;
  transition: 0.3s;
  margin-right: 16px;
}
.category-11 .archive:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  transition: all 0.3s;
  top: 6px;
  margin-left: 8px;
}
.category-11 .archive a {
  color: #707070;
  transition: 0.3s;
}
.category-11 .archive:hover a {
  color: #98CEC3;
}
.category-11 .archive:hover:after {
  border-top: 1px solid #98CEC3;
  border-right: 1px solid #98CEC3;
}

.category-11 .category {
  margin-left: 8px;
}
.category-11 .list--info .category {
  color: #98CEC3;
  text-align: center;
  font-size: 11px;
  border: 1px solid #98CEC3;
  border-radius: 30px;
  padding: 1px 16px;
  margin: 0 0 5px 0;
  display: inline-block;
}
.category-11 .block--category {
  margin-bottom: 24px;
}
.category-11 .block--regular {
  display: none;
  border: 1px solid #b8b8b8;
  padding: 20px;
  margin: 0 auto 40px;
  border-radius: 8px;
}
.category-11 .block--regular .block-tit {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: bold;
}
.category-11 .block--regular .list--regular li {
  line-height: 1.4;
  margin-bottom: 16px;
}
.category-11 .block--regular .list--regular li p {
  font-size: 15px;
  line-height: 1.5;
}
.category-11 .block--regular .list--regular li .tit {
  font-size: 18px;
}
.category-11 .block--regular .list--regular li:last-child {
  margin-bottom: 0;
}

.page--profile h3.section-tit {
  font-weight: 300;
}
.page--profile .profile--img {
  text-align: center;
}
.page--profile .profile--img .thumb {
  margin: 0;
}
.page--profile .profile--img .thumb .dummy {
  position: absolute;
}
.page--profile .txt {
  line-height: 1.5;
  font-weight: 300;
  margin: 0;
}
.page--profile .txt a {
  display: block;
  color: #707070;
  padding-top: 40px;
  transition: 0.3s;
  position: relative;
}
.page--profile .txt a:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  bottom: 7px;
  left: 103px;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  transition: all 0.3s;
}

.page--disco .block--category {
  margin-bottom: 40px !important;
}
.page--disco .list--contents li .disc-review {
  line-height: 1.5;
  font-size: 14px;
}
.page--disco .list--contents li .thumb {
  height: auto;
}
.page--disco .list--contents li .thumb img:not(.blur) {
  position: relative;
  background-size: contain;
  z-index: 2;
}
.page--disco .list--contents li .thumb img.blur {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.page--disco .list--contents li .btn--main {
  width: auto;
  display: inline-block;
  font-size: 12px;
  font-family: ronnia-condensed, "Kiwi Maru", serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 10px;
  height: auto;
  line-height: 1;
  transition: 0.1s;
}
.page--disco .list--contents li .btn--main:hover {
  background: #EAF7FF;
}
.page--disco .list--contents li .disc-date {
  margin-bottom: 8px;
}
.page--disco .list--contents li .disc-date .category {
  margin-bottom: 0;
  padding: 0 0 0 8px;
  display: inline-block;
}
.page--disco .list--contents li .disc-date .date {
  margin-bottom: 0;
  padding: 0;
  display: inline-block;
}
.page--disco .section--detail-inner {
  display: flex;
  flex-wrap: wrap;
}
.page--disco.page--disco__detail .section--detail::before {
  display: none;
}
.page--disco.page--disco__detail .block--bg {
  width: 60vw;
  height: 60vw;
  position: fixed;
  top: -6vw;
  left: -90px;
  background: no-repeat center/contain;
}
.page--disco.page--disco__detail .list--jacket li {
  margin-bottom: 20px;
}
.page--disco.page--disco__detail .list--jacket .thumb {
  text-align: center;
  margin-top: 0;
  margin-bottom: 5px;
}
.page--disco.page--disco__detail .list--jacket .thumb img {
  margin: 0 auto;
}
.page--disco.page--disco__detail .list--jacket .name {
  text-align: center;
  font-size: 12px;
}
.page--disco.page--disco__detail .block--review {
  margin-bottom: 24px;
  line-height: 1.5;
}
.page--disco.page--disco__detail .block--review .btn a {
  margin: 0;
}
.page--disco.page--disco__detail .detail__btn {
  margin-top: 40px;
}
.page--disco .block--detail .tit {
  margin-bottom: 10px;
  font-weight: 300;
}
.page--disco .block--detail .category {
  font-size: 14px;
  display: inline-block;
}
.page--disco .block--detail .date {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 20px;
}
.page--disco .block--comment {
  line-height: 1.5;
}

.page--attention.section--detail .block--main .tit {
  font-size: 22px;
  border-bottom: 1px solid;
  margin-bottom: 1em;
}
.page--attention.section--detail .block--main .tit:not(:first-child) {
  margin-top: 40px;
}
.page--attention.section--detail .block--main h3.tit,
.page--attention.section--detail .block--main .block--main__tit {
  border: none;
  background: #c00;
  color: #fff;
  padding: 10px 0 9px 10px;
  text-align: center;
  margin-bottom: 40px;
}
.page--attention.section--detail .block--main h3.tit {
  margin-top: 60px;
}
.page--attention.section--detail .block--main .block--main__tit {
  font-size: 22px;
  background: #707070;
}
.page--attention.section--detail .block--main .txt--basic:not(.last-child) {
  margin-bottom: 1em;
}

.page--entry .block--main {
  max-width: 900px;
  background: #FFFFFF;
  position: relative;
  padding: 60px 8%;
  margin: 0 auto;
}
.page--entry .block--main .section-tit {
  display: block;
  width: 80%;
  margin: 0 auto 40px;
}
.page--entry .block--contents {
  margin-top: 40px;
}
.page--entry .block--contents .block-tit {
  text-align: center;
  font-size: 40px;
  margin-bottom: 20px;
}
.page--entry .block--contents .list--contents {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
.page--entry .block--contents .list--contents li {
  width: 48%;
  background: #707070;
  color: #FFFFFF;
  padding: 40px;
  margin-right: 0;
  margin-bottom: 4%;
}
.page--entry .block--contents .list--contents li .tit {
  font-size: 18px;
  font-weight: bold;
  background: none;
  margin-bottom: 15px;
  padding: 0;
}
.page--entry .table--site-info {
  margin: 60px auto;
  border: 5px solid;
  font-size: 12px;
}
.page--entry .table--site-info tr {
  border-bottom: 1px solid #222;
}
.page--entry .table--site-info th {
  width: 30%;
  font-size: 14px;
  background: #707070;
  color: #FFFFFF;
}
.page--entry .table--site-info td {
  padding: 20px;
}
.page--entry .table--site-info td figure {
  width: 100px;
  margin: 0;
  left: -10px;
}
.page--entry .table--site-info td .flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
.page--entry .table--site-info td .flex > div {
  font-size: 12px;
}
.page--entry .table--site-info td .flex > div p:first-child {
  font-weight: bold;
}
.page--entry .list--note {
  font-size: 13px;
}
.page--entry .list--note li {
  padding-left: 1em;
  text-indent: -1em;
}
.page--entry .list--note li:not(last-child) {
  margin-bottom: 5px;
}
.page--entry dl dt {
  font-weight: bold;
}
.page--entry dl dd:not(last-child) {
  margin-bottom: 1em;
}

.page--photo .list--contents li .tit {
  padding-top: 0;
}
.page--photo .list--contents li .thumb img {
  background-size: cover !important;
}
.page--photo .list--contents .new {
  position: relative;
}
.page--photo .list--contents .new:before {
  content: "";
  display: inline-block;
  background-image: url(/static/yhanzaki/official/common/left_cl.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  position: absolute;
  z-index: 3;
}
.page--photo .list--contents .new:after {
  position: absolute;
  content: "NEW";
  display: inline-block;
  font-family: "Caveat", cursive;
  color: #98CEC3;
  font-weight: bold;
  z-index: 4;
}
.page--photo .block--category.block--archive {
  left: 0;
}
.page--photo .block--category.block--archive li a {
  padding-right: 10px;
  position: relative;
}
.page--photo .block--category.block--archive li a::after {
  display: block;
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid #98CEC3;
  border-right: 1px solid #98CEC3;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 8px;
  right: 0;
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--photo .block--category.block--archive {
    margin-top: 0;
  }
  .page--photo .block--category.block--archive li a {
    padding-right: 7px;
  }
  .page--photo .block--category.block--archive li a::after {
    width: 5px;
    height: 5px;
    top: 3px;
  }
}
@media screen and (min-width: 961px) {
  .page--photo .block--pager {
    left: -18px;
  }
}
.page--photo .list--information .tit {
  padding-top: 0;
}

.page--photo.detail .section--list .block--title {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.page--photo.detail .section--list .block--title .tit {
  display: inline-block;
  padding-left: 28px;
  position: relative;
  top: 1px;
}
.page--photo.detail .section--list .block--title .tit:before {
  position: absolute;
  top: 50%;
  left: 5px;
  width: 16px;
  height: 1px;
  content: "";
  border-bottom: 1px dashed #707070;
}

.page--photo .section--list .list--contents li a .thumb .blur {
  width: 200%;
  height: 200%;
  position: absolute;
  top: -50%;
  left: -50%;
  z-index: 1;
}
.page--photo .section--list .list--contents li a .thumb .blur img {
  -webkit-filter: blur(6px);
          filter: blur(6px);
  background-size: cover;
}
.page--photo .section--list .list--contents li a .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  background-size: contain;
}

.modal-open .drawer__btn {
  pointer-events: none;
}

#swipebox-slider {
  cursor: auto;
}
#swipebox-slider .slide-loading {
  background-image: none !important;
}
#swipebox-slider .slide img {
  max-height: 80%;
}

#swipebox-overlay {
  background: rgba(255, 245, 203, 0.9);
}

#swipebox-prev.disabled,
#swipebox-next.disabled {
  opacity: 0.2;
}

#swipebox-action #swipebox-close {
  top: 30px;
  right: 30px;
  background: none;
}
#swipebox-action #swipebox-close::before, #swipebox-action #swipebox-close::after {
  content: "";
  width: 40px;
  height: 1px;
  background: #707070;
  position: absolute;
  top: 20px;
  transition: all 0.6s ease-out 0s;
  -webkit-transition: all 0.6s ease-out 0s;
}
#swipebox-action #swipebox-close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#swipebox-action #swipebox-close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#swipebox-action #swipebox-prev,
#swipebox-action #swipebox-next {
  color: #707070;
  background: none;
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#swipebox-action #swipebox-prev {
  left: 3%;
}
#swipebox-action #swipebox-prev::after {
  content: "";
  display: inline-block;
  width: 1.75em;
  height: 1.75em;
  border: 1px solid;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  vertical-align: middle;
  pointer-events: none;
  margin-top: -0.25em;
  margin-right: 0.25em;
  margin-left: 1em;
  margin-top: 1em;
}
#swipebox-action #swipebox-next {
  right: 3%;
}
#swipebox-action #swipebox-next::after {
  content: "";
  display: inline-block;
  width: 1.75em;
  height: 1.75em;
  border: 1px solid;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  vertical-align: middle;
  pointer-events: none;
  margin-top: -0.25em;
  margin-right: 0.25em;
  margin-top: 1em;
}

#swipebox-caption {
  width: 100%;
  padding: 0 2%;
  text-align: center;
  position: absolute;
  bottom: 4vh;
  color: #707070;
}

.page--contact .contact--img {
  text-align: center;
}
.page--contact .contact--img .thumb {
  margin: 0;
}
.page--contact .contact--img .thumb .dummy {
  position: absolute;
}
.page--contact .contact--img .img {
  border: 1px dashed #707070;
  border-radius: 8px;
}
.page--contact .contact--form .txt {
  margin-bottom: 40px;
  line-height: 1.5;
}
.page--contact .contact--form .block--form .form--post dt {
  margin-bottom: 5px;
}
.page--contact .contact--form .block--form .form--post dt .required {
  color: #d77870;
  font-size: 12px;
  padding-left: 5px;
}
.page--contact .contact--form .block--form .form--post dd {
  margin-bottom: 24px;
}
.page--contact .contact--form .block--form .form--post dd:last-child {
  margin-bottom: 40px;
}
.page--contact .contact--form .block--form .form--post dd input {
  color: #707070 !important;
  font-family: "Kiwi Maru", serif !important;
  width: 100%;
}
.page--contact .contact--form .block--form .form--post dd textarea {
  color: #707070;
  border: 1px solid #ddd;
}
.page--contact .btn .btn--main {
  background: #98CEC3;
  border-radius: 50px;
  transition: 0.3s;
}
.page--contact .questionnaire .txt {
  margin-bottom: 40px;
  line-height: 1.5;
}
.page--contact .contact--btn--area {
  border-bottom: 1px dashed #ddd;
}
.page--contact .contact--btn--area .block--subtitle {
  margin-bottom: 16px;
}
.page--contact .contact--btn--area .block--subtitle h3 {
  font-size: 22px;
  font-weight: 300;
}
.page--contact .contact--btn--area .txt {
  margin-bottom: 40px;
  line-height: 1.4;
}
.page--contact .letter--area {
  border-bottom: none;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.page--questionnaire .txt {
  margin-bottom: 40px;
  line-height: 1.5;
}
.page--questionnaire .formList {
  /* radio */
}
.page--questionnaire .formList dt {
  margin-bottom: 5px;
  position: relative;
}
.page--questionnaire .formList dt .icon--required:before {
  content: "必須";
  margin: 0;
  padding: 0 0 0 5px;
  color: #d77870;
  font-size: 12px;
  background: none;
  position: relative;
}
.page--questionnaire .formList dd {
  margin: 5px 0 24px;
  color: #707070;
}
.page--questionnaire .formList dd select {
  color: #707070;
}
.page--questionnaire .formList dd input {
  color: #707070 !important;
  font-family: "Kiwi Maru", serif !important;
}
.page--questionnaire .formList .radio--type input,
.page--questionnaire .formList .radio--type label {
  display: inline-block;
}
.page--questionnaire .formList .radio--type p {
  display: inline-block;
  padding-left: 5px;
}
.page--questionnaire .formList .form__radio label p {
  display: inline-block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.page--questionnaire .formList .form__radio input[type=checkbox],
.page--questionnaire .formList .form__radio input[type=radio],
.page--questionnaire .formList .form__radio input[type=file] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.page--questionnaire .formList .form__radio.form__error {
  color: #c31515;
}
.page--questionnaire .formList .form__radio label p {
  padding-left: 1.6em;
}
.page--questionnaire .formList .form__radio label p::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  border: 1px solid #888;
  margin: -0.6em 0 0;
  position: absolute;
  top: 50%;
  left: 0;
}
.page--questionnaire .formList .form__radio :checked ~ p::before {
  border-color: #98CEC3;
  border-width: 4px;
}
.page--questionnaire .formList textarea {
  color: #707070;
  border: 1px solid #ddd;
}
.page--questionnaire .formList label {
  margin: 0 16px 0 5px;
}
.page--questionnaire .btn {
  text-align: center;
}
.page--questionnaire .btn .btn--main {
  margin: 16px auto 0;
  background: #98CEC3;
  border-radius: 50px;
  transition: 0.3s;
  color: #FFFFFF;
}
.page--questionnaire .detail__btn {
  margin-top: 80px;
}
.page--questionnaire .error {
  padding: 24px;
  margin-bottom: 40px;
  color: #d77870;
  border: 1px solid #d77870;
  border-radius: 8px;
}

.complete .txt {
  font-weight: bold;
  text-align: center;
}

.page--confirmation .formList dt {
  font-size: 14px;
  color: #9c9c9c;
}
.page--mailmagazine .letter {
  border: 1px dashed #707070;
  border-radius: 8px;
  padding: 20px;
  margin: 0 auto 40px;
}
.page--mailmagazine .letter .section-tit {
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 300;
}
.page--mailmagazine .letter .txt {
  margin-bottom: 0;
  line-height: 1.5;
}
.page--mailmagazine .letter .txt span {
  color: #d77870;
  font-size: 14px;
}
.page--mailmagazine ul {
  margin-bottom: 40px;
}
.page--mailmagazine ul li {
  line-height: 1.5;
}
.page--mailmagazine ul li:nth-child(2) {
  margin-bottom: 20px;
}
.page--mailmagazine ul .important {
  color: #d77870;
}
.page--mailmagazine form .imput-half {
  color: #707070;
  font-family: "Kiwi Maru", serif;
  font-weight: 300;
}
.page--mailmagazine .here {
  margin-bottom: 8px;
}
.page--mailmagazine .btn {
  text-align: center;
}
.page--mailmagazine .btn .btn--main {
  margin: 40px auto;
  background: #98CEC3;
  border-radius: 50px;
  transition: 0.3s;
  color: #FFFFFF;
  font-weight: 300;
}

@media screen and (min-width: 961px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block;
  }
  /*ヘッダー
  ------------------------------ */
  .header {
    position: fixed;
    width: 100%;
    z-index: 10;
    height: 300px;
    transition: 0.3s;
  }
  .header:before {
    content: "";
    background-image: url(/static/yhanzaki/official/top/chara.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto;
    position: absolute;
    width: 66px;
    height: 45px;
    top: 26%;
    right: 55%;
    z-index: 1;
    transition: top 0.5s, right 0.5s;
  }
  .header .top_cl:before {
    content: "";
    background-image: url(/static/yhanzaki/official/common/cloud_top_pc_l.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    position: absolute;
    width: 90%;
    height: 300px;
    top: 0;
    left: 0;
    transition: top 0.5s;
  }
  .header .top_cl:after {
    content: "";
    background-image: url(/static/yhanzaki/official/common/cloud_top_pc_r.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 300px;
    top: 0;
    right: 0;
    transition: top 0.5s;
  }
  .header h1 {
    position: absolute;
    top: 24%;
    left: 4.5%;
    z-index: 1;
    transition: top 0.5s;
  }
  .drawer__btn {
    right: 4.5%;
    top: 70px;
  }
  .drawer__btn .open-menu-btn {
    width: 40px;
  }
  .drawer__btn .open-menu-btn span {
    width: 40px;
  }
  .open-menu-btn:hover span:nth-of-type(1) {
    left: 0;
  }
  .open-menu-btn:hover span:nth-of-type(2) {
    right: 0;
  }
  .open-menu-btn:hover span:nth-of-type(3) {
    left: 0;
  }
  .open-menu-btn:hover span:nth-of-type(4) {
    right: 0;
  }
  header.top {
    height: 200px;
  }
  header.top:before {
    top: 15%;
    right: 64%;
  }
  header.top .top_cl:before {
    top: -100px;
  }
  header.top .top_cl:after {
    top: -100px;
  }
  header.top h1 {
    top: 11%;
  }
  .topfix {
    top: 35px;
  }
  .section--bnr-top .banner-background .list--bnr li a {
    transition: 0.3s;
  }
  .section--bnr-top .banner-background .list--bnr li a:hover {
    opacity: 0.5;
  }
  /* btn
  ------------------------------ */
  .more a {
    right: 2%;
  }
  .more:before {
    top: 2px;
    right: 12.4%;
  }
  .more:after {
    top: 8px;
    right: 13.3%;
  }
  .more:hover a:after {
    width: 0 !important;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .more:hover:before {
    opacity: 0;
  }
  .more:hover:after {
    -webkit-transform: scale(2);
            transform: scale(2); /* 拡大 */
    -webkit-filter: blur(3px);
            filter: blur(3px);
  }
  .nav {
    height: 100%;
    background: none;
    padding: 40px 0 10px;
    position: relative;
  }
  .nav li {
    margin-bottom: 5px;
  }
  .nav li a {
    display: block;
    font-weight: normal;
    font-size: 14px;
    padding: 5px 0;
    z-index: 50;
    position: relative;
    color: #fff;
    line-height: 1.3;
  }
  .drawer:before {
    width: 935px;
    height: 290px;
  }
  .drawer:after {
    width: 935px;
    height: 290px;
  }
  .drawer .drawer-inner .g-nav .list--menu {
    padding: 0 1% 0 18%;
  }
  .drawer .drawer-inner .g-nav .list--menu li {
    width: 45%;
    height: 6vh;
  }
  .drawer .drawer-inner .g-nav .list--menu li a {
    transition: 0.3s;
  }
  .drawer .drawer-inner .g-nav .list--menu li a .menu {
    font-size: 18px;
  }
  .drawer .drawer-inner .g-nav .list--menu li a .submenu {
    font-size: 10px;
  }
  .drawer .drawer-inner .g-nav .list--menu li a:hover {
    color: #73c0b0;
  }
  .drawer .drawer-inner .g-nav .list--menu li a:hover .submenu {
    color: #73c0b0;
  }
  .drawer .drawer-inner .g-nav .list--menu li a:hover .submenu:before {
    border-bottom: 1px dashed #73c0b0;
  }
  .drawer .drawer-inner .works {
    margin: 40px 0 24px;
  }
  .drawer .drawer-inner .works-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .drawer .drawer-inner .works-list li {
    margin: 0 5% 0 0;
  }
  .drawer .drawer-inner .works-list li:last-child {
    margin: 0;
  }
  .drawer .drawer-inner .works-list li .menu {
    font-size: 16px;
  }
  .drawer .drawer-inner .works-list li a:hover {
    color: #73c0b0;
  }
  /* フッター
  ------------------------------ */
  .footer {
    padding: 40px 5%;
  }
  .footer:after {
    background-image: url(/static/yhanzaki/official/top/wave_pc.png);
    width: 100%;
    height: 100%;
    top: -200px;
    left: 0;
  }
  .footer .footer-main .footer_logo {
    width: 20%;
  }
  .footer .footer-main .footer_logo a {
    transition: 0.3s;
  }
  .footer .footer-main .footer_logo a:hover {
    opacity: 0.5;
  }
  .footer .footer-main .footer_logo img {
    width: 80%;
  }
  .footer .footer-main .sns-menu_list {
    padding-top: 2%;
    width: 20%;
  }
  .footer .footer-main .sns-menu_list li {
    margin: 0 22px 0 0;
  }
  .footer .footer-main .sns-menu_list li a {
    transition: 0.3s;
  }
  .footer .footer-main .sns-menu_list li a:hover {
    opacity: 0.5;
  }
  .footer .footer-main .sns-menu_list li img {
    height: 18px;
  }
  .footer .footer-main .sns-menu_list li:nth-child(3) img,
.footer .footer-main .sns-menu_list li:nth-child(4) img {
    height: 22px;
  }
  .footer .copyright {
    text-align: right;
    padding-top: 20px;
  }
  .mainvisual .slick-slide img {
    padding-left: 170px;
    border-radius: 0 0 0 600px;
  }
  /* バナー
  ------------------------------ */
  .section--bnr-top .banner-background {
    margin-left: 14vw;
    overflow: hidden;
  }
  .section--bnr-top .banner-background .slick-list {
    width: 88%;
  }
  .section--bnr-top .slick-dots li {
    margin-right: 24px;
  }
  .section--bnr-top .slick-dots li button {
    width: 40px;
  }
  .wrap {
    padding: 0 0 350px;
    transition: 0.3s;
  }
  .section--list,
.section--detail {
    padding: 340px 20px 120px;
  }
  .section--list .block--title,
.section--detail .block--title {
    margin-bottom: 40px;
  }
  .section--list .block--title .section-tit,
.section--detail .block--title .section-tit {
    font-size: 30px;
  }
  .section--list .block--title .archive,
.section--detail .block--title .archive {
    bottom: 3px;
    left: 120px;
  }
  .section--list .block--title .archive:after,
.section--detail .block--title .archive:after {
    bottom: 5px;
    left: 103px;
  }
  .section--list .block--title .archive-live,
.section--detail .block--title .archive-live {
    left: 88px;
  }
  .section--list .block--title .archive-live:after,
.section--detail .block--title .archive-live:after {
    left: 92px;
  }
  .block--title h2:after {
    width: 80px;
    height: 40px;
    right: -74px;
    top: -2px;
  }
  .category-9 h2:after {
    height: 42px;
    right: -70px;
    top: -2px;
  }
  .category-7 h2:after {
    top: -5px;
    height: 42px;
  }
  .page--profile h2:after {
    width: 55px;
    height: 30px;
    right: -66px;
    top: 0px;
  }
  .category-11 h2:after {
    height: 35px;
    right: -75px;
    top: -3px;
  }
  .category-11 .block--regular p a {
    transition: 0.3s;
  }
  .category-11 .block--regular p a:hover {
    color: #73c0b0;
  }
  .category-16 h2:after {
    height: 30px;
    right: -80px;
    top: 1px;
  }
  .page--disco h2:after {
    width: 56px;
    right: -52px;
    top: 2px;
  }
  .page--contact h2:after {
    width: 64px;
    right: -60px;
    top: -2px;
  }
  .category-76 h2:after {
    right: -310px;
    top: -4px;
  }
  .category-77 h2:after {
    right: -250px;
    top: -4px;
  }
  .category-78 h2:after {
    right: -166px;
    top: 1px;
  }
  .list--contents li {
    margin: 0 4% 4% 0;
    width: 30.666%;
  }
  .list--contents li a:hover {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
    color: #73c0b0;
  }
  /* list
  ------------------------------ */
  .list--info li {
    margin-bottom: 35px;
  }
  .list--info li .tit {
    width: 100%;
  }
  .list--info li .date {
    width: 68px;
  }
  .list--info li .date__item {
    display: flex;
  }
  .list--info li .date__item .endDate {
    margin-left: 20px;
  }
  .list--info li .date__item .endDate:before {
    left: -14px;
    top: 30px;
    width: 14px;
    height: 1px;
  }
  .list--info li a:hover {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
    color: #73c0b0;
  }
  .list--info li a:hover .date .day:before {
    background: #73c0b0 !important;
  }
  .list--info li a:hover .date__item .endDate:before {
    background: #73c0b0 !important;
  }
  /* page--home
  ------------------------------ */
  .page--home [class^=section--] .section-tit {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .page--home [class^=section--] .section-tit span {
    font-size: 14px;
  }
  .page--home .wrap {
    padding: 0;
  }
  .page--home .header {
    background: none;
    height: 0;
  }
  .page--home .header:before {
    display: none;
  }
  .page--home .header .top_cl:before {
    display: none;
  }
  .page--home .header .top_cl:after {
    display: none;
  }
  .page--home .header .top_cl h1 {
    display: none;
  }
  .page--home .section--news {
    margin-bottom: 140px;
  }
  .page--home .section--news:before {
    height: 76%;
  }
  .page--home .section--news:after {
    bottom: 23.2%;
    height: 180px;
    width: 22%;
  }
  .page--home .section--news .inner {
    padding: 120px 40px 0;
  }
  .page--home .section--news .inner .block--tit {
    width: 24%;
  }
  .page--home .section--news .inner .block--tit h2:before {
    width: 60px;
    height: 60px;
    top: -60px;
  }
  .page--home .section--news .inner .block--tit h2 span {
    padding-top: 4px;
  }
  .page--home .section--news .inner .contents-left {
    width: 76%;
  }
  .page--home .section--news .inner .contents-left .list--info {
    margin-bottom: 80px;
  }
  .page--home .section--live {
    margin-bottom: 140px;
  }
  .page--home .section--live:before {
    height: 55%;
    bottom: 31%;
  }
  .page--home .section--live:after {
    bottom: 30.7%;
    height: 180px;
    width: 22%;
  }
  .page--home .section--live .inner {
    padding: 0 40px;
  }
  .page--home .section--live .inner .block--tit {
    width: 24%;
  }
  .page--home .section--live .inner .block--tit h2:before {
    width: 60px;
    height: 60px;
    top: -60px;
  }
  .page--home .section--live .inner .block--tit h2 span {
    padding-top: 4px;
  }
  .page--home .section--live .inner .contents-left {
    width: 76%;
  }
  .page--home .section--live .inner .contents-left .list--info {
    margin-bottom: 80px;
  }
  .page--home .section--content .mountain {
    height: 80px;
  }
  .page--home .section--content .mountain:before {
    background-image: url(/static/yhanzaki/official/top/window.png);
    width: 365px;
    height: 56px;
    top: 9%;
    left: 24%;
  }
  .page--home .section--content .mountain:after {
    background-image: url(/static/yhanzaki/official/top/mountain_pc.svg);
    width: 100%;
    height: 300px;
    top: -2px;
    left: 0;
  }
  .page--home .section--content .inner {
    padding: 260px 20px;
  }
  .page--home .section--content .inner .bg {
    padding: 80px 40px;
    max-width: 960px;
    border-radius: 24px;
  }
  .page--home .section--content .inner .bg:before {
    content: "";
    position: absolute;
    background-image: url(/static/yhanzaki/official/top/hanzakiyoshiko.svg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
    position: absolute;
    width: 86%;
    height: 60%;
    top: 32%;
    right: 9%;
  }
  .page--home .section--content .inner .bg ul {
    margin-bottom: 40px;
  }
  .page--home .section--content .inner .bg ul li {
    margin-right: 4%;
    width: 30.666%;
    padding-top: 30.666%;
    transition: 0.3s;
  }
  .page--home .section--content .inner .bg ul li a:before {
    border-width: 60px 60px 0 0;
  }
  .page--home .section--content .inner .bg ul li a:after {
    border-width: 26px 26px 0 0;
  }
  .page--home .section--content .inner .bg ul li a .line {
    width: 17px;
    top: 25px;
    left: 15px;
  }
  .page--home .section--content .inner .bg ul li a .frame {
    padding: 0.5em 0.9em;
  }
  .page--home .section--content .inner .bg ul li a .frame:before {
    left: -1px;
  }
  .page--home .section--content .inner .bg ul li a .frame:after {
    right: -1px;
  }
  .page--home .section--content .inner .bg ul li a .tit-main {
    padding-top: 18%;
  }
  .page--home .section--content .inner .bg ul li a .tit-main .icon-img {
    margin-bottom: 5px;
  }
  .page--home .section--content .inner .bg ul li a .tit-main .icon-img img {
    width: 110px;
    height: 64px;
  }
  .page--home .section--content .inner .bg ul li a .tit-main .space {
    margin-bottom: 0;
    margin-top: 5px;
  }
  .page--home .section--content .inner .bg ul li a h3 .content-tit {
    font-size: 22px;
  }
  .page--home .section--content .inner .bg ul li a h3 .sub-tit {
    padding-top: 2px;
    font-size: 13px;
  }
  .page--home .section--content .inner .bg ul li:hover .icon-img {
    cursor: pointer;
    -webkit-animation: rota 0.6s ease-in-out;
            animation: rota 0.6s ease-in-out;
  }
  @-webkit-keyframes rota {
    0% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    50% {
      -webkit-transform: rotate(12deg);
              transform: rotate(12deg);
    }
    100% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
  }
  @keyframes rota {
    0% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    50% {
      -webkit-transform: rotate(12deg);
              transform: rotate(12deg);
    }
    100% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
  }
  .page--home .section--content .inner .bg .list-first li {
    background-color: #EFF4F3;
  }
  .page--home .section--content .inner .bg .list-first li a:before {
    border-color: #EFF4F3 transparent transparent transparent;
  }
  .page--home .section--content .inner .bg .list-second {
    justify-content: flex-start;
  }
  .page--home .section--content .inner .bg .list-second:after {
    display: block;
    content: "";
    clear: both;
    width: 33.333%;
    margin: 0 0 0 20px;
  }
  .page--home .section--content .inner .bg .list-second li {
    background-color: #E2EDEB;
  }
  .page--home .section--content .inner .bg .list-second li:last-child {
    margin-right: 20px;
  }
  .page--home .section--content .inner .bg .list-second li a:before {
    border-color: #E2EDEB transparent transparent transparent;
  }
  .page--home .section--content .inner .bg .list-third li {
    background-color: #D8EBE9;
  }
  .page--home .section--content .inner .bg .list-third li a:before {
    border-color: #D8EBE9 transparent transparent transparent;
  }
  .page--home .section--content .inner .bg .list-forth {
    margin-bottom: 0;
    justify-content: flex-end;
  }
  .page--home .section--content .inner .bg .list-forth:before {
    display: block;
    content: "";
    clear: both;
    margin-right: 4%;
    width: 30.666%;
    padding-top: 30.666%;
  }
  .page--home .section--content .inner .bg .list-forth li {
    background-color: #C9E3DF;
  }
  .page--home .section--content .inner .bg .list-forth li:last-child {
    margin-right: 0;
  }
  .page--home .section--content .inner .bg .list-forth li a:before {
    border-color: #C9E3DF transparent transparent transparent;
  }
  .page--home .section--content .inner .bg .chara {
    position: absolute;
    -webkit-animation: chara 3s infinite ease-in-out 0.8s alternate;
            animation: chara 3s infinite ease-in-out 0.8s alternate;
    background: url(/static/yhanzaki/official/top/chara.png) no-repeat center center/54px auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 54px;
    height: 45px;
    top: 29%;
    right: 4%;
  }
  @-webkit-keyframes chara {
    0% {
      -webkit-transform: translate(0, 0) rotate(-7deg);
              transform: translate(0, 0) rotate(-7deg);
    }
    50% {
      -webkit-transform: translate(0, -7px) rotate(0deg);
              transform: translate(0, -7px) rotate(0deg);
    }
    100% {
      -webkit-transform: translate(0, 0) rotate(7deg);
              transform: translate(0, 0) rotate(7deg);
    }
  }
  @keyframes chara {
    0% {
      -webkit-transform: translate(0, 0) rotate(-7deg);
              transform: translate(0, 0) rotate(-7deg);
    }
    50% {
      -webkit-transform: translate(0, -7px) rotate(0deg);
              transform: translate(0, -7px) rotate(0deg);
    }
    100% {
      -webkit-transform: translate(0, 0) rotate(7deg);
              transform: translate(0, 0) rotate(7deg);
    }
  }
  .page--home .drawer-height .drawer__btn {
    left: 70px;
    right: inherit;
    top: 50vh;
    position: absolute;
    transition: none;
  }
  .page--home .drawer-height .drawer__btn.btn-fixed {
    top: 35px;
    position: fixed;
  }
  body.drawer-visible {
    overflow: hidden;
  }
  /* .page--discography
  ------------------------------ */
  .page--disco .list--contents li {
    margin: 0 4% 4% 0;
    width: 30.666%;
  }
  .page--disco .list--contents li:nth-of-type(3n) {
    margin-right: 0;
  }
  .page--disco .block--jacket {
    width: 50%;
  }
  .page--disco .block--detail {
    width: 50%;
    padding: 0 0 0 40px;
  }
  .page--disco .block--detail .tit {
    font-size: 30px;
  }
  .page--profile .profile--img {
    margin-bottom: 60px;
  }
  .page--profile h3.section-tit {
    margin-bottom: 24px;
    font-size: 24px;
  }
  .page--profile .txt {
    margin-bottom: 80px;
  }
  .page--profile .txt a {
    display: block;
    padding-top: 40px;
  }
  .page--profile .txt a:hover {
    color: #98CEC3;
  }
  .page--profile .txt a:hover:after {
    border-top: 1px solid #98CEC3;
    border-right: 1px solid #98CEC3;
  }
  .page--questionnaire .btn .btn--main:hover {
    background: #73c0b0;
  }
  .page--questionnaire .harf {
    width: 50%;
  }
  .page--questionnaire input {
    cursor: pointer;
  }
  .page--contact .contact--img {
    margin-bottom: 60px;
  }
  .page--contact .img {
    padding: 20px;
  }
  .page--contact .btn .btn--main:hover {
    background: #73c0b0;
  }
  .page--contact #appearance {
    margin-bottom: 80px;
  }
  .page--contact #freecontact {
    margin-bottom: 80px;
  }
  .page--contact .contact--btn--area {
    margin-bottom: 80px;
    padding-bottom: 80px;
  }
  /* .page--privacy
  ------------------------------ */
  .page--privacy .lead {
    font-size: 12px;
    margin-bottom: 30px;
  }
  .page--privacy .block--text {
    margin-bottom: 20px;
  }
  .page--privacy .block--text .block-tit {
    font-size: 14px;
    font-weight: bold;
  }
  .page--privacy .block--text > p {
    font-size: 12px;
  }
  .page--photo .section-tit {
    line-height: 1.4;
  }
  .page--photo .list--contents {
    margin-bottom: 40px;
  }
  .page--photo .list--contents li {
    margin: 0 4% 0 0;
  }
  .page--photo .list--contents li:nth-child(3n) {
    margin-right: 0;
  }
  .page--photo .list--contents li a {
    display: block;
  }
  .page--photo .list--contents li a figure {
    transition: 0.3s;
  }
  .page--photo .list--contents .new:before {
    top: 2px;
    left: -15px;
    width: 60px;
    height: 40px;
  }
  .page--photo .list--contents .new:after {
    font-size: 14px;
    top: 17px;
    left: 2px;
  }
  .page--photo .list--information li a:after {
    content: "";
    width: 21px;
    height: 6px;
  }
  .page--photo .list--information li a:hover {
    opacity: 0.5;
  }
  .page--photo .list--contents {
    justify-content: space-between;
  }
  .page--photo .list--contents:after {
    content: "";
    display: block;
    width: 30.666%;
    height: 0;
  }
  .page--photo .list--contents li a:hover {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
    color: #98CEC3;
  }
  .page--mailmagazine form .imput-half {
    width: 50%;
  }
  .page--mailmagazine form .btn--main {
    transition: 0.3s;
  }
  .page--mailmagazine form .btn--main:hover {
    background: #73c0b0;
  }
  /* .page--error
  ------------------------------ */
  .page--error .section-tit {
    text-align: center;
    margin-bottom: 40px;
  }
  .page--error .detail__btn {
    margin-top: 60px;
  }
}
/* tablet
============================== */
@media screen and (min-width: 600px) and (max-width: 960px) {
  html, body {
    font-size: 16px;
  }
  .detail #container {
    padding-bottom: 180px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .sp {
    display: block;
  }
  .pc {
    display: none !important;
  }
  body:not(.page--home) .wrap {
    padding-bottom: 123px;
  }
  .header {
    position: fixed;
    z-index: 6;
    width: 100%;
  }
  .header:before {
    content: "";
    background-image: url(/static/yhanzaki/official/common/cloud_top_sp.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 143px;
    top: 0;
    right: 0;
    z-index: -1;
    pointer-events: none;
  }
  .header:after {
    content: "";
    background-image: url(/static/yhanzaki/official/top/chara.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto;
    position: absolute;
    width: 66px;
    height: 45px;
    top: 25px;
    right: 43%;
  }
  .header h1 {
    position: absolute;
    top: 32px;
    left: 5%;
  }
  .header h1 img {
    width: 64%;
  }
  .scrolling .scrolldown {
    opacity: 0 !important;
  }
  .drawer__btn {
    top: 2%;
    right: 5%;
  }
  .drawer__btn:after {
    display: none;
  }
  .drawer__btn .open-menu-btn {
    width: 35px;
  }
  .drawer__btn .open-menu-btn span {
    width: 35px;
  }
  .drawer:before {
    width: 80%;
    height: 14%;
  }
  .drawer:after {
    width: 80%;
    height: 14%;
  }
  .drawer .drawer-inner .g-nav {
    padding: 0;
    width: 100%;
  }
  .drawer .drawer-inner .g-nav .list--menu {
    padding: 0 1% 0 13%;
  }
  .drawer .drawer-inner .g-nav .list--menu li {
    width: 44%;
    margin-bottom: 10px;
  }
  .drawer .drawer-inner .g-nav .list--menu li a .menu {
    display: block;
    font-size: 4.1vw;
    font-weight: 300;
    letter-spacing: 0.01em;
  }
  .drawer .drawer-inner .g-nav .list--menu li a .submenu {
    font-size: 10px;
  }
  .drawer .drawer-inner .g-nav .works {
    margin: 16px 0;
  }
  .drawer .drawer-inner .g-nav .works-list {
    display: block;
    text-align: center;
    padding: 0 40px;
  }
  .drawer .drawer-inner .g-nav .works-list li {
    margin: 0 auto 20px;
  }
  .drawer .drawer-inner .g-nav .works-list li:last-child {
    margin-bottom: 0;
  }
  .drawer .drawer-inner .g-nav .works-list li:nth-child(2) {
    margin-right: 20px;
  }
  .drawer .drawer-inner .g-nav .works-list li:nth-child(2):after {
    right: -18px;
  }
  .drawer .drawer-inner .g-nav .works-list li:after {
    width: 12px;
    top: 11px;
    right: -14px;
  }
  .drawer .drawer-inner .g-nav .works-list li .menu {
    font-size: 15px;
  }
  .footer {
    padding: 50px 5% 24px;
  }
  .footer:after {
    background-image: url(/static/yhanzaki/official/top/wave_sp.png);
    background-size: cover;
    width: 100%;
    height: 80px;
    top: -70px;
    left: 0;
  }
  .footer .footer-main .footer_logo {
    width: 38%;
    margin: 0 auto;
  }
  .footer .footer-main .sns-menu_list {
    padding-top: 40px;
    width: 100%;
    margin: 0 auto;
  }
  .footer .footer-main .sns-menu_list li {
    margin: 0 24px 0 0;
  }
  .footer .footer-main .sns-menu_list li img {
    height: 20px;
  }
  .footer .footer-main .sns-menu_list li:nth-child(3) img, .footer .footer-main .sns-menu_list li:nth-child(4) img {
    height: 22px;
  }
  .footer .copyright {
    text-align: center;
    padding-top: 40px;
  }
  .mainvisual {
    /*スクロールダウン全体の場所*/
  }
  .mainvisual:after {
    display: none;
  }
  .mainvisual .slick-slider {
    margin-bottom: 0;
  }
  .mainvisual .slick-slide img {
    padding-left: 40px;
    border-radius: 0 0 0 280px;
    width: 100%;
  }
  .mainvisual .scrolldown {
    /*描画位置※位置は適宜調整してください*/
    position: relative;
    bottom: 0;
    left: 3.5%;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    opacity: 1;
    transition: 0.5s;
    /* 丸の描写 */
    /*下からの距離が変化して丸の全体が上から下に動く*/
    /*上から下にかけて丸が透過→不透明→透過する*/
  }
  .mainvisual .scrolldown span {
    position: absolute;
    left: 0;
    top: -190px;
    letter-spacing: 0.3em;
    color: #828282;
    font-size: 12px;
  }
  .mainvisual .scrolldown:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    left: 3px;
    /*丸の形状*/
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ababab;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
    -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
            animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  }
  @-webkit-keyframes circlemove {
    0% {
      bottom: 105px;
    }
    100% {
      bottom: -5px;
    }
  }
  @keyframes circlemove {
    0% {
      bottom: 105px;
    }
    100% {
      bottom: -5px;
    }
  }
  @-webkit-keyframes cirlemovehide {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    80% {
      opacity: 0.9;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes cirlemovehide {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    80% {
      opacity: 0.9;
    }
    100% {
      opacity: 0;
    }
  }
  /* バナー
  ------------------------------ */
  .section--bnr-top .banner-background {
    margin-left: 10vw;
    overflow: hidden;
  }
  .section--bnr-top .banner-background .slick-list {
    width: 88%;
  }
  .section--bnr-top .slick-dots li {
    margin-right: 8px !important;
  }
  .section--bnr-top .slick-dots li button {
    width: 24px;
  }
  .drawer__btn span {
    height: 12px;
  }
  .drawer__btn .mid {
    top: 22px;
  }
  .drawer__btn .btm {
    top: 44px;
  }
  .drawer-visible .drawer__btn .top {
    top: 30px;
  }
  .drawer-visible .drawer__btn .btm {
    top: 30px;
  }
  .block--share {
    margin-bottom: 40px;
  }
  .block--pager {
    margin: 40px auto 0;
    padding: 0;
  }
  .block--pager li {
    font-size: 16px;
  }
  .section--list, .section--detail {
    padding: 160px 20px 220px;
  }
  .section--list .section-tit, .section--detail .section-tit {
    font-size: 24px;
  }
  .section--list .block--title, .section--detail .block--title {
    margin-bottom: 40px;
  }
  .section--list .block--title .section-tit, .section--detail .block--title .section-tit {
    font-size: 24px;
  }
  .section--list .block--title .archive, .section--detail .block--title .archive {
    bottom: 4px;
    left: 128px;
  }
  .section--list .block--title .archive:after, .section--detail .block--title .archive:after {
    bottom: 5px;
    left: 104px;
  }
  .section--list .block--title .archive-live, .section--detail .block--title .archive-live {
    left: 90px;
  }
  .section--list .block--title .archive-live:after, .section--detail .block--title .archive-live:after {
    left: 90px;
  }
  .block--title h2:after {
    width: 60px;
    height: 34px;
    right: -56px;
    top: -1px;
  }
  .category-9 h2:after {
    right: -52px;
  }
  .category-7 h2:after {
    top: -4px;
  }
  .page--profile h2:after {
    height: 28px;
    right: -64px;
    top: -1px;
  }
  .category-11 h2:after {
    height: 32px;
    right: -56px;
    top: -3px;
  }
  .category-16 h2:after {
    height: 28px;
    right: -58px;
  }
  .page--disco h2:after {
    height: 30px;
  }
  .page--contact h2:after {
    height: 32px;
    top: -3px;
  }
  .category-76 h2:after {
    right: -264px;
    top: -4px;
  }
  .category-77 h2:after {
    right: -210px;
    top: -6px;
  }
  .category-78 h2:after {
    height: 32px;
    right: -136px;
    top: 0;
  }
  .section--list .list--info,
.section--detail .block--main {
    padding: 0;
  }
  .section--list .list--info .block--txt,
.section--detail .block--main .block--txt {
    line-height: 1.8;
  }
  .section--detail .block--main .tit {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .page--info.category-3 .block--date {
    font-size: 22px;
  }
  .page--info.category-3 .section--detail .tit {
    font-size: 16px;
  }
  /* .page--profile
  ------------------------------ */
  .page--profile .profile--img {
    margin-bottom: 20px;
  }
  .page--profile h3.section-tit {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .page--profile .txt {
    margin-bottom: 40px;
  }
  .page--disco .area--disco-detail .block--detail {
    padding: 30px 5%;
  }
  .page--disco .area--disco-detail .block--detail .tit {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .page--disco .list--contents li {
    width: 90%;
    margin: 0 auto 4%;
  }
  .page--disco .block--detail {
    padding: 20px 0 0;
  }
  .page--disco .block--detail .tit {
    font-size: 24px;
  }
  .page--disco .block--jacket {
    width: 100%;
  }
  .page--disco .block--detail {
    width: 100%;
    padding: 0;
  }
  .page--entry .block--contents .list--contents li {
    width: 100%;
  }
  .page--entry .table--site-info tr {
    border-bottom: 1px solid #222;
    display: block;
  }
  .page--entry .table--site-info th {
    display: block;
    width: 100%;
    text-align: left;
    padding: 5px 10px;
  }
  .page--entry .table--site-info td {
    padding: 10px;
  }
  .page--info .list--contents li {
    width: 100%;
    margin-bottom: 4%;
  }
  .page--attention.section--detail .block--main h3.tit {
    margin-top: 0;
    text-align: left;
  }
  .page--attention.section--detail .block--main .tit {
    font-size: 16px;
  }
  /* btn
  ------------------------------ */
  .more a {
    right: 0;
  }
  .more:before {
    top: 2px;
    right: 20%;
  }
  .more:after {
    top: 8px;
    right: 21.6%;
  }
  /* lsit
  ------------------------------ */
  .list--info li {
    margin-bottom: 40px;
  }
  .list--info li a .date {
    width: 70px;
    font-size: 14px;
  }
  .list--info li a .tit {
    font-size: 16px;
    width: 100%;
  }
  .list--info li:before {
    display: none;
  }
  .list--info li .date__item {
    display: inline-block;
  }
  .list--info li .date__item .endDate {
    margin-left: 0;
    margin-top: 24px;
    padding-top: 5px;
  }
  .list--info li .date__item .endDate:before {
    left: 36px;
    top: -11px;
    width: 1px;
    height: 10px;
  }
  /* .page--home
  ------------------------------ */
  .page--home [class^=section--] .section-tit {
    font-size: 26px;
    margin-bottom: 64px;
  }
  .page--home [class^=section--] .section-tit span {
    font-size: 10px;
  }
  .page--home .section--news {
    margin-bottom: 180px;
  }
  .page--home .section--news:before {
    height: 80%;
  }
  .page--home .section--news:after {
    bottom: 19.8%;
    height: 110px;
    width: 52%;
  }
  .page--home .section--news .inner {
    padding: 120px 20px 0;
  }
  .page--home .section--news .inner .block--tit {
    width: 100%;
  }
  .page--home .section--news .inner .block--tit h2:before {
    width: 34px;
    height: 34px;
    top: -34px;
  }
  .page--home .section--news .inner .block--tit h2 span {
    padding-top: 6px;
  }
  .page--home .section--news .inner .contents-left {
    width: 100%;
  }
  .page--home .section--news .inner .contents-left .list--info {
    margin-bottom: 60px;
  }
  .page--home .section--news .inner .contents-left .list--info li {
    margin-bottom: 35px;
  }
  .page--home .section--news .inner .contents-left .list--info li .date {
    width: 17%;
  }
  .page--home .section--news .inner .contents-left .list--info li .tit {
    width: 79%;
    font-size: 16px;
  }
  .page--home .section--live {
    margin-bottom: 120px;
  }
  .page--home .section--live:before {
    height: 90%;
    bottom: 21%;
  }
  .page--home .section--live:after {
    bottom: 20.8%;
    height: 110px;
    width: 52%;
  }
  .page--home .section--live .live-top-cloud {
    position: relative;
  }
  .page--home .section--live .live-top-cloud:before {
    content: "";
    background-image: url(/static/yhanzaki/official/common/live-top-cloud.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    position: absolute;
    width: 100%;
    height: 80px;
    left: 0;
    top: -90px;
  }
  .page--home .section--live .inner {
    padding: 60px 20px 0;
  }
  .page--home .section--live .inner .block--tit {
    width: 100%;
  }
  .page--home .section--live .inner .block--tit h2:before {
    width: 34px;
    height: 34px;
    top: -34px;
  }
  .page--home .section--live .inner .block--tit h2 span {
    padding-top: 6px;
  }
  .page--home .section--live .inner .contents-left {
    width: 100%;
  }
  .page--home .section--live .inner .contents-left .list--info {
    margin-bottom: 60px;
  }
  .page--home .section--live .inner .contents-left .list--info li {
    margin-bottom: 35px;
  }
  .page--home .section--live .inner .contents-left .list--info li .date {
    width: 17%;
  }
  .page--home .section--live .inner .contents-left .list--info li .tit {
    width: 79%;
    font-size: 16px;
  }
  .page--home .section--content .mountain:before {
    background-image: url(/static/yhanzaki/official/top/window_sp.png);
    width: 101px;
    height: 56px;
    top: 3.5%;
    left: 10%;
  }
  .page--home .section--content .mountain:after {
    background-image: url(/static/yhanzaki/official/top/mountain_sp.svg);
    width: 100%;
    height: 100%;
    top: -2px;
    left: 0;
  }
  .page--home .section--content .inner {
    padding: 160px 20px 120px;
  }
  .page--home .section--content .inner .bg {
    padding: 40px 20px;
    border-radius: 16px;
  }
  .page--home .section--content .inner .bg:before {
    width: 86%;
    height: 90%;
    top: 32%;
    right: 9%;
  }
  .page--home .section--content .inner .bg ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .page--home .section--content .inner .bg ul li {
    margin-bottom: 20px;
    width: 47%;
    padding-top: 47%;
    background-color: #EFF4F3;
    box-sizing: border-box;
  }
  .page--home .section--content .inner .bg ul li:nth-child(4), .page--home .section--content .inner .bg ul li:nth-child(5) {
    background-color: #E2EDEB;
  }
  .page--home .section--content .inner .bg ul li:nth-child(4) a:before, .page--home .section--content .inner .bg ul li:nth-child(5) a:before {
    border-color: #E2EDEB transparent transparent transparent;
  }
  .page--home .section--content .inner .bg ul li:nth-child(6), .page--home .section--content .inner .bg ul li:nth-child(7), .page--home .section--content .inner .bg ul li:nth-child(8) {
    background-color: #D8EBE9;
  }
  .page--home .section--content .inner .bg ul li:nth-child(6) a:before, .page--home .section--content .inner .bg ul li:nth-child(7) a:before, .page--home .section--content .inner .bg ul li:nth-child(8) a:before {
    border-color: #D8EBE9 transparent transparent transparent;
  }
  .page--home .section--content .inner .bg ul li:nth-child(9), .page--home .section--content .inner .bg ul li:nth-child(10) {
    background-color: #C9E3DF;
  }
  .page--home .section--content .inner .bg ul li:nth-child(9) a:before, .page--home .section--content .inner .bg ul li:nth-child(10) a:before {
    border-color: #C9E3DF transparent transparent transparent;
  }
  .page--home .section--content .inner .bg ul li a:before {
    border-width: 40px 40px 0 0;
    border-color: #EFF4F3 transparent transparent transparent;
  }
  .page--home .section--content .inner .bg ul li a:after {
    border-width: 18px 18px 0 0;
  }
  .page--home .section--content .inner .bg ul li a .line {
    width: 16px;
    top: 16px;
    left: 8px;
  }
  .page--home .section--content .inner .bg ul li a .frame {
    padding: 0.5em 0.9em;
  }
  .page--home .section--content .inner .bg ul li a .frame:before {
    left: -1px;
  }
  .page--home .section--content .inner .bg ul li a .frame:after {
    right: -1px;
  }
  .page--home .section--content .inner .bg ul li a .tit-main {
    padding-top: 20%;
  }
  .page--home .section--content .inner .bg ul li a .tit-main .icon-img img {
    width: 55px;
    height: 32px;
  }
  .page--home .section--content .inner .bg ul li a .tit-main .space {
    margin-bottom: -5px;
    margin-top: 3px;
  }
  .page--home .section--content .inner .bg ul li a .tourtit {
    padding-top: 13%;
  }
  .page--home .section--content .inner .bg ul li a h3 .content-tit {
    font-size: 14px;
  }
  .page--home .section--content .inner .bg ul li a h3 .sub-tit {
    padding-top: 2px;
    font-size: 10px;
  }
  .page--home .section--content .inner .bg ul li a h3 .sub-tit .tour {
    display: block;
  }
  .page--home .section--top .logo {
    top: 0;
    left: 15%;
    width: 70%;
  }
  .page--home .section--top .logo img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .page--photo .list--contents {
    margin-bottom: 70px;
  }
  .page--photo .list--contents .new:before {
    top: 10px;
    left: -5px;
    width: 50px;
    height: 30px;
  }
  .page--photo .list--contents .new:after {
    font-size: 14px;
    top: 17px;
    left: 5px;
  }
  .page--photo .list--contents li {
    width: 48%;
    margin-right: 4%;
  }
  .page--photo .list--contents li:nth-child(even) {
    margin-right: 0;
  }
  .page--photo .list--contents li .thumb {
    height: 100px;
  }
  .page--photo #swipebox-action #swipebox-close {
    right: 0;
  }
  .page--photo h2 {
    font-size: 24px;
  }
  .category-76 .tit,
.category-77 .tit,
.category-78 .tit {
    letter-spacing: -0.02em;
    font-size: 14px;
  }
  .page--contact .contact--img {
    margin-bottom: 20px;
  }
  .page--contact .img {
    padding: 10px;
  }
  .page--contact .contact--form .block--form .form--post dd input {
    width: 100% !important;
  }
  .page--contact #appearance {
    margin-bottom: 40px;
  }
  .page--contact #freecontact {
    margin-bottom: 40px;
  }
  .page--contact .questionnaire {
    margin-bottom: 40px;
  }
  .page--contact .contact--btn--area {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .page--contact .contact--btn--area .btn--main {
    margin: 0 auto;
  }
  .page--questionnaire .harf {
    width: 100%;
  }
  .page--mailmagazine form .imput-half {
    width: 100%;
  }
}
@media screen and (min-width: 756px) and (max-width: 961px) {
  .sp {
    display: block;
  }
  .pc {
    display: none !important;
  }
  /*ヘッダー
  ------------------------------ */
  .header:before {
    content: "";
    background-image: url(/static/yhanzaki/official/common/cloud_top_tablet.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 217px;
    top: 0;
    right: 0;
    z-index: -1;
    pointer-events: none;
  }
  .header:after {
    right: 55%;
  }
  .header h1 {
    top: 44px;
    left: 6%;
  }
  .header h1 img {
    width: 88%;
  }
  .drawer__btn {
    top: 2.6%;
    right: 6%;
  }
  .mainvisual .slick-slide img {
    padding-left: 100px;
    border-radius: 0 0 0 520px;
  }
  .drawer {
    overflow: auto;
    -webkit-transform: translateX(150%) skew(15deg);
            transform: translateX(150%) skew(15deg);
  }
  .drawer:before {
    width: 60%;
    height: 240px;
  }
  .drawer:after {
    width: 60%;
    height: 240px;
  }
  .drawer .drawer-inner .g-nav .list--menu {
    padding: 0 1% 0 18%;
  }
  .drawer .drawer-inner .g-nav .list--menu li {
    width: 45%;
  }
  .drawer .drawer-inner .g-nav .list--menu li a .menu {
    font-size: 2.5vw;
  }
  .drawer .drawer-inner .g-nav .list--menu li a .submenu {
    font-size: 12px;
  }
  .drawer .drawer-inner .g-nav .works {
    font-size: 20px;
    margin: 16px 0 20px;
  }
  .drawer .drawer-inner .g-nav .works-list li {
    margin: 0 6% 0 0 !important;
  }
  .drawer .drawer-inner .g-nav .works-list li:nth-child(2):after {
    right: -28px;
  }
  .drawer .drawer-inner .g-nav .works-list li:after {
    right: -24px;
  }
  .drawer .drawer-inner .g-nav .works-list li .menu {
    font-size: 17px;
  }
  /*スクロールダウン*/
  .scrolldown {
    left: 5.5% !important;
  }
  /* バナー
  ------------------------------ */
  .section--bnr-top .banner-background {
    margin-left: 14.5vw;
    overflow: hidden;
  }
  .section--bnr-top .banner-background .slick-list {
    width: 50%;
  }
  /* フッター
  ------------------------------ */
  .footer:after {
    background-image: url(/static/yhanzaki/official/top/wave_pc.png);
    background-size: contain;
    height: 100%;
    top: -245px;
  }
  /* btn
  ------------------------------ */
  .more a {
    right: 0;
  }
  .more:before {
    top: 2px;
    right: 9.5%;
  }
  .more:after {
    top: 8px;
    right: 10.2%;
  }
  /* lsit
  ------------------------------ */
  .list--info li a .tit {
    font-size: 16px;
  }
  /* common
  ------------------------------ */
  .wrap {
    padding-top: 0;
  }
  .section--list,
.section--detail {
    padding: 240px 40px;
  }
  .section--list .section-tit,
.section--detail .section-tit {
    font-size: 30px;
  }
  .page--home .section--news:after {
    height: 170px;
  }
  .page--home .section--news .list--info li .date {
    width: 10%;
  }
  .page--home .section--news .list--info li .tit {
    width: 86%;
    font-size: 16px;
  }
  .page--home .section--live:after {
    height: 170px;
  }
  .page--home .section--live .live-top-cloud {
    position: relative;
  }
  .page--home .section--live .live-top-cloud:before {
    background-image: url(/static/yhanzaki/official/top/contents_cl.svg);
    width: 100%;
    height: 100px;
    left: 0;
    top: -65px;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .page--home .section--live .list--info li .date {
    width: 10%;
  }
  .page--home .section--live .list--info li .tit {
    width: 86%;
    font-size: 16px;
  }
  .page--home .section--content .mountain {
    height: 80px;
  }
  .page--home .section--content .mountain:before {
    background-image: url(/static/yhanzaki/official/top/window.png) !important;
    width: 365px !important;
    height: 56px !important;
    top: 4.5% !important;
    left: 22% !important;
  }
  .page--home .section--content .mountain:after {
    background-image: url(/static/yhanzaki/official/top/mountain_pc.svg) !important;
    height: 170px !important;
  }
  .page--home .section--content .inner {
    padding: 120px 20px 160px !important;
  }
  .page--home .section--content .inner .bg {
    padding: 60px 40px !important;
  }
  .page--home .section--content .inner .bg ul {
    margin-bottom: 0 !important;
  }
  .page--home .section--content .inner .bg ul li {
    margin-bottom: 40px !important;
    height: 304px !important;
  }
  .page--home .section--content .inner .bg ul li a:before {
    border-width: 76px 76px 0 0 !important;
  }
  .page--home .section--content .inner .bg ul li a:after {
    border-width: 31px 31px 0 0 !important;
    top: -1px !important;
    left: -1px !important;
  }
  .page--home .section--content .inner .bg ul li a .line {
    width: 24px !important;
    top: 32px !important;
    left: 18px !important;
  }
  .page--home .section--content .inner .bg ul li a .tit-main {
    padding-top: 25%;
  }
  .page--home .section--content .inner .bg ul li a .tit-main .icon-img {
    margin-bottom: 5px;
  }
  .page--home .section--content .inner .bg ul li a .tit-main .icon-img img {
    width: 110px;
    height: 64px;
  }
  .page--home .section--content .inner .bg ul li a h3 .content-tit {
    padding-top: 20px !important;
    font-size: 24px !important;
  }
  .page--home .section--content .inner .bg ul li a h3 .sub-tit {
    font-size: 12px !important;
  }
  .page--home .section--content .inner .bg ul li a h3 .sub-tit .tour {
    display: inline-block;
  }
  /* .page--info
  ------------------------------ */
  .page--info.category-16 .list--contents li {
    width: 48%;
    margin: 0 4% 4% 0;
  }
  .page--info.category-16 .list--contents li:nth-child(even), .page--info.category-16 .list--contents li:nth-child(4n) {
    margin-right: 0;
  }
  .page--photo .list--contents .new:before {
    top: 3px;
    left: -12px;
    width: 60px;
    height: 40px;
  }
  .page--photo .list--contents .new:after {
    font-size: 15px;
    top: 17px;
    left: 5px;
  }
  .page--photo .list--contents li .thumb {
    height: 200px;
  }
  /* .page--discography
  ------------------------------ */
  .page--disco .list--contents li {
    width: 48%;
    margin: 0 4% 4% 0;
  }
  .page--disco .list--contents li:nth-child(even) {
    margin-right: 0;
  }
  .page--disco .list--contents li .thumb {
    height: 100%;
  }
  .page--disco .block--jacket {
    width: 50%;
  }
  .page--disco .block--detail {
    width: 50%;
    padding: 0 0 0 40px;
  }
  .page--disco .block--detail .tit {
    font-size: 30px;
  }
  /* page--questionnaire
  ------------------------------ */
  .page--questionnaire .section-tit {
    margin-bottom: 20px;
  }
  .page--questionnaire .section--detail .section--tit {
    display: none;
  }
  .page--questionnaire .section--detail.section--input .section--tit {
    display: block !important;
  }
  .page--questionnaire .detail__btn {
    margin-top: 30px;
  }
  .page--questionnaire .ph {
    margin-bottom: 10px;
  }
  .page--questionnaire .form--post #questionnaire_form dd div {
    display: block;
  }
  .page--questionnaire .form--post dl {
    margin: 0 0 40px;
  }
  .page--questionnaire .form--post dt {
    font-weight: bold;
    margin: 20px 0 5px;
    border-left: 3px solid #EAF7FF;
    padding-left: 5px;
  }
  .page--questionnaire .form--post select {
    width: 100%;
    border: 1px solid #888;
    border-radius: 3px;
    background: #FFFFFF;
  }
  .page--questionnaire .form--post input:not(.btn--main),
.page--questionnaire .form--post textarea {
    border: 1px solid #888;
    border-radius: 3px;
    padding: 10px 5px 10px;
    margin: 0;
  }
  .page--questionnaire .form--post input[type=radio],
.page--questionnaire .form--post input[type=checkbox],
.page--questionnaire .form--post select {
    margin: 0 5px 0 0;
    padding: 10px 1em 10px 5px;
  }
  .page--questionnaire .form--post input[type=email] + input[type=email] {
    margin-top: 10px;
  }
  .page--questionnaire .form--post .form__selectbox {
    position: relative;
  }
  .page--questionnaire .form--post .form__selectbox label p {
    display: inline-block;
    padding: 0.5em;
    position: relative;
    cursor: pointer;
  }
  .page--questionnaire .form--post .form__selectbox input[type=checkbox],
.page--questionnaire .form--post .form__selectbox input[type=radio],
.page--questionnaire .form--post .form__selectbox input[type=file] {
    -webkit-appearance: none;
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
  }
  .page--questionnaire .form--post .form__selectbox.form__error {
    color: #c31515;
  }
  .page--questionnaire .form--post .form__selectbox::after {
    position: absolute;
    top: 1em;
    right: 1em;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .page--questionnaire .form--post input[type=radio],
.page--questionnaire .form--post input[type=checkbox] {
    position: relative;
  }
  .page--questionnaire .form--post label {
    position: relative;
    display: inline-block;
    width: 90%;
  }
  .page--questionnaire .form--post input[type=radio],
.page--questionnaire .form--post input[type=checkbox] {
    width: 5%;
    vertical-align: middle;
    margin: 3px 5px 8px 0;
    z-index: 1;
    border: none;
    opacity: 1;
    padding-right: 0;
  }
  .page--questionnaire .form--post input[type=radio]:before,
.page--questionnaire .form--post input[type=checkbox]:before {
    width: 5%;
    height: auto;
    text-indent: 0;
    font-size: 16px;
    font-family: "FontAwesome";
    color: #888;
    padding-left: 1px;
    position: absolute;
    top: 4px;
    left: 0;
    z-index: 0;
  }
  .page--questionnaire .form--post input[type=checkbox]:before {
    content: "\f096";
  }
  .page--questionnaire .form--post input[type=radio]:before {
    content: "\f10c";
  }
  .page--questionnaire .form--post input[type=checkbox]:checked:before {
    content: "\f046";
    color: #EAF7FF;
  }
  .page--questionnaire .form--post input[type=radio]:checked:before {
    content: "\f192";
    color: #EAF7FF;
  }
  .page--questionnaire .form--post .icon--required {
    position: relative;
  }
  .page--questionnaire .form--post .icon--required:before {
    color: #fff;
  }
  .page--questionnaire .block--error {
    background: #ffcbbe;
    padding: 7px 3%;
    border-radius: 5px;
    margin-bottom: 30px;
  }
  .page--questionnaire .block--error li:not(:last-child) {
    margin-bottom: 8px;
  }
  .page--questionnaire .block--error li {
    position: relative;
  }
  .page--questionnaire .section--detail .txt, .page--questionnaire .section--detail .center.txt--basic {
    text-align: center;
    margin-bottom: 10px;
  }
  .page--questionnaire .section--detail .form--confirm {
    margin-top: 30px;
  }
  .page--questionnaire .section--detail .form--confirm dl {
    margin-bottom: 30px;
  }
  .page--questionnaire .section--detail .form--confirm dd {
    margin-bottom: 20px;
    overflow-wrap: break-word;
  }
  .page--questionnaire .section--detail .block--form dt {
    font-size: 12px;
  }
  .page--questionnaire .section--detail .block--form dd {
    font-weight: bold;
  }
  .page--questionnaire .section--detail.section--done .detail__btn a::before {
    background: none;
  }
  .page--questionnaire .btn--sub {
    width: 90% !important;
    margin: 0 auto 10px !important;
    border: none !important;
  }
  /* .page--privacy
  ------------------------------ */
  .page--privacy .lead {
    font-size: 12px;
    margin-bottom: 30px;
  }
  .page--privacy .block--text {
    margin-bottom: 20px;
  }
  .page--privacy .block--text .block-tit {
    font-size: 14px;
    font-weight: bold;
  }
  .page--privacy .block--text > p {
    font-size: 12px;
  }
  /* .page--error
  ------------------------------ */
  .page--error .section-tit {
    text-align: center;
    margin-bottom: 40px;
  }
  .page--error .detail__btn {
    margin-top: 60px;
  }
}
@media screen and (min-width: 590px) and (max-width: 755px) {
  .page--home .section--content .inner {
    padding: 190px 20px 120px;
  }
  .page--home .section--content .inner .bg ul li a:before {
    border-width: 65px 65px 0 0;
  }
  .page--home .section--content .inner .bg ul li a .line {
    width: 16px;
    top: 24px;
    left: 16px;
  }
  .page--home .section--content .inner .bg ul li a .tit-main .icon-img img {
    width: 110px;
    height: 64px;
  }
  .more:before {
    top: 2px;
    right: 10.5%;
  }
  .more:after {
    top: 8px;
    right: 11.4%;
  }
  .header:before {
    height: 233px;
  }
}
@media screen and (min-width: 518px) and (max-width: 589px) {
  .page--home .section--content .inner .bg ul li a:before {
    border-width: 50px 50px 0 0;
  }
  .page--home .section--content .inner .bg ul li a .line {
    top: 18px;
    left: 10px;
  }
  .page--home .section--content .inner .bg ul li a .tit-main .icon-img img {
    width: 65px;
    height: 42px;
  }
}
@media screen and (min-width: 430px) and (max-width: 589px) {
  .more a {
    right: 0;
  }
  .more:before {
    right: 16%;
  }
  .more:after {
    right: 17.4%;
  }
}
@media screen and (min-width: 1px) and (max-width: 365px) {
  .header:after {
    background-size: contain;
    position: absolute;
    width: 58px;
    height: 36px;
    top: 32px;
    right: 38%;
  }
  .category-76.detail .section--list .block--title .section-tit:after {
    right: -230px;
  }
  .category-76.detail .section--list .block--title .tit {
    letter-spacing: -0.2em;
  }
}
@media screen and (min-width: 1px) and (max-width: 375px) {
  .section--content li h3 .content-tit {
    font-size: 11px !important;
  }
  .page--home .section--live .live-top-cloud:before {
    top: -100px;
  }
  .page--home .contents-left .list--info li .date {
    width: 18%;
  }
}
/* ==============================================================
*  base
* ============================================================ */
/* ==============================================================
*  contents
* ============================================================ */