@charset "UTF-8";
/*===============================
reset
================================*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: justify;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 100%;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

button {
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
}

nav ul {
  list-style: none;
}

ol,
ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table, td, th {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  resize: vertical;
}

/*===============================
base
================================*/
html {
  font-weight: 500;
  color: #000;
  font-family: "Noto Serif JP", serif;
}

body {
  position: relative;
  z-index: 100;
  font-size: 13px;
  background: #faf0f0;
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 14px;
  }
}

.wrap {
  width: calc(100% - 50px);
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .wrap {
    width: calc(100% - 100px);
  }
}

.palmtop {
  display: block !important;
}
@media screen and (min-width: 1024px) {
  .palmtop {
    display: none !important;
  }
}

.laptop {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .laptop {
    display: block !important;
  }
}

/*===============================
layout
================================*/
/*
header
================================*/
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 25px;
  background: #fff;
}
.site-header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.site-header .container .logo a img {
  width: 80px;
}
@media screen and (min-width: 1024px) {
  .site-header .container .logo a img {
    width: 100px;
  }
}
.site-header .container .hbg {
  position: relative;
  z-index: 120;
  width: 30px;
  height: 10px;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (min-width: 1024px) {
  .site-header .container .hbg {
    display: none;
  }
}
.site-header .container .hbg .line {
  position: absolute;
  z-index: 120;
  left: 0;
  width: 100%;
  height: 3px;
  background: #000;
  -webkit-transition: background 0.4s ease, -webkit-transform 0.4s ease;
  transition: background 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, background 0.4s ease;
  transition: transform 0.4s ease, background 0.4s ease, -webkit-transform 0.4s ease;
}
.site-header .container .hbg .line:last-child {
  bottom: 0;
}
.site-header .container .is-hbg .line:first-child {
  -webkit-transform: translateY(3.5px) rotate(45deg);
          transform: translateY(3.5px) rotate(45deg);
}
.site-header .container .is-hbg .line:last-child {
  -webkit-transform: translateY(-3.5px) rotate(-45deg);
          transform: translateY(-3.5px) rotate(-45deg);
}
.site-header .container .drawer {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  z-index: 110;
  background: #faf0f0;
  pointer-events: none;
  -webkit-transition: left 0.4s ease;
  transition: left 0.4s ease;
}
@media screen and (min-width: 1024px) {
  .site-header .container .drawer {
    display: none;
  }
}
.site-header .container .drawer .drawer-menu {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  -moz-text-align-last: center;
       text-align-last: center;
}
.site-header .container .drawer .drawer-menu .menu:not(:first-child) {
  margin-top: 40px;
}
.site-header .container .drawer .drawer-menu .menu a {
  font-size: 17px;
  font-weight: 700;
}
.site-header .container .is-drawer {
  left: 0;
  pointer-events: auto;
}
.site-header .container .menu-list {
  display: none;
}
@media screen and (min-width: 1024px) {
  .site-header .container .menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-header .container .menu-list .item:not(:first-child) {
  margin-left: 30px;
}
@media screen and (min-width: 1024px) {
  .site-header .container .menu-list .item:not(:first-child) {
    margin-left: 50px;
  }
}
.site-header .container .menu-list .item a {
  font-weight: bold;
}

/*
main
================================*/
.site-main {
  position: relative;
  z-index: 10;
  margin-top: 63.38px;
}
@media screen and (min-width: 1024px) {
  .site-main {
    margin-top: 71.72px;
  }
}
.site-main .sec-title {
  -moz-text-align-last: center;
       text-align-last: center;
  margin-bottom: 50px;
}
.site-main .sec-title__en {
  font-family: "EB Garamond", serif;
  font-size: 45px;
}
@media screen and (min-width: 768px) {
  .site-main .sec-title__en {
    font-size: 70px;
  }
}
.site-main__fv {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(100vh - 63.38px);
}
@media screen and (min-width: 1024px) {
  .site-main__fv {
    height: calc(100vh - 71.72px);
  }
}
.site-main__fv .bg-movie {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-main__fv .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 125px;
}
@media screen and (min-width: 1024px) {
  .site-main__fv .logo {
    width: 150px;
  }
}
.site-main__fv .scroll_down span {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  padding: 10px 10px 110px;
  color: #000;
  font-size: 14px;
  font-family: "EB Garamond", serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  overflow: hidden;
  margin: auto;
}
.site-main__fv .scroll_down span:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100px;
  background: #ddd;
}
.site-main__fv .scroll_down span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100px;
  background: #000;
  -webkit-animation: js-scroll 3s cubic-bezier(1, 0, 0, 1) infinite;
          animation: js-scroll 3s cubic-bezier(1, 0, 0, 1) infinite;
}
@-webkit-keyframes js-scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@keyframes js-scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
.site-main__about {
  -moz-text-align-last: center;
       text-align-last: center;
}
.site-main__about .catch .catch-en {
  font-family: "EB Garamond", serif;
  font-size: 25px;
}
@media screen and (min-width: 768px) {
  .site-main__about .catch .catch-en {
    font-size: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__about .catch .catch-en {
    font-size: 45px;
  }
}
.site-main__about .catch .catch-ja {
  margin-top: 15px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .site-main__about .catch .catch-ja {
    margin-top: 20px;
    font-size: 17px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__about .catch .catch-ja {
    margin-top: 25px;
    font-size: 19px;
  }
}
.site-main__about .desc {
  line-height: 1.8em;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .site-main__about .desc {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__about .desc {
    margin-top: 40px;
  }
}
.site-main__about .desc p:not(:first-child) {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .site-main__about .desc p:not(:first-child) {
    margin-top: 20px;
  }
}
.site-main__service {
  position: relative;
  background-image: url("images/service-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.site-main__service:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.site-main__service .wrap {
  position: relative;
  z-index: 10;
}
.site-main__service .sec-title {
  color: #fff;
}
.site-main__service .img {
  text-align: center;
}
.site-main__service .img img {
  width: 100%;
  max-width: 600px;
}
.site-main__company .cover {
  position: relative;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 768px) {
  .site-main__company .cover {
    aspect-ratio: 2/1;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__company .cover {
    aspect-ratio: 3/1;
  }
}
.site-main__company .cover img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-main__company .overview {
  margin-top: 50px;
  padding: 25px;
  border-radius: 5px;
  background: #fff;
  max-width: 800px;
  margin-inline: auto;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
@media screen and (min-width: 1024px) {
  .site-main__company .overview {
    padding: 50px;
  }
}
@media screen and (min-width: 768px) {
  .site-main__company .overview dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-main__company .overview dl:not(:first-child) {
  margin-top: 20px;
}
.site-main__company .overview dl dt, .site-main__company .overview dl dd {
  line-height: 1.5em;
}
.site-main__company .overview dl dt {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .site-main__company .overview dl dt {
    width: 150px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__company .overview dl dt {
    width: 200px;
  }
}
.site-main__company .overview dl dd {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .site-main__company .overview dl dd {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.site-main__company .overview dl dd ul li {
  position: relative;
  padding-left: 15px;
}
.site-main__company .overview dl dd ul li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.site-main__company .overview dl dd ul li:not(:first-child) {
  margin-top: 5px;
}
.site-main__news {
  background: #fff;
}
.site-main__news .news-list {
  max-width: 900px;
  margin-inline: auto;
}
.site-main__news .news-list .item {
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .site-main__news .news-list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 25px;
  }
}
@media screen and (min-width: 768px) {
  .site-main__news .news-list .item .date {
    width: auto;
    line-height: 1.5em;
    margin-right: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__news .news-list .item .date {
    margin-right: 35px;
  }
}
.site-main__news .news-list .item .title {
  margin-top: 10px;
  line-height: 1.5em;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .site-main__news .news-list .item .title {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

/*
footer
================================*/
.site-footer .catch {
  background: #F16682;
  color: #fff;
}
.site-footer .catch .catch-text {
  font-family: "EB Garamond", serif;
  text-align: center;
  font-size: 25px;
}
@media screen and (min-width: 768px) {
  .site-footer .catch .catch-text {
    font-size: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer .catch .catch-text {
    font-size: 45px;
  }
}
.site-footer .footer-menu {
  -moz-text-align-last: center;
       text-align-last: center;
}
.site-footer .footer-menu .logo img {
  width: 80px;
}
@media screen and (min-width: 1024px) {
  .site-footer .footer-menu .logo img {
    width: 100px;
  }
}
.site-footer .footer-menu .cp {
  margin-top: 50px;
  font-size: 14px;
  font-family: "EB Garamond", serif;
}

/*===============================
module
================================*/
/*
space
================================*/
.pad-tb {
  padding: 50px 0;
}
@media screen and (min-width: 1024px) {
  .pad-tb {
    padding: 100px 0;
  }
}

.pad-t {
  padding-top: 50px;
}
@media screen and (min-width: 1024px) {
  .pad-t {
    padding-top: 100px;
  }
}

.mar-t {
  margin-top: 50px;
}
@media screen and (min-width: 1024px) {
  .mar-t {
    margin-top: 100px;
  }
}

/*
align
================================*/
.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}