@charset "UTF-8";
html {
  scroll-behavior: smooth;
  text-wrap: inherit;
}

body {
  background-color: #FFF;
  font-weight: 400;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-style: normal;
  color: #916759;
  margin: 0;
  padding: 0;
}

body:not(.home) {
  background-color: #f5f5f5;
}

/*reset*/
p {
  margin: 0;
  padding: 0;
  font-size: 3.7vw;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 15px;
  }
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

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

strong {
  font-weight: 500;
}

h1, h2, h3, h4 {
  font-weight: 400;
  margin: 0;
  padding: 0;
}

/* -- parts -- */
a {
  transition: color 0.5s ease, -webkit-text-decoration-color 0.3s ease;
  transition: color 0.5s ease, text-decoration-color 0.3s ease;
  transition: color 0.5s ease, text-decoration-color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
}

.inner {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 900px;
    margin: 0 auto;
  }
}

.inner.second {
  padding-top: 60px;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .inner.second {
    padding-bottom: 200px;
  }
}

.tt {
  text-align: center;
  color: #916759;
  padding: 40px 0;
}
.tt span:first-of-type {
  font-weight: 500;
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-size: 7.2vw;
  display: block;
}
.tt span:last-of-type {
  font-weight: 400;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-style: normal;
  font-size: 4vw;
  display: block;
  padding-top: 5px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .tt span:first-of-type {
    font-size: 40px;
  }
  .tt span:last-of-type {
    font-size: 15px;
  }
}

.img404 {
  width: 200px;
  margin: 0 auto;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* -- btn -- */
.btnSet {
  text-align: center;
}
.btnSet .btn {
  display: inline-block;
  margin: 20px 0;
}
.btnSet .btn a {
  background-color: #ffea24;
  color: #916759;
  border-radius: 5px;
  padding: 10px 20px 10px 30px;
  text-decoration: none;
  transition: all 0.5s ease;
  display: flex;
  align-items: center; /* 垂直方向の中央揃え */
  justify-content: center; /* 水平方向の中央揃え（不要なら削除） */
  gap: 5px; /* テキストとアイコンの間隔 */
}
.btnSet .btn a .material-symbols-rounded {
  font-size: 16px; /* アイコンのサイズ調整 */
  vertical-align: middle; /* 垂直方向の位置調整 */
  line-height: 1; /* 行の高さを抑える */
}
.btnSet .btn a:hover {
  opacity: 0.6;
}
.btnSet .btn.sub a {
  background-color: #ffedb8;
}
.btnSet .btn.arrowR a::after {
  width: 1em;
  height: 1em;
  display: inline-block;
  content: "";
  background-repeat: no-repeat;
  background-image: url(../img/common/icon_arrow_r.svg);
  background-size: 100%;
  background-position: center center;
}
.btnSet .btn.arrowL a {
  padding: 10px 30px 10px 20px;
}
.btnSet .btn.arrowL a::before {
  width: 1em;
  height: 1em;
  display: inline-block;
  content: "";
  background-repeat: no-repeat;
  background-image: url(../img/common/icon_arrow_r.svg);
  background-size: 100%;
  background-position: center center;
  transform: rotate(180deg);
}
.btnSet .btn.newopen a::after {
  width: 1em;
  height: 1em;
  display: inline-block;
  content: "";
  background-repeat: no-repeat;
  background-image: url(../img/common/icon_newopen.svg);
  background-size: 100%;
  background-position: center center;
}

/* -- header -- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 7000;
  padding: 0;
  aspect-ratio: 5/1;
  background-image: url(../img/common/header.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
}
.home #header {
  display: none;
}
#header #logo {
  position: absolute;
  margin-left: 10px;
  margin-top: 4%;
  width: 50%;
  z-index: 5003;
}
#header #logo a {
  display: block;
}
#header ul#menu-tab {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: -1px;
  padding: 0 10px;
  z-index: 5000;
}
#header ul#menu-tab li {
  border-radius: 0 0 10px 10px;
  margin-left: 5px;
  width: 20vw;
  height: 20vw;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  position: relative;
}
#header ul#menu-tab li a {
  display: block;
  height: 100%;
  width: 100%;
}
#header ul#menu-tab li span.txt {
  position: absolute;
  bottom: 2px;
  font-size: 2.8vw;
  font-weight: 500;
  text-align: center;
  display: block;
  width: 100%;
  letter-spacing: -0.1em;
  color: #e86356;
}
#header ul#menu-tab li.nav_shop {
  background-color: #ffea24;
  background-repeat: no-repeat;
  background-image: url(../img/common/icon_shop.webp);
  background-size: 78%;
  background-position: center 0;
  z-index: 5000;
}
#header ul#menu-tab li.nav_menu {
  background-color: #FFF;
  background-image: url(../img/common/header_menu.webp);
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center 22%;
  z-index: 5010;
}
@media screen and (min-width: 768px) {
  #header {
    height: 100px;
    background-image: url(../img/common/header_pc.webp);
    background-size: auto 80px;
    background-repeat: no-repeat;
    background-position: top -20px;
  }
  .home #header {
    display: block !important;
  }
  #header #logo {
    position: absolute;
    margin-left: 10px;
    margin-top: 10px;
    width: 200px;
  }
  #header #logo a {
    display: block;
  }
  #header ul#menu-tab {
    position: absolute;
    right: 0;
    width: auto;
    display: inline-block;
  }
  #header ul#menu-tab li {
    width: 100px;
    height: 100px;
  }
  #header ul#menu-tab li span.txt {
    font-size: 13px;
  }
  #header ul#menu-tab li.nav_shop {
    background-image: url(../img/common/icon_shop.webp);
  }
  #header ul#menu-tab li.nav_menu {
    display: none;
  }
}

#menu {
  display: none;
  position: relative;
  z-index: 5004;
  top: 0px;
  left: 0;
  width: 100%;
  background: rgb(255, 255, 255);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  padding: 20px;
}
#menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
#menu ul li {
  padding: 10px 0;
}
#menu ul li a {
  text-decoration: none;
  color: #916759;
  font-size: 18px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  #menu {
    display: block;
    position: absolute;
    background-color: transparent;
    box-shadow: none;
    padding: 0px;
    z-index: 4000;
  }
  #menu ul {
    display: flex;
    align-items: center;
    height: 50px;
    justify-content: flex-end;
    margin-right: 120px;
  }
  #menu ul li {
    padding: 0 10px;
  }
  #menu ul li a {
    color: #FFF;
  }
  #menu ul li a:hover {
    color: #FF0;
  }
}

/* -- footer -- */
#footer {
  background-image: url(../img/common/footer.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 40px 0;
  position: relative;
  margin-top: -20px;
}
#footer p {
  color: #FFF;
  text-align: center;
}
#footer p.copy {
  font-size: 4vw;
  padding-bottom: 10px;
}
#footer p.att {
  font-size: 3.2vw;
}
#footer .pisuke {
  position: absolute;
  width: 100px;
  height: auto;
  display: block;
  top: -10px;
  left: -5px;
}
@media screen and (min-width: 768px) {
  #footer {
    padding: 30px 0 0 0;
    height: 75px;
    background-image: url(../img/common/footer_pc.webp);
    background-size: auto 100px;
    background-position: top center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5000;
  }
  #footer p {
    color: #FFF;
    text-align: center;
    opacity: 0.8;
  }
  #footer p.copy {
    font-size: 13px;
    padding-bottom: 0px;
  }
  #footer p.att {
    font-size: 10px;
  }
  #footer p.att br {
    display: none;
  }
}
@media screen and (min-width: 1800px) {
  #footer {
    background-size: cover;
  }
}

