@charset "UTF-8";
/* CSS Document */ :root {
  --white: #FFFFFF;
  --black: #222222;
  --red: #DB0003;
  --blue: #7393a5;
  --bg: #fefefe;
  --bg-img: #f9f8f6;
  --border: 1px solid #aaaaaa;
  --border2: 1px solid #222222;
  --error: #f1dfcf;
}
/*==========================================*/
/*
.blur {
animation-name: blurAnime;
animation-duration: 1s;
animation-fill-mode: forwards;
}
@keyframes blurAnime {
from {
filter: blur(20px);
transform: scale(1.02);
opacity: 0;
}
to {
filter: blur(0);
transform: scale(1);
opacity: 1;
}
}
*/
/*==========================================*/
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
/*Google Chrome、Safari*/
body::-webkit-scrollbar {
  display: none;
}
html {
  scroll-behavior: smooth
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  /*  font-size: 14px;*/
  font-size: 95%;
  font-size-adjust: 100%;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  /*  letter-spacing: 0.1em;*/
  letter-spacing: 0.07em;
  position: relative;
  color: var(--black);
  line-break: strict;
}
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;
  /* PCの選択、SPの長押し禁止 */
/*
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
*/
}
*::before, *::after {
  box-sizing: border-box;
}
a, button {
  display: inline-block;
  text-decoration: none;
  color: var(--black);
  transition: .4s;
  cursor: pointer;
}
a[name] {
  display: block;
}
a:hover {
  opacity: 0.5;
}
img {
  display: inline-block;
  max-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;
}
p > img {
  display: inline;
}
table, tr, td, th {
  border-collapse: collapse;
  border: none;
  text-align: center;
}
ul, ol {
  list-style: none;
}
hr {
  margin: 3em 0;
  height: 1px;
  border: none;
  border-bottom: var(--border2);
}
h1, h2, h3, h4 {
  display: block;
}
h1 {
  font-size: 160%;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2em;
}
h2 {
  font-size: 120%;
  font-weight: 400;
  margin-bottom: 0.7em;
}
h3 {
  font-size: 100%;
  font-weight: 400;
  text-align: center;
}
h4 {
  font-size: 110%;
  font-weight: 400;
  /*  margin-bottom: 0.5em;*/
}
input:not([type="checkbox"]), button, fieldset, textarea, form li ul {
  -webkit-appearance: none;
  appearance: none;
  font-size: 16px;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 2;
  letter-spacing: 0.1em;
  color: var(--black);
}
fieldset {
  border: none;
}
/*==========================================*/
.small {
  font-size: 80%;
}
.blank {
  margin-bottom: auto;
}
.error {
  background-color: var(--error);
}
.error-msg {
  color: var(--red);
  font-weight: 500;
  width: 100%;
}
.btn {
  display: block;
  text-align: center;
  border: var(--border);
  border-radius: 50px;
  margin: 1em 0;
  padding: 0.5em;
}
.btn:hover {
  background-color: var(--black);
  color: var(--white);
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
/*==========================================*/
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(5px);
  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;
}
#logo:hover {
  opacity: 0.5;
}
header ul {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
header li a {
  margin: 0 0 0 39px;
  letter-spacing: 0.2em;
}
header .menu-btn {
  display: none;
}
  header li:last-of-type a {
    border: 1px solid var(--black);
    border-radius: 50px;
    padding: 2px 1em;
    display: inline-block;
  }
/*==========================================*/
main {
  padding: 3rem;
  max-width: 1000px;
  margin: 0 auto 100px auto;
}
main section {
  margin: 1em 0 150px 0;
}
/*==========================================*/
section.contact {
  text-align: center;
}
.contact p a {
  margin-top: 1.5em;
  font-size: 26px;
  font-weight: 500;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}
.contact p a img {
  width: 30px;
  margin-right: 10px;
}
.contact > a {
  margin-top: 3em;
}
footer {
  width: 100%;
  padding: 3rem 3rem 1rem 3rem;
  border-top: var(--border)
}
footer img {
  width: 150px;
}
footer > p {
  font-size: 10px;
  text-align: center;
}
footer > div {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2em;
}
footer .sp-hide > ul {
  margin-top: 2em;
  display: flex;
  flex-flow: row nowrap;
  line-height: 1.5;
  font-size: 10px;
}
footer .sp-hide li {
  margin-right: 3em;
}
footer a:hover {
  color: var(--orange);
}
/*==========================================
header
===========================================*/
@media screen and (max-width: 1040px) {
  header {
    background: none;
    backdrop-filter: none;
  }
  header #logo {
    width: 70%;
    max-width: 200px;
    min-width: 100px;
  }
  header .menu-btn {
    /*    margin: auto 1em;*/
    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: center;
    background-color: var(--bg);
    animation: menu 0.3s linear forwards;
    z-index: -1;
  }
  ul.is-active {
    z-index: 99;
    animation: menu-active 0.3s linear forwards;
  }
  header li:nth-last-of-type(2),header li:last-of-type {
    margin-top: 1em;
  }
  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);
    }
  }
  header li a {
    margin: 1em 0;
    /*    font-size: 18px;*/
  }

}
/*==========================================
SP
===========================================*/
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  /*==========================================*/
  main {
    margin: 1rem 1rem 5rem 1rem;
    padding: 0;
  }
  main section {
    margin: 3em 0;
    padding: 1em 1em;
  }
  /*==========================================*/
  footer {
    font-size: 12px;
  }
  footer > div {
    align-items: flex-start;
  }
  footer .sp-hide > ul {
    display: none;
  }
}