@charset "UTF-8";
.appear.up .item {
  transform: translateY(30px);
}

.appear.down .item {
  transform: translateY(-40px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear .item {
  transition: all 0.6s ease;
  transform: translate3d(0, 0, 0);
  opacity: 0;
}
.appear.inview .item {
  transform: none;
  opacity: 1;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.2s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 1s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 1.2s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 1.4s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 1.6s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 1.8s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 2s;
}

.scaleDown {
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.4s;
}
.scaleDown.inview {
  opacity: 1;
  transform: scale(1);
}

.fadein {
  opacity: 0;
  transition: all 0.4s 0.4s;
}
.fadein.inview {
  opacity: 1;
}

.floating {
  display: inline-block;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}
.gelatine .item img {
  animation: gelatine 0.6s 1;
}
.gelatine.inview .item:nth-child(1) img {
  animation-delay: 0.2s;
}
.gelatine.inview .item:nth-child(1) span {
  animation-delay: 0.2s;
}
.gelatine.inview .item:nth-child(2) img {
  animation-delay: 0.4s;
}
.gelatine.inview .item:nth-child(2) span {
  animation-delay: 0.4s;
}
.gelatine.inview .item:nth-child(3) img {
  animation-delay: 0.6s;
}
.gelatine.inview .item:nth-child(3) span {
  animation-delay: 0.6s;
}
.gelatine.inview .item:nth-child(4) img {
  animation-delay: 0.8s;
}
.gelatine.inview .item:nth-child(4) span {
  animation-delay: 0.8s;
}
.gelatine.inview .item:nth-child(5) img {
  animation-delay: 1s;
}
.gelatine.inview .item:nth-child(5) span {
  animation-delay: 1s;
}
.gelatine.inview .item:nth-child(6) img {
  animation-delay: 1.2s;
}
.gelatine.inview .item:nth-child(6) span {
  animation-delay: 1.2s;
}
.gelatine.inview .item:nth-child(7) img {
  animation-delay: 1.4s;
}
.gelatine.inview .item:nth-child(7) span {
  animation-delay: 1.4s;
}
.gelatine.inview .item:nth-child(8) img {
  animation-delay: 1.6s;
}
.gelatine.inview .item:nth-child(8) span {
  animation-delay: 1.6s;
}
.gelatine.inview .item:nth-child(9) img {
  animation-delay: 1.8s;
}
.gelatine.inview .item:nth-child(9) span {
  animation-delay: 1.8s;
}
.gelatine.inview .item:nth-child(10) img {
  animation-delay: 2s;
}
.gelatine.inview .item:nth-child(10) span {
  animation-delay: 2s;
}

@keyframes gelatine {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.9, 1.1);
  }
  50% {
    transform: scale(1.1, 0.9);
  }
  75% {
    transform: scale(0.95, 1.05);
  }
  100% {
    transform: scale(1, 1);
  }
}
.anim {
  animation: anime 2s infinite steps(2);
}

@keyframes anime {
  0% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.anim2 {
  animation: anime2 2s infinite steps(2);
}

@keyframes anime2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(15deg);
  }
}
.anim3 {
  animation: anime3 2s infinite steps(2);
}

@keyframes anime3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 0vw;
}

html {
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
}

body {
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.075rem;
  color: #333;
  background: #FFFEF4;
  overflow-x: hidden;
}

.wrapper {
  position: relative;
}

.section_content {
  padding: 80px 0;
}
@media screen and (max-width: 960px) {
  .section_content {
    padding: 50px 0;
  }
}

