@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.pc {
  display: none;
}
@media (min-width: 992px) {
  .pc {
    display: block;
  }
}

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

/*1.0rem=10px*/
html {
  font-size: 62.5%;
}

body {
  background-color: #E8E5E2;
  color: #000;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  overflow-x: hidden;
  width: 100vw;
}

img {
  width: 100%;
}

button {
  background-color: transparent;
  cursor: pointer;
}

em {
  font-style: normal;
}

input,
label,
a {
  cursor: pointer;
}

a {
  transition: all 0.2s linear 0s;
}
a:hover {
  opacity: 0.7;
}

/***********************************************
header
************************************************/
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
}

.l-header__items {
  animation: fadeIn 4s cubic-bezier(0.23, 1, 0.88, 1) forwards;
  display: flex;
  justify-content: flex-end;
  height: 120px;
}
@media (min-width: 992px) {
  .l-header__items {
    height: auto;
    height: 80px;
    padding-left: 10px;
    max-width: 1200px;
    margin: 0 auto;
    position: absolute;
    top: 60px;
    right: 50px;
  }
}
/*==================================================
　5-3-3 左から右に線が伸びる（下部）
===================================*/
.l-header__nav-items li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  text-orientation: upright;
  text-align: left;
}

/***********************************************
header       右            *****/
.l-header__nav-items ul {
  display: none;
}
@media (min-width: 992px) {
  .l-header__nav-items ul {
    display: flex;
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .l-header__nav-items {
    display: flex;
  }
}

.l-header__nav-items ul > li {
  font-size: clamp(1.1rem, 0.9rem + 0.625vw, 1.6rem) !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  height: 230px;
}
@media (min-width: 992px) {
  .l-header__nav-items ul > li {
    padding: 10px 16px;
  }
}
.l-header__nav-items ul > li a {
  transition: all 0.2s linear 0s;
  color: #000;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.2em;
}
.l-header__nav-items ul > li a:hover {
  opacity: 0.4;
}

/*==================================================
　5-3-3 左から右に線が伸びる（下部）
===================================*/
.l-header__hamburger-menu li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  color: #000000;
}

.l-header__hamburger-menu li.current a,
.l-header__hamburger-menu li a:hover {
  opacity: 1 !important;
}

.l-header__hamburger-menu li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 4px;
  left: 35%;
  transform: translateX(-50%);
  /*線の形状*/
  width: 30%;
  height: 3px;
  background: #E8E5E2;
  /*アニメーションの指定*/
  transition: all 0.6s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: left top;
  /*左上基点*/
}

/*現在地とhoverの設定*/
.l-header__hamburger-menu li.current a::after,
.l-header__hamburger-menu li a:hover::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}

/***********************************************
ハンバーガーメニュー
************************************************/
.drawer-icon {
  width: 70px;
  height: 70px;
  position: fixed;
  top: -6px;
  right: 0;
  z-index: 1000;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  background: transparent;
  display: block;
  background-color: #E8E5E2;
}
@media (min-width: 992px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-bars {
  display: inline-block;
  width: 54px;
  height: 32.75px;
  position: relative;
  vertical-align: bottom;
  width: 33px;
  height: 12.75px;
}

.drawer-bar {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  background: #ffffff;
  width: 100%;
  height: 2.25px;
  border-radius: 20px;
  transition: all 0.5s linear 0s;
}
.drawer-bar:nth-of-type(1) {
  top: 0;
}
.drawer-bar:nth-of-type(2) {
  top: 10.25px;
}
.drawer-bar:nth-of-type(3) {
  top: 20.5px;
}
.is-checked .drawer-bar:nth-of-type(1) {
  top: 10px;
  transform: rotate(-45deg);
  background: #ffffff;
}
.is-checked .drawer-bar:nth-of-type(2) {
  background: transparent;
}
.is-checked .drawer-bar:nth-of-type(3) {
  top: 10px;
  transform: rotate(45deg);
  background: #ffffff;
}

.drawer-content-cover {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transform: translateX(0);
  top: 0;
  left: 0;
  bottom: auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  transition: all 0.5s linear 0s;
  background: #FCF0F0;
  z-index: 999;
  padding-top: 50px;
}
.drawer-content-cover.is-checked {
  visibility: visible;
  opacity: 1;
}
.drawer-content-cover p {
  color: #3C3C3C;
}

.l-header__hamburger-menu ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  z-index: 1;
}
@media (min-width: 992px) {
  .l-header__hamburger-menu ul {
    width: 300px;
    max-width: 100%;
  }
}
.l-header__hamburger-menu ul li a {
  text-align: center;
  text-decoration: none;
  display: block;
  position: relative;
  padding: 26px 17px;
  color: #333;
  transition: all 0.2s linear 0s;
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
}
.l-header__hamburger-menu ul li a:hover {
  opacity: 0.7;
}