/* -- page.php共通 -- */
.text a {
  text-decoration: underline;
  -webkit-text-decoration-color: #916759;
          text-decoration-color: #916759;
}
.text a:hover {
  color: #e86356;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}

.page-template-page-simple .inner.second {
  padding-top: 100px;
  padding-bottom: 100px;
  min-height: calc(100vh - 150px);
}
.page-template-page-simple .text p {
  font-size: 15px;
  line-height: 1.7;
}

#hero {
  background-image: url(../img/common/bg_check.webp);
  background-size: 20px;
  padding-top: 40px;
  background-color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  display: block;
}
#hero .logo {
  margin: 40px auto 20px auto;
  width: 80%;
  text-align: center;
}
#hero .logo img {
  aspect-ratio: 54/8;
}
#hero .sub {
  width: 60%;
  margin: 0 auto 20px auto;
}
#hero .sub img {
  aspect-ratio: 10/1;
}
#hero .mainimage {
  aspect-ratio: 15/8;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  position: relative;
}
#hero .main_2nd {
  position: absolute;
  top: 0;
  left: 0;
}
#hero .hero_pisukeusagi {
  opacity: 1;
  z-index: 100;
  position: relative;
  transform: translateX(0) rotate(0deg);
}
#hero .arrow-double {
  margin: 30px 0 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
#hero .arrow-double span {
  display: block;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #916759;
  -webkit-animation: float 1.6s ease-in-out infinite;
          animation: float 1.6s ease-in-out infinite;
}
#hero .arrow-double span:nth-child(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
#hero .charahead {
  aspect-ratio: 207/56;
  scroll-margin-top: 10vw;
  display: block;
  transition: all 0.5s ease;
}
#hero .newschara {
  position: absolute;
  right: -4vw;
  width: 31vw;
  z-index: 150;
  opacity: 1;
  transition: all 0.5s ease 1s;
}
#hero .newschara::before {
  transform: rotate(-10deg);
  width: 18vw;
  aspect-ratio: 11/8;
  content: "";
  background-image: url(../img/top/news_board.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: -3vw;
  z-index: 10;
  opacity: 1;
  transition: all 0.5s ease;
}
#hero .newschara img {
  z-index: 10;
  position: relative;
}
@media screen and (min-width: 768px) {
  #hero {
    position: relative;
    height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #hero .mainimage {
    aspect-ratio: 325/109;
  }
  #hero .logo {
    margin: 0 0 0 -450px;
    position: absolute;
    left: 50%;
    top: 70px;
    width: auto;
    display: inline-block;
  }
  #hero .logo img {
    width: 300px;
  }
  #hero .sub {
    margin: 0 0 0 -450px;
    position: absolute;
    left: 50%;
    top: 120px;
    width: auto;
    display: inline-block;
  }
  #hero .sub img {
    width: 200px;
    margin-left: 50px;
    display: inline-block;
  }
  #hero .arrow-double {
    display: none;
  }
  #hero .charahead {
    aspect-ratio: 629/36;
    display: none;
  }
  #hero .newschara {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #hero .logo {
    margin: 0 0 0 0;
    left: 2vw;
    top: 70px;
  }
  #hero .sub {
    margin: 0 0 0 0;
    left: 2vw;
  }
  #hero .sub img {
    margin-left: 0px;
  }
}

body.home:not(.open) {
  height: 100vh;
  overflow: hidden;
}
body.home:not(.open) #hero {
  z-index: 9000;
}
body.home:not(.open) #hero .logo,
body.home:not(.open) #hero .sub {
  opacity: 0;
  transform: scale(0.8);
  -webkit-animation: logoPop 1s ease-out forwards;
          animation: logoPop 1s ease-out forwards;
}
body.home:not(.open) #hero .logo {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
body.home:not(.open) #hero .sub {
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
}
body.home:not(.open) #hero .hero_pisukeusagi {
  opacity: 0;
  z-index: 100;
  transform: translateX(0) rotate(0deg);
  -webkit-animation-name: heroIn, heroWiggle;
          animation-name: heroIn, heroWiggle;
  -webkit-animation-duration: 1.2s, 1.5s;
          animation-duration: 1.2s, 1.5s;
  -webkit-animation-delay: 0.3s, 1.5s;
          animation-delay: 0.3s, 1.5s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
          animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-fill-mode: forwards, forwards;
          animation-fill-mode: forwards, forwards;
  -webkit-animation-iteration-count: 1, 3;
          animation-iteration-count: 1, 3;
}
body.home:not(.open) #hero .main_2nd {
  opacity: 0;
  transform: scale(0.8);
  -webkit-animation: logoPop 1s ease-out forwards;
          animation: logoPop 1s ease-out forwards;
}
body.home:not(.open) #hero .hero_keigo {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
body.home:not(.open) #hero .hero_obake {
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}
body.home:not(.open) #hero .hero_nene {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}
body.home:not(.open) #hero .hero_mugyu {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}
body.home:not(.open) #hero .hero_zombie {
  -webkit-animation-delay: 3.1s;
          animation-delay: 3.1s;
}
body.home:not(.open) #hero .hero_kousagi {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}
body.home:not(.open) #hero .newschara {
  right: -30vw;
  opacity: 0;
}
body.home:not(.open) #hero .arrow-double {
  display: none;
}
body.home:not(.open) #hero .charahead {
  width: 100%;
  display: none;
}
body.home:not(.open) #character {
  position: relative;
  margin-top: 100vh;
}
@media screen and (min-width: 768px) {
  body.home:not(.open) {
    height: auto;
    overflow: scroll;
  }
  body.home:not(.open) #hero {
    position: relative;
    height: auto;
    z-index: 10;
  }
  body.home:not(.open) #character {
    margin-top: -100px;
  }
}

