@charset "UTF-8";
html body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #374151;
  font-size: 16px;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
html body a {
  color: #374151;
}
html body ul {
  list-style: disc none outside;
  padding: 0 0 0 1.5em;
}
html body ol {
  padding: 0 0 0 1em;
}
html body:not(.home) main {
  background-color: #F7F4EF;
  position: relative;
  padding: 2em 0em;
  margin-top: 0;
  margin-bottom: 0;
  box-sizing: border-box;
  max-width: none;
}
html body:not(.home) main .body_bg {
  width: auto;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0 2em;
}
html body:not(.home) main .body_bg p {
  margin-bottom: 1em;
}
html body:not(.home) .mv {
  background: #28993a;
  color: #fff;
  padding: 1em 1em;
}
html body:not(.home) .mv .date {
  font-size: 0.8em;
  opacity: 0.5;
}
html body:not(.home) .page_nav {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin-top: 5em;
}
html body:not(.home) .page_nav time {
  display: block;
  opacity: 0.5;
}
html body:not(.home) .page_nav a {
  text-decoration: none;
}
html body:not(.home) .page_nav .prev {
  padding: 2em 0;
  border-bottom: 1px solid #ccc;
}
html body:not(.home) .page_nav .next {
  padding: 2em 0;
}
html body:not(.home) h1 {
  font-size: 1.2em;
}
html body .mv_app h1 {
  background: none;
}

body header {
  background: #F7F4EF;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
}
body header.header-hidden {
  transform: translateY(-100%);
}
body header .site_name_top {
  margin: 0;
  padding: 0;
  width: 20%;
}
body header .site_name_top a {
  display: block;
  line-height: 0;
}
body header .site_name_top img {
  display: block;
  width: 100%;
  height: auto;
}
body header .hamburger {
  display: block;
  width: 27px;
  height: 27px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}
body header .hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #374151;
  margin: 4px auto;
  transition: all 0.3s ease;
  border-radius: 1px;
}
body header .hamburger.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
body header .hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
body header .hamburger.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
body header nav.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: #F7F4EF;
  transition: right 0.3s ease;
  z-index: 1000;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  overflow: auto;
}
body header nav.nav-menu.is-open {
  right: 0;
}
body header nav.nav-menu ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 1em;
  margin: 0;
}
body header nav.nav-menu ul li {
  padding: 0;
  margin: 0;
}
body header nav.nav-menu ul li a {
  display: block;
  padding: 0.5em;
  text-decoration: none;
  border-bottom: 1px solid #e5e7eb;
}
body header nav.nav-menu ul li a:hover {
  color: #28993a;
  background: rgba(40, 153, 58, 0.05);
}

body.menu-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

html body.recruit main {
  padding-top: 0em;
}
html body.recruit .recruit_catch .body {
  text-align: left;
}
html body.recruit .recruit_catch .body br {
  display: none;
}

html body.company main {
  padding-top: 5em;
}
html body.company h2 {
  font-size: 2em;
  color: green;
}
html body.company .bg03 {
  padding-bottom: 2em;
}
html body.company .is-layout-flex {
  flex-direction: column;
}

.front-page .wp-block-cover .has-background-dim:not([class*=-background-color]),
.front-page .wp-block-cover-image .has-background-dim:not([class*=-background-color]),
.front-page .wp-block-cover-image.has-background-dim:not([class*=-background-color]),
.front-page .wp-block-cover.has-background-dim:not([class*=-background-color]) {
  background-color: transparent;
  opacity: 1;
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
}

