@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 200px;
}

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

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

body {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  color: #152f3a;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

.section_inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.section_ttl h2 {
  color: #52b9e8;
  font-family: Outfit;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  .section_ttl h2 {
    font-size: 36px;
  }
}
.section_ttl h2 span {
  font-size: 32px;
}
@media screen and (max-width: 599px) {
  .section_ttl h2 span {
    font-size: 26px;
  }
}
.section_ttl P {
  font-weight: 500;
  letter-spacing: 0.8px;
  text-align: center;
}

.btn_01 {
  position: relative;
  border-radius: 2px;
  background: #53bae9;
  width: 260px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.btn_01::after {
  content: "";
  background-image: url("../images/aroow.svg");
  position: absolute;
  background-size: cover;
  top: 40%;
  right: 20px;
  width: 18px;
  height: 12px;
}
.btn_01:hover {
  opacity: 0.8;
}

.btn_02 {
  position: relative;
  border-radius: 2px;
  background: #fff;
  color: #52b9e8;
  width: 260px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  gap: 15px;
  margin-right: 0;
  margin-left: auto;
}

/*************************************************
下層共通
*************************************************/
#under_fv {
  margin-top: 70px;
  padding-top: 100px;
  background-image: url(../images/under_fv_bg.png);
  width: 100%;
  height: 300px;
  background-size: cover;
  animation: fadeInBackground 1s ease-out;
}
@media screen and (max-width: 599px) {
  #under_fv {
    margin-top: 60px;
  }
}
#under_fv .under_fv_inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  #under_fv .under_fv_inner {
    padding: 0 15px;
    display: block;
  }
}
#under_fv .under_fv_inner .under_fv_left h1 {
  color: #fff;
  font-family: Outfit;
  font-size: 64px;
  font-weight: 500;
  letter-spacing: 3.2px;
  animation: slideRight 0.8s ease-out 0.5s both;
}
@media screen and (max-width: 599px) {
  #under_fv .under_fv_inner .under_fv_left h1 {
    font-size: 40px;
  }
}
#under_fv .under_fv_inner .under_fv_left h1 .char {
  display: inline-block;
  transition: all 0.4s ease-out;
}
#under_fv .under_fv_inner .under_fv_left h1 span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  animation: slideDown 0.6s ease-out 0.3s both;
}
@media screen and (max-width: 599px) {
  #under_fv .under_fv_inner .under_fv_left h1 span {
    font-size: 14px;
  }
}
#under_fv .under_fv_inner .under_fv_right ul {
  display: flex;
}
#under_fv .under_fv_inner .under_fv_right ul li {
  animation: fadeUp 0.6s ease-out both;
  font-size: 12px;
  color: #fff;
}
#under_fv .under_fv_inner .under_fv_right ul li:nth-child(1) {
  animation-delay: 0.8s;
}
#under_fv .under_fv_inner .under_fv_right ul li:nth-child(2) {
  animation-delay: 0.9s;
}
#under_fv .under_fv_inner .under_fv_right ul li:nth-child(3) {
  animation-delay: 1s;
}
#under_fv .under_fv_inner .under_fv_right ul li:nth-child(4) {
  animation-delay: 1.1s;
}
#under_fv .under_fv_inner .under_fv_right ul li:nth-child(5) {
  animation-delay: 1.2s;
}
#under_fv .under_fv_inner .under_fv_right ul li:first-child::after {
  content: ">";
  display: inline-block;
  margin: 0 10px;
}
@keyframes fadeInBackground {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*************************************************
アニメーション
*************************************************/
.fadeUp {
  transform: translateY(0);
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 599px) {
  .fadeUp {
    animation-duration: 0.3s;
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}
@media screen and (max-width: 599px) {
  .delay-time02 {
    animation-delay: 0.1s;
  }
}

.delay-time04 {
  animation-delay: 0.4s;
}
@media screen and (max-width: 599px) {
  .delay-time04 {
    animation-delay: 0.2s;
  }
}

.delay-time06 {
  animation-delay: 0.6s;
}
@media screen and (max-width: 599px) {
  .delay-time06 {
    animation-delay: 0.3s;
  }
}

.delay-time08 {
  animation-delay: 0.8s;
}
@media screen and (max-width: 599px) {
  .delay-time08 {
    animation-delay: 0.4s;
  }
}

.delay-time1 {
  animation-delay: 1s;
}
@media screen and (max-width: 599px) {
  .delay-time1 {
    animation-delay: 0.5s;
  }
}

/*************************************************
header
*************************************************/
header {
  position: relative;
}
header .header_pc {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: all 0.3s ease;
}
@media screen and (max-width: 599px) {
  header .header_pc {
    display: none;
  }
}
header .header_pc .logo {
  background-color: #52b9e8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.4722222222vw 2.7777777778vw;
  transition: all 0.3s ease;
}
header .header_pc .header_scroll {
  height: 70px;
  padding: 0 2.0833333333vw;
}
header .header_pc .header_scroll_under {
  height: 70px;
  padding: 0 2.0833333333vw;
}
header .header_pc::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 100%;
  height: 70px;
  z-index: -1;
}
header .header_pc .header_pc_right {
  display: flex;
  align-items: center;
  font-size: clamp(12px, 0.9722222222vw, 14px);
  font-weight: 500;
}
header .header_pc .header_pc_right ul {
  height: 70px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 20px;
}
header .header_pc .header_pc_right ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
}
header .header_pc .header_pc_right ul li a svg path {
  stroke: #152f3a;
}
header .header_pc .header_pc_right ul li:hover {
  color: #52b9e8;
}
header .header_pc .header_pc_right ul li:hover svg path {
  stroke: #52b9e8;
}
header .header_pc .header_pc_right .contact_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #52b9e8;
  color: #fff;
  width: 150px;
  height: 70px;
  font-weight: 500;
}
header .header_pc .header_pc_right .contact_btn:hover {
  background-color: #3e8caf;
}
header .header_sp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 1000;
  transition: all 0.3s ease;
}
header .header_sp .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #52b9e8;
  padding: 20px 18px;
  width: fit-content;
}
header .header_sp .logo img {
  height: 20px;
  width: auto;
}
header .hamburger {
  width: 45px;
  height: 45px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  background-color: #52b9e8;
  color: #fff;
}
header .hamburger span {
  display: block;
  width: 70%;
  height: 2px;
  background: #fff;
  position: absolute;
  transition: all 0.3s ease;
}
header .hamburger span:nth-child(1) {
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
}
header .hamburger span:nth-child(2) {
  top: 50%;
  width: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
}
header .hamburger span:nth-child(3) {
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
}
header .hamburger.active span {
  background: #fff;
  width: 70%;
}
header .hamburger.active span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .hamburger.active span:nth-child(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
header .sp_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #52b9e8;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto;
  padding: 0 30px;
}
header .sp_menu.active {
  opacity: 1;
  visibility: visible;
}
header .sp_menu .sp_menu_inner {
  padding: 80px 0 30px;
}
header .sp_menu .sp_menu_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
header .sp_menu .sp_menu_list li {
  flex-basis: 49%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
header .sp_menu .sp_menu_list li a {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 15px 0;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
header .sp_menu .sp_menu_list li a:hover {
  opacity: 0.7;
}
header .sp_menu .sp_menu_contact_tel {
  background-color: #fff;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}
header .sp_menu .sp_menu_contact_tel a {
  display: block;
  margin-bottom: 5px;
  color: #52b9e8;
  font-family: Outfit;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1px;
  font-size: 32px;
  width: fit-content;
  margin: 0 auto 5px;
}
header .sp_menu .sp_menu_contact_tel a span {
  font-size: 18px;
}
header .sp_menu .sp_menu_contact_tel p {
  line-height: 1.5;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
  display: block;
  margin: 0 auto;
}
header .sp_menu .sp_menu_contact_mail {
  background-color: #fff;
  margin-bottom: 30px;
}
header .sp_menu .sp_menu_contact_mail a {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  color: #52b9e8;
  font-size: 24px;
  font-weight: 500;
  padding: 20px 0;
}
header .sp_menu .sp_menu_contact_mail a img {
  display: block;
  width: 30px;
  height: auto;
}
header .sp_menu .sp_menu_sns {
  display: flex;
  justify-content: center;
  gap: 20px;
}
header .sp_menu .sp_menu_sns a {
  width: 40px;
  height: 40px;
}
header .sp_menu .sp_menu_sns a img {
  width: 100%;
  height: 100%;
}
header .header_sp {
  display: none;
}
@media screen and (max-width: 599px) {
  header .header_sp {
    display: flex;
  }
}

/*************************************************
footer
*************************************************/
footer #contact {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background: #f4fbfe;
  padding: 80px 0;
  transform: translateY(80px);
}
@media screen and (max-width: 599px) {
  footer #contact {
    width: 94%;
    padding: 80px 0 30px;
  }
}
footer #contact::before {
  content: "";
  position: absolute;
  background-color: #52b9e8;
  width: 1px;
  height: 100px;
  left: 50%;
  top: -50px;
}
footer #contact .section_ttl {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  footer #contact .section_ttl h2 {
    margin-bottom: 30px;
  }
  footer #contact .section_ttl p {
    line-height: 1.5;
  }
}
footer #contact .contact_flex {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 599px) {
  footer #contact .contact_flex {
    display: block;
  }
}
footer #contact .contact_flex .tel a {
  display: block;
  margin-bottom: 5px;
  color: #52b9e8;
  font-family: Outfit;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1px;
  font-size: 40px;
}
footer #contact .contact_flex .tel a span {
  font-size: 20px;
}
@media screen and (max-width: 599px) {
  footer #contact .contact_flex .tel a {
    margin: 0 auto;
    font-size: 32px;
  }
}
footer #contact .contact_flex .tel p {
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  footer #contact .contact_flex .tel {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
  }
}
footer #contact .contact_flex .mail a {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  background: #53bae9;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  width: 390px;
  height: 72px;
}
@media screen and (max-width: 599px) {
  footer #contact .contact_flex .mail a {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    font-size: 20px;
  }
}
footer #contact .contact_flex .mail a img {
  display: block;
  width: 30px;
  height: auto;
}
footer .footer_pc {
  background: #005d9a;
  color: #fff;
  padding: 160px 50px 30px;
}
@media screen and (max-width: 599px) {
  footer .footer_pc {
    padding: 120px 15px 30px;
  }
}
footer .footer_pc .footer_inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  footer .footer_pc .footer_inner {
    margin-bottom: 30px;
    display: block;
  }
}
footer .footer_pc .footer_inner .footer_left {
  position: relative;
}
footer .footer_pc .footer_inner .footer_left p {
  line-height: 1.5;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  footer .footer_pc .footer_inner .footer_left .sns_sp_wrap {
    display: flex;
    justify-content: space-between;
  }
}
footer .footer_pc .footer_inner .footer_left .sns_sp_wrap a {
  display: block;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  footer .footer_pc .footer_inner .footer_left .sns_sp_wrap a {
    margin-bottom: 15px;
  }
  footer .footer_pc .footer_inner .footer_left .sns_sp_wrap a img {
    width: 152px;
  }
}
footer .footer_pc .footer_inner .footer_left .sns_sp_wrap .sns_sp {
  display: none;
}
@media screen and (max-width: 599px) {
  footer .footer_pc .footer_inner .footer_left .sns_sp_wrap .sns_sp {
    display: flex;
    gap: 12px;
  }
  footer .footer_pc .footer_inner .footer_left .sns_sp_wrap .sns_sp a img {
    display: block;
    width: 40px;
  }
}
@media screen and (max-width: 599px) {
  footer .footer_pc .footer_inner .footer_right {
    display: none;
  }
}
footer .footer_pc .footer_inner .footer_right ul {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
}
footer .footer_pc .footer_inner .footer_right ul:first-child {
  margin-bottom: 50px;
}
footer .footer_pc .footer_inner .footer_right ul li a {
  line-height: 1.5;
  font-size: 14px;
  font-weight: 500;
}
footer .footer_pc .footer_inner .footer_right ul li:hover a {
  opacity: 0.7;
}
footer .footer_pc small {
  display: block;
  text-align: center;
}

