@charset "UTF-8";
@font-face {
  font-family: "Amechan_pop";
  src: url("../font/AmeChanPopMaruLight-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "PottaOne";
  src: url("../font/PottaOne-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Hachimaru_pop";
  src: url("../font/HachiMaruPop-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ZenMaruGothic_Black";
  src: url("../font/ZenMaruGothic-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "ZenMaruGothic_Bold";
  src: url("../font/ZenMaruGothic-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "ZenMaruGothic_Medium";
  src: url("../font/ZenMaruGothic-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "ZenMaruGothic_Regular";
  src: url("../font/ZenMaruGothic-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "ZenMaruGothic_Light";
  src: url("../font/ZenMaruGothic-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
html {
  font-size: 16px;
  color: #695d4f;
}

html,
body {
  height: 100%;
  margin: 0;
}

section {
  padding: 60px 0;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .container {
    width: 95%;
    max-width: 900px;
  }
}

.section_title {
  font-size: 2rem;
  font-family: "ZenMaruGothic_Black", sans-serif;
}

.section_sub_title {
  letter-spacing: 3px;
  font-family: "ZenMaruGothic_Bold", sans-serif;
}

.sp-br {
  display: block;
}
@media screen and (max-width: 767px) {
  .sp-br {
    display: none;
  }
}

.pc-br {
  display: none;
}
@media screen and (max-width: 500px) {
  .pc-br {
    display: block;
  }
}

header {
  width: 100%;
  height: 80px;
  position: fixed;
  z-index: 90;
}
header .header_content {
  width: 95%;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header_content li .header_title {
  font-size: 1.875rem;
  color: #ff8b8b;
  font-family: "PottaOne", "ZenMaruGothic_Bold", sans-serif;
}
header .header_content li .header_menu {
  position: relative;
  width: 50px;
  height: 35px;
  cursor: pointer;
}
header .header_content li .header_menu span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background-color: #fff;
  transition: 0.25s ease;
}
header .header_content li .header_menu span:first-child {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
header .header_content li .header_menu span:last-child {
  top: initial;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
header .header_content li .header_menu.open span {
  transition: 0.25s ease;
  background-color: #695d4f;
}
header .header_content li .header_menu.open span:first-child {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
header .header_content li .header_menu.open span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0);
}
header .header_content li .header_menu.open span:last-child {
  top: 50%;
  bottom: initial;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.fullscreen_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 89;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.5s ease;
}
.fullscreen_menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fullscreen_menu.open .menu_nav li {
  transform: translateY(0);
  opacity: 1;
}
.fullscreen_menu.open .menu_nav li:nth-child(1) {
  transition-delay: 0.1s;
}
.fullscreen_menu.open .menu_nav li:nth-child(2) {
  transition-delay: 0.2s;
}
.fullscreen_menu.open .menu_nav li:nth-child(3) {
  transition-delay: 0.3s;
}
.fullscreen_menu.open .menu_nav li:nth-child(4) {
  transition-delay: 0.4s;
}
.fullscreen_menu.open .menu_nav li:nth-child(5) {
  transition-delay: 0.5s;
}

.menu_nav {
  list-style: none;
  text-align: center;
}
.menu_nav li {
  margin: 30px 0;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .menu_nav li {
    margin: 15px 0;
  }
}
.menu_nav a {
  text-decoration: none;
  font-size: 2rem;
  font-weight: bold;
  display: block;
  padding: 20px 40px;
  transition: all 0.3s ease;
  border-radius: 10px;
  font-family: "Hachimaru_pop", "ZenMaruGothic_Regular", sans-serif;
  color: #695d4f;
}
@media screen and (max-width: 767px) {
  .menu_nav a {
    font-size: 1.25rem;
  }
}
.menu_nav a:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}

/* ふわふわ浮遊アニメーション */
@keyframes floating {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(1deg);
  }
  50% {
    transform: translateY(-15px) rotate(0deg);
  }
  75% {
    transform: translateY(-8px) rotate(-1deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
/* より自然な風に揺れるアニメーション */
@keyframes swaying {
  0% {
    transform: translateX(0px);
  }
  33% {
    transform: translateX(10px);
  }
  66% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes poyoyon {
  0% {
    transform: scale(1, 1) translate(0, 0);
  }
  15% {
    transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    transform: scale(1.02, 1) translate(0, 8px);
  }
  50% {
    transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    transform: scale(1, 0.9) translate(0, 5px);
  }
  100% {
    transform: scale(1, 1) translate(0, 0);
  }
  0%,
  100% {
    opacity: 1;
  }
}
@keyframes poyoyon_2 {
  0%,
  40% {
    transform: skew(0deg, 0deg);
  }
  5% {
    transform: skew(5deg, 5deg);
  }
  10% {
    transform: skew(-4deg, -4deg);
  }
  15% {
    transform: skew(3deg, 3deg);
  }
  20% {
    transform: skew(-2deg, -2deg);
  }
  25% {
    transform: skew(1deg, 1deg);
  }
  30% {
    transform: skew(-0.6deg, -0.6deg);
  }
  35% {
    transform: skew(0.3deg, 0.3deg);
  }
}
@keyframes slideInBottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  0% {
    transform: translateX(100px) translateY(var(--offset-y, 0px));
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(var(--offset-y, 0px));
    opacity: 1;
  }
}
@keyframes slideInLeft {
  0% {
    transform: translateX(-100px) translateY(var(--offset-y, 0px));
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(var(--offset-y, 0px));
    opacity: 1;
  }
}
@keyframes kurukuru {
  0% {
    transform: rotate(var(--base-rotation, 30deg)) rotateY(0deg)
      translateY(120px);
    opacity: 0;
  }
  100% {
    transform: rotate(var(--base-rotation, 30deg)) rotateY(360deg)
      translateY(0px);
    opacity: var(--final-opacity, 0.3);
  }
}
/* ①ふわふわ浮遊 */
/* ②より自然な風に揺れる */
.footer_content {
  background-image: url(../img/footer/footer_bk.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 40px 20px;
}
@media screen and (max-width: 1280px) {
  .footer_content {
    background-position: center top;
    padding: 50px 40px 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer_content {
    padding: 50px 40px 70px;
  }
}
.footer_content .sns_account_wrap ul {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .footer_content .sns_account_wrap ul {
    display: block;
  }
}
.footer_content .sns_account_wrap ul li {
  width: 12%;
  position: relative;
  text-align: center;
  background-color: #ffe8da;
  margin-right: 15px;
  border-radius: 30px;
  box-shadow: 3px 3px 3px #695d4f;
}
@media screen and (max-width: 1280px) {
  .footer_content .sns_account_wrap ul li {
    width: 16%;
  }
}
@media screen and (max-width: 767px) {
  .footer_content .sns_account_wrap ul li {
    width: 90%;
    margin: 0 auto 40px;
  }
}
.footer_content .sns_account_wrap ul li:hover {
  animation: poyoyon_2 1.5s ease-in-out forwards;
}
.footer_content .sns_account_wrap ul li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .footer_content .sns_account_wrap ul li:last-child {
    margin: 0 auto;
  }
}
.footer_content .sns_account_wrap ul li .footer_btn_icon {
  position: absolute;
  top: -44px;
  left: -18px;
  width: 80px;
  height: auto;
}
.footer_content .sns_account_wrap ul li .footer_btn_icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer_content .sns_account_wrap ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 15px;
}
.footer_content .sns_account_wrap ul li a p {
  font-size: 1.125rem;
  font-family: "ZenMaruGothic_Black", sans-serif;
  line-height: 1.2;
}
.footer_content .sns_account_wrap ul li a p span {
  font-size: 1rem;
}
.footer_content .sns_account_wrap small {
  display: block;
  text-align: center;
  margin-top: 30px;
}

.single_content {
  padding: 80px 0;
}
.single_content.single_content_bk_activity-uribo {
  background-color: #ffe3e2;
}
.single_content.single_content_bk_activity-order {
  background-color: #dcffce;
}
.single_content.single_content_bk_activity-marche {
  background-color: #ffb65e;
}
.single_content.single_content_bk_activity-logo {
  background-color: #b7e0fe;
}
.single_content.single_content_bk_activity-portrait {
  background-color: #fffbc8;
}
.single_content article {
  background-color: #fff;
  padding: 60px 5%;
  border-radius: 30px;
  font-family: "Hachimaru_pop", "ZenMaruGothic_Regular", sans-serif;
}
.single_content article h1 {
  font-size: 2.5rem;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 5px;
  border-bottom: 2px solid #695d4f;
}
@media screen and (max-width: 767px) {
  .single_content article h1 {
    font-size: 1.75rem;
  }
}
.single_content article .single_thumb_list {
  max-width: 500px;
  width: 80%;
  height: auto;
  margin: 0 auto 20px;
  box-shadow: 3px 3px 3px #695d4f;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .single_content article .single_thumb_list {
    max-width: 600px;
    width: 80%;
  }
}
.single_content article .single_thumb_list .single_thumb {
  width: 100%;
  height: 100%;
}
.single_content article .single_thumb_list .single_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single_content article .single_thumb_list .slick-next {
  width: 40px;
  height: 40px;
  right: -60px;
}
@media screen and (max-width: 767px) {
  .single_content article .single_thumb_list .slick-next {
    right: -46px;
  }
}
.single_content article .single_thumb_list .slick-next::before {
  content: "＞";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
  background-color: #695d4f;
}
.single_content article .single_thumb_list .slick-prev {
  width: 40px;
  height: 40px;
  left: -60px;
}
@media screen and (max-width: 767px) {
  .single_content article .single_thumb_list .slick-prev {
    left: -46px;
  }
}
.single_content article .single_thumb_list .slick-prev::before {
  content: "＜";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
  background-color: #695d4f;
}
.single_content article > time {
  display: block;
  margin-top: 40px;
}
.single_content article .single_activity_company {
  width: 80%;
  margin: 0 auto;
  font-size: 1.025rem;
}
@media screen and (max-width: 500px) {
  .single_content article .single_activity_company {
    width: 100%;
  }
}
.single_content article .single_activity_day {
  margin-top: 5px;
  font-size: 1.025rem;
}
.single_content article .editor-styles-wrapper {
  width: 80%;
  margin: 10px auto 0;
  border: 1px solid #695d4f;
  border-radius: 15px;
  padding: 15px;
  text-align: justify;
}
@media screen and (max-width: 500px) {
  .single_content article .editor-styles-wrapper {
    width: 100%;
  }
}
.single_content article .editor-styles-wrapper p {
  line-height: 1.5;
}
.single_content article .return_button {
  display: block;
  width: fit-content;
  padding: 10px 15px;
  background-color: #695d4f;
  color: #fff;
  margin: 50px auto 0;
  border-radius: 10px;
}

.content_bk {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffe8da;
  transition: background-color 1s ease;
  z-index: -99;
}

.bk_top {
  background-color: #ffe8da;
}

.bk_service {
  background-color: #e4eaff;
}

.bk_illust {
  background-color: #fff4d5;
}

.top_content_wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.top_return_btn {
  position: fixed;
  top: 150px;
  right: -25px;
  width: 180px;
  height: auto;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .top_return_btn {
    width: 130px;
  }
}
.top_return_btn.visible {
  opacity: 1;
  animation: floating 3s ease-in-out infinite;
}
.top_return_btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_view {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
@media screen and (max-width: 1280px) {
  .top_view {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 600px) {
  .top_view {
    padding: 80px 0 0;
    height: 100vh;
  }
}
.top_view .top_view_menubk_img {
  position: absolute;
  top: -332px;
  right: -189px;
  transform: rotate(-1deg);
}
.top_view .top_view_menubk_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_view .top_view_container .top_view_main > div {
  position: relative;
}
.top_view .top_view_container .top_view_main > div .top_view_main_img {
  position: relative;
  width: 70%;
  max-width: 800px;
  z-index: 0;
}
@media screen and (max-width: 1280px) {
  .top_view .top_view_container .top_view_main > div .top_view_main_img {
    width: 80%;
    max-width: 730px;
  }
}
@media screen and (max-width: 767px) {
  .top_view .top_view_container .top_view_main > div .top_view_main_img {
    width: 90%;
  }
}
.top_view
  .top_view_container
  .top_view_main
  > div
  .top_view_main_img.on-animation {
  animation: zoomIn 0.5s ease-in-out 1, poyoyon 0.8s ease-in-out 1 0.5s;
}
.top_view .top_view_container .top_view_main > div .top_view_main_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_view .top_view_container .top_view_main > div .top_view_main_img::before {
  position: absolute;
  content: "";
  bottom: -160px;
  left: -15px;
  background-image: url(../img/top/top_view_heart.png);
  background-repeat: no-repeat;
  background-size: cover;
  transform: rotate(174deg);
  width: 300px;
  height: 300px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top_view
    .top_view_container
    .top_view_main
    > div
    .top_view_main_img::before {
    bottom: -110px;
    width: 180px;
    height: 180px;
  }
}
.top_view
  .top_view_container
  .top_view_main
  > div
  .top_view_main_img.second_img {
  margin-left: auto;
}
.top_view .top_view_container .top_view_main > div .top_view_main_title_wrap {
  position: absolute;
  top: 26%;
  right: 17%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top_view .top_view_container .top_view_main > div .top_view_main_title_wrap {
    top: 92%;
    right: 12%;
  }
}
.top_view
  .top_view_container
  .top_view_main
  > div
  .top_view_main_title_wrap
  .top_view_main_title {
  width: 100%;
  color: #695d50;
  font-family: "Hachimaru_pop", "ZenMaruGothic_Regular", sans-serif;
  font-weight: bold;
  height: auto;
  max-height: 4rem;
  display: flex;
  align-items: center;
}
.top_view
  .top_view_container
  .top_view_main
  > div
  .top_view_main_title_wrap
  .top_view_main_title
  svg {
  width: 100%;
  height: auto;
  max-height: 100%;
}
.top_view
  .top_view_container
  .top_view_main
  > div
  .top_view_main_title_wrap
  .top_view_main_title
  svg.on-animation {
  animation: zoomIn 0.5s ease-in-out 1, poyoyon 0.8s ease-in-out 1 0.5s;
}
.top_view
  .top_view_container
  .top_view_main
  > div
  .top_view_main_title_wrap
  .top_view_main_title
  svg
  text {
  font-size: 3rem;
}
@media screen and (max-width: 500px) {
  .top_view
    .top_view_container
    .top_view_main
    > div
    .top_view_main_title_wrap
    .top_view_main_title
    svg
    text {
    font-size: 2.25rem;
  }
}
.top_view
  .top_view_container
  .top_view_main
  > div
  .top_view_main_title_wrap
  .top_view_main_title.title_main_pink {
  max-height: 5rem;
  font-family: "Amechan_pop", "ZenMaruGothic_Black", sans-serif;
  text-shadow: #b8a79e 4px 4px 0;
  transform: rotate(-12deg);
}
@media screen and (max-width: 767px) {
  .top_view
    .top_view_container
    .top_view_main
    > div
    .top_view_main_title_wrap
    .top_view_main_title.title_main_pink {
    transform: rotate(-7deg);
  }
}
.top_view
  .top_view_container
  .top_view_main
  > div
  .top_view_main_title_wrap
  .top_view_main_title.title_main_pink
  svg
  text {
  font-size: 4.5rem;
}
@media screen and (max-width: 500px) {
  .top_view
    .top_view_container
    .top_view_main
    > div
    .top_view_main_title_wrap
    .top_view_main_title.title_main_pink
    svg
    text {
    font-size: 3.5rem;
  }
}
.top_view
  .top_view_container
  .top_view_main
  > div
  .top_view_main_title_wrap
  .top_view_main_title.second_main_title {
  text-shadow: #b8a79e 2px 2px 0;
  transform: translate(160px, -35px) rotate(6deg);
}
@media screen and (max-width: 767px) {
  .top_view
    .top_view_container
    .top_view_main
    > div
    .top_view_main_title_wrap
    .top_view_main_title.second_main_title {
    transform: translate(90px, -40px) rotate(6deg);
  }
}
@media screen and (max-width: 600px) {
  .top_view
    .top_view_container
    .top_view_main
    > div
    .top_view_main_title_wrap
    .top_view_main_title.second_main_title {
    transform: translate(90px, -30px) rotate(6deg);
  }
}
.top_view
  .top_view_container
  .top_view_main
  > div
  .top_view_main_title_wrap.second_title {
  position: absolute;
  top: 39%;
  left: -21%;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .top_view
    .top_view_container
    .top_view_main
    > div
    .top_view_main_title_wrap.second_title {
    top: 39%;
    left: -42%;
  }
}
@media screen and (max-width: 767px) {
  .top_view
    .top_view_container
    .top_view_main
    > div
    .top_view_main_title_wrap.second_title {
    top: 62%;
    left: -36%;
  }
}
@media screen and (max-width: 500px) {
  .top_view
    .top_view_container
    .top_view_main
    > div
    .top_view_main_title_wrap.second_title {
    top: 54%;
    left: -36%;
  }
}
.top_view
  .top_view_container
  .top_view_main
  > div
  .top_view_main_title_wrap.second_title
  .top_view_main_title {
  max-height: 3rem;
}
.top_view
  .top_view_container
  .top_view_main
  > div
  .top_view_main_title_wrap.second_title
  .top_view_main_title
  svg
  text {
  font-size: 1.15rem;
}
@media screen and (max-width: 767px) {
  .top_view
    .top_view_container
    .top_view_main
    > div
    .top_view_main_title_wrap.second_title
    .top_view_main_title
    svg
    text {
    font-size: 1.6rem;
  }
}
.top_view
  .top_view_container
  .top_view_main
  > div
  .top_view_main_title_wrap.second_title
  .top_view_main_title.title_main_pink {
  font-family: "Amechan_pop", "ZenMaruGothic_Black", sans-serif;
  text-shadow: #b8a79e 4px 4px 0;
  transform: rotate(5deg);
  max-height: 3.5rem;
}
@media screen and (max-width: 767px) {
  .top_view
    .top_view_container
    .top_view_main
    > div
    .top_view_main_title_wrap.second_title
    .top_view_main_title.title_main_pink {
    transform: rotate(16deg);
  }
}
.top_view
  .top_view_container
  .top_view_main
  > div
  .top_view_main_title_wrap.second_title
  .top_view_main_title.title_main_pink.second_main_title {
  transform: translate(160px, 11px) rotate(0deg);
  max-height: 3rem;
}
@media screen and (max-width: 767px) {
  .top_view
    .top_view_container
    .top_view_main
    > div
    .top_view_main_title_wrap.second_title
    .top_view_main_title.title_main_pink.second_main_title {
    transform: translate(90px, 3px) rotate(3deg);
  }
}
@media screen and (max-width: 600px) {
  .top_view
    .top_view_container
    .top_view_main
    > div
    .top_view_main_title_wrap.second_title
    .top_view_main_title.title_main_pink.second_main_title {
    transform: translate(90px, 30px) rotate(3deg);
  }
}
.top_view .top_view_container .top_view_main:last-child {
  transform: translateY(-226px);
}
@media screen and (max-width: 1280px) {
  .top_view .top_view_container .top_view_main:last-child {
    transform: translateY(-48px);
  }
}
@media screen and (max-width: 1024px) {
  .top_view .top_view_container .top_view_main:last-child {
    transform: translateY(50px);
  }
}
@media screen and (max-width: 767px) {
  .top_view .top_view_container .top_view_main:last-child {
    transform: translateY(57px);
  }
}
.top_view
  .top_view_container
  .top_view_main:last-child
  > div
  .top_view_main_img {
  width: 40%;
}
@media screen and (max-width: 1280px) {
  .top_view
    .top_view_container
    .top_view_main:last-child
    > div
    .top_view_main_img {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .top_view
    .top_view_container
    .top_view_main:last-child
    > div
    .top_view_main_img {
    width: 65%;
  }
}
.top_view
  .top_view_container
  .top_view_main:last-child
  > div
  .top_view_main_img::before {
  bottom: initial;
  left: initial;
  top: -100px;
  right: -35px;
  transform: rotate(14deg);
}
.top_view .top_bear_img {
  position: absolute;
  bottom: 80px;
  left: 45%;
  width: 15%;
  min-width: 200px;
  z-index: -2;
}
@media screen and (max-width: 1280px) {
  .top_view .top_bear_img {
    bottom: 363px;
    left: 39%;
  }
}
@media screen and (max-width: 1024px) {
  .top_view .top_bear_img {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .top_view .top_bear_img {
    display: block;
    width: 30%;
    min-width: 120px;
    bottom: 35%;
    left: 8%;
  }
}
.top_view .top_bear_img.on-animation {
  animation: zoomIn 0.5s ease-in-out 1, poyoyon 0.8s ease-in-out 1 0.5s;
}
.top_view .top_bear_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_activity {
  position: relative;
}
@media screen and (max-width: 570px) {
  .top_activity {
    padding-top: 0;
    padding-bottom: 200px;
  }
}
.top_activity .top_activity_content {
  position: relative;
  width: 100%;
  height: 737px;
}
@media screen and (max-width: 1280px) {
  .top_activity .top_activity_content {
    height: 604px;
  }
}
@media screen and (max-width: 570px) {
  .top_activity .top_activity_content {
    height: 390px;
  }
}
.top_activity .top_activity_content .top_activity_img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.top_activity .top_activity_content .top_activity_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_activity .top_activity_content .section_title {
  text-align: center;
  letter-spacing: 6px;
  padding-top: 222px;
}
@media screen and (max-width: 1280px) {
  .top_activity .top_activity_content .section_title {
    padding-top: 190px;
  }
}
@media screen and (max-width: 570px) {
  .top_activity .top_activity_content .section_title {
    font-size: 1.25rem;
    padding-top: 155px;
  }
}
.top_activity .top_activity_content .section_title span:first-child {
  margin-right: 238px;
}
@media screen and (max-width: 570px) {
  .top_activity .top_activity_content .section_title span:first-child {
    margin-right: 0;
  }
}
.top_activity .top_activity_content .activity_btn_list {
  width: 80%;
  margin: 45px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .top_activity .top_activity_content .activity_btn_list {
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .top_activity .top_activity_content .activity_btn_list {
    width: 95%;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.top_activity .top_activity_content .activity_btn_list .activity_btn {
  font-family: "Hachimaru_pop", "ZenMaruGothic_Regular", sans-serif;
  font-weight: bold;
  font-size: 1.25rem;
  padding: 8px 15px;
  border-radius: 40% 60% 40% 50%/60% 60% 50% 60%;
  background-color: #ffe8da;
  box-shadow: 2px 2px 2px #695d4f;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .top_activity .top_activity_content .activity_btn_list .activity_btn {
    padding: 5px 10px;
    font-size: 1.025rem;
    margin-right: 15px;
    margin-bottom: 15px;
  }
}
.top_activity .top_activity_content .activity_btn_list .activity_btn.active {
  background-color: #ff8d8d;
}
.top_activity .top_activity_content .achievements_list {
  display: grid;
  grid-template-columns: repeat(4, 200px);
  grid-template-rows: 200px;
  gap: 20px;
  width: fit-content;
  height: 340px;
  margin: 10px auto 0;
  padding: 20px;
  background-color: #fff;
  overflow-y: scroll;
}
@media screen and (max-width: 1280px) {
  .top_activity .top_activity_content .achievements_list {
    grid-template-columns: repeat(4, 170px);
    grid-template-rows: 170px;
    gap: 15px;
    height: 270px;
    padding: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .top_activity .top_activity_content .achievements_list {
    grid-template-columns: repeat(3, 200px);
    grid-template-rows: 200px;
    height: 260px;
  }
}
@media screen and (max-width: 700px) {
  .top_activity .top_activity_content .achievements_list {
    grid-template-columns: repeat(2, 200px);
    grid-template-rows: 200px;
    height: 260px;
  }
}
@media screen and (max-width: 570px) {
  .top_activity .top_activity_content .achievements_list {
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 130px;
    width: 100%;
    border: 15px solid #ffbab9;
    justify-content: center; /* 横方向中央揃え */
    align-content: start; /* 縦方向は上寄せ */
    margin: 0 auto;
  }
}
.top_activity .top_activity_content .achievements_list li {
  width: 100%;
  height: 100%;
  box-shadow: 2px 2px 2px #999;
  transition: 0.25s ease-in;
}
.top_activity .top_activity_content .achievements_list li:hover {
  transition: 0.25s ease-in;
  transform: scale(1.05);
}
.top_activity .top_activity_content .achievements_list li:last-child {
  margin-right: 0;
}
.top_activity .top_activity_content .achievements_list li a {
  display: block;
  width: 100%;
  height: 100%;
}
.top_activity .top_activity_content .achievements_list li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_service {
  position: relative;
}
.top_service::before {
  content: "";
  position: absolute;
  top: 71px;
  right: 44px;
  background-image: url(../img/top/top_service_plan_2.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 36%;
  height: 24%;
}
@media screen and (max-width: 1280px) {
  .top_service::before {
    top: 92px;
    right: 13px;
    width: 39%;
    height: 23%;
  }
}
@media screen and (max-width: 1024px) {
  .top_service::before {
    top: 142px;
    right: -9px;
    width: 40%;
    height: 18%;
  }
}
@media screen and (max-width: 500px) {
  .top_service::before {
    top: 192px;
    right: 12px;
    width: 67%;
    height: 7%;
  }
}
.top_service .section_title {
  position: relative;
  width: 20%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top_service .section_title {
    width: 47%;
  }
}
.top_service .section_title::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  background-image: url(../img/top/top_service_title_underber.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  height: 20%;
}
.top_service .top_service_title_wrap {
  position: relative;
}
.top_service .top_service_title_wrap .top_service_title_img {
  width: 25%;
  max-width: 380px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .top_service .top_service_title_wrap .top_service_title_img {
    min-width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .top_service .top_service_title_wrap .top_service_title_img {
    margin: 30px auto 0;
  }
}
.top_service .top_service_title_wrap .top_service_title_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_service .top_service_title_wrap > h3 {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.75rem;
  text-shadow: #b8a79e 2px 2px 0;
  letter-spacing: 3px;
  font-family: "ZenMaruGothic_Bold", sans-serif;
}
@media screen and (max-width: 1280px) {
  .top_service .top_service_title_wrap > h3 {
    bottom: 30px;
    font-size: 1.5rem;
  }
}
.top_service .top_service_disc {
  position: relative;
  width: 80%;
  margin: 30px auto 0;
  padding: 30px 20px;
  text-align: center;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top_service .top_service_disc {
    width: 90%;
  }
}
.top_service .top_service_disc::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -80px;
  background-image: url(../img/top/top_service_plan_1.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 19%;
  height: 100%;
}
@media screen and (max-width: 1280px) {
  .top_service .top_service_disc::before {
    bottom: -41px;
  }
}
@media screen and (max-width: 1024px) {
  .top_service .top_service_disc::before {
    bottom: -88px;
  }
}
@media screen and (max-width: 767px) {
  .top_service .top_service_disc::before {
    content: none;
    /* width: 12%;
    height: 53%;
    left: -24px;
    bottom: -73px; */
  }
}
/* @media screen and (max-width: 500px) {
  .top_service .top_service_disc::before {
    bottom: -140px;
    transform: rotate(-25deg);
    left: 8px;
    width: 20%;
  }
} */
.top_service .top_service_disc h4 {
  font-family: "ZenMaruGothic_Medium", sans-serif;
  font-size: 1.125rem;
}
.top_service .top_service_disc p {
  margin-top: 20px;
  line-height: 2;
  font-family: "ZenMaruGothic_Regular", sans-serif;
}
.top_service .top_service_plan_wrap {
  margin-top: 80px;
}
.top_service .top_service_plan_wrap .section_sub_title {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 60px;
}
.top_service .top_service_plan_wrap > ul {
  width: 100%;
  margin: 0 auto;
}
.top_service .top_service_plan_wrap > ul > li {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.top_service .top_service_plan_wrap > ul > li.lite {
  background-color: #e3f2ea;
}
.top_service .top_service_plan_wrap > ul > li.simple {
  background-color: #ffeee2;
}
.top_service .top_service_plan_wrap > ul > li.platina {
  background-color: #ffd5ce;
}
.top_service .top_service_plan_wrap > ul > li .wave_top {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: -1;
}
.top_service .top_service_plan_wrap > ul > li .wave_bottom {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: -1;
}
.top_service .top_service_plan_wrap > ul > li > div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
}
@media screen and (max-width: 1024px) {
  .top_service .top_service_plan_wrap > ul > li > div {
    width: 90%;
    margin: 0 auto;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .top_service .top_service_plan_wrap > ul > li > div {
    width: 95%;
    display: block;
  }
}
.top_service .top_service_plan_wrap > ul > li > div .desc_wrap {
  width: 40%;
}
@media screen and (max-width: 1280px) {
  .top_service .top_service_plan_wrap > ul > li > div .desc_wrap {
    width: 54%;
  }
}
@media screen and (max-width: 1024px) {
  .top_service .top_service_plan_wrap > ul > li > div .desc_wrap {
    width: 67%;
  }
}
@media screen and (max-width: 767px) {
  .top_service .top_service_plan_wrap > ul > li > div .desc_wrap {
    width: 100%;
  }
}
.top_service .top_service_plan_wrap > ul > li > div .desc_wrap > div {
  display: flex;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .top_service .top_service_plan_wrap > ul > li > div .desc_wrap > div {
    display: block;
    text-align: center;
  }
}
.top_service .top_service_plan_wrap > ul > li > div .desc_wrap > div h5 {
  font-family: "Amechan_pop", "ZenMaruGothic_Black", sans-serif;
  font-size: 2.2rem;
  color: rgba(0, 0, 0, 0);
  text-shadow: 2px 1px 0 #b4aa9e;
  -webkit-text-stroke: 1px #695d4f;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .top_service .top_service_plan_wrap > ul > li > div .desc_wrap > div h5 {
    margin-right: 0;
  }
}
.top_service .top_service_plan_wrap > ul > li > div .desc_wrap > div .plan_fee {
  font-size: 1.8rem;
  font-family: "Amechan_pop", "ZenMaruGothic_Black", sans-serif;
}
@media screen and (max-width: 767px) {
  .top_service
    .top_service_plan_wrap
    > ul
    > li
    > div
    .desc_wrap
    > div
    .plan_fee {
    margin-top: 10px;
  }
}
.top_service .top_service_plan_wrap > ul > li > div .desc_wrap .desc_text {
  font-family: "ZenMaruGothic_Bold", sans-serif;
  text-align: start;
  margin: 25px 0 10px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .top_service .top_service_plan_wrap > ul > li > div .desc_wrap .desc_text {
    text-align: center;
  }
}
.top_service
  .top_service_plan_wrap
  > ul
  > li
  > div
  .desc_wrap
  .desc_text::before,
.top_service
  .top_service_plan_wrap
  > ul
  > li
  > div
  .desc_wrap
  .desc_text::after {
  content: "☆";
}
.top_service .top_service_plan_wrap > ul > li > div .desc_wrap .desc_title {
  margin: 15px 0 10px;
  font-family: "Amechan_pop", "ZenMaruGothic_Black", sans-serif;
}
.top_service .top_service_plan_wrap > ul > li > div .desc_wrap > ul > li {
  margin-left: 1rem;
  list-style: square;
  margin-bottom: 10px;
  font-family: "ZenMaruGothic_Medium", sans-serif;
}
.top_service
  .top_service_plan_wrap
  > ul
  > li
  > div
  .desc_wrap
  > ul
  > li:last-child {
  margin-bottom: 0;
}
.top_service
  .top_service_plan_wrap
  > ul
  > li
  > div
  .desc_wrap
  > ul
  .plan_color {
  font-family: "ZenMaruGothic_Bold", sans-serif;
}
.top_service
  .top_service_plan_wrap
  > ul
  > li
  > div
  .desc_wrap
  > ul
  .plan_color.lite {
  color: #397d5b;
}
.top_service
  .top_service_plan_wrap
  > ul
  > li
  > div
  .desc_wrap
  > ul
  .plan_color.simple {
  color: #e4813f;
}
.top_service
  .top_service_plan_wrap
  > ul
  > li
  > div
  .desc_wrap
  > ul
  .plan_color.platina {
  color: #df513a;
}
.top_service .top_service_plan_wrap > ul > li > div .top_service_plan_img_wrap {
  width: 300px;
  height: 300px;
  background-color: #c2dace;
  border-radius: 50%;
  box-shadow: 4px 4px 16px #999;
  padding: 2%;
}
@media screen and (max-width: 1024px) {
  .top_service
    .top_service_plan_wrap
    > ul
    > li
    > div
    .top_service_plan_img_wrap {
    width: 200px;
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .top_service
    .top_service_plan_wrap
    > ul
    > li
    > div
    .top_service_plan_img_wrap {
    width: 250px;
    height: 250px;
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 500px) {
  .top_service
    .top_service_plan_wrap
    > ul
    > li
    > div
    .top_service_plan_img_wrap {
    width: 200px;
    height: 200px;
  }
}
.top_service
  .top_service_plan_wrap
  > ul
  > li
  > div
  .top_service_plan_img_wrap
  .top_service_plan_img {
  width: 100%;
  height: 100%;
}
.top_service
  .top_service_plan_wrap
  > ul
  > li
  > div
  .top_service_plan_img_wrap
  .top_service_plan_img
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_service
  .top_service_plan_wrap
  > ul
  > li
  > div
  .top_service_plan_img_wrap.lite {
  background-color: #c1dacd;
}
.top_service
  .top_service_plan_wrap
  > ul
  > li
  > div
  .top_service_plan_img_wrap.simple {
  background-color: #eec9b0;
}
.top_service
  .top_service_plan_wrap
  > ul
  > li
  > div
  .top_service_plan_img_wrap.platina {
  background-color: #f19686;
}
.top_service .top_service_plan_wrap > ul > li:nth-child(1) {
  --offset-y: 0px;
}
.top_service .top_service_plan_wrap > ul > li:nth-child(1).on-animation {
  animation: slideInRight 0.8s ease-out forwards;
}
.top_service .top_service_plan_wrap > ul > li:nth-child(2) {
  --offset-y: 30px;
}
.top_service .top_service_plan_wrap > ul > li:nth-child(2).on-animation {
  animation: slideInLeft 0.8s ease-out forwards;
}
.top_service .top_service_plan_wrap > ul > li:nth-child(2) > div {
  flex-direction: row-reverse;
  background-color: #ffeee2;
}
.top_service .top_service_plan_wrap > ul > li:nth-child(2) > div .desc_wrap {
  padding-left: 40px;
}
@media screen and (max-width: 1280px) {
  .top_service .top_service_plan_wrap > ul > li:nth-child(2) > div .desc_wrap {
    padding-left: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .top_service .top_service_plan_wrap > ul > li:nth-child(2) > div .desc_wrap {
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top_service .top_service_plan_wrap > ul > li:nth-child(2) > div .desc_wrap {
    padding-left: 0;
  }
}
.top_service .top_service_plan_wrap > ul > li:nth-child(3) {
  --offset-y: 60px;
}
.top_service .top_service_plan_wrap > ul > li:nth-child(3).on-animation {
  animation: slideInRight 0.8s ease-out forwards;
}
.top_service .top_service_plan_wrap > ul > li:nth-child(3) > div {
  background-color: #ffd5ce;
}

.top_flow {
  padding: 80px 0;
  position: relative;
}
.top_flow::before {
  --base-rotation: 30deg;
  --final-opacity: 0.3;
  content: "";
  position: absolute;
  top: -145px;
  right: 160px;
  background-image: url(../img/top/top_flow_bk.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 550px;
  height: 680px;
  transform: rotate(var(--base-rotation));
  opacity: var(--final-opacity);
  z-index: -5;
}
@media screen and (max-width: 1280px) {
  .top_flow::before {
    top: -96px;
    right: 60px;
    width: 480px;
    height: 598px;
  }
}
@media screen and (max-width: 500px) {
  .top_flow::before {
    top: 9px;
    right: 60px;
    width: 350px;
    height: 436px;
  }
}
.top_flow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 60px;
  background-image: url(../img/top/top_service_plan_2.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 396px;
  height: 310px;
  transform: rotate(14deg);
  z-index: -4;
}
@media screen and (max-width: 1280px) {
  .top_flow::after {
    left: 18px;
    width: 360px;
    height: 290px;
  }
}
.top_flow.on-animation::before {
  animation: kurukuru 1.2s ease-out forwards;
}
.top_flow .section_title {
  position: relative;
  width: 40%;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .top_flow .section_title {
    width: 46%;
  }
}
@media screen and (max-width: 1024px) {
  .top_flow .section_title {
    width: 55%;
  }
}
@media screen and (max-width: 767px) {
  .top_flow .section_title {
    width: 84%;
    max-width: 330px;
    font-size: 1.5rem;
  }
}
.top_flow .section_title::before {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 0;
  background-image: url(../img/top/top_service_title_underber.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  height: 40%;
}
.top_flow ul {
  margin: 100px 0;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top_flow ul {
    display: block;
  }
}
.top_flow ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 20px 15px;
  line-height: 1.5;
  background-color: #fff;
  border-radius: 40px;
  border: #695d4f 1px solid;
}
@media screen and (max-width: 767px) {
  .top_flow ul li {
    width: 80%;
    max-width: 400px;
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 767px) {
  .top_flow ul li:last-child {
    margin-bottom: 0;
  }
}
.top_flow ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -13px;
  transform: translateY(-50%);
  background-image: url(../img/icon/arrow_icon.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 14%;
  height: 34%;
}
@media screen and (max-width: 767px) {
  .top_flow ul li::before {
    top: -21px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    width: 25px;
    height: 34px;
  }
}
.top_flow ul li:first-child::before {
  content: none;
}
.top_flow ul li:last-child {
  background-color: #c2dace;
}
.top_flow ul li p {
  color: #695d4f;
  font-family: "ZenMaruGothic_Bold", sans-serif;
  text-align: center;
}

.top_illust ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .top_illust ul {
    display: block;
  }
}
.top_illust ul .top_illust_type {
  width: 32.5%;
  padding: 10px;
  border-radius: 20px;
  background-color: #fffbef;
}
@media screen and (max-width: 767px) {
  .top_illust ul .top_illust_type {
    width: 100%;
    margin-bottom: 20px;
  }
}
.top_illust ul .top_illust_type:last-child {
  margin-bottom: 0;
}
.top_illust ul .top_illust_type.on-animation {
  animation: slideInBottom 0.8s ease-out both;
}
.top_illust ul .top_illust_type.on-animation:nth-child(2) {
  animation-delay: 0.25s;
}
.top_illust ul .top_illust_type.on-animation:nth-child(3) {
  animation-delay: 0.5s;
}
.top_illust ul .top_illust_type .top_illust_type_img {
  position: relative;
  width: 100%;
  padding-top: 70.25%;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
}
.top_illust ul .top_illust_type .top_illust_type_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_illust ul .top_illust_type h5 {
  font-family: "Amechan_pop", "ZenMaruGothic_Black", sans-serif;
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0);
  text-shadow: 2px 1px 0 #b4aa9e;
  -webkit-text-stroke: 1px #695d4f;
  text-align: center;
  margin-top: 20px;
}
.top_illust ul .top_illust_type .top_illust_desc {
  margin-top: 20px;
}
.top_illust ul .top_illust_type .top_illust_desc > p {
  font-size: 1.125rem;
  text-align: center;
  font-family: "ZenMaruGothic_Bold", sans-serif;
  margin-bottom: 5px;
}
.top_illust ul .top_illust_type .top_illust_desc > p:last-child {
  margin-bottom: 0;
}
.top_illust ul .top_illust_type .top_illust_text {
  margin-top: 20px;
}
.top_illust ul .top_illust_type .top_illust_text > p {
  text-align: center;
  font-size: 0.9375rem;
  font-family: "ZenMaruGothic_Medium", sans-serif;
  line-height: 1.5;
}

.top_introduction {
  position: relative;
}
@media screen and (max-width: 590px) {
  .top_introduction {
    padding: 60px 0 0;
  }
}
.top_introduction .top_introduction_bk {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/top/top_introduction_bk.png);
  background-size: cover;
  z-index: -1;
  animation: swaying 4s ease-in-out infinite;
}
@media screen and (max-width: 590px) {
  .top_introduction .top_introduction_bk {
    background-size: 170%;
    background-repeat: repeat-y;
  }
}
.top_introduction .top_introduction_content {
  width: 100%;
  display: flex;
}
@media screen and (max-width: 767px) {
  .top_introduction .top_introduction_content {
    display: block;
  }
}
.top_introduction .top_introduction_content .top_introduction_content_img {
  width: 40%;
  background-color: #fff;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top_introduction .top_introduction_content .top_introduction_content_img {
    width: 100%;
    height: 300px;
  }
}
.top_introduction .top_introduction_content .top_introduction_content_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_introduction .top_introduction_content .top_introduction_content_desc {
  width: 60%;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .top_introduction .top_introduction_content .top_introduction_content_desc {
    width: 100%;
  }
}
.top_introduction .top_introduction_content .top_introduction_content_desc h2 {
  font-size: 1.75rem;
  text-align: center;
  font-family: "Amechan_pop", "ZenMaruGothic_Black", sans-serif;
}
@media screen and (max-width: 767px) {
  .top_introduction
    .top_introduction_content
    .top_introduction_content_desc
    h2 {
    font-size: 1.5rem;
  }
}
.top_introduction
  .top_introduction_content
  .top_introduction_content_desc
  .desc_text {
  text-align: center;
  background-size: 12px 4px;
  background-image: linear-gradient(to right, #ff6678 8px, transparent 8px);
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: 20px;
}
.top_introduction
  .top_introduction_content
  .top_introduction_content_desc
  .desc_text
  p {
  font-family: "ZenMaruGothic_Medium", sans-serif;
  line-height: 2;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_introduction
    .top_introduction_content
    .top_introduction_content_desc
    .desc_text
    p {
    text-align: justify;
  }
}
.top_introduction
  .top_introduction_content
  .top_introduction_content_desc
  .desc_text
  .desc_text_history {
  font-size: 1.125rem;
  font-family: "ZenMaruGothic_Bold", sans-serif;
  margin-top: 30px;
}
.top_introduction
  .top_introduction_content
  .top_introduction_content_desc
  .desc_text
  .desc_text_subtitle {
  font-size: 1.375rem;
  margin-top: 8px;
  font-family: "ZenMaruGothic_Black", sans-serif;
}
@media screen and (max-width: 500px) {
  .top_introduction
    .top_introduction_content
    .top_introduction_content_desc
    .desc_text
    .desc_text_subtitle {
    font-size: 1rem;
  }
}
.top_introduction
  .top_introduction_content
  .top_introduction_content_desc
  .desc_marche
  h4 {
  font-size: 1.125rem;
  line-height: 1.5;
  font-family: "ZenMaruGothic_Bold", sans-serif;
  margin-top: 20px;
  text-align: center;
}
.top_introduction
  .top_introduction_content
  .top_introduction_content_desc
  .desc_marche
  ul {
  width: 95%;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 590px) {
  .top_introduction
    .top_introduction_content
    .top_introduction_content_desc
    .desc_marche
    ul {
    display: block;
  }
}
.top_introduction
  .top_introduction_content
  .top_introduction_content_desc
  .desc_marche
  ul
  li {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 3px 3px 3px #999;
}
@media screen and (max-width: 1280px) {
  .top_introduction
    .top_introduction_content
    .top_introduction_content_desc
    .desc_marche
    ul
    li {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 590px) {
  .top_introduction
    .top_introduction_content
    .top_introduction_content_desc
    .desc_marche
    ul
    li {
    max-width: 500px;
    width: 180px;
    height: 180px;
    margin-right: auto;
    /* margin-bottom: 10px; */
  }
}
.top_introduction
  .top_introduction_content
  .top_introduction_content_desc
  .desc_marche
  ul
  li:nth-child(2) {
  width: 160px;
  height: 160px;
  transform: translateY(30px);
}
@media screen and (max-width: 1280px) {
  .top_introduction
    .top_introduction_content
    .top_introduction_content_desc
    .desc_marche
    ul
    li:nth-child(2) {
    width: 140px;
    height: 140px;
  }
}
@media screen and (max-width: 590px) {
  .top_introduction
    .top_introduction_content
    .top_introduction_content_desc
    .desc_marche
    ul
    li:nth-child(2) {
    max-width: 500px;
    width: 180px;
    height: 180px;
    margin-right: initial;
    margin-left: auto;
    transform: translateY(-50px);
  }
}
@media screen and (max-width: 590px) {
  .top_introduction
    .top_introduction_content
    .top_introduction_content_desc
    .desc_marche
    ul
    li:nth-child(3) {
    transform: translateY(-100px);
  }
}
.top_introduction
  .top_introduction_content
  .top_introduction_content_desc
  .desc_marche
  ul
  li:nth-child(4) {
  transform: translateY(10px);
}
@media screen and (max-width: 590px) {
  .top_introduction
    .top_introduction_content
    .top_introduction_content_desc
    .desc_marche
    ul
    li:nth-child(4) {
    transform: translateY(-150px);
    margin-right: initial;
    margin-left: auto;
    margin-bottom: 0;
  }
}
.top_introduction
  .top_introduction_content
  .top_introduction_content_desc
  .desc_marche
  ul
  li
  .desc_marche_img {
  width: 100%;
  height: 100%;
}
.top_introduction
  .top_introduction_content
  .top_introduction_content_desc
  .desc_marche
  ul
  li
  .desc_marche_img
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} /*# sourceMappingURL=main.css.map */