.menu-dorawer-container li:last-child {
  border: solid 2px #fff;
  background-color: #fff;
  margin: 10px 0;
}
.menu-dorawer-container li:last-child a {
  font-weight: bold;
  color: #002a52;
}
.menu-dorawer-container li:nth-last-child(2) {
  border: solid 1px #fff;
  margin: 10px 0 30px 0;
}

.l-header__hamburger-menu ul li {
  font-size: 18px;
}

.l-header__foot-flex ul {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  font-weight: 600;
}
.l-header__foot-flex ul li a {
  display: block;
  padding: 30px 8px;
  color: #cbcbcb;
  font-size: 11px;
}

/**************?
footer
/*************/
.l-footer a {
  font-family: "Noto Sans JP", sans-serif;
  transition: all 0.2s linear 0s;
  color: #fff;
  padding: 10px 0;
  display: block;
  font-weight: 400;
}
.l-footer a:hover {
  opacity: 0.7;
}
@media (min-width: 992px) {
  .l-footer {
    display: block;
    width: 100%;
    color: #ffffff;
    z-index: 900;
    font-size: 16px;
  }
}

.l-footer__nav-items {
  width: 75%;
}
.l-footer__nav-items ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px auto 0;
}
@media (min-width: 992px) {
  .l-footer__nav-items ul {
    margin: 0 auto 0px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.l-footer__nav-items ul > li {
  display: block;
}
@media (min-width: 992px) {
  .l-footer__nav-items ul > li {
    padding: 10px 40px;
  }
}

.l-footer__copyright {
  font-size: 10px;
  display: block;
  font-weight: 400;
  padding: 10px 0px 90px;
  margin: 0 10px;
  background-color: #ffffff;
  border-top: 1px solid #000;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.6px;
  line-height: 2.86;
  letter-spacing: 4.2px;
}
@media (min-width: 768px) {
  .l-footer__copyright {
    font-size: 15px;
    padding: 10px 0px 10px 0;
    color: #000;
    margin: 0 50px;
  }
}

.l-footer__vertical-line {
  width: 1px;
  height: 110px;
  background-color: #b2b2b2;
}

/***********************************************
    cv ボタン　最下部固定
    ************************************************/
.l-footer-cv {
  display: flex;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 800;
  font-size: 15px;
  font-weight: 700;
  background-color: #ffffff;
  height: 75px;
  width: 100%;
}
@media (min-width: 992px) {
  .l-footer-cv {
    display: none;
  }
}

a.l-footer-cv__btn {
  width: 50%;
  padding: 27px;
  text-align: center;
  border-right: solid 1px #fff;
  line-height: 1.5;
  display: block;
  width: 50%;
  height: 100%;
  background-color: #E8E5E2;
  padding: 27px 0px;
  font-size: 14px;
  color: #000;
}
a.l-footer-cv__btn::after {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  position: absolute;
  top: 42%;
  right: 10px;
}
@media (min-width: 992px) {
  a.l-footer-cv__btn {
    width: 320px;
    height: 75px;
    right: 0;
    background-color: #E8E5E2;
    color: #000;
    font-size: 16px;
    padding: 25px;
  }
  a.l-footer-cv__btn::after {
    border-color: #E8E5E2;
    right: 20px;
  }
  a.l-footer-cv__btn.--pc {
    padding: 25px;
    background-color: #E8E5E2;
    color: #fff;
  }
  a.l-footer-cv__btn.--pc::after {
    border-color: #fff;
  }
}

@media (min-width: 992px) {
  .l-footer__text-small {
    font-size: 11px;
  }
}

.l-footer-cv__sp {
  display: inline;
}
@media (min-width: 992px) {
  .l-footer-cv__sp {
    display: none;
  }
}

.l-footer__wrapper {
  margin-top: 40px;
  color: #fff;
}

.l-footer__logo-nav-flex {
  display: none;
}
@media (min-width: 992px) {
  .l-footer__logo-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 0;
  }
}

.l-footer__nav {
  margin-top: 30px;
  padding: 15px 0;
}
.l-footer__nav ul {
  display: none;
}
@media (min-width: 992px) {
  .l-footer__nav ul {
    display: flex;
    justify-content: center;
  }
}

.l-footer__nav ul > li {
  font-weight: 700;
}
@media (min-width: 992px) {
  .l-footer__nav ul > li {
    padding: 30px 15px;
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .l-footer__nav ul > li {
    padding: 30px 30px;
    font-size: 22px;
  }
}
.l-footer__nav ul > li a {
  transition: all 0.2s linear 0s;
  /*********フッターナビゲーション文字の色********/
  color: #fff;
}
.l-footer__nav ul > li a:hover {
  opacity: 0.7;
}

.l-footer__logo {
  transition: all 0.2s linear 0s;
  display: block;
}
.l-footer__logo:hover {
  opacity: 0.7;
}
@media (min-width: 992px) {
  .l-footer__logo {
    width: 99px;
  }
}

.l-footer__info {
  margin: 16px 0 9px 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.65;
  letter-spacing: normal;
  text-align: left;
  color: #333;
}

.l-footer__contact-bg {
  padding: 30px 0 20px;
  margin: 30px 0 0 0;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .l-footer__contact-bg {
    padding: 80px 0;
    margin: 0;
  }
}

.c-inner__center {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.3;
  background-color: #fff;
}
.c-inner__center.--disp {
  background-color: #fff;
}
@media (min-width: 992px) {
  .c-inner__center {
    width: 80%;
  }
}
@media (min-width: 992px) {
  .c-inner__center.--outer {
    width: 85%;
    max-width: 1200px;
  }
}

.c-inner__left {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  background-color: #fff;
}
@media (min-width: 992px) {
  .c-inner__left {
    width: 80%;
  }
}
@media (min-width: 992px) {
  .c-inner__left.--outer {
    width: 85%;
    max-width: 1200px;
  }
}

.c-inner__flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: #fff;
}
.c-inner__flex.--sp_block {
  display: block;
}
@media (min-width: 992px) {
  .c-inner__flex.--sp_block {
    display: flex;
  }
}

.c-heading {
  text-align: center;
  margin: 65px 0 20px;
}

.c-heading__jp {
  font-size: 35px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -2px;
  text-align: center;
  color: #000;
  position: relative;
}
.c-heading__jp::before {
  content: "";
  background-image: url(../img/logo-heading.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (min-width: 992px) {
  .c-heading__jp::before {
    width: 74px;
    height: 74px;
  }
}
.c-heading__jp.--contact {
  letter-spacing: 0em;
  color: #fff;
}
.c-heading__jp.--contact::before {
  background-image: none;
}
.c-heading__jp.--contact + .c-heading__en {
  letter-spacing: 0em;
  color: #fff;
  padding: 5px 0;
}

.c-heading__en {
  display: inline-block;
  margin-top: -10px;
  font-size: 18px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1px;
  text-align: center;
  color: #000;
}

.c-icon {
  position: relative;
}
.c-icon::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
.c-icon::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

/***********************************************
左から右へグイっと登場
************************************************/
.c-icon__from-left {
  animation: fadeIn 1s cubic-bezier(0.9, 0, 0.2, 1) 0.5s 1 normal backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.c-icon__keyword {
  position: absolute;
  color: transparent;
}

/***********************************************
文字の両サイドに画像配置
************************************************/
.c-icon__both-side {
  position: relative;
}
.c-icon__both-side::before, .c-icon__both-side::after {
  content: "";
  display: inline-block;
  width: 10%;
  aspect-ratio: 100/133;
  background-image: url();
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.c-icon__both-side::after {
  background-image: url();
}

/***********************************************
アンダーライン
************************************************/
.c-icon__marker {
  background: linear-gradient(transparent 60%, yellow 30%);
  display: inline-block;
}

.c-icon__under-line {
  border-bottom: 10px solid #000;
  display: inline-block;
  padding-bottom: 10px;
}

/***********************************************
　ハンバーガーメニュー　細いスクロールバー
************************************************/
.c-icon__scroll-bar {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  overflow-y: auto;
}
.c-icon__scroll-bar::-webkit-scrollbar {
  width: 5px;
  height: 2px;
  border-radius: 10px;
}
.c-icon__scroll-bar::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #D5D5D5;
}
.c-icon__scroll-bar::-webkit-scrollbar-thumb {
  background-color: #969696;
}

/***********************************************
　MV　SCROLL DOWN のモーション
************************************************/
.c-icon__scrolldown1 {
  position: absolute;
  left: 30px;
  bottom: -50px;
  height: 50px;
}

/*====== 9-1-1 縦線が動いてスクロールを促す =======*/
/*スクロールダウン全体の場所*/
.c-icon__scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 58px;
  bottom: 69px;
  /*全体の高さ*/
  height: 50px;
}

/*Scrollテキストの描写*/
.c-icon__scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -32px;
  bottom: 59px;
  /*テキストの形状*/
  color: #D5C1A1;
  width: 70px;
  font-size: 14px;
  font-weight: 400;
  transform: rotate(90deg);
}

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

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 10px;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 55px;
    opacity: 0;
  }
}
/* ------------------------------------
ドキドキするボタン
  ------------------------------------*/