/*************************************************
navi
*************************************************/
/*************************************************
リンク
*************************************************/
@media screen and (max-width: 599px) {
  .company_menu {
    display: none;
  }
}
.company_menu ul {
  display: flex;
}
.company_menu ul li {
  width: 14.2857142857%;
}
.company_menu ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 60px;
  font-weight: 500;
  background: #cfebf5;
  font-size: 14px;
  color: #3e8caf;
  transition: all 0.3s ease;
}
.company_menu ul li a svg path {
  stroke: #3e8caf;
  transition: stroke 0.3s ease;
}
.company_menu ul li.active a {
  background: #52b9e8;
  color: #fff;
}
.company_menu ul li.active a svg path {
  stroke: #fff;
}
.company_menu ul li:not(.active):hover a {
  background: #52b9e8;
  color: #fff;
}
.company_menu ul li:not(.active):hover a svg path {
  stroke: #fff;
}

.company_inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.company_inner_02 {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

/*************************************************
企業理念
*************************************************/
#philosophy {
  background: #f4fbfe;
  padding: 50px 0;
}
@media screen and (max-width: 599px) {
  #philosophy .company_inner {
    padding: 0 30px;
  }
}
#philosophy .company_inner .philosophy_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  #philosophy .company_inner .philosophy_inner {
    flex-direction: column;
  }
}
#philosophy .company_inner .philosophy_inner:last-child {
  margin-bottom: 0;
}
#philosophy .company_inner .philosophy_inner .left {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
#philosophy .company_inner .philosophy_inner .left p {
  margin-bottom: 30px;
}
#philosophy .company_inner .philosophy_inner .left p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  #philosophy .company_inner .philosophy_inner .left p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  #philosophy .company_inner .philosophy_inner .right {
    margin: 30px auto;
  }
  #philosophy .company_inner .philosophy_inner .right img {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}
#philosophy .company_inner .philosophy_inner .philosophy {
  background: #fff;
  box-shadow: 0 0 40px 0 rgba(82, 185, 232, 0.4);
  display: inline-flex;
  padding: 40px 70px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 599px) {
  #philosophy .company_inner .philosophy_inner .philosophy {
    padding: 20px 30px;
    margin-bottom: 30px;
  }
}
#philosophy .company_inner .philosophy_inner .philosophy p {
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.company_ttl {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin: 0 auto 50px;
}
@media screen and (max-width: 599px) {
  .company_ttl {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.company_ttl span {
  display: block;
  color: #52b9e8;
  font-family: Outfit;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  margin-top: 5px;
}
@media screen and (max-width: 599px) {
  .company_ttl span {
    font-size: 20px;
  }
}

/*************************************************
代表挨拶
*************************************************/
#message {
  padding: 100px 0;
}
@media screen and (max-width: 599px) {
  #message {
    padding: 50px 0;
  }
}
@media screen and (max-width: 599px) {
  #message .company_inner {
    padding: 0 30px;
  }
}
#message .company_inner .company_inner_02 .ceo {
  position: relative;
  max-width: 740px;
  width: 100%;
  margin: 0 auto 50px;
}
@media screen and (max-width: 599px) {
  #message .company_inner .company_inner_02 .ceo img {
    display: block;
    width: 100%;
  }
}
#message .company_inner .company_inner_02 .ceo .ceo_text {
  position: absolute;
  right: 0;
  bottom: -15px;
  background: #53bae9;
  color: #fff;
  width: 250px;
  padding: 13px 20px;
}
@media screen and (max-width: 599px) {
  #message .company_inner .company_inner_02 .ceo .ceo_text {
    width: 150px;
    padding: 10px 15px;
  }
}
#message .company_inner .company_inner_02 .ceo .ceo_text span {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  #message .company_inner .company_inner_02 .ceo .ceo_text span {
    font-size: 12px;
  }
}
#message .company_inner .company_inner_02 .ceo .ceo_text p {
  text-align: right;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  #message .company_inner .company_inner_02 .ceo .ceo_text p {
    font-size: 14px;
  }
}
#message .company_inner .company_inner_02 .ceo_message p {
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  #message .company_inner .company_inner_02 .ceo_message p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
#message .company_inner .company_inner_02 .ceo_message p:last-child {
  margin-bottom: 0;
}
#message .company_inner .company_inner_02 .ceo_message p span {
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(83, 186, 233, 0.4) 50%, rgba(83, 186, 233, 0.4) 100%);
}

.parallax-section {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: #000; /* フォールバック */
}

/* パララックス背景 */
.parallax-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  min-width: 1440px;
  height: 962px;
  background-image: url("../images/company_bg.png");
  background-size: 1440px 962px;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* コンテンツ部分 */
.parallax-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1); /* オーバーレイ */
}

/*************************************************
会社概要
*************************************************/
#outline {
  margin: 100px 0;
}
@media screen and (max-width: 599px) {
  #outline {
    margin: 50px 0;
  }
}
@media screen and (max-width: 599px) {
  #outline .company_inner {
    padding: 0 30px;
  }
}
#outline .company_inner .company_inner_02 table {
  display: block;
}
#outline .company_inner .company_inner_02 table tbody {
  display: block;
}
#outline .company_inner .company_inner_02 table tbody tr {
  display: flex;
}
@media screen and (max-width: 599px) {
  #outline .company_inner .company_inner_02 table tbody tr {
    display: block;
  }
}
#outline .company_inner .company_inner_02 table tbody tr th {
  width: 200px;
  display: block;
  text-align: center;
  color: #53bae9;
  font-weight: 700;
  border-bottom: 1px solid #53bae9;
  padding: 15px 0;
}
@media screen and (max-width: 599px) {
  #outline .company_inner .company_inner_02 table tbody tr th {
    width: 100%;
    font-size: 14px;
    padding: 15px 10px;
  }
}
#outline .company_inner .company_inner_02 table tbody tr td {
  width: 700px;
  display: block;
  line-height: 1.6;
  font-weight: 500;
  padding: 15px 0;
  padding-left: 25px;
  border-bottom: 1px solid #d3d3d3;
}
@media screen and (max-width: 599px) {
  #outline .company_inner .company_inner_02 table tbody tr td {
    width: 100%;
    font-size: 14px;
    text-align: center;
    padding: 15px 10px;
  }
}
#outline .company_inner .company_inner_02 table tbody tr td iframe {
  width: 100%;
  height: 200px;
  margin-top: 10px;
}
#outline .company_inner .company_inner_02 table tbody tr td .table_flex {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 599px) {
  #outline .company_inner .company_inner_02 table tbody tr td .table_flex {
    display: block;
  }
}
#outline .company_inner .company_inner_02 table tbody tr td .table_flex a {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 599px) {
  #outline .company_inner .company_inner_02 table tbody tr td .table_flex a {
    justify-content: center;
  }
}
#outline .company_inner .company_inner_02 table tbody tr td .table_flex a:hover {
  color: #52b9e8;
}
#outline .company_inner .company_inner_02 table tbody tr td .table_flex a:hover svg path {
  stroke: #52b9e8;
}

