@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru&family=Shippori+Mincho&display=swap");
/* media query
--------------------------------------- */
/* color
--------------------------------------- */
/* shadow
--------------------------------------- */
/* ------------------------------------------------------------------------------
common setting
------------------------------------------------------------------------------ */
/* html, body
--------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
  font-size: max(1.35vw, 16px);
  line-height: 1.75em;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 4.5vw;
  }
}
@media print, screen and (min-width: 767px) {
  html {
    min-width: 1200px;
  }
}

body {
  overflow-x: hidden;
  color: #231815;
  background-color: #FFFFFF;
}

body:not(.home) main {
  padding-top: 60px;
}

/* layout
--------------------------------------- */
.container {
  position: relative;
  overflow: hidden;
}
@media print, screen and (min-width: 767px) {
  .container {
    min-width: 1240px;
  }
}

.wrap {
  margin: 0 auto;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .wrap {
    width: 80%;
  }
}

/* responsive
--------------------------------------- */
@media print, screen and (min-width: 767px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  main {
    overflow-x: hidden;
  }
  .wrap .wrap {
    width: 100%;
  }
}
/* font
--------------------------------------- */
.ja {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}

.en {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

p {
  font-size: clamp(16px, 1.15vw, 9999px);
  line-height: 1.75em;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 4.5vw;
  }
}

/* link
--------------------------------------- */
a {
  display: block;
  transition: 0.3s;
  color: #231815;
}
a:hover {
  transition: 0.3s;
}

/* img
--------------------------------------- */
img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* ------------------------------------------------------------------------------
header
------------------------------------------------------------------------------ */
header {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0.5rem 2rem;
  border-bottom: 2px solid #231815;
  background-color: rgba(255, 255, 255, 0.95);
}
@media screen and (max-width: 768px) {
  header {
    padding: 0.5rem 1rem;
  }
}
header .sitename {
  margin-right: auto;
  width: 20vw;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  header .sitename {
    width: 65vw;
  }
}
header .sitename a {
  display: flex;
  align-items: center;
}
header .sitename a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
header > .companyname {
  width: 15vw;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  header > .companyname {
    display: none;
  }
}

header.is-animation {
  position: fixed;
  transition: 0.6s;
  border-bottom: 0;
  box-shadow: 0 0 0.5rem #cccccc;
}

body.home header {
  opacity: 0;
  position: fixed;
  border-bottom: 0;
}

body.home header.is-animation {
  opacity: 1;
  border-bottom: 0;
}

/* menu nav
--------------------------------------- */
#nav-toggle {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  cursor: pointer;
}
#nav-toggle div {
  position: relative;
  margin: 0;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  transition: 0.3s;
}
#nav-toggle div span {
  width: 40%;
  height: 2px;
  left: 30%;
  display: block;
  background: #231815;
  position: absolute;
  transition: transform 0.3s ease-in-out, top 0.3s ease;
}
#nav-toggle div span:nth-child(1) {
  top: 21px;
}
#nav-toggle div span:nth-child(2) {
  top: 29px;
}
#nav-toggle div span:nth-child(3) {
  top: 37px;
}
#nav-toggle div:hover span {
  background-color: #007cc3;
}
#nav-toggle div:hover:after {
  color: #007cc3;
}

/* open */
.open {
  overflow: hidden;
}
.open #nav-toggle span {
  background-color: #007cc3;
}
.open #nav-toggle span:nth-child(1),
.open #nav-toggle span:nth-child(3) {
  top: 30px;
}
.open #nav-toggle span:nth-child(2) {
  opacity: 0;
}
.open #nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

/* #gloval-nav
--------------------------------------- */
#gloval-nav {
  position: fixed;
  z-index: 990;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  color: #231815;
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#gloval-nav div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70%;
  margin: 0 auto;
  padding: 4rem 0;
  background: linear-gradient(to right, transparent, white 50%, transparent);
}
#gloval-nav div .companyname {
  width: 25vw;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #gloval-nav div .companyname {
    width: 55vw;
  }
}
#gloval-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
#gloval-nav ul li {
  opacity: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
@media screen and (max-width: 768px) {
  #gloval-nav ul li {
    width: 100%;
  }
}
#gloval-nav ul li a {
  display: block;
  font-size: 1.25rem;
  color: #231815;
  text-decoration: none;
  padding: 0.75rem 0;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  #gloval-nav ul li a {
    padding: 0.5rem 0;
  }
}
#gloval-nav ul li a span {
  display: block;
}
#gloval-nav ul li a span.en {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25em;
}
@media screen and (max-width: 768px) {
  #gloval-nav ul li a span.en {
    font-size: 1.25rem;
  }
}
#gloval-nav ul li a span.ja {
  font-size: 0.9rem;
}

/* open */
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav ul li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
}
.open #gloval-nav ul li a:hover {
  color: #007cc3;
}

