/* ----------------------------------------------------------------------
 変数宣言
---------------------------------------------------------------------- */
:root {
  --color-main: #9b937d;
  --color-light: #c5bda4;
  --color-sub: #eeeeee;
  --color-text: #515151;
  --color-white: #fff;
  --color-red: #ff0000;
  --color-btn: #cecbbf;
  --color-btn-dark: #969079;
  /* #261462 */
  /* #17B8DA */
}
/* ----------------------------------------------------------------------
 共通
---------------------------------------------------------------------- */
/* 全体カラー */
body{
  background: var(--color-main);
}

/* フォント設定 */
@font-face {
  font-family: "lineseed";
  src: url("../fonts/LINESeed_rg.woff2") format("woff2");
}
@font-face {
  font-family: "lineseed";
  src: url("../fonts/LINESeed_eb.woff2") format("woff2");
  font-weight: 700;
}

p,
li {
  font-family: "lineseed", "Hiragino Sans", "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo,
    sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
}

h1,
h2,
h3,
h4,
h5,
.btn-side-text {
  font-family: "lineseed", "Hiragino Sans", "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo,
    sans-serif;
  line-height: 1.8;
  font-weight: 700 !important;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  p,
  li {
    font-size: 0.9rem;
  }
}

/* フォントカラー設定 */
.txt-color {
  color: var(--color-main);
}

.caution {
  color: var(--color-red);
  font-size: 11px;
}

/* セクションタイトル設定 */
.section-title-text {
  margin-top: 5rem;
  font-size: 2.3rem;
  position: relative;
  font-weight: bolder;
}

.section-title {
  position: relative;
  margin-top: 2rem;
}

.section-title div:before {
  content: "";
  font-size: 2.5rem;
  position: absolute;
  top: 0;
  text-align: center;
  font-weight: 900;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 991px) {
  .section-title-text {
    font-size: 1.6rem;
    margin-top: 3.5rem;
  }
  .section-title div:before {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .section-title-text {
    font-size: 1.4rem;
    margin-top: 2.5rem;
  }
  .section-title div:before {
    font-size: 1.5rem;
  }
}

.pc_hid {
  display: none;
}

.sp_hid {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc_hid {
    display: block;
  }
  .sp_hid {
    display: none;
  }
}

/* ----------------------------------------------------------------------
 ヘッダー
---------------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background: #fff;
  height: 4.1875rem;
  -webkit-box-shadow: 0 0 0.625rem 0 rgb(0 0 0 / 20%);
  box-shadow: 0 0 0.625rem 0 rgb(0 0 0 / 20%);
  border-top: 7px solid var(--color-main);
}

.header-inner {
  width: 90rem;
  margin: 0 auto;
  padding-left: 2.3125rem;
}
.header-logo {
  width: auto;
  height: 70px;
  margin-top: 0;
  padding: 3px 5px 13px 5px;
}
@media screen and (max-width: 767px) {
  header {
    height: 3rem;
  }
  .header-inner {
    padding-left: 1rem;
  }
  .header-logo {
    height: 2.4375rem;
    margin-top: 0.25rem;
  }
}
/* ----------------------------------------------------------------------
 メインビジュアルセクション
---------------------------------------------------------------------- */
.main-visual-section {
  background: var(--color-main-white);
}
.main-visual:after {
  content: "";
  position: absolute;
  background: var(--color-main);
  background-image: url("https://www.transparenttextures.com/patterns/black-twill.png");
  transform: scale(-1, 1);
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  opacity: 0.5;
  z-index: 1;
}
.main-visual {
  background-image: url(../img/main-back.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-color: #464646;
  padding: 120px 0;
  z-index: -1;
  position: relative;
}

.main-visual .container {
  z-index: 2;
}

.main-visual-img {
  width: 100%;
  object-fit: cover;
}
.top-text p,
.top-text h1 {
  color: var(--color-white);
}
.top-text h1 {
  font-size: 2.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .top-text h1 {
    font-size: 2rem;
  }
}
.top-img img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .main-visual {
    padding: 80px 0;
  }
}

/* ----------------------------------------------------------------------
 CTAセクション
---------------------------------------------------------------------- */
.cta-section {
  background: repeating-linear-gradient(45deg,var(--color-sub),var(--color-sub) 5px,var(--color-white) 0,var(--color-white) 10px);
}

.cta-section .container {
  background: var(--color-white);
  text-align: center;
  margin-top: -8rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 8px;
  border: 1px solid var(--color-main);
}

@media screen and (min-width: 992px) {
  .cta-section .container {
    width: 900px;
  }
}

.btn-side-text {
  font-size: 2rem;
  font-weight: bolder;
  line-height: 1.5;
}

.btn.entry {
  color: var(--color-btn-text);
  background-color: var(--color-btn);
  border-bottom: 5px solid var(--color-btn-dark);
  box-shadow: 2px 2px 4px var(--color-shadow);
  max-width: 500px;
  border-radius: 8px;
}
.btn.entry:hover {
  color: var(--color-btn-text);
  background: var(--color-btn);
  margin-top: 3px;
  border-bottom: 2px solid var(--color-btn-dark);
}
.btn.entry img {
  display: block;
  width: 100%;
  height: auto;
  padding: 0 40px;
}
.btn.entry span.btn-text {
  position: relative;
  font-family: "lineseed", "Hiragino Sans", "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo,
    sans-serif;
  font-size: 2rem;
  font-weight: bold;
  padding-right: 34px;
}
.btn.entry span.btn-text::after {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  position: absolute;
  right: 0;
}
@media screen and (max-width: 767px) {
  .btn-side-text {
    font-size: 1rem;
  }
  .cta-section .container {
    width: 90%;
    margin-top: -6rem;
  }
}

.btn.anime {
  animation: anime 0.8s ease 0s infinite alternate;
  transform-origin: center;
}

/* ----------------------------------------------------------------------
 Aboutセクション
---------------------------------------------------------------------- */
/* セクション背景 */
.about-section {
  background: repeating-linear-gradient(45deg,var(--color-sub),var(--color-sub) 5px,var(--color-white) 0,var(--color-white) 10px);
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .about-section {
    padding-top: 5rem;
  }
}
/* セクションタイトル */
.about-section .section-title > div:before {
  content: "About";
  color: var(--color-main);
}

/* PCモックアップ */
.pc-img img {
  width: 100%;
}

/* ----------------------------------------------------------------------
 Recommendセクション
---------------------------------------------------------------------- */
/* セクション背景 */
.recommend-section {
  background: var(--color-white);
}
/* セクションタイトル */
.recommend-section .section-title > div:before {
  content: "Recommend";
  color: var(--color-main);
}

.recommend-text {
  margin: 0 auto;
}

/* リスト */
ul.recommend-list {
  width: 300;
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
}

ul.recommend-list li {
  line-height: 1.5;
  list-style-type: none !important;
}

ul.recommend-list li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  position: absolute;
  left: 0;
  color: var(--color-sub);
}