/*************************************************
強み
*************************************************/
#strength {
  margin: 100px 0;
}
@media screen and (max-width: 599px) {
  #strength .company_inner {
    padding: 0 30px;
  }
}
#strength .company_inner .gyoutai {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  #strength .company_inner .gyoutai {
    margin-bottom: 30px;
  }
}
#strength .company_inner .gyoutai h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  #strength .company_inner .gyoutai h3 {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}
#strength .company_inner .gyoutai p {
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  #strength .company_inner .gyoutai p {
    font-size: 14px;
  }
}
#strength .company_inner .strength_img {
  display: block;
  max-width: 980px;
  width: 100%;
  margin: 0 auto 50px;
}
#strength .company_inner .company_inner_02 p {
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  #strength .company_inner .company_inner_02 p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

/*************************************************
グループ
*************************************************/
#group {
  margin: 100px 0;
}
@media screen and (max-width: 599px) {
  #group .company_inner_02 {
    padding: 0 30px;
  }
}
#group .company_inner_02 .group_inner {
  width: 400px;
  height: 220px;
  flex-shrink: 0;
  background: #f4fbfe;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  #group .company_inner_02 .group_inner {
    width: 100%;
  }
}
#group .company_inner_02 .group_inner a img {
  display: block;
  margin: 0 auto 50px;
  margin-bottom: 50px;
}
#group .company_inner_02 .group_inner a p {
  font-weight: 500;
  line-height: 1.8;
  display: flex;
  gap: 15px;
  justify-content: center;
}
#group .company_inner_02 .group_inner a p img {
  margin-bottom: 0;
}
#group .company_inner_02 .group_wrap {
  display: flex;
  gap: 100px;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  #group .company_inner_02 .group_wrap {
    flex-direction: column;
    gap: 0px;
  }
}

/*************************************************
行動指針
*************************************************/
#value {
  background-image: url(../images/value_bg.png);
  background-size: cover;
  position: relative;
  z-index: -999;
}
#value::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 55.5555555556vw;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  z-index: -1;
}
@media screen and (max-width: 599px) {
  #value::after {
    width: 100%;
  }
}
#value .company_inner {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  #value .company_inner {
    padding: 50px 30px;
  }
}
#value .company_inner .value_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}
@media screen and (max-width: 599px) {
  #value .company_inner .value_wrap {
    flex-direction: column;
  }
}
#value .company_inner .value_wrap .company_ttl {
  position: sticky;
  position: -webkit-sticky;
  align-self: flex-start;
  top: 100px;
  flex-shrink: 0;
  color: #fff;
  text-align: left;
  font-size: 24px;
  width: 100%;
  max-width: 550px;
  z-index: 3;
}
#value .company_inner .value_wrap .company_ttl span {
  color: #fff;
  font-size: 32px;
}
@media screen and (max-width: 599px) {
  #value .company_inner .value_wrap .company_ttl {
    position: static;
  }
}
#value .company_inner .value_wrap .value_inner {
  flex: 1;
  position: relative;
  z-index: 1;
}
#value .company_inner .value_wrap .value_inner .value_content {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #53bae9;
}
#value .company_inner .value_wrap .value_inner .value_content:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#value .company_inner .value_wrap .value_inner .value_content h3 {
  color: #3e8caf;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 17px;
}
@media screen and (max-width: 599px) {
  #value .company_inner .value_wrap .value_inner .value_content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #152f3a;
  }
}
#value .company_inner .value_wrap .value_inner .value_content h3 span {
  display: inline-block;
  margin-left: 10px;
  font-family: Outfit;
}
#value .company_inner .value_wrap .value_inner .value_content p {
  display: flex;
  line-height: 2;
  font-weight: 500;
  font-size: 14px;
}
#value .company_inner .value_wrap .value_inner .value_content p span {
  display: inline-block;
  margin-right: 10px;
  flex-shrink: 0;
}

/*************************************************
沿革
*************************************************/
#history {
  padding: 100px 0;
  background: rgba(207, 235, 245, 0.3);
}
@media screen and (max-width: 599px) {
  #history {
    padding: 50px 0px;
  }
}
#history .timeline_container {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 30px;
  padding-left: calc((100vw - 1100px) / 2);
  scrollbar-width: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (max-width: 599px) {
  #history .timeline_container {
    padding: 0;
  }
}
#history .timeline_container::-webkit-scrollbar {
  display: none;
}
#history .timeline_container .timeline_wrapper {
  position: relative;
  min-width: 1400px;
  width: max-content;
  padding: 50px 0;
}
@media screen and (max-width: 599px) {
  #history .timeline_container .timeline_wrapper {
    padding-left: 30px;
    padding-bottom: 0;
  }
}
#history .timeline_container .timeline_line {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  height: 1.6px;
  background: rgba(21, 47, 58, 0.5725490196);
}
@media screen and (max-width: 599px) {
  #history .timeline_container .timeline_line {
    left: 30px;
  }
}
#history .timeline_container .timeline_items {
  display: flex;
  gap: 30px;
  position: relative;
}
#history .timeline_container .timeline_item {
  position: relative;
  width: 290px;
  flex-shrink: 0;
}
#history .timeline_container .timeline_item .timeline_dot {
  position: absolute;
  top: -8px;
  left: 0%;
  width: 16px;
  height: 16px;
  background: linear-gradient(270deg, #4eb4e4 0%, #025f9c 100%);
  border-radius: 50%;
  z-index: 2;
}
#history .timeline_container .timeline_item .timeline_year {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 24px;
  color: #3e8caf;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
}
#history .timeline_container .timeline_item .timeline_text {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  text-align: left;
  min-height: 120px;
}
#history .timeline_container .scroll_indicator {
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #53bae9;
  font-size: 14px;
  animation: slideLeft 2s infinite;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
#history .timeline_container .scroll_indicator.hidden {
  opacity: 0;
}
#history .timeline_container .scroll_indicator svg {
  width: 24px;
  height: 24px;
}
#history .custom_scrollbar_wrapper {
  max-width: 1100px;
  width: 100%;
  margin: 20px auto 0;
  padding: 0 20px;
}
#history .custom_scrollbar_wrapper .custom_scrollbar_track {
  position: relative;
  width: 100%;
  height: 8px;
  background: rgba(83, 186, 233, 0.1);
  border-radius: 4px;
  cursor: pointer;
}
#history .custom_scrollbar_wrapper .custom_scrollbar_track .custom_scrollbar_thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #53bae9;
  border-radius: 4px;
  cursor: grab;
  transition: background 0.3s ease;
  min-width: 50px;
}

/*************************************************
社会貢献
*************************************************/
#contribution {
  margin: 100px 0;
}
@media screen and (max-width: 599px) {
  #contribution .company_inner_02 {
    padding: 0 30px;
  }
}
#contribution .company_inner_02 .contribution_inner {
  margin-bottom: 70px;
}
@media screen and (max-width: 599px) {
  #contribution .company_inner_02 .contribution_inner {
    margin-bottom: 30px;
  }
}
#contribution .company_inner_02 .contribution_inner:last-child {
  margin-bottom: 0;
}
#contribution .company_inner_02 .contribution_inner h3 {
  display: flex;
  gap: 10px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  #contribution .company_inner_02 .contribution_inner h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
#contribution .company_inner_02 .contribution_inner p {
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  #contribution .company_inner_02 .contribution_inner p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
#contribution .company_inner_02 .contribution_inner p:last-child {
  margin-bottom: 0;
}
#contribution .company_inner_02 .contribution_inner .contribution_img {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#contribution .company_inner_02 .contribution_inner .contribution_img .contribution_box {
  max-width: 400px;
}
@media screen and (max-width: 599px) {
  #contribution .company_inner_02 .contribution_inner .contribution_img .contribution_box {
    margin-bottom: 30px;
  }
}
#contribution .company_inner_02 .contribution_inner .contribution_img .contribution_box img {
  display: block;
  width: 100%;
  max-width: 400px;
}
#contribution .company_inner_02 .contribution_inner .contribution_img .contribution_box span {
  color: rgba(21, 47, 58, 0.6);
  font-size: 12px;
  font-weight: 500;
}

/*************************************************
support
*************************************************/
@media screen and (max-width: 599px) {
  #salon_support {
    padding: 0 15px;
  }
}
#salon_support .salon_support_top {
  padding: 100px 0;
  margin-bottom: 100px;
}
@media screen and (max-width: 599px) {
  #salon_support .salon_support_top {
    margin-bottom: 0;
    padding: 50px 0;
  }
}
#salon_support .salon_support_top .decoration-wrapper {
  position: relative;
  max-width: 836px;
  margin: 0 auto;
  padding: 40px 40px;
}
#salon_support .salon_support_top .decoration-wrapper::before, #salon_support .salon_support_top .decoration-wrapper::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border: 1px solid #53bae9;
}
#salon_support .salon_support_top .decoration-wrapper::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
#salon_support .salon_support_top .decoration-wrapper::after {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}
#salon_support .salon_support_top .decoration-wrapper .decoration-bottom::before, #salon_support .salon_support_top .decoration-wrapper .decoration-bottom::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border: 1px solid #53bae9;
}
#salon_support .salon_support_top .decoration-wrapper .decoration-bottom::before {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}
#salon_support .salon_support_top .decoration-wrapper .decoration-bottom::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}
#salon_support .salon_support_top h2 {
  position: relative;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1.2px;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  #salon_support .salon_support_top h2 {
    font-size: 18px;
  }
}