@media screen and (max-width: 768px) {
  /* -- sp -- */
  #gloval-nav nav {
    width: 80%;
  }
}
/* ------------------------------------------------------------------------------
footer
------------------------------------------------------------------------------ */
footer {
  position: relative;
  padding: 2rem 0;
  background-color: #efefef;
}
footer .wrap {
  display: flex;
}
@media print, screen and (min-width: 767px) {
  footer .wrap {
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  footer .wrap {
    flex-direction: column;
    align-items: center;
  }
}
footer .wrap .logomark {
  width: 18%;
}
@media screen and (max-width: 768px) {
  footer .wrap .logomark {
    width: 40%;
  }
}
@media print, screen and (min-width: 767px) {
  footer .wrap .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2rem;
  }
}
footer .wrap .info .companyname {
  width: 12em;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 768px) {
  footer .wrap .info .companyname {
    width: 60%;
    margin: 1rem auto;
  }
}
footer .wrap .info p {
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  footer .wrap .info p {
    text-align: center;
  }
}
footer .wrap .right {
  margin-left: auto;
  font-size: 0.8rem;
  line-height: 1.5em;
}
@media print, screen and (min-width: 767px) {
  footer .wrap .right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 768px) {
  footer .wrap .right {
    margin-top: 2rem;
    margin-left: initial;
    text-align: center;
  }
}
footer .wrap .right a:hover {
  color: #007cc3;
}

/* opening
--------------------------------------- */
#opening {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opening-logo {
  width: 120px;
  opacity: 0;
  transform: translateY(20px);
}

#firstview .wrap h1,
#firstview .wrap p {
  opacity: 0;
  filter: blur(10px);
}

/* firstview
--------------------------------------- */
#firstview {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: url(../images/main.webp) no-repeat center bottom/cover, #718FBF;
  overflow-y: hidden;
}
@media screen and (max-width: 768px) {
  #firstview {
    align-items: flex-start;
    padding-top: 4rem;
  }
}
#firstview .wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 7rem;
  width: 80%;
}
@media print, screen and (min-width: 767px) {
  #firstview .wrap {
    min-width: 1000px;
  }
}
@media screen and (max-width: 768px) {
  #firstview .wrap {
    flex-direction: column;
    align-items: flex-end;
  }
}
#firstview .wrap h1 {
  width: 20vw;
}
@media screen and (max-width: 768px) {
  #firstview .wrap h1 {
    width: 40vw;
    margin-bottom: 2rem;
  }
}
#firstview .wrap h1 .companyname {
  margin-top: 1rem;
}
#firstview .wrap p {
  color: #FFFFFF;
  font-size: 2.25rem;
  line-height: 2.25em;
  writing-mode: vertical-rl;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  #firstview .wrap p {
    font-size: 1.5rem;
    line-height: 2em;
  }
}

/* about
--------------------------------------- */
#about {
  position: relative;
  z-index: 10;
  margin-top: 100vh;
  margin-bottom: 400px;
  padding: 4rem 0 2rem 0;
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(400px);
}
#about:before {
  content: "";
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.9));
  pointer-events: none;
  z-index: 11;
}
@media screen and (max-width: 768px) {
  #about:before {
    top: -40vw;
    height: 40vw;
  }
}
#about .wrap {
  display: flex;
  flex-wrap: wrap;
  width: 65%;
}
@media print, screen and (min-width: 767px) {
  #about .wrap .left {
    width: 35%;
  }
  #about .wrap .left figure {
    width: 100%;
    height: 100%;
  }
  #about .wrap .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}
@media screen and (max-width: 768px) {
  #about .wrap .left {
    margin-bottom: 2rem;
  }
}
@media print, screen and (min-width: 767px) {
  #about .wrap .right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 65%;
    padding-left: 2rem;
  }
}
#about .wrap .right article:nth-of-type(1) {
  margin-bottom: 2rem;
}
#about .wrap .right h2 {
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #231815;
  font-size: 1.85rem;
}
@media screen and (max-width: 768px) {
  #about .wrap .right h2 {
    font-size: 1.35rem;
  }
}
#about .wrap .right p {
  font-size: 1.125rem;
  line-height: 1.7em;
}
#about .wrap .right figure {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}
#about .wrap .right figure img {
  width: calc((100% - 1rem) / 3);
}
#about .wrap .right .link {
  margin-top: 0.75rem;
}
#about .wrap .right .link a {
  position: relative;
  padding: 0.5em 1em;
  color: #FFFFFF;
  background-color: #231815;
}
#about .wrap .right .link a:after {
  content: "";
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/icon-arrow.svg) no-repeat center center/contain;
}
#about .wrap .right .link a:hover {
  background-color: #007cc3;
}
#about .wrap .contact {
  width: 100%;
  margin: 2rem auto 0 auto;
  padding: 2rem;
  border: 2px solid #231815;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #about .wrap .contact {
    padding: 2rem 1rem;
  }
}
#about .wrap .contact h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.85rem;
}
@media screen and (max-width: 768px) {
  #about .wrap .contact h2 {
    flex-direction: column;
    align-items: center;
    font-size: 1.15rem;
  }
}
@media print, screen and (min-width: 767px) {
  #about .wrap .contact h2 a {
    padding-left: 1em;
  }
}
#about .wrap .contact p {
  font-size: 1.125rem;
  line-height: 1.7em;
}
@media screen and (max-width: 768px) {
  #about .wrap .contact p {
    font-size: 1rem;
    text-align: left;
  }
}

