@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/*=================================================================================
    変数
=================================================================================*/
/*================= foundation ====================*/
/*================= font ====================*/
/*================= color ====================*/
/*=================================================================================
    Common
=================================================================================*/
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  font-family: "din-2014", sans-serif;
  color: #000;
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
  overscroll-behavior: none;
}
body.non-active {
  height: 100%;
  overflow: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 100;
}

h2.section-ttl {
  text-align: center;
  color: #e69d00;
  font-size: 17px;
  letter-spacing: 0.7em;
}

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

img {
  max-width: 100%;
  vertical-align: top;
}

strong {
  font-weight: 700;
}

p.section-ttl__readtxt {
  color: #e69d00;
  margin-top: 2em;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  text-align: center;
  font-size: 14px;
  padding: 0 24px;
}
@media (max-width: 758px) {
  p.section-ttl__readtxt {
    margin-top: 1.5em;
    line-height: 1.4em;
  }
}

.pc {
  display: block;
}
@media (max-width: 758px) {
  .pc {
    display: none !important;
  }
}

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

/*================= container ====================*/
/*================= parts ====================*/
.contact-btn {
  background: #231815;
  color: #ffcf2f;
  padding: 5.1px 13.66px;
  border-radius: 24px;
}

/*=================================================================================
    header
=================================================================================*/
.header {
  position: fixed;
  z-index: 10;
  width: 100%;
  background-color: #fff;
}
.header__wrapper {
  height: 88px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1000;
  align-items: center;
  padding: 0 28px;
}
.header__wrapper__logo {
  position: relative;
  z-index: 1000;
}
.header__wrapper__logo img {
  width: 117px;
}
@media (max-width: 938px) {
  .header__wrapper__navi {
    position: relative;
  }
}
.header__wrapper__navi ul {
  display: flex;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  padding-top: 24px;
  padding-left: 20px;
}
@media (max-width: 1011px) {
  .header__wrapper__navi ul {
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
@media (max-width: 938px) {
  .header__wrapper__navi ul {
    flex-flow: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    row-gap: 40px;
    padding-left: 0px;
  }
}
.header__wrapper__navi ul li a {
  font-size: 13px;
  font-family: "adobe-garamond-pro", serif;
}
.header__wrapper__navi ul li a span {
  display: inline-block;
}
.header__wrapper__navi ul li a img {
  height: 20px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  padding-top: 3px;
}
@media (max-width: 758px) {
  .header__wrapper__navi ul li a img {
    height: 13.6px;
  }
}
.header__wrapper__navi ul li.officalBack {
  position: absolute;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  top: 14px;
  right: 28px;
}
@media (max-width: 938px) {
  .header__wrapper__navi ul li.officalBack {
    display: block;
    position: static;
  }
}
.header__wrapper__navi ul li.officalBack:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -35px;
  display: inline-block;
  width: 25px;
  height: 0.5px;
  background-color: #212121;
}
@media (max-width: 938px) {
  .header__wrapper__navi ul li.officalBack:before {
    content: none;
  }
}

.modal_btn {
  display: none;
}
@media (max-width: 938px) {
  .modal_btn {
    display: block;
  }
}

#modal-navi__open, #modal-navi__close {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 16px;
  right: 16px;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

#modal-navi__open {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  padding: 10px;
}
@media (max-width: 938px) {
  #modal-navi__open {
    display: flex;
  }
}
#modal-navi__open span {
  width: 100%;
  height: 1px;
  background: #000;
  border-radius: 2px;
}

#modal-navi__close {
  z-index: 500;
  padding: 10px;
  display: none;
}
#modal-navi__close.is-active {
  display: block;
}
#modal-navi__close span {
  width: 100%;
  height: 1px;
  background: #000;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
}
#modal-navi__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
#modal-navi__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 938px) {
  .modal-navi {
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    background-color: #fff;
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease-out;
    overflow-y: scroll;
    pointer-events: none;
  }
}
@media (max-width: 938px) {
  .modal-navi.is-open {
    z-index: 500;
    opacity: 1;
    pointer-events: auto;
  }
}

/*=================================================================================
    section hero
=================================================================================*/
.hero {
  padding-top: 88px;
  position: relative;
  background: #000000;
  width: 100%;
  height: 100vh;
}
.hero .pc {
  width: 100%;
  height: 100%;
}
@media (max-width: 758px) {
  .hero {
    height: auto;
  }
}
.hero__img {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: right;
  background: url(../../img/profound/hero-pc.png) no-repeat right bottom;
  background-size: contain;
}
@media (max-width: 758px) {
  .hero__img {
    background: none;
  }
}
.hero__img:after {
  content: "";
  height: 86.53%;
  width: 93%;
  position: absolute;
  border: 1px solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
}
@media (max-width: 758px) {
  .hero__img:after {
    content: none;
  }
}
.hero__logo {
  width: 18.39%;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  left: 16.96%;
}
@media (max-width: 758px) {
  .hero__logo {
    width: 206px;
    top: 33%;
    left: 34%;
    transform: translate(-50%, 0%);
  }
}