#salon_support_01,
#salon_support_02,
#salon_support_03,
#salon_support_04,
#salon_support_05 {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

#salon_support_01 {
  position: relative;
}
#salon_support_01 .salon_support_inner::after {
  position: absolute;
  content: "";
  background-image: url(../images/01.svg);
  width: 366px;
  height: 202px;
  background-size: cover;
  right: 50px;
  top: -100px;
}
@media screen and (max-width: 599px) {
  #salon_support_01 .salon_support_inner::after {
    content: none;
  }
}

#salon_support_02 {
  position: relative;
}
#salon_support_02 .salon_support_inner::after {
  position: absolute;
  content: "";
  background-image: url(../images/02.svg);
  width: 414px;
  height: 202px;
  background-size: cover;
  left: 50px;
  top: -100px;
}
@media screen and (max-width: 599px) {
  #salon_support_02 .salon_support_inner::after {
    content: none;
  }
}

#salon_support_03 {
  position: relative;
}
#salon_support_03 .salon_support_inner::after {
  position: absolute;
  content: "";
  background-image: url(../images/03.svg);
  width: 415px;
  height: 202px;
  background-size: cover;
  right: 50px;
  top: -100px;
}
@media screen and (max-width: 599px) {
  #salon_support_03 .salon_support_inner::after {
    content: none;
  }
}

#salon_support_04 {
  position: relative;
}
#salon_support_04 .salon_support_inner::after {
  position: absolute;
  content: "";
  background-image: url(../images/04.svg);
  width: 444px;
  height: 202px;
  background-size: cover;
  left: 50px;
  top: -100px;
}
@media screen and (max-width: 599px) {
  #salon_support_04 .salon_support_inner::after {
    content: none;
  }
}
#salon_support_04 .salon_support_btn {
  position: absolute;
  right: 8.3333333333vw;
  bottom: 0;
}
@media screen and (max-width: 599px) {
  #salon_support_04 .salon_support_btn {
    position: static;
  }
}
#salon_support_04 .salon_support_btn a {
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 599px) {
  #salon_support_04 .salon_support_btn a {
    margin: 50px auto;
  }
}

#salon_support_05 {
  position: relative;
  margin-bottom: 100px;
}
@media screen and (max-width: 599px) {
  #salon_support_05 {
    margin-bottom: 50px;
  }
}
#salon_support_05 .salon_support_inner {
  margin-bottom: 200px;
}
@media screen and (max-width: 599px) {
  #salon_support_05 .salon_support_inner {
    margin-bottom: 30px;
  }
}
#salon_support_05 .salon_support_inner::after {
  position: absolute;
  content: "";
  background-image: url(../images/05.svg);
  width: 413px;
  height: 202px;
  background-size: cover;
  right: 50px;
  top: -100px;
}
@media screen and (max-width: 599px) {
  #salon_support_05 .salon_support_inner::after {
    content: none;
  }
}
#salon_support_05 .salon_support_btn {
  position: absolute;
  left: 8.3333333333vw;
  bottom: 0;
}
@media screen and (max-width: 599px) {
  #salon_support_05 .salon_support_btn {
    position: static;
  }
}
#salon_support_05 .salon_support_btn a {
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 599px) {
  #salon_support_05 .salon_support_btn a {
    margin: 50px auto;
  }
}

.salon_support_inner {
  position: relative;
  max-width: 1320px;
  width: 100%;
  display: flex;
  margin-bottom: 330px;
}
@media screen and (max-width: 599px) {
  .salon_support_inner {
    display: block;
    margin: 0 auto 50px;
  }
}
.salon_support_inner .salon_support_img {
  max-width: 51.875vw;
  max-height: 33.125vw;
}
@media screen and (max-width: 599px) {
  .salon_support_inner .salon_support_img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
  }
}
.salon_support_inner .salon_support_img img {
  display: block;
  height: auto;
  width: 100%;
  object-fit: cover;
}
.salon_support_inner .salon_support_text {
  color: #fff;
  background: #3e8caf;
  padding: 50px;
  max-width: 650px;
  width: 100%;
  transform: translateY(100px) translateX(-50px);
}
@media screen and (max-width: 599px) {
  .salon_support_inner .salon_support_text {
    max-width: 100%;
    max-height: 100%;
    transform: translate(0, 0);
    padding: 30px 15px;
  }
}
.salon_support_inner .salon_support_text h3 {
  font-size: 36px;
  font-weight: 700;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #fff;
  letter-spacing: 1.8px;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .salon_support_inner .salon_support_text h3 {
    font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.salon_support_inner .salon_support_text span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .salon_support_inner .salon_support_text span {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.salon_support_inner .salon_support_text p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .salon_support_inner .salon_support_text p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.salon_support_inner .salon_support_text p:last-child {
  margin-bottom: 0;
}

.reverse {
  flex-direction: row-reverse;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 599px) {
  .reverse {
    margin: 0 auto 50px;
  }
}
.reverse .salon_support_text {
  transform: translateY(100px) translateX(50px);
}
@media screen and (max-width: 599px) {
  .reverse .salon_support_text {
    transform: translate(0, 0);
  }
}

.five_online {
  max-width: 800px;
  width: 100%;
  margin: 100px auto;
}
@media screen and (max-width: 599px) {
  .five_online {
    padding: 0 15px;
    margin: 30px auto;
  }
}
.five_online a img {
  display: block;
  width: 100%;
}
.five_online a:hover {
  opacity: 0.8;
}

.shoplist {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 55px;
  padding-bottom: 80px;
}
@media screen and (max-width: 599px) {
  .shoplist {
    gap: 30px;
    padding: 0 30px 50px;
  }
}
.shoplist li {
  max-width: 330px;
  width: 100%;
  background-color: #fff;
  padding: 28px 30px;
}
@media screen and (max-width: 599px) {
  .shoplist li {
    max-width: 100%;
  }
}
.shoplist li .shop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #53bae9;
  padding-bottom: 10px;
  border-bottom: 1px solid #53bae9;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.shoplist li .shop:hover {
  color: #bf3461;
}
.shoplist li .shop:hover svg path {
  fill: #bf3461;
}
.shoplist li .shop:hover svg circle {
  stroke: #bf3461;
}
.shoplist li p {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 10px;
}
.shoplist li .tel {
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}
.shoplist li .tel:hover {
  color: #53bae9;
}
.shoplist li .shop_link {
  display: flex;
  justify-content: space-between;
}
.shoplist li .shop_link a {
  display: flex;
  padding: 2px 10px;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  height: 25px;
  color: #53bae9;
  font-size: 14px;
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid #53bae9;
  font-size: 12px;
}
.shoplist li .shop_link a:hover {
  background-color: #53bae9;
  color: #fff;
}
.shoplist li .shop_link a:hover svg path {
  fill: #fff;
}

#salon_support_01 .salon_support_inner .salon_support_img,
#salon_support_01 .salon_support_inner .salon_support_text,
#salon_support_02 .salon_support_inner .salon_support_img,
#salon_support_02 .salon_support_inner .salon_support_text,
#salon_support_03 .salon_support_inner .salon_support_img,
#salon_support_03 .salon_support_inner .salon_support_text,
#salon_support_04 .salon_support_inner .salon_support_img,
#salon_support_04 .salon_support_inner .salon_support_text,
#salon_support_05 .salon_support_inner .salon_support_img,
#salon_support_05 .salon_support_inner .salon_support_text {
  will-change: transform, opacity;
}
#salon_support_01 .salon_support_inner .salon_support_img,
#salon_support_02 .salon_support_inner .salon_support_img,
#salon_support_03 .salon_support_inner .salon_support_img,
#salon_support_04 .salon_support_inner .salon_support_img,
#salon_support_05 .salon_support_inner .salon_support_img {
  overflow: hidden;
}
#salon_support_01 .salon_support_inner .salon_support_img img,
#salon_support_02 .salon_support_inner .salon_support_img img,
#salon_support_03 .salon_support_inner .salon_support_img img,
#salon_support_04 .salon_support_inner .salon_support_img img,
#salon_support_05 .salon_support_inner .salon_support_img img {
  transition: transform 0.6s ease;
}
#salon_support_01 .salon_support_inner .salon_support_img img:hover,
#salon_support_02 .salon_support_inner .salon_support_img img:hover,
#salon_support_03 .salon_support_inner .salon_support_img img:hover,
#salon_support_04 .salon_support_inner .salon_support_img img:hover,
#salon_support_05 .salon_support_inner .salon_support_img img:hover {
  transform: scale(1.05);
}
#salon_support_01 .salon_support_inner .salon_support_text,
#salon_support_02 .salon_support_inner .salon_support_text,
#salon_support_03 .salon_support_inner .salon_support_text,
#salon_support_04 .salon_support_inner .salon_support_text,
#salon_support_05 .salon_support_inner .salon_support_text {
  position: relative;
}
#salon_support_01 .salon_support_inner .salon_support_text::before,
#salon_support_02 .salon_support_inner .salon_support_text::before,
#salon_support_03 .salon_support_inner .salon_support_text::before,
#salon_support_04 .salon_support_inner .salon_support_text::before,
#salon_support_05 .salon_support_inner .salon_support_text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  transition: width 0.8s ease;
  z-index: 0;
}
#salon_support_01 .salon_support_inner .salon_support_text:hover::before,
#salon_support_02 .salon_support_inner .salon_support_text:hover::before,
#salon_support_03 .salon_support_inner .salon_support_text:hover::before,
#salon_support_04 .salon_support_inner .salon_support_text:hover::before,
#salon_support_05 .salon_support_inner .salon_support_text:hover::before {
  width: 100%;
}
#salon_support_01 .salon_support_inner .salon_support_text h3,
#salon_support_01 .salon_support_inner .salon_support_text span,
#salon_support_01 .salon_support_inner .salon_support_text p,
#salon_support_02 .salon_support_inner .salon_support_text h3,
#salon_support_02 .salon_support_inner .salon_support_text span,
#salon_support_02 .salon_support_inner .salon_support_text p,
#salon_support_03 .salon_support_inner .salon_support_text h3,
#salon_support_03 .salon_support_inner .salon_support_text span,
#salon_support_03 .salon_support_inner .salon_support_text p,
#salon_support_04 .salon_support_inner .salon_support_text h3,
#salon_support_04 .salon_support_inner .salon_support_text span,
#salon_support_04 .salon_support_inner .salon_support_text p,
#salon_support_05 .salon_support_inner .salon_support_text h3,
#salon_support_05 .salon_support_inner .salon_support_text span,
#salon_support_05 .salon_support_inner .salon_support_text p {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .salon_support_inner .salon_support_img,
  .salon_support_inner .salon_support_text,
  .salon_support_inner h3,
  .salon_support_inner span,
  .salon_support_inner p {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/*************************************************
NEWS
*************************************************/
#news .news_page {
  max-width: 1200px !important;
  width: 100% !important;
  margin: 100px auto !important;
  display: flex;
  gap: 100px;
}
@media screen and (max-width: 599px) {
  #news .news_page {
    flex-direction: column-reverse;
    margin: 50px auto !important;
    gap: 30px;
  }
}
#news .news_page .news_list {
  width: 100%;
}
#news .news_page aside {
  max-width: 300px;
  width: 100%;
  height: 100%;
  background: #cfebf5;
  padding: 15px 0;
}
@media screen and (max-width: 599px) {
  #news .news_page aside {
    max-width: 100%;
  }
}
#news .news_page aside h2 {
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.72px;
  padding-bottom: 10px;
  border-bottom: 1px solid #52b9e8;
  padding: 0 15px 10px 15px;
}
#news .news_page aside ul {
  padding: 15px;
}
#news .news_page aside ul li {
  margin-bottom: 15px;
}
#news .news_page aside ul li:last-child {
  margin-bottom: 0;
}
#news .news_page aside ul li a {
  display: block;
  font-size: 14px;
  font-weight: 500;
}
#news .news_page aside ul li:hover a {
  color: #52b9e8;
}
#news article {
  margin: 100px auto;
}
@media screen and (max-width: 599px) {
  #news article {
    margin: 50px auto;
  }
}
#news article .news_ttl {
  margin-bottom: 30px;
}
#news article .news_ttl .news_ttl_flex {
  display: flex;
  gap: 50px;
  align-items: center;
}
@media screen and (max-width: 599px) {
  #news article .news_ttl .news_ttl_flex {
    display: block;
  }
}
#news article .news_ttl .news_ttl_flex .date {
  display: inline-block;
  color: #52b9e8;
  font-size: 14px;
  font-family: Outfit;
  font-weight: 300;
  letter-spacing: 0.419px;
}
#news article .news_ttl .news_ttl_flex .cate {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px;
  background: #e8f4f8;
  color: #52b9e8;
  font-size: 14px;
  width: fit-content;
  font-family: Outfit;
  font-weight: 300;
  letter-spacing: 0.419px;
}
@media screen and (max-width: 599px) {
  #news article .news_ttl .news_ttl_flex .cate {
    display: inline-block;
  }
}
#news article .news_ttl h2 {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.6px;
  padding: 15px 0;
  border-bottom: 1px solid #ced6d9;
}
#news article .article p {
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: 500;
}
#news article .article p:last-child {
  margin-bottom: 0;
}
#news article .article img {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 15px 0;
}
#news .to_all a {
  margin: 0 auto;
}