a.c-button__doki {
  animation-name: dokidoki;
  animation-delay: 0s;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  display: block;
  text-decoration: none !important;
  text-align: center;
}

@keyframes dokidoki {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
/***********************************************
ボタンがキラッと光る
************************************************/
/* ------------------------------------
ボタンの基本スタイル
------------------------------------*/
/* ボタン自体のスタイル */
.shine-button,
.shine-button2 {
  /* ボタンを光らせるために必要 */
  position: relative;
  /* ボタンの位置を基準にするため relative指定 */
  overflow: hidden;
  /* ボタンの外の領域は非表示 */
}

/* ------------------------------------
  ボタンの外側にボックス作成
  （疑似要素「before」を使う）
  ------------------------------------*/
.shine-button::before,
.shine-button2::before {
  content: "";
  /* 文字は表示しないので中身無しを指定 */
  position: absolute;
  /* ボタンの位置を基準に絶対値指定する */
  display: block;
  /* 形式はblock */
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
  /* 背景色は透明から白になるグラデーション */
  width: 50px;
  /* 横幅 */
  height: 50px;
  /* 縦幅 */
  top: -60px;
  /* ボタン左上を基準に上へ60pxの位置 */
  left: -60px;
  /* ボタン左上を基準に左へ60pxの位置 */
  /* アニメーションの動作指定 */
  animation-name: shine-run;
  /* アニメーション名の指定 */
  animation-delay: 0s;
  /* アニメーションの開始時間指定 */
  animation-duration: 3s;
  /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in;
  /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
  /* アニメーションの無限繰り返しの指定 */
}

.shine-button2::before {
  background: linear-gradient(to right, rgba(255, 223, 64, 0), #fffdf3);
  z-index: 999;
}

/* ------------------------------------
  アニメーションのタイミングとボックスの
  拡大率、角度、透過率の指定
  ------------------------------------*/
@keyframes shine-run {
  0% {
    transform: scale(0) rotate(50deg);
    /* アニメ開始時は大きさ0、50度の傾き */
    opacity: 0;
    /* アニメ開始時は全透過 */
  }
  40% {
    transform: scale(1) rotate(50deg);
    /* 40%まで進む間に大きさを等倍に。傾きは50度のまま*/
    opacity: 1;
    /* 透過しない（しっかり表示される）ように1を設定 */
  }
  100% {
    transform: scale(250) rotate(50deg);
    /* 最後は元の大きさの250倍になるようにする。傾きは50度のまま*/
    opacity: 0;
    /* 全透過になるようにして、徐々に消えるような変化を付ける */
  }
}
/***********************************************
read more　線の色が変わる
************************************************/
/*== 線の上を別の線が伸びる */
.c-button__more {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*リンクの形状*/
  color: #fff;
  padding: 10px 10px 10px 10px;
  display: inline-block;
  text-decoration: none;
  outline: none;
}

/*線の設定*/
.c-button__more::before,
.c-button__more::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  /*線の形状*/
  background: #000;
  width: 50%;
  height: 2px;
  /*アニメーションの指定*/
  transition: all 0.3s ease-in-out;
}

.c-button__more.--white::before,
.c-button__more.--white::after {
  /*線の形状*/
  background: #fff;
}

/*hover時に伸びる線の形状*/
.c-button__more::after {
  width: 0;
  background: #ffffff;
}

.c-button__more.--white::after {
  background: #000;
}

/*hover時に100%に伸びる*/
.c-button__more:hover::after {
  width: 50%;
}

/*矢印の設定*/
.c-button__more span {
  position: relative;
}

.c-button__more span::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 0.6em;
  right: -36px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}

