<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
* {
  min-height: 0%;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: 'Koburina Gothic W6 JIS2004';
  color: #000;
  line-height: 2;
}

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

a {
  text-decoration: none;
}

a:hover {
  opacity: .8;
}

ul, li {
  list-style: none;
}

*:focus {
  outline: none;
}

.c-sns {
  display: flex;
  justify-content: space-between;
  width: 182px;
}

.c-sns li {
  width: 40px;
}

.c-sns li a {
  display: block;
}

.c-hbnc {
  width: 90px;
}

.c-btnProf {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #000;
  background-color: #FFE742;
  border: 2px solid #000;
  width: 247px;
  height: 40px;
  padding-right: 15px;
  border-radius: 1000px;
  margin: auto;
  transform: translateX(-30px);
}

.c-btnProf img {
  position: absolute;
  left: -40px;
  bottom: -10px;
  width: 72px;
}

.c-profModal-ttl {
  max-width: 297px;
  margin: 0 auto -38px;
  position: relative;
  z-index: 1;
}

.c-profModal-pic {
  max-width: 400px;
  border: 4px solid #fff;
}

.c-profModal-cnt {
  margin-top: 40px;
}

.c-profModal-cnt p:nth-of-type(1) {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.c-profModal-cnt p:nth-of-type(1) span {
  display: block;
}

.c-profModal-cnt p:nth-of-type(1) span:nth-of-type(1) {
  font-size: 30px;
  margin-right: 20px;
}

@keyframes fadeInBounce {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px);
    /* 少し上に移動 */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    /* 最終位置 */
  }
}

.fade-in-bounce {
  opacity: 0;
  /* 初期状態で透明にする */
  animation: fadeInBounce 0.7s cubic-bezier(0.34, 1.56, 0.64, 1.26) forwards;
}

.fade-in-element {
  opacity: 0;
}

.modaal-container {
  max-width: 700px;
  background-color: #FFE742;
  border: 3px solid #000;
  border-radius: 15px;
}

.modaal-content {
  position: relative;
}

.modaal-content-container {
  max-width: 400px;
  margin: auto;
  padding: 60px 0 80px;
}

.modal-close-custome {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 40px;
  cursor: pointer;
}

.modal-close-custome span {
  display: none;
  font-size: 10px;
  text-align: center;
  margin-top: 5px;
}

.modal-close-custome:hover img {
  opacity: .8;
}

.modaal-wrapper .modaal-close {
  display: none;
}

header {
  height: 100vh;
  width: 100%;
  padding: 50px 40px;
  transition: .4s;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
}

header * {
  transition: .4s;
}

header .header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1266px;
  width: 100%;
  height: calc(100vh - 100px);
  margin: auto;
}

header .header-home {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  width: 95px;
}

header .hsos {
  display: flex;
  justify-content: space-between;
  max-width: 340px;
  width: 100%;
}

header .ico-hsos {
  width: 79%;
}

header .ico-hsos &gt; div {
  display: flex;
  animation: shakeRotate 3s infinite ease-in-out;
}

header .ico-hsos &gt; div:nth-of-type(1) img {
  width: 97.5%;
  margin-left: 2.5%;
}

header .ico-hsos &gt; div:nth-of-type(2) {
  justify-content: flex-end;
  margin: -1px 0 -1px;
}

header .ico-hsos &gt; div:nth-of-type(2) img {
  width: 87%;
  margin-right: 2%;
}

header .ico-hsos &gt; div:nth-of-type(3) img {
  width: 87.7%;
}

@keyframes shakeRotate {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-2deg);
  }
  40% {
    transform: rotate(2deg);
  }
  60% {
    transform: rotate(-2deg);
  }
  80% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

header .txt-hsos {
  display: flex;
  width: 12%;
}

header .menuWrap {
  position: absolute;
  top: 0;
  right: 0;
}

header .menu {
  position: relative;
}

header .menu .hamburger {
  position: relative;
  width: 70px;
  height: 70px;
  border: 3px solid #000;
  border-radius: 1000px;
  background-color: #3BB86F;
  cursor: pointer;
  z-index: 2;
}

header .menu .hamburger:hover {
  opacity: .8;
}

header .menu .hamburger &gt; span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background-color: #000;
  border-radius: 1000px;
  transition: .4s;
}

header .menu .hamburger &gt; span:nth-of-type(1) {
  top: 17px;
}

header .menu .hamburger &gt; span:nth-of-type(2) {
  top: 30px;
}

header .menu .hamburger &gt; span:nth-of-type(3) {
  top: 43px;
}

