@charset "UTF-8";
/*
****************************************************************
*
* 共通
*
****************************************************************
*/
@font-face {
  font-family: "en";
  src: url("../fonts/futura.ttf") format("truetype");
  unicode-range: U+0030-0039, U+0041-007A, U+26, U+003F;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  font-size: 62.5%;
}

body {
  font-family: "en", "游明朝", YuMincho, "Hiragino Mincho ProN W3",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    "ＭＳ 明朝", serif;

  width: 100%;
  overflow-x: hidden;
  position: relative;
  /*
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",
    sans-serif;
    */
  line-height: 1;
}

:root {
  --font-chikushi: "fot-tsukuardgothic-std", sans-serif;
  --font-estonia: "Estonia", cursive;
  --font-hannari: "Hannari", serif;
  --font-serif: "游明朝", YuMincho, "Hiragino Mincho ProN W3",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    "ＭＳ 明朝", serif;
}

@media (max-width: 768px) {
  html,
  body {
    font-size: 2.5vw;
  }
}

@media (min-width: 769px) and (max-width: 1280px) {
  html,
  body {
    font-size: 1vw;
    max-width: 100%;
  }
}

/*-------------------------------
font
-------------------------------*/
.--font-hannari {
  font-family: "hannari", serif;
}

.section__title--displayNone {
  display: none;
}
.br--pc {
  display: inline;
}
.br--sp {
  display: none;
}
a:hover {
  opacity: 0.8;
  transition: all 0.4s;
}

@media (max-width: 768px) {
  .br--pc {
    display: none;
  }
  .br--sp {
    display: inline;
  }
}
/*-------------------------------
JS用
-------------------------------*/
.--js-anime {
  opacity: 0;
  transform: translateY(3rem);
}

/*-------------------------------
アニメーション
-------------------------------*/

.parallax {
  transform: translate(0, 45px);
  transition: all 1.2s;
}

.parallax.scroll-in {
  transform: translate(0, 0);
}

.aboutCard__figure.parallax.scroll-in img {
  /* safari filter対策 */
  will-change: filter; /* or transform */

  animation: appear 1.2s forwards;
}

@keyframes appear {
  0% {
    filter: blur(4px);
    -webkit-filter: blur(4px);
    opacity: 0;
    transform: scale(1.2);
  }

  100% {
    filter: none;
    -webkit-filter: none;
    opacity: 1;
    transform: none;
  }
}

/*-------------------------------
アイコン
-------------------------------*/

/*-------------------------------
ボタン
-------------------------------*/
.btn:hover {
  opacity: 1;
}

.btn--fill {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 1px solid #555; /* ボーダーの色と太さ */
  padding: 10px 30px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease 0.2s;
}

/*ボタン内spanの形状*/
.btn--fill span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #333;
}

.btn--fill:hover span {
  color: #fff;
}

/*== 背景が流れる（左から右） */
.btn--fill:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #000; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

/*hoverした際の形状*/
.btn--fill:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.btn--ghost:hover {
  color: #fff;
  border-color: #fff;
  transition: all 0.4s;
  background: transparent;
  opacity: 1;
}

.contactLink {
  font-size: 2rem;
  width: 30rem;
  height: 7.2rem;
  background: #fff;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 5.6rem;
}

.contactLink__text {
  letter-spacing: 0.1em;
  position: relative;
}

.contactLink__text::after {
  content: "\e900";
  font-family: "icomoon";
  padding-left: 7rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .contactLink {
    font-size: 2rem;
    width: 26rem;
    height: 6.6rem;
  }

  .contactLink__text::after {
    padding-left: 1em;
  }
}

