@charset "UTF-8";
html {
  font-size: 10px;
  font-family: "ta-pop-tomo", "Yomogi", "Yusei Magic", sans-serif;
  font-weight: 300;
  color: #1b420d;
  line-height: 1.85;
  overflow-x: hidden;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background-color: #ffe99d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 1.2s;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.loading__logo {
  animation: logo_rotate linear infinite 2s;
  width: 60px;
}

@keyframes logo_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fade {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
}

.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

.bg_illust {
  position: relative;
}
.bg_illust .flower {
  width: 20%;
  min-width: 200px;
  max-width: 375px;
}
.bg_illust .yuzu {
  width: 25%;
  min-width: 250px;
  max-width: 425px;
}
.bg_illust .megaphone {
  width: 17.5%;
  min-width: 250px;
  max-width: 350px;
}
.bg_illust .paper {
  width: 17.5%;
  min-width: 250px;
  max-width: 350px;
}
.bg_illust .star {
  width: 20%;
  min-width: 250px;
  max-width: 350px;
}
.bg_illust .say {
  width: 20%;
  min-width: 250px;
  max-width: 350px;
}
.bg_illust .keyframe1 {
  position: fixed;
  top: 120px;
  left: 40px;
  z-index: 1;
  transform-origin: center;
  animation: l_illust 2.5s step-start infinite;
}
@keyframes l_illust {
  0%, 100% {
    transform: rotate(30deg);
  }
  50% {
    transform: rotate(-20deg);
  }
}
.bg_illust .keyframe2 {
  position: fixed;
  bottom: 50px;
  right: 40px;
  z-index: 1;
  transform-origin: center;
  animation: r_illust 2.5s step-start infinite;
}
@keyframes r_illust {
  0%, 100% {
    transform: rotate(-30deg);
  }
  50% {
    transform: rotate(20deg);
  }
}

h1,
h2,
h3,
h4,
a,
strong,
.contact p,
.dateAndTag p,
.comment,
.prof_top_para,
.leader_point,
dt,
label,
.submit,
.return,
.warning,
.other_link li,
.pagenation button {
  font-family: "Yusei Magic", "ta-pop-tomo", "Yomogi", sans-serif;
  font-weight: 500;
}

a {
  color: #1b420d;
  transition: 0.4s;
}
a:hover {
  color: #328416;
}

.sp_view {
  display: none;
}

.pc_none {
  display: none;
}

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

body {
  margin: 0;
  background-color: #fffceb;
  overflow-x: hidden;
}

main {
  min-height: calc(100vh - 90px);
  margin-top: 100px;
  overflow: hidden;
  background-image: url("../img/illust/yuzu_repeat.PNG");
  background-size: 175px;
  background-color: rgba(255, 252, 235, 0.5);
  background-blend-mode: lighten;
  background-repeat: repeat;
}
main .linear-gradient {
  position: absolute;
  display: inline-block;
  content: "";
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(to bottom, rgb(255, 255, 255) 75%, rgba(255, 255, 255, 0));
}

.top_main {
  margin-top: 0;
}

.top_padding {
  padding-top: 0;
}

section {
  padding: 120px 0;
  position: relative;
  z-index: 10;
}
section:last-child {
  padding-bottom: 200px;
}

.container {
  width: 80%;
  max-width: fit-content;
  margin: 0 auto;
}
.container .live_gallery {
  width: 100%;
  max-width: 1100px;
}

.sub_sec {
  padding: 0 0 30px;
}
.sub_sec:last-child {
  padding-bottom: 0;
}

figure {
  margin: 0 0 20px;
}

header {
  position: fixed;
  padding-bottom: 10px;
  z-index: 100;
  top: 0;
  left: 0;
  box-sizing: border-box;
  background-color: rgba(255, 202, 16, 0.75);
  width: 100%;
  /* チェックボックスを非表示にする */
}
header .container {
  padding: 20px 0;
  width: 90%;
  max-width: 1500px;
  display: flex;
  gap: 30px;
  align-items: center;
}
header img {
  width: 50px;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
  transition: 0.4s;
}
header img:hover {
  filter: none;
}
header .nav {
  margin-left: auto;
}
header .drawer_hidden {
  display: none;
}
header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
header ul {
  display: flex;
  justify-content: right;
  width: fit-content;
  margin: 0;
  gap: 20px;
}
header ul a {
  text-decoration: none;
}
header ul li {
  position: relative;
  font-size: 2rem;
  border-radius: 0;
  box-shadow: none;
  transition: 0.4s;
}
header ul li::after {
  content: ""; /* コンテンツを追加 */
  width: 100%; /* 線の幅 */
  height: 2px; /* 線の高さ */
  background-color: #328416; /* 線の色 */
  position: absolute; /* position: relative;からの線の絶対位置 */
  bottom: 0; /* 線の位置 */
  left: 0; /* 線の位置 */
  transform: scale(0, 1); /* 線のx軸の長さを0 */
  transition: 0.4s; /* 要素の変形する時間*/
  transform-origin: left top; /* 要素の座標の原点を設定*/
}
header ul li:hover {
  box-shadow: none;
  color: #328416;
}
header ul li:hover::after {
  transform: scale(1, 1); /* 線のx軸の長さを1 */
}
header .other_link {
  gap: 30px;
}
header .other_link li {
  position: relative;
  text-align: center;
  cursor: pointer;
}
header .other_link li::after {
  content: none;
}
header .other_link li p {
  white-space: nowrap;
  position: absolute;
  margin: 0;
  font-size: 1.3rem;
  left: 50%;
  transform: translateX(-50%);
}

.fv {
  margin-top: 0;
  position: relative;
  max-width: 100%;
  min-width: 600px;
  height: 100vh;
  z-index: 10;
  overflow: hidden;
}
.fv .charcter {
  position: absolute;
  width: calc(50% - 15vh);
  min-width: 625px;
  max-width: 650px;
  top: 53%;
  right: 5vw;
  transform: translate(0, -50%);
  filter: drop-shadow(15px 15px 0 #ffca10);
}
.fv h1 {
  position: absolute;
  top: 75px;
  left: 6vw;
  width: 35vw;
  min-width: 500px;
  max-width: 600px;
  white-space: inherit;
}
.fv h1 img {
  width: 100%;
  filter: drop-shadow(15px 15px 0 #ffadd0);
}
.fv svg {
  position: relative;
  max-width: 100%;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  scale: 1.2;
  min-height: 200px;
  max-height: fit-content;
  overflow: hidden;
}
.fv svg path {
  opacity: 0.45;
}
.fv .other_link {
  position: absolute;
  bottom: 0;
  left: 0;
  width: fit-content;
  margin: 0;
}
.fv .other_link:last-child {
  padding-bottom: 15px;
}
.fv .other_link li {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 60px;
  width: fit-content;
  padding: 0 30px 15px;
  cursor: pointer;
}
.fv .other_link li p {
  font-size: 1.6rem;
  margin: 0;
  transition: 0.4s;
}
.fv .other_link li img {
  width: 70px;
  transition: 0.4s;
  filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.3));
}
.fv .other_link li:hover img {
  filter: none;
}
.fv .other_link li:hover p {
  color: #328416;
}

.more_view {
  text-decoration: none;
  position: relative;
  display: block;
  font-size: 2rem;
  width: fit-content;
  margin: 20px 0 20px auto;
  text-align: right;
  z-index: 5;
}
.more_view::before {
  position: absolute;
  content: "";
  background-color: #ffca10;
  width: 25px;
  height: 25px;
  box-shadow: 0 0 10px 10px #ffca10;
  opacity: 0;
  border-radius: 100px;
  top: 7.5px;
  left: -7.5px;
  z-index: -1;
  transition: 0.8s;
}
.more_view:hover::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  opacity: 0.6;
  border-radius: 100px;
  top: 7.5px;
  left: 65px;
  z-index: -1;
}