/*************************************************
プライバシーポリシー
*************************************************/
#privacy .section_inner {
  max-width: 900px;
  margin: 100px auto 100px;
  padding: 60px 20px;
}
@media screen and (max-width: 599px) {
  #privacy .section_inner {
    margin: 50px auto;
  }
}
@media screen and (max-width: 768px) {
  #privacy .section_inner {
    padding: 0px 15px;
  }
}
#privacy .section_inner h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #privacy .section_inner h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
#privacy .section_inner > p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #privacy .section_inner > p {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
#privacy .section_inner h3 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #333;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #privacy .section_inner h3 {
    font-size: 18px;
    margin-top: 40px;
    margin-bottom: 16px;
  }
}
#privacy .section_inner .rgiht {
  text-align: right;
}
#privacy .section_inner p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #privacy .section_inner p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
  }
}
#privacy .section_inner p strong {
  font-weight: bold;
  display: block;
  margin-top: 20px;
  margin-bottom: 8px;
}
#privacy .section_inner ul {
  margin: 20px 0;
  padding-left: 1.5em;
}
@media screen and (max-width: 768px) {
  #privacy .section_inner ul {
    padding-left: 1.2em;
    margin: 16px 0;
  }
}
#privacy .section_inner ul li {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 12px;
  list-style-type: disc;
}
@media screen and (max-width: 768px) {
  #privacy .section_inner ul li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
  }
}
#privacy .section_inner ul li ul {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 1.5em;
}
#privacy .section_inner ul li ul li {
  list-style-type: circle;
  margin-bottom: 8px;
}
#privacy .section_inner a {
  color: #0066cc;
  text-decoration: underline;
  transition: opacity 0.3s;
}
#privacy .section_inner a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  #privacy .section_inner a {
    word-break: break-all;
  }
}
#privacy .section_inner h3:last-of-type {
  border-bottom: none;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #privacy .section_inner h3:last-of-type {
    margin-top: 50px;
  }
}
#privacy .section_inner > p:last-child {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #privacy .section_inner > p:last-child {
    padding: 16px;
  }
}

/*************************************************
おすすめ商品
*************************************************/
#products_list .section_inner {
  margin: 100px auto;
}
@media screen and (max-width: 599px) {
  #products_list .section_inner {
    margin: 50px auto;
    padding: 0 15px;
  }
}
#products_list .section_inner .products_list {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 599px) {
  #products_list .section_inner .products_list {
    gap: 0px;
    justify-content: space-between;
  }
}
#products_list .section_inner .products_list li {
  max-width: 300px;
  width: 100%;
  height: auto;
  background-color: #fff;
  padding-bottom: 20px;
}
@media screen and (max-width: 599px) {
  #products_list .section_inner .products_list li {
    max-width: 48%;
    margin-bottom: 30px;
  }
}
#products_list .section_inner .products_list li a {
  display: block;
}
#products_list .section_inner .products_list li a:hover .products_text h4 {
  color: #52b9e8;
}
#products_list .section_inner .products_list li a:hover img {
  opacity: 0.8;
}
#products_list .section_inner .products_list li img {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  #products_list .section_inner .products_list li img {
    margin-bottom: 10px;
  }
}
#products_list .section_inner .products_list li .products_ttl {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 0 13px;
}
@media screen and (max-width: 599px) {
  #products_list .section_inner .products_list li .products_ttl {
    padding: 0 5px;
  }
}
#products_list .section_inner .products_list li .products_ttl h3 {
  color: #152f3a;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 599px) {
  #products_list .section_inner .products_list li .products_ttl h3 {
    font-size: 14px;
  }
}
#products_list .section_inner .products_list li .products_ttl span {
  color: #9ba1a3;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
}
#products_list .section_inner .products_list li .products_text {
  padding: 0 13px;
}
@media screen and (max-width: 599px) {
  #products_list .section_inner .products_list li .products_text {
    padding: 0 5px;
  }
}
#products_list .section_inner .products_list li .products_text h4 {
  color: #152f3a;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.7px;
  padding-bottom: 5px;
  border-bottom: 1px solid #d4eefa;
  margin-bottom: 5px;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  #products_list .section_inner .products_list li .products_text h4 {
    font-size: 14px;
  }
}
#products_list .section_inner .products_list li .products_text p {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.7px;
  display: -webkit-box;
  -webkit-box-orient: vertical; /* 垂直方向に配置 */
  overflow: hidden; /* 溢れた部分を隠す */
  text-overflow: ellipsis; /* 溢れた部分に「...」を表示 */
  -webkit-line-clamp: 3;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  #products_list .section_inner .products_list li .products_text p {
    font-size: 12px;
  }
}
#products_list .section_inner .products_list li.swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

