@charset "UTF-8";

/* CSS Document */
:root {
  --white: #ffffff;
  --black: #222222;
  --gray: #888888;
  --light-gray: #dddddd;
  --red: #9b111e;
  --blue: #63abc3;
  --bg: #f7f7f7;
  --error: #f1dfcf;
  --border: 1px solid var(--gray);
  --border-gray: 1px solid var(--light-gray);
  --border-white: 1px solid var(--white);
  --border-black: 1px solid var(--black);
  --font: "Plus Jakarta Sans", "Zen Kaku Gothic New", sans-serif;
  --font-secondary: "Outfit", "Noto Sans JP", sans-serif;
}

/*==========================================*/
html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  font-size: 100%;
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.07em;
  color: var(--black);
  position: relative;
  font-style: normal;
  line-break: strict;
}

/* 非標準ブラウザスタイルの無効化 */
body {
  -webkit-tap-highlight-color: transparent;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/*Google Chrome、Safari*/
body::-webkit-scrollbar {
  display: none;
}

html[lang="en"] body {
  letter-spacing: 0.04em;
  line-height: 1.2;
}

body * {
  position: relative;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

*::before,
*::after {
  box-sizing: border-box;
}

*::selection {
  background-color: var(--bg);
}

/*==========================================*/
.blur {
  animation-name: blurAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    /*    filter: blur(20px);*/
    /*    transform: scale(1.01);*/
    transform: translateY(3%);
    opacity: 0;
  }

  to {
    filter: blur(0);
    /*    transform: scale(1);*/
    transform: translateY(0);
    opacity: 1;
  }
}

/*==========================================*/
:target {
  scroll-margin-top: 86px;
  /*ページ内ジャンプでヘッダー分下に下げる*/
}

a,
button {
  display: inline-block;
  text-decoration: none;
  color: var(--black);
  transition: .4s;
  cursor: pointer;
}

a[name] {
  display: block;
}

img {
  display: inline-block;
  width: 100%;
  height: auto;
  /*クリック禁止*/
  /*  pointer-events: none;*/
  /* SPの長押し禁止 */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
  transition: .2s;
}

table,
tr,
td,
th {
  border-collapse: collapse;
  border: none;
  text-align: left;
  font-weight: 400;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  display: block;
  line-height: 1.7;
  letter-spacing: 0.07em;
}

h1 {
  font-size: 150%;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2em;
}

h2 {
  font-size: 120%;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1em;
}

h3 {
  font-size: 120%;
  font-weight: 500;
  text-align: left;
}

h4 {
  font-size: 120%;
  font-weight: 400;
  text-align: left;
}

h5 {
  font-size: 100%;
  font-weight: 500;
  text-align: left;
}

input:not([type="checkbox"]),
button,
fieldset,
textarea,
form li ul,
select,
option {
  -webkit-appearance: none;
  appearance: none;
  font-size: 16px;
  font-family: var(--font);
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.07em;
  color: var(--black);
}

textarea {
  min-height: 10em;
  field-sizing: content;
}

fieldset {
  border: none;
}

/*==========================================*/
.error {
  background-color: var(--error);
}

.error-msg {
  color: var(--red);
  font-weight: 500;
  width: 100%;
  margin-bottom: 1em;
}

.comment {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0em;
}

.red {
  color: var(--red);
}

.btn,
.btn2 {
  display: block;
  text-align: center;
  border: var(--border);
  border-radius: 50px;
  margin: 1em 0;
  padding: 0.5em 1em;
  transition: 0.3s;
  font-weight: 500;
}

.btn2 {
  background-color: var(--black);
  color: var(--white);
}

.btn:hover {
  background-color: var(--black);
  color: var(--white);
  opacity: 1;
}

.btn2:hover {
  background-color: var(--white);
  color: var(--black);
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

.btn img[src*="a-logo"] {
  max-width: 150px;
}

/*==========================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 0 5vw;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  z-index: 98;
}

header #logo {
  width: 180px;
  padding-top: 7px;
  mix-blend-mode: multiply;
}

header>ul {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

header .menu-btn {
  display: none;
}

header>ul>.salon a {
  border: 1px solid var(--black);
  border-radius: 50px;
  padding: 2px 1em;
  display: inline-block;
}

header dl dd a {
  color: var(--gray);
}

header li a:hover,
footer li a:hover {
  filter: blur(2px);
}

header dd,
.description dd {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

header dd.open,
.description dd.open {
  max-height: 500px;
  padding-bottom: 1em;
}

/* 開いている見出しの見た目の変化
header dt.active,
.description dt.active {
  font-weight: bold;
} */

/*==========================================*/
main {
  padding: 24px;
  max-width: 1000px;
  margin: 0px auto;
}

/*==========================================*/
main dl dt img {
  margin-right: 1rem;
}

/*==========================================*/
footer {
  width: 100%;
  margin-top: 50px;
  background-color: var(--white);
  /*  border-top: var(--border);*/
}

footer>div {
  padding: 1rem;
}

footer>div:last-of-type {
  /*  background-color: var(--bg);*/
  border-top: var(--border);
}

footer .contact {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}

footer .contact a {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

footer h1 {
  font-size: 150%;
  font-weight: 600;
  margin-bottom: 0;
}

footer .contact img {
  width: 24px;
  margin-right: 5px;
}

footer .btn {
  margin: 2rem 0 0 0;
}

.footer {
  padding: 5em 1rem 2em 1rem;
}

.footer>div {
  display: flex;
  justify-content: space-between;
  margin: 50px auto;
}

.footer img {
  max-width: 150px;
  margin-bottom: 5px;
}

.footer div div ul {
  margin-top: 2em;
}

.footer li {
  margin-bottom: 1em;
}

.footer a+p,
.footer>p {
  font-size: 10px;
}

.footer>p {
  text-align: center;
}

/*==========================================
PC
===========================================*/
@media screen and (min-width: 769px) {

  .btn,
  .btn2 {
    padding: 1em 2em;
    font-size: 110%;
  }
}

@media screen and (min-width: 1099px) {
  .sp {
    display: none !important;
  }

  main>h1 {
    margin: 120px 0 70px 0;
  }

  /*==========================================*/
  header li>ul {
    position: absolute;
    top: 47px;
    left: -20vw;
    width: max-contents;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    border: var(--border-gray);
    display: none;
  }

  ul.active {
    display: flex;
    justify-content: space-between;
    animation: header-menu 0.2s forwards linear;
  }

  ul.active>li {
    min-width: 11em;
  }

  ul.active>li:not(:last-of-type) {
    margin-right: 2em;
    border-right: var(--border2);
  }

  ul.active>li dt {
    margin-bottom: 10px;
  }

  @keyframes header-menu {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  header>ul>li>a {
    margin: 0 0 0 39px;
  }

  header li ul li a:hover {
    color: var(--black);
    font-weight: 500;
  }

  /*==========================================*/
  .footer>div {
    max-width: 1000px;
  }

  .footer>div>ul {
    display: flex;
    gap: 2em;
  }
}

/*==========================================
SP
===========================================*/
@media screen and (max-width: 1098px) {
  header .pc {
    display: none !important;
  }

  header .sp {
    display: block !important;
    flex: 1;
    align-content: flex-end;
  }

  main>h1 {
    margin: 70px 0 50px 0;
  }

  /*==========================================*/
  header {
    background: none;
    /* backdrop-filter: none; */
  }

  header #logo {
    width: 70%;
    max-width: 200px;
    min-width: 100px;
  }

  header .menu-btn {
    width: 30px;
    height: 25px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    z-index: 100;
    cursor: pointer;
  }

  .menu-btn span {
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--black);
    border-radius: 1px;
    transition: .5s;
  }

  .menu-btn.is-active span:nth-of-type(1) {
    transform: rotate(45deg)translate(8px, 8px);
  }

  .menu-btn.is-active span:nth-of-type(2) {
    opacity: 0;
  }

  .menu-btn.is-active span:nth-of-type(3) {
    transform: rotate(-45deg)translate(8px, -8px);
  }

  header>ul {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 64px 24px 0 24px;
    background-color: var(--white);
    animation: menu 0.3s linear forwards;
    z-index: -1;
  }

  header>ul.is-active {
    z-index: 99;
    animation: menu-active 0.3s linear forwards;
  }

  header>ul>li {
    width: 100%;
    padding: 1em 8px;
    border-bottom: var(--border-gray);
  }

  header a {
    display: block;
  }

  header .salon {
    order: -1;
    border: none;
  }

  header>ul>.salon a {
    margin-bottom: 1em;
    display: block;
    text-align: center;
  }

  body.is-active::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--black);
    opacity: 0.1;
    backdrop-filter: blur(5px);
    z-index: 98;
  }

  body.is-active>*:not(header) {
    filter: blur(5px);
  }

  @keyframes menu {
    from {
      opacity: 1;
      filter: none;
    }

    to {
      opacity: 0;
      filter: blur(10px);
      display: none;
      transform: scale(1.1)translateX(100%);
    }
  }

  @keyframes menu-active {
    from {
      opacity: 0;
      filter: blur(10px);
    }

    to {
      opacity: 1;
      filter: none;
      transform: translateX(0);
    }
  }

  /*accordion==========*/
  header li>ul {
    display: block;
  }

  header dl {
    display: block;
  }

  header dt {
    display: block;
    position: relative;
    cursor: pointer;
  }

  header dt::before {
    position: absolute;
    content: "";
    display: block;
    width: 12px;
    height: 1px;
    background-color: var(--black);
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
  }

  header dt::after {
    position: absolute;
    content: "";
    display: block;
    width: 12px;
    height: 1px;
    background-color: var(--black);
    right: 0px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
  }

  header dt.active::after {
    display: none;
  }

  header dt a {
    display: inline-block;
  }

  header dd {
    margin: 0 0 0 8px;
  }

  header dt a {
    margin: 0.5em 4em 0.5em 0;
  }

  header dd a {
    width: 100%;
    margin: 0.5em 0;
  }

  .footer {
    text-align: right;
  }
}

/*==========================================
SP
===========================================*/
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }

  h1,
  h2 {
    font-size: 120%;
    /*    font-weight: 400;*/
  }

  h3,
  h4 {
    font-size: 100%;
    /*    font-weight: 400;*/
  }

  /*==========================================*/
  main {
    margin: 100px 24px 5rem 24px;
    padding: 0;
  }

  /*==========================================*/
  .footer {
    font-size: 12px;
  }
}