/* 登場アニメーション */
@-webkit-keyframes heroIn {
  0% {
    opacity: 0;
    transform: translateX(100%) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}
@keyframes heroIn {
  0% {
    opacity: 0;
    transform: translateX(100%) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}
/* ピコピコする wiggle アニメーション */
@-webkit-keyframes heroWiggle {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(2px) rotate(2deg);
  }
  50% {
    transform: translateX(-2px) rotate(-2deg);
  }
  75% {
    transform: translateX(1px) rotate(1deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}
@keyframes heroWiggle {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(2px) rotate(2deg);
  }
  50% {
    transform: translateX(-2px) rotate(-2deg);
  }
  75% {
    transform: translateX(1px) rotate(1deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}
@-webkit-keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(6px);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(6px);
  }
}
@-webkit-keyframes logoPop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    transform: scale(1.1);
  }
  60% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes logoPop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    transform: scale(1.1);
  }
  60% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
#character {
  margin-top: 0vh;
  padding-top: 0vh;
  width: 100%;
  min-height: 1200px;
  overflow: hidden;
  transition: all 0.5s ease;
  z-index: 100;
  position: relative;
}
#character .characterbg {
  background-image: url(../img/common/bg_beige.webp);
  background-color: #f0e5d7;
  background-repeat: repeat;
  background-size: 100%;
  padding-bottom: 80px;
}
#character .tt {
  padding: 20px 0;
}
#character .first li {
  margin-bottom: 70px;
  position: relative;
}
#character .first li .chara-img {
  display: inline-block;
  width: 70%;
  margin: 0 auto 20px auto;
  z-index: 20;
  position: relative;
}
#character .first li p.catchcopy {
  font-size: 5vw;
  font-weight: 500;
  color: #e86356;
  position: absolute;
  top: 13vw;
  right: 3vw;
  transform: rotate(-10deg);
  text-align: right;
  z-index: 20;
  min-height: 60px;
}
#character .first li h2 {
  text-align: center;
  z-index: 20;
}
#character .first li h2 a {
  background-color: #FFF;
  border-radius: 150px;
  color: #916759;
  font-size: 5vw;
  text-decoration: none;
  display: inline-block;
  padding: 10px 35px 10px 30px;
  position: relative;
  z-index: 20;
}
#character .first li h2 a::after {
  content: "";
  display: block;
  position: absolute;
  top: 1vw;
  right: -3vw;
  width: 10vw;
  height: 10vw;
  background-image: url(../img/common/icon_zoom.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
#character .first li.pisukeusagi {
  text-align: left;
}
#character .first li.pisukeusagi .chara-img {
  width: 60%;
  display: block;
  margin: 0 0 20px 5vw;
  aspect-ratio: 124/109;
}
#character .first li.pisukeusagi p.catchcopy {
  top: 13vw;
  right: 7vw;
  transform: rotate(-10deg);
  text-align: right;
}
#character .first li.pisukeusagi h2 {
  text-align: left;
  padding-left: 5vw;
}
@media screen and (min-width: 768px) {
  #character .first li.pisukeusagi .chara-img {
    margin: 0 0 20px 20px !important;
  }
  #character .first li.pisukeusagi p.catchcopy {
    top: 80px !important;
  }
}
#character .first li.nene {
  text-align: right;
}
#character .first li.nene .chara-img {
  width: 60%;
  margin: 0 0 10px 5vw;
  aspect-ratio: 248/149;
}
#character .first li.nene p.catchcopy {
  top: 0vw;
  left: 3vw;
  transform: rotate(-10deg);
  text-align: left;
}
#character .first li.nene h2 {
  text-align: right;
  padding-right: 7vw;
}
@media screen and (min-width: 768px) {
  #character .first li.nene {
    padding-top: 100px !important;
  }
  #character .first li.nene .chara-img {
    width: 80% !important;
    height: auto !important;
  }
  #character .first li.nene p.catchcopy {
    top: 50px !important;
    transform: rotate(4deg);
    text-align: left;
    right: 0;
    left: auto;
  }
  #character .first li.nene p.catchcopy br:nth-of-type(2) {
    display: none;
  }
}
#character .first li.keigo {
  text-align: left;
}
#character .first li.keigo .chara-img {
  width: 40%;
  display: block;
  margin: 0 0 20px 5vw;
  aspect-ratio: 166/217;
}
#character .first li.keigo p.catchcopy {
  top: 13vw;
  right: 12vw;
  transform: rotate(-10deg);
  text-align: right;
}
#character .first li.keigo h2 {
  text-align: right;
  padding-right: 10vw;
  margin-top: -17vw;
}
@media screen and (min-width: 768px) {
  #character .first li.keigo .chara-img {
    margin: 0 0 20px 50px !important;
  }
  #character .first li.keigo p.catchcopy {
    top: 80px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #character .first li.keigo .chara-img {
    margin: 0 0 20px 30px !important;
  }
}
#character .first li.zombie {
  text-align: right;
}
#character .first li.zombie .chara-img {
  width: 45%;
  margin: 0 5vw 10px 0;
  aspect-ratio: 93/110;
}
#character .first li.zombie p.catchcopy {
  top: 7vw;
  left: 5vw;
  transform: rotate(-10deg);
  text-align: left;
}
#character .first li.zombie h2 {
  text-align: left;
  padding-left: 5vw;
  margin-top: -15vw;
}
@media screen and (min-width: 768px) {
  #character .first li.zombie {
    margin-top: -50px;
  }
  #character .first li.zombie p.catchcopy {
    left: 10px !important;
    top: 60px !important;
  }
  #character .first li.zombie .chara-img {
    margin: 0 30px 20px auto !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #character .first li.zombie .chara-img {
    margin: 0 10px 20px auto !important;
  }
}
#character .first li.mugyu {
  text-align: left;
}
#character .first li.mugyu .chara-img {
  width: 42%;
  display: block;
  margin: 0 0 20px 5vw;
  aspect-ratio: 29/27;
}
#character .first li.mugyu p.catchcopy {
  top: 13vw;
  right: 7vw;
  transform: rotate(-10deg);
  text-align: right;
}
#character .first li.mugyu h2 {
  text-align: right;
  padding-right: 5vw;
  margin-top: -10vw;
}
@media screen and (min-width: 768px) {
  #character .first li.mugyu .chara-img {
    margin: 0 auto 20px 50px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #character .first li.mugyu .chara-img {
    margin: 0 auto 20px 40px !important;
  }
}
#character .second {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}
#character .second li .chara-img {
  width: 100%;
  margin-bottom: 20px;
}
#character .second li h2 {
  text-align: center;
}
#character .second li h2 a {
  background-color: #FFF;
  border-radius: 150px;
  color: #916759;
  font-size: 3.4vw;
  text-decoration: none;
  display: inline-block;
  padding: 7px 25px 7px 20px;
  position: relative;
}
#character .second li h2 a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.5vw;
  right: -3vw;
  width: 7vw;
  height: 7vw;
  background-image: url(../img/common/icon_zoom.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
#character .second li.kousagi {
  width: 42%;
}
#character .second li.kousagi .chara-img {
  aspect-ratio: 87/37;
}
#character .second li.obake {
  width: 50%;
}
#character .second li.obake .chara-img {
  width: 80%;
  aspect-ratio: 83/63;
  display: block;
  margin: 0 auto 20px auto;
}
#character .line {
  z-index: 10;
  position: absolute;
}
#character .line img {
  max-width: none;
  width: 100%;
}
#character .line01 {
  aspect-ratio: 500/258;
  bottom: -30vw;
  width: 120%;
  left: -8%;
}
#character .line01::after {
  content: "";
  opacity: 0.8;
  background-color: #ffb6b6;
  width: 25vw;
  height: 25vw;
  border-radius: 50%;
  position: absolute;
  right: 10vw;
  top: 15vw;
}
#character .line02 {
  aspect-ratio: 500/258;
  bottom: -40vw;
  width: 120%;
  left: -8%;
}
#character .line02::after {
  content: "";
  opacity: 0.8;
  background-color: #ffedb8;
  width: 22vw;
  height: 22vw;
  border-radius: 50%;
  position: absolute;
  left: 5vw;
  top: 10vw;
}
#character .line03 {
  aspect-ratio: 500/258;
  bottom: -42vw;
  width: 120%;
  left: -8%;
}
#character .line03::after {
  content: "";
  opacity: 0.8;
  background-color: #c6ecff;
  width: 15vw;
  height: 15vw;
  border-radius: 50%;
  position: absolute;
  left: 24vw;
  bottom: 20vw;
}
#character .line04 {
  aspect-ratio: 500/258;
  bottom: -40vw;
  width: 120%;
  left: -8%;
  rotate: 7deg;
}
#character .line04::after {
  content: "";
  opacity: 0.8;
  background-color: #ffb6b6;
  width: 25vw;
  height: 25vw;
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: 20vw;
}
#character .line05 {
  aspect-ratio: 500/258;
  bottom: -45vw;
  width: 120%;
  left: -8%;
  rotate: -22deg;
}
#character .pc-line {
  display: none;
}
@media screen and (min-width: 768px) {
  #character {
    min-height: auto;
    position: relative;
    margin-top: -100px;
  }
  #character .tt {
    padding: 0px 0 20px 0;
  }
  #character .first {
    width: 900px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  #character .first li {
    width: 33%;
    padding-top: 40px;
  }
  #character .first li .chara-img {
    width: auto !important;
    height: 150px !important;
    margin: 0 auto 20px auto !important;
    display: block;
  }
  #character .first li p.catchcopy {
    font-size: 15px;
    top: 10px !important;
    right: 10px !important;
  }
  #character .first li h2 {
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  #character .first li h2 a {
    font-size: 15px;
  }
  #character .first li h2 a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: -20px;
    width: 40px;
    height: 40px;
  }
  #character .second {
    display: block;
    width: 200px;
    position: absolute;
    bottom: 30px;
    right: 40px;
  }
  #character .second li {
    width: 100% !important;
  }
  #character .second li .chara-img {
    margin: 10px auto !important;
  }
  #character .second li h2 {
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  #character .second li h2 a {
    font-size: 15px;
  }
  #character .second li h2 a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: -20px;
    width: 40px;
    height: 40px;
  }
  #character .charaset {
    position: relative;
    width: 900px;
    margin: 0 auto;
    z-index: 50;
  }
  #character .line {
    display: none;
  }
  #character .pc-line {
    display: block;
  }
  #character .pc-line01 {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
  }
  #character .pc-line01::after {
    content: "";
    opacity: 0.8;
    background-color: #ffb6b6;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: absolute;
    right: 1vw;
    top: 0;
  }
  #character .pc-line02 {
    position: absolute;
    top: 390px;
    left: 0;
    width: 100%;
  }
  #character .pc-line02::after {
    content: "";
    opacity: 0.8;
    background-color: #ffedb8;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: absolute;
    left: 7vw;
    top: 0px;
  }
  #character .pc-line02::before {
    content: "";
    opacity: 0.8;
    background-color: #c6ecff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    left: 2vw;
    top: 0;
  }
  #character .pc-line03 {
    position: absolute;
    top: 680px;
    left: 0;
    width: 100%;
  }
  #character .pc-line03::before {
    content: "";
    opacity: 0.8;
    background-color: #c6ecff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    right: 1vw;
    top: 120px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #character .charaset {
    width: 100%;
  }
  #character .first {
    width: 100%;
  }
  #character .first li p.catchcopy {
    font-size: 1.8vw;
  }
  #character .pc-line01::after {
    width: 120px;
    height: 120px;
    right: -30px;
    top: -10px;
  }
  #character .pc-line02::before {
    left: 7vw;
    top: 0;
  }
  #character .pc-line02::after {
    content: "";
    left: 0vw;
    top: 320px;
    bottom: auto;
  }
}