.mv_top,
.wp-block-cover.mv_top {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  box-sizing: border-box;
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.9) 90%, rgba(255, 255, 255, 0) 100%);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2em;
}
.mv_top .inner .catch,
.wp-block-cover.mv_top .inner .catch {
  font-size: 10vw;
  line-height: 1.5;
  font-weight: bold;
  margin: 0 0 0.5em;
}
.mv_top .inner .catch .pc,
.wp-block-cover.mv_top .inner .catch .pc {
  display: none;
}
.mv_top .inner .catch .keyword,
.wp-block-cover.mv_top .inner .catch .keyword {
  color: #28993a;
}
.mv_top .inner .lead,
.wp-block-cover.mv_top .inner .lead {
  font-weight: bold;
  margin: 0 0 2em;
  padding: 0 0 0 0.2em;
}
.mv_top .inner .wp-block-buttons,
.wp-block-cover.mv_top .inner .wp-block-buttons {
  display: flex;
  gap: 1em;
}
.mv_top .inner .wp-block-buttons .wp-block-button,
.wp-block-cover.mv_top .inner .wp-block-buttons .wp-block-button {
  display: block;
}
.mv_top .inner .wp-block-buttons .wp-block-button.pt1 a,
.wp-block-cover.mv_top .inner .wp-block-buttons .wp-block-button.pt1 a {
  background: #28993a;
  color: #fff;
}
.mv_top .inner .wp-block-buttons .wp-block-button.pt2 a,
.wp-block-cover.mv_top .inner .wp-block-buttons .wp-block-button.pt2 a {
  background: none;
  color: #28993a;
  border: 2px solid #28993a;
}
.mv_top .inner .wp-block-buttons .wp-block-button a,
.wp-block-cover.mv_top .inner .wp-block-buttons .wp-block-button a {
  text-decoration: none;
  text-align: center;
  display: block;
  border-radius: 10px;
  padding: 1em;
  font-weight: bold;
}

