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

#splash-logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
  padding: 0 60px;
}

/*========= 画面遷移のための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: 1010;
  top: 0;
  left: 0;
  background: #F6F7F8;
  right: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav .nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
#g-nav ruby {
  font-size: 18px;
  font-weight: 700;
  padding-left: 10px;
}
#g-nav ruby rt {
  font-size: 12px;
  padding-bottom: 3px;
}
#g-nav .contact-btn-sp {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4bccbe;
  color: #ffffff;
  border-radius: 50px;
  box-shadow: 0 0 5px #aaaaaa, 0 0 5px #aaaaaa;
  padding: 10px 0;
}
#g-nav .contact-btn-sp span {
  font-size: 1.5em;
}
#g-nav .contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4bccbe;
  border-radius: 50%;
  height: 80px;
  width: 80px;
}
#g-nav .access-btn {
  display: block;
  color: #ffffff;
  font-weight: 600;
  background: #fa4138;
  letter-spacing: 0.08em;
  padding: 15px 0;
}

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

/*==================================================
  　メインテキストアニメーション  
===================================*/
.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: #ccc;
  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;
  }
}
/* .block-content 直下の要素にサイト幅を指定 */
.block-content > * {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* .block-content 直下の .alignwide の場合 */
.block-content > .alignwide {
  max-width: 1400px;
}

/* .block-content 直下の .alignfull の場合 */
.block-content > .alignfull {
  max-width: 100%;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/*==================================================
　ヘッダー
===================================*/
header {
  background: url(../images/cover/cover_bg.webp) no-repeat top center #faf5e5;
  z-index: 1000;
}
header a:hover {
  color: #333;
}
header img.logo {
  max-width: 100%;
}
@media (max-width: 767.98px) {
  header img.logo {
    width: 100%;
  }
}
header .logo-name {
  font-size: 20px;
}
@media (max-width: 991.98px) {
  header .logo-name {
    font-size: 16px;
  }
}
header .contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4bccbe;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  box-shadow: 0 0 5px #aaaaaa, 0 0 10px #aaaaaa;
}
header .contact-btn span {
  font-size: 1.5em;
}
header.sub {
  background-color: rgba(255, 255, 255, 0.9);
}
header .nav-menu-container {
  position: relative;
}
header .nav-menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fc984c;
  box-shadow: 0 0 5px #aaaaaa, 0 0 10px #aaaaaa;
  padding: 1em 10em;
  border-radius: 50px;
  width: auto;
}
header .nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  padding-left: 10px;
}
header .nav-item img {
  margin-right: 10px;
}

body {
  font-family: "Zen Maru Gothic", serif;
  font-size: 20px;
}
@media (max-width: 991.98px) {
  body {
    font-size: 18px;
  }
}

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

/*==================================================
　トップカバー
===================================*/
.cover {
  width: 100%;
  height: calc(100vh - 92px);
  max-height: 700px;
  position: relative;
  background-size: cover, contain;
  padding-bottom: 50px;
}
@media (max-width: 991.98px) {
  .cover {
    width: 100%;
    height: 500px;
  }
}

.catch-copy {
  position: absolute;
  top: 10%;
  left: 50%;
  color: #ffffff;
  transform: translateX(-50%);
}
@media (max-width: 767.98px) {
  .catch-copy {
    width: 80%;
  }
}
.catch-copy .main-copy {
  font-size: 56px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media (max-width: 991.98px) {
  .catch-copy .main-copy {
    font-size: 30px;
    letter-spacing: 0;
  }
}

.cover-img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 450px;
  background: url(../images/cover/cover_img.webp) no-repeat bottom center;
  background-size: contain;
  padding-bottom: 50px;
}
@media (max-width: 991.98px) {
  .cover-img {
    background: url(../images/cover/cover_img_sp.webp) no-repeat bottom center;
    background-size: cover;
    height: 300px;
  }
}

/*==================================================
　サブカバー
===================================*/
.sub-cover {
  padding: 80px 40px;
}
@media (max-width: 991.98px) {
  .sub-cover {
    padding: 20px;
  }
}
.sub-cover .page-title {
  font-size: 48px;
  font-weight: 900;
  color: #FBBA8A;
  letter-spacing: 0.1em;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #333;
  text-shadow: 3px 2px #FBBA8A;
}
@media (max-width: 991.98px) {
  .sub-cover .page-title {
    font-size: 30px;
  }
}
.sub-cover .page-title ruby rt {
  font-size: 14px;
  -webkit-text-fill-color: #333;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: none;
  text-shadow: none;
  margin-bottom: 0.4em;
}
.sub-cover .page-title img {
  display: none;
}

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

/*==================================================
背景ベージュ波線
===================================*/
.bg-wave {
  background: url(../images/top/nami_top.webp) repeat-x top center, url(../images/top/nami_bottom.webp) repeat-x bottom center #faf5e5;
}

/*==================================================
　ブログサムネイル
===================================*/
.blog-thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #434343;
}

/*==================================================
ページナビ
===================================*/
.sw-pagenavi {
  padding: 3em 0 2em;
}
.sw-pagenavi * {
  border: none !important;
}
.sw-pagenavi a {
  text-decoration: none;
  color: #333333;
}
.sw-pagenavi .wp-pagenavi {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.sw-pagenavi .wp-pagenavi .page,
.sw-pagenavi .wp-pagenavi .current {
  display: block;
  background: rgba(252, 152, 76, 0.3);
  color: rgb(252, 152, 76);
  margin: 0 6px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  height: 40px;
  width: 40px;
}
.sw-pagenavi .current {
  background: rgb(252, 152, 76) !important;
  color: #fff !important;
}
.sw-pagenavi .pages {
  color: rgb(252, 152, 76) !important;
}
.sw-pagenavi .extend {
  color: rgb(252, 152, 76) !important;
}
.sw-pagenavi .nextpostslink,
.sw-pagenavi .previouspostslink,
.sw-pagenavi .first,
.sw-pagenavi .last {
  color: rgb(252, 152, 76) !important;
  font-size: 0.9em;
}
.sw-pagenavi span.pages {
  margin-right: 2em;
}

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

/*==================================================
　フッター
===================================*/
.footer-contact {
  background: #ffffff;
}
.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: #ffffff;
}
@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 */