@charset "UTF-8";
body {
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1024px) {
  body {
    background-color: #333;
  }
}

.loading {
  display: none;
}
.loading.active {
  display: grid;
  place-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: cadetblue;
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
  z-index: 100;
}
.loading.active .loading_text {
  font-size: 3rem;
  color: whitesmoke;
}
.loading.active .loading_text i.fa-drum {
  display: block;
  text-align: center;
}

.top {
  /* hero  =============================================================================  */
  /* movie  =============================================================================  */
  /* main  =============================================================================  */
}
.top .hero {
  animation: 2s flashing;
  animation-duration: 5s;
}
@keyframes flashing {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top .hero .inner .hero_img {
  width: 100%;
}
.top .hero .inner .hero_img img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.top .hero .inner .hero_inside {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top .hero .inner .hero_inside a .hero_logo {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  transition: 0.5s;
}
.top .hero .inner .hero_inside a .hero_logo:hover {
  transform: scale(1.1);
}
.top .hero .inner .hero_inside .hero_title {
  font-size: clamp(2.25rem, 0.718rem + 7.66vw, 5.625rem);
  color: #fff;
  text-shadow: -1px -1px 0 #333, -1px 0 0 #333, -1px 1px 0 #333, 0 -1px 0 #333, 0 1px 0 #333, 1px -1px 0 #333, 1px 0 0 #333, 1px 1px 0 #333;
  white-space: nowrap;
}
.top .hero .inner .hero_inside .hero_title span {
  display: inline-block;
}
.top .hero .inner .hero_inside .hero_title span:nth-of-type(odd) {
  animation: heroTitleFromTop 3s backwards;
}
.top .hero .inner .hero_inside .hero_title span:nth-of-type(even) {
  animation: heroTitleFromBottom 3s backwards;
}
@keyframes heroTitleFromTop {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
  }
}
@keyframes heroTitleFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
  }
}
.top .hero .inner .hero_sns_wrap .hero_sns {
  position: absolute;
  right: 50px;
  bottom: 50px;
  display: flex;
  justify-content: end;
  font-size: 2.5rem;
  color: whitesmoke;
  gap: 50px;
}
.top .hero .inner .hero_sns_wrap .hero_sns li a {
  display: inline-block;
  aspect-ratio: 1/1;
  transition: 0.5s;
}
.top .hero .inner .hero_sns_wrap .hero_sns li a:hover {
  transform: scale(1.5);
}
.top .movie {
  background-color: #333;
}
.top .movie .movie_wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  padding: 50px;
  text-align: center;
}
.top .movie .movie_wrap .movie_1 .iframe_1 {
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
}
.top .movie .movie_wrap .movie_1 .iframe_1:hover {
  transform: scale(1.05);
  transition: 0.5s;
}
.top .movie .movie_wrap .movie_2 .iframe_2 {
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
}
.top .movie .movie_wrap .movie_2 .iframe_2:hover {
  transform: scale(1.05);
  transition: 0.5s;
}
.top main {
  /* lesson_contents  =============================================================================  */
  /* price  =============================================================================  */
  /*   accordion   =============================================================================  */
}
.top main .lesson_contents {
  position: relative;
  background-color: rgb(209, 183, 153);
}
.top main .lesson_contents .inner .title {
  padding: 30px 0 20px;
  font-size: clamp(2.5rem, 1.933rem + 2.84vw, 3.75rem);
  text-align: center;
  color: whitesmoke;
  background-color: cadetblue;
}
.top main .lesson_contents .inner .beginner {
  display: flex;
  width: min(1680px, 100%);
  margin: 0 auto;
  align-items: center;
}
.top main .lesson_contents .inner .beginner .beginner_contents {
  flex: 1;
  margin-right: 50px;
  padding: 30px;
}
.top main .lesson_contents .inner .beginner .beginner_contents .beginner_title_en {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  font-size: clamp(1.875rem, 1.591rem + 1.42vw, 2.5rem);
  text-align: center;
  color: whitesmoke;
  text-shadow: -1px -1px 0 cadetblue, -1px 0 0 cadetblue, -1px 1px 0 cadetblue, 0 -1px 0 cadetblue, 0 1px 0 cadetblue, 1px -1px 0 cadetblue, 1px 0 0 cadetblue, 1px 1px 0 cadetblue;
}
.top main .lesson_contents .inner .beginner .beginner_contents .beginner_title_ja {
  margin-left: 10px;
  padding: 10px;
  border-radius: 10px;
  font-size: clamp(1.25rem, 1.164rem + 0.43vw, 1.5rem);
  color: whitesmoke;
  background-color: cadetblue;
}
.top main .lesson_contents .inner .beginner .beginner_contents .sub_title {
  margin: 30px;
  font-size: 1.2rem;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid cadetblue;
}
.top main .lesson_contents .inner .beginner .beginner_contents p {
  font-size: clamp(1rem, 0.943rem + 0.28vw, 1.125rem);
  line-height: 1.8;
}
.top main .lesson_contents .inner .beginner .beginner_img {
  flex: 1;
  padding: 30px;
  text-align: center;
}
.top main .lesson_contents .inner .beginner .beginner_img img {
  width: 600px;
  height: auto;
  border-radius: 20px;
}
.top main .lesson_contents .inner .scroll_beginner {
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: 0.5s;
}
.top main .lesson_contents .inner .scroll_beginner.fade_in {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.top main .lesson_contents .inner .scroll_img {
  opacity: 0;
  visibility: hidden;
  transition: 3s;
}
.top main .lesson_contents .inner .scroll_img.fade_in {
  opacity: 1;
  visibility: visible;
}
.top main .lesson_contents .inner .beginner_detail .beginner_detail_title {
  width: 80%;
  margin: 10px auto 100px;
  padding: 10px 20px;
  text-align: center;
  background-color: whitesmoke;
  color: #333;
  font-size: 1.5rem;
  border-radius: 10px;
  cursor: pointer;
}
.top main .lesson_contents .inner .beginner_detail .beginner_detail_title span {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 5px 5px;
  background-color: cadetblue;
  font-size: 1.5rem;
  color: whitesmoke;
  border-radius: 5px;
}
.top main .lesson_contents .inner .beginner_detail .beginner_detail_title:hover {
  filter: brightness(85%);
}
.top main .lesson_contents .inner .beginner_detail .modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-height: 85%;
  padding: 10px;
  background-color: whitesmoke;
  border-radius: 20px;
  overflow-y: scroll;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
}
.top main .lesson_contents .inner .beginner_detail .modal .modal_contents {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}
.top main .lesson_contents .inner .beginner_detail .modal .modal_contents h4 {
  display: inline-block;
  margin: 10px 0;
  padding: 10px 5px 5px;
  background-color: cadetblue;
  font-size: 1.5rem;
  color: whitesmoke;
  border-radius: 10px;
}
.top main .lesson_contents .inner .beginner_detail .modal .modal_contents h4::after {
  content: "\f0a6";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.top main .lesson_contents .inner .beginner_detail .modal .modal_contents h4 span {
  font-size: 1.5rem;
}
.top main .lesson_contents .inner .beginner_detail .modal .modal_contents p {
  font-size: clamp(1rem, 0.914rem + 0.43vw, 1.25rem);
  line-height: 1.8;
}
.top main .lesson_contents .inner .beginner_detail .modal a {
  border: #333;
  font-size: 3rem;
  position: absolute;
  top: 10px;
  right: 20px;
}
.top main .lesson_contents .inner .beginner_detail .modal a:hover {
  opacity: 0.5;
}
.top main .lesson_contents .inner .beginner_detail .modal.show {
  visibility: visible;
  opacity: 1;
}
.top main .lesson_contents .inner .beginner_detail .mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
.top main .lesson_contents .inner .beginner_detail .mask.show {
  visibility: visible;
  opacity: 0.7;
}
.top main .lesson_contents .inner .experiencer {
  flex-direction: row-reverse;
  display: flex;
  width: min(1680px, 100%);
  margin: 0 auto;
  align-items: center;
}
.top main .lesson_contents .inner .experiencer .experiencer_contents {
  flex: 1;
  margin-right: 50px;
  padding: 30px;
}
.top main .lesson_contents .inner .experiencer .experiencer_contents .experiencer_title_en {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  font-size: clamp(1.875rem, 1.591rem + 1.42vw, 2.5rem);
  text-align: center;
  color: cadetblue;
  text-shadow: -1px -1px 0 whitesmoke, -1px 0 0 whitesmoke, -1px 1px 0 whitesmoke, 0 -1px 0 whitesmoke, 0 1px 0 whitesmoke, 1px -1px 0 whitesmoke, 1px 0 0 whitesmoke, 1px 1px 0 whitesmoke;
}
.top main .lesson_contents .inner .experiencer .experiencer_contents .experiencer_title_ja {
  margin-left: 10px;
  padding: 10px;
  border-radius: 10px;
  font-size: clamp(1.25rem, 1.164rem + 0.43vw, 1.5rem);
  background-color: whitesmoke;
  font-size: clamp(1.25rem, 1.164rem + 0.43vw, 1.5rem);
  color: cadetblue;
}
.top main .lesson_contents .inner .experiencer .experiencer_contents .sub_title {
  margin: 30px;
  font-size: 1.2rem;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid cadetblue;
}
.top main .lesson_contents .inner .experiencer .experiencer_contents p {
  font-size: clamp(1rem, 0.943rem + 0.28vw, 1.125rem);
  line-height: 1.8;
}
.top main .lesson_contents .inner .experiencer .experiencer_img {
  flex: 1;
  padding: 30px 30px 40px;
  text-align: center;
}
.top main .lesson_contents .inner .experiencer .experiencer_img img {
  width: 600px;
  height: auto;
  border-radius: 20px;
}
.top main .lesson_contents .inner .scroll_experiencer {
  visibility: hidden;
  opacity: 0;
  transform: translateY(100px);
  transition: 0.5s;
}
.top main .lesson_contents .inner .scroll_experiencer.fade_in {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.top main .price {
  background-color: rgb(217, 212, 203);
  padding: 50px;
}
.top main .price .inner {
  display: block;
  width: min(1680px, 100%);
  margin: 0 auto;
  margin-bottom: 0;
}
.top main .price .inner .price_menu {
  background-color: cadetblue;
  padding: 20px;
  color: whitesmoke;
  border-radius: 20px;
}
.top main .price .inner .price_title {
  margin-bottom: 10px;
  text-align: center;
  font-size: clamp(1rem, 0.433rem + 2.84vw, 2.25rem);
  font-weight: bold;
}
.top main .price .inner .price_title .price_title_tax {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: bold;
}
.top main .price .inner .price_table {
  margin: 0 auto;
  font-size: clamp(1rem, 0.546rem + 2.27vw, 2rem);
  border-spacing: 0px 1px;
  counter-reset: lesson;
}
.top main .price .inner .price_table th {
  text-align: left;
  vertical-align: middle;
  padding: 10px 5px 5px;
  font-weight: normal;
  color: whitesmoke;
  border-bottom: #999 1px solid;
}
.top main .price .inner .price_table td {
  text-align: left;
  vertical-align: middle;
  padding: 5px;
  font-size: clamp(1rem, 0.546rem + 2.27vw, 2rem);
  color: #999;
  border-bottom: #999 1px solid;
}
.top main .price .inner .price_table td::before {
  content: "¥";
}
.top main .price .inner .price_table th {
  background-color: #707070;
  width: 40vw;
  text-align: center;
  border-right: #999 1px solid;
}
.top main .price .inner .price_table th::before {
  counter-increment: lesson;
  content: counter(lesson) " レッスン / 月";
}
.top main .price .inner .price_table th,
.top main .price .inner .price_table td {
  background-color: whitesmoke;
  width: 40vw;
  text-align: center;
  border-left: whitesmoke 1px solid;
  border-right: #999 1px solid;
}
.top main .price .inner .price_table th {
  text-align: center;
  color: #999;
}
.top main .price .price_sub_item {
  margin: 10px;
  padding: 10px;
  text-align: center;
  font-size: clamp(1rem, 0.773rem + 1.13vw, 1.5rem);
  color: whitesmoke;
  border: 1px solid whitesmoke;
  border-radius: 20px;
}
.top main .price .supplement .supplement_text {
  width: 90%;
  margin: 10px auto;
  padding: 10px;
  font-size: clamp(1rem, 0.887rem + 0.57vw, 1.25rem);
  color: #707070;
  border: 2px solid cadetblue;
  border-radius: 10px;
}
/* レッスン中止 */
.top main .price .stopLesson p {
  font-size: 20px;
  text-align: center;
  color: rgb(182, 119, 2);
}
.top main .price_menu {
  visibility: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: 0.5s;
}
.top main .price_menu.fade_in {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.top main .accordion {
  padding-top: 50px;
  background-color: rgb(209, 183, 153);
}
.top main .accordion .accordion_item {
  width: 90%;
  margin: 0 auto;
}
.top main .accordion .accordion_item .accordion_title {
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  font-size: clamp(1.125rem, 0.955rem + 0.85vw, 1.5rem);
  color: whitesmoke;
  cursor: pointer;
}
.top main .accordion .accordion_item .accordion_content {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}
.top main .accordion .accordion_item .accordion_content.active {
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  height: auto;
  line-height: 0;
  opacity: 1;
  transition: 0.5s;
}
.top main .accordion .accordion_content p {
  padding: 10px;
  font-size: clamp(1rem, 0.943rem + 0.28vw, 1.125rem);
  line-height: 1.5;
}
.top main .accordion .accordion_item:nth-of-type(1) .accordion_title,
.top main .accordion .accordion_item:nth-of-type(3) .accordion_title {
  background-color: cadetblue;
}
.top main .accordion .accordion_item:nth-of-type(2) .accordion_title,
.top main .accordion .accordion_item:nth-of-type(4) .accordion_title {
  background-color: #707070;
}
.top main .accordion .accordion_item:nth-of-type(1) .accordion_content,
.top main .accordion .accordion_item:nth-of-type(3) .accordion_content {
  border-bottom: 0 solid cadetblue;
  border-left: 2px solid cadetblue;
  border-right: 2px solid cadetblue;
  background-color: whitesmoke;
}
.top main .accordion .accordion_item:nth-of-type(2) .accordion_content {
  border-bottom: 0 solid #707070;
  border-left: 2px solid #707070;
  border-right: 2px solid #707070;
  background-color: whitesmoke;
}
.top main .accordion .accordion_item:nth-of-type(4) .accordion_content {
  border-bottom: 2px solid #707070;
  border-left: 2px solid #707070;
  border-right: 2px solid #707070;
  background-color: whitesmoke;
}
.top main .accordion .accordion_title {
  position: relative;
}
.top main .accordion .accordion_title::after {
  position: absolute;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  top: 38%;
  right: 25px;
  border-top: solid 2px whitesmoke;
  border-right: solid 2px whitesmoke;
  transform: rotate(135deg);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}
.top main .accordion .accordion_title.open::after {
  top: 45%;
  transform: rotate(-45deg);
}
.top main .accordion .studio_list a {
  display: inline-block;
  font-size: clamp(1rem, 0.943rem + 0.28vw, 1.125rem);
  color: black;
  line-height: 2.5;
  transition: 0.5s;
}
.top main .accordion .studio_list a:hover {
  opacity: 0.5;
  transform: scale(1.05);
}
.top main .accordion .banner {
  padding: 20px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-300px);
  transition: 1s;
}
.top main .accordion .banner.fade_in {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.top main .accordion .banner a img {
  width: 300px;
  height: 100px;
  border: 1px solid #000;
  transition: 0.5s;
}
.top main .accordion .banner a:hover img {
  transition: 0.5s;
  transform: scale(1.1);
}

@media screen and (max-width: 1024px) {
  .top {
    /* main  =============================================================================  */
  }
  .top .hero {
    height: 100vh;
    animation: fadeIn 10s;
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .top .hero .inner {
    background-color: #333;
  }
  .top .hero .inner .hero_img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .top .hero .inner .hero_img img {
    width: 100%;
    height: 55vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top .hero .inner .hero_inside a .hero_logo {
    width: 75px;
    margin-bottom: 10px;
  }
  .top .hero .inner .hero_inside .hero_titke {
    font-size: 2rem;
  }
  .top .hero .inner .hero_sns_wrap {
    position: relative;
    bottom: 0;
  }
  .top .hero .inner .hero_sns_wrap .hero_sns {
    right: 30px;
    bottom: 30px;
    gap: 30px;
    font-size: 2rem;
  }
  .top .movie .movie_wrap {
    gap: 30px;
    background-color: rgb(217, 212, 203);
  }
  .top .movie .movie_wrap .movie_1 .iframe_1 {
    width: 400px;
    height: auto;
    aspect-ratio: 16/9;
  }
  .top .movie .movie_wrap .movie_2 .iframe_2 {
    width: 400px;
    height: auto;
    aspect-ratio: 16/9;
  }
  .top main {
    /* lesson_contents  =============================================================================  */
  }
  .top main .lesson_contents .inner .beginner {
    flex-direction: column;
  }
  .top main .lesson_contents .inner .beginner .beginner_contents {
    flex: 1;
    margin-right: 0;
    margin-left: 0;
    padding: 20px;
  }
  .top main .lesson_contents .inner .beginner .beginner_img img {
    width: 50%;
    height: auto;
    aspect-ratio: auto;
  }
  .top main .lesson_contents .inner .beginner_detail .beginner_detail_title {
    margin-bottom: 50px;
    font-size: 1.2rem;
  }
  .top main .lesson_contents .inner .beginner_detail .beginner_detail_title span {
    font-size: 1.2rem;
  }
  .top main .lesson_contents .inner .beginner_detail .modal {
    width: 90%;
    height: 90%;
    overflow-y: scroll;
  }
  .top main .lesson_contents .inner .experiencer {
    flex-direction: column;
  }
  .top main .lesson_contents .inner .experiencer .experiencer_contents {
    flex: 1;
    margin-right: 0;
    padding: 20px;
  }
  .top main .lesson_contents .inner .experiencer .experiencer_img img {
    width: 50%;
    height: auto;
    aspect-ratio: auto;
  }
}
@media screen and (max-width: 599px) {
  .top .hero .inner .hero_inside a .hero_logo {
    margin-bottom: 10px;
  }
  .top .hero .inner .hero_sns_wrap .hero_sns {
    right: 30px;
    bottom: 30px;
    gap: 30px;
    font-size: 1.5rem;
  }
  .top .movie .movie_wrap .movie_1 .iframe_1 {
    width: 300px;
    height: auto;
    aspect-ratio: 16/9;
  }
  .top .movie .movie_wrap .movie_2 .iframe_2 {
    width: 300px;
    height: auto;
    aspect-ratio: 16/9;
  }
  .top main {
    /* lesson_contents  =============================================================================  */
  }
  .top main .lesson_contents .inner .beginner .beginner_contents {
    margin-right: 0;
  }
  .top main .lesson_contents .inner .beginner .beginner_img {
    padding-bottom: 10px;
  }
  .top main .lesson_contents .inner .beginner .beginner_img img {
    width: 75%;
  }
  .top main .lesson_contents .inner .beginner_detail .beginner_detail_title {
    margin-bottom: 10px;
    padding: 5px;
    font-size: 1rem;
  }
  .top main .lesson_contents .inner .beginner_detail .beginner_detail_title span {
    font-size: 1.2rem;
  }
  .top main .lesson_contents .inner .beginner_detail .modal {
    overflow-y: scroll;
    font-size: 1rem;
    padding: 3px;
  }
  .top main .lesson_contents .inner .beginner_detail .modal span .fa-hand-point-up {
    font-size: 1rem;
  }
  .top main .lesson_contents .inner .experiencer {
    flex-direction: column;
  }
  .top main .lesson_contents .inner .experiencer .experiencer_contents {
    flex: 1;
    padding: 20px;
  }
  .top main .lesson_contents .inner .experiencer .experiencer_img img {
    width: 75%;
  }
  .top main .price {
    padding: 20px;
  }
  .top main .price .supplement_text {
    width: 100%;
  }
  .top main .accordion {
    padding-top: 20px;
  }
  .top main .accordion .banner a img {
    width: 210px;
    height: 70px;
  }
}
.profile {
  /*   profile   =============================================================================  */
}
.profile .profile {
  animation: 2s flashing;
  animation-duration: 3s;
}
@keyframes flashing {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.profile .profile .inner {
  display: flex;
  align-items: center;
  flex-direction: row;
  background-color: whitesmoke;
}
.profile .profile .inner .profile_img {
  position: relative;
  background-image: url(img/profile.jpg);
  background-size: cover;
  background-position: 60%;
  background-repeat: no-repeat;
  width: 100vh;
  height: 100vh;
  flex: 1.5;
}
.profile .profile .inner .profile_contents {
  padding: 60px 20px 20px;
  flex: 1;
  animation: 2s profileTextSoftlyDisplay;
  animation-duration: 2s;
}
@keyframes profileTextSoftlyDisplay {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
  }
}
.profile .profile .inner .profile_contents .profile_title {
  width: 100%;
  height: 70px;
  margin-bottom: 10px;
  padding: 8px 0 5px;
  text-align: center;
  background-color: cadetblue;
  font-size: clamp(2.5rem, 1.933rem + 2.84vw, 3.75rem);
  color: whitesmoke;
  border-radius: 10px;
}
.profile .profile .inner .profile_contents .profile_name_ja {
  font-size: clamp(1.875rem, 1.591rem + 1.42vw, 2.5rem);
}
.profile .profile .inner .profile_contents .profile_name_en {
  padding-bottom: 20px;
  font-size: clamp(1rem, 0.773rem + 1.13vw, 1.5rem);
}
.profile .profile .inner .profile_contents .profile_birthday {
  font-size: clamp(1.875rem, 1.591rem + 1.42vw, 2.5rem);
}
.profile .profile .inner .profile_contents .profile_text {
  font-size: clamp(1rem, 0.943rem + 0.28vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 20px;
}
.profile .profile .inner .profile_contents .text {
  font-size: clamp(1.25rem, 1.164rem + 0.43vw, 1.5rem);
  margin-bottom: 10px;
  text-align: center;
}
.profile .profile .inner .profile_contents .endorser {
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile .profile .inner .profile_contents .endorser .endorser_img {
  width: 150px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.profile .profile .inner .profile_contents .endorser img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .profile .profile .inner {
    flex-direction: column;
  }
  .profile .profile .inner .profile_img {
    background-size: cover;
    background-position: 90% 30%;
    flex: 600px;
    width: 100%;
    height: auto;
  }
  .profile .profile .inner .profile_contents {
    padding: 20px;
  }
}
@media (max-width: 599px) {
  .profile .profile .inner .profile_img {
    flex: 450px;
  }
  .profile .profile .inner .profile_contents .profile_title {
    height: 50px;
  }
  .profile .profile .inner .profile_contents .endorser .endorser_img {
    width: 100px;
  }
}

.contact {
  /*   contact   =============================================================================  */
}
.contact .contactSection {
  /* mixinにする */
  position: relative;
  background-image: url(img/img_4.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  animation: 2s flashing;
  animation-duration: 3s;
}
@keyframes flashing {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.contact .contactSection .inner {
  display: grid;
  place-items: center;
  flex-direction: column;
}
.contact .contactSection .inner .mail_container {
  margin-top: 150px;
}
.contact .contactSection .inner .mail_container .page_title {
  display: block;
  margin: 100px 0 30px;
  padding: 10px;
  background-color: whitesmoke;
  font-size: 2rem;
  color: cadetblue;
  border: 1px solid cadetblue;
  border-radius: 10px;
}
.contact .contactSection .inner .mail_container .mail_background {
  padding: 10px;
  border-radius: 10px;
  background-color: cadetblue;
  opacity: 0.9;
}
.contact .contactSection .inner .mail_container .mail_background label {
  display: block;
  padding-top: 5px;
  font-size: 1.5rem;
  color: whitesmoke;
  cursor: pointer;
}
.contact .contactSection .inner .mail_container .mail_background label span {
  font-size: 1rem;
  color: saddlebrown;
}
.contact .contactSection .inner .mail_container input[type=text],
.contact .contactSection .inner .mail_container input[type=email],
.contact .contactSection .inner .mail_container input[type=tel],
.contact .contactSection .inner .mail_container textarea {
  width: 500px;
  margin-bottom: 30px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.85);
  font-size: 1.5rem;
  border: 1px solid cadetblue;
  border-radius: 10px;
  cursor: pointer;
}
.contact .contactSection .inner .mail_container input[type=text]:focus,
.contact .contactSection .inner .mail_container input[type=email]:focus,
.contact .contactSection .inner .mail_container input[type=tel]:focus,
.contact .contactSection .inner .mail_container textarea:focus {
  outline: 3px saddlebrown solid;
}
.contact .contactSection .inner .mail_container textarea {
  height: 200px;
}
.contact .contactSection .inner .mail_container textarea:focus {
  outline: 3px saddlebrown solid;
}
.contact .contactSection .inner .mail_container form div {
  margin-bottom: 10px;
}
.contact .contactSection .inner .mail_container .button {
  margin-bottom: 20px;
  padding: 10px 5px 5px;
  background-color: whitesmoke;
  box-sizing: border-box;
  font-size: 2rem;
  color: cadetblue;
  line-height: 1;
  border: 1px solid cadetblue;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.8;
  transition: 0.5s;
}
.contact .contactSection .inner .mail_container .button:hover {
  color: whitesmoke;
  border: 1px solid whitesmoke;
  background-color: cadetblue;
}
@media (max-width: 1024px) {
  .contact .contactSection .inner .mail_container {
    margin-top: 80px;
  }
  .contact .contactSection .inner .mail_container .page_title {
    font-size: 1.5rem;
  }
  .contact .contactSection .inner .mail_container .mail_background {
    padding: 5px;
  }
  .contact .contactSection .inner .mail_container .mail_background label {
    font-size: 1.2rem;
  }
  .contact .contactSection .inner .mail_container .mail_background label span {
    font-size: 1rem;
    color: saddlebrown;
  }
  .contact .contactSection .inner .mail_container input[type=text],
.contact .contactSection .inner .mail_container input[type=email],
.contact .contactSection .inner .mail_container input[type=tel],
.contact .contactSection .inner .mail_container textarea {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 1.2rem;
  }
  .contact .contactSection .inner .mail_container textarea {
    height: 130px;
  }
  .contact .contactSection .inner .mail_container textarea:focus {
    outline: 2px saddlebrown solid;
  }
  .contact .contactSection .inner .mail_container form div {
    margin-bottom: 10px;
  }
  .contact .contactSection .inner .mail_container input[type=submit] {
    font-size: 1.5rem;
  }
}
@media (max-width: 599px) {
  .contact .contactSection {
    background-image: url(img/img_4_sp.jpg);
  }
  .contact .contactSection .inner .mail_container .page_title {
    margin-top: 60px;
    padding: 5px 10px 5px;
    font-size: 1.5rem;
  }
  .contact .contactSection .inner .mail_container .mail_background {
    padding: 5px;
  }
  .contact .contactSection .inner .mail_container .mail_background label {
    padding-top: 3px;
    font-size: 1.2rem;
  }
  .contact .contactSection .inner .mail_container input[type=text],
.contact .contactSection .inner .mail_container input[type=email],
.contact .contactSection .inner .mail_container input[type=tel],
.contact .contactSection .inner .mail_container textarea {
    width: 350px;
    margin-bottom: 10px;
    border-radius: 10px;
  }
}

/* header  =============================================================================  */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(3, 3, 3, 0.3);
  z-index: 10;
  transition: 0.5;
}
.header nav .menu {
  display: flex;
  justify-content: space-around;
  padding-top: 5px;
  align-items: center;
  height: 60px;
}
.header nav .menu li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-size: 3rem;
  color: whitesmoke;
}
.header nav .menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: whitesmoke;
  visibility: hidden;
  opacity: 0;
  transition: 2s;
  transform: scale(0, 1);
}
.header nav .menu li a:hover::after {
  transform-origin: center top;
  transition: 0.5s;
  visibility: visible;
  opacity: 1;
  transform: scale(1, 1);
}

@media screen and (max-width: 1024px) {
  body {
    background-color: #333;
  }
  body .header {
    background-color: transparent;
    z-index: 1;
    height: 80px;
    padding: 0 20px;
  }
  body .header nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    visibility: hidden;
    overflow-y: auto;
    padding: 50px;
  }
  body .header nav .blocks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    opacity: 0.9;
    z-index: 2;
  }
  body .header nav .blocks li {
    background-color: #000;
    will-change: transform;
  }
  body .header nav .menu {
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    z-index: 3;
  }
  body .header nav .menu li {
    text-align: center;
  }
  body .header nav .menu li a {
    color: #fff;
    font-size: 50px;
    letter-spacing: 0.1em;
  }
  body .header nav .menu li + li {
    margin-top: 50px;
  }
  body .header .hamburgar {
    display: block;
    height: 70%;
    aspect-ratio: 1/1;
    position: relative;
    cursor: pointer;
    z-index: 4;
  }
  body .header .hamburgar::before, body .header .hamburgar::after {
    content: "";
    display: block;
    height: 3px;
    width: 75%;
    background-color: #eee;
    position: absolute;
    transition: 0.2s ease-out;
  }
  body .header .hamburgar::before {
    top: 35%;
    left: 5%;
  }
  body .header .hamburgar::after {
    bottom: 35%;
    right: 5%;
  }
  body .header .hamburgar:hover::before {
    left: 12.5%;
  }
  body .header .hamburgar:hover::after {
    right: 12.5%;
  }
  body .header .hamburgar.active::before {
    top: 49%;
    left: 12.5%;
    transform: rotate(45deg);
  }
  body .header .hamburgar.active::after {
    bottom: 49%;
    right: 12.5%;
    transform: rotate(-45deg);
  }
}
/* footer  =============================================================================  */
.footer {
  padding: 30px 30px 15px;
  background-color: #333;
}
.footer .inner {
  width: min(1680px, 100%);
  margin: 0 auto;
}
.footer .inner .footer_sns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  gap: 50px;
  font-size: clamp(1.5rem, 0.819rem + 3.4vw, 3rem);
  color: whitesmoke;
}
.footer .inner .footer_sns li a {
  display: grid;
  place-items: center;
  transition: 0.5s;
}
.footer .inner .footer_sns li a:hover {
  transform: scale(1.5);
  transition: 0.5;
}
.footer .inner .footer_sns li:nth-of-type(4) a:hover {
  transform: scale(1.2);
  transition: 0.5;
}
.footer .inner .footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.footer .inner .footer-menu li {
  text-decoration: none;
  text-align: center;
}
.footer .inner .footer-menu li a {
  display: block;
  width: 320px;
  padding: 10px 30px 5px;
  background-color: whitesmoke;
  font-size: clamp(1.125rem, 0.728rem + 1.99vw, 2rem);
  color: #262626;
  border: 1px solid #999;
  border-radius: 5px;
  transition: 0.5s;
}
.footer .inner .footer-menu li a:hover {
  color: whitesmoke;
  background-color: #262626;
}
.footer .inner .logo {
  width: 90px;
  height: 50px;
}
.footer .footer_copy {
  width: 100%;
  text-align: center;
  color: whitesmoke;
}
.footer .footer_copy p {
  padding-top: 20px;
}

@media screen and (max-width: 599px) {
  body .footer .inner .footer_sns {
    gap: 30px;
  }
}/*# sourceMappingURL=style.css.map */