.c-button__more.--white span::after {
  border-color: #fff;
}

/*hover時に矢印が移動*/
.c-button__more:hover span::after {
  right: -41px;
}

.--side {
  /*== 線の上を別の線が伸びる */
  /*線の設定*/
  /*hover時に伸びる線の形状*/
  /*hover時に100%に伸びる*/
  /*矢印の設定*/
  /*hover時に矢印が移動*/
}
.--side .c-button__more {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*リンクの形状*/
  color: #fff;
  padding: 10px 80px 10px 20px;
  display: inline-block;
  text-decoration: none;
  outline: none;
}
@media (min-width: 992px) {
  .--side .c-button__more {
    padding-right: 137px;
  }
}
.--side .c-button__more::before,
.--side .c-button__more::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 105px;
  background: #5d595a;
  width: 24%;
  height: 1px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .--side .c-button__more::before,
  .--side .c-button__more::after {
    bottom: 23px;
    left: 129px;
  }
}
.--side .c-button__more.--white::before,
.--side .c-button__more.--white::after {
  /*線の形状*/
  background: #fff;
}
.--side .c-button__more::after {
  width: 0;
  background: #ffffff;
}
.--side .c-button__more.--white::after {
  background: #000000;
}
.--side .c-button__more:hover::after {
  width: 24%;
}
.--side .c-button__more span {
  position: relative;
}
.--side .c-button__more span::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 0.6em;
  right: -36px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}
