@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap");
:root {
  --heading-font: "Zen Maru Gothic", sans-serif;
}

.site-header, .page-mv, #footer {
  display: none;
}

h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
}

.ehonSecTitle {
  text-align: center;
  margin-bottom: 60px !important;
  font-family: var(--heading-font);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.ehonSecTitle::after {
  content: "" !important;
  display: block !important;
  width: 100%;
  height: 4px;
  border-radius: 100rem;
  margin-top: 10px;
  background: #FF6B00;
}
.ehonSecTitle h2 {
  font-weight: bold !important;
  font-size: 1.875rem;
  display: inline-block;
  letter-spacing: 0.1em;
}
.ehonSecTitle.-hasicon h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ehonSecTitle.-hasicon h2::before, .ehonSecTitle.-hasicon h2::after {
  display: block !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.ehonSecTitle.-hasicon.-char h2::after {
  content: "" !important;
  display: block !important;
  width: 45px;
  height: 45px;
  background-image: url(../img/ehon/char_title_icon.png);
  margin-left: 10px;
}
.ehonSecTitle.-hasicon.-summary h2::after {
  content: "" !important;
  display: block !important;
  width: 55px;
  height: 55px;
  background-image: url(../img/ehon/summary_title_icon.png);
  margin-left: 10px;
}
.ehonSecTitle.-hasicon.-book h2 {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.ehonSecTitle.-hasicon.-book h2::before {
  content: "" !important;
  display: block !important;
  width: 45px;
  height: 45px;
  background-image: url(../img/ehon/book_title_icon01.png);
  margin-right: 10px;
}
.ehonSecTitle.-hasicon.-book h2::after {
  content: "" !important;
  display: block !important;
  width: 45px;
  height: 45px;
  background-image: url(../img/ehon/book_title_icon02.png);
  margin-left: 10px;
}
.ehonSecTitle.-hasicon.-event {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.ehonSecTitle.-hasicon.-event h2 {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.ehonSecTitle.-hasicon.-event h2::before {
  content: "" !important;
  display: block !important;
  width: 45px;
  height: 45px;
  background-image: url(../img/ehon/event_title_icon01.png);
  margin-right: 10px;
}
.ehonSecTitle.-hasicon.-event h2::after {
  content: "" !important;
  display: block !important;
  width: 45px;
  height: 45px;
  background-image: url(../img/ehon/event_title_icon02.png);
  margin-left: 10px;
}
.ehonSecTitle.-hasicon.-voice h2::after {
  content: "" !important;
  display: block !important;
  width: 70px;
  height: 70px;
  background-image: url(../img/ehon/voice_title_icon.png);
  margin-left: 10px;
  -webkit-animation: katakata 2s normal infinite;
          animation: katakata 2s normal infinite;
}
.ehonSecTitle.-hasicon.-author h2::after {
  content: "" !important;
  display: block !important;
  width: 96px;
  height: 96px;
  background-image: url(../img/ehon/author_title_icon.png);
  margin-left: 10px;
  z-index: 1;
  position: relative;
  margin-bottom: -40px;
  top: -10px;
  -webkit-animation: katakata 2s normal infinite;
          animation: katakata 2s normal infinite;
}
@media screen and (max-width: 768px) {
  .ehonSecTitle.-hasicon.-author h2::after {
    margin-left: -90px;
    top: 40px;
  }
}

/* =====================================================
Header
.========================================================  */
.ehonHeader__link {
  position: absolute;
  top: 0;
  z-index: 1;
  right: calc(50% - 50vw + var(--scrollbar-width) / 2);
}
@media screen and (max-width: 768px) {
  .ehonHeader__link {
    display: none;
  }
}
.ehonHeader__link a {
  font-size: 1rem;
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 900;
  border-radius: 0px 0px 0px 30px;
  background: #FF6B00;
  padding: 20px 30px;
  text-decoration: none;
  display: block;
}
.ehonHeader__link a:hover {
  background-color: #4265F1;
}

.ehonGlobalnav {
  border: 1px solid #FF6B00;
  border-radius: 100rem;
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 20;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .ehonGlobalnav {
    border: none;
    width: 100%;
    border-radius: 0;
    height: auto;
    top: 0;
    right: 0;
    padding-top: 60px;
    padding-bottom: 50px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  }
  .ehonGlobalnav > * {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .is-ehonGlobalNavOpen .ehonGlobalnav {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.ehonGlobalnav > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ehonGlobalnav p {
  margin: 0 !important;
}
@media screen and (min-width: 769px) {
  .ehonGlobalnav p:not(:last-child) {
    border-right: 1px solid #FF6B00;
  }
}
.ehonGlobalnav a {
  text-decoration: none;
  font-weight: bold;
  font-family: var(--heading-font);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  padding: 8px 13px;
}
@media screen and (max-width: 768px) {
  .ehonGlobalnav a {
    display: block;
    padding: 20px 20px;
  }
}
.ehonGlobalnav a:hover {
  color: #FF6B00;
}

.ehonHamburger {
  position: fixed;
  top: 0;
  right: 0;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0px 0px 0px 40px;
  background: #FF6B00;
  width: 82px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  z-index: 20;
}
@media screen and (min-width: 769px) {
  .ehonHamburger {
    display: none;
  }
}
.ehonHamburger span {
  display: block;
  width: 37px;
  height: 5px;
  border-radius: 100rem;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.is-ehonGlobalNavOpen .ehonHamburger {
  gap: 0;
}
.is-ehonGlobalNavOpen .ehonHamburger span:nth-child(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 5px;
}
.is-ehonGlobalNavOpen .ehonHamburger span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.is-ehonGlobalNavOpen .ehonHamburger span:nth-child(3) {
  top: -5px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* =====================================================
Mv
.========================================================  */
.ehonMv {
  position: relative;
  min-height: 700px;
  background: url(../img/ehon/mv_bg.svg) repeat-x center top -70px/auto 214px !important;
}
@media screen and (max-width: 768px) {
  .ehonMv {
    overflow: hidden;
    background: url(../img/ehon/mv_bg.svg) repeat-x center top -110px/auto 214px !important;
  }
}

.ehonMv__copy {
  width: 476px;
}
@media screen and (max-width: 768px) {
  .ehonMv__copy {
    width: 320px;
    margin-right: auto;
    margin-left: auto;
  }
}

.ehonMv__img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  max-width: 50vw;
  width: 60%;
}
@media screen and (max-width: 768px) {
  .ehonMv__img {
    position: static;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    max-width: 100vw;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}

/* =====================================================
Banner
========================================================  */
.ehonBanner {
  background: var(--campaign-back, linear-gradient(180deg, #BC10D8 0%, #FF6B00 100%));
  text-align: center;
}
@media screen and (min-width: 769px) {
  .ehonBanner {
    position: absolute !important;
    background: none !important;
    top: min(550px, 100vh - 170px);
    width: 300px !important;
    padding: 0 !important;
    z-index: 1 !important;
    left: 48px !important;
  }
}

.ehonBanner__button a {
  background: #FFF100 !important;
  font-size: 1rem;
  padding: 10px 20px !important;
  color: #000 !important;
  font-family: var(--heading-font);
}

/* =====================================================
News
========================================================  */
.ehonNews__list {
  max-width: 558px;
  margin-right: auto;
  margin-left: auto;
}
.ehonNews__list .ys-posts.is-simple .ys-posts__text {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .ehonNews__list .ys-posts.is-simple .ys-posts__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.ehonNews__list .ys-posts__title {
  font-weight: bold;
  font-size: 1.25rem;
}
.ehonNews__list .ys-posts__link {
  font-weight: bold;
  font-size: 1.25rem;
}
.ehonNews__list .ys-posts.is-simple .ys-posts__meta {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  font-size: 0.875rem;
  font-weight: 500;
}
.ehonNews__list .ys-posts.is-simple .ys-posts__meta .ys-posts__cat {
  background: #FF6B00;
  font-size: 0.875rem;
}

.ehonNews__icon {
  position: absolute;
  bottom: -70px;
  margin: 0 !important;
  right: 20.8333333333%;
  width: 161px;
  -webkit-animation: katakata 1.6s normal infinite;
          animation: katakata 1.6s normal infinite;
}
@media screen and (max-width: 768px) {
  .ehonNews__icon {
    width: 130px;
    right: 0;
  }
}
.ehonNews__icon img {
  width: 100%;
}

@-webkit-keyframes katakata {
  0%, 10%, 11%, 21%, 30%, 41%, to {
    -webkit-transform: translateY(1px);
    transform: translateY(2px);
  }
  11%, 20%, 31%, 40% {
    -webkit-transform: translateY(-1px);
    transform: translateY(-2px);
  }
}

@keyframes katakata {
  0%, 10%, 11%, 21%, 30%, 41%, to {
    -webkit-transform: translateY(1px);
    transform: translateY(2px);
  }
  11%, 20%, 31%, 40% {
    -webkit-transform: translateY(-1px);
    transform: translateY(-2px);
  }
}
/* =====================================================
Lead
========================================================  */
.ehonLead {
  background: url(../img/ehon/lead_bg.png) no-repeat center/cover;
  z-index: -1 !important;
}

.ehonLead__box {
  padding: 40px 0;
  max-width: 752px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  border-radius: 110px;
}
.ehonLead__box::before {
  border-radius: 110px;
  -webkit-filter: blur(32.5px);
          filter: blur(32.5px);
  background: #FFF;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.ehonLead__box > * {
  position: relative;
  z-index: 1;
  line-height: 3.2;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .ehonLead__box > * {
    font-size: 1.125rem;
  }
}

.ehonLead__icon {
  position: absolute;
  bottom: -110px;
  margin: 0 !important;
  left: 0;
  width: 221px;
}
@media screen and (max-width: 768px) {
  .ehonLead__icon {
    width: 150px;
  }
}

/* =====================================================
Character
========================================================  */
.ehonSummary {
  z-index: 4 !important;
}

@media screen and (max-width: 768px) {
  .ehonSummary__content {
    max-width: 270px;
    margin-right: auto;
    margin-left: auto;
  }
}

.ehonChara__list {
  font-size: 0.875rem;
  line-height: 2;
}
.ehonChara__list .name {
  text-align: center;
  font-weight: bold;
  font-size: 1.75rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-family: var(--heading-font);
}

.ehonSummary__float {
  position: absolute;
}
.ehonSummary__float.item1 {
  width: 230px;
  top: 100px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .ehonSummary__float.item1 {
    width: 160px;
    right: 0;
    left: 0;
    top: -170px;
    margin: 0 auto;
  }
}
.ehonSummary__float.item2 {
  width: 364px;
  left: 0;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .ehonSummary__float.item2 {
    width: 270px;
    right: 0;
    bottom: -200px;
    left: 0;
    margin: 0 auto;
  }
}

/* =====================================================
Summary
========================================================  */
.ehonSummary__item {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}
@media screen and (min-width: 769px) {
  .ehonSummary__item {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .ehonSummary__item:nth-child(2) {
    margin-left: 14.2857142857%;
  }
  .ehonSummary__item:nth-child(3) {
    margin-left: 28.5714285714%;
  }
  .ehonSummary__item:nth-child(4) {
    margin-left: 42.8571428571%;
  }
}

/* =====================================================
Message
========================================================  */
.ehonMessage__box {
  max-width: 558px;
  margin-right: auto;
  margin-left: auto;
}

/* =====================================================
Book
========================================================  */
.ehonBook {
  background: url(../img/ehon/book_bg.png) no-repeat center/cover;
  z-index: 0 !important;
}
@media screen and (max-width: 768px) {
  .ehonBook {
    padding-bottom: 350px !important;
  }
}

.ehonBook__button {
  margin-top: 60px;
}
.ehonBook__button a {
  background: var(--orange, #FF6B00) !important;
  max-width: 280px;
  line-height: 1.23;
  font-family: var(--heading-font);
  min-width: 280px !important;
  letter-spacing: 0.2em;
  font-size: 1.625rem;
  color: #fff;
  -webkit-box-shadow: 4px 8px 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 4px 8px 8px 0px rgba(0, 0, 0, 0.2);
}
.ehonBook__button a:hover {
  color: #fff !important;
  -webkit-transform: translateY(5px);
      -ms-transform: translateY(5px);
          transform: translateY(5px);
}

.ehonBook__float {
  position: absolute;
}
.ehonBook__float.item1 {
  width: 362px;
  left: calc(50% - 50vw + var(--scrollbar-width) / 2 - 120px);
  bottom: -50px;
}
.ehonBook__float.item2 {
  width: 420px;
  right: calc(50% - 50vw + var(--scrollbar-width) / 2 - 120px);
  top: -80px;
}
.ehonBook__float.item3 {
  bottom: -330px;
  left: 0;
  right: 0;
}

/* =====================================================
Event
========================================================  */
.ehonEvent {
  background: url(../img/ehon/event_bg01.png) no-repeat center left -40px/230px auto, url(../img/ehon/event_bg02.png) no-repeat center right -50px/230px auto;
  background-size: 230px auto, 230px auto !important;
  background-position: center left -40px, center right -50px !important;
}
@media screen and (max-width: 768px) {
  .ehonEvent {
    background-repeat: repeat-y, repeat-y !important;
    background-size: 128px auto, 128px auto !important;
    background-position: center left -50px, center right -70px !important;
  }
}

@media screen and (max-width: 768px) {
  .ehonEvent__list {
    max-width: 270px;
    margin-right: auto;
    margin-left: auto;
  }
}
.ehonEvent__list .title {
  color: #4265f1;
  font-weight: bold;
}
.ehonEvent__list .title * {
  font-size: 1.25rem;
  margin-bottom: 4px;
  margin-top: 0;
}
.ehonEvent__list .title *:last-child {
  font-size: 1rem;
}
.ehonEvent__list a {
  color: #4265f1;
  text-decoration: underline;
}

/* =====================================================
Voice
========================================================  */
.ehonVoice__lead {
  text-align: center;
  color: #FF6B00;
  font-size: 1.25rem;
  margin-top: -20px !important;
  margin-bottom: 60px !important;
  font-weight: bold;
  font-family: var(--heading-font);
}

@media screen and (max-width: 768px) {
  .ehonVoice__img {
    max-width: 270px;
    margin-right: auto;
    margin-left: auto;
  }
}

.ehonVoice__content {
  max-width: 750px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  .ehonVoice__content {
    gap: 75px;
  }
}

.ehonVoice__item {
  width: 413px;
  max-width: 100%;
  padding-left: 50px;
  padding-top: 16px;
  background: url(../img/ehon/voice_line.svg) no-repeat top left/413px auto;
}
.ehonVoice__item .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ehonVoice__item .name::before {
  content: "";
  display: block;
  width: 18px;
  height: 20px;
  background: url(../img/ehon/icon_voice.svg) no-repeat center/contain;
  margin-right: 14px;
}
.ehonVoice__item + .ehonVoice__item {
  margin-top: 40px;
}

/* =====================================================
Company
========================================================  */
.ehonCompany {
  background: url(../img/ehon/company_bg.png) no-repeat center/cover;
}
.ehonCompany__info {
  gap: 90px;
}

/* =====================================================
Author
========================================================  */
.ehonAuthor .is-style-dot-blue li::before {
  background: #FF6B00;
}

/* =====================================================
Contact
========================================================  */
.ehonContact .contact-form .smf-item__label em {
  background: #FF6B00;
}

.ehonContact__lead {
  text-align: center;
  line-height: 2;
  margin-top: 60px;
  margin-bottom: 50px;
}

/* =====================================================
Footer
========================================================  */
.ehonFooter {
  height: 29.1911764706vw;
  background: url(../img/ehon/footer_bg.png) no-repeat center bottom/cover !important;
}
@media screen and (max-width: 768px) {
  .ehonFooter {
    background: url(../img/ehon/footer_bg_sp.png) no-repeat center bottom/auto 340px !important;
    margin-bottom: 65px !important;
    height: auto !important;
  }
}
.ehonFooter .copyright {
  margin-top: 200px;
}

.ehonFooter__links {
  gap: 34px;
}

/* =====================================================
Cta
========================================================  */
.ehonFixedCta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 20;
}
@media screen and (min-width: 769px) {
  .ehonFixedCta {
    width: auto;
    left: auto;
  }
}
.ehonFixedCta:hover .icon2 {
  -webkit-transform: translateY(4px);
      -ms-transform: translateY(4px);
          transform: translateY(4px);
}
.ehonFixedCta:hover .icon3 {
  -webkit-transform: rotate(-4deg) translateY(-3px);
      -ms-transform: rotate(-4deg) translateY(-3px);
          transform: rotate(-4deg) translateY(-3px);
}
.ehonFixedCta:hover .icon4 {
  -webkit-transform: rotate(5deg) translateY(-5px);
      -ms-transform: rotate(5deg) translateY(-5px);
          transform: rotate(5deg) translateY(-5px);
}

.ehonFixedCta__link a {
  text-decoration: none;
  width: 100%;
  background: #FF6B00;
  color: #fff;
  display: block;
  font-weight: 900;
  font-family: var(--heading-font);
  font-size: 1.625rem;
  padding: 20px;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .ehonFixedCta__link a {
    border-radius: 20px 0px 0px 20px;
    padding: 30px 56px;
  }
}
.ehonFixedCta__link a:hover {
  background: #4265F1;
}

.ehonFixedCta__icon {
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ehonFixedCta__icon.icon1 {
  width: 107px;
  top: -109px;
  right: 60px;
}
@media screen and (min-width: 769px) {
  .ehonFixedCta__icon.icon1 {
    width: 183px;
    top: -182px;
    right: 114px;
  }
}
.ehonFixedCta__icon.icon2 {
  width: 70px;
  top: -72px;
  right: 10px;
}
@media screen and (min-width: 769px) {
  .ehonFixedCta__icon.icon2 {
    width: 155px;
    top: -150px;
    right: 20px;
  }
}
.ehonFixedCta__icon.icon3 {
  width: 24px;
  top: -90px;
  right: 40px;
}
@media screen and (min-width: 769px) {
  .ehonFixedCta__icon.icon3 {
    width: 43px;
    top: -178px;
    right: 87px;
  }
}
.ehonFixedCta__icon.icon4 {
  width: 23px;
  top: -82px;
  right: 4px;
}
@media screen and (min-width: 769px) {
  .ehonFixedCta__icon.icon4 {
    width: 42px;
    top: -146px;
    right: 15px;
  }
}