@charset "UTF-8";

/******************************
  Base & Body
******************************/
:root {
  --ui-sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --jp-sans: var(--ui-sans), "Noto Sans JP";
}

html,
body {
  font-family: var(--jp-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

:lang(en),
[lang="en"] {
  font-family: var(--ui-sans);
}

body {
  opacity: 0;
  transition: opacity 1.2s ease;
  font-feature-settings: "palt"0;
  letter-spacing: 0.1em;
}

body.loaded {
  opacity: 1;
}

/******************************
  Utility
******************************/
.pcOnly {
  display: block !important;
}

.spOnly {
  display: none !important;
}

.txt_c {
  text-align: center !important;
}

.txt_r {
  text-align: right !important;
}

img {
  width: 100%;
  border-style: none;
  vertical-align: bottom;
  display: block;
}

a,
a:hover {
  text-decoration: underline;
  color: #000 !important;
}

i img {
  display: inline-block;
  width: 22px;
  position: relative;
  top: -3px;
  left: 5px;
}

.txt_c {
  text-align: center !important;
}

span.en {
  position: relative;
  top: 0.5px;
  font-size: 108% !important;
}

.nowrap {
  white-space: nowrap;
}

.red {
  color: #d60101 !important;
}

.bg_v {
  background: #F1E7F1 !important;
}

.pointer {
  cursor: pointer;
}

.br_480 {
  display: none !important;
}

.br_375 {
  display: none !important;
}

@media (max-width: 750px) {
  .pcOnly {
    display: none !important;
  }

  .spOnly {
    display: block !important;
  }
}

@media (max-width: 480px) {
  .br_480 {
    display: block !important;
  }
}

@media (max-width: 375px) {
  .br_375 {
    display: block !important;
  }
}

/******************************
  Animations
******************************/
.fadeIn,
.fadeIn-T,
.fadeIn-L,
.fadeIn-R {
  opacity: 0;
}

.fadeIn.active,
.fadeIn-T.active,
.fadeIn-L.active,
.fadeIn-R.active {
  opacity: 1;
}

.fadeIn {
  transform: translate(0, 100px);
  transition: opacity 0.5s, transform 0.5s;
}

.fadeIn.active {
  transform: translate(0, 0);
  transition: opacity 1.2s, transform 1.2s;
}

.fadeIn-T {
  transform: translate(0, -130px);
  transition: opacity 0.5s, transform 0.5s;
}

.fadeIn-T.active {
  transform: translate(0, 0);
  transition: opacity 1.7s, transform 3s;
}

.fadeIn-L {
  transform: translate(40px, 0);
  transition: all 0.5s;
}

.fadeIn-L.active {
  transform: translate(0, 0);
  transition: all 1s;
}

.fadeIn-R {
  transform: translate(-40px, 0);
  transition: all 0.5s;
}

.fadeIn-R.active {
  transform: translate(0, 0);
  transition: all 1s;
}

.fade-wrap {
  overflow: hidden;
}

.scale {
  transform: scale(2);
  transition: all 0.3s;
  opacity: 0;
}

.scale.active {
  transform: scale(1);
  transition: all 0.8s;
  opacity: 1;
}

.zoom {
  transform: scale(0.8);
  transition: all 0.5s;
  opacity: 0;
}

.zoom.active {
  transform: scale(1);
  transition: all 1.2s;
  opacity: 1;
}

.opacity {
  opacity: 0;
  transition: all 0.5s;
}

.opacity.active {
  opacity: 1;
  transition: all 2s;
}

.fv-blur-txt .char {
  display: inline-block;
  opacity: 0;
  transform: translateX(-20px);
}

.fv-blur-txt.is-active .char {
  animation: slideIn 0.5s ease-out forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.blur-txt {
  filter: blur(10px);
  opacity: 0;
  animation: blurIn 1s ease-out forwards;
  animation-delay: 0.7s;
}

@keyframes blurIn {
  to {
    filter: blur(0);
    opacity: 1;
  }
}

/******************************
  Arrow
******************************/
.more {
  display: flex;
  justify-content: flex-end;
  margin: 25px 3px 0 0;
}

.arrow-link-right {
  font-size: 14px;
  --arrow-color: #000;
  position: relative;
  display: inline-block;
  color: #000;
  text-decoration: none;
  padding-right: 60px;
  white-space: nowrap;
}

.arrow-link-right::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) skewX(50deg);
  width: 55px;
  height: 5px;
  border-bottom: 1px solid var(--arrow-color);
  border-right: 1px solid var(--arrow-color);
  transition:
    width 0.3s ease,
    border-color 0.3s ease;
}

.arrow-link-right:hover::after,
.is-hover .arrow-link-right::after {
  width: 45px;
  border-bottom-color: #000;
  border-right-color: #000;
}

.arrow-link-right .label {
  display: inline-block;
  transition: transform 0.3s ease;
}

.arrow-link-right:hover .label,
.is-hover .arrow-link-right .label {
  transform: translateX(10px);
}


@media (max-width: 480px) {
  .arrow-link-right {
    font-size: 12px;
  }
}

/******************************
  Header
******************************/
header {
  width: 100%;
  position: relative;
}

header h1 {
  position: fixed;
  z-index: 200;
  left: 30px;
  top: 20px;
  width: 80px;
  height: 80px;
}

header ul {
  position: fixed;
  z-index: 99;
  right: 30px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 80px;
}

header ul li {
  margin: 0 20px;
  transition: 0.5s ease;
}

header ul li a {
  color: #000;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: transform 0.3s ease, color 0.3s ease;
  padding: 5px 0;
}

header ul li:hover a {
  transform: translateY(-5px);
  text-decoration: none;
}

@media (max-width: 1000px) {
  header ul li {
    margin: 0 15px;
    transition: 0.5s ease;
  }
}

@media (max-width: 750px) {
  header h1 {
    left: 2.5%;
    top: 15px;
    width: 70px;
  }

  header ul {
    right: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    padding: 13% 0 0;
  }

  header ul li {
    margin: 0;
    padding: 4.5% 2%;
  }

  header ul li a {
    font-size: 16px;
  }

  header ul li:hover a {
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  header h1 {
    left: 3.5%;
    width: 11.5vw;
    min-width: 46px;
  }
}

@media (max-width: 480px) {
  header ul li a {
    font-size: 14px;
  }
}

@media (min-width: 751px) {
  header ul {
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
    text-align: right;
    position: fixed;
    top: 0;
    right: 30px;
    height: 80px;
    background: transparent;
  }
}

/******************************
  nav_btn_trigger
******************************/
.nav_btn {
  position: fixed;
  right: 20px;
  top: 30px;
  z-index: 100;
}

.nav_btn_trigger {
  position: relative;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.nav_btn_trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  border-radius: 1px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.nav_btn_trigger span:nth-of-type(1) {
  top: 0;
}

.nav_btn_trigger span:nth-of-type(2) {
  top: 10px;
}

.nav_btn_trigger.active span:nth-of-type(1) {
  transform: translateY(5px) rotate(-45deg);
}

.nav_btn_trigger.active span:nth-of-type(2) {
  transform: translateY(-5px) rotate(45deg);
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}


/******************************
  bg
******************************/
.is-white {
  background: #fff !important;
}

.bg {
  width: 100%;
  height: 100vh;
  height: 100lvh;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  background: url("../img/bg.jpg") no-repeat bottom center;
  background-size: cover;
  pointer-events: none;
  background-blend-mode: lighten;
  opacity: 1;
  background-color: transparent;
  transition: opacity 1.5s ease 0.5s, background-color 1.5s ease;
}

@media (max-width: 1100px) {
  .bg {
    background: url("../img/bg1100.jpg") no-repeat bottom right;
    background-size: cover;
  }
}

@media (max-width: 1000px) {
  .bg {
    background: url("../img/bg1100.jpg") no-repeat bottom;
    background-size: cover;
    background-position: 90% 100%;
  }
}

@media (max-width: 900px) {
  .bg {
    background: url("../img/bg1100.jpg") no-repeat bottom;
    background-size: cover;
    background-position: 70% 100%;
  }
}

@media (max-width: 750px) {
  .bg {
    background: url("../img/bg750.jpg") no-repeat bottom center;
    background-size: cover;
  }
}

/******************************
  block01
******************************/
.block01 {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100vh;
  height: 100lvh;
}

.bg_header {
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 5;
}

.bg_header {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.bg_header.is-show {
  opacity: 1;
}

.bg_other {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.bg_other.is-hide {
  opacity: 0;
}

.page_header {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 2;
}

.page_txt {
  position: fixed;
  background: #fff;
  top: 79px;
  right: 0;
  width: 280px;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.5s;
}

.page_txt .txt_t {
  font-size: 26px;
  font-weight: 300;
  margin: -20px auto 15px;
}

.page_txt .txt_f {
  font-family: "Noto Sans JP" !important;
  font-size: 12px;
  letter-spacing: 0.4em;
}

.fv_txt {
  position: relative;
  top: 50%;
  left: 0;
  width: 100%;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
  font-size: 27px;
  text-align: center;
}

.fv_txt span.space {
  display: inline-block;
  width: 33vw;
}

@media (max-width: 1400px) {
  .fv_txt {
    font-size: 1.8vw;
    letter-spacing: 0;
  }

  .fv_txt span.space {
    width: 40vw;
  }
}

@media (max-width: 1100px) {
  .page_txt {
    width: 200px;
    height: 200px;
    transition: all 0.5s;
  }

  .page_txt .txt_t {
    margin: -10px auto 15px;
  }

  .fv_txt {
    top: 25%;
    padding-left: 8%;
    font-size: 27px;
    text-align: left;
    line-height: 2;
    letter-spacing: 0.1em;
  }

  .fv_txt span.space {
    display: block;
    width: 0;
  }
}

@media (max-width: 900px) {
  .fv_txt {
    font-size: 3vw;
  }
}

@media (max-width: 750px) {
  .bg_header {
    background: rgba(255, 255, 255, 0.9);
    width: 70px;
    height: 70px;
    right: 0;
    left: auto;
  }

  .page_header {
    height: 66px;
  }

  .page_txt {
    top: 65px;
    width: 180px;
    height: 180px;
    transition: all 0.5s;
  }

  .page_txt .txt_t {
    font-size: 24px;
    margin: -20px auto 10px;
  }

  .page_txt .txt_f {
    font-size: 10px;
    letter-spacing: 0.25em;
  }

  .fv_txt {
    top: 18%;
    text-align: center;
    font-size: 20px;
    line-height: 2.6;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .page_txt {
    width: 36vw;
    height: 36vw;
    transition: all 0.5s;
  }

  .page_txt .txt_t {
    font-size: max(17px, 5vw);
    margin: -2.5vw auto 1.5vw;
  }
}


@media (max-width: 375px) {
  .fv_txt {
    font-size: 5.3vw;
  }
}

/******************************
  Main
******************************/
Main {
  background: #fff;
}


/******************************
  block02
******************************/
.block02 {
  position: relative;
  top: 0;
  left: 0;
  z-index: 2;
  background: #fff;
}

@media (max-width: 750px) {
  .block02 {
    margin-top: 10vh;
    margin-top: 10lvh;
  }
}


/******************************
  aboutus
******************************/

.aboutus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0;
}

.aboutus h2 {
  font-size: 26px;
  letter-spacing: 0.1em;
  padding-top: 10px;
  padding-bottom: 90px;
  font-weight: 300;
  text-align: center;
}

.aboutus h3 {
  font-size: 23px;
  line-height: 2em;
  padding-bottom: 40px;
  font-weight: normal;
  text-align: center;
}

.aboutus p {
  text-align: center;
  font-size: 15px;
  line-height: 2.5em;
}

.aboutus .txt_t {
  padding-bottom: 30px;
}

.aboutus div {
  width: 40%;
}

.aboutus div:first-child,
.aboutus div:last-child {
  width: 30%;
}

@media (max-width: 1400px) {
  .aboutus div {
    width: 30%;
  }

  .aboutus div:first-child,
  .aboutus div:last-child {
    width: 35%;
  }
}

@media (max-width: 1100px) {
  .aboutus h2 {
    font-size: 2.3vw;
    padding-bottom: 5vw;
  }

  .aboutus h3 {
    font-size: 2vw;
    padding-bottom: 2.5vw;
  }

  .aboutus p {
    font-size: 1.4vw;
  }

  .aboutus .txt_t {
    padding-bottom: 2vw;
  }
}

@media (max-width: 750px) {
  .aboutus {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .aboutus h2 {
    padding-top: 15%;
    font-size: 24px;
    padding-bottom: 12%;
  }

  .aboutus h3 {
    font-size: 22px;
  }

  .aboutus p {
    font-size: 14px;
  }

  .aboutus .txt_f {
    padding-bottom: 15%;
  }

  .aboutus .opacity {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .aboutus div {
    width: 100%;
  }

  .aboutus div:first-child,
  .aboutus div:last-child {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .aboutus h2 {
    font-size: max(17px, 5vw);
  }

  .aboutus h3 {
    font-size: max(15px, 4.5vw);
  }

  .aboutus p {
    font-size: max(12px, 3vw);
  }
}

/******************************
  block03
******************************/
.block03 {
  position: relative;
  background: #fff;
  z-index: 3;
}

.block03 h2 {
  margin: 0 auto;
  font-size: 26px;
  letter-spacing: 0.1em;
  padding: 200px 5% 100px;
  font-weight: 300;
  text-align: center;
  line-height: 1em;
}

.block03 h2 span {
  display: inline-block;
  font-family: "Noto Sans JP" !important;
  font-size: 12px;
  letter-spacing: 0.4em;
  font-weight: 400;
  padding-top: 15px;
}

.block03 h2 span.long {
  font-size: 13px !important;
  letter-spacing: 0.25em !important;
}

.block03 h2.ttl_s {
  font-size: 20px !important;
  line-height: 1.8em;
}

.block03 .txt_base {
  margin: 0 auto;
  font-size: 14px;
  line-height: 2.5em;
  width: 800px;
  text-align: justify;
}


@media (max-width: 1100px) {
  .block03 h2 {
    font-size: 25px;
    padding: 200px 5% 5vw;
  }
}

@media (max-width: 940px) {
  .block03 .txt_base {
    width: 100%;
    padding: 0 7.5vw;
  }
}

@media (max-width: 750px) {
  .block03 h2 {
    padding: 32% 7% 11%;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .block03 h2 {
    font-size: 22px;
  }

  .block03 h2.ttl_s {
    font-size: 12px !important;
  }

  .block03 .txt_base {
    font-size: max(12px, 3vw);
  }

  .block03 h2 span.long {
    font-size: 12px !important;
  }
}

/******************************
  top_brand
******************************/
.top_brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1100px;
  margin: 0 auto;
  padding: 0;
  gap: 60px;
  transition: none;
}

.top_brand_box {
  width: 1100px;
  margin: 0 auto;
}

.top_brand .btn {
  flex: 1;
}

.top_brand .btn a {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: block;
  border: 1px solid #B3B3B3;
  box-sizing: border-box;
  transition:
    transform 0.6s cubic-bezier(.4, 0, .2, 1),
    border-color 0.4s ease;
}

.top_brand .btn a img {
  width: 350px;
  margin: 0 auto;
  padding: 50px 0;
  transition: transform 0.6s ease;
}

.top_brand .btn a:hover img {
  transform: scale(1.05);
}

.top_brand .btn a:hover {
  border-color: transparent;
}

.top_brand .btn a span {
  position: absolute;
  background: #000;
  pointer-events: none;
}

.top_brand .btn a .line-top {
  top: -1px;
  left: -1px;
  height: 1px;
  width: 0;
}

.top_brand .btn a .line-right {
  top: -1px;
  right: -1px;
  width: 1px;
  height: 0;
}

.top_brand .btn a .line-bottom {
  bottom: -1px;
  right: -1px;
  height: 1px;
  width: 0;
}

.top_brand .btn a .line-left {
  bottom: -1px;
  left: -1px;
  width: 1px;
  height: 0;
}

.top_brand .btn a:hover .line-top {
  width: calc(100% + 1px);
}

.top_brand .btn a:hover .line-right {
  height: calc(100% + 1px);
}

.top_brand .btn a:hover .line-bottom {
  width: calc(100% + 1px);
}

.top_brand .btn a:hover .line-left {
  height: calc(100% + 1px);
}

.top_brand .btn a .line-top,
.top_brand .btn a .line-right,
.top_brand .btn a .line-bottom,
.top_brand .btn a .line-left {
  transition: all 0.5s cubic-bezier(.4, 0, .2, 1);
}

@media (max-width: 1200px) {
  .top_brand {
    width: 100%;
    padding: 0 6vw;
    gap: 5vw;
    transition: transform 0.6s cubic-bezier(.4, 0, .2, 1);
  }

  .top_brand_box {
    width: 100%;
    padding: 0 6vw;
  }


  .top_brand .btn a img {
    width: 30vw;
    padding: 8% 0;
  }
}

@media (max-width: 750px) {
  .top_brand {
    display: block;
    padding: 0 5%;
  }

  .top_brand .btn:first-child {
    margin-bottom: 5%;
  }

  .top_brand .btn a img {
    width: 55vw;
    max-width: 300px;
    min-width: 200px;
    padding: 8% 0;
  }
}

@media (max-width: 480px) {
  .top_brand {
    display: block;
    padding: 0 5%;
  }

  .top_brand .btn:first-child {
    margin-bottom: 5%;
  }

  .top_brand .btn a img {
    width: 55vw;
    max-width: 300px;
    min-width: 200px;
    padding: 8% 0;
  }
}


/******************************
  dl dd dt
******************************/
dt span.sub,
dd span.sub {
  margin-left: -0.6em;
}

.info,
.ir {
  margin: 0 auto;
  padding: 0;
  width: 800px;
}

.info dl,
.ir dl {
  display: grid;
  grid-template-columns: 130px 1fr;
  column-gap: 0;
  font-size: 14px;
  line-height: 2em;
}

.info dl {
  margin-top: -1.5em !important;
}

.info dt,
.info dd,
.ir dt,
.ir dd {
  display: flex;
  align-items: flex-start;
  text-align: justify;
  padding: 1.5em 0 1.4em;
  position: relative;
  color: #000;
  border-bottom: 1px solid #B3B3B3;
}

.info dt,
.ir dt {
  padding-right: 20px;
}

.ir dd {
  padding-left: 20px;
}

.ir dd span {
  display: inline-block;
  font-size: 11px;
  background: #AE7EB6;
  color: #fff;
  margin-right: 15px;
  width: 70px;
  height: 22px;
  text-align: center;
  line-height: 22px;
  flex-shrink: 0;
}

/* レスポンシブ調整 */
@media (max-width: 940px) {

  .info,
  .ir {
    width: 100%;
    padding: 0 7.5vw;
  }

  .info dl,
  .ir dl {
    font-size: 1.4vw;
  }
}

@media (max-width: 750px) {

  .info dl,
  .ir dl {
    grid-template-columns: 110px 1fr;
    font-size: 14px;
  }
}

@media (max-width: 480px) {

  .info dl,
  .ir dl {
    grid-template-columns: 100px 1fr;
    font-size: max(12px, 3vw);
  }
}

/******************************
news
******************************/
.news-row-link {
  display: contents;
  text-decoration: none;
  color: inherit;
}

.news-row-link:hover dt,
.news-row-link:hover dd {
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.news-row-link:active dt,
.news-row-link:active dd {
  opacity: 0.2;
}

.news-row-link dd {
  text-decoration: none !important;
}

.news-row-link {
  display: contents;
  text-decoration: none;
  color: inherit;
}

.news-row-link dd {
  position: relative;
  padding-right: 40px !important;
  box-sizing: border-box;
  text-decoration: none !important;
}

.news-row-link dd::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% + (1.5em - 1.4em) / 2);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../img/icon_link.svg") no-repeat center center;
  background-size: contain;
  transition: opacity 0.25s ease;
}

.info dd:nth-child(2)::after,
.ir dd:nth-child(2)::after {
  top: 50%;
}

.news-row-link:hover dt,
.news-row-link:hover dd {
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.news-row-link:active dt,
.news-row-link:active dd {
  opacity: 0.2;
}


/******************************
  salons_company
******************************/
.salons_company {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  margin: 200px auto 0;
  padding: 0;
  gap: 60px;
  transition: none;
}

.salons_company .btn {
  flex: 1;
}

.salons_company .btn a {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: block;
  box-sizing: border-box;
  transition: transform 0.6s ease;
  overflow: hidden;
  color: #000;
  text-decoration: none;
}

.salons_company .btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #B3B3B3;
}

.salons_company .btn a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.salons_company .btn a:hover::after {
  transform: scaleX(1);
}

.salons_company .btn a img {
  transform: scale(1);
  margin: 0 auto;
  transition: transform 0.6s ease;
}

.salons_company .btn a:hover img {
  transform: scale(1.05);
}

.salons_company .btn a span {
  display: block;
  text-align: center;
  padding: 23px 0 23px;
  font-size: 22px;
  font-weight: 300;
  transition: 0.5s;
}

.salons_company .btn a:hover span {
  transform: translateY(-3px);
}

@media (max-width: 1200px) {
  .salons_company {
    max-width: 1200px;
    padding: 0 6vw;
    gap: 5vw;
    transform: scale(0.97);
    transition: transform 0.6s cubic-bezier(.4, 0, .2, 1);
  }

  .salons_company .btn a span {
    font-size: 2vw;
  }
}

@media (max-width: 750px) {
  .salons_company {
    display: block;
    padding: 0 5%;
    margin: 30% auto 0;
  }

  .salons_company .btn:first-child {
    margin-bottom: 15%;
  }

  .salons_company .btn a img {}

  .salons_company .btn a span {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .salons_company .btn a span {
    font-size: 4.8vw;
  }
}


/******************************
  footer
******************************/
footer {
  position: relative;
  background: #fff;
  width: 100%;
  padding-top: 200px;
  z-index: 3;
}

footer hr {
  margin: 0;
  padding: 0;
  border: none;
  border-bottom: 1px solid #dcdcdc;
}

footer .footer_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 100%;
  padding-top: 130px;
}

footer .footer_logo {
  width: 80px;
  margin-left: 40px;
}

footer .footer_nav {
  width: calc(100% - 100px);
}

footer ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 3%;
  gap: 30px;
}

footer ul li a {
  color: #646464;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
  font-size: 12px;
  padding: 5px 0;
}

footer ul li a:hover {
  transform: translateY(-5px);
  text-decoration: none;
}

.copy {
  color: #646464;
  font-size: 10px;
  margin: 0 auto;
  text-align: right;
  padding: 100px 3% 30px 0;
  letter-spacing: 0.1em;
}

.sns-links {
  margin: 20px 3% 0 0;
  padding: 0;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.sns-links img {
  width: 32px;
  height: 32px;
  transition: all 0.3s;
}

.sns-links img:hover {
  opacity: 0.5;
  transition: all 0.3s;
}

.icms {
  margin: 20px 3% 0 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

.icms img {
  width: 100px;
}

@media screen and (max-width: 1000px) {
  footer ul {
    gap: 10px 20px;
  }

  footer ul li a {
    font-size: 11px;
  }
}

@media screen and (max-width: 750px) {
  footer {
    padding-top: 25%;
  }

  footer .footer_box {
    display: block;
    height: auto;
    padding-top: 13%;
  }

  footer .footer_logo {
    width: 50px;
    margin: 0 auto;
  }

  footer ul {
    justify-content: center;
    flex-wrap: wrap;
    margin-right: 0;
    padding: 30px 3% 0;
    text-align: center;
    gap: 10px 20px;
  }

  footer div:last-child {
    width: auto;
  }

  footer ul li a {
    padding: 0;
  }

  footer ul li a:hover {
    transform: translateY(0);
  }

  .copy {
    text-align: center;
    padding: 30px 3%;
  }

  .sns-links {
    margin: 25px 0 0 0;
    justify-content: center;
  }

  .sns-links img {
    width: 28px;
    height: 28px;
  }

  .icms {
    margin: 30px 0 0 0;
    justify-content: center;
  }
}

@media screen and (max-width: 610px) {
  footer ul {
    padding: 30px 8% 0;
    gap: 10px 30px;
  }
}

@media screen and (max-width: 480px) {
  .icms img {
    width: 80px;
  }
}

/******************************
  modal
******************************/
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal_bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.modal_inner {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 700px;
  height: 80vh;
  padding: 60px 0;
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.modal.is-open .modal_inner {
  transform: translateY(0);
}

.modal_box {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 0 60px;
}

/* モーダル内のテキストエリアに対して */
.modal_txt {
  white-space: normal !important;
  /* 改行コードによる余計な空白を無視させる */
  word-break: break-all;
  /* 必要に応じて折り返しを許可 */
}

@media screen and (max-width: 750px) {
  .modal_inner {
    height: 90vh;
    padding: 80px 0 40px;
  }

  .modal_box {
    padding: 0 7%;
  }
}

.modal_close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.modal_close::before,
.modal_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 1px;
  background: #999;
  transform-origin: center;
}

.modal_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/******************************
  Modal Inner Content
******************************/
.modal_img {
  width: 100%;
  margin-bottom: 20px;
}

.modal_img img {
  width: 100%;
  height: auto;
  display: block;
}

.modal_txt {
  line-height: 1.8;
  white-space: pre-wrap;
}

#modal-content-area .news dt,
#modal-content-area .news dd {
  border-bottom: none;
  padding: 10px 0;
}

.modal_ttl {
  font-size: 18px;
  line-height: 2.5em;
  font-weight: normal !important;
  margin: 0 0 30px 0;
}

.modal_txt {
  font-size: 14px;
  line-height: 2.5em;
}

@media (max-width: 480px) {
  .modal_ttl {
    font-size: max(14px, 3.5vw);
    margin: 0 0 5% 0;
  }

  .modal_txt {
    font-size: max(12px, 3vw);
  }
}