.arch_box {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.title_arch {
  font-size: 3.2rem;
  position: relative;
  z-index: 10;
}
.title_arch::before {
  display: block;
  position: absolute;
  top: 32.5%;
  left: -65px;
  content: "";
  background-image: url(../img/illust/title_left.png);
  width: 50px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
}
.title_arch::after {
  display: block;
  position: absolute;
  top: 32.5%;
  right: -65px;
  content: "";
  background-image: url(../img/illust/title_right.png);
  width: 50px;
  height: 35px;
  margin-bottom: -3px;
  background-size: contain;
  background-repeat: no-repeat;
}

h1 {
  font-size: 3.6rem;
  text-align: center;
  white-space: pre-wrap;
}

h2 {
  font-size: 2.8rem;
  text-align: center;
}

h3 {
  font-size: 2.4rem;
  text-align: center;
}

p {
  font-size: 1.8rem;
}

.intro_para {
  position: relative;
  max-width: 900px;
  margin: 20px auto;
  font-size: 2rem;
  z-index: 10;
}

.width_narrow {
  max-width: 600px;
  margin: 20px auto;
}

.prof_top_para {
  font-size: 2.4rem;
  margin-bottom: 100px;
  position: relative;
  z-index: 10;
  text-align: center !important;
}

img {
  vertical-align: middle;
}

.top_prof_sec {
  position: relative;
  margin-top: 200px;
  margin-bottom: 100px;
}
.top_prof_sec::before {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../img/prof_top_accent.svg);
  width: 700px;
  height: 205px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
.top_prof_sec::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../img/prof_btm_accent.svg);
  width: 100%;
  height: 100%;
  bottom: -99.9%;
  left: 50%;
  transform: translateX(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}

.profile_sec {
  padding: 25vh 0;
  background-color: #ffc3dc;
}
.profile_sec h2 {
  margin-top: 0;
}
.profile_sec .container {
  display: flex;
  gap: 150px;
  width: 90%;
  max-width: 1100px;
}
.profile_sec img {
  width: 100%;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
.profile_sec img:hover {
  box-shadow: none;
}

.to_footer {
  padding-bottom: 200px;
}

.contact_accent {
  margin-top: 0;
}
.contact_accent::before {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../img/contact_accent.svg);
  width: 500px;
  height: 265px;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}

.ftr_arch {
  width: 100%;
  padding: 120px 100px 80px;
  border-top-left-radius: 1500px 300px;
  border-top-right-radius: 1500px 300px;
  margin-left: -100px;
  margin-right: -100px;
}

footer {
  position: relative;
  background-color: #ffd43d;
  text-align: center;
  padding: 120px 0 80px;
  z-index: 10;
}
footer a {
  text-decoration: none;
}
footer .container {
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  text-align: left;
}
footer h2 {
  margin-top: 0;
  text-align: left;
}
footer .contact_sec {
  padding: 0;
}
footer .contact_para {
  margin-bottom: 30px;
}
footer .contact_container {
  max-width: 650px;
}
footer .contact_container .contact {
  width: fit-content;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
footer .contact_container .contact:last-child {
  margin-bottom: 0;
}
footer .contact_container .contact:hover img {
  filter: none;
}
footer .contact_container img {
  width: 110px;
  transition: 0.4s;
  filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.3));
}
footer .contact_container p {
  font-size: 2rem;
  text-align: left;
}
footer .link_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1100px;
  margin: 120px auto;
}
footer .link_container .scroll_top {
  position: absolute;
  width: 70px;
  bottom: 42.5px;
  right: 160px;
  filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.3));
  transition: 0.4s;
}
footer .link_container .scroll_top:hover {
  filter: none;
}
footer .other_link {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 700px;
}
footer .other_link li {
  position: relative;
  min-width: 0;
  cursor: pointer;
}
footer .other_link li img {
  width: 50px;
  transition: 0.4s;
  filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.3));
}
footer .other_link li p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 1.3rem;
  margin: 0;
  transition: 0.4s;
}
footer .other_link li:hover img {
  box-shadow: none;
  filter: none;
}
footer .other_link li:hover p {
  color: #328416;
}
footer .page_link {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 700px;
  font-size: 1.8rem;
  font-weight: bold;
}
footer .page_link li {
  border-radius: 0;
  min-width: 0;
  box-shadow: none;
}
footer .page_link li:hover {
  box-shadow: none;
}
footer strong {
  font-size: 1.2rem;
}

.top_container {
  position: relative;
  text-align: center;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto auto;
  z-index: 10;
}
.top_container img {
  width: 250px;
}
.top_container p {
  line-height: 2;
  text-align: left;
}
.top_container .news_top {
  width: 10vw;
  min-width: 125px;
  max-width: 150px;
  margin: 30px 0;
}

.width_none {
  width: auto;
}

#news_view {
  width: 90%;
  max-width: 800px;
  min-width: 250px;
  margin-left: auto;
  margin-right: auto;
}
#news_view section {
  padding-top: 20px;
}
#news_view section ul {
  padding-left: 20px;
}
#news_view section li {
  list-style-type: disc;
  font-size: 1.8rem;
  margin: 20px 0;
}
#news_view img {
  width: 60%;
  max-width: 450px;
  height: 60%;
  border-radius: 25px;
  max-height: 500px;
  object-fit: cover;
}
#news_view iframe {
  border-radius: 25px;
}

#news-title {
  text-align: left;
  font-size: 3.2rem;
  margin: 5px;
  margin-left: 0;
}

.dateAndTag {
  display: flex;
  align-items: center;
  margin-top: 2px;
}
.dateAndTag p {
  font-size: 1.8rem;
  margin: 0 7.5px;
}
.dateAndTag p:first-child {
  margin-left: 0;
  margin-right: 7.5px;
}
.dateAndTag p span {
  font-size: 1.2rem;
}
.dateAndTag .post-tag,
.dateAndTag .pickup {
  padding: 1px 0;
  background-color: #ffca10;
  border-radius: 100px;
  font-size: 1.2rem;
}
.dateAndTag .post-tag {
  text-align: center;
  min-width: 55px;
  padding: 1px 5px;
}
.dateAndTag .pickup {
  background-color: #328416;
  min-width: 90px;
  color: #fff;
  text-align: center;
}

.article-sec {
  margin: 0;
  padding: 0;
}
.article-sec .post-img {
  width: 100%;
  height: 25vw;
  object-fit: cover;
}
.article-sec:last-child {
  padding: 0;
}

.img_container {
  overflow: hidden;
}

.top_news {
  min-height: 0 !important;
}

.news_list {
  width: 90%;
  max-width: 1100px;
  min-height: calc(100vh - 200px);
  margin: 0 auto;
  padding-top: 200px;
}
.news_list .container {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  gap: 80px;
  width: 100%;
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.65);
  box-shadow: 10px 10px 20px rgba(255, 202, 16, 0.5);
  padding: 25px 40px 40px;
  border-radius: 40px;
  margin: 0;
}
.news_list .title_block {
  min-width: fit-content;
}
.news_list .title_block h2 {
  font-size: 3.2rem;
  margin-top: 0;
  text-align: left;
}
.news_list .title_block .more_view {
  margin: 20px auto 20px 0;
}
.news_list h1 {
  margin: 0;
  text-align: left;
  font-size: 3rem;
}
.news_list .top_container {
  min-width: fit-content;
}
.news_list ul {
  width: 100%;
  max-width: 900px;
  min-width: 450px;
  margin: 0;
}
.news_list ul li {
  position: relative;
  box-sizing: border-box;
  min-width: 250px;
  transition: 0.4s;
  list-style: none;
  overflow: hidden;
  margin: 0;
  padding: 20px 0;
}
.news_list ul li a {
  text-decoration: none;
  display: flex;
  align-items: start;
  gap: 7.5px;
}
.news_list ul li::before {
  content: ""; /* コンテンツを追加 */
  width: 100%; /* 線の幅 */
  height: 2px; /* 線の高さ */
  background: #1b420d;
  position: absolute; /* position: relative;からの線の絶対位置 */
  bottom: 0; /* 線の位置 */
  left: 0; /* 線の位置 */
  transform-origin: left top; /* 要素の座標の原点を設定*/
}
.news_list ul li::after {
  content: ""; /* コンテンツを追加 */
  width: 100%; /* 線の幅 */
  height: 2px; /* 線の高さ */
  background: #ffca10;
  position: absolute; /* position: relative;からの線の絶対位置 */
  bottom: 0; /* 線の位置 */
  left: 0; /* 線の位置 */
  transform: scale(0, 1); /* 線のx軸の長さを0 */
  transition: 0.4s; /* 要素の変形する時間*/
  transform-origin: left top; /* 要素の座標の原点を設定*/
}
.news_list ul li:hover::after {
  transform: scale(1, 1); /* 線のx軸の長さを1 */
}
.news_list ul li:hover h2, .news_list ul li:hover h3 {
  letter-spacing: 0.05rem;
}
.news_list ul li h2,
.news_list ul li h3 {
  font-size: 1.8rem;
  text-align: left;
  margin: 0;
  transition: 0.4s;
}
.news_list ul li button {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
  opacity: 0;
}
.news_list .pagenation {
  display: flex;
  position: relative;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 10px;
  padding: 0 10px;
}
.news_list .pagenation button {
  border: none;
  border-radius: 100px;
  width: 35px;
  height: 35px;
  padding: 0;
  font-size: 1.6rem;
  background-color: #fff;
  color: #1b420d;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  transition: 0.4s;
}
.news_list .pagenation button:hover {
  box-shadow: none;
}