#products_item .section_inner {
  max-width: 900px;
  width: 100%;
  margin: 100px auto;
}
@media screen and (max-width: 599px) {
  #products_item .section_inner {
    margin: 50px auto;
    padding: 0 15px;
  }
}
#products_item .section_inner .products_item_title {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  #products_item .section_inner .products_item_title {
    margin-bottom: 30px;
  }
}
#products_item .section_inner .products_item_title .brand {
  display: inline-flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 10px;
  flex-wrap: wrap;
  background: #52b9e8;
  color: #fff;
  margin-bottom: 15px;
}
#products_item .section_inner .products_item_title h2 {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  padding-bottom: 15px;
  border-bottom: 1px solid #ced6d9;
}
#products_item .section_inner .brand_img {
  max-width: 600px;
  width: 100%;
  max-height: 750px;
  height: 100%;
  margin: 0 auto 50px;
}
@media screen and (max-width: 599px) {
  #products_item .section_inner .brand_img {
    margin-bottom: 30px;
  }
}
#products_item .section_inner .brand_img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
#products_item .section_inner .products_comment {
  background: #e8f4f8;
  padding: 30px 50px;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  #products_item .section_inner .products_comment {
    padding: 30px 15px;
  }
}
#products_item .section_inner .products_comment P {
  line-height: 1.6;
  font-weight: 500;
}
#products_item .section_inner .btn_01 {
  margin: 100px auto 0;
}
@media screen and (max-width: 599px) {
  #products_item .section_inner .btn_01 {
    margin: 50px auto 0;
  }
}

/*************************************************
メーカー・ブランド
*************************************************/
#brand .section_inner {
  max-width: 1100px;
  width: 100%;
  margin: 0px auto;
  padding: 100px 0;
}
@media screen and (max-width: 599px) {
  #brand .section_inner {
    padding: 50px 15px;
  }
}
#brand .section_inner h2 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  #brand .section_inner h2 {
    font-size: 16px;
  }
}
#brand .section_inner .brand_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 33px;
}
@media screen and (max-width: 599px) {
  #brand .section_inner .brand_list {
    gap: 15px;
  }
}
#brand .section_inner .brand_list li {
  max-width: 250px;
  width: 100%;
  background: #fff;
}
@media screen and (max-width: 599px) {
  #brand .section_inner .brand_list li {
    flex-basis: 47%;
  }
}
#brand .section_inner .brand_list li .brand_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 145px;
  border-bottom: 1px solid #52b9e8;
}
#brand .section_inner .brand_list li .brand_logo img {
  display: block;
}
@media screen and (max-width: 599px) {
  #brand .section_inner .brand_list li .brand_logo img {
    max-width: 120px;
    width: 100%;
  }
}
#brand .section_inner .brand_list li .brand_name {
  width: 100%;
  min-height: 75px;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  padding: 10px 20px;
}
@media screen and (max-width: 599px) {
  #brand .section_inner .brand_list li .brand_name {
    gap: 15px;
    max-height: 100%;
    padding: 15px;
  }
}
#brand .section_inner .brand_list li .brand_name p {
  line-height: 1.6;
  font-weight: 700;
  flex: 1;
}
@media screen and (max-width: 599px) {
  #brand .section_inner .brand_list li .brand_name p {
    font-size: 14px;
  }
}
#brand .section_inner .brand_list li .brand_name svg {
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
  flex-shrink: 0;
}
#brand .section_inner .brand_list li:hover a .brand_name p {
  color: #52b9e8;
}
#brand .section_inner .brand_list li:hover a .brand_name svg path {
  stroke: #52b9e8;
}

/*************************************************
ページネーション
*************************************************/
.pagination {
  margin: 40px 0;
  text-align: center;
}

.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  font-family: "Outfit", sans-serif;
}

.pagination li {
  margin: 0;
}

.pagination a,
.pagination span.current {
  display: block;
  padding: 10px 15px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
}

.pagination a:hover {
  background: #152F3A;
  color: #fff;
  border-color: #152F3A;
}

.pagination span.current {
  background: #152F3A;
  color: #fff;
  border-color: #152F3A;
}

/* 前へ・次への内側のspanタグ */
.pagination .prev,
.pagination .next {
  display: inline;
  padding: 10px 15px;
  border: none;
  font-weight: normal;
}

/*************************************************
お問い合わせ
*************************************************/
#contact .section_inner {
  max-width: 640px;
  width: 100%;
  margin: 0 auto 100px;
}
@media screen and (max-width: 599px) {
  #contact .section_inner {
    padding: 0 15px;
    margin-bottom: 50px;
  }
}
#contact .section_inner .contact_step {
  margin: 100px auto;
}
#contact .section_inner .contact_step .step_list {
  display: flex;
  gap: 80px;
  justify-content: center;
  position: relative;
  max-width: 460px;
  width: 100%;
  margin: 0 auto 40px;
}
#contact .section_inner .contact_step .step_list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #52b9e8;
  z-index: -1;
}
#contact .section_inner .contact_step .step_list li {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #fff;
  border: 5px solid #ddd;
}
@media screen and (max-width: 599px) {
  #contact .section_inner .contact_step .step_list li {
    width: 70px;
    height: 70px;
    font-size: 12px;
  }
}
#contact .section_inner .contact_step .step_list li span {
  font-size: 14px;
  font-family: Outfit;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}
#contact .section_inner .contact_step .step_list .active {
  background: #52b9e8;
  color: #fff;
  border: none;
}
#contact .section_inner .contact_step p {
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
}
#contact .section_inner .contact_form table {
  display: block;
}
#contact .section_inner .contact_form table tbody {
  display: block;
}
#contact .section_inner .contact_form table tbody tr {
  display: block;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  #contact .section_inner .contact_form table tbody tr {
    font-size: 14px;
  }
}
#contact .section_inner .contact_form table tbody tr th {
  display: block;
  margin-bottom: 8px;
}
#contact .section_inner .contact_form table tbody tr th span {
  color: #d7092f;
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
}
#contact .section_inner .contact_form table tbody tr td {
  display: flex;
  gap: 40px;
  width: 100%;
}
#contact .section_inner .contact_form table tbody tr td input {
  width: 100%;
  background: #f3f3f3;
  padding: 10px 15px;
  border-radius: 5px;
}
#contact .section_inner .contact_form table tbody tr td input[type=checkbox] {
  width: fit-content;
}
#contact .section_inner .contact_form table tbody tr td textarea {
  width: 100%;
  background: #f3f3f3;
  padding: 10px 15px;
  border-radius: 5px;
}
#contact .section_inner .contact_form table tbody tr td .checkboxItem {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  line-height: 1;
  cursor: pointer;
}
#contact .section_inner .contact_form table tbody tr td .checkboxItem:not(:last-of-type) {
  margin-right: 40px;
}
#contact .section_inner .contact_form table tbody tr .checkbox_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#contact .section_inner .contact_form .privacy_wrap a {
  color: #d7092f;
  text-decoration: underline;
}
#contact .section_inner .contact_form .btn_01 {
  margin: 60px auto 0;
}

.bg {
  background: #f4fbfe;
}

/*************************************************
FV
*************************************************/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease;
}
#loading.loaded {
  opacity: 0;
  pointer-events: none;
}

.loader {
  position: relative;
  width: 200px;
  height: 100px;
  text-align: center;
}
.loader-logo {
  font-size: 32px;
  font-weight: 700;
  color: #52b9e8;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeInLogo 0.8s ease forwards;
}
.loader-progress {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 2px;
  background: rgba(82, 185, 232, 0.2);
  border-radius: 2px;
  overflow: hidden;
}
.loader-progress-bar {
  /* ←ここを変更 */
  position: absolute;
  inset: 0 auto 0 0; /* 左端基点に固定 */
  width: 100%; /* 幅は100%、伸縮はtransformで */
  height: 100%;
  background: #52b9e8;
  border-radius: 2px;
  transform: scaleX(0); /* 初期0% */
  transform-origin: left center; /* ★左から右へ伸びる基点 */
  transition: transform 0.04s linear; /* JSの40ms更新と同期 */
  /* 競合するCSSアニメを外す */
  animation: none !important;
}
.loader-percentage {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  color: #52b9e8;
  letter-spacing: 1px;
}