main {
  max-width: 1200px;
  margin: 0 auto 3em;
  padding: 2em 2em;
}
main .btn01 {
  margin: 2em 0;
}
main .btn01 a {
  display: block;
  background: #28993a;
  color: #fff;
  text-align: center;
  padding: 1em;
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-decoration: none;
}
main h2:not(:first-child) {
  margin: 2em 0 0;
}
main.front-page {
  padding-top: 0;
}
main.front-page h2 {
  font-size: 2em;
  margin: 0 0 1em;
}
main.front-page .body p {
  margin: 0 0 2em;
}
main.front-page .mission {
  padding: 5em 2em;
  margin-top: 0;
}
main.front-page .mission .title {
  text-align: center;
  margin-bottom: 1em;
}
main.front-page .about .wp-block-group {
  flex-direction: column-reverse;
  gap: 3em;
}
main.front-page .about .wp-block-group h3 {
  font-size: 1.5em;
  margin-bottom: 1em;
}
main.front-page .about .wp-block-group .is-layout-flex {
  align-items: start;
  gap: 50px;
}
main.front-page .about .wp-block-group .is-layout-flex > * {
  flex: 1;
}
main.front-page .about .wp-block-group .wp-block-image img {
  border-radius: 20px;
}
main.front-page .about .wp-block-group p {
  margin-bottom: 1em;
}
main.front-page .about .wp-block-group .sign {
  margin-top: 2em;
}
main.front-page .app .app_list_wrap {
  display: flex;
  justify-content: space-between;
  gap: 2em;
  flex-direction: column;
}
main.front-page .app .app_list_wrap .app_list_item {
  flex: 1;
  background: #fff;
  box-shadow: 0 4px 10px 0px #ccc;
  border-radius: 30px;
  padding: 2em;
}
main.front-page .app .app_list_wrap .app_list_item .app_name {
  font-size: 1.5em;
  font-weight: bold;
}
main.front-page .app .app_list_wrap .app_list_item .store_btn {
  display: flex;
  gap: 1em;
}
main.front-page .app .app_list_wrap .app_list_item .store_btn:not(:first-child) {
  margin-top: 1em;
}
main.front-page .app .app_list_wrap .app_list_item .store_btn p {
  flex: 1;
  background: #e5e7eb;
  text-align: center;
  border-radius: 10px;
}
main.front-page .app .app_list_wrap .app_list_item .store_btn p a {
  display: block;
  padding: 0.5em;
  text-decoration: none;
}
main.front-page .news .column .press {
  margin-bottom: 3em;
}
main.front-page .news .column .press h3 {
  display: block;
}
main.front-page .news .column .press ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
main.front-page .news .column .press ul li {
  margin-bottom: 2em;
}
main.front-page .news .column .press ul li:nth-child(odd) a {
  border-left: 5px solid #28993a;
}
main.front-page .news .column .press ul li:nth-child(even) a {
  border-left: 5px solid orange;
}
main.front-page .news .column .press ul li a {
  padding: 1em 1.5em;
  display: block;
  text-decoration: none;
}
main.front-page .news .column .press ul li a time {
  color: #6b7280;
}
main.front-page .news .column .press ul li a h4 {
  font-weight: bold;
  color: #1f2937;
}
main.front-page .news .column .press .more {
  display: block;
  border: 2px solid green;
  border-radius: 50px;
  padding: 0.5em 2em;
  font-size: 1em;
  text-align: center;
  color: green;
  text-decoration: none;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
main.front-page .news .column .press .more:hover {
  background: green;
  color: #fff;
}
main.front-page .news .column .update {
  flex: 1;
}
main.front-page .news .column .update .update_bg {
  background: #f4f6f7;
  border-radius: 20px;
  padding: 1.5em;
  margin-bottom: 2em;
}
main.front-page .news .column .update .update_bg ul {
  padding: 0;
}
main.front-page .news .column .update .update_bg ul li {
  display: flex;
}
main.front-page .news .column .update .update_bg ul li:not(:last-child) {
  margin-bottom: 1em;
}
main.front-page .news .column .update .update_bg ul li::before {
  content: "●";
  padding-right: 1em;
}
main.front-page .news .column .update .update_bg ul li:nth-child(even)::before {
  color: green;
}
main.front-page .news .column .update .update_bg ul li:nth-child(odd)::before {
  color: orange;
}
main.front-page .news .column .update .update_bg ul li a {
  text-decoration: none;
}
main.front-page .news .column .update .more {
  display: block;
  border: 2px solid green;
  border-radius: 50px;
  padding: 0.5em 2em;
  font-size: 1em;
  text-align: center;
  color: green;
  text-decoration: none;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
main.front-page .news .column .update .more:hover {
  background: green;
  color: #fff;
}

body.single-format-standard h2 {
  font-size: 1.5em;
  margin: 0 0 1em;
  border-bottom: 2px solid green;
  padding-bottom: 0.5em;
}
body.single-format-standard h2:not(:first-child) {
  margin: 3em 0 1em;
}
body.single-format-standard h3 {
  font-size: 1em;
}
body.single-format-standard h3:not(:first-child) {
  margin-top: 2em;
}

body.terms,
body.privacy,
body.cancel,
body.privacy {
  display: block;
}
body.terms ul:not(:first-child),
body.terms ol:not(:first-child),
body.privacy ul:not(:first-child),
body.privacy ol:not(:first-child),
body.cancel ul:not(:first-child),
body.cancel ol:not(:first-child),
body.privacy ul:not(:first-child),
body.privacy ol:not(:first-child) {
  margin: 1em 0 0;
}
body.terms ul li,
body.terms ol li,
body.privacy ul li,
body.privacy ol li,
body.cancel ul li,
body.cancel ol li,
body.privacy ul li,
body.privacy ol li {
  margin: 0 0 1em;
}

body.terms .notice {
  margin-bottom: 2em;
}
body.terms .toggle_item {
  background: #fff;
  padding: 1em;
  margin-bottom: 1em;
  border-radius: 10px;
  box-shadow: 0 5px 0px 0px #eee;
}
body.terms .toggle_item h2 {
  display: flex;
  padding-bottom: 0;
  justify-content: space-between;
  align-items: center;
  font-size: 1em;
  border: none;
}
body.terms .toggle_item h2::after {
  font-family: "Material Symbols Outlined";
  content: "keyboard_arrow_up";
  transition: transform 0.3s ease;
  font-size: 1.5em;
  font-weight: 400;
  color: green;
}
body.terms .toggle_item h2.accordion-active::after {
  transform: rotate(0deg);
}
body.terms .toggle_item h2:not(.accordion-active) {
  margin: 0;
}
body.terms .toggle_item h2:not(.accordion-active)::after {
  transform: rotate(180deg);
}

body.app .app_list_wrap {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2em;
}
body.app .app_list_wrap .app_list_item {
  background: #fff;
  border-radius: 20px;
  padding: 1em;
  box-shadow: 0 0px 5px 0 #ddd;
  display: block;
}
body.app .app_list_wrap .app_list_item a {
  text-decoration: none;
}
body.app .app_list_wrap .app_list_item a .block_a {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1em;
  margin-bottom: 1em;
  align-items: flex-end;
}
body.app .app_list_wrap .app_list_item a .block_a .app_thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20%;
}
body.app .app_list_wrap .app_list_item a .block_a .app_thumbnail img.default-icon {
  filter: grayscale(100%);
}
body.app .app_list_wrap .app_list_item a .block_a .status .price,
body.app .app_list_wrap .app_list_item a .block_a .status .age {
  flex: 1;
  border-radius: 10px;
  color: #fff;
  background: orange;
  text-align: center;
  padding: 0.5em 0;
  font-size: 3cqw;
}
body.app .app_list_wrap .app_list_item a .block_a .status .price:not(:last-child),
body.app .app_list_wrap .app_list_item a .block_a .status .age:not(:last-child) {
  margin-bottom: 1em;
}
body.app .app_list_wrap .app_list_item a .app_txt {
  padding: 0;
}
body.app .app_list_wrap .app_list_item a .app_txt .app_name {
  font-size: 1em;
  font-weight: bold;
  margin: 0 auto 0.5em;
  color: #1f2937;
}
body.app .app_list_wrap .app_list_item a .app_txt .app_excerpt {
  flex: 1;
  margin-bottom: 1em;
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.9em;
}
body.app .app_list_wrap .app_list_item .store {
  display: flex;
  gap: 1em;
  width: 100%;
  justify-content: flex-start;
}
body.app .app_list_wrap .app_list_item .store a {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 50%;
  height: 100%;
}
body.app .app_list_wrap .app_list_item .store a img {
  width: 100%;
  height: 100%;
}
body.app .app_list_wrap .app_list_item .store a.hidden {
  visibility: hidden;
}
body.app .app_list_wrap .app_list_item .more {
  display: block;
  background: green;
  color: #fff;
  text-align: center;
  border-radius: 100px;
  padding: 0.5em 2em;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1em auto 0;
}
body.app .app_list_wrap .app_list_item .store_btn {
  display: flex;
  gap: 1em;
}
body.app .app_list_wrap .app_list_item .store_btn:not(:first-child) {
  margin-top: 1em;
}
body.app .app_list_wrap .app_list_item .store_btn p {
  flex: 1;
  background: #e5e7eb;
  text-align: center;
  border-radius: 10px;
}
body.app .app_list_wrap .app_list_item .store_btn p a {
  display: block;
  padding: 0.5em;
  text-decoration: none;
}

body.single-app .mv_app {
  position: relative;
  overflow: hidden;
}
body.single-app .mv_app h1 {
  background: green;
  position: relative;
  z-index: 1;
}
body.single-app .app_summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
  margin-bottom: 1em;
}
body.single-app .app_summary .app_icon {
  display: block;
  width: 50%;
  margin: 0 auto;
  border-radius: 20%;
}
body.single-app .app_summary .app_icon.default-icon {
  filter: grayscale(100%);
}
body.single-app .app_summary .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
body.single-app .app_summary .info .status {
  display: flex;
  gap: 1em;
  container-type: inline-size;
}
body.single-app .app_summary .info .status .price,
body.single-app .app_summary .info .status .age {
  flex: 1;
  border-radius: 10px;
  color: #fff;
  background: orange;
  text-align: center;
  padding: 0.5em 0;
}
body.single-app .store {
  display: flex;
  gap: 1em;
  width: 100%;
  height: 60px;
}
body.single-app .store a {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 50%;
  height: 100%;
  display: block;
  margin: 0 auto;
}
body.single-app .store a img {
  display: block;
  width: 100%;
}
body.single-app .app_name {
  font-weight: bold;
  font-size: 1.5em;
  margin: 0em auto;
  line-height: 1.5;
  color: green;
}
body.single-app .body {
  margin: 2em 0;
}
body.single-app .body h2 {
  margin-bottom: 1em;
  font-size: 1.2em;
}
body.single-app .body p {
  margin-bottom: 1em;
}
body.single-app .app-screenshots {
  display: flex;
  gap: 1em;
  overflow-x: auto;
  padding: 2em 0;
  list-style: none;
  margin: 0 auto 2em;
  -webkit-overflow-scrolling: touch;
}
body.single-app .app-screenshots li {
  flex-shrink: 0;
  width: 250px;
}
body.single-app .app-screenshots li img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
body.single-app .app-screenshots::-webkit-scrollbar {
  height: 6px;
}
body.single-app .app-screenshots::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
body.single-app .app-screenshots::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
body.single-app .app-screenshots::-webkit-scrollbar-thumb:hover {
  background: #555;
}
body.single-app .relate_app {
  display: flex;
  gap: 1em;
  overflow-x: auto;
  padding: 2em;
  list-style: none;
  margin: 0 auto 2em;
  -webkit-overflow-scrolling: touch;
  background: #f7f2ea;
  border-radius: 10px;
  box-shadow: inset 0 0 10px #ccc;
}
body.single-app .relate_app li {
  flex-shrink: 0;
  width: 120px;
}
body.single-app .relate_app li a {
  display: block;
  text-decoration: none;
  color: inherit;
}
body.single-app .relate_app li a img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20%;
  margin-bottom: 0.5em;
}
body.single-app .relate_app li a .app_name {
  font-size: 0.9em;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
body.single-app .relate_app::-webkit-scrollbar {
  height: 6px;
}
body.single-app .relate_app::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
body.single-app .relate_app::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
body.single-app .relate_app::-webkit-scrollbar-thumb:hover {
  background: #555;
}
body.single-app .notice {
  font-size: 0.8em;
  line-height: 1.5;
}

body.contact .intro {
  margin: 0 auto;
}
body.contact .wrap .wp-block-contact-form-7-contact-form-selector {
  width: 100%;
}
body.contact .wrap .form {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0px 5px 0 #ddd;
  padding: 2em;
  margin: 0 auto;
}
body.contact .wrap .form br {
  display: none;
}
body.contact .wrap .form p {
  margin: 0;
}
body.contact .wrap .form h2 {
  text-align: center;
  font-weight: bold;
  margin: 1em 0;
  color: #28993a;
}
body.contact .wrap .form label {
  display: block;
  font-weight: bold;
  margin-bottom: 1em;
}
body.contact .wrap .form label:not(:first-of-type) {
  margin-top: 2em;
}
body.contact .wrap .form label input[type=text],
body.contact .wrap .form label input[type=tel],
body.contact .wrap .form label input[type=email] {
  font-weight: normal;
  display: block;
  margin-top: 0.5em;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 0.5em 1em;
  width: 100%;
  box-sizing: border-box;
}
body.contact .wrap .form label input[type=text]:focus,
body.contact .wrap .form label input[type=tel]:focus,
body.contact .wrap .form label input[type=email]:focus {
  border: 2px solid green;
}
body.contact .wrap .form .wpcf7-select {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 1em;
  width: 100%;
}
body.contact .wrap .form .wpcf7-select:focus {
  border: 2px solid green;
}
body.contact .wrap .form fieldset {
  padding: 1em 0;
  margin-top: 2em;
  margin-bottom: 1em;
  border: none;
}
body.contact .wrap .form fieldset legend {
  font-weight: bold;
}
body.contact .wrap .form fieldset .wrap {
  display: flex;
  flex-wrap: wrap;
}
body.contact .wrap .form fieldset .wrap label {
  flex: 1;
  display: flex;
  align-items: center;
  margin: 0;
}
body.contact .wrap .form fieldset .wrap label input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #28993a;
  border-radius: 4px;
  position: relative;
  margin-right: 0.5em;
  cursor: pointer;
}
body.contact .wrap .form fieldset .wrap label input[type=checkbox]:checked {
  background: #28993a;
}
body.contact .wrap .form fieldset .wrap label input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.875rem;
  font-weight: bold;
}
body.contact .wrap .form textarea {
  display: block;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 1em;
  margin-top: 0.5em;
  width: 100%;
  height: 200px;
  font-weight: normal;
  box-sizing: border-box;
}
body.contact .wrap .form textarea:focus {
  border: 2px solid green;
}
body.contact .wrap .form input[type=submit] {
  display: block;
  width: 100%;
  padding: 0.5em 1em;
  margin: 1em auto 0;
  background: green;
  border-radius: 10px;
  color: #fff;
}
body.contact .wrap .info > .wp-block-group {
  background: #fff;
  padding: 2em;
  margin-top: 2em;
  border-radius: 20px;
  box-shadow: 0 0px 5px 0 #ddd;
}
body.contact .wrap .info > .wp-block-group > .wp-block-group {
  display: flex;
  align-items: flex-start;
  gap: 1em;
}
body.contact .wrap .info > .wp-block-group > .wp-block-group [class^=icon-] {
  background: rgba(255, 165, 0, 0.1019607843);
  color: orange;
  padding: 0.5em;
  border-radius: 10px;
  font-size: 1.5em;
  margin: 0;
}
body.contact .wrap .info > .wp-block-group > .wp-block-group:nth-child(odd) [class^=icon-] {
  background: rgba(40, 153, 58, 0.1019607843);
  color: green;
}
body.contact .wrap .info > .wp-block-group > .wp-block-group > .wp-block-group {
  width: 100%;
  margin-bottom: 2em;
}
body.contact .wrap .info > .wp-block-group > .wp-block-group > .wp-block-group p {
  margin-bottom: 0;
}
body.contact .wrap .info .notice {
  margin-top: 2em;
  background: #28993a;
  padding: 2em;
  border-radius: 20px;
  color: #fff;
}