#news {
  background-color: #f5f5f5;
  position: relative;
  padding-bottom: 60px;
}
#news .news-list {
  min-height: 159.3582887701vw;
}
#news .news-list p.loading {
  text-align: center;
}
#news .girl {
  position: absolute;
  left: 10px;
  top: -10vw;
  width: 25vw;
  aspect-ratio: 20/23;
  display: block;
  z-index: 180;
}
#news::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30px;
  background-color: #fbdeda;
  -webkit-clip-path: polygon(0 100%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0 100%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  #news .news-list {
    min-height: auto;
  }
  #news .girl {
    left: calc(50% - 400px);
    top: -50px;
    width: 120px;
  }
}

#link {
  padding: 20px 0 40px 0;
  background-color: #fbdeda;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: -1px;
}
#link .tt {
  color: #e86356;
}
#link ul.sns {
  width: 70%;
  margin: 0px auto 40px auto;
  display: flex;
  justify-content: center;
}
#link ul.sns li {
  width: 18%;
  margin: 0 20px;
}
#link .splide_bnr {
  margin-top: 40px;
}
#link .splide_bnr img {
  border-radius: 10px;
}
#link .splide_bnr .splide__pagination {
  padding-top: 20px;
  gap: 8px;
}
#link .splide_bnr .splide__pagination button.splide__pagination__page {
  aspect-ratio: 1/1;
  border: none;
  border-radius: 20px;
  background-color: #FFF;
  width: 15px;
  height: 15px;
  padding: 0;
  margin: 0;
}
#link .splide_bnr .splide__pagination button.splide__pagination__page.is-active {
  background-color: #e86356;
}
@media screen and (min-width: 768px) {
  #link .link-first {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 900px;
    align-items: center;
  }
  #link .link-first ul.sns {
    width: 49%;
    margin: 0px;
  }
  #link .link-first ul.sns li {
    width: 60px;
    margin: 0 20px;
  }
  #link .link-first .inner {
    width: 49%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #link .link-first {
    width: 100%;
  }
}