.mg_top_80 {
  padding-top: 80px;
}

.mg_top_narrow {
  padding-top: 100px;
}

.mg_top_none {
  margin-top: 0 !important;
}

.prof_sec {
  font-size: 1.6rem;
  padding-top: 0;
}
.prof_sec .container {
  width: 90%;
  min-width: 750px;
  max-width: 800px;
}
.prof_sec .container img {
  width: calc(30% + 20vw);
  min-width: 600px;
  max-width: 650px;
  height: calc(100px + 17.5vw);
  min-height: 385px;
  max-height: 450px;
  object-fit: cover;
  border-radius: 30px;
}

.gallery_sec p,
.gallery_sec .live_sec {
  max-width: 1100px;
  margin: 0 auto;
}
.gallery_sec p {
  text-align: center;
}
.gallery_sec h3 {
  display: flex;
  gap: 10px;
  text-align: left;
  max-width: 1100px;
  margin: 20px auto;
}
.gallery_sec h3::before {
  content: "";
  display: block;
  background-image: url(../img/illust/yuzu_icon.png);
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
}
.gallery_sec .container {
  width: 100%;
}
.gallery_sec .mov_sec {
  /* 前へ次への矢印カスタマイズ */
  /* 前へ次への矢印カスタマイズ */
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
  /* 画像サイズ調整 */
}
.gallery_sec .mov_sec .swiper {
  padding: 0 20px;
}
.gallery_sec .mov_sec .swiper-wrapper {
  align-items: stretch;
}
.gallery_sec .mov_sec .swiper-slide {
  height: auto;
}
.gallery_sec .mov_sec .swiper_contents {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.65);
  box-shadow: 5px 5px 20px rgba(255, 202, 16, 0.5);
  border-radius: 30px;
  margin-bottom: 25px;
}
.gallery_sec .mov_sec .swiper_contents iframe {
  width: 100%;
  height: calc(90px + 10vw);
  max-height: 250px;
  border-radius: 30px 30px 0 0;
}
.gallery_sec .mov_sec .swiper_contents h4 {
  font-size: 1.8rem;
  margin: 0;
  padding: 10px 20px 15px;
  white-space: pre-wrap;
  flex-grow: 1;
}
.gallery_sec .mov_sec .head_container {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery_sec .mov_sec .head_container h3 {
  text-align: left;
  margin: 20px 0;
}
.gallery_sec .mov_sec .swiper-button-prev,
.gallery_sec .mov_sec .swiper-button-next {
  height: 50px;
  width: 50px;
}
.gallery_sec .mov_sec .swiper-button-prev {
  left: 20px;
}
.gallery_sec .mov_sec .swiper-button-next {
  right: 20px;
}
.gallery_sec .mov_sec .swiper-button-prev::after,
.gallery_sec .mov_sec .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}
.gallery_sec .mov_sec .swiper-button-prev::after {
  background-image: url(../img/illust/mov_prev.png);
}
.gallery_sec .mov_sec .swiper-button-next::after {
  background-image: url(../img/illust/mov_next.png);
}
.gallery_sec .mov_sec .swiper-slide img {
  height: auto;
  width: 100%;
}

.gallery_block {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  gap: 80px;
  margin: 0 auto 120px;
  max-width: 1000px;
}

.gallery_container {
  display: flex;
  justify-content: left;
  width: fit-content;
  margin: 0 0 30px;
  gap: 50px;
  cursor: pointer;
}
.gallery_container h2 {
  font-size: 2.4rem;
  text-align: left;
  margin: 0 0 5px;
  max-width: fit-content;
}
.gallery_container img {
  width: 35%;
  height: 35%;
  max-width: 150px;
  border-radius: 999px;
  transition: 0.4s;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
.gallery_container p {
  margin: 0;
  font-size: 1.8rem;
}
.gallery_container:hover img {
  box-shadow: none;
}

.mov {
  width: 100%;
  padding: 200px 100px;
  background-color: #ffc3dc;
  border-top-left-radius: 1300px 300px;
  border-top-right-radius: 1300px 300px;
  border-bottom-left-radius: 1300px 300px;
  border-bottom-right-radius: 1300px 300px;
  margin-left: -100px;
  margin-right: -100px;
}
.mov .container {
  max-width: 1100px;
  min-width: 960px;
  margin: -50px auto -15px;
}

#mov_gallery {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
#mov_gallery li {
  min-width: 300px;
  border-radius: 20px;
  max-width: none;
  background-color: #ffebf3;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  transition: 0.4s;
  cursor: pointer;
}
#mov_gallery li:hover {
  box-shadow: none;
}
#mov_gallery iframe {
  width: 100%;
  height: 200px;
  border-radius: 20px 20px 0 0;
}
#mov_gallery .mov_title {
  font-size: 1.4rem;
  white-space: pre-wrap;
  text-align: left;
  padding: 0 10px;
}

.radius {
  position: relative;
  padding: 25vh 40px;
  border-top-left-radius: 1250px 100px;
  border-top-right-radius: 1250px 100px;
  border-bottom-left-radius: 1250px 100px;
  border-bottom-right-radius: 1250px 100px;
  margin-left: -40px;
  margin-right: -40px;
}
.radius::before {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url("../img/mov_bg.png");
  background-size: contain;
  vertical-align: middle;
  width: calc(200px + 20vw);
  height: calc(200px + 20vw);
  top: 50%;
  left: 52.5%;
  transform: translate(-50%, -50%);
}
.radius .container {
  position: relative;
  margin: -50px auto -15px;
  max-width: 1000px;
  z-index: 5;
}
.radius .margin_wide {
  width: 80%;
  min-width: 800px;
  margin: 50px auto 60px;
}
.radius h2 {
  margin-top: 0;
}
.radius .channel_block {
  width: 100%;
}

.leader {
  text-align: center;
}
.leader .leader_point {
  margin: 30px 0 60px;
}
.leader .leader_point p {
  font-size: 4rem;
  line-height: 1;
}

.lead_txt {
  font-size: 2rem;
  margin-bottom: 50px;
}