body.press .press-tabs {
  display: flex;
  margin: 2em 0 2em;
  border-bottom: 2px solid #e0e0e0;
}
body.press .press-tabs .press-tab {
  flex: 1;
  padding: 1em;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #666;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}
body.press .press-tabs .press-tab:hover {
  color: #333;
}
body.press .press-tabs .press-tab.active {
  color: #333;
  font-weight: bold;
  border-bottom-color: #333;
}
body.press .press-content {
  padding-bottom: 5em;
}
body.press .press-content .press-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
body.press .press-content .press-list .press-item {
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}
body.press .press-content .press-list .press-item time {
  display: block;
  color: #999;
  font-size: 14px;
  margin-bottom: 10px;
}
body.press .press-content .press-list .press-item h2 {
  margin: 0 0 10px 0;
  font-size: 20px;
}
body.press .press-content .press-list .press-item h2 a {
  color: #333;
  text-decoration: none;
}
body.press .press-content .press-list .press-item h2 a:hover {
  color: green;
}
body.press .press-content .press-list .press-item .press-excerpt {
  color: #666;
  line-height: 1.6;
}
body.press .press-content .press-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}
body.press .press-content .press-pagination a,
body.press .press-content .press-pagination .current-page {
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}
body.press .press-content .press-pagination a:hover {
  background: #f5f5f5;
}
body.press .press-content .press-pagination .current-page {
  background: #333;
  color: #fff;
  border-color: #333;
}
body.press .press-content .press-pagination .page-numbers {
  display: flex;
  gap: 5px;
}

