@charset "UTF-8";
/* ==========================================================================
  Reset
  ========================================================================== */
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, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  vertical-align: baseline;
}

article, aside, dialog, figure, footer, header, hgroup, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

img {
  font-size: 0;
  line-height: 0;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
  font-style: italic;
  color: #000;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset, img {
  line-height: 0;
  vertical-align: top;
}

hr {
  display: none;
}

input, select {
  vertical-align: middle;
}

* {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
}

html, body {
  width: 100%;
  height: 100%;
}

ul, li {
  list-style: none;
}

b {
  font-weight: bold;
}

iframe {
  border: none;
  outline: none;
}

/* ==========================================================================
  Base
  ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  background: #fff;
}

body {
  color: #000;
  font-size: 1.6em;
  font-family: "futura-pt", YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.125em;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media screen and (min-width: 769px) {
  body {
    min-width: 900px;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4em;
  }
}

img {
  width: 100%;
  height: auto;
}

::selection {
  background: #00aadc;
  color: #fff;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.en {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-weight: bold;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

a {
  color: #000;
  text-decoration: none;
}

.btn {
  display: block;
}

h1, h2, h3, h4, h5, h6, strong {
  font-weight: bold;
}

/* ==========================================================================
  Layout
  ========================================================================== */
.l-wrapper {
  position: relative;
  overflow: hidden;
}

.l-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    max-width: 95%;
  }
}

.l-main {
  position: relative;
}

.l-section {
  position: relative;
}
.l-section small {
  font-size: 80%;
}

/* ==========================================================================
  Parts
  ========================================================================== */
.modaal-inner-wrapper {
  padding: 80px 20px !important;
}

@media screen and (max-width: 768px) {
  .modaal-content-container {
    padding: 30px 20px;
  }

  .modaal-video-wrap {
    margin: auto 0px !important;
    position: relative;
  }
}
/* ==========================================================================
  Animation
  ========================================================================== */
.anim {
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
}

.anim-fadeout {
  animation: fadeIn 0.2s 0.2s both ease-out;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
}
.anim-fadein {
  opacity: 0;
}

.anim-fadein.is-show {
  animation: fadeIn 0.3s 0.1s both ease-out;
}