@keyframes fadeInLogo {
  to {
    opacity: 1;
  }
}
@keyframes loadingProgress {
  to {
    width: 100%;
  }
}
#fv {
  position: relative;
  width: 100%;
  height: 63.8888888889vw;
  overflow: hidden;
  background: #f8f8f8;
}
@media screen and (max-width: 599px) {
  #fv {
    height: 100vh;
  }
}
#fv .fv_img {
  display: block;
  width: calc(100% - 60px);
  height: 100%;
  object-fit: cover;
  margin-left: 60px;
  opacity: 0;
  transform: scale(1.1) translateY(30px);
  z-index: -999;
}
@media screen and (max-width: 599px) {
  #fv .fv_img {
    display: none;
  }
}
#fv .fv_img_sp {
  display: none;
}
@media screen and (max-width: 599px) {
  #fv .fv_img_sp {
    display: block;
    width: 100%;
    height: 100%;
  }
}
#fv .copy {
  position: absolute;
  left: 120px;
  bottom: 140px;
  z-index: 10;
}
@media screen and (max-width: 599px) {
  #fv .copy {
    left: 15px;
    top: 100px;
  }
}
#fv .copy h1 {
  color: #fff;
  font-size: 43px;
  font-weight: 500;
  text-shadow: 0 0 20px rgba(0, 23, 39, 0.3);
  margin-bottom: 10px;
  letter-spacing: 0.1rem;
  opacity: 0;
  transform: translateY(30px);
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  #fv .copy h1 {
    font-size: 24px;
    color: #152f3a;
    text-shadow: none;
    margin-bottom: 20px;
    width: fit-content;
  }
}
#fv .copy h1 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}
#fv .copy p {
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 23, 39, 0.3);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  opacity: 0;
  transform: translateY(30px);
}
@media screen and (max-width: 599px) {
  #fv .copy p {
    font-size: 16px;
    color: #152f3a;
    text-shadow: none;
  }
}
#fv .top_news {
  position: absolute;
  right: 63px;
  bottom: 30px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(100px);
}
@media screen and (max-width: 599px) {
  #fv .top_news {
    left: 0;
    width: 100%;
    bottom: -1px;
  }
}
#fv .top_news_inner {
  display: flex;
  align-items: center;
  width: 500px;
  background: #fff;
  height: 70px;
  padding: 0 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#fv .top_news_ttl {
  color: #52b9e8;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding-right: 20px;
  display: block;
}
#fv .top_news_latest {
  flex: 1;
}
#fv .top_news_latest_inner {
  margin-bottom: 4px;
}
#fv .top_news_latest_inner .news_date {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.42px;
  margin-right: 10px;
}
#fv .top_news_latest_inner .news_tag {
  color: #52b9e8;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.42px;
  background: #e8f4f8;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 2px;
}
#fv .top_news_latest p {
  font-size: 14px;
  color: #333;
}
#fv .top_news .top_news_more {
  position: relative;
  display: inline-block;
  background-color: #52b9e8;
  color: #fff;
  width: 160px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
#fv .top_news .top_news_more::after {
  position: absolute;
  content: "";
  width: 117px;
  height: 1px;
  background-color: #fff;
  left: 20px;
  bottom: 23px;
  opacity: 0.5;
}
#fv .top_news .top_news_more:hover {
  opacity: 0.9;
  transform: translateX(5px);
}
#fv .top_news .top_news_more img,
#fv .top_news .top_news_more svg {
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 599px) {
  #fv .top_news .top_news_more {
    display: none;
  }
}

/*************************************************
who
*************************************************/
#who {
  position: relative;
  padding-top: 30px;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  #who {
    padding: 0 15px;
  }
}
#who .section_inner .who_title {
  position: relative;
  padding-top: 100px;
  margin-bottom: 30px;
}
#who .section_inner .who_title h2 {
  color: #52b9e8;
  font-family: Outfit;
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 3.2px;
}
@media screen and (max-width: 599px) {
  #who .section_inner .who_title h2 {
    font-size: 36px;
  }
}
#who .section_inner .who_title p {
  color: #3e8caf;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1px;
}
@media screen and (max-width: 599px) {
  #who .section_inner .who_title p {
    font-size: 15px;
  }
}
#who .section_inner .who_title .who {
  position: absolute;
  left: -8.3333333333vw;
  top: 0vw;
  animation: rotation 14s linear infinite;
}
@media screen and (max-width: 599px) {
  #who .section_inner .who_title .who {
    width: 190px;
    left: -21.3333333333vw;
    top: 13.3333333333vw;
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#who .section_inner .who_text {
  max-width: 860px;
  width: 100%;
  margin-right: 0;
  margin-left: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  #who .section_inner .who_text {
    padding: 0 15px;
  }
}
#who .section_inner .who_text p {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.6;
}
#who .section_inner .who_text p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  #who .section_inner .who_text p {
    font-size: 14px;
  }
}
#who .section_inner .btn_01 {
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 599px) {
  #who .section_inner .btn_01 {
    margin: 0 auto;
  }
}

/*************************************************
support
*************************************************/
#support {
  padding-bottom: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  #support {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
#support .support_inner {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  #support .support_inner {
    margin-bottom: 30px;
  }
}
#support .support_inner li {
  width: 33.3333333333%;
  min-height: 22.2222222222vw;
}
@media screen and (max-width: 599px) {
  #support .support_inner li {
    width: 50%;
    min-height: 34.6666666667vw;
  }
}
#support .support_inner li:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  #support .support_inner li:first-child .section_ttl h2 {
    font-size: 20px;
  }
  #support .support_inner li:first-child .section_ttl p {
    font-size: 12px;
  }
}
#support .support_inner li:nth-child(n+2):nth-child(-n+6) {
  position: relative;
  overflow: hidden;
}
#support .support_inner li:nth-child(n+2):nth-child(-n+6) > a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
#support .support_inner li:nth-child(n+2):nth-child(-n+6)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
  z-index: 0;
}
#support .support_inner li:nth-child(n+2):nth-child(-n+6):hover::before {
  transform: scale(1.1);
}
#support .support_inner li:nth-child(n+2):nth-child(-n+6) .support_list {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 2;
}
@media screen and (max-width: 599px) {
  #support .support_inner li:nth-child(n+2):nth-child(-n+6) .support_list {
    padding: 0 8px;
  }
}
#support .support_inner li:nth-child(n+2):nth-child(-n+6) .support_list div span {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  font-family: Outfit;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 599px) {
  #support .support_inner li:nth-child(n+2):nth-child(-n+6) .support_list div span {
    font-size: 12px;
  }
}
#support .support_inner li:nth-child(n+2):nth-child(-n+6) .support_list div p {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.33);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 599px) {
  #support .support_inner li:nth-child(n+2):nth-child(-n+6) .support_list div p {
    font-size: 14px;
  }
}
@media screen and (max-width: 599px) {
  #support .support_inner li:nth-child(n+2):nth-child(-n+6) .support_list img {
    display: block;
    width: 19px;
    height: auto;
  }
}
#support .support_inner li:nth-child(2)::before {
  background-image: url(../images/support_01.png);
}
#support .support_inner li:nth-child(3)::before {
  background-image: url(../images/support_02.png);
}
#support .support_inner li:nth-child(4)::before {
  background-image: url(../images/support_03.png);
}
#support .support_inner li:nth-child(5)::before {
  background-image: url(../images/support_04.png);
}
#support .support_inner li:nth-child(6)::before {
  background-image: url(../images/support_05.png);
}
#support .btn_01 {
  margin: 0 auto;
}

/*************************************************
メーカー
*************************************************/
#maker {
  margin-bottom: 100px;
}
#maker .section_ttl {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  #maker .section_ttl {
    padding: 0 30px;
  }
}
#maker .btn_01 {
  margin: 50px auto 0;
}
#maker .slide_left,
#maker .slide_right {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
#maker .logo-slider-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
  background: #f8f8f8;
}
#maker .slide_left,
#maker .slide_right {
  width: 100%;
  margin-bottom: 30px;
}
#maker .slide_left:last-child,
#maker .slide_right:last-child {
  margin-bottom: 0;
}
#maker .slide_left.slick-slider .slick-list,
#maker .slide_right.slick-slider .slick-list {
  overflow: hidden;
  padding: 0 50px;
}
#maker .slide_left.slick-slider .slick-track,
#maker .slide_right.slick-slider .slick-track {
  display: flex;
  align-items: center;
  gap: 40px;
}
#maker .slide_left.slick-slider .slick-slide,
#maker .slide_right.slick-slider .slick-slide {
  width: auto !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
#maker .slide_left.slick-slider .slick-slide li,
#maker .slide_right.slick-slider .slick-slide li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
#maker .slide_left.slick-slider .slick-slide li img,
#maker .slide_right.slick-slider .slick-slide li img {
  width: auto;
  height: 60px;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
@media screen and (max-width: 599px) {
  #maker .slide_left.slick-slider .slick-slide li img,
  #maker .slide_right.slick-slider .slick-slide li img {
    height: 40px !important;
  }
}
@media screen and (max-width: 768px) {
  #maker .slide_left.slick-slider .slick-list,
  #maker .slide_right.slick-slider .slick-list {
    padding: 0 20px;
  }
  #maker .slide_left.slick-slider .slick-track,
  #maker .slide_right.slick-slider .slick-track {
    gap: 20px;
  }
  #maker .slide_left.slick-slider .slick-slide li,
  #maker .slide_right.slick-slider .slick-slide li {
    padding: 0 10px;
  }
  #maker .slide_left.slick-slider .slick-slide li img,
  #maker .slide_right.slick-slider .slick-slide li img {
    height: 40px;
  }
}