.--side .c-button__more.--white span::after {
  border-color: #fff;
}
.--side .c-button__more:hover span::after {
  right: -41px;
}

/***************
*トップページ「　　」セクション
****************/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-top__s1-mv-section {
  position: relative;
}
.p-top__s1-mv-section h1 {
  animation: fadeIn 4s cubic-bezier(0.23, 1, 0.88, 1) forwards;
  padding: 0px 0 0;
}
@media (min-width: 992px) {
  .p-top__s1-mv-section h1 {
    padding: 250px 50px 0;
  }
}

.lingua-about {
  animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.--text {
  animation: fadeIn 4s cubic-bezier(0.23, 1, 0.88, 1) forwards;
  margin: 50px 0 0;
  text-align: center;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: -0.16px;
}
@media (min-width: 992px) {
  .--text {
    margin: 150px 0 0;
    font-size: 16px;
    line-height: 2.5;
  }
}

.left-hand {
  height: 100vh;
  background: #fff;
  position: absolute;
  left: 0px;
  top: -60px;
}
.left-hand::before {
  content: "";
  width: 100px;
  height: 100px;
  background-image: url(../img/left-hand.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 80px;
  left: -58px;
}

.right-hand {
  height: 100vh;
  background: #fff;
  position: absolute;
  right: 0px;
  top: -60px;
}
.right-hand::before {
  content: "";
  width: 100px;
  height: 100px;
  background-image: url(../img/right-hand.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 80px;
  right: -90px;
}

@media (min-width: 600px) {
  .left-hand::before {
    width: 120px;
    height: 200px;
    top: 80px;
    left: -100px;
  }
  .right-hand::before {
    width: 120px;
    height: 200px;
    top: 80px;
    right: -100px;
  }
}
@media (min-width: 992px) {
  .left-hand::before {
    width: 500px;
    top: 340px;
    height: 500px;
    left: -288px;
  }
  .right-hand::before {
    width: 500px;
    top: 340px;
    height: 500px;
    right: -448px;
  }
}
@media (min-width: 1780px) {
  .left-hand::before {
    width: 560px;
    height: 806px;
    left: -460px;
  }
  .right-hand::before {
    width: 560px;
    height: 806px;
    right: -475px;
  }
}
body {
  position: relative;
}

.back-btn {
  width: 0px;
  height: 0px;
  position: absolute;
  transition: all 0.2s linear 0s;
}
.back-btn.change-color {
  width: 30px;
  height: 30px;
  position: fixed;
  right: 4%;
  bottom: 100px;
  z-index: 100;
}
@media (min-width: 992px) {
  .back-btn.change-color {
    width: 40px;
    height: 40px;
    right: 10%;
    bottom: 30px;
  }
}
@media (min-width: 1650px) {
  .back-btn.change-color {
    right: calc(100vw - 1500px);
  }
}

.top-works-cat {
  font-size: 16px;
}

.mv-wrapper {
  overflow-x: hidden;
}

/***************
*トップページ「　お仕事のご紹介　」セクション
****************/
.service-section {
  margin-bottom: -1px;
}

h2 {
  font-family: "Zen Old Mincho", serif;
  padding: 140px 0 20px;
  line-height: 2;
  letter-spacing: 6px;
  font-size: clamp(1.6rem, 1.4rem + 0.625vw, 2rem) !important;
}
@media (min-width: 992px) {
  h2 {
    padding: 220px 0 20px;
  }
}
h2.c-heading__jp {
  padding: 0 0 20px;
}
@media (min-width: 992px) {
  h2.c-heading__jp {
    padding: 220px 0 20px;
  }
}

#works h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  padding: 80px 0 0px;
  line-height: 2;
  letter-spacing: 4px;
  font-size: clamp(1.6rem, 1.4rem + 0.625vw, 2.1rem) !important;
}
@media (min-width: 992px) {
  #works h2 {
    letter-spacing: 6px;
    font-size: 24px;
    padding: 160px 0 0px;
  }
}

#about h2 {
  padding: 60px 0 0px;
}
@media (min-width: 992px) {
  #about h2 {
    padding: 220px 0 40px;
  }
}

/***********************************************
p-top__service-section
************************************************/
.p-top__contents-cards {
  display: block;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .p-top__contents-cards {
    flex-wrap: wrap;
    width: auto;
    display: flex;
    justify-content: space-around;
  }
}

.p-top__card {
  width: 98%;
  margin: 10px auto 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  position: relative;
  flex-shrink: 0;
  border-top: 1px solid #000;
}
.p-top__card a {
  color: #000;
}
.p-top__card a:hover {
  background-color: #E8E5E2;
}
.p-top__card p {
  font-size: 14px;
  padding: 0px 0 40px;
  line-height: 2.14;
  letter-spacing: normal;
}
@media (min-width: 992px) {
  .p-top__card p {
    padding: 10px 0 10px;
    font-size: 17px;
  }
}
.p-top__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 7px;
  background-color: rgb(0, 0, 0);
}
.p-top__card h3 {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
}
.p-top__card h3 span {
  line-height: 1.67;
  letter-spacing: normal;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}