.wp-block-group {
  position: relative;
}

.wp-block-buttons .wp-block-button__link {
  background: green;
  border-radius: 10px;
}

.bg01 {
  position: relative;
  background-color: #EEECE1;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  padding: 5em 2em;
  margin-top: 5em;
  margin-bottom: 5em;
  box-sizing: border-box;
}

.bg02 {
  background: linear-gradient(to bottom right, #28993a, #F2AB37);
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  padding: 5em 2em;
  margin-bottom: 5em;
  box-sizing: border-box;
  color: #fff;
}
.bg02:not(:first-child) {
  margin-top: 5em;
}

.bg03 {
  position: relative;
  background-color: #FFF;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 2em;
  padding-top: 5em;
  padding-bottom: 5em;
  margin-top: 5em;
  margin-bottom: 5em;
  box-sizing: border-box;
}

.list01 > .wp-block-group {
  padding: 1em;
  margin-bottom: 2em;
}
.list01 > .wp-block-group > .wp-block-image {
  width: 27%;
  background: orange;
  border-radius: 1000px;
  padding: 7%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.list01 > .wp-block-group > .wp-block-image img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
.list01 > .wp-block-group > h3 {
  font-weight: bold;
  margin: 1em 0 0.5em;
}
.list02 > .wp-block-group {
  background: #fff;
  padding: 2em 2.5em;
  border-radius: 20px;
  box-shadow: 0 0 10px 0px #ddd;
  margin-bottom: 2em;
}
.list02 .wp-block-heading {
  font-size: 1.5em;
  line-height: 1.3;
  margin-bottom: 0.5em;
}
.list02 p:has(+ ul) {
  margin-bottom: 0.5em;
}

.list03 {
  list-style: none;
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.list03 li {
  position: relative;
  padding-left: 0;
}
.list03 li::before {
  content: "✓";
  position: absolute;
  left: -1.5em;
  color: green;
  font-weight: bold;
}

.list04 > .wp-block-group {
  background: #faf5f2;
  border-radius: 10px;
  padding: 2em;
  margin-bottom: 2em;
}
.list04 > .wp-block-group > .wp-block-image {
  width: 20%;
  margin: 0 auto;
  background: green;
  border-radius: 100px;
  padding: 1em;
}
.list04 > .wp-block-group > .wp-block-image img {
  display: block;
  width: 100%;
}
.list04 > .wp-block-group .wp-block-heading {
  margin: 0.5em auto 1em;
}

.list05 > .wp-block-group {
  background: #fff;
  border-radius: 10px;
  padding: 0;
  margin-bottom: 2em;
  box-shadow: 0 0 10px 0 #ddd;
}
.list05 > .wp-block-group > .wp-block-image {
  margin: 0 auto;
  border-radius: 100px;
}
.list05 > .wp-block-group > .wp-block-image img {
  display: block;
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.list05 > .wp-block-group > .wp-block-group {
  padding: 1em;
}
.list05 > .wp-block-group > .wp-block-group .wp-block-heading {
  margin: 0.5em auto 1em;
}

.width100 {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 2em;
}

.band01 {
  border-radius: 10px;
  background-image: linear-gradient(90deg, green, orange);
  padding: 2em;
  margin: 2em 0;
  color: #fff;
}
.band01 > .wp-block-group {
  text-align: center;
  margin-bottom: 2em;
}
.band01 > .wp-block-group p:first-child {
  margin-bottom: 0.5em;
}
.band01 > .wp-block-group p:last-child {
  margin-bottom: 0;
}

.block01 {
  background: #fff;
  border-radius: 10px;
  padding: 2em;
}
.block01 > .wp-block-group > .wp-block-group {
  display: grid;
  grid-template-columns: 1fr 12fr;
  gap: 1em;
}
.block01 > .wp-block-group > .wp-block-group:first-child > .wp-block-group {
  width: 100%;
}
.block01 .wp-block-list:has(li.icon) {
  margin: 0;
  padding: 0;
  list-style: none;
}
.block01 .wp-block-list:has(li.icon) .icon_wifi {
  background: url("../img/icon_wifi.png") no-repeat left center;
}
.block01 .wp-block-list:has(li.icon) .icon_drink {
  background: url("../img/icon_drink.png") no-repeat left center;
}
.block01 .wp-block-list:has(li.icon) .icon_shield {
  background: url("../img/icon_shield.png") no-repeat left center;
}
.block01 .wp-block-list:has(li.icon) .icon_game {
  background: url("../img/icon_game.png") no-repeat left center;
}
.block01 .wp-block-list:has(li.icon) .icon_cookie {
  background: url("../img/icon_cookie.png") no-repeat left center;
}
.block01 .wp-block-list:has(li.icon) .icon {
  background-size: 1.2em;
  padding-left: 1.7em;
  margin-bottom: 1em;
}

.block02 {
  margin-bottom: 5em;
}
.block02:nth-of-type(even) {
  flex-direction: row-reverse;
}
.block02 .wp-block-image {
  flex: 1;
}
.block02 .wp-block-image img {
  border-radius: 20px;
}
.block02 > .wp-block-group {
  flex: 1;
}
.block02 > .wp-block-group .wp-block-heading {
  margin-bottom: 0.5em;
}
.block02 > .wp-block-group .year {
  background: green;
  color: #fff;
  font-size: 0.8em;
  padding: 0 1em;
  text-align: center;
  border-radius: 100px;
  display: inline-block;
  margin: 0;
}

.regular_time {
  display: inline-block;
  background: green;
  color: #fff;
  padding: 0.5em 1em;
  font-size: 0.7em;
  border-radius: 50px;
}

.part_time {
  display: inline-block;
  background: orange;
  color: #fff;
  padding: 0.5em 1em;
  font-size: 0.7em;
  border-radius: 50px;
}

.btn_ios {
  display: block;
  width: 200px;
}
.btn_ios img {
  display: block;
  width: 100%;
  height: auto;
}

footer {
  background: #F7F4EF;
  margin-top: auto;
}
footer .inner {
  padding: 2em;
  margin: 0 auto;
}
footer .inner .company_info {
  margin: 0 0 3em;
  line-height: 2;
}
footer .inner .company_info .catch {
  font-size: 0.5em;
}
footer .inner .company_info .logo {
  display: block;
  width: 50%;
  margin: 0.5em 0;
}
footer .inner .company_info .logo img {
  display: block;
  width: 100%;
}
footer .inner .company_info address {
  font-style: normal;
  font-size: 0.7em;
}
footer .inner nav {
  display: flex;
}
footer .inner nav ul {
  list-style: none;
  padding: 0;
}
footer .inner nav ul li {
  margin-bottom: 1em;
}
footer .inner nav ul li a {
  text-decoration: none;
}

.dispnone {
  display: none;
}

.wp-block-contact-form-7-contact-form-selector .wpcf7 form .wpcf7-response-overlay {
  position: fixed !important;
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
  background: orange;
  color: #fff;
  padding: 1em;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
  border: none !important;
  margin: 0 !important;
}
.wp-block-contact-form-7-contact-form-selector .wpcf7 form .wpcf7-response-overlay.show {
  opacity: 1;
}
.wp-block-contact-form-7-contact-form-selector .wpcf7 form .wpcf7-response-overlay::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}/*# sourceMappingURL=sp.css.map */