/*************************************************
おすすめ商品
*************************************************/
#products {
  position: relative;
}
#products::before {
  position: absolute;
  right: 0;
  content: "";
  width: 97%;
  height: 100%;
  background-color: #a9ddf4;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  #products::before {
    width: 100%;
  }
}
#products .products_inner {
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  #products .products_inner .btn_01 {
    display: flex;
    margin: 30px auto;
  }
}
#products .products_inner .btn_sp {
  display: none;
}
@media screen and (max-width: 599px) {
  #products .products_inner .btn_sp {
    display: flex;
    margin: 30px auto;
  }
}
#products .products_inner .products_wrap {
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 50px;
  padding: 50px 0px 0;
}
@media screen and (max-width: 599px) {
  #products .products_inner .products_wrap {
    padding: 50px 15px 0;
  }
}
#products .products_inner .products_wrap .section_ttl h2 {
  color: #fff;
  text-align: left;
}
@media screen and (max-width: 599px) {
  #products .products_inner .products_wrap .section_ttl h2 {
    font-size: 26px;
  }
}
#products .products_inner .products_wrap .section_ttl p {
  text-align: left;
}
@media screen and (max-width: 599px) {
  #products .products_inner .products_wrap .btn_01 {
    display: none;
  }
}
#products .products_inner .products_slider_container {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #products .products_inner .products_slider_container {
    padding-left: 30px;
  }
}
#products .products_inner .products_slider {
  margin-left: calc((100vw - 1200px) / 2);
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  #products .products_inner .products_slider {
    margin-left: 0;
  }
}
#products .products_inner .products_list {
  display: flex;
}
#products .products_inner .products_list li {
  max-width: 300px;
  width: 100%;
  height: auto;
  background-color: #fff;
  padding-bottom: 20px;
}
#products .products_inner .products_list li a {
  display: block;
}
#products .products_inner .products_list li a:hover .products_text h4 {
  color: #52b9e8;
}
#products .products_inner .products_list li a:hover img {
  opacity: 0.8;
}
#products .products_inner .products_list li img {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
#products .products_inner .products_list li .products_ttl {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 0 13px;
}
#products .products_inner .products_list li .products_ttl h3 {
  color: #152f3a;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.9px;
}
#products .products_inner .products_list li .products_ttl span {
  color: #9ba1a3;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
}
#products .products_inner .products_list li .products_text {
  padding: 0 13px;
}
#products .products_inner .products_list li .products_text h4 {
  color: #152f3a;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.7px;
  padding-bottom: 5px;
  border-bottom: 1px solid #d4eefa;
  margin-bottom: 5px;
  line-height: 1.5;
}
#products .products_inner .products_list li .products_text p {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.7px;
  display: -webkit-box;
  -webkit-box-orient: vertical; /* 垂直方向に配置 */
  overflow: hidden; /* 溢れた部分を隠す */
  text-overflow: ellipsis; /* 溢れた部分に「...」を表示 */
  -webkit-line-clamp: 3;
  line-height: 1.5;
}
#products .products_inner .products_list li.swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}
#products .products_inner .slider_controls {
  max-width: 1200px;
  width: 100%;
  margin: 50px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  #products .products_inner .slider_controls {
    padding: 0 30px;
    gap: 10px;
  }
}
#products .products_inner .slider_controls .slider_progressbar {
  flex: 1;
  max-width: 990px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  #products .products_inner .slider_controls .slider_progressbar {
    max-width: 200px;
  }
}
#products .products_inner .slider_controls .slider_progressbar .progressbar_fill {
  display: block;
  height: 100%;
  background: #ffffff;
  border-radius: 3px;
  transition: width 0.5s ease;
  width: 0%;
  position: absolute;
  left: 0;
  top: 0;
}
#products .products_inner .slider_controls .slider_btn_wrap {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 599px) {
  #products .products_inner .slider_controls .slider_btn_wrap {
    gap: 15px;
  }
}
#products .products_inner .slider_controls .slider_btn_wrap .swiper-button-prev,
#products .products_inner .slider_controls .slider_btn_wrap .swiper-button-next {
  position: static;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}
#products .products_inner .slider_controls .slider_btn_wrap .swiper-button-prev::after,
#products .products_inner .slider_controls .slider_btn_wrap .swiper-button-next::after {
  display: none;
}
#products .products_inner .slider_controls .slider_btn_wrap .swiper-button-prev img,
#products .products_inner .slider_controls .slider_btn_wrap .swiper-button-next img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
#products .products_inner .slider_controls .slider_btn_wrap .swiper-button-prev:hover,
#products .products_inner .slider_controls .slider_btn_wrap .swiper-button-next:hover {
  opacity: 0.8;
}
#products .products_inner .slider_controls .slider_btn_wrap .swiper-button-prev.swiper-button-disabled,
#products .products_inner .slider_controls .slider_btn_wrap .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
#products .products_inner .slider_controls .slider_btn_wrap .swiper-button-prev.swiper-button-disabled:hover,
#products .products_inner .slider_controls .slider_btn_wrap .swiper-button-next.swiper-button-disabled:hover {
  opacity: 0.3;
}
@media screen and (max-width: 599px) {
  #products .products_inner .slider_controls .slider_btn_wrap .swiper-button-prev,
  #products .products_inner .slider_controls .slider_btn_wrap .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

.elima {
  max-width: 800px;
  width: 100%;
  margin: 100px auto;
}
@media screen and (max-width: 599px) {
  .elima {
    margin: 30px auto;
  }
}
.elima a img {
  display: block;
  width: 100%;
}
.elima a:hover {
  opacity: 0.8;
}

/*************************************************
採用
*************************************************/
#recruit {
  background: linear-gradient(180deg, #005d9a 2.08%, #52b9e8 97.3%);
  margin-bottom: 100px;
}
@media screen and (max-width: 599px) {
  #recruit {
    margin-bottom: 50px;
  }
}
#recruit .recruit_inner {
  display: flex;
  align-items: center;
  height: 720px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  #recruit .recruit_inner {
    display: block;
    height: 100%;
  }
}
#recruit .recruit_inner .recruit_slide {
  display: flex;
  gap: 15px;
  flex-basis: 50%;
  padding-left: 10px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  #recruit .recruit_inner .recruit_slide {
    display: none;
  }
}
#recruit .recruit_inner .recruit_slide .slide_up li,
#recruit .recruit_inner .recruit_slide .slide_down li {
  width: 100%;
  margin-bottom: 15px;
}
#recruit .recruit_inner .recruit_slide .swiper-slide {
  height: auto;
}
#recruit .recruit_inner .recruit_slide .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}
#recruit .recruit_inner .recruit_slide_sp {
  display: none;
}
@media screen and (max-width: 599px) {
  #recruit .recruit_inner .recruit_slide_sp {
    display: block;
    overflow: hidden;
    padding: 20px 0;
  }
  #recruit .recruit_inner .recruit_slide_sp .slide_up_sp,
  #recruit .recruit_inner .recruit_slide_sp .slide_down_sp {
    display: flex;
    margin-bottom: 15px;
    gap: 15px;
  }
  #recruit .recruit_inner .recruit_slide_sp .slide_up_sp:last-child,
  #recruit .recruit_inner .recruit_slide_sp .slide_down_sp:last-child {
    margin-bottom: 0;
  }
  #recruit .recruit_inner .recruit_slide_sp .slide_up_sp li img,
  #recruit .recruit_inner .recruit_slide_sp .slide_down_sp li img {
    display: block;
    max-width: 220px;
    width: 100%;
    height: auto;
  }
  #recruit .recruit_inner .recruit_slide_sp .slick-slide {
    margin: 0 7.5px;
  }
}
#recruit .recruit_inner .recruit_info {
  max-width: 600px;
  width: 100%;
  color: #fff;
}
@media screen and (max-width: 599px) {
  #recruit .recruit_inner .recruit_info {
    padding: 0 15px;
  }
}
#recruit .recruit_inner .recruit_info h2 {
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  #recruit .recruit_inner .recruit_info h2 img {
    display: block;
    margin: 0 auto;
  }
}
#recruit .recruit_inner .recruit_info h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  #recruit .recruit_inner .recruit_info h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
  }
}
#recruit .recruit_inner .recruit_info p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  #recruit .recruit_inner .recruit_info p {
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  #recruit .recruit_inner .recruit_info .btn_02 {
    margin: 30px auto;
  }
}

/*************************************************
お知らせ
*************************************************/
#news {
  margin-bottom: 100px;
}
@media screen and (max-width: 599px) {
  #news {
    margin-bottom: 50px;
  }
}
#news .news_inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  #news .news_inner {
    padding: 0 15px;
  }
}
#news .news_inner .news_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
#news .news_inner .news_flex .section_ttl {
  display: flex;
  align-items: center;
  gap: 10px;
}
#news .news_inner .news_flex .btn_01 {
  display: flex;
}
@media screen and (max-width: 599px) {
  #news .news_inner .news_flex .btn_01 {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  #news .news_inner .news_list {
    padding: 0 15px;
  }
}
#news .news_inner .news_list li {
  padding: 20px 0;
  border-bottom: 1px solid #ced6d9;
}
#news .news_inner .news_list li:first-child {
  border-top: 1px solid #ced6d9;
}
#news .news_inner .news_list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#news .news_inner .news_list li a .news_list_inner {
  display: flex;
  gap: 50px;
  align-items: center;
}
@media screen and (max-width: 599px) {
  #news .news_inner .news_list li a .news_list_inner {
    display: block;
  }
}
#news .news_inner .news_list li a .news_list_inner .date {
  display: inline-block;
  color: #52b9e8;
  font-size: 14px;
  font-family: Outfit;
  font-weight: 300;
  letter-spacing: 0.419px;
}
#news .news_inner .news_list li a .news_list_inner .cate {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px;
  background: #e8f4f8;
  color: #52b9e8;
  font-size: 14px;
  width: fit-content;
  font-family: Outfit;
  font-weight: 300;
  letter-spacing: 0.419px;
}
@media screen and (max-width: 599px) {
  #news .news_inner .news_list li a .news_list_inner .cate {
    display: inline-block;
  }
}
#news .news_inner .news_list li a p {
  line-height: 1.5;
}
#news .news_inner .news_list li:hover a p {
  color: #3e8caf;
}
#news .news_inner .btn_01 {
  display: none;
}
@media screen and (max-width: 599px) {
  #news .news_inner .btn_01 {
    display: flex;
    margin: 30px auto;
  }
}