@charset "UTF-8";
/*===========================================================*/
/*機能編 4-2-4　背景色が伸びる（左から右）　 */
/*===========================================================*/
/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  text-align: center;
  background: #ccc;
  background: #fff;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  padding: 20px;
}

/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #333333;
  /*伸びる背景色の設定*/
  animation-name: PageAnime;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#main_content {
  opacity: 0;
}

/*bodyにappearクラスがついたら出現*/
body.appear #main_content {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*====== 9-1-1 縦線が動いてスクロールを促す =======*/
/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  top: 30px;
  /*全体の高さ*/
  height: 100px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  top: -15px;
  /*テキストの形状*/
  color: #000;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #000;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
/*==================================================
　5-2-6 3本線が回転して×に
===================================*/
#humberger {
  position: fixed;
  width: 50px;
  height: 50px;
  z-index: 2000;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn6 {
  position: relative;
  /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*ボタン内側*/
.openbtn6 span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #333;
}

.openbtn6 span:nth-of-type(1) {
  top: 15px;
  width: 45%;
}

.openbtn6 span:nth-of-type(2) {
  top: 23px;
  width: 35%;
}

.openbtn6 span:nth-of-type(3) {
  top: 31px;
  width: 20%;
}

/*activeクラスが付与されると線が回転して×になる*/
.openbtn6.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-135deg);
  width: 30%;
}

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

.openbtn6.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(135deg);
  width: 30%;
}

/*========= メニュー画面 ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 1010;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6em 1.5em 0;
  /*ナビの高さ*/
  background: #fff;
  /*動き*/
}
#g-nav .nav-menu {
  border-bottom: solid 1px #bfbfbf;
}
#g-nav .nav-menu a span.en {
  font-size: 20px;
  font-weight: bold;
  font-family: "Antonio", sans-serif;
  color: #FF7600;
  letter-spacing: 0.05em;
  padding-right: 25px;
  vertical-align: middle;
}
#g-nav .nav-menu a span.ja {
  font-size: 14px;
  color: #FF7600;
  font-weight: normal;
  vertical-align: middle;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  left: 0;
}

.contact-btn {
  position: relative;
  background: #FF7600;
  color: #ffffff;
  padding: 1em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  font-style: italic;
  text-align: center;
}
.contact-btn span {
  font-weight: bold;
  letter-spacing: 0.1em;
}
.contact-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 40%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-clip-path: polygon(100% 0, 100% 100%, 50% 100%);
          clip-path: polygon(100% 0, 100% 100%, 50% 100%);
}

/*==================================================
  　メインテキストアニメーション  
===================================*/
.animated-text-cover,
.animated-text {
  display: inline-block;
  opacity: 0;
}
.animated-text-cover.active, .animated-text-cover.active::after,
.animated-text.active,
.animated-text.active::after {
  animation-delay: var(--animation-delay, 2s);
  animation-iteration-count: var(--iterations, 1);
  animation-duration: var(--duration, 800ms);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.animated-text-cover.active,
.animated-text.active {
  opacity: 1;
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  animation-name: clip-text;
  cursor: default;
}
.animated-text-cover.active::after,
.animated-text.active::after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fca65b;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}
.animated-text-cover.a-white.active::after,
.animated-text.a-white.active::after {
  background-color: rgba(255, 255, 255, 0.5);
}
.animated-text-cover.a-transparent.active::after,
.animated-text.a-transparent.active::after {
  background-color: rgba(255, 255, 255, 0.5);
}