@media (min-width: 992px) {
  .p-top__card h3 {
    font-size: 2px;
  }
}
@media (min-width: 992px) {
  .p-top__card {
    height: 300px;
    width: 41%;
    margin: 20px auto;
  }
}

.p-top__card-title {
  text-align: center;
  display: inline-block;
  margin: 40px auto 20px;
}
.p-top__card-title h3 {
  font-size: 34px;
}
@media (min-width: 992px) {
  .p-top__card-title h3 {
    font-size: 43px;
  }
}
.p-top__card-title span {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  line-height: 1.67;
  letter-spacing: normal;
  display: block;
  font-size: 20px;
  padding: 15px 0 0;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 992px) {
  .p-top__card-title span {
    font-size: 24px;
  }
}
.p-top__card-title.--3 {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .p-top__card-title {
    margin: 40px auto 10px;
    font-size: 14px;
  }
  .p-top__card-title.--04 {
    margin: 40px auto 55px;
  }
}

/***************
*トップページ「　　」セクション
****************/
.works-slider-img {
  width: 90%;
  margin: 0 auto;
  aspect-ratio: 100/85.71;
}
.works-slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 992px) {
  .works-slider-img {
    width: 90%;
  }
}

.works-section {
  padding: 0px 0 0px;
}

.slick-container {
  margin: 30px calc(50% - 50vw) 0;
  width: 100vw;
}

.caption {
  padding: 20px 0;
  opacity: 1;
  width: 80%;
  margin: 16px auto;
  display: block;
  font-size: 14px;
  line-height: 2.14;
  letter-spacing: normal;
}
@media (min-width: 992px) {
  .caption {
    opacity: 0;
    margin: 10px auto 0;
  }
}
.caption a {
  color: #707070;
}

.slick-active .caption {
  opacity: 1;
}

.slide-arrow {
  background-image: url(../img/arrow-r.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  width: 50px;
  height: 50px;
}

.slick-slide {
  -webkit-transition: 0.7s ease-in-out;
  transition: 0.7s ease-in-out;
  transform: scale(0.9);
}

.slick-center {
  transform: scale(1);
}
.slick-center .caption {
  opacity: 1;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 40vw;
  left: 2vw;
  z-index: 1;
  background-image: url(../img/arrow-l.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  width: 30px;
  height: 30px;
  transition: all 0.2s linear 0s;
}
.slick-prev::before,
.slick-next::before {
  content: "";
}
.slick-prev:focus, .slick-prev:hover,
.slick-next:focus,
.slick-next:hover {
  opacity: 1;
}
@media (min-width: 950px) {
  .slick-prev,
  .slick-next {
    top: 15vw;
    left: 28vw;
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 992px) {
  .slick-prev,
  .slick-next {
    top: 15vw;
    left: 28vw;
  }
}

.slick-next {
  left: auto;
  right: 2vw;
}
@media (min-width: 950px) {
  .slick-next {
    left: auto;
    right: 28vw;
  }
}
@media (min-width: 992px) {
  .slick-next {
    left: auto;
    right: 28vw;
  }
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: red;
  outline: none;
  background-image: url(../img/arrow-l.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  width: 30px;
  height: 30px;
  opacity: 0.6;
}
@media (min-width: 992px) {
  .slick-prev:hover,
  .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    width: 40px;
    height: 40px;
  }
}

.slick-next:hover,
.slick-next:focus {
  background-image: url(../img/arrow-r.png);
}

.slick-next {
  background-image: url(../img/arrow-r.png);
}

/***************
*トップページ「　わたしのこと　」セクション
****************/
.text-center {
  text-align: center;
}

.author-name {
  display: flex;
  justify-content: center;
  padding: 50px 0;
}
.author-name span {
  font-family: "Zen Old Mincho", serif;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: left;
  font-size: 18px;
  letter-spacing: 0.2em;
  padding: 0px 10px 30px;
  margin-right: -40px;
}
@media (min-width: 992px) {
  .author-name span {
    margin-right: -55px;
    font-size: 25px;
  }
}
.author-name h3 {
  white-space: nowrap;
  font-family: "Zen Old Mincho", serif;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: left;
  font-size: 37px;
  letter-spacing: 0.6em;
  padding: 0px 10px 0 0px;
}
@media (min-width: 992px) {
  .author-name h3 {
    font-size: 55px;
    letter-spacing: 0.4em;
  }
}

.author-text {
  line-height: 2;
  padding: 10px 0 40px;
  line-height: 2.5;
  letter-spacing: -0.16px;
  font-weight: 400;
  font-size: clamp(1.6rem, 0.9rem + 0.625vw, 1.6rem) !important;
}
.author-text.--pd {
  padding-top: 20px;
}
@media (min-width: 992px) {
  .author-text.--pd {
    padding: 50px 0 100px;
  }
}
@media (min-width: 992px) {
  .author-text {
    margin: 0;
    padding: 50px 0 100px;
    line-height: 2;
  }
}

/***************
*トップページ「　　」セクション
****************/
.contact-box {
  padding: 44px 0 16px;
  text-align: center;
  line-height: 2.3;
  transition: all 0.2s linear 0s;
  display: block;
  margin: 0 auto;
  transition: all 0.2s linear 0s;
}
.contact-box p {
  margin: 20px 0;
  transition: all 0.2s linear 0s;
}
.contact-box a {
  color: #707070;
}
@media (min-width: 992px) {
  .contact-box {
    padding: 70px 0 30px;
  }
}
.contact-box:hover {
  transition: all 0.2s linear 0s;
}
.contact-box:hover .contact-mail-img {
  transition: all 0.2s linear 0s;
  background-image: url(../img/mail-hov.png);
}
.contact-box:hover a {
  opacity: 1;
}
.contact-box:hover p {
  opacity: 0.4;
}

.contact-mail-img {
  width: 40px;
  margin: 0 auto;
  background-image: url(../img/mail.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  width: 40px;
  height: 40px;
  transition: all 0.2s linear 0s;
}
@media (min-width: 992px) {
  .contact-mail-img {
    width: 50px;
    margin: 50px auto 0;
  }
}

.contact-mail-text {
  line-height: 2;
  letter-spacing: -0.16px;
  color: #000;
  font-size: 16px;
}

/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「 お問い合わせ　」セクション
****************/
/***********************************************
お問い合わせフォーム
/***contact*
************************************************/
.smf-item__controls {
  text-align: left;
}

.smf-form--business .smf-item {
  border: none;
}

.smf-item__col.smf-item__col--label {
  color: #707070;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 30px 0 0;
}

.smf-form--business .smf-item__col--label {
  border: none;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  min-height: 35px;
  width: 100%;
  background-color: #ffffff;
  background-color: #e4ebef;
}
@media (min-width: 992px) {
  .smf-form--business .smf-item__col--label {
    min-height: 71px;
    margin: 0 10px 10px 0;
    flex: 0 0 25em;
    max-width: 25em;
    background-color: #ffffff;
    border-top: none;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000000;
  }
}

.smf-checkbox-control__label {
  padding: 3px 0 0 0;
}

.smf-label {
  padding: 10px 0;
}

.smf-form--business .smf-item__col--controls {
  border-bottom: 1px solid #000;
}
@media (min-width: 992px) {
  .smf-form--business .smf-item__col--controls {
    border-right: 1px solid #000;
    margin: 10px;
  }
}

.smf-form .smf-text-control__control,
.smf-form .smf-textarea-control__control {
  border: none;
  box-shadow: none;
}

.smf-form--business .smf-item__col {
  padding: 5px 10px;
  text-align: center;
  align-items: center;
  word-break: break-all;
  line-height: 1.3;
}

.smf-placeholder {
  font-size: 15px;
  padding: 5px;
}
@media (min-width: 992px) {
  .smf-placeholder {
    font-size: 17px;
    padding: 10px;
  }
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  border: 1px solid rgb(255, 255, 255);
  padding: 10px;
  width: 100% !important;
  font-size: 15px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  word-break: break-all;
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
textarea:focus {
  border: 1px solid #2167b1;
  outline: none;
}
@media (min-width: 992px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  textarea {
    font-size: 17px;
  }
}

textarea {
  min-height: 200px;
  border: 1px solid rgb(208, 208, 208);
  border-radius: 5px;
}
@media (min-width: 992px) {
  textarea {
    border: 1px solid rgb(255, 255, 255);
  }
}

.is-required .smf-item__label {
  position: relative;
}
.is-required .smf-item__label::after {
  content: "※";
  color: #ff0000;
  position: relative;
}

.smf-action .smf-button-control__control {
  background-color: transparent !important;
  background-image: none;
  border-radius: 0px;
  color: transparent;
  cursor: pointer;
  display: inline-block;
  padding: 0;
  text-decoration: none;
  border: none;
  outline: 0;
}

.smf-action .smf-button-control__control {
  position: relative;
}

.smf-action .smf-button-control__control {
  padding-left: var(--_padding1);
  padding-right: var(--_padding1);
}

.smf-action .smf-button-control__control {
  position: relative;
}

.smf-action .smf-button-control__control {
  padding-left: var(--_padding1);
  padding-right: var(--_padding1);
}

/**
.c .confirm-button,
.smf-button-control {
    background-image: url(../img/confirm-btn.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    width: 300px;
    height: 55px;
    display: block;



    input,
    button {

        width: 100%;
        height: 100%;
        border: none;
        background: transparent;
        color: transparent;
        font-size: 20px;
        text-align: center;
        cursor: pointer;
    }

    transition: all 0.2s linear 0s;
    margin: 0 auto;

    &:hover {
        transform: scale(1.03);
        opacity: 0.7;
    }

    @include f.mq('pc') {
        margin: 0;
    }

}**/
.smf-button-control {
  justify-content: center;
  display: flex;
}

.smf-action .smf-button-control__control,
.reset-button {
  color: #707070;
  border-radius: 5px;
  background-image: linear-gradient(0deg, #e8e5e2 10%, #e8e5e2 40%, #e8e5e2 90%);
  box-shadow: 2px 2px 4px gray;
  display: inline-block;
  padding: 10px 20px;
  width: 300px;
  height: 55px;
  display: block;
  transition: all 0.2s linear 0s;
  font-size: 16px;
  margin: 30px auto;
}
@media (min-width: 992px) {
  .smf-action .smf-button-control__control,
  .reset-button {
    font-size: 20px;
    margin: 30px auto;
  }
}
.smf-action .smf-button-control__control:hover,
.reset-button:hover {
  transform: scale(1.03);
}
.smf-action .smf-button-control__control[data-action=back],
.reset-button[data-action=back] {
  background: #ffffff;
  box-shadow: none;
  color: transparent;
  width: 0px;
  height: 0px;
}

.reset-button {
  display: block;
  width: 116px;
  height: 30px;
  margin: 20px auto;
  padding: 7px 0 0 0;
  text-align: center;
  background-image: linear-gradient(0deg, rgb(239, 240, 241) 10%, rgb(196, 206, 212) 40%, #b1d6f5 90%);
}
@media (min-width: 992px) {
  .reset-button {
    width: 153px;
    height: 36px;
    margin: 0;
    margin: 11px auto;
    padding: 8px 0 0 0;
  }
}

.vert-center {
  align-items: center;
  display: block;
}
@media (min-width: 992px) {
  .vert-center {
    display: flex;
    justify-content: flex-start;
  }
}

.smf-item__label {
  color: #707070;
  font-size: 16px;
  line-height: 1.6;
}
@media (min-width: 992px) {
  .smf-item__label {
    font-size: 20px;
  }
}

.smf-progress-tracker {
  padding: 20px 10px 10px;
}

.smf-complete-content {
  text-align: center;
}
.smf-complete-content h3::before {
  content: none;
}

.smf-checkboxes-control {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .smf-checkboxes-control {
    padding-bottom: 10px;
  }
}

.h3-adjust {
  margin: 5px 0;
  padding: 10px 0;
}
.h3-adjust h3 {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.h3-adjust .wp-block-heading {
  margin: 0;
}
@media (min-width: 992px) {
  .h3-adjust {
    padding: 10px 0;
  }
}

.smf-item__controls {
  text-align: left;
  border: 1px solid #E8E5E2;
}

.smf-complete-content {
  text-align: center;
  font-size: 16px;
  line-height: 2.5;
  padding: 34px 0;
}
@media (min-width: 992px) {
  .smf-complete-content {
    padding: 57px 0;
  }
}

.smf-action .smf-button-control__control[data-action=back] {
  border-radius: 30px;
  padding: 18px 52px 18px 23px;
  line-height: 1px;
  text-align: center;
  border: 1px solid #707070;
  color: #707070 !important;
  word-break: keep-all;
}
@media (min-width: 992px) {
  .smf-action .smf-button-control__control[data-action=back] {
    padding: 18px 60px 18px 23px;
  }
}

/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「　フォントサイズ調整　」セクション
****************/
/*基準を1rem=10pxに設定*/
html {
  font-size: 62.5%;
}

/*最小値:1.1rem → 可変（0.9rem + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px））→ 最大値:1.6rem*/
.font-size-S {
  font-size: clamp(1.4rem, 1.2rem + 0.625vw, 1.5rem) !important;
}

/*最小値:1.2rem → 可変（1rem + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px））→ 最大値:1.7rem*/
.font-size-M {
  font-size: clamp(1.2rem, 1rem + 0.625vw, 1.7rem) !important;
}

/*最小値:1.6rem → 可変（2.2rem + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px））→ 最大値:2.9rem*/
.font-size-L {
  font-size: clamp(2.4rem, 2.2rem + 0.625vw, 2.9rem) !important;
}

.disp1350 {
  display: block;
}
@media (min-width: 1350px) {
  .disp1350 {
    display: none;
  }
}