/*-------------------------------
.sectionTitle
-------------------------------*/
.section {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.sectionTitle {
  position: relative;
}

.sectionTitle__title {
  font-size: 1.8rem;
  font-family: var(--font-hannari);
  text-align: center;
  position: relative;
  /*
  opacity: 0;
  transform: scale(1.2) translateY(-2rem);
  transform-origin: center bottom;
  filter: blur(5px);
  */
}

.sectionTitle__deco {
  display: block;
  width: 3rem;
  height: 0.2rem;
  background: #000;
  position: absolute;
  bottom: 3.5rem;
  right: 0;
  left: 0;
  margin: auto;
}

.sectionTitle::after {
  /*
  content: "Title";
  font-family: var(--font-estonia);
  font-size: 8rem;
  text-align: center;
  display: block;
  position: absolute;
  bottom: 4rem;
  right: 0;
  left: 0;
  margin: auto;
  */
  display: none;
}

.sectionTitle__sub {
  font-family: var(--font-estonia);
  font-size: 8rem;
  text-align: center;
  display: block;
  padding-top: 10rem;
  padding-bottom: 1.7rem;
}

/*
.sectionTitle.appear {
  animation: titleAppear 1s ease-out forwards;
}

@keyframes titleAppear {
  0% {
    opacity: 0;
    transform: scale(1.2) translateY(-2rem);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: none;
  }
}
*/

.sectionSubTitle {
  font-family: var(--font-chikushi);
  font-weight: 800;
  font-size: 2.4rem;
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 7rem;
  display: block;
}

.sectionSubTitle__sub {
  font-weight: 400;
  padding-top: 1em;
  font-size: 2rem;
  display: block;
}

@media (max-width: 768px) {
  .sectionSubTitle {
    width: 100%;
    padding-left: 5vw;
    padding-right: 5vw;
    line-height: 1.8;
    text-align: left;
  }
}

/*
****************************************************************
*
* .mainHeader
* ヘッダー
*
****************************************************************
*/

.mainHeader {
  width: 84%;
  height: 9rem;
  position: absolute;
  top: 8.2rem;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2;
  display: block;
}

@media (min-width: 769px) and (max-width: 1280px) {
  .mainHeader {
    width: 95% !important;
  }
}

.mainHeader {
  width: 84%;
  height: 9rem;
  position: absolute;
  top: 8.2rem;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2;
  display: block;
}

.mainHeaderLogo {
  position: absolute;
  height: 9rem;
  width: auto;
}

.glogbalNav {
  display: flex;
  height: 100%;
  width: 40rem;
  position: absolute;
  height: 100%;
  right: 19rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.globalNav__item {
  display: block;
  margin-right: 5rem;
  height: 100%;
}

.globalNav__link {
  width: 100%;
  height: 100%;
  display: block;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}

.globalNav__link--contact::before {
  font-family: "icomoon";
  content: "\e901";
  position: absolute;
  right: -2.8rem;
}

.tel-social-wrap {
  background: #fff;
  height: 6rem;
  width: 19rem;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  align-items: center;
}

.tel-social-wrap .socialLink__wrap {
  display: none;
}

.telLink {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.telLink:hover {
  opacity: 1;
}

.telLink__text {
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.06em;
}

.telLink__text::before {
  font-family: "icomoon";
  content: "\e907";
  font-size: 80%;
  padding-right: 0.2em;
}

.telLink__holiday {
  font-size: 1.4rem;
  font-family: var(--font-chikushi);
  font-weight: 400;
  position: absolute;
  bottom: 0.4rem;
  text-align: center;
  width: 100%;
}

.openbtn {
  display: none;
}

/*-------------------------------
ドロワーメニュー
-------------------------------*/
@media (max-width: 768px) {
  .mainHeader {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 99999;
    display: block;
    background: transparent;
    transition: all 0.5s;
  }

  .mainHeaderLogo {
    top: 2.6rem;
    left: 2rem;
  }

  .glogbalNav {
    height: unset;
    width: fit-content;
    height: 100vh;
    top: 24%;
    right: 0;
    left: 0;
    margin: 0 auto;
    display: block;
  }
  .globalNav__item {
    margin-right: 0;
    height: unset;
    line-height: 2.2;
  }

  .globalNav__link {
    font-size: 2rem;
    position: relative;
  }

  .globalNav__link--contact::before {
    display: none;
  }

  .tel-social-wrap {
    background: transparent;
    height: auto;
    width: unset;
    right: 0;
    left: 0;
    top: auto;
    bottom: 8vh;
    margin: auto;
    position: absolute;
    align-items: center;
    text-align: center;
  }

  .tel-social-wrap .socialLink__wrap {
    display: block;
  }

  .telLink {
    display: block;
    width: 100%;
    height: auto;
  }

  .telLink__text {
    font-size: 2rem;
    text-align: center;
    letter-spacing: 0.2em;
    color: #fff;
  }

  .telLink__text::before {
    content: "\e906";
    font-size: 100%;
    padding-right: 0.08em;
    position: relative;
    top: 0.2rem;
  }

  .telLink__holiday {
    display: none;
  }

  .mainHeader .glogbalNav,
  .mainHeader .tel-social-wrap {
    visibility: hidden;
    opacity: 0;
    transition: all 1s;
  }

  .mainHeader.active::before {
    content: "PEACE";
    font-size: 10rem;
    position: absolute;
    top: 30vw;
    z-index: -1;
    opacity: 0.3;
    color: #4e4a4b;
    transform: rotate(90deg);
    right: -0.2em;
    width: 100vw;
    height: 100vw;
    letter-spacing: 0.1em;
  }
}

/*-------------------------------
ハンバーガーメニュー
-------------------------------*/
@media (max-width: 768px) {
  /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
  .openbtn {
    display: block;
    position: absolute;
    right: 2rem;
    top: 2.7rem;
    cursor: pointer;
    width: 3.6rem;
    height: 2rem;
  }

  /*ボタン内側*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    height: 2px;
    background: #fff;
    position: absolute;
    transform-origin: center;
  }

  .openbtn span:nth-of-type(1) {
    top: 0;
    width: 100%;
  }

  .openbtn span:nth-of-type(2) {
    top: 1rem;
    width: 100%;
  }

  .openbtn span:nth-of-type(3) {
    top: 2rem;
    width: 63%;
  }

  /*activeクラスが付与されると線が回転して×になる*/

  .active .openbtn span:nth-of-type(1) {
    transform: translateY(1rem) rotate(-135deg);
  }

  .active .openbtn span:nth-of-type(2) {
    opacity: 0;
  }

  .active .openbtn span:nth-of-type(3) {
    transform: translateY(-1rem) rotate(135deg);
    width: 100%;
  }

  .active.mainHeader {
    background: #000;
    transition: all 0.5s;
    position: fixed;
  }
  .active.mainHeader .glogbalNav,
  .active.mainHeader .tel-social-wrap {
    visibility: visible;
    opacity: 1;
    transition: all 0.2s;
  }

  .navopen {
    height: 100vh;
    position: fixed;
    overflow-y: hidden;
  }

  .globalNav__link span {
    display: inline-block;
    position: relative;
  }

  #index .globalNav__link--index span::before,
  #service-work .globalNav__link--service-work span::before,
  #contact .globalNav__link--contact span::before {
    content: "";
    width: calc(100% + 2rem);
    height: 1px;
    display: block;
    background: #fff;
    position: absolute;
    top: 0;
    left: -1rem;
    right: 0;
    bottom: 0;
    margin: auto;
  }
}

@media (min-width: 769px) {
  .globalNav__link::after {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 2.5rem;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 3px;
    background: #fff;
    /*アニメーションの指定*/
    transition: all 0.3s;
    transform: scale(0, 1); /*X方向0、Y方向1*/
    transform-origin: center top; /*上部中央基点*/
  }

  /*現在地とhoverの設定*/
  .globalNav__link:hover::after,
  #index .globalNav__link--index::after,
  #service-work .globalNav__link--service-work::after,
  #contact .globalNav__link--contact::after {
    transform: scale(1, 1); /*X方向にスケール拡大*/
  }
  .globalNav__link:hover {
    opacity: 1;
  }
}

/*
****************************************************************
*
* .access
* Access
*
****************************************************************
*/
.access {
  background: #fff;
}
.access__container {
  display: flex;
  padding-top: 5rem;
}
/*
.access .sectionTitle {
  padding: 0;
}
.access .sectionTitle__sub {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0;
}
.access .sectionTitle__sub::before {
  background: transparent;
  content: "\e904";
  font-family: "icomoon";
  padding-right: 0.4em;
  width: unset;
  height: unset;
  color: #000;
  font-size: 3rem;
}
*/
.access__bg {
  width: 42.6%;
  background-image: url(../images/common/access.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.access iframe {
  background: #aaa;
  width: 100%;
}

.access iframe {
  width: 57.4%;
}

@media (max-width: 768px) {
  .access iframe,
  .access__bg {
    width: 100%;
  }

  .access__container {
    display: flex;
    flex-direction: column;
  }

  .access__bg {
    height: 50vw;
  }
}

/*
****************************************************************
*
* .instagram
* インスタグラム
*
****************************************************************
*/
.instagram {
  background: #fff;
}

.instagram .sectionTitle::after {
  content: "Instagram";
}

.instagram__container {
  width: 50rem;
  height: 50rem;
  margin: 8.5rem auto;
}

.instagram-media {
  margin: 5rem auto !important;
}

@media (max-width: 768px) {
  .instagram__container {
    width: 82.4vw;
    height: 82.4vw;
  }

  .instagram-media {
    width: 82.4vw !important;
  }
}

/*
****************************************************************
*
* .mainFooter
* フッター
*
****************************************************************
*/

.mainFooter {
  background: #fff;
  overflow: visible;
  padding-top: 20rem;
}

.mainFooter .flexbox {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
  z-index: 5;
  position: relative;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .mainFooter .flexbox {
    max-width: 90vw;
  }
}

.mainFooter .flexbox__item {
  width: 30%;
  position: relative;
}

.footerInfo {
  padding-top: 5.4rem;
  padding-bottom: 9rem;
}

.footerInfo__text {
  font-size: 1.6rem;
  font-family: var(--font-serif);
  color: #fff;
  line-height: 1.8;
  padding-bottom: 1.5rem;
}

.socialLink__wrap {
  padding-top: 2.2rem;
}

.socialLink {
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.1em;
  position: relative;
  display: block;
  padding-bottom: 1.5rem;
}

.socialLink--instagram::before {
  content: "\e903";
  font-family: "icomoon";
  padding-right: 1em;
}

.socialLink--facebook::before {
  content: "\e902";
  font-family: "icomoon";
  padding-right: 2em;
}

@media (max-width: 768px) {
  .socialLink--instagram::before,
  .socialLink--facebook::before {
    padding-right: 0.5em;
    position: relative;
    top: 0.2rem;
  }
}

.copyright {
  color: #fff;
  text-align: center;
  font-size: 1rem;
  position: absolute;
  bottom: 4.5rem;
  width: 100%;
}

.copyright__link {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.copyright__logo {
  width: 13.5rem;
  height: auto;
  padding-bottom: 1rem;
  margin: 0 auto;
  display: block;
}

@media (max-width: 768px) {
  .mainFooter .flexbox {
    flex-direction: column;
  }

  .mainFooter .flexbox__item {
    width: 27rem;
    align-items: center;
    margin: 0 auto;
  }
  .copyright {
    position: relative;
    bottom: 2rem;
  }

  .mainFooter .waves__bg {
    height: 60rem !important;
  }
  .mainFooter .scroll {
    bottom: 70rem !important;
  }
}

/*
****************************************************************
*
* waves
*
****************************************************************
*/
.waves {
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 85vh;
  z-index: -1;
}

.waves svg {
  /* safari filter対策 */
  will-change: filter; /* or transform */
  /*
  filter: blur(8px);
  -webkit-filter: blur(8px);
  */
  filter: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='flt-jz4nbsk1' x='0' y='0' width='1' height='1' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur stdDeviation='10' result='flt-jz4nbsk1-2'/%3E%3CfeMorphology operator='dilate' radius='10'/%3E%3CfeMerge%3E%3CfeMergeNode/%3E%3CfeMergeNode in='flt-jz4nbsk1-2'/%3E%3C/feMerge%3E%3C/filter%3E%3C/svg%3E#flt-jz4nbsk1");
}

.mainFooter .waves {
  top: unset !important;
  bottom: 0;
  z-index: 3;
}

.waves__bg {
  width: 100%;
  height: 200vh;
  background: #fff;
  position: relative;
  transform: translateY(2rem);
}

.mainFooter .waves__bg {
  background: #000;
  height: 50rem;
}

.waves svg {
  width: 100%;
  overflow: visible;
  height: 10vh;
}

.waves g > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  transform-origin: center top;
}

.waves g > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.waves g > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.waves g > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.waves g > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

@media (max-width: 768px) {
}

/*
****************************************************************
*
* scroll
*
****************************************************************
*/
.scroll {
  width: 100%;
  position: relative;
  background: #fff;
  padding-bottom: 17.8rem;
  padding-top: 12.8rem;
}
.scroll__link {
  display: block;
  width: 11.3rem;
  height: 11.3rem;
  position: absolute;
  right: calc(50% - 52.7rem);
}

.scroll__img,
.scroll__arrow {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.scroll__img {
  animation: scrollRotate 8s linear infinite;
}

.scroll__arrow {
  animation: arrowmove 1.6s ease-in-out infinite;
  right: 1rem;
}

.mainFooter .scroll {
  bottom: 60rem;
}

.scroll--back .scroll__arrow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

@keyframes scrollRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes arrowmove {
  0% {
    bottom: 10px;
  }
  90% {
    bottom: -20px;
  }
  100% {
    bottom: 5px;
  }
}

@media (max-width: 1280px) {
  .scroll {
    padding-bottom: 8rem;
    padding-top: 4rem;
  }

  .scroll__link {
    right: 5vw;
    width: 7.4rem;
    height: 7.4rem;
  }

  .scroll__arrow {
    right: 0;
    width: 0.5rem;
    height: auto;
  }

  .scroll__img {
    width: 100%;
    height: unset;
  }
}

/*
****************************************************************
*
* ローディングアニメーション
*
****************************************************************
*/
/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/

#index #splash {
  /*fixedで全面に固定*/
  position: fixed;
  z-index: 9999999;
  width: 100%;
  height: 100%;
  background: #000;
  text-align: center;
  color: #fff;
  top: 0;
}

/* Loadingバー中央配置　*/
#index #splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #fff;
}

/*
****************************************************************
*
* facebook非表示
*
****************************************************************
*/
.socialLink--facebook {
  display: none;
}