@keyframes clip-text {
  from {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
/*==================================================
印象編 4 最低限おぼえておきたい動き
===================================*/
/*背景色が伸びて出現（左から）*/
.animatedBgLR {
  position: relative;
  display: inline-block;
  height: 100%;
}

.animatedBgLR.active::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 30px;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*中の要素*/
.animatedBgLR > * {
  opacity: 0;
}

.animatedBgLR.active > * {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header {
  position: absolute;
  z-index: 1000;
  width: 100%;
  color: #ffffff;
}
header a {
  color: #ffffff;
}
header .title {
  font-size: 2em;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
  margin-left: 0.5em;
}
@media (max-width: 991.98px) {
  header .title {
    font-size: 1.2em;
  }
}
header img.logo {
  width: 100%;
}
header .contact-btn {
  position: relative;
  background: #FF7600;
  color: #ffffff;
  padding: 0.5em 1em;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: auto;
  font-style: italic;
  text-align: center;
}
header .contact-btn span {
  font-weight: bold;
  letter-spacing: 0.1em;
}
header .contact-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: 30%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
header .animated-line {
  padding: 0 0.5em 10px 0.5em;
  position: relative;
}
header .animated-line::before {
  background: #FF7600;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
header .animated-line:hover::before,
header .animated-line.active::before {
  transform-origin: center top;
  transform: scale(1, 1);
}
header .animated-line:hover,
header .animated-line.active {
  color: #FF7600;
}

/*==================================================
　トップカバー
===================================*/
.cover {
  position: relative;
}
.cover .cover-image {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
@media (max-width: 991.98px) {
  .cover .cover-image {
    aspect-ratio: 1/1;
  }
}
.cover .catch-copy {
  position: absolute;
  top: 35%;
  left: 6em;
  color: #ffffff;
  transform: translateY(-50%);
  font-style: italic;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
@media (max-width: 991.98px) {
  .cover .catch-copy {
    top: 40%;
    left: 0.5em;
  }
}
.cover .catch-copy span.orange {
  position: relative;
}
.cover .catch-copy span.orange::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background-color: rgba(255, 102, 0, 0.7);
  transform: translateY(-50%);
  z-index: -1;
}
.cover .catch-copy .main-copy {
  font-size: 56px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media (max-width: 991.98px) {
  .cover .catch-copy .main-copy {
    font-size: 24px;
    letter-spacing: 0;
  }
}
.cover .catch-copy .sub-copy {
  margin-top: 1em;
  font-size: 24px;
  display: block;
}
@media (max-width: 991.98px) {
  .cover .catch-copy .sub-copy {
    font-size: 16px;
  }
}
.cover.sub .cover-image {
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
@media (max-width: 767.98px) {
  .cover.sub .cover-image {
    height: 200px;
  }
}
.cover.sub .catch-copy {
  top: 55%;
}
.cover.sub .main-copy {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media (max-width: 991.98px) {
  .cover.sub .main-copy {
    font-size: 30px;
    letter-spacing: 0;
  }
}

/*==================================================
　サブカバー
===================================*/
.sub-cover {
  position: relative;
  width: 90%;
  height: 320px;
  text-align: right;
  background: url("https://placehold.jp/20px/555555/666666/617x321.png") no-repeat top center;
  background-size: cover;
}
@media (max-width: 991.98px) {
  .sub-cover {
    width: 100%;
    height: 180px;
  }
}
.sub-cover .page-title {
  position: absolute;
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media (max-width: 991.98px) {
  .sub-cover .page-title {
    font-size: 30px;
  }
}

.btn-light {
  color: #FF7600;
  border-radius: 0;
  position: relative;
  min-width: 300px;
  padding: 1em 3em;
  font-size: 0.9em;
  border: 1px solid #FF7600;
}
.btn-light::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: #FF7600;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.btn-light:hover {
  background: #FF7600;
  color: #ffffff;
}

.section-title .en {
  font-size: 60px;
  font-weight: 800;
  color: #FF7600;
  letter-spacing: 0.08em;
  vertical-align: middle;
}
@media (max-width: 991.98px) {
  .section-title .en {
    font-size: 36px;
  }
}
.section-title .ja {
  font-size: 16px;
  font-weight: normal;
  color: #FF7600;
  vertical-align: middle;
}
@media (max-width: 991.98px) {
  .section-title .ja {
    display: block;
    padding-top: 10px;
  }
}

body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", serif;
  font-size: 0.9em;
}

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

/*==================================================
　ページトップ
===================================*/
.page-top {
  position: fixed;
  bottom: 1em;
  right: 1em;
}

/*==================================================
　お知らせ
===================================*/
.news .article {
  border-bottom: solid 1px #bfbfbf;
}

/*==================================================
　フッター
===================================*/
.footer-contact {
  background: #565E6C;
}
.footer-contact .index {
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 991.98px) {
  .footer-contact .index {
    font-size: 20px;
    text-align: center;
  }
}
@media (max-width: 991.98px) {
  .footer-contact p {
    text-align: center;
  }
}
.footer-contact .tel {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
}
.footer-contact .tel span {
  font-size: 20px;
  padding-right: 10px;
}
.footer-contact .mail {
  text-align: center;
  font-size: 20px;
}

footer {
  background: #2d3133;
}
@media (max-width: 991.98px) {
  footer .footer-logo {
    width: 80px;
  }
}
footer .logo-text {
  font-size: 20px;
}
@media (max-width: 991.98px) {
  footer .logo-text {
    font-size: 18px;
  }
}

.footer_bnr {
  position: fixed;
  bottom: 1em;
  left: 1em;
}/*# sourceMappingURL=common.css.map */