header .menu .menu-cnt {
  width: 330px;
  padding: 100px 30px;
  background-color: #FFE742;
  position: absolute;
  right: calc(-100vw - 8px);
  top: 0;
  opacity: 0;
  transition: .4s;
  z-index: -1;
}

header .menu .menu-cnt-link {
  text-align: center;
}

header .menu .menu-cnt-link a {
  display: inline-block;
  margin-top: 40px;
}

header .menu .menu-cnt-link a img {
  height: 17px;
  width: auto;
}

header .menu .menu-cnt-link a:nth-of-type(1) {
  margin-top: 0;
}

header .menu .menu-cnt-link a:nth-of-type(3) img {
  height: 19px;
}

header .menu .c-sns {
  margin: 60px auto 50px;
}

header .menu .c-hbnc {
  margin: auto;
}

header .menu.active .menu-cnt {
  right: 0;
  opacity: 1;
  z-index: 1;
}

header .menu.active .hamburger {
  background-color: transparent;
  border-color: transparent;
}

header .menu.active .hamburger &gt; span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 31px;
  left: 16px;
  width: 35px;
}

header .menu.active .hamburger &gt; span:nth-of-type(2) {
  opacity: 0;
}

header .menu.active .hamburger &gt; span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 31px;
  left: 15px;
  width: 35px;
}

header.active {
  height: 100px;
  padding: 20px 40px;
  background-color: rgba(255, 255, 255, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  overflow: visible;
}

header.active .menuWrap {
  top: 50%;
  transform: translateY(-50%);
}

header.active .header-inner {
  align-items: center;
  height: 60px;
}

header.active .hsos {
  max-width: 54px;
}

section.yodo {
  background-color: #3BB86F;
  color: #fff;
  padding: 200px 0 130px;
  margin-top: 100vh;
}

section.yodo .yodo-ttl {
  width: 521px;
  margin: 0 auto 50px;
}

section.yodo &gt; p {
  display: flex;
  justify-content: center;
  padding-bottom: 60px;
  line-height: 2.3;
}

section.yodo .yodo-scroll {
  width: 100%;
  width: 100%;
  height: 240px;
  background: url("/tanoshimi_HSOS/img/bg-scroll.jpg?v2") repeat-x;
  background-size: auto 240px;
  /* 縦幅を100vhに設定し、横幅をautoに設定 */
  background-position: 0%;
  animation: scroll-anim 60s linear infinite;
  margin-top: 150px;
}

@keyframes scroll-anim {
  100% {
    background-position: calc(-100% + 100vw);
  }
}

section.cnt {
  background-color: #87DEFF;
}

section.cnt .cnt-header {
  background-color: #FF7417;
  padding: 20px 30px;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}

section.cnt .cnt-sharp {
  margin: -64px 0 0;
  text-align: center;
}

section.cnt .cnt-sharp img {
  height: 70px;
  width: auto;
}

section.cnt .cnt-txt {
  display: flex;
  align-items: center;
  justify-content: center;
}

section.cnt .cnt-img {
  width: 64px;
}

section.cnt .cnt-ttl {
  margin-left: 40px;
  max-width: 640px;
}

section.cnt .cnt-article {
  padding: 80px 30px 160px;
}

section.cnt .cnt-article .pic {
  display: block;
  max-width: 500px;
  margin: 2rem auto;
  border: 5px solid #fff;
}

section.cnt .cnt-article .caption {
  max-width: 500px;
  margin: -2rem auto 2rem;
  font-family: 'Koburina Gothic W3 JIS2004';
  font-size: 13px;
  text-align: center;
}

section.cnt .cnt-article p:not(.ignore) {
  position: relative;
  padding-left: 70px;
  margin: 2rem auto 0;
  max-width: 466px;
  line-height: 1.75;
}

section.cnt .cnt-article p:not(.ignore):not(.tsuduku)::before {
  content: '___';
  position: absolute;
  top: 0;
  left: 0;
  width: 126px;
  left: -95px;
  text-align: right;
}

section.cnt .cnt-article p:not(.ignore):not([class])::before {
  top: -0.5rem;
}

section.cnt .cnt-article p:not(.ignore).tsukamoto::before {
  content: '塚本';
}

section.cnt .cnt-article p:not(.ignore).staffA::before {
  content: '（スタッフA）';
}

section.cnt .cnt-article p:not(.ignore).staffB::before {
  content: '（スタッフB）';
}

section.cnt .cnt-article p:not(.ignore).staffC::before {
  content: '（スタッフC）';
}

section.cnt .cnt-article p:not(.ignore).staffAhobo::before {
  content: 'ほぼ日スタッフA';
}

section.cnt .cnt-article p:not(.ignore).staffB2::before {
  content: 'スタッフB';
}

section.cnt .cnt-article p:not(.ignore).staffC2::before {
  content: 'スタッフC';
}

section.cnt .cnt-article p:not(.ignore).all::before {
  content: '一同';
}

section.cnt .cnt-article p:not(.ignore).kakomi {
  padding: 60px;
  border: 2px solid;
  max-width: 535px;
  background-color: #FFE742;
  line-height: 1.88;
}

section.cnt .cnt-article p:not(.ignore).kakomi::before {
  content: none;
}

section.cnt .cnt-article p:not(.ignore).kakomi span {
  display: block;
  max-width: 311px;
  margin: 0 auto 60px;
}

section.cnt .cnt-article p a {
  text-decoration: underline;
  color: #000;
}

section.cnt .mokuji {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 150px auto 0;
  max-width: 694px;
}

section.cnt .mokuji a {
  visibility: hidden;
  width: 88px;
}

section.cnt .mokuji a.mokuji-prev img {
  transform: rotate(180deg);
}

section.cnt .mokuji a.show {
  visibility: visible;
}

section.cnt .mokuji p {
  font-size: 12px;
  text-align: center;
  padding: 0 30px;
}

section.prof {
  display: flex;
  justify-content: center;
  background-color: #FF7417;
  padding: 70px 30px;
}

section.prof .prof-ttl {
  width: 261px;
  margin: -100px 0 0 20px;
}

section.prof .prof-img {
  width: 175px;
  margin: 35px auto 30px;
}

section.prof .prof-img img {
  border-radius: 10000px;
}

section.prof .prof-sns {
  justify-content: space-between;
  width: 104px;
  margin: auto;
  transform: translateX(5px);
}

section.prof .prof-sns a:nth-of-type(1) {
  width: 39px;
}

section.prof .prof-sns a:nth-of-type(2) {
  width: 40px;
}

section.prof .prof-sns.pc {
  display: flex !important;
}

section.prof .prof-sns.sp {
  display: none !important;
}

section.prof .prof-sns--only1 {
  justify-content: center;
}

section.prof .prof-name {
  width: 110px;
  margin-bottom: 15px;
}

section.lineup {
  background-color: #FFE742;
  padding: 80px 30px 160px;
}

section.lineup .lineup-header {
  text-align: center;
}

section.lineup .lineup-secTtl {
  width: 253px;
  margin: auto;
}

section.lineup .lineup-secCopy {
  font-size: 24px;
  margin-top: 30px;
}

section.lineup .lineup-cnt {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1150px;
  margin: auto;
}

section.lineup .lineup-cnt a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: calc(100% / 3 - 10px);
  text-align: center;
  margin-top: 80px;
  color: #000;
  opacity: .5;
  pointer-events: none;
}