.channel_block {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 1000px;
  margin: 30px auto 0;
}
.channel_block a {
  text-decoration: none;
}
.channel_block .channel_container {
  display: block;
  text-align: center;
  width: fit-content;
  cursor: pointer;
}
.channel_block .channel_container img {
  min-width: 140px;
  width: 25vw;
  max-width: 200px;
  border-radius: 999px;
  transition: 0.4s;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
.channel_block .channel_container .txt_container {
  width: fit-content;
}
.channel_block .channel_container h3 {
  font-size: 2.4rem;
  margin: 20px 0 5px;
}
.channel_block .channel_container p {
  text-align: left;
  margin: 0;
  font-family: "ta-pop-tomo", "Yomogi", "Yusei Magic", sans-serif;
}
.channel_block .channel_container:hover img {
  box-shadow: none;
}

#live_gallery,
#top_live_gallery {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
#live_gallery .img_container,
#top_live_gallery .img_container {
  width: 100%;
  height: calc(20vw + 50px);
  min-height: 250px;
  max-height: 320px;
  border-radius: 15px;
  transition: 0.4s;
  cursor: pointer;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
#live_gallery .img_container:hover,
#top_live_gallery .img_container:hover {
  box-shadow: none;
}
#live_gallery .img_container:hover .live_photo,
#top_live_gallery .img_container:hover .live_photo {
  transform: scale(1.1);
}
#live_gallery .live_photo,
#top_live_gallery .live_photo {
  width: 100%;
  object-fit: cover;
  transition: 0.4s;
}

#top_live_gallery {
  width: 100%;
}

#overlay,
#top_overlay {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 999;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
}

.modal_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  width: fit-content;
  transition: 0.4s;
}
.modal_container img {
  width: 600px;
  height: calc(100vh - 250px);
  border-radius: 30px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}
.modal_container button {
  display: block;
  appearance: none;
  -webkit-appearance: none;
  margin-left: auto;
  font-size: 3.6rem;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  padding: 0;
  border: none;
  border-radius: 100px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  background-color: #ffca10;
  color: #328416;
  transition: 0.4s;
}
.modal_container button:hover {
  background-color: #ebb800;
}

#overlay.is_open,
#top_overlay.is_open {
  opacity: 1;
  visibility: visible;
}

.latest_meigen {
  padding: 0 0;
}
.latest_meigen h2 {
  margin-bottom: 50px;
}
.latest_meigen #latest_list {
  width: 90%;
  max-width: 600px;
  min-width: 300px;
  margin: 0 auto;
}
.latest_meigen #latest_list li .meigen {
  position: relative;
  font-size: 2rem;
  white-space: pre-wrap;
  text-align: left;
  margin: 0;
  padding: 22.5px 15px 10px;
  border: solid 3px #ffca10;
  border-radius: 15px;
  background-color: #fff;
}
.latest_meigen #latest_list li .meigen::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 35px;
  height: 40px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../img/illust/yuzu_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.latest_meigen #latest_list li p {
  margin: 5px 0 0;
  white-space: pre-wrap;
}
.latest_meigen #latest_list li .comment {
  margin-top: 20px;
}

.meigen_sec h2,
.meigen_sec p {
  margin-bottom: 50px;
}
.meigen_sec a {
  display: block;
  margin: 0 auto;
  width: 45%;
}
.meigen_sec a img {
  width: 100%;
  border-radius: 40px;
  transition: 0.4s;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
.meigen_sec a img:hover {
  box-shadow: none;
}
.meigen_sec .container {
  width: 90%;
  max-width: 1100px;
  min-width: 400px;
  margin: 0 auto;
}
.meigen_sec #meigen_list,
.meigen_sec #meigen_prof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 80px;
}
.meigen_sec #meigen_list li .meigen,
.meigen_sec #meigen_prof li .meigen {
  position: relative;
  font-size: 2rem;
  white-space: pre-wrap;
  text-align: left;
  margin: 0;
  padding: 22.5px 15px 10px;
  border: solid 3px #1b420d;
  border-radius: 15px;
  background-color: #fff;
}
.meigen_sec #meigen_list li .meigen::after,
.meigen_sec #meigen_prof li .meigen::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 35px;
  height: 40px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../img/illust/yuzu_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.meigen_sec #meigen_list li p,
.meigen_sec #meigen_prof li p {
  margin: 5px 0 0;
  white-space: pre-wrap;
}
.meigen_sec #meigen_list li .comment,
.meigen_sec #meigen_prof li .comment {
  margin-top: 20px;
}

.contact_block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  gap: 80px;
  margin: 0 auto 320px;
  max-width: 1000px;
}
.contact_block a {
  text-decoration: none;
}

.x_container {
  position: relative;
  display: flex;
  justify-content: left;
  width: fit-content;
  margin: 0 0 30px;
  gap: 50px;
  cursor: pointer;
  z-index: 10;
}
.x_container h2 {
  font-size: 2.4rem;
  text-align: left;
  margin: 0 0 5px;
  max-width: fit-content;
}
.x_container img {
  width: 35%;
  height: 35%;
  max-width: 150px;
  border-radius: 999px;
  transition: 0.4s;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
.x_container p {
  margin: 0;
  font-size: 1.8rem;
  font-family: "ta-pop-tomo", "Yomogi", "Yusei Magic", sans-serif;
}
.x_container:hover img {
  box-shadow: none;
}

.submit_btn {
  width: 70%;
  margin: 0 auto !important;
}

.submit {
  display: block;
  box-sizing: border-box;
  background-color: #328416;
  color: #fff;
  border: solid 3px #328416;
  border-radius: 100px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  transition: 0.4s;
  font-size: 2.4rem;
  width: 100%;
  max-width: 450px;
  margin: 50px auto 0;
  padding: 10px;
  line-height: 1.85;
}
.submit:hover {
  box-shadow: none;
}

.return {
  display: block;
  box-sizing: border-box;
  background-color: #fff;
  color: #1b420d;
  border: solid 3px #ffca10;
  border-radius: 100px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  transition: 0.4s;
  font-size: 2.4rem;
  width: 70%;
  max-width: 450px;
  margin: 50px auto 0;
  padding: 10px;
  line-height: 1.85;
}
.return:hover {
  box-shadow: none;
}

.back_btn {
  display: block;
  box-sizing: border-box;
  background-color: #328416;
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  text-align: center;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  transition: 0.4s;
  font-size: 2.4rem;
  width: 70%;
  max-width: 450px;
  margin: 50px auto 0;
  padding: 10px;
}
.back_btn:hover {
  box-shadow: none;
  color: #fff;
}

.contact_form {
  background-color: #ffd43d;
}
.contact_form .container {
  width: 100%;
  max-width: 750px;
}
.contact_form p {
  margin: 25px 0 5px;
}
.contact_form label {
  display: block;
  font-size: 2rem;
  margin: 5px 0;
  width: fit-content;
}
.contact_form .required {
  position: relative;
}
.contact_form .required::after {
  position: absolute;
  content: "必須";
  background-color: rgb(220, 0, 0);
  color: #fff;
  border-radius: 100px;
  font-size: 1.6rem;
  width: 60px;
  line-height: 1.85;
  text-align: center;
  top: calc(50% + 1px);
  right: -70px;
  transform: translate(0, -50%);
}
.contact_form .voluntary {
  position: relative;
}
.contact_form .voluntary::after {
  position: absolute;
  content: "任意";
  background-color: #328416;
  color: #fff;
  border-radius: 100px;
  font-size: 1.6rem;
  width: 60px;
  line-height: 1.85;
  text-align: center;
  top: calc(50% + 1px);
  right: -70px;
  transform: translate(0, -50%);
}
.contact_form .text_input {
  width: 100%;
  box-sizing: border-box;
  padding: 5px 10px;
  border-radius: 10px;
  border: solid 2px #1b420d;
  font-size: 1.8rem;
  font-family: "ta-pop-tomo", "Yomogi", "Yusei Magic", sans-serif;
  line-height: 1.85;
  outline: none;
  transition: 0.4s;
  color: #1b420d;
}
.contact_form .text_input:focus {
  border-color: #328416;
}
.contact_form #message {
  height: 250px;
  border-radius: 15px;
}
.contact_form .notes {
  font-size: 1.4rem;
  margin-top: 10px;
}
.contact_form .warning {
  font-size: 1.6rem;
  color: rgb(220, 0, 0);
}

.confirm {
  padding-top: 50px;
}
.confirm .container {
  width: 100%;
  max-width: 750px;
}
.confirm .container dt {
  font-size: 2rem;
}
.confirm .container dd {
  font-size: 1.8rem;
  margin-left: 20px;
  margin-bottom: 20px;
  white-space: pre-wrap;
}

.w750 {
  max-width: 750px;
  white-space: pre-wrap;
}