#profile {
  background-color: #FFF;
  background-image: url(../img/top/profile_bg.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center 44vw;
  padding-top: 20vw;
  margin-top: -1px;
  position: relative;
}
#profile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
  background-color: #fbdeda;
  z-index: 1;
}
#profile .thumb {
  width: 50vw;
  margin: 0 auto;
  aspect-ratio: 1/1;
}
#profile h2 {
  text-align: center;
  font-size: 9vw;
  padding: 4.5vw 0;
  color: #e86356;
}
#profile ul {
  margin: 0 auto 5vw auto;
  display: flex;
  justify-content: center;
  gap: 5%;
}
#profile ul li {
  width: 10%;
}
#profile .text {
  position: relative;
}
#profile .text p {
  padding: 7vw 5vw 10vw 6vw;
  font-size: 3.5vw;
  line-height: 1.7;
  padding-bottom: 10vw;
}
#profile .text .homebnr {
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 60px 0;
}
@media screen and (min-width: 768px) {
  #profile {
    background-image: none;
    padding-top: 70px;
    padding-bottom: 100px;
    background-image: url(../img/top/profile_bg_pc.webp);
    background-size: 420px;
    background-position: 45% 30px;
    background-repeat: no-repeat;
  }
  #profile .inner {
    display: grid;
    padding-right: 350px;
    gap: 30px;
    grid-template-columns: 34% 33% 33%;
  }
  #profile .inner .thumb {
    grid-row: 1/2;
    grid-column: 1/2;
    width: 100%;
  }
  #profile .inner .info {
    grid-row: 2/3;
    grid-column: 1/2;
  }
  #profile .inner .info h2 {
    text-align: center;
    font-size: 24px;
    padding: 0;
  }
  #profile .inner .info ul {
    padding-top: 10px;
  }
  #profile .inner .info ul li {
    width: 17%;
  }
  #profile .inner .text {
    grid-row: 1/3;
    grid-column: 2/4;
    padding: 10px 0 0 0;
  }
  #profile .inner .text p {
    font-size: 13px;
    line-height: 1.7;
    padding: 0 30px;
  }
  #profile .inner .text .btnSet .btn {
    margin-top: 40px;
  }
  #profile .inner .text .homebnr {
    position: absolute;
    width: 270px;
    right: -290px;
    top: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #profile {
    background-position: 25% 55px;
    background-size: 400px;
  }
  #profile .inner {
    gap: 10px;
  }
  #profile .inner .text p {
    font-size: 12px;
    padding: 20px 10px 0 10px;
  }
}

#contact .inner > div {
  border-radius: 20px 20px 0 0;
  background-color: #fef3e8;
  padding: 0px 20px 60px 20px;
}
@media screen and (min-width: 768px) {
  #contact .inner {
    padding: 0 0 0 630px;
    position: relative;
    width: 100%;
    height: 0px;
  }
  #contact .inner > div {
    padding: 0 0 100px 0;
    position: absolute;
    bottom: 0;
  }
  #contact .inner > div .tt {
    padding-bottom: 0;
  }
  #contact .inner > div .tt span:first-of-type {
    font-size: 28px;
  }
  #contact .inner > div p {
    padding: 20px 20px 0px 20px;
    font-size: 13px;
  }
  #contact .inner > div .btnSet .btn a {
    font-size: 13px;
    margin: 0 20px;
    padding: 10px 10px 10px 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #contact .inner > div {
    padding: 0 0 100px 0;
    position: absolute;
    bottom: 0;
    right: 30px;
    width: 280px;
  }
}

body.no-scroll {
  overflow: hidden;
  pointer-events: none; /* ← 背景のクリックも無効化！ */
}

body.no-scroll .modal {
  pointer-events: auto; /* ← モーダル内は操作OKに戻す！ */
}