.recommend-img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .recommend-img img {
    width: 90%;
  }
}

/* ----------------------------------------------------------------------
 functionセクション
---------------------------------------------------------------------- */
/* セクション背景 */
.function-section {
  background: repeating-linear-gradient(45deg,var(--color-sub),var(--color-sub) 5px,var(--color-white) 0,var(--color-white) 10px);
}
/* セクションタイトル */
.function-section .section-title > div:before {
  content: "Function";
  color: var(--color-text);
}
.function-block {
  padding-top: 30px;
}
.function-block-inner {
  background: var(--color-white);
  border-radius: 8px;
  border: solid 1px var(--color-main);
}
.function-block i {
  font-size: 6em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .cta-area-inner {
    width: 90%;
  }
  .function-block i {
    font-size: 4em;
  }
  .function-block-inner h4 {
    font-size: 1rem;
  }
  .function-block {
    padding: 15px 7.5px 0 15px;
  }
  .function-block:nth-child(even){
    padding: 15px 15px 0 7.5px;
  }
}

@keyframes anime {
  from {
    transform: scale(0.9, 0.9);
  }
  to {
    transform: scale(1, 1);
  }
}
.cta-area {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .cta-area {
    margin-top: 3rem;
  }
}

.cta-area-inner {
  background: var(--color-white);
  border-radius: 8px;
  border: solid 1px var(--color-main);
}

/* ----------------------------------------------------------------------
 フッター
---------------------------------------------------------------------- */
footer{
  background: var(--color-light);
}
.footer-logo {
  max-width: 250px;
}
@media screen and (max-width: 767px) {
  .footer-logo {
    max-width: 60%;
  }
}
.copyright {
  color: white;
  font-size: 0.8rem;
  line-height: 1.5;
}