section.lineup .lineup-cnt a.dummy {
  margin: 0;
  visibility: hidden;
}

section.lineup .lineup-cnt a .lineup-img {
  margin: 0 auto;
}

section.lineup .lineup-cnt a .lineup-no {
  margin: -20px auto 15px;
}

section.lineup .lineup-cnt a .lineup-no img {
  height: 43px;
  width: auto;
}

section.lineup .lineup-cnt a p {
  visibility: hidden;
  min-height: 64px;
}

section.lineup .lineup-cnt a.show {
  opacity: 1;
  pointer-events: all;
}

section.lineup .lineup-cnt a.show:hover {
  opacity: .8;
}

section.lineup .lineup-cnt a.show p {
  visibility: visible;
}

section.lineup .lineup-cnt a:nth-of-type(1) .lineup-img {
  max-width: 172px;
}

section.lineup .lineup-cnt a:nth-of-type(2) .lineup-img {
  max-width: 244px;
}

section.lineup .lineup-cnt a:nth-of-type(3) .lineup-img {
  max-width: 259px;
}

section.lineup .lineup-cnt a:nth-of-type(4) .lineup-img {
  max-width: 245px;
}

section.lineup .lineup-cnt a:nth-of-type(5) .lineup-img {
  max-width: 252px;
}

section.lineup .lineup-cnt a:nth-of-type(6) .lineup-img {
  max-width: 264px;
}

section.lineup .lineup-cnt a:nth-of-type(7) .lineup-img {
  max-width: 354px;
}

section.lineup .lineup-cnt a:nth-of-type(8) .lineup-img {
  max-width: 273px;
}