@keyframes fadeIn {
  0% {
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-fadeinUp {
  opacity: 0;
}

.anim-fadeinUp.is-show {
  animation: fadeInUp 0.3s 0.2s both ease-out;
}

.anim-fadeinUp.anim-delay2.is-show {
  animation: fadeInUp 0.3s 0.3s both ease-out;
}

.anim-fadeinUp.anim-delay3.is-show {
  animation: fadeInUp 0.3s 0.4s both ease-out;
}

@keyframes fadeInUp {
  0% {
    transform: translate(0, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slidein-l {
  opacity: 0;
}

.anim-slidein-l.is-show {
  animation: slideInL 0.8s 0.2s both ease-out;
}

@keyframes slideInL {
  0% {
    transform: translate(-10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slidein-r {
  opacity: 0;
}

.anim-slidein-r.is-show {
  animation: slideInR 0.8s 0.2s both ease-out;
}

@keyframes slideInR {
  0% {
    transform: translate(10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slideout-l.is-out {
  animation: slideOutL 1.5s 0.1s both ease-out;
}

@keyframes slideOutL {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(-100vw, 0);
  }
}
.anim-slideout-r.is-out {
  animation: slideOutR 1.5s 0.1s both ease-out;
}

@keyframes slideOutR {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(100vw, 0);
  }
}
/* ==========================================================================
  dog
  ========================================================================== */
.trig {
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
}

.bgextend {
  position: relative;
}

.bgextend.is-show::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffef00;
  /*伸びる背景色の設定*/
  z-index: -1;
  left: -2px;
  top: -1px;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  100% {
    transform-origin: left;
    transform: scaleX(1);
  }
}
/* ==========================================================================
header
========================================================================== */
.head-inner {
  display: flex;
  justify-content: space-between;
  font-family: "Noto Sans JP", sans-serif;
  padding: 20px 0 30px;
  font-size: 14px;
  background: #fff;
}
.head-inner h1 {
  padding-left: 30px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .head-inner h1 {
    padding-left: 5px;
  }
}
.head-inner .nav {
  display: flex;
  justify-content: space-between;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .head-inner .nav {
    padding-right: 0;
  }
}
.head-inner .nav li {
  font-weight: 600;
}
.head-inner .nav li a {
  display: block;
}
.head-inner .nav li:first-child {
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .head-inner .nav li:first-child {
    padding-right: 15px;
  }
}

/* ==========================================================================
main
========================================================================== */
.l-main {
  background: #000;
}
.l-main .container {
  width: 1100px;
  margin: 0 auto;
  color: #be9170;
}
@media screen and (max-width: 768px) {
  .l-main .container {
    width: 95%;
  }
}
.l-main .l-kv {
  padding: 100px 0 140px;
  width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-main .l-kv {
    width: 100%;
    padding: 110px 0 130px;
  }
}
.l-main .l-kv .kv {
  width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-main .l-kv .kv {
    width: 90%;
  }
}
.l-main .l-kv h2 {
  width: 440px;
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .l-main .l-kv h2 {
    width: 60%;
    margin: 30px auto 0;
  }
}
.l-main .l-kv .catalyst {
  position: absolute;
  top: 500px;
  left: -160px;
  width: 130px;
}
.l-main h3 {
  font-size: 40px;
  text-align: center;
  font-family: "colt-soft", serif;
  font-weight: 900;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .l-main h3 {
    font-size: 25px;
  }
}
.l-main .l-about {
  position: relative;
}
.l-main .l-about h3 {
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .l-main .l-about h3 {
    padding-bottom: 30px;
  }
}
.l-main .l-about .mail {
  position: absolute;
  top: -80px;
  bottom: auto;
  right: -90px;
  width: 200px;
}
@media screen and (max-width: 768px) {
  .l-main .l-about .mail {
    width: 40%;
    top: -50px;
    bottom: auto;
    right: 0px;
    transform: rotate(20deg);
    scale: 0.8;
  }
}
.l-main .l-about .txt {
  transform: rotate(4deg);
  font-family: "Noto Sans Japanese", sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}
.l-main .l-about .txt:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .l-main .l-about .txt {
    width: 95%;
    margin: 0 auto 30px;
  }
  .l-main .l-about .txt:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-main .l-about .txt.txt-profile .qrcode {
    margin-top: -20px;
    margin-left: 20px;
    width: 120px;
  }
}
@media screen and (min-width: 769px) {
  .l-main .l-about .txt.txt-profile {
    margin-left: 100px;
  }
  .l-main .l-about .txt.txt-profile .qrcode {
    width: 150px;
  }
  .l-main .l-about .txt.txt-philosophy {
    margin-top: -200px;
    text-align: right;
  }
}
.l-main .l-about .txt h4 {
  font-size: 45px;
  font-weight: bold;
  margin: 0 0 15px -27px;
}
@media screen and (max-width: 768px) {
  .l-main .l-about .txt h4 {
    font-size: 28px;
    margin: 0 0 4px -17px;
  }
}
.l-main .l-about .txt .sub {
  font-size: 26px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .l-main .l-about .txt .sub {
    font-size: 20px;
  }
}
.l-main .l-about .txt p {
  font-size: 18px;
  font-weight: 900;
  line-height: 2em;
}
@media screen and (max-width: 768px) {
  .l-main .l-about .txt p {
    font-size: 14px;
    line-height: 1.5em;
  }
}
.l-main .l-work {
  padding: 250px 0 580px;
  width: 1000px;
  background: url(../images/border-02.png) center top no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 768px) {
  .l-main .l-work {
    width: 95%;
    padding: 100px 0 100px;
  }
}
.l-main .l-work h3 {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .l-main .l-work h3 {
    padding-bottom: 30px;
  }
}
.l-main .l-work h3 span {
  margin-top: 15px;
  font-size: 24px;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
}
.l-main .l-work .work-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-main .l-work .work-inner {
    display: block;
  }
}
.l-main .l-work .work-inner .work-list {
  width: 45%;
  font-weight: 900;
  font-family: "Noto Sans Japanese", sans-serif;
  margin-bottom: 30px;
}
.l-main .l-work .work-inner .work-list:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .l-main .l-work .work-inner .work-list {
    width: 100%;
  }
}
.l-main .l-work .work-inner .work-list h5 {
  font-size: 25px;
  margin: 30px 0 20px;
}
@media screen and (max-width: 768px) {
  .l-main .l-work .work-inner .work-list h5 {
    font-size: 1.7rem;
    margin: 25px 0 10px;
  }
}
.l-main .l-work .work-inner .work-list p {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .l-main .l-work .work-inner .work-list p {
    font-size: 1.3rem;
    line-height: 1.4;
  }
}
.l-main .l-work .work-inner .work-list a {
  color: #be9170;
  text-align: center;
  font-size: 2.3rem;
  display: block;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .l-main .l-work .work-inner .work-list a {
    font-size: 1.7rem;
    margin: 20px 0 50px;
  }
}

.border1 {
  position: absolute;
  top: 0;
  left: 7%;
  width: 1350px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .border1 {
    width: 98%;
    left: 2%;
  }
}

.border2 {
  position: absolute;
  bottom: -8vw;
  left: 20%;
  width: 1110px;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .border2 {
    width: 84%;
    left: 7%;
  }
}

.l-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 0;
}

.page-ttl {
  font-family: "colt-soft", serif;
  text-align: center;
  font-weight: bold;
  color: #be9170;
  font-size: 26px;
  margin-bottom: 60px;
}
.page-ttl span {
  display: block;
  font-weight: bold;
  margin-top: 10px;
  font-size: 16px;
}

/* ==========================================================================
footer
========================================================================== */
.l-footer {
  font-family: "Noto Sans JP", sans-serif;
  padding: 30px 0 30px;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 50px 0 20px;
  }
}
.l-footer .copyright {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .l-footer .copyright {
    font-size: 10px;
    font-size: 12px;
  }
}
.l-footer .foot-inner {
  margin-bottom: 60px;
}
.l-footer .foot-inner ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.l-footer .foot-inner ul li {
  font-weight: bold;
}
.l-footer .foot-inner ul li a:hover {
  color: #be9170;
}

/* ==========================================================================
Company
========================================================================== */
.l-company .info-wrap {
  max-width: 360px;
  margin: 0 auto;
}
.l-company dl {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  color: #fff;
  line-height: 1.6;
}
.l-company dl:last-child {
  margin-bottom: 0;
}
.l-company dl dt a, .l-company dl dd a {
  color: #fff;
}
.l-company dl dt a:hover, .l-company dl dd a:hover {
  color: #be9170;
}
.l-company dl dt {
  width: 25%;
  font-size: 100%;
  font-weight: bold;
}
.l-company dl dd {
  flex: 1;
  font-size: 16px;
}

/* ==========================================================================
Contact
========================================================================== */
.l-contact {
  font-family: "Noto Sans JP", sans-serif;
}
.l-contact p.lead {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
.l-contact p.lead strong {
  font-size: 110%;
}

/* ---------------
Contact Form
------------------ */
.form-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.contact-box {
  margin-bottom: 30px;
}
.contact-box label {
  display: block;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: bold;
  margin-bottom: 4px;
}
.contact-box label sup {
  color: red;
}
.contact-box input[type=text], .contact-box input[type=tel], .contact-box input[type=email], .contact-box textarea {
  width: 100%;
  padding: 10px;
  background: #f2f2f2;
  border: none;
}
.contact-box textarea {
  min-height: 100px;
}

.contact-submit {
  margin-top: 30px;
  text-align: center;
}
.contact-submit button {
  position: relative;
  display: block;
  margin: 0 auto;
  background: #be9170;
  width: 140px;
  height: 40px;
  padding: 10px;
  overflow: hidden;
  border-radius: 2px;
  color: #fff;
  border: 2px solid #000;
  transition: all 0.1s ease-out;
  border-radius: 4px;
  overflow: hidden;
}
.contact-submit button span {
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  font-weight: bold;
  line-height: 1.2;
  transition: all 0.1s ease-out;
}
.contact-submit button:hover {
  background: #fff;
  border: 2px solid #000;
  color: #000;
}
.contact-submit button:hover::before {
  left: 0;
}

@media screen and (max-width: 768px) {
  .form-wrap {
    padding-top: 30px;
    max-width: 90%;
    margin: 0 auto;
  }

  .contact-box {
    margin-bottom: 20px;
  }
  .contact-box label {
    font-size: 1.3rem;
  }
  .contact-box input[type=text], .contact-box input[type=tel], .contact-box input[type=email], .contact-box textarea {
    padding: 15px 10px;
    font-size: 1.6rem;
  }
  .contact-box textarea {
    min-height: 200px;
  }
}

/*# sourceMappingURL=style.css.map */
