@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&display=swap");
@import url("all.css");
/*===============================

共通

================================*/
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
/*===============================

タイトル

================================*/
.ttl {
  width: 500px;
  margin: auto;
  padding: 0 0 25px;
}
@media screen and (max-width: 767px) {
  .ttl {
    width: 80%;
  }
}

/*
調整
================================*/
.inner {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 50px 0;
  }
}

.adjustment {
  margin: 70px 0 0;
}

.shadow_w {
  text-shadow: 2px 2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff, -2px -2px 1px #fff;
}

.white {
  filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}

.fade_wrap {
  position: relative;
  margin: 0 auto;
}

.fademovie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.fade_text_01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.fade_text_02 {
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
}

.fade_text_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1;
}

.fade_click_inner {
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 103%;
  height: 103%;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
}

.fade_image {
  position: absolute;
  top: 3.5%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 92%;
  height: 92%;
  z-index: 1;
  object-fit: cover;
}

.fade_movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fade_click {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
}

.swiper-slide-active .fade_text_01 {
  animation: slideFromText 1s ease 0s 1 normal;
}

.swiper-slide-active .fade_text_02 {
  animation: slideFromText 1s ease 0s 1 normal;
}

.swiper-slide-active .fade_text_inner {
  animation: slideFromWhite 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.swiper-slide-active .fade_image {
  animation: slideFromWhite 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.swiper-slide-active .fade_movie {
  animation: slideFromRightMovie 555.5s ease 0s 1 normal;
}

.swiper-slide-active .fade_click {
  animation: slideFromClick 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.swiper-slide-active .fade_click_inner {
  animation: slideFromWhite 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes slideFromText {
  0%, 25% {
    transform: translateY(5px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slideFromClick {
  0%, 25% {
    transform: translateY(0px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slideFromWhite {
  0%, 25% {
    transform: translateX(0px);
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
    opacity: 0;
  }
}
.main_pc_01 {
  animation-delay: 0.5s;
}

.main_pc_02 {
  animation-delay: 1s;
}

.main_pc_03 {
  animation-delay: 1.5s;
}

.main_pc_04 {
  animation-delay: 2s;
}

.main_pc_05 {
  animation-delay: 2.5s;
}

.main_pc_06 {
  animation-delay: 3s;
}

.main_pc_07 {
  animation-delay: 3.5s;
}

.main_pc_08 {
  animation-delay: 4.5s;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeStay {
  animation-name: fadeStayAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeStayAnime {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mainFrom01 {
  0%, 25% {
    transform: translateY(5px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes mainFrom02 {
  0%, 25% {
    transform: translateY(0px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
/*
オン・オフ
================================*/
.button_more {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #7335ff;
  font-size: 18px;
  border-radius: 30px;
  width: 320px;
  height: 60px;
  margin: auto;
  font-weight: bold;
  border: 1px solid #7335ff;
  position: relative;
  transition: 0.3s;
  background-color: #ffffff;
}

.button_more::before {
  content: "CLICK!!";
  display: block;
  font-size: 1.4rem;
  background-color: #7335ff;
  color: #fff;
  border-radius: 3px;
  padding: 5px 10px 7px;
  position: absolute;
  top: 0;
  left: 10px;
  transform: translate(-5px, -30%);
  transition: 0.3s;
}

.button_more:hover::before {
  transform: translate(-5px, -50%);
}

.button_pickup {
  display: flex;
  margin: 20px 0 0;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 5px;
  width: 320px;
  height: 60px;
  position: relative;
  transition: 0.3s;
  background-color: #7335ff;
}
@media screen and (max-width: 768px) {
  .button_pickup {
    width: 100%;
    height: 50px;
    margin: 0;
    font-size: 1.4rem;
  }
}

.button_pickup::before, .button_pickup::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform-origin: 100% 50%;
  height: 2px;
  width: 12px;
  background-color: #fff;
  border-radius: 2px;
  will-change: transform;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .button_pickup::before, .button_pickup::after {
    right: 5px;
  }
}

.button_pickup::before {
  transform: translateY(-50%) rotate(30deg);
}

.button_pickup::after {
  transform: translateY(-50%) rotate(-30deg);
}

.button_pickup:hover::before {
  transform: translate(5px, -50%) rotate(30deg);
}

.button_pickup:hover::after {
  transform: translate(5px, -50%) rotate(-30deg);
}

.color01 {
  color: #ff3980;
}

.color02 {
  color: #ff7706;
}

.color03 {
  color: #44b9a4;
}

.color04 {
  color: #00d8ff;
}

.color05 {
  color: #b931ff;
}

.color06 {
  color: #b39003;
}

.color07 {
  color: #ff83a3;
}

.color08 {
  color: #86ddcd;
}

.bg_color01 {
  background-color: #ff8caa;
}

.bg_color02 {
  background-color: #31ecb6;
}

.bg_color03 {
  background-color: #fff100;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -webkit-tab-size: 4;
  tab-size: 4;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: #fff;
  color: black;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-size: 1.6rem;
}

img {
  max-width: 100%;
}

/*
補足
================================*/
.br_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .br_sp {
    display: block;
  }
}

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

.flex {
  display: flex;
}

#wrapper {
  width: 100%;
  overflow-x: hidden !important;
}

/*===============================

認証ページ

================================*/
.index {
  background: url("../img/index_pc.jpg") no-repeat center top;
  background-size: 100% auto;
  height: 100vh;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .index {
    background: none;
    height: 0;
    padding-top: 177.86%;
  }
}
.index h1 {
  padding: 3% 0 0;
  font-size: 1.6rem;
  text-shadow: #fff 2px 0px 2px, #fff -2px 0px 2px, #fff 0px -2px 2px, #fff -2px 0px 2px, #fff 2px 2px 2px, #fff -2px 2px 2px, #fff 2px -2px 2px, #fff -2px -2px 2px, #fff 1px 2px 2px, #fff -1px 2px 2px, #fff 1px -2px 2px, #fff -1px -2px 2px, #fff 2px 1px 2px, #fff -2px 1px 2px, #fff 2px -1px 2px, #fff -2px -1px 2px, #fff 1px 1px 2px, #fff -1px 1px 2px, #fff 1px -1px 2px, #fff -1px -1px 2px;
}
@media screen and (max-width: 767px) {
  .index h1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-size: 1.2rem;
    z-index: 2;
  }
}
.index__logo {
  width: 500px;
  margin: auto;
  padding: 14% 0 0;
}
.index__exit {
  position: absolute;
  bottom: 4%;
  left: 0;
  right: 0;
  color: white;
  font-size: 1.6rem;
  font-weight: 300;
  text-shadow: 1px 1px 5px #000;
}
@media screen and (max-width: 767px) {
  .index__exit {
    bottom: 5px;
    font-size: 1.1rem;
  }
}
.index__exit a {
  color: white;
}
.index .bg {
  position: absolute;
  top: 0;
  z-index: 2;
}
.index .video_01 {
  position: absolute;
  top: 23%;
  right: -5%;
  width: 50%;
  z-index: 1;
}
.index .video_01 video {
  width: 100%;
  transform: rotate(18deg);
}
.index .video_02 {
  position: absolute;
  bottom: 25%;
  left: -5%;
  width: 50%;
  z-index: 1;
}
.index .video_02 video {
  width: 100%;
  transform: rotate(-7deg);
}

.container {
  position: absolute;
  margin: auto;
  width: 19.27vw;
  height: 5.72vw;
  border-radius: 10px;
  left: 0;
  right: 0;
  bottom: 100px;
}

/*
SEOテキスト
================================*/
.seo {
  background: url("../img/seo_bg.jpg") center top;
  background-size: 75% auto;
  padding: 75px 0;
}
@media screen and (max-width: 767px) {
  .seo {
    background: url("../img/seo_bg.jpg");
    background-size: cover;
    padding: 15px;
  }
}
.seo h2 {
  position: relative;
  margin: 0 0 30px;
  padding: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .seo h2 {
    padding: 0;
  }
}
.seo h2:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 40px);
  width: 80px;
  height: 5px;
  content: "";
  border-radius: 3px;
  background: #ff8fab;
}
.seo__inner {
  max-width: 1200px;
  margin: auto;
  padding: 50px 50px 75px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .seo__inner {
    padding: 20px 20px 30px;
    font-size: 1.2rem;
  }
}
.seo__inner p {
  padding: 0 0 30px;
}

.index-banner {
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 100px 0 0;
}
@media screen and (max-width: 767px) {
  .index-banner {
    padding: 50px 0 0;
    align-items: stretch;
  }
}
.index-banner a {
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .index-banner a {
    width: 100%;
  }
}
.index-banner img {
  display: block;
  margin: auto;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .index-banner img {
    width: 100%;
  }
}
.index-banner iframe {
  display: block;
  max-width: 468px;
  width: 100%;
  height: auto;
  margin: auto;
  aspect-ratio: 468/60;
}

.shoplist {
  max-width: 1220px;
  margin: auto;
  padding: 100px 0 50px;
}
@media screen and (max-width: 767px) {
  .shoplist {
    padding: 30px 0 10px;
  }
}
.shoplist ul {
  display: flex;
  flex-wrap: wrap;
}
.shoplist li {
  width: 33.3333333333%;
}
@media screen and (max-width: 767px) {
  .shoplist li {
    width: 50%;
  }
}
.shoplist a {
  display: block;
}
.shoplist p {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 10px;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .shoplist p {
    height: 40px;
    font-size: 1.1rem;
    line-height: 1.2;
  }
}
.shoplist__ttl {
  width: 600px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .shoplist__ttl {
    width: 100%;
  }
}
.shoplist__inner {
  margin: 10px;
  background-color: white;
  box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .shoplist__inner {
    margin: 3px;
  }
}

/*===============================

パンくずリスト

================================*/
.breadcrumb {
  background-color: #eee;
}
.breadcrumb ol {
  display: flex;
  max-width: 1530px;
  margin: auto;
  padding: 15px 0;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb ol {
    font-size: 1rem;
  }
}
.breadcrumb li {
  display: inline;
  list-style-type: none;
}
.breadcrumb li::after {
  content: " > ";
}
.breadcrumb li:last-child:after {
  content: "";
}
.breadcrumb a {
  color: #888;
  text-decoration: none;
}

/*===============================

スライド

================================*/
.slide {
  position: relative;
  margin: 60px 0 0;
}
.slide .bg {
  z-index: 2;
}
.slide .video {
  position: absolute;
  top: 23%;
  right: -5%;
  width: 50%;
  z-index: -1;
}
.slide .video video {
  width: 100%;
  transform: rotate(18deg);
}

/*===============================

ピックアップ

================================*/
.pickup {
  padding: 100px 0;
  background-color: #ffe8f2;
}
@media screen and (max-width: 767px) {
  .pickup {
    padding: 30px 0 0;
  }
}
.pickup ul {
  max-width: 1600px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .pickup ul {
    margin-top: -70px;
    padding: 10px;
  }
}
.pickup figure {
  position: relative;
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  .pickup figure {
    margin: 0 10px;
  }
}
.pickup figure .image {
  position: absolute;
  width: 37%;
  top: 6%;
  right: 3%;
}
@media screen and (max-width: 767px) {
  .pickup figure .image {
    width: 95%;
    top: 5%;
    right: 0;
    left: 0;
    margin: auto;
  }
}
.pickup figure .data {
  position: absolute;
  top: 28.5%;
  left: 2.5%;
  width: 54%;
}
@media screen and (max-width: 767px) {
  .pickup figure .data {
    right: 0;
    left: 0;
    margin: auto;
    width: 95%;
  }
}
.pickup figure .data .comment {
  overflow-y: auto;
  height: 30vh;
  font-weight: 400;
  line-height: 1.65;
}
@media screen and (max-width: 767px) {
  .pickup figure .data .comment {
    display: none;
  }
}
.pickup figure .name {
  position: absolute;
  bottom: 21%;
  left: 2.5%;
  width: 54%;
  font-size: 2rem;
  text-align: center;
}
.pickup figure .name span {
  color: #fa589e;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .pickup figure .name {
    bottom: 23.5%;
    right: 0;
    left: 0;
    margin: auto;
    width: 95%;
  }
  .pickup figure .name span {
    display: block;
    padding: 0 0 5px;
    font-size: 2.5rem;
  }
}
.pickup figure .comment_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .pickup figure .comment_sp {
    overflow-y: auto;
    height: 100px;
    display: block;
    position: absolute;
    bottom: 8%;
    left: 0;
    padding: 0 20px;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4;
  }
}
.pickup .name {
  padding: 0 0 20px;
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .pickup .name {
    padding: 0 0 10px;
    font-weight: 500;
  }
}

/*===============================

新人

================================*/
.newface {
  padding: 100px 0;
  background: url("../img/newface_bg.png");
  background-size: 5% auto;
}
@media screen and (max-width: 767px) {
  .newface {
    padding: 50px 0;
    background-size: 15% auto;
  }
}
.newface figure {
  padding: 20px;
  background-color: #93fadc;
  border: 2px solid #000;
}
@media screen and (max-width: 767px) {
  .newface figure {
    margin: 5px;
    padding: 7px;
  }
}
.newface .image {
  position: relative;
  margin: 0 0 10px;
  border: 2px solid #000;
}
.newface .image span {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: white;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  font-family: "DM Sans", sans-serif;
}
.newface .name {
  padding: 10px 0 0;
  font-size: 2.2rem;
  font-weight: 400;
  background: linear-gradient(transparent 60%, #ff0 60%);
}
@media screen and (max-width: 767px) {
  .newface .name {
    font-size: 1.8rem;
  }
}
.newface .size {
  padding: 5px 0 0;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .newface .size {
    padding: 5px 0;
    font-size: 1.4rem;
  }
}
.newface .day {
  padding: 10px 30px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .newface .day {
    padding: 7px 10px;
  }
}
.newface .comment {
  margin: 10px 0;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .newface .comment {
    display: none;
  }
}
.newface .more {
  display: block;
  width: 200px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .newface .more {
    width: 80%;
  }
}

/*===============================

写メ日記

================================*/
.diary {
  padding: 100px 0;
  background: url("../img/diary_bg.png");
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  .diary {
    padding: 50px 0;
    background: url("../img/diary_bg.png") top center;
    background-size: cover;
  }
}
.diary .inner2 {
  display: flex;
  justify-content: center;
}

/*===============================

出勤情報

================================*/
.schedule {
  padding: 100px 0;
  background: url("../img/schedule_bg.jpg");
  background-size: 40% auto;
}
@media screen and (max-width: 767px) {
  .schedule {
    padding: 50px 0;
    background-size: 100% auto;
  }
}
.schedule ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 1600px;
  margin: auto;
  padding: 50px 20px;
}
@media screen and (max-width: 767px) {
  .schedule ul {
    padding: 20px 5px;
  }
}
.schedule li {
  width: 25%;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .schedule li {
    width: 50%;
    margin: 0 0 10px;
  }
}
.schedule figure {
  margin: 0 15px;
  padding: 20px;
  background-color: white;
  border: 2px solid #000;
}
@media screen and (max-width: 767px) {
  .schedule figure {
    margin: 0 5px;
    padding: 7px;
  }
}
.schedule .image {
  position: relative;
  margin: 0 0 5px;
  border: 2px solid #000;
}
.schedule .image .guide {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px 30px;
  background-color: #31ecb6;
  font-size: 1.6rem;
  font-weight: bold;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  font-family: "DM Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .schedule .image .guide {
    bottom: 0px;
    right: 0px;
    padding: 5px 0;
    display: flex;
    width: 70%;
    font-size: 1.4rem;
    justify-content: center;
  }
}
.schedule .image .soku {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 80px;
}
@media screen and (max-width: 767px) {
  .schedule .image .soku {
    top: -7px;
    left: -7px;
    width: 60px;
  }
}
.schedule .name {
  font-size: 2.2rem;
  font-weight: 500;
  background: linear-gradient(transparent 60%, #ff0 60%);
}
@media screen and (max-width: 767px) {
  .schedule .name {
    font-size: 1.8rem;
  }
}
.schedule .size {
  padding: 5px 0 0;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .schedule .size {
    font-size: 1.3rem;
    font-weight: 400;
  }
}
.schedule .time {
  color: #ff5e95;
  font-size: 2.2rem;
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .schedule .time {
    font-size: 1.8rem;
  }
}

.week {
  width: 800px;
  margin: auto;
  padding: 30px 0 0;
}
@media screen and (max-width: 767px) {
  .week {
    padding: 0;
  }
}
.week dl {
  display: flex;
  flex-wrap: wrap;
}
.week dt {
  width: 14.2857142857%;
  position: relative;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.1rem;
}
.week a {
  display: block;
  margin: 5px;
  padding: 15px 0 8px 0;
  background-color: white;
  border-radius: 6px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  box-shadow: 1px 4px 16px -4px rgba(0, 0, 0, 0.35);
}
.week p {
  font-size: 2rem;
}
.week .dotw_l {
  display: inline-block;
  width: 90%;
  margin-top: 5px;
  padding: 3px;
  border: 1px solid #eee;
  font-size: 1.2rem;
}
.week .dotw {
  margin-top: 5px;
  padding: 3px;
  font-size: 1.2rem;
}
.week .month {
  vertical-align: top;
  position: relative;
  top: -0.3em;
  font-size: 1.4rem;
}
.week .current {
  background-color: #31ecb6;
}
.week .current .dotw_l {
  border: 1px solid black;
}

/*
スクロール
================================*/
.scroll {
  overflow: auto;
  white-space: nowrap;
}

.scroll::-webkit-scrollbar {
  height: 5px;
}

.scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.scroll::-webkit-scrollbar-thumb {
  background: #bcbcbc;
}

/*===============================

トップページバナー

================================*/
.banner {
  background: url("../img/banner_bg.jpg") no-repeat center top;
  background-size: 100% auto;
  padding: 100px;
}
@media screen and (max-width: 767px) {
  .banner {
    background-size: cover;
    padding: 10px;
  }
}
.banner ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 1250px;
  margin: auto;
}
.banner ul li {
  width: 50%;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .banner ul li {
    width: 100%;
  }
}
.banner ul img {
  width: 95%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .banner ul img {
    width: 100%;
  }
}
.banner .banner__recruit {
  padding: 30px 0 0;
}
@media screen and (max-width: 767px) {
  .banner .banner__recruit {
    padding: 0;
  }
}

.image_mouseover {
  overflow: visible;
  width: 100%;
  height: 100%;
}

.image_mouseover img {
  display: block;
  transition-duration: 0.5s;
}

.image_mouseover img:hover {
  transform: scale(1.1, 1.1);
  transition-duration: 0.5s;
}

.header {
  position: relative;
  height: 100vh;
  background: url(../img/main_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .header {
    display: none;
  }
}
.header__inner {
  position: relative;
  height: 60px;
  background-color: #93fadc;
  margin: auto;
  z-index: 2;
}
.header__shopdata {
  position: relative;
  width: 1540px;
  height: 60px;
  margin: auto;
  font-weight: 400;
}
.header__shopdata h1 {
  display: flex;
  align-items: center;
  height: 60px;
  margin: auto;
  font-size: 1.6rem;
}
.header__shopdata a {
  color: black;
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
}
.header__shopdata .open {
  position: absolute;
  top: 15px;
  right: 0;
}
.header .image {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.header .image img {
  width: 100%;
}

header.scroll_nav {
  background-color: rgba(0, 0, 0, 0.9);
  transition: 1.5s;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

footer {
  padding: 25px 0;
  background-color: black;
  color: white;
  font-size: 1.7rem;
  text-align: center;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  footer {
    margin: 0 0 60px;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0em;
  }
}

.nav {
  position: absolute;
  bottom: 100px;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .nav {
    top: 0;
    height: 60px;
    background-color: rgba(147, 250, 220, 0.95);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  }
}
.nav .nav_list {
  max-width: 1530px;
  margin: auto;
  z-index: 2;
}
.nav .nav_list ul {
  display: flex;
}
.nav .nav_list li {
  width: 12.5%;
  text-align: center;
}
.nav .nav_list li span {
  display: block;
  padding: 20px 0 5px;
  font-size: 2.2rem;
  font-family: "DM Sans", sans-serif;
}
.nav .nav_list a {
  display: block;
  height: 80px;
  color: black;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
}

.nav__footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 60px;
  padding: 0 3px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 100;
}
.nav__footer ul {
  display: flex;
  width: 100%;
}
.nav__footer li {
  width: 33.3333333333%;
}
.nav__footer .space {
  display: block;
  width: auto;
  margin: 8px 3px 0px 3px;
}

.btn,
a.btn,
button.btn {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn_custom01, .btn_custom02, .btn_custom03 {
  margin-bottom: 0.5rem;
  padding: 0;
  border-radius: 0.75rem;
}

a.btn_custom01:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0.75rem, -1rem);
  transform: translate3d(0, 0.75rem, -1rem);
  border: 2px solid #000;
  border-radius: inherit;
  background-color: #da5d7e;
}

a.btn_custom02:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0.75rem, -1rem);
  transform: translate3d(0, 0.75rem, -1rem);
  border: 2px solid #000;
  border-radius: inherit;
  background-color: #44b9a4;
}

a.btn_custom03:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0.75rem, -1rem);
  transform: translate3d(0, 0.75rem, -1rem);
  border: 2px solid #000;
  border-radius: inherit;
  background-color: #ccc100;
}

a.btn_custom01:after {
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: calc(50% - 1rem);
  left: 1rem;
  margin: 0;
  padding: 0;
  content: "\f06b";
}

a.btn_custom02:after {
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: calc(50% - 1rem);
  left: 1rem;
  margin: 0;
  padding: 0;
  content: "\f073";
}

a.btn_custom03:after {
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: calc(50% - 1rem);
  left: 1rem;
  margin: 0;
  padding: 0;
  content: "\f3cd";
}

.btn_custom01_front, .btn_custom02_front, .btn_custom03_front {
  position: relative;
  display: block;
  padding: 5px 5px 5px 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid #000;
  border-radius: inherit;
}

#global_nav.fixed {
  left: 0;
  position: fixed;
  top: 0;
}

/* メニュー背景　*/
.globalmenu {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  color: #000;
  background: rgba(138, 240, 222, 0.8);
  text-align: center;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: all 0.6s;
}
.globalmenu__tel a {
  display: block;
  padding: 30px 0 10px;
  color: black;
  font-size: 2.5rem;
  font-weight: bold;
  text-decoration: none;
}
.globalmenu__open {
  font-weight: bold;
}
.globalmenu__sns {
  display: flex;
  padding: 20px 0 0;
}
.globalmenu__sns img {
  width: auto;
  height: 50px;
  margin: 10px;
}
.globalmenu ul {
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  margin: auto;
  margin-top: 70px;
}
.globalmenu li {
  width: 50%;
  background-color: white;
  border-bottom: 1px solid #ddd;
}
.globalmenu li a {
  display: block;
  color: #000;
  padding: 1em 0;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-decoration: none;
}
.globalmenu li:nth-child(2n) {
  border-left: 1px solid #ddd;
}
.globalmenu span {
  display: block;
  padding: 0 0 5px;
  font-size: 2rem;
  font-family: "DM Sans", sans-serif;
}

/* クリックでjQueryで追加・削除 */
.globalmenu.active {
  opacity: 100;
  display: block;
  transform: translateX(0%);
}

/*　ハンバーガーメニューボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 11;
  right: 10px;
  top: 10px;
  width: 42px;
  height: 42px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 25px;
  height: 2px;
  left: 9px;
  background: #44b9a4;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 12px;
}

.hamburger span:nth-child(2) {
  top: 19px;
}

.hamburger span:nth-child(3) {
  top: 26px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 19px;
  left: 9px;
  background: #44b9a4;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 19px;
  background: #44b9a4;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*# sourceMappingURL=style.css.map */