section.lineup .lineup-cnt a:nth-of-type(9) .lineup-img {
  max-width: 292px;
}

section.lineup .lineup-cnt a:nth-of-type(10) .lineup-img {
  max-width: 180px;
}

section.lineup .lineup-cnt a:nth-of-type(11) .lineup-img {
  max-width: 305px;
}

section.lineup .lineup-cnt a:nth-of-type(12) .lineup-img {
  max-width: 253px;
}

section.lineup .lineup-cnt a:nth-of-type(13) .lineup-img {
  max-width: 277px;
}

section.lineup .lineup-cnt a:nth-of-type(14) .lineup-img {
  max-width: 365px;
}

section.lineup .lineup-cnt a:nth-of-type(15) .lineup-img {
  max-width: 337px;
}

section.lineup .lineup-cnt a:nth-of-type(16) .lineup-img {
  max-width: 291px;
}

footer {
  text-align: center;
  background-color: #CECCC5;
  padding: 50px 30px;
}

footer .footer-staff {
  font-size: 13px;
  font-family: 'Koburina Gothic W3 JIS2004';
}

footer .footer-sns {
  display: flex;
  justify-content: center;
  margin: 30px auto 35px;
}

footer .footer-btns {
  display: flex;
  justify-content: space-between;
  width: 440px;
  margin: auto;
}

footer .footer-btns a {
  display: block;
  width: 200px;
}

footer .c-hbnc {
  margin: 40px auto 0;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 986px) {
  section.lineup .lineup-cnt a p br.sp {
    display: block;
  }
}