.modal {
  display: none; /* 初期状態では非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9000;
  padding: 20px 20px 40px 20px;
  overflow-y: scroll;
}
.modal .loading {
  width: 100%;
  height: 100%;
  background-color: #FFF;
  position: absolute;
  z-index: 8005;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal .chara-box {
  z-index: 8010;
}
.modal .chara-box .sampleimage {
  padding: 20px 20px 0px 20px;
}
.modal .chara-box .close {
  background-color: #ffea24;
  border-radius: 5px;
  background-image: url(../img/common/icon_close.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 80%;
  width: 45px;
  height: 45px;
  position: absolute;
  top: 10px;
  right: 10px;
}
.modal .chara-box .close span {
  font-size: 10px;
  width: 100%;
  padding-bottom: 2px;
  position: absolute;
  bottom: 0px;
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .modal {
    padding: 60px;
  }
  .modal .chara-box {
    width: 800px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .modal .chara-box {
    width: 100%;
  }
}

.chara-box {
  width: 100%;
  padding: 0px 0 20px 0;
  background-color: #FFF;
  border-radius: 10px;
  position: relative;
}
.chara-box .sampleimage {
  padding: 0px 20px 0px 20px;
}
.chara-box .sampleimage .main {
  width: 70%;
  margin: 0 auto;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.chara-box .sampleimage .thumb {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 10px auto;
  gap: 1%;
}
.chara-box .sampleimage .thumb li {
  width: 15%;
}
.chara-box .sampleimage .thumb li span {
  aspect-ratio: 1/1;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.chara-box .sampleimage .thumb li.active span {
  border-color: #e86356;
}
.chara-box .chara-profile {
  padding: 0 20px;
}
.chara-box .chara-profile .name {
  text-align: center;
}
.chara-box .chara-profile .name p.catchcopy {
  font-size: 4vw;
}
.chara-box .chara-profile .name h2 {
  color: #e86356;
  padding: 0px 0 10px 0;
  font-size: 6.2vw;
  font-weight: 500;
}
.chara-box .chara-profile .profile-text {
  font-size: 3vw;
  background-color: #ffedb8;
  border-radius: 10px;
  padding: 10px;
}
.chara-box .chara-profile .profile-text .chara-single {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}
.chara-box .chara-profile .profile-text .chara-single .charaimg {
  width: 25%;
}
.chara-box .chara-profile .profile-text .chara-single .charatxt {
  width: 68%;
}
.chara-box .linestamp h3 {
  padding: 20px 0 10px 0;
  color: #78b206;
  text-align: center;
  font-size: 5vw;
  font-weight: 500;
}
.chara-box .linestamp .thumb {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 10px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.chara-box .linestamp .thumb.count-1, .chara-box .linestamp .thumb.count-2, .chara-box .linestamp .thumb.count-3 {
  justify-content: center;
}
.chara-box .linestamp .thumb::-webkit-scrollbar {
  height: 6px;
}
.chara-box .linestamp .thumb::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
.chara-box .linestamp .thumb li {
  flex: 0 0 29%;
  padding-right: 10px;
  list-style: none;
  text-align: center;
  scroll-snap-align: start;
}
.chara-box .linestamp .thumb li a {
  text-decoration: none;
}
.chara-box .linestamp .thumb li.space {
  flex: 0 0 20px;
}
.chara-box .linestamp .thumb li img {
  border: 1px solid #CCC;
  border-radius: 8px;
  margin-bottom: 5px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.chara-box .linestamp .thumb li p {
  font-size: 2.5vw;
  line-height: 1.3;
  white-space: normal;
  text-align: left;
}
.chara-box .linestamp .btnSet .btn {
  margin: 10px 0;
  width: 80%;
  font-size: 3.6vw;
}
@media screen and (min-width: 768px) {
  .chara-box .outbox .infobox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
  }
  .chara-box .outbox .infobox .sampleimage {
    width: 45%;
    padding: 0;
  }
  .chara-box .outbox .infobox .sampleimage ul.thumb {
    width: 100%;
  }
  .chara-box .outbox .infobox .chara-profile {
    width: 50%;
    padding: 0;
  }
  .chara-box .outbox .infobox .chara-profile .name {
    text-align: center;
  }
  .chara-box .outbox .infobox .chara-profile .name p.catchcopy {
    font-size: 15px;
  }
  .chara-box .outbox .infobox .chara-profile .name h2 {
    font-size: 26px;
    padding: 10px 0 20px 0;
  }
  .chara-box .outbox .infobox .chara-profile .profile-text {
    font-size: 13px;
  }
  .chara-box .outbox .infobox .chara-profile .profile-text .chara-single {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .chara-box .outbox .infobox .chara-profile .profile-text .chara-single .charaimg {
    width: 20%;
  }
  .chara-box .outbox .infobox .chara-profile .profile-text .chara-single .charatxt {
    width: 78%;
  }
  .chara-box .outbox .linestamp {
    width: 100%;
  }
  .chara-box .outbox .linestamp h3 {
    padding-top: 0;
    font-size: 20px;
  }
  .chara-box .outbox .linestamp .thumb {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .chara-box .outbox .linestamp .thumb li {
    width: 90px;
    flex: none;
    padding: 0px;
  }
  .chara-box .outbox .linestamp .thumb li.space {
    display: none;
  }
  .chara-box .outbox .linestamp .thumb li p {
    font-size: 11px;
  }
  .chara-box .outbox .linestamp .btnSet .btn {
    width: auto;
    margin-left: 5px;
    margin-right: 5px;
  }
  .chara-box .outbox .linestamp .btnSet .btn a {
    font-size: 12px;
    padding: 5px 10px 5px 15px;
  }
}

.characters-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.characters-list article {
  width: 45%;
  padding-bottom: 40px;
}
.characters-list article img {
  border: 5px solid #FFF;
}
.characters-list article h2 {
  font-size: 15px;
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  .characters-list {
    justify-content: flex-start;
    gap: 10px;
  }
  .characters-list article {
    width: 24%;
  }
}

.news-tab {
  display: flex;
  padding: 0px 0 20px 0;
  justify-content: space-between;
  margin-top: 0;
}
.news-tab li {
  background: #ffedb8;
  color: #916759;
  padding: 10px 0;
  width: 32%;
  font-size: 3.1vw;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
.news-tab li.active {
  color: #FFF;
  background-color: #e86356;
}
.news-tab li.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #e86356;
}
@media screen and (min-width: 768px) {
  .news-tab {
    width: 70%;
    margin: 0 auto;
  }
  .news-tab li {
    font-size: 15px;
  }
}

.news-nav p {
  font-size: 3vw;
}
.news-nav p span {
  display: inline-block;
  background-color: #FFF;
  background: #ffedb8;
  border-radius: 100px;
  padding: 5px 20px;
}
.news-nav .category-list ul {
  padding-top: 10px;
  margin-bottom: 20px;
}
.news-nav .category-list ul li {
  display: inline-block;
}
.news-nav .category-list ul li a {
  font-size: 13px;
  margin-right: 5px;
  text-decoration: underline;
  -webkit-text-decoration-color: #916759;
          text-decoration-color: #916759;
}
.news-nav .category-list ul li.active a, .news-nav .category-list ul li a:hover {
  color: #e86356;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
.news-nav .category-list ul li::after {
  content: "/";
  display: inline-block;
  padding: 0px;
  color: #916759;
}
.news-nav .category-list ul li:first-child {
  display: none;
}
.news-nav .category-list ul li:last-child::after {
  content: none;
}
.news-nav .tag-list {
  margin-bottom: 20px;
}
.news-nav .tag-list ul {
  padding-top: 10px;
  display: flex;
  justify-content: center;
  gap: 1%;
}
.news-nav .tag-list ul li {
  width: 12%;
  aspect-ratio: 1/1;
}
.news-nav .tag-list ul li a {
  display: block;
  border: 1px solid #CCC;
  border-radius: 50px;
  overflow: hidden;
  background-color: #FFF;
  aspect-ratio: 1/1;
}
.news-nav .tag-list ul li a img {
  aspect-ratio: 1/1;
}
.news-nav .tag-list ul li.active a {
  border: 1px solid #e86356;
  background-color: #ffedb8;
}
@media screen and (min-width: 768px) {
  .news-nav p {
    font-size: 15px;
  }
  .news-nav .tag-list ul {
    justify-content: flex-start;
  }
  .news-nav .tag-list ul li {
    width: 70px;
  }
}

.news-list article {
  background-color: #FFF;
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 20px 10px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  position: relative;
}
.news-list article .thumb {
  width: 52%;
  aspect-ratio: 40/21;
  overflow: hidden;
}
.news-list article .thumb a {
  aspect-ratio: 40/21;
  overflow: hidden;
}
.news-list article .thumb a img {
  aspect-ratio: 40/21;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-list article .meta {
  width: 45%;
  gap: 1px;
  padding-top: 5px;
}
.news-list article .meta .date {
  color: #916759;
  opacity: 0.7;
  font-size: 10px;
  position: absolute;
  bottom: 5px;
  right: 10px;
}
.news-list article .meta h2 {
  margin: 0;
  font-size: 14px;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  text-wrap: wrap;
  font-weight: 500;
  line-height: 1.2;
}
.news-list article .meta h2 a {
  -webkit-text-decoration-color: #916759;
          text-decoration-color: #916759;
}
.news-list article .meta h2 a:hover {
  color: #e86356;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
@media screen and (min-width: 768px) {
  .news-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .news-list::after {
    content: "";
    display: block;
    width: 32%;
  }
  .news-list article {
    width: 32%;
    display: block;
    padding: 10px 10px 20px 10px;
    margin-bottom: 20px;
  }
  .news-list article .thumb {
    width: 100%;
    aspect-ratio: 40/21;
    overflow: hidden;
  }
  .news-list article .meta {
    width: 100%;
  }
  .news-list article .meta h2 {
    font-size: 13px;
    line-height: 1.4;
  }
  .news-list article .meta ul.category {
    margin: 7px 0;
  }
  .news-list article .chara {
    right: 10px;
    top: 148px;
  }
}

ul.category {
  display: flex;
  margin-bottom: 5px;
}
ul.category li {
  background-color: #e86356;
  color: #FFF;
  padding: 1px 8px;
  margin-right: 5px;
  border-radius: 10px;
  font-size: 10px;
}
ul.category li a {
  text-decoration: none;
}
ul.category li.pickup {
  display: none;
}

.chara {
  display: flex;
  right: 5px;
  top: 5px;
  position: absolute;
}
.chara div {
  display: inline-block;
  width: 20px;
  height: 20px;
  overflow: hidden;
  border-radius: 50px;
  margin-left: 3px;
  border: 1px solid #CCC;
}
.chara div img {
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .chara div {
    width: 30px;
    height: 30px;
    aspect-ratio: 1/1;
  }
}

.single-news main article .text img {
  margin: 1em 0;
}
.single-news main article .text p {
  padding-bottom: 1em;
  word-break: break-all;
}
.single-news main article .text p iframe {
  display: block;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.single-news main article .text p strong {
  font-weight: 700;
  background: #FF0;
  padding: 2px 4px;
  border-radius: 2px;
}
.single-news main article .text hr {
  border: none;
  border-top: 2px dotted #aaa;
  max-width: 500px;
  margin: 2em auto;
}
.single-news main article .text h3 {
  font-weight: 700;
  padding: 0 0 10px 0px;
}
.single-news main article header {
  border: 2px solid #e86356;
  padding: 15px 15px 30px 15px;
  border-radius: 10px;
  margin-bottom: 2em;
  position: relative;
  background-color: #FFF;
}
.single-news main article header h1 {
  font-weight: 500;
  line-height: 1.3;
  padding-top: 10px;
  font-size: 4.5vw;
}
.single-news main article header .date {
  color: #916759;
  opacity: 0.7;
  font-size: 12px;
  position: absolute;
  bottom: 5px;
  right: 15px;
}
.single-news main article header .chara {
  right: 10px;
  top: 10px;
}
.single-news main article header .chara div {
  width: 30px;
  height: 30px;
  background-color: #ffedb8;
}
@media screen and (min-width: 768px) {
  .single-news main article {
    width: 90%;
    margin: 0 auto 60px auto;
  }
  .single-news main article .text p {
    font-size: 15px;
  }
  .single-news main article header h1 {
    padding-top: 10px;
    font-size: 18px;
  }
  .single-news main article header .date {
    font-size: 12px;
  }
}

.pagination {
  text-align: center;
  margin: 30px 0;
}
.pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 5px;
}
.pagination li {
  text-align: center;
}
.pagination a, .pagination span {
  display: block;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 3.4vw;
  transition: 0.3s ease;
  background-color: #ffedb8;
  color: #916759;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  font-style: normal;
}
.pagination a:hover, .pagination span:hover {
  color: #fff;
  background-color: #e86356;
}
.pagination .current {
  color: #fff;
  background-color: #e86356;
}
@media screen and (min-width: 768px) {
  .pagination a, .pagination span {
    font-size: 15px;
  }
}

.prof .profile-img {
  width: 80%;
  margin: 0 auto 20px auto;
}
.prof h2 {
  text-align: center;
  font-size: 10vw;
  color: #e86356;
}
.prof ul {
  display: flex;
  width: 40%;
  margin: 10px auto 20px auto;
  justify-content: space-between;
  gap: 20px;
}
.prof ul li {
  width: 30%;
}
.prof .history-text p {
  font-size: 15px;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .prof {
    display: flex;
    justify-content: space-between;
  }
  .prof .profile-img {
    margin: 0;
    width: 21%;
  }
  .prof .profile-img img {
    width: 100%;
    margin: 0 auto 10px auto;
  }
  .prof .history-text {
    width: 75%;
  }
  .prof .history-text .name {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
  }
  .prof .history-text .name h2 {
    text-align: left;
    font-size: 26px;
    line-height: 1;
  }
  .prof .history-text .name ul {
    width: 100px;
    gap: 10px;
    margin: 0 0 0 20px;
  }
}

.works-box {
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .works-box .works-inner {
    display: flex;
    justify-content: space-between;
  }
  .works-box .works-inner .thumblist {
    width: 45%;
  }
  .works-box .works-inner .titlelist {
    width: 50%;
  }
}

.collabstamps {
  padding-top: 40px;
}
.collabstamps .thumblist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.collabstamps .thumblist li {
  width: 31%;
  margin-bottom: 20px;
}
.collabstamps .thumblist li p {
  padding-top: 5px;
  font-size: 3vw;
  line-height: 1.3;
}
.collabstamps .thumblist li span.thumb {
  border: 1px solid #CCC;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1/1;
  width: 100%;
  display: block;
  background-color: #FFF;
  padding: 5px;
}
.collabstamps .thumblist li span.thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .collabstamps .thumblist li {
    width: 15%;
  }
  .collabstamps .thumblist li p {
    font-size: 13px;
  }
}

.books .thumblist, .works .thumblist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.books .thumblist li, .works .thumblist li {
  width: 47%;
  margin-bottom: 20px;
}
.books .thumblist li p, .works .thumblist li p {
  padding-top: 5px;
  font-size: 3vw;
  line-height: 1.3;
}
.books .thumblist li span.thumb, .works .thumblist li span.thumb {
  border: 1px solid #CCC;
  overflow: hidden;
  width: 100%;
  display: block;
  background-color: #FFF;
}
@media screen and (min-width: 768px) {
  .books .thumblist li p, .works .thumblist li p {
    font-size: 13px;
  }
}

@media screen and (min-width: 768px) {
  .books {
    margin-bottom: 60px;
  }
}
.titlelist {
  background-color: #FFF;
  padding: 30px;
  border-radius: 10px;
  list-style-type: disc;
}
.titlelist li {
  padding-bottom: 0.5em;
  font-size: 3vw;
  line-height: 1.3;
  margin-left: 1em;
}
@media screen and (min-width: 768px) {
  .titlelist li {
    font-size: 13px;
  }
}

.page-contact form {
  background-color: #FFF;
  margin-bottom: 40px;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.page-contact form label {
  display: block;
  margin-bottom: 2em;
}
.page-contact form label > span.lb {
  font-size: 4vw;
  padding-bottom: 10px;
  display: block;
}
.page-contact form select {
  border: 3px solid #916759;
  width: 100%;
  display: block;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  font-size: 15px;
  box-sizing: border-box;
  padding: 10px;
  color: #916759;
}
.page-contact form input[type=text],
.page-contact form input[type=email],
.page-contact form textarea {
  border: 3px solid #916759;
  width: 100%;
  display: block;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  font-size: 15px;
  box-sizing: border-box;
}
.page-contact form .btn-set {
  padding-bottom: 20px;
  text-align: center;
}
.page-contact form .btn-set input[type=submit] {
  cursor: pointer;
  background-color: #ffea24;
  color: #916759;
  border-radius: 5px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
  border: none;
}
.page-contact form .wpcf7-spinner {
  position: absolute;
}
.page-contact form input:disabled {
  opacity: 0.1;
  pointer-events: none;
}
.page-contact form .wpcf7-list-item label {
  cursor: pointer;
}
.page-contact form .policycheck .wpcf7-list-item {
  display: block;
}
.page-contact form .policycheck .wpcf7-list-item label {
  padding-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-contact form .policycheck .wpcf7-list-item label input {
  width: 1.2em;
  height: 1.2em;
  border-radius: 4px;
  background-color: #fff;
}
.page-contact form .wpcf7-response-output {
  border: none;
  padding: 10px;
  font-size: 13px;
  background-color: #ffedb8;
}
@media screen and (min-width: 768px) {
  .page-contact form {
    width: 70%;
    padding: 30px;
    margin: 0 auto 40px auto;
  }
  .page-contact form label > span.lb {
    font-size: 15px;
  }
  .page-contact form input[type=text],
.page-contact form input[type=email],
.page-contact form textarea {
    border: 2px solid #916759;
  }
  .page-contact form .policybox {
    font-size: 13px;
  }
  .page-contact form .policybox .policycheck {
    font-size: 15px;
    padding-top: 10px;
  }
}

.privacy-policy .text h2 {
  font-size: 18px;
  font-weight: 500;
  color: #e86356;
}
.privacy-policy .text p, .privacy-policy .text ul {
  margin-top: 1em;
  margin-bottom: 2em;
  font-size: 15px;
  line-height: 1.6;
}
.privacy-policy .text ul {
  margin-left: 2em;
}
.privacy-policy .text ul li {
  list-style-type: disc;
}
/*# sourceMappingURL=common.css.map */