/* map
--------------------------------------- */
#map {
  position: relative;
  z-index: 10;
  padding-bottom: 2rem;
  background: rgba(255, 255, 255, 0.9);
}
#map .wrap {
  position: relative;
  z-index: 100;
}
#map iframe {
  width: 100%;
}

/* privacypolicy
--------------------------------------- */
.privacy section {
  padding: 4rem 0 2rem 0;
}
.privacy section h1 {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #595757;
  font-size: 2.25rem;
  line-height: 1.25em;
}
@media screen and (max-width: 768px) {
  .privacy section h1 {
    font-size: 1.75rem;
  }
}
.privacy section p {
  font-size: 1.125rem;
  line-height: 1.7em;
}
.privacy section h2 {
  position: relative;
  margin-top: 3rem;
  margin-bottom: 0.5rem;
  padding: 0 0 0.5rem 0.75em;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .privacy section h2 {
    padding-left: 0;
  }
}
.privacy section h2:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #727171;
}
@media print, screen and (min-width: 767px) {
  .privacy section h2:after {
    content: "";
    display: block;
    width: 20em;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: -1px;
    background-color: #007cc3;
  }
  .privacy section h2 + p {
    padding-left: 0.75em;
  }
}
.privacy section ul {
  margin-top: 0.5rem;
  padding-left: 0.75em;
}
.privacy section ul li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.125rem;
}
.privacy section ul li:before {
  content: "・";
}

/* contact
--------------------------------------- */
.contact section {
  padding: 4rem 0;
}
.contact section h1 {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #595757;
  font-size: 2.25rem;
  line-height: 1.25em;
}
@media screen and (max-width: 768px) {
  .contact section h1 {
    font-size: 1.75rem;
  }
}
.contact section p {
  font-size: 1.125rem;
  line-height: 1.7em;
}
.contact section table {
  width: 80%;
  margin: 2rem auto;
}
@media screen and (max-width: 768px) {
  .contact section table {
    width: 100%;
  }
}
.contact section table tr {
  position: relative;
  display: flex;
  padding: 1.5rem 0;
}
@media screen and (max-width: 768px) {
  .contact section table tr {
    flex-direction: column;
  }
}
.contact section table tr:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #727171;
}
@media print, screen and (min-width: 767px) {
  .contact section table tr:after {
    content: "";
    display: block;
    width: 14.5em;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: -1px;
    background-color: #007cc3;
  }
}
.contact section table tr th {
  width: 15em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 1rem;
}
@media screen and (max-width: 768px) {
  .contact section table tr th {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.contact section table tr th .red {
  font-size: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 2em;
}
.contact section table tr th .red::after {
  content: "必須";
  padding: 0 0 0 1em;
  border-radius: 0.5em;
  font-size: 0.75rem;
  letter-spacing: 1em;
  color: #FFFFFF;
  background-color: #d80c24;
  position: static;
  left: 0;
}
.contact section table tr td {
  width: calc(100% - 15em);
}
@media screen and (max-width: 768px) {
  .contact section table tr td {
    width: 100%;
  }
}
.contact section input {
  width: 100%;
  padding: 0.5rem;
  background-color: #dcdddd;
}
.contact section textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.5rem;
  background-color: #dcdddd;
  resize: vertical;
}
.contact section .button_box {
  display: flex;
  justify-content: center;
}
.contact section .button_box input[type=submit] {
  width: 10em;
  color: #FFFFFF;
  background-color: #231815;
  font-size: 1rem;
}
.contact section .cf-turnstile {
  margin: 2rem auto;
  text-align: center;
}
.contact section .red_txt {
  color: #d80c24;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* contact - confirm
--------------------------------------- */
.contact.confirm .button_box {
  display: flex;
  align-items: center;
}
.contact.confirm .button_box input[type=submit] {
  margin: 1rem 0.5rem;
  width: 8em;
  color: #FFFFFF;
  background-color: #231815;
  font-size: 1rem;
}

/* contact - thanks
--------------------------------------- */
.contact.thanks {
  width: 100%;
}
@media print, screen and (min-width: 767px) {
  .contact.thanks {
    height: 100vh;
    display: flex;
    flex-direction: column;
  }
}
.contact.thanks main section .wrap {
  height: 100%;
}
.contact.thanks main section .wrap .link {
  margin-top: 3rem;
  text-align: center;
}
.contact.thanks main section .wrap .link a {
  display: inline-block;
  margin: 0 auto;
  padding: 0.5rem 2em;
  color: #FFFFFF;
  background-color: #231815;
}
.contact.thanks footer {
  margin-top: auto;
}/*# sourceMappingURL=style.css.map */