@media (max-width: 767px) {
  .c-btnProf {
    transform: translateX(16px);
  }
  .c-profModal-ttl {
    max-width: 224px;
    margin-bottom: -30px;
  }
  .c-profModal-pic {
    max-width: 300px;
    margin: auto;
  }
  .c-profModal-cnt {
    margin-top: 18px;
  }
  .c-profModal-cnt p:nth-of-type(1) {
    display: block;
  }
  .c-profModal-cnt p:nth-of-type(1) span {
    text-align: center;
  }
  .c-profModal-cnt p:nth-of-type(1) span:nth-of-type(1) {
    margin: 0;
    line-height: 1.5;
  }
  .modaal-content-container {
    max-width: calc(400px + 10%);
    padding: 60px 5% 140px;
  }
  .modal-close-custome {
    top: initial;
    right: initial;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
  }
  .modal-close-custome span {
    display: block;
  }
  header .header-inner {
    justify-content: center;
    position: static;
  }
  header .header-home {
    display: none;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
  }
  header .menuWrap {
    position: absolute;
    right: 8px;
    top: 8px;
    height: auto;
  }
  header .menu .hamburger {
    width: 40px;
    height: 40px;
    border-width: 2px;
  }
  header .menu .hamburger &gt; span {
    width: 16px;
    height: 2px;
  }
  header .menu .hamburger &gt; span:nth-of-type(1) {
    top: 11px;
  }
  header .menu .hamburger &gt; span:nth-of-type(2) {
    top: 17px;
  }
  header .menu .hamburger &gt; span:nth-of-type(3) {
    top: 23.5px;
  }
  header .menu .menu-cnt {
    top: -10px;
    width: 100vw;
  }
  header .menu.active .hamburger &gt; span:nth-of-type(1) {
    top: 17.5px;
    left: 8.5px;
    width: 20px;
  }
  header .menu.active .hamburger &gt; span:nth-of-type(3) {
    top: 17.5px;
    left: 8px;
    width: 20px;
  }
  header .menu.active .menu-cnt {
    right: -8px;
  }
  header.active {
    height: 60px;
    padding: 8px 8px 8px 12px;
  }
  header.active .header-inner {
    height: 44.6px;
  }
  header.active .header-home {
    display: flex;
  }
  header.active .hsos {
    max-width: 25px;
  }
  section.yodo {
    padding: 20px 0 100px;
  }
  section.yodo .yodo-ttl {
    max-width: 311px;
    margin-bottom: 20px;
  }
  section.yodo &gt; p {
    padding: 0 5% 60px;
  }
  section.yodo .yodo-scroll {
    height: 145px;
    margin-top: 32px;
    background-size: auto 145px;
  }
  section.cnt .cnt-header {
    padding: 20px 5%;
  }
  section.cnt .cnt-sharp {
    margin: -55px 0 18px;
  }
  section.cnt .cnt-sharp img {
    height: 56px;
  }
  section.cnt .cnt-img {
    display: none;
  }
  section.cnt .cnt-ttl {
    max-width: 317px;
    width: 100%;
    margin-left: 0;
  }
  section.cnt .cnt-article {
    padding: 40px 5% 80px;
  }
  section.cnt .cnt-article .caption {
    font-size: 12px;
  }
  section.cnt .cnt-article p:not(.ignore) {
    padding-left: 0;
  }
  section.cnt .cnt-article p:not(.ignore):not(.tsuduku)::before {
    position: static;
    display: block;
    width: auto;
    text-align: left;
  }
  section.cnt .cnt-article p:not(.ignore):not([class])::before {
    padding-bottom: 0.5rem;
  }
  section.cnt .cnt-article p:not(.ignore).kakomi {
    padding: 40px 20px;
  }
  section.cnt .cnt-article p:not(.ignore).kakomi span {
    margin-bottom: 40px;
  }
  section.cnt .mokuji {
    position: relative;
    height: 100px;
    margin-top: 3rem;
    align-items: flex-end;
  }
  section.cnt .mokuji a {
    width: 58px;
  }
  section.cnt .mokuji p {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0;
  }
  section.prof {
    display: block;
    padding: 70px 5% 60px;
  }
  section.prof .prof-ttl {
    width: 203px;
    margin: -100px auto 0;
  }
  section.prof .prof-img {
    margin: 28px auto 22px;
  }
  section.prof .prof-sns {
    margin-top: 30px;
  }
  section.prof .prof-sns a:nth-of-type(1) {
    width: 34px;
  }
  section.prof .prof-sns a:nth-of-type(2) {
    width: 35px;
  }
  section.prof .prof-sns.pc {
    display: none !important;
  }
  section.prof .prof-sns.sp {
    display: flex !important;
  }
  section.prof .prof-name {
    margin: 0 auto 15px;
  }
  section.lineup {
    padding: 60px 5% 120px;
  }
  section.lineup .lineup-secTtl {
    width: 195px;
  }
  section.lineup .lineup-secCopy {
    font-size: 16px;
    margin-top: 13px;
  }
  section.lineup .lineup-cnt a {
    width: 50%;
    margin-top: 50px;
  }
  section.lineup .lineup-cnt a .lineup-no {
    margin: -20px auto 8px;
  }
  section.lineup .lineup-cnt a .lineup-no img {
    height: 30px;
  }
  section.lineup .lineup-cnt a.show p {
    min-height: 64px;
  }
  section.lineup .lineup-cnt a:nth-of-type(1) .lineup-img {
    max-width: 113px;
  }
  section.lineup .lineup-cnt a:nth-of-type(2) .lineup-img {
    max-width: 150px;
  }
  section.lineup .lineup-cnt a:nth-of-type(3) .lineup-img {
    max-width: 134px;
  }
  section.lineup .lineup-cnt a:nth-of-type(4) .lineup-img {
    max-width: 150px;
  }
  section.lineup .lineup-cnt a:nth-of-type(5) .lineup-img {
    max-width: 150px;
  }
  section.lineup .lineup-cnt a:nth-of-type(6) .lineup-img {
    max-width: 150px;
  }
  section.lineup .lineup-cnt a:nth-of-type(7) .lineup-img {
    max-width: 150px;
  }
  section.lineup .lineup-cnt a:nth-of-type(8) .lineup-img {
    max-width: 150px;
  }
  section.lineup .lineup-cnt a:nth-of-type(9) .lineup-img {
    max-width: 150px;
  }
  section.lineup .lineup-cnt a:nth-of-type(10) .lineup-img {
    max-width: 121px;
  }
  section.lineup .lineup-cnt a:nth-of-type(11) .lineup-img {
    max-width: 150px;
  }
  section.lineup .lineup-cnt a:nth-of-type(12) .lineup-img {
    max-width: 150px;
  }
  section.lineup .lineup-cnt a:nth-of-type(13) .lineup-img {
    max-width: 150px;
  }
  section.lineup .lineup-cnt a:nth-of-type(14) .lineup-img, section.lineup .lineup-cnt a:nth-of-type(15) .lineup-img, section.lineup .lineup-cnt a:nth-of-type(16) .lineup-img {
    max-width: 150px;
  }
  footer {
    padding: 60px 5%;
  }
  footer .footer-btns {
    display: block;
    width: 100%;
  }
  footer .footer-btns a {
    margin: 15px auto 0;
  }
  footer .footer-btns a:nth-of-type(1) {
    margin-top: 0;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

@media (max-width: 400px) {
  section.lineup .lineup-cnt a p {
    font-size: 3.5vw;
  }
}
</pre></body></html>