#loading {
  transition: all 1s; /*ローディングにかかる時間*/
  background-color: white;
  z-index: 999;
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.spin {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  border-top-color: #FFA000;
  border-right-color: #FFA000;
  border-bottom-color: #FFA000;
  animation: spin 0.6s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.loaded {
  opacity: 0;
  visibility: hidden;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

a {
  text-decoration: none;
  transition: 0.5s all;
}

.font-xs, .venue-address span {
  font-size: clamp(1.4rem, 1.354rem + 0.21vw, 1.6rem);
}

.font-sm, .about .sub-txt, body {
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
}

.font-md, .accordion-btn, .contact-btn a, .time-txt, .date-txt a, .date-txt span, .venue-address {
  font-size: clamp(2rem, 1.908rem + 0.41vw, 2.4rem);
}

.font-lr, .case-txt, .case-title, .tel-txt, .date-txt, .sub-title {
  font-size: clamp(2.6rem, 2.415rem + 0.82vw, 3.4rem);
}

.font-lg, .tel-txt strong, .venue-title, .main-title {
  font-size: clamp(2.8rem, 2.523rem + 1.23vw, 4rem);
}

.main-title {
  font-weight: 900;
}

.sub-title {
  font-weight: 900;
  margin-bottom: 40px;
}
.sub-title span {
  color: #FFA000;
}
@media screen and (max-width: 960px) {
  .sub-title {
    margin-bottom: 30px;
  }
}

.mb-sm {
  margin-bottom: 30px;
}

.mb-lg {
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .mb-lg {
    margin-bottom: 50px;
  }
}

.pb-sm {
  padding-bottom: 30px;
}

.pb-lg {
  padding-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .pb-lg {
    padding-bottom: 50px;
  }
}

.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

.inner {
  width: min(980px, 85%);
  margin: 0 auto;
}

.flex {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 960px) {
  .flex {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

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

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

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: text;
    text-decoration: none;
  }
}
@media screen and (max-width: 960px) {
  img {
    image-rendering: auto;
  }
}
.mv {
  padding: 100px 0 0;
  background: url(../images/bg.png) repeat center/100px;
  text-align: center;
}
@media screen and (max-width: 1680px) {
  .mv {
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 960px) {
  .mv {
    padding: 80px 0 0;
  }
}
.mv .inner {
  position: relative;
}
.mv .catch {
  width: min(650px, 35vw);
  display: inline-block;
}
@media screen and (max-width: 960px) {
  .mv .catch {
    width: min(500px, 90%);
  }
}
.mv .area-txt {
  margin-top: 1.5rem;
  font-size: 3.4rem;
  font-weight: 700;
}
@media screen and (max-width: 1680px) {
  .mv .area-txt {
    font-size: clamp(2rem, 1.815rem + 0.82vw, 2.8rem);
  }
}
@media screen and (max-width: 960px) {
  .mv .area-txt {
    margin-top: 0.5rem;
  }
}
.mv .sub-img {
  margin-top: 3rem;
  width: min(500px, 25vw);
  display: inline-block;
  vertical-align: bottom;
}
@media screen and (max-width: 960px) {
  .mv .sub-img {
    margin-top: 1.5rem;
    width: min(400px, 70%);
  }
}

.ico_list-item {
  position: absolute;
  display: inline-block;
}

.ico_list-item._01 {
  width: min(120px, 7vw);
  left: 5%;
  top: 15%;
}
@media screen and (max-width: 960px) {
  .ico_list-item._01 {
    width: 10vw;
    left: 0;
    top: 20%;
  }
}

.ico_list-item._02 {
  width: min(120px, 7vw);
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 960px) {
  .ico_list-item._02 {
    width: 10vw;
    top: 20%;
    left: -3%;
  }
}

.ico_list-item._03 {
  width: min(110px, 7vw);
  left: 5%;
  bottom: 20%;
}
@media screen and (max-width: 960px) {
  .ico_list-item._03 {
    width: 10vw;
    left: 0;
    bottom: 10%;
  }
}

.ico_list-item._04 {
  width: min(150px, 10vw);
  right: 0;
  top: 15%;
}
@media screen and (max-width: 960px) {
  .ico_list-item._04 {
    width: 15vw;
    top: 25%;
    right: -2%;
  }
}

.ico_list-item._05 {
  width: min(110px, 6vw);
  right: 0;
  top: 0;
  bottom: 0;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
}
@media screen and (max-width: 960px) {
  .ico_list-item._05 {
    width: 10vw;
    top: 15%;
    right: -3%;
  }
}

.ico_list-item._06 {
  width: min(80px, 5vw);
  right: 8%;
  bottom: 15%;
}
@media screen and (max-width: 960px) {
  .ico_list-item._06 {
    width: 7vw;
    right: 3%;
    bottom: 10%;
  }
}

.about {
  background: #00D2AA;
  color: white;
  font-weight: 500;
}
.about .flex {
  align-items: center;
}
.about .main-title {
  margin-bottom: 2rem;
}
.about .sub-txt {
  line-height: 1.8;
}
.about .l_box {
  width: 55%;
  margin-right: 80px;
}
@media screen and (max-width: 960px) {
  .about .l_box {
    width: 100%;
    margin-right: 0;
  }
}
.about .r_box {
  width: 45%;
}
@media screen and (max-width: 960px) {
  .about .r_box {
    width: 70%;
    margin-top: 20px;
  }
}

.worries {
  overflow: hidden;
  padding-bottom: 0;
  text-align: center;
}

.worries-speech_list {
  color: white;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .worries-speech_list {
    flex-direction: column;
  }
}
.worries-speech_list._orange li {
  margin-right: 30px;
  background: #FFA000;
}
.worries-speech_list._orange li::before {
  background: url(../images/speech_deco.svg) no-repeat center/contain;
  left: 0;
}
@media screen and (max-width: 960px) {
  .worries-speech_list._orange li {
    margin-right: 0;
  }
}
.worries-speech_list._green li {
  margin-left: 30px;
  background: #00D2AA;
}
.worries-speech_list._green li::before {
  background: url(../images/speech_deco2.svg) no-repeat center/contain;
  right: 0;
}
@media screen and (max-width: 960px) {
  .worries-speech_list._green li {
    margin-left: 0;
  }
}
.worries-speech_list li {
  position: relative;
  width: 33.3333333333%;
  border-radius: 50px;
  padding: 1.5rem 1rem;
  margin-bottom: 60px;
}
.worries-speech_list li::before {
  position: absolute;
  content: "";
  width: 3em;
  height: 3em;
  bottom: -2em;
}
@media screen and (max-width: 960px) {
  .worries-speech_list li::before {
    width: 2em;
    height: 2em;
    bottom: -1em;
  }
}
@media screen and (max-width: 960px) {
  .worries-speech_list li {
    width: min(400px, 100%);
    margin-right: 0;
    margin-bottom: 40px;
  }
}

.human-list {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .human-list {
    margin-top: 20px;
  }
}

.infomation {
  text-align: center;
  position: relative;
  background: rgba(255, 160, 0, 0.15);
  z-index: 0;
}
.infomation::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: url(../images/bg_image.png) no-repeat center top/cover;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  z-index: -1;
}

.map_list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -40px;
}
@media screen and (max-width: 960px) {
  .map_list {
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .map_list {
    flex-direction: column;
    margin-left: 0;
  }
}
.map_list li {
  width: calc(33.3333333333% - 40px);
  background: white;
  margin-left: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media screen and (max-width: 960px) {
  .map_list li {
    width: calc(50% - 40px);
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 600px) {
  .map_list li {
    width: 80%;
    margin: 0 auto 30px;
  }
}

.venue_box {
  padding: 20px;
  background: #FFA000;
  color: white;
}

.venue-address {
  margin: 0.5rem 0 0;
  font-weight: 700;
}
.venue-address span {
  margin-top: 0.25rem;
  font-weight: 500;
  display: block;
}

.date_box {
  padding: 20px 0;
}

.date-txt {
  line-height: 1.3;
  font-weight: 700;
}
.date-txt span {
  display: block;
  padding: 0.5rem 0;
}
.date-txt a {
  margin-top: 1rem;
  color: #FFA000;
  border: 2px solid #FFA000;
  width: 120px;
  display: inline-block;
  border-radius: 50px;
  padding: 2px 10px 4px;
  transition: 0.3s all;
}
.date-txt a:hover {
  color: white;
  background: #FFA000;
}

.info-txt {
  font-weight: 700;
  margin-top: 30px;
}
@media screen and (max-width: 960px) {
  .info-txt {
    margin-top: 0;
  }
}
.info-txt a {
  position: relative;
  padding-right: 1.25em;
  color: #FFA000;
  display: inline-block;
  transition: 0.3s all;
}
.info-txt a::before {
  position: absolute;
  content: "";
  background: url(../images/blank_ico.svg) no-repeat center/contain;
  width: 1em;
  height: 1em;
  right: 0.15em;
  bottom: 0.15em;
}
.info-txt a:hover {
  opacity: 0.6;
}

.tel-txt {
  margin-top: 50px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .tel-txt {
    font-size: 6.5vw;
  }
}
.tel-txt span {
  color: #FFA000;
}
.tel-txt strong {
  display: block;
  margin-top: 0.5rem;
  font-weight: 900;
}
@media screen and (max-width: 480px) {
  .tel-txt strong {
    font-size: 5vw;
  }
}
.tel-txt a {
  color: #333;
  font-size: clamp(4rem, 3.308rem + 3.08vw, 7rem);
}

.time-txt {
  margin-top: 0.5rem;
  font-weight: 700;
}

.contact-btn a {
  text-align: center;
  color: white;
  background: #FFA000;
  font-weight: 700;
  padding: 0.5em 1em;
  display: block;
  max-width: 350px;
  margin: 2rem auto 0;
  border-radius: 50px;
}
.contact-btn a span {
  position: relative;
  display: inline-block;
  padding-left: 1.75em;
}
.contact-btn a span::before {
  position: absolute;
  content: "";
  background: url(../images/contact_ico.svg) no-repeat center/contain;
  width: 25px;
  height: 18px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s all;
}
.contact-btn a:hover {
  background: #ffd185;
}

.case {
  padding: 80px 0 40px;
  text-align: center;
}

.case-title {
  font-weight: 900;
  color: #00D2AA;
  background: white;
  border: 2px solid #00D2AA;
  display: inline-block;
  border-radius: 50px;
  padding: 2rem 1.5rem;
  max-width: 500px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.16) 5px 5px 10px;
}

.case-category-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -10px;
  margin-top: 80px;
}
@media screen and (max-width: 960px) {
  .case-category-title {
    flex-direction: column;
  }
}
.case-category-title:first-of-type {
  margin-top: 50px;
}
.case-category-title span {
  color: #00D2AA;
  font-size: 2.8rem;
  font-weight: 900;
  margin-left: 1rem;
}
@media screen and (max-width: 960px) {
  .case-category-title span {
    margin-left: 0;
  }
}

.case-category-img {
  width: 80px;
}
@media screen and (max-width: 960px) {
  .case-category-img {
    width: 60px;
  }
}

.accordion-item {
  transition: transform 0.3s ease;
  transform-origin: top;
  box-shadow: rgba(0, 0, 0, 0.16) 5px 5px 10px;
}
@media screen and (max-width: 960px) {
  .accordion-item {
    box-shadow: none;
  }
}

.accordion-btn {
  margin-top: 40px;
  background: #00D2AA;
  color: white;
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 2rem 6rem 2rem 150px;
  border: none;
  outline: none;
  transition: 0.3s all;
}
@media screen and (max-width: 960px) {
  .accordion-btn {
    font-size: 1.8rem;
    margin-top: 100px;
    padding: 2rem 6rem 2rem 2rem;
  }
}
@media screen and (max-width: 600px) {
  .accordion-btn {
    padding: 2rem 4rem 2rem 2rem;
  }
}
.accordion-btn.open {
  color: #00D2AA;
  background: #E6FBF7;
}
.accordion-btn.open .icon::after {
  width: 0;
}
@media screen and (min-width: 961px) {
  .accordion-btn:hover {
    color: #00D2AA;
    background: #E6FBF7;
    cursor: pointer;
  }
}
.accordion-btn .sub-img {
  position: absolute;
  bottom: 0;
  left: 15px;
  width: 110px;
}
@media screen and (max-width: 960px) {
  .accordion-btn .sub-img {
    width: 80px;
    top: -80px;
    bottom: auto;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.accordion-btn .icon {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 2rem;
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 22px;
}
@media screen and (max-width: 600px) {
  .accordion-btn .icon {
    width: 20px;
    height: 20px;
    right: 1.5rem;
  }
}
.accordion-btn .icon::before, .accordion-btn .icon::after {
  display: block;
  position: absolute;
  content: "";
  background: #00D2AA;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.accordion-btn .icon::before {
  width: 15px;
  height: 3px;
}
@media screen and (max-width: 600px) {
  .accordion-btn .icon::before {
    width: 10px;
    height: 2px;
  }
}
.accordion-btn .icon::after {
  width: 3px;
  height: 15px;
}
@media screen and (max-width: 600px) {
  .accordion-btn .icon::after {
    width: 2px;
    height: 10px;
  }
}

.accordion-content {
  display: none;
  position: relative;
  background: white;
}
.accordion-content p {
  padding: 3rem;
  text-align: left;
}
@media screen and (max-width: 960px) {
  .accordion-content p {
    padding: 2rem;
  }
}

.case-txt {
  font-weight: 900;
  margin: 100px 0 0;
}
.case-txt span {
  color: #FFA000;
}
@media screen and (max-width: 480px) {
  .case-txt {
    font-size: 6vw;
  }
}

header {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100px;
  padding: 0 40px;
}
@media screen and (max-width: 1680px) {
  header {
    height: 80px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 480px) {
  header {
    padding: 0 10px;
  }
}

.logo {
  width: 280px;
  margin-left: 10px;
}
@media screen and (max-width: 960px) {
  .logo {
    width: 240px;
  }
}

.footer {
  position: sticky;
  top: 100vh;
  height: 450px;
  padding: max(30px, 2.5vw) 0 0;
  background: url(../images/foot_bg.webp) no-repeat center top/cover;
  font-family: "Noto Sans JP";
  color: #333;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .footer {
    height: 400px;
    padding: 30px 0 30px;
  }
}
.footer a {
  color: white;
}
.footer a:hover {
  opacity: 0.5;
}

.foot-logo {
  width: 360px;
  margin: 0 auto 0.5rem;
}
@media screen and (max-width: 960px) {
  .foot-logo {
    width: 280px;
  }
}

.foot-address {
  font-size: 1.6rem;
}
@media screen and (max-width: 960px) {
  .foot-address {
    font-size: 1.4rem;
  }
}

.backtotop {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 80px;
  height: 80px;
  z-index: 500;
}
@media screen and (max-width: 480px) {
  .backtotop {
    width: 60px;
    height: 60px;
  }
}
.backtotop a {
  transition: 0.5s all;
}
.backtotop a:hover {
  opacity: 0.5;
}
.backtotop a img {
  width: 100%;
}

.backtotop a {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #00D2AA;
  width: 60px;
  height: 60px;
  z-index: 1000;
  border-radius: 50px;
  transition: 0.3s all;
}
.backtotop a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1em;
  height: 1em;
  border: 3px solid white;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}
.backtotop a:hover {
  opacity: 0.5;
}

.copy {
  margin-top: 1rem;
  font-size: clamp(1rem, 0.954rem + 0.21vw, 1.2rem);
}/*# sourceMappingURL=style.css.map */