#mainNav a:hover {
  color: #fff;
}

  header.masthead h1 img {
    height: 150px;
  }

@media screen and (max-width: 1000px) {
  header.masthead h1 img {
    height: 100px;
  }
}

.heading-style8 {
  background: linear-gradient(to right, #fff, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
  padding: 0.2em 0;
  margin-bottom: 1.5em;
  font-size: inherit;
  text-align: center;
  text-fill-color: transparent;  
}

.heading-style9 {
  background: linear-gradient(to right, #936ff5, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
  padding: 0.2em 0;
  margin-bottom: 1.5em;
  font-size: inherit;
  text-align: center;
  text-fill-color: transparent;  
}

.button2 a {
    background: #a4a4a4;
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto;
    max-width: 280px;
    padding: 10px 25px;
    text-decoration: none;
    color: #d9d9d9;
    line-height: 1.8;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button2 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button2 a:hover {
  background: #333;
  color: #FFF;
}
.button2 a:hover:after {
  right: 1.4rem;
}


/** 見出し */
.ttl_line8 {
  position: relative;
  padding: 0.3em 0.5em;
  font-size: 1.8rem;
}
.ttl_line8::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: '';
  border-radius: 2px;
  background-image: -webkit-gradient(linear, right top, left top, from(#fff), to(#ec4899));
  background-image: -webkit-linear-gradient(right, #fff 0%, #ec4899 100%);
  background-image: linear-gradient(to left, #fff 0%, #ec4899 100%);
}

section h1 {
  font-size: 24px;
}

/** お知らせ */
@media screen and (max-width: 1000px) {
  header.masthead {
    height: 100%;
  }
}

.information-container {
    padding: 8px 16px;
    gap: 16px;
    flex-direction: column;
    display: flex;
}

.information {
    font-weight: normal;
    gap: 16px;
    display: flex;
    flex-direction: column;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    padding-bottom: 16px;
    border-color: #e5e5e5;
}

.information p {
    padding: 0;
    margin: 0;
}

.information h3 {
    font-size: 1.2rem;
    font-weight: normal;
    padding: 0;
    margin: 0;    
}

.information h3 a:hover {
  text-decoration: underline;
  color: #000;
}

.information h3 a {
  text-decoration: none;
  color: #555;
}

.information .date {
    font-size: 1.0rem;
    color: #1a2b59;    
}

.information .date-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.information .date-container .label {
    background: #ec4899;
    border-radius: 16px;
    padding: 4px 8px;
    color: #fff;
    font-size: 0.8rem;
}

.information .date-container .label.recruit {
    background: #ff6b35;
}

.information .date-container .label.news {
    background: #3498db;
}

.information .date-container .label.update {
    background: #27ae60;
}

.information .date-container .label.other {
    background: #95a5a6;
}

/** アプリケーション紹介 */
.screen-application {
  border-radius: 16px 16px 0px 0px;  
  background-color: #e5e5e5;
  padding:64px 0px;
  margin: 64px 0px;

}
.application-container {
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
}

.application-sub-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.application-title {
  padding: 0px 0px 16px;
  margin: 0px;
}

@media screen and (max-width: 1000px) {
  .application-container {
        flex-direction: column;
  }
}


/** リクルート */
.recruit-container {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    gap: 32px;
    align-items: center;
}

.recruit-container div {
    flex:1;
}

.recruit-container div img {
  max-width: 100%;
}

@media screen and (max-width: 1000px) {
  .recruit-container {
    flex-direction: column;
  }
}

.button {
  position: relative;
  display: inline-block;
  font-weight: bold; 
  line-height: 1.5;
  padding: 20px 30px 20px 70px;
  transition: 0.3s;
  text-decoration: none;
  color: #fff; 
  border-radius: 0.5rem;
  background: #32b16c; 
  box-shadow: 0 5px 0 #2c9d60;
  margin-left: 10px;
}

.button p {
  margin: 0;
}

.button .btn_balloon {
  position: absolute;
  display: inline-block;
  bottom: 0.8em;
  left: -10px;
  width: 5em;
  height: 5em;
  line-height: 5em;
  text-align: center;
  color: #32b16c;
  font-size: 80%;
  font-weight: bold;
  background: #fff;
  border: 3px solid #32b16c;
  border-radius: 50%;
  box-sizing: border-box;
  transform: rotate(-10deg);
}

.button .btn_balloon::before {
  position: absolute;
  content: "";
  bottom: -5px;
  right: -10px;
  border: 9px solid transparent;
  border-left: 15px solid #FFF;
  z-index: 0;
  transform: rotate(45deg);
}

.button:hover {
  transform: translate(0, 3px);
  background: #6bc594; 
  box-shadow: 0 2px 0 #2c9d60;
  color: #fff;
}

/** 強調ボタン */
.button-emphasis {
  position: relative;
  display: inline-block;
  font-weight: bold; 
  line-height: 1.5;
  padding: 16px 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #fff; 
  border-radius: 90px;
  background: linear-gradient(135deg, #ff6b35, #e74c3c);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  border: 3px solid #fff;
  font-size: 1.6rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  overflow: hidden;
}

.button-emphasis::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.button-emphasis:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.button-emphasis:hover::before {
  left: 100%;
}

.button-emphasis .btn-icon {
  font-size: 2rem;
  margin-right: 15px;
  display: inline-block;
  animation: bounce 2s infinite;
}

.button-emphasis .btn-text {
  font-weight: bold;
  letter-spacing: 1px;
}

.button-emphasis .btn-arrow {
  font-size: 1.2rem;
  margin-left: 15px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.button-emphasis:hover .btn-arrow {
  transform: translateX(5px);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/** ホバーアニメーション共通クラス */
.hover-lift {
  transition: all 0.3s ease;
  transform: translateY(0);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.hover-scale {
  transition: all 0.3s ease;
  transform: scale(1);
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-glow {
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hover-glow:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.hover-border {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hover-border:hover {
  border-color: #ff6b35;
}

/** カードホバーエフェクト */
.card-hover {
  transition: all 0.3s ease;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, #fff, #f8f9fa);
}

/** 画像ホバーエフェクト */
.img-hover {
  transition: all 0.3s ease;
  filter: brightness(1);
}

.img-hover:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


/***************************************************
 * Generated by SVG Artista on 8/3/2025, 11:59:29 AM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

.svg-elem-1 {
  -webkit-animation: animate-svg-fill-1 0.7s ease 0.8s both;
          animation: animate-svg-fill-1 0.7s ease 0.8s both;
}

@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

.svg-elem-2 {
  -webkit-animation: animate-svg-fill-2 0.7s ease 0.9s both;
          animation: animate-svg-fill-2 0.7s ease 0.9s both;
}

@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

.svg-elem-3 {
  -webkit-animation: animate-svg-fill-3 0.7s ease 1s both;
          animation: animate-svg-fill-3 0.7s ease 1s both;
}

@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

.svg-elem-4 {
  -webkit-animation: animate-svg-fill-4 0.7s ease 1.1s both;
          animation: animate-svg-fill-4 0.7s ease 1.1s both;
}

@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

.svg-elem-5 {
  -webkit-animation: animate-svg-fill-5 0.7s ease 1.2000000000000002s both;
          animation: animate-svg-fill-5 0.7s ease 1.2000000000000002s both;
}

@-webkit-keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

.svg-elem-6 {
  -webkit-animation: animate-svg-fill-6 0.7s ease 1.3s both;
          animation: animate-svg-fill-6 0.7s ease 1.3s both;
}