/*=================================================================================
    section concept
=================================================================================*/
.concept {
  background: url(../../img/profound/concept-bg.svg) no-repeat center;
  background-size: cover;
  padding: 123px 0;
}
.concept__logo {
  width: 206px;
  margin: 0 auto 43.5px;
}
.concept__txt {
  max-width: 480px;
  margin: 0 auto;
}
@media (max-width: 528px) {
  .concept__txt {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.concept__txt h2 {
  font-size: 28.57px;
  text-align: center;
  margin-bottom: 71px;
}
.concept__txt p {
  font-size: 14px;
  line-height: 1.75;
}

/*=================================================================================
    section gallery
=================================================================================*/
.gallery {
  padding: 88px 0 40px;
}
.gallery__swiper {
  margin-top: 82px;
  margin-bottom: 36px;
  width: 100%;
}
.gallery__swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.gallery__swiper .swiper-wrapper .gallery__item {
  width: auto;
  height: auto;
}
.gallery__swiper .swiper-wrapper .gallery__item img {
  height: 238px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.gallery .illust {
  text-align: center;
}
.gallery .illust img {
  height: 23px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/*=================================================================================
    section item
=================================================================================*/
.item {
  padding-top: 142px;
}
@media (max-width: 758px) {
  .item {
    padding-top: 100px;
    margin-top: -40px;
  }
}
.item__wrapper {
  max-width: 871px;
  margin: 0 auto;
}
@media (max-width: 919px) {
  .item__wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.item__wrapper__inner {
  padding-top: 88px;
  padding-bottom: 88px;
  border-bottom: 1px solid #231815;
  display: flex;
  -moz-column-gap: 8%;
       column-gap: 8%;
}
@media (max-width: 758px) {
  .item__wrapper__inner {
    flex-wrap: wrap;
    row-gap: 40px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.item__wrapper__inner__img {
  width: 353px;
}
@media (max-width: 758px) {
  .item__wrapper__inner__img {
    max-width: 353px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 500px) {
  .item__wrapper__inner__img {
    max-width: none;
  }
}
.item__wrapper__inner__txt {
  max-width: 453px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (max-width: 758px) {
  .item__wrapper__inner__txt {
    max-width: none;
    width: 100%;
    row-gap: 24px;
  }
}
.item__wrapper__inner__txt .ttl {
  -moz-column-gap: 36px;
       column-gap: 36px;
  padding-left: 18px;
}
.item__wrapper__inner__txt .ttl h3 {
  font-size: 27.17px;
  display: inline;
  color: #e69d00;
}
@media (max-width: 758px) {
  .item__wrapper__inner__txt .ttl h3 {
    font-size: 24px;
  }
}
.item__wrapper__inner__txt .ttl h3 span {
  font-size: 31.47px;
  margin-left: 37.6px;
}
@media (max-width: 758px) {
  .item__wrapper__inner__txt .ttl h3 span {
    font-size: 28px;
  }
}
.item__wrapper__inner__txt .ttl p {
  color: #e69d00;
  padding-bottom: 0.4em;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}
.item__wrapper__inner__txt .bottol {
  color: #9fa0a0;
  margin-bottom: 0;
  padding-top: 8px;
  font-size: 13.46px;
}
.item__wrapper__inner__txt .txt {
  font-size: 14px;
  line-height: 2.07em;
}
.item__wrapper__inner__txt .tryangle {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding-top: 20px;
}
.item__wrapper__inner__txt .tryangle__img {
  width: 104px;
}
.item__wrapper__inner__txt .tryangle__txt {
  flex: 1;
}
.item__wrapper__inner__txt .tryangle__txt h4 {
  font-size: 13.46px;
  color: #e69d00;
}
.item__wrapper__inner__txt .tryangle__txt p {
  font-size: 13.46px;
}
.item__wrapper__inner__txt .tryangle__txt .top {
  margin-left: -2em;
}
.item__wrapper__inner__txt .tryangle__txt .middle {
  margin-left: -1em;
  margin-top: 10px;
}
.item__wrapper__inner__txt .tryangle__txt .last {
  margin-top: 10px;
}
.item__wrapper__inner__txt .btn-link a {
  background: #fff;
  color: #231815;
  border: 1px solid #231815;
  padding-top: 20px;
  padding-left: calc(44px + 0.8em);
  padding-right: 44px;
  padding-bottom: 20px;
  border-radius: 40px;
  font-size: 17px;
  font-family: "adobe-garamond-pro", serif;
  display: block;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.item__wrapper__inner__txt .btn-link a:hover {
  background: #231815;
  color: #fff;
}
.item__wrapper__inner__txt .btn-link a span {
  font-size: 12px;
}
.item__wrapper__inner.item01 .ttl {
  border-left: 5.6px solid #141e41;
}
.item__wrapper__inner.item02 .ttl {
  border-left: 5.6px solid #d64a54;
}
.item__wrapper__inner.item03 .ttl {
  border-left: 5.6px solid #b2c696;
}

/*=================================================================================
    section contact
=================================================================================*/
.contact {
  padding: 110px 16px 0;
  text-align: center;
}
.contact .contact-btn {
  padding-top: 20px;
  padding-left: calc(44px + 0.8em);
  padding-right: 44px;
  padding-bottom: 20px;
  border-radius: 40px;
  font-size: 17px;
  letter-spacing: 0.8em;
  text-indent: 0.8em;
  font-family: "adobe-garamond-pro", serif;
}

/*=================================================================================
    フッター
=================================================================================*/
.footer {
  text-align: center;
  padding: 70px 16px 64px;
}
.footer .sns-icon {
  margin-bottom: 48px;
}
.footer .sns-icon img {
  height: 20px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__logo {
  width: 120px;
  margin: 0 auto 42px;
}
.footer__address__inner {
  margin-bottom: 30px;
}
.footer__address__inner p {
  font-size: 14px;
  line-height: 1.5em;
}
.footer__copyright p {
  font-size: 14px;
}

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