.mail_btn_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 750px;
  gap: 80px;
  margin: 0 auto;
}
.mail_btn_container .submit_btn,
.mail_btn_container .return {
  width: 50%;
}
.mail_btn_container p {
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 700px) {
  /* 横幅が700px以下の場合に適用するスタイル */
  .loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    background-color: #ffe99d;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .loading__logo {
    transition: 2s;
    animation: logo_rotate linear infinite 2s;
    width: 50px;
  }
  @keyframes logo_rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  main {
    min-height: 100vh;
    margin-top: 0;
    overflow: hidden;
    background-size: 100px;
  }
  .sp_view {
    display: flex;
  }
  .sp_none {
    display: none;
  }
  .more_view {
    font-size: 1.6rem;
  }
  h1 {
    font-size: 2.4rem;
    text-align: center;
    white-space: pre-wrap;
  }
  h2 {
    font-size: 2rem;
    text-align: center;
  }
  h3 {
    font-size: 1.8rem;
    text-align: center;
  }
  p {
    font-size: 1.4rem;
  }
  .intro_para {
    position: relative;
    font-size: 1.4rem;
    z-index: 10;
  }
  .prof_top_para {
    font-size: 1.6rem;
    margin: 0 auto;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
  }
  .title_arch {
    font-size: 2.2rem;
  }
  .title_arch::before {
    display: block;
    position: absolute;
    top: 30%;
    left: -45px;
    content: "";
    background-image: url(../img/illust/title_left.png);
    width: 40px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .title_arch::after {
    display: block;
    position: absolute;
    top: 30%;
    right: -45px;
    content: "";
    background-image: url(../img/illust/title_right.png);
    width: 40px;
    height: 25px;
    margin-bottom: -3px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  section {
    padding: 60px 0;
    position: relative;
    z-index: 10;
  }
  section:last-child {
    padding-bottom: 140px;
  }
  header {
    background-color: rgba(255, 202, 16, 0);
    /* チェックボックスを非表示にする */
    /* ハンバーガーアイコンの設置スペース */
    /* ハンバーガーメニューのアイコン */
    /* 三本線の一番上の棒の位置調整 */
    /* 三本線の一番下の棒の位置調整 */
    /* アイコンがクリックされたら真ん中の線を透明にする */
    /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
    /* アイコンがクリックされたらメニューを表示 */
    /* メニューのデザイン*/
  }
  header .drawer_hidden {
    display: none;
  }
  header .drawer_open {
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    background-color: #ffca10;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    align-items: center;
    position: relative;
    z-index: 100; /* 重なり順を一番上にする */
    cursor: pointer;
    transition: 0.8s;
  }
  header .drawer_open::before {
    content: "";
    display: block;
    height: 50px;
    width: 50px;
    background-color: #ffca10;
    border-radius: 100px;
    transition: 0.8s;
    z-index: -1;
  }
  header .drawer_open span,
  header .drawer_open span:before,
  header .drawer_open span:after {
    content: "";
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #328416;
    transition: 0.5s;
    position: absolute;
  }
  header .drawer_open span:before {
    bottom: 6px;
  }
  header .drawer_open span:after {
    top: 6px;
  }
  header #drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0);
  }
  header #drawer_input:checked ~ .drawer_open::before {
    scale: 40;
    background-color: #ffe99d;
  }
  header #drawer_input:checked ~ .drawer_open {
    background-color: #ffe99d;
    box-shadow: none;
  }
  header #drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  header #drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  header #drawer_input:checked ~ nav {
    left: 0; /* メニューを画面に入れる */
    opacity: 1;
  }
  header nav {
    display: block;
    width: 100%;
    height: fit-content;
    position: fixed;
    top: 50%;
    left: 100%; /* メニューを画面の外に飛ばす */
    opacity: 0;
    transform: translateY(calc(-50% - 1.3rem));
    z-index: 100;
    transition: 0.8s;
  }
  header ul {
    display: block;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    gap: 20px;
  }
  header ul li {
    position: relative;
    font-size: 2rem;
    margin: 15px 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: 0.4s;
  }
  header ul li::after {
    content: ""; /* コンテンツを追加 */
    width: 100%; /* 線の幅 */
    height: 2px; /* 線の高さ */
    background-color: #328416; /* 線の色 */
    position: absolute; /* position: relative;からの線の絶対位置 */
    bottom: 0; /* 線の位置 */
    left: 0; /* 線の位置 */
    transform: scale(0, 1); /* 線のx軸の長さを0 */
    transition: 0.4s; /* 要素の変形する時間*/
    transform-origin: left top; /* 要素の座標の原点を設定*/
  }
  header ul li:hover {
    box-shadow: none;
    color: #328416;
  }
  header ul li:hover::after {
    transform: scale(1, 1); /* 線のx軸の長さを1 */
  }
  header .other_link {
    display: flex;
    gap: 40px;
    margin-top: 15vh;
  }
  header .other_link li img {
    width: 60px;
  }
  header .other_link li::after {
    content: none;
  }
  .to_footer {
    padding-bottom: 100px;
  }
  .contact_accent::before {
    position: absolute;
    content: "";
    display: block;
    background-image: url(../img/contact_accent.svg);
    width: 225px;
    height: 120px;
    top: -115px;
    left: 50%;
    transform: translateX(-50%);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .ftr_arch {
    width: 100%;
    padding: 80px 100px;
    border-top-left-radius: 800px 300px;
    border-top-right-radius: 800px 300px;
    margin-left: -100px;
    margin-right: -100px;
  }
  footer {
    position: relative;
    background-color: #ffd43d;
    text-align: center;
    padding: 60px 0 40px;
    z-index: 10;
  }
  footer a {
    display: block;
    text-decoration: none;
    width: fit-content;
    margin: 0 auto;
  }
  footer .container {
    width: 90%;
    display: block;
    text-align: left;
  }
  footer h2 {
    text-align: center;
  }
  footer .contact_sec {
    padding: 0;
  }
  footer .contact_para {
    margin-bottom: 30px;
  }
  footer .contact_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 650px;
  }
  footer .contact_container .contact {
    width: 90%;
    display: block;
    text-align: center;
    margin: 0 auto 0;
  }
  footer .contact_container .contact:hover img {
    filter: none;
  }
  footer .contact_container img {
    width: 125px;
    transition: 0.4s;
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.3));
  }
  footer .contact_container p {
    font-size: 1.6rem;
    text-align: center;
  }
  footer .link_container {
    position: relative;
    display: block;
    width: 90%;
    margin: 60px auto;
  }
  footer .link_container .scroll_top {
    position: absolute;
    width: 60px;
    bottom: -70px;
    right: 10px;
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.3));
    transition: 0.4s;
  }
  footer .link_container .scroll_top:hover {
    filter: none;
  }
  footer .other_link {
    display: flex;
    justify-content: center;
    gap: 25px;
    max-width: 700px;
  }
  footer .other_link li {
    min-width: 0;
    transition: 0.4s;
  }
  footer .other_link li img {
    width: 60px;
  }
  footer .other_link li:hover {
    box-shadow: none;
    filter: none;
  }
  footer .page_link {
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    margin: 100px 0;
  }
  footer .page_link li {
    border-radius: 0;
    min-width: 0;
    width: fit-content;
    margin: 0 auto;
    padding: 10px 0;
    box-shadow: none;
  }
  footer .page_link li:hover {
    box-shadow: none;
  }
  footer strong {
    font-size: 1rem;
  }
  .bg_illust .flower {
    width: 40%;
    min-width: 100px;
    max-width: 275px;
  }
  .bg_illust .yuzu {
    width: 45%;
    min-width: 150px;
    max-width: 325px;
  }
  .bg_illust .megaphone {
    width: 30%;
    min-width: 150px;
    max-width: 250px;
  }
  .bg_illust .paper {
    width: 30%;
    min-width: 150px;
    max-width: 250px;
  }
  .bg_illust .star {
    width: 35%;
    min-width: 150px;
    max-width: 250px;
  }
  .bg_illust .say {
    width: 35%;
    min-width: 150px;
    max-width: 250px;
  }
  .bg_illust .keyframe1 {
    position: fixed;
    top: 80px;
    left: 0px;
    z-index: 1;
    transform-origin: center;
    animation: l_illust 2.5s step-start infinite;
  }
  @keyframes l_illust {
    0%, 100% {
      transform: rotate(30deg);
    }
    50% {
      transform: rotate(-20deg);
    }
  }
  .bg_illust .keyframe2 {
    position: fixed;
    bottom: 10px;
    right: 0px;
    z-index: 1;
    transform-origin: center;
    animation: r_illust 2.5s step-start infinite;
  }
  @keyframes r_illust {
    0%, 100% {
      transform: rotate(-30deg);
    }
    50% {
      transform: rotate(20deg);
    }
  }
  .fv {
    margin-top: 0;
    position: relative;
    max-width: 100%;
    min-width: 0;
    height: 100vh;
    z-index: 10;
    overflow: hidden;
  }
  .fv .charcter {
    position: absolute;
    width: 97.5%;
    min-width: 0;
    max-width: 450px;
    top: 30%;
    right: 5px;
    transform: none;
    filter: drop-shadow(7.5px 7.5px 0 #ffca10);
  }
  .fv h1 {
    position: absolute;
    top: 10%;
    left: 1vw;
    width: 85%;
    min-width: 0;
    max-width: 300px;
  }
  .fv h1 img {
    width: 100%;
    filter: drop-shadow(7.5px 7.5px 0 #ffadd0);
  }
  .fv svg {
    position: relative;
    width: 100%;
    top: 35vh;
    left: 0;
    transform: translate(-30%, 0);
    scale: 4.5;
    min-height: 200px;
    max-height: fit-content;
    overflow: hidden;
  }
  .fv svg path {
    opacity: 0.45;
  }
  .fv .other_link {
    display: none;
  }
  .top_container img {
    width: 150px;
  }
  .top_container .news_top {
    width: 150px;
    min-width: 0;
    max-width: max-content;
    margin: 20px 0;
  }
  .news_list {
    width: 100%;
    max-width: 500px;
    min-height: calc(100vh - 140px);
    margin: 0 auto;
    padding-top: 100px;
  }
  .news_list .container {
    box-sizing: border-box;
    display: block;
    width: 100%;
    max-width: 100%;
    background-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 7.5px 15px rgba(255, 202, 16, 0.5);
    padding: 20px 20px 30px;
    border-radius: 0;
    margin: 0;
  }
  .news_list .title_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: fit-content;
    margin-bottom: 20px;
  }
  .news_list .title_block h2 {
    font-size: 2.4rem;
    margin: 0;
    text-align: left;
  }
  .news_list .title_block .more_view {
    margin: 0 0 0 auto;
  }
  .news_list h1 {
    margin: 0;
    text-align: left;
    font-size: 2.4rem;
  }
  .news_list .sp_news_title {
    text-align: center;
  }
  .news_list .top_container {
    min-width: fit-content;
  }
  .news_list ul {
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 0;
  }
  .news_list ul li {
    position: relative;
    box-sizing: border-box;
    min-width: 250px;
    transition: 0.4s;
    list-style: none;
    overflow: hidden;
    margin: 0;
    padding: 15px 0;
  }
  .news_list ul li a {
    text-decoration: none;
    display: block;
    gap: 7.5px;
  }
  .news_list ul li::before {
    content: ""; /* コンテンツを追加 */
    width: 100%; /* 線の幅 */
    height: 2px; /* 線の高さ */
    background: #1b420d;
    position: absolute; /* position: relative;からの線の絶対位置 */
    bottom: 0; /* 線の位置 */
    left: 0; /* 線の位置 */
    transform-origin: left top; /* 要素の座標の原点を設定*/
  }
  .news_list ul li::after {
    content: ""; /* コンテンツを追加 */
    width: 100%; /* 線の幅 */
    height: 2px; /* 線の高さ */
    background: #ffca10;
    position: absolute; /* position: relative;からの線の絶対位置 */
    bottom: 0; /* 線の位置 */
    left: 0; /* 線の位置 */
    transform: scale(0, 1); /* 線のx軸の長さを0 */
    transition: 0.4s; /* 要素の変形する時間*/
    transform-origin: left top; /* 要素の座標の原点を設定*/
  }
  .news_list ul li:hover::after {
    transform: scale(1, 1); /* 線のx軸の長さを1 */
  }
  .news_list ul li:hover h2, .news_list ul li:hover h3 {
    letter-spacing: 0.05rem;
  }
  .news_list ul li h2,
  .news_list ul li h3 {
    font-size: 1.6rem;
    text-align: left;
    margin: 0;
    transition: 0.4s;
  }
  .news_list ul li button {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: pointer;
    opacity: 0;
  }
  .news_list .pagenation {
    display: flex;
    position: relative;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 5px;
  }
  .news_list .pagenation button {
    border: none;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    padding: 0;
    font-size: 1.4rem;
    background-color: #fff;
    color: #1b420d;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
  }
  .news_list .pagenation button:hover {
    box-shadow: none;
  }
  #news_view {
    width: 90%;
    max-width: 800px;
    min-width: 250px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 90px;
  }
  #news_view section {
    padding-top: 20px;
  }
  #news_view section ul {
    padding-left: 17.5px;
  }
  #news_view section li {
    list-style-type: disc;
    font-size: 1.4rem;
    margin: 15px 0;
  }
  #news_view img {
    width: 85%;
    max-width: 350px;
    height: 85%;
    border-radius: 20px;
    max-height: 450px;
    object-fit: cover;
  }
  #news_view iframe {
    border-radius: 20px;
  }
  #news-title {
    text-align: left;
    font-size: 2.2rem;
    margin: 5px;
    margin-left: 0;
  }
  .dateAndTag {
    display: flex;
    align-items: center;
    margin-top: 2px;
  }
  .dateAndTag p {
    font-size: 1.4rem;
    margin: 0 5px;
  }
  .dateAndTag p:first-child {
    margin-left: 0;
    margin-right: 5px;
  }
  .dateAndTag p span {
    font-size: 1rem;
  }
  .dateAndTag .post-tag,
  .dateAndTag .pickup {
    padding: 0.5px 0;
    background-color: #ffca10;
    border-radius: 100px;
    font-size: 1rem;
  }
  .dateAndTag .post-tag {
    text-align: center;
    min-width: 40px;
    padding: 0.5px 5px;
  }
  .dateAndTag .pickup {
    background-color: #328416;
    min-width: 75px;
    color: #fff;
    text-align: center;
  }
  .article-sec {
    margin: 0;
    padding: 0;
  }
  .article-sec .post-img {
    width: 100%;
    height: 25vw;
    object-fit: cover;
  }
  .article-sec:last-child {
    padding: 0;
  }
  .mg_top_narrow {
    padding-top: 0;
  }
  .mg_top_narrow .container {
    background-color: rgba(255, 255, 255, 0);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 200px, rgba(255, 255, 255, 0.6) 250px, rgba(255, 255, 255, 0.75));
  }
  .top_prof_sec {
    position: relative;
    margin-top: 70px;
    margin-bottom: 0;
  }
  .top_prof_sec::before {
    position: absolute;
    content: "";
    display: block;
    background-image: url(../img/prof_top_accent.svg);
    width: 250px;
    height: 75px;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .top_prof_sec::before::after {
    position: absolute;
    content: "";
    display: block;
    background-image: url(../img/prof_btm_accent.svg);
    width: 100%;
    height: 100%;
    bottom: -99.9%;
    left: 50%;
    transform: translateX(-50%);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .profile_sec {
    padding: 60px 0;
    background-color: #ffc3dc;
  }
  .profile_sec h2 {
    margin-top: 0;
  }
  .profile_sec .container {
    display: block;
    width: 90%;
    max-width: 1100px;
  }
  .profile_sec img {
    width: 100%;
    border-radius: 20px;
    transition: 0.4s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  }
  .profile_sec img:hover {
    box-shadow: none;
  }
  .profile_sec .profile_block {
    margin-bottom: 60px;
  }
  .profile_sec .profile_block p {
    margin: 10px 0;
  }
  .prof_sec {
    font-size: 1.6rem;
    padding-top: 0;
  }
  .prof_sec .container {
    width: 90%;
    min-width: 0;
    max-width: 800px;
  }
  .prof_sec .container img {
    width: 100%;
    min-width: 200px;
    max-width: 500px;
    height: calc(130px + 27.5vw);
    min-height: 150px;
    max-height: 350px;
    object-fit: cover;
    border-radius: 15px;
  }
  .gallery_block {
    position: relative;
    z-index: 10;
    display: block;
    width: 90%;
    margin: 0 auto 60px;
    max-width: 1000px;
  }
  .gallery_container {
    display: flex;
    justify-content: left;
    width: fit-content;
    margin: 0 0 30px;
    gap: 25px;
    cursor: pointer;
  }
  .gallery_container h2 {
    font-size: 1.8rem;
    text-align: left;
    margin: 0;
    max-width: fit-content;
  }
  .gallery_container img {
    width: 27.5%;
    height: 27.5%;
    max-width: 150px;
    border-radius: 999px;
    transition: 0.4s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  }
  .gallery_container p {
    margin: 0;
    font-size: 1.4rem;
  }
  .gallery_container:hover img {
    box-shadow: none;
  }
  .mov {
    width: 100%;
    padding: 60px 100px;
    background-color: #ffc3dc;
    border-top-left-radius: 800px 300px;
    border-top-right-radius: 800px 300px;
    border-bottom-left-radius: 800px 300px;
    border-bottom-right-radius: 800px 300px;
    margin-left: -100px;
    margin-right: -100px;
  }
  .mov .container {
    width: 90%;
    max-width: 1100px;
    min-width: 0;
    margin: 0 auto;
  }
  #mov_gallery {
    max-width: 1100px;
    display: block;
  }
  #mov_gallery li {
    min-width: 0;
    border-radius: 20px;
    max-width: none;
    background-color: #ffebf3;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
    cursor: pointer;
  }
  #mov_gallery li:hover {
    box-shadow: none;
  }
  #mov_gallery iframe {
    width: 100%;
    height: 180px;
    border-radius: 20px 20px 0 0;
  }
  #mov_gallery .mov_title {
    font-size: 1.2rem;
    white-space: pre-wrap;
    text-align: left;
    margin: 5px 0 30px;
    padding: 0 10px 5px;
  }
  .radius {
    position: relative;
    padding: 60px 40px;
    border-top-left-radius: 500px 100px;
    border-top-right-radius: 500px 100px;
    border-bottom-left-radius: 500px 100px;
    border-bottom-right-radius: 500px 100px;
    margin-left: -40px;
    margin-right: -40px;
  }
  .radius::before {
    position: absolute;
    content: "";
    display: inline-block;
    background-image: url("../img/mov_bg.png");
    background-size: contain;
    vertical-align: middle;
    width: calc(200px + 20vw);
    height: calc(200px + 20vw);
    top: 50%;
    left: 52.5%;
    transform: translate(-50%, -50%);
  }
  .radius .container {
    position: relative;
    margin: 0 auto;
    max-width: 1000px;
    z-index: 5;
  }
  .radius .margin_wide {
    width: 100%;
    min-width: 0;
    margin: 50px auto 60px;
  }
  .radius h2 {
    margin-top: 0;
  }
  .radius .channel_block {
    width: 100%;
  }
  .leader {
    text-align: center;
  }
  .leader .leader_point {
    margin: 30px 0 60px;
  }
  .leader .leader_point p {
    font-size: 2rem;
    line-height: 1;
  }
  .lead_txt {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  .channel_block {
    display: block;
    max-width: 1000px;
    margin: 30px auto 0;
  }
  .channel_block a:nth-child(2) > .channel_container {
    flex-direction: row-reverse;
  }
  .channel_block .channel_container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 10px;
    text-align: center;
    width: 100%;
    margin: 20px auto;
    cursor: pointer;
  }
  .channel_block .channel_container img {
    min-width: 80px;
    width: 23vw;
    max-width: 120px;
    border-radius: 999px;
    transition: 0.4s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  }
  .channel_block .channel_container .txt_container {
    width: fit-content;
  }
  .channel_block .channel_container h3 {
    font-size: 1.8rem;
    text-align: left;
    margin: 0;
  }
  .channel_block .channel_container p {
    text-align: left;
    margin: 0;
  }
  .channel_block .channel_container:hover img {
    box-shadow: none;
  }
  .gallery_sec p,
  .gallery_sec .live_sec {
    max-width: 1100px;
    margin: 0 auto;
  }
  .gallery_sec p .more_view,
  .gallery_sec .live_sec .more_view {
    margin-right: 20px;
  }
  .gallery_sec p {
    text-align: center;
  }
  .gallery_sec h3 {
    display: flex;
    gap: 10px;
    text-align: left;
    width: 90%;
    max-width: 1100px;
    margin: 10px auto;
  }
  .gallery_sec h3::before {
    content: "";
    display: block;
    background-image: url(../img/illust/yuzu_icon.png);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .gallery_sec .container {
    width: 100%;
  }
  .gallery_sec .mov_sec {
    /* 前へ次への矢印カスタマイズ */
    /* 前へ次への矢印カスタマイズ */
  }
  .gallery_sec .mov_sec .swiper {
    padding: 0 50px;
  }
  .gallery_sec .mov_sec .swiper-wrapper {
    align-items: stretch;
  }
  .gallery_sec .mov_sec .swiper-slide {
    height: auto;
  }
  .gallery_sec .mov_sec .swiper_contents {
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.65);
    box-shadow: 10px 10px 20px rgba(255, 202, 16, 0.5);
    border-radius: 20px;
    margin-bottom: 25px;
  }
  .gallery_sec .mov_sec .swiper_contents iframe {
    width: 100%;
    height: calc(90px + 10vw);
    max-height: 250px;
    border-radius: 20px 20px 0 0;
  }
  .gallery_sec .mov_sec .swiper_contents h4 {
    font-size: 1.2rem;
    margin: 0;
    padding: 7.5px 15px 10px;
    white-space: pre-wrap;
    flex-grow: 1;
  }
  .gallery_sec .mov_sec .head_container {
    width: 90%;
    align-items: center;
  }
  .gallery_sec .mov_sec .head_container h3 {
    text-align: left;
    width: fit-content;
    margin: 15px 0;
  }
  .gallery_sec .mov_sec .swiper-button-prev,
  .gallery_sec .mov_sec .swiper-button-next {
    height: 40px;
    width: 40px;
  }
  .gallery_sec .mov_sec .swiper-button-prev {
    left: 10px;
  }
  .gallery_sec .mov_sec .swiper-button-next {
    right: 10px;
  }
  .gallery_sec .mov_sec .swiper-button-prev::after,
  .gallery_sec .mov_sec .swiper-button-next::after {
    height: 40px;
    width: 40px;
  }
  #live_gallery,
  #top_live_gallery {
    grid-template-columns: 1fr 1fr;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 15px;
  }
  #live_gallery .img_container,
  #top_live_gallery .img_container {
    width: 100%;
    height: calc(15vw + 25px);
    min-height: 200px;
    max-height: 250px;
    border-radius: 15px;
    transition: 0.4s;
    cursor: pointer;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  }
  #live_gallery .img_container:hover,
  #top_live_gallery .img_container:hover {
    box-shadow: none;
  }
  #live_gallery .img_container:hover .live_photo,
  #top_live_gallery .img_container:hover .live_photo {
    transform: scale(1.1);
  }
  #live_gallery .live_photo,
  #top_live_gallery .live_photo {
    width: 100%;
    object-fit: cover;
    transition: 0.4s;
  }
  #overlay,
  #top_overlay {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 999;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
  }
  .modal_container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    width: 90%;
    min-width: 250px;
    transition: 0.4s;
  }
  .modal_container img {
    width: 100%;
    height: calc(100vh - 350px);
    min-height: 550px;
    border-radius: 20px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
  }
  .modal_container button {
    display: block;
    appearance: none;
    -webkit-appearance: none;
    margin-left: auto;
    text-align: center;
    font-size: 3.2rem;
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    padding: 0;
    border: none;
    border-radius: 100px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    background-color: #ffca10;
    color: #328416;
    transition: 0.4s;
  }
  .modal_container button:hover {
    background-color: #ebb800;
  }
  #overlay.is_open,
  #top_overlay.is_open {
    opacity: 1;
    visibility: visible;
  }
  .latest_meigen {
    padding: 0 0;
  }
  .latest_meigen h2 {
    margin-bottom: 50px;
  }
  .latest_meigen #latest_list {
    width: 90%;
    max-width: 600px;
    min-width: 300px;
    margin: 0 auto;
  }
  .latest_meigen #latest_list li .meigen {
    position: relative;
    font-size: 1.6rem;
    white-space: pre-wrap;
    text-align: left;
    margin: 30px 0 0;
    padding: 15px 10px 5px;
    border: solid 3px #ffca10;
    border-radius: 10px;
    background-color: #fff;
  }
  .latest_meigen #latest_list li .meigen::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 25px;
    height: 30px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../img/illust/yuzu_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .latest_meigen #latest_list li p {
    margin: 5px 0 0;
    white-space: pre-wrap;
  }
  .latest_meigen #latest_list li .comment {
    margin-top: 5px;
  }
  .meigen_sec h2,
  .meigen_sec p {
    margin-bottom: 50px;
  }
  .meigen_sec a {
    display: block;
    margin: 0 auto;
    width: 80%;
  }
  .meigen_sec a img {
    width: 100%;
    border-radius: 20px;
    transition: 0.4s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  }
  .meigen_sec a img:hover {
    box-shadow: none;
  }
  .meigen_sec .container {
    width: 90%;
    max-width: 1100px;
    min-width: 0;
    margin: 0 auto;
  }
  .meigen_sec #meigen_list,
  .meigen_sec #meigen_prof {
    display: block;
  }
  .meigen_sec #meigen_list li .meigen,
  .meigen_sec #meigen_prof li .meigen {
    position: relative;
    font-size: 1.6rem;
    white-space: pre-wrap;
    text-align: left;
    margin: 30px 0 20px;
    padding: 15px 10px 5px;
    border: solid 2px #1b420d;
    border-radius: 10px;
    background-color: #fff;
  }
  .meigen_sec #meigen_list li .meigen::after,
  .meigen_sec #meigen_prof li .meigen::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 25px;
    height: 30px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../img/illust/yuzu_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .meigen_sec #meigen_list li p,
  .meigen_sec #meigen_prof li p {
    margin: 5px 0 0;
    white-space: pre-wrap;
  }
  .meigen_sec #meigen_list li .comment,
  .meigen_sec #meigen_prof li .comment {
    margin-top: -10px;
  }
  .contact_block {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    gap: 80px;
    margin: 0 auto 140px;
    max-width: 1000px;
  }
  .contact_block a {
    text-decoration: none;
  }
  .x_container {
    display: flex;
    justify-content: left;
    width: fit-content;
    margin: 0 0 30px;
    gap: 20px;
    cursor: pointer;
  }
  .x_container h2 {
    font-size: 1.8rem;
    text-align: left;
    margin: 0;
    max-width: fit-content;
  }
  .x_container img {
    width: 27.5%;
    height: 27.5%;
    max-width: 150px;
    border-radius: 999px;
    transition: 0.4s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  }
  .x_container p {
    margin: 0;
    font-size: 1.4rem;
    font-family: "ta-pop-tomo", "Yomogi", "Yusei Magic", sans-serif;
  }
  .x_container:hover img {
    box-shadow: none;
  }
  .submit_btn {
    width: 70%;
    margin: 0 auto;
  }
  .submit {
    display: block;
    box-sizing: border-box;
    background-color: #328416;
    color: #fff;
    border: solid 3px #328416;
    border-radius: 100px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
    font-size: 2rem;
    width: 100%;
    max-width: 450px;
    margin: 50px auto 0;
    padding: 2.5px 5px;
    line-height: 1.85;
  }
  .submit:hover {
    box-shadow: none;
  }
  .return {
    display: block;
    box-sizing: border-box;
    background-color: #fff;
    color: #1b420d;
    border: solid 3px #ffca10;
    border-radius: 100px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
    font-size: 2rem;
    width: 70%;
    max-width: 450px;
    margin: 50px auto 0;
    padding: 2.5px 5px;
    line-height: 1.85;
  }
  .return:hover {
    box-shadow: none;
  }
  .back_btn {
    display: block;
    box-sizing: border-box;
    background-color: #328416;
    color: #fff;
    border-radius: 100px;
    text-decoration: none;
    text-align: center;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
    font-size: 2rem;
    width: 70%;
    max-width: 450px;
    margin: 50px auto 0;
    padding: 2.5px 5px;
  }
  .back_btn:hover {
    box-shadow: none;
    color: #fff;
  }
  .contact_form {
    background-color: #ffd43d;
  }
  .contact_form .container {
    width: 90%;
    margin: 0 auto;
  }
  .contact_form p {
    margin: 10px 0 5px;
  }
  .contact_form label {
    display: block;
    font-size: 1.6rem;
    margin: 5px 0;
    width: fit-content;
  }
  .contact_form .required {
    position: relative;
  }
  .contact_form .required::after {
    position: absolute;
    content: "必須";
    background-color: rgb(220, 0, 0);
    color: #fff;
    border-radius: 100px;
    font-size: 1.2rem;
    width: 45px;
    line-height: 1.85;
    text-align: center;
    top: calc(50% + 1px);
    right: -55px;
    transform: translate(0, -50%);
  }
  .contact_form .voluntary {
    position: relative;
  }
  .contact_form .voluntary::after {
    position: absolute;
    content: "任意";
    background-color: #328416;
    color: #fff;
    border-radius: 100px;
    font-size: 1.2rem;
    width: 45px;
    line-height: 1.85;
    text-align: center;
    top: calc(50% + 1px);
    right: -55px;
    transform: translate(0, -50%);
  }
  .contact_form .text_input {
    width: 100%;
    box-sizing: border-box;
    padding: 5px 10px;
    border-radius: 7.5px;
    border: solid 2px #1b420d;
    font-size: 1.6rem;
    font-family: "ta-pop-tomo", "Yomogi", "Yusei Magic", sans-serif;
    line-height: 1.85;
    outline: none;
    transition: 0.4s;
    color: #1b420d;
  }
  .contact_form .text_input:focus {
    border-color: #328416;
  }
  .contact_form #message {
    height: 250px;
    border-radius: 10px;
  }
  .contact_form .notes {
    font-size: 1rem;
    margin-top: 5px;
  }
  .contact_form .warning {
    font-size: 1.2rem;
    color: rgb(220, 0, 0);
  }
  .confirm {
    width: 90%;
    margin: 0 auto;
    padding-top: 0;
  }
  .confirm .container {
    width: 100%;
    max-width: 750px;
  }
  .confirm .container dt {
    font-size: 1.6rem;
  }
  .confirm .container dd {
    font-size: 1.4rem;
    margin-left: 20px;
    margin-bottom: 20px;
    white-space: pre-wrap;
  }
  .w750 {
    max-width: 750px;
  }
  .mail_btn_container {
    display: block;
    width: 100%;
    gap: 80px;
    margin: 0 auto;
  }
  .mail_btn_container .submit_btn,
  .mail_btn_container .return {
    width: 70%;
  }
  .mail_btn_container .submit {
    margin-top: 20px;
  }
  .mail_btn_container p {
    width: 100%;
    margin: 0 auto;
  }
  .mail_btn_container a:last-child {
    margin-top: 20px;
  }
  .sp_mg_wide {
    margin-top: 100px;
  }
  .sp_mg_semiwide {
    margin-top: 50px;
  }
  .sp_h1 {
    position: relative;
    z-index: 10;
    font-size: 2rem;
  }
}/*# sourceMappingURL=base.css.map */