@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: #ffffff;
  color: #000;
  font-weight: 500;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  overflow-x: hidden;
}

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: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  color: #000;
  background-color: rgba(255, 255, 255, 0.8);
}

.l-header__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
@media (min-width: 992px) {
  .l-header__items {
    height: auto;
    height: 80px;
    padding-left: 10px;
    max-width: 1200px;
    margin: 0 auto;
  }
}

/***********************************************
header              左               ロゴ*****/
.l-header__left {
  margin-left: 10px;
  margin-right: auto;
}

a.l-header__logo {
  transition: all 0.2s linear 0s;
  display: block;
  width: 150px;
  margin-left: 20px;
}
a.l-header__logo:hover {
  opacity: 0.7;
}
@media (min-width: 992px) {
  a.l-header__logo {
    width: 200px;
    margin-left: 30px;
  }
}

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

.l-header__nav-items li.current a,
.l-header__nav-items li a:hover {
  opacity: 0.7;
}

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

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

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

.l-header__insta-icon {
  display: block;
  width: 34px;
  padding: 0;
  margin: 23px 14px 0 0;
}
.l-header__insta-icon.--sp {
  margin-top: 0px;
  position: absolute;
  top: 17px;
  right: 70px;
}
@media (min-width: 992px) {
  .l-header__insta-icon.--sp {
    display: none;
  }
}

.l-header__nav-items ul > li {
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media (min-width: 992px) {
  .l-header__nav-items ul > li {
    padding: 10px 18px;
    font-size: 18px;
  }
}
.l-header__nav-items ul > li a {
  transition: all 0.2s linear 0s;
  color: #333;
}
.l-header__nav-items ul > li a:hover {
  opacity: 0.7;
}

/*==================================================
　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: #837e2c;
  /*アニメーションの指定*/
  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: #837e2c;
}
@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 {
  background-color: #eeeced;
  padding: 30px 0 30px;
  color: #484748;
}
.l-footer a {
  font-family: "Noto Sans JP", sans-serif;
  transition: all 0.2s linear 0s;
  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%;
    z-index: 900;
    font-size: 16px;
  }
}

.l-footer__nav-items {
  width: 100%;
}
.l-footer__nav-items ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 10px auto 0;
  align-items: center;
}
@media (min-width: 992px) {
  .l-footer__nav-items ul {
    margin: 0 auto 0px;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
.l-footer__nav-items ul > li {
  display: block;
  padding: 0px 20px 0 0;
}
@media (min-width: 992px) {
  .l-footer__nav-items ul > li {
    padding: 0px 20px 0 0;
  }
}
.l-footer__nav-items ul > li a {
  color: #484748;
}
.l-footer__nav-items .window {
  position: relative;
}
.l-footer__nav-items .window::after {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(../img/link-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (min-width: 992px) {
  .l-footer__nav-items {
    width: 75%;
    margin: 30px auto;
  }
}

.l-footer__copyright {
  font-size: 10px;
  color: #484748;
  display: block;
  font-weight: 400;
  padding: 10px 0 90px;
  background-color: #eeeced;
  text-align: center;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.6px;
}
@media (min-width: 768px) {
  .l-footer__copyright {
    font-size: 15px;
    padding: 10px 70px 10px 0;
  }
}

.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;
  color: #fff !important;
  display: block;
  width: 50%;
  height: 100%;
  background-color: #837e2c;
  padding: 27px 0px;
  font-size: 14px;
}
a.l-footer-cv__btn::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  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: #837e2c;
    color: #333;
    font-size: 16px;
    padding: 25px;
  }
  a.l-footer-cv__btn::after {
    border-color: #837e2c;
    right: 20px;
  }
  a.l-footer-cv__btn.--pc {
    padding: 25px;
    background-color: #837e2c;
    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;
  padding-right: 20px !important;
  margin: 0 auto;
}
.l-footer__logo:hover {
  opacity: 0.7;
}
@media (min-width: 992px) {
  .l-footer__logo {
    width: 300px;
    padding-right: 0px !important;
  }
}

.l-footer__info {
  margin: 16px 0 70px;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.65;
  letter-spacing: normal;
  text-align: center;
  color: #333;
}
@media (min-width: 992px) {
  .l-footer__info {
    margin: 50px 0 30px;
    font-size: 16px;
  }
}

.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 {
  min-width: 330px;
  width: 85%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .c-inner__center {
    width: 80%;
  }
}
.c-inner__center.--mv {
  width: 100%;
}
@media (min-width: 992px) {
  .c-inner__center.--mv {
    width: 80%;
  }
}

.c-inner__left {
  width: 85%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
@media (min-width: 992px) {
  .c-inner__left {
    width: 80%;
  }
}
.c-inner__left.--worry {
  max-width: 700px;
}
.c-inner__left.--strong {
  max-width: 750px;
}
.c-inner__left.--green {
  background-color: #f9f7cc;
  max-width: 850px;
  padding: 20px 0 20px;
}
@media (min-width: 992px) {
  .c-inner__left.--green {
    padding: 20px 0 50px;
  }
}

.c-inner__flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.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.--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;
  }
}
/* ------------------------------------
ドキドキするボタン
  ------------------------------------*/
.c-button__doki {
  animation-name: dokidoki;
  animation-delay: 0s;
  animation-duration: 3s;
  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;
    /* 全透過になるようにして、徐々に消えるような変化を付ける */
  }
}
/***************
*トップページ「　　」セクション
****************/
.s1mv-section {
  background-image: url(../img/mv-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .s1mv-section {
    margin-top: 50px;
  }
}

.mv-bottom-text {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  padding: 10px 0;
  border-bottom: 5px solid #030000;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .mv-bottom-text {
    line-height: 1.75;
    font-size: 30px;
    padding: 30px 0;
  }
}
.mv-bottom-text::before {
  content: "";
  width: 100px;
  height: 5px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  position: absolute;
  background-color: #bdb76c;
}

/***************
*トップページ「　cta　」セクション
****************/
.cta__flex {
  display: flex;
  align-items: center;
  display: block;
}
@media (min-width: 992px) {
  .cta__flex {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
  }
}
.cta__flex.--worry {
  align-items: center;
  justify-content: space-around;
}

.cta-bg {
  background-image: url(../img/cta-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  padding: 1px 0 20px;
}

.cta-top-text {
  background: #d2cc84;
  padding: 15px;
  border-radius: 15px;
  margin: 20px auto;
  box-shadow: 5px 3px 0px #38393a;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 2.4px;
}
.cta-top-text em {
  color: #e71d19;
}
@media (min-width: 992px) {
  .cta-top-text {
    font-size: 24px;
    margin: 50px auto 200px 0;
  }
}

.cta-white-flame {
  padding: 20px;
  margin: 20px 5px;
  background-color: #fff;
  border: 1px solid #38393a;
  line-height: 1.75;
  font-size: min(3vw, 16px);
}
.cta-white-flame h3 {
  text-align: center;
  font-size: 110%;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}
.cta-white-flame h3::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #e61c18;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}
.cta-white-flame h3.--2::before {
  background-color: #a3cb2f;
}
@media (min-width: 992px) {
  .cta-white-flame h3.--2 + p {
    padding: 0px 30px;
  }
}
.cta-white-flame p {
  font-weight: 500;
}
@media (min-width: 992px) {
  .cta-white-flame {
    width: 47%;
  }
}

.cta-btn {
  width: 100%;
  display: block;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .cta-btn {
    width: 80%;
  }
}

.cta-btn-flame {
  border: 1px solid #837e2c;
  border-radius: 15px;
  padding: 30px;
  width: 80%;
  max-width: 600px;
  display: block;
  margin: 50px auto;
  font-size: 18px;
  letter-spacing: 1.95px;
  text-align: center;
  line-height: 1.5;
}
.cta-btn-flame span {
  width: auto;
  display: block;
  padding: 0px 0 20px;
}
@media (min-width: 992px) {
  .cta-btn-flame {
    font-size: 22px;
    border-radius: 30px;
  }
  .cta-btn-flame span {
    padding: 0px 0 20px;
  }
}

/***************
*トップページ「　worry-section　」セクション
****************/
.worry-section {
  background-color: #e1e3e3;
  padding: 1px 0 20px;
}
@media (min-width: 992px) {
  .worry-section {
    padding: 1px 0 40px;
  }
}

.worry-title {
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.71;
  letter-spacing: 4.8px;
  text-align: center;
  color: #777677;
  margin: 40px auto 40px;
}
@media (min-width: 992px) {
  .worry-title {
    font-size: 24px;
  }
}

.worry-item {
  background-color: #fff;
  padding: 30px 15px;
  border-radius: 0 30px 0 30px;
  line-height: 1.75;
  margin: 20px 0;
  letter-spacing: 3.6px;
  font-size: 15px;
}
.worry-item.--re {
  border-radius: 30px 0 30px 0;
}
.worry-item span {
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .worry-item {
    width: 45%;
    font-size: 19px;
    min-height: 130px;
  }
  .worry-item.--p {
    padding: 45px 0;
  }
}

/***************
*トップページ「　systemの強み　」セクション
****************/
.sistem-item {
  border: 1px solid #C2BC6D;
  padding: 30px 25px;
  border-radius: 25px;
  display: block;
  margin: 30px 0 30px;
}
@media (min-width: 992px) {
  .sistem-item {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
  }
  .sistem-item.--l {
    flex-direction: row;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .sistem-item.--l .right {
    margin-right: 30px;
    margin-left: 0px;
  }
}
.sistem-item .left h3 {
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 3.6px;
  text-align: left;
  color: #C2BC6D;
  font-size: 18px;
  padding: 20px 0 0;
}
@media (min-width: 992px) {
  .sistem-item .left h3 {
    font-size: 19px;
    padding: 0;
  }
}
.sistem-item .left p {
  margin: 20px 0 0;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 2.8px;
  color: #444444;
}
@media (min-width: 992px) {
  .sistem-item .left {
    width: 55%;
  }
}
.sistem-item .right {
  height: 150px;
  display: flex;
  justify-content: center;
}
.sistem-item .right img {
  width: auto;
  height: 100%;
}
@media (min-width: 992px) {
  .sistem-item .right {
    height: auto;
    max-height: 200px;
    width: 40%;
    margin-left: 30px;
  }
}

.system-title {
  display: block;
  margin: 40px auto;
}
@media (min-width: 992px) {
  .system-title {
    margin: 80px auto;
    width: 80%;
    max-width: 530px;
  }
}

/***************
*トップページ「　　」セクション
****************/
.trend-section {
  background-color: #E2E4E4;
  padding: 1px 0 1px;
}

.trend-title {
  font-size: 28px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -2px;
  text-align: center;
  color: #191919;
  position: relative;
  margin: 0 auto 15px;
}
@media (min-width: 992px) {
  .trend-title {
    font-size: 30px;
  }
}

.trend-title-text {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1px;
  text-align: center;
  color: #515050;
}
@media (min-width: 992px) {
  .trend-title-text {
    font-size: 15px;
  }
}

.trend {
  padding: 10px 0;
  display: block;
  margin: 30px 0 30px;
}
@media (min-width: 992px) {
  .trend {
    margin: 30px 0 30px;
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
  }
  .trend.--l {
    flex-direction: row;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .trend.--l .right {
    margin-right: 30px;
    margin-left: 0px;
  }
}
.trend .left h3 {
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 3.6px;
  text-align: left;
  color: #C2BC6D;
  font-size: 18px;
  padding: 20px 0 0;
}
@media (min-width: 992px) {
  .trend .left h3 {
    font-size: 19px;
    padding: 0;
  }
}
.trend .left p {
  margin: 20px 0 0;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 2.8px;
  color: #444444;
}
@media (min-width: 992px) {
  .trend .left {
    width: 55%;
  }
}
.trend .right {
  width: 100%;
}
@media (min-width: 992px) {
  .trend .right {
    height: auto;
    max-height: 200px;
    width: 40%;
    margin-left: 30px;
  }
}

/***************
*トップページ「　選ばれる3つのPOINT　」セクション
****************/
.point-head-title {
  font-size: 22px;
  line-height: 1.75;
  color: #fff;
  font-weight: 400;
}
@media (min-width: 992px) {
  .point-head-title {
    font-size: 36px;
  }
}
.point-head-title span {
  display: block;
  font-weight: 600;
  font-size: 120%;
}

.point-title-bg {
  background-color: #9d9d9e;
  padding: 40px 0 20px;
  margin-bottom: 70px;
  position: relative;
}
.point-title-bg::after {
  content: "";
  width: 100%;
  height: 40px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #9d9d9e;
  position: absolute;
  bottom: -39px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 992px) {
  .point-title-bg::after {
    height: 100px;
    bottom: -99px;
  }
}
@media (min-width: 992px) {
  .point-title-bg {
    padding: 50px 0 0;
    margin-bottom: 130px;
  }
}

.point-icon {
  width: 100px;
  margin: 40px auto 0px;
  display: block;
}
@media (min-width: 992px) {
  .point-icon {
    margin: 80px auto 50px;
    width: 180px;
  }
}

.point-sub-title {
  width: 300px;
  margin: 30px auto 15px;
  display: block;
}
@media (min-width: 992px) {
  .point-sub-title {
    width: 500px;
    margin: 40px auto;
  }
}

.point-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.35;
  letter-spacing: 4px;
  color: #838383;
}
@media (min-width: 992px) {
  .point-title {
    font-size: 40px;
    line-height: 1.35;
  }
}

.point-title .text-style-1 {
  display: block;
  font-size: 24px;
  letter-spacing: 3px;
}
@media (min-width: 992px) {
  .point-title .text-style-1 {
    font-size: 50px;
    letter-spacing: 12px;
  }
}

.point2-inner {
  display: block;
  margin: 20px calc(50% - 50vw);
}
@media (min-width: 992px) {
  .point2-inner {
    margin: 20px auto;
    width: 90%;
  }
}

.s2__inner {
  width: 100%;
  display: block;
  margin: 20px auto;
}
@media (min-width: 992px) {
  .s2__inner {
    width: 70%;
  }
}

/***************
*トップページ「  VOICE　」セクション
****************/
.model-item {
  margin: 20px auto;
}
@media (min-width: 992px) {
  .model-item {
    width: 45%;
  }
}

.model-title-en {
  width: 80%;
  display: block;
  margin: 10px auto;
  max-width: 230px;
}

.model-title-jp {
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.67;
  letter-spacing: 3.6px;
}

.voice-bg {
  padding-bottom: 50px;
  background-image: url(../img/voice-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
}

.voice-owner {
  width: 70%;
  max-width: 400px;
  margin: 0 auto;
  padding: 20px 0;
}
@media (min-width: 992px) {
  .voice-owner {
    max-width: 300px;
  }
}

.voice-intro {
  font-size: 14px;
  line-height: 1.75;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: 2px;
  margin: 20px 0 30px;
}
@media (min-width: 992px) {
  .voice-intro {
    font-size: 16px;
    margin: 30px 0 30px;
    letter-spacing: 3.6px;
  }
}

.voice-q,
.voice-a {
  background-color: rgba(226, 172, 20, 0.18);
  line-height: 1.4;
  padding: 10px;
  margin-left: 30px;
  margin-bottom: 20px;
  position: relative;
  font-size: 12px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 1.9px;
}
.voice-q::before,
.voice-a::before {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../img/icon-q.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: -30px;
}
@media (min-width: 992px) {
  .voice-q::before,
  .voice-a::before {
    width: 40px;
    height: 40px;
    left: -50px;
  }
}
@media (min-width: 992px) {
  .voice-q,
  .voice-a {
    margin-left: 50px;
    font-size: 13px;
    letter-spacing: 2.9px;
  }
}

.voice-a {
  background-color: rgba(194, 188, 109, 0.18);
}
.voice-a::before {
  content: "";
  background-image: url(../img/icon-a.png);
}

/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「magin　　」セクション
****************/
.mgt10 {
  margin-top: 10px;
}
@media (min-width: 992px) {
  .mgt10 {
    margin-top: 30px;
  }
}

.pdb10 {
  padding-bottom: 10px;
}

.mgt30 {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .mgt30 {
    margin-top: 60px;
  }
}

.mgb30 {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .mgb30 {
    margin-bottom: 60px;
  }
}
