@charset "UTF-8";
/* --------------------------

共通

-------------------------- */
html {
  font-size: 14px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  color: var(--main-color);
  letter-spacing: .08em;
}

body {
  line-height: 1.6;
  background-color: var(--bg-dark_color);
}

:root {
  --main-color: #F3F3F3;
  --gold-color: #B69D40;
  --bg-dark_color: #1C1F32;
  --bg-light_color: #23476C;
  --font-en: 'Pinyon Script', cursive;
}

p {
  line-height: 1.8;
}

/* 表示・非表示 */
.pc {
  display: none;
}

.sp {
  display: block;
}

/* フォントサイズ */
.font_size_small {
  font-size: 0.8rem;
}

/* コンテイナー */
.container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.container_small {
  max-width: 800px;
}

/* ビデオ */
.video {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --------------------------

コンポーネントパーツ

-------------------------- */
.btn {
  position: relative;
  text-align: center;
  display: block;
  background-color: var(--gold-color);
  color: var(--main-color);
  width: 80%;
  max-width: 400px;
  line-height: 60px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn:hover {
  background-color: var(--bg-dark_color);
  color: var(--gold-color);
}

.btn:hover::after {
  border-color: var(--gold-color);
}

.btn::after {
  content: "";
  position: absolute;
  border-top: solid 1px var(--main-color);
  border-right: solid 1px var(--main-color);
  width: .5rem;
  height: .5rem;
  top: 50%;
  right: 1.5rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

/* --------------------------

ヘッダー(header)

-------------------------- */
.header {
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 100vw;
  z-index: 999;
}

.header .header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .header_inner .logo {
  font-family: var(--font-en);
  font-size: 2rem;
}

.header .header_inner nav {
  display: none;
}

.header .header_inner nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .header_inner nav ul li {
  margin: 0 1rem;
}

.header .header_inner nav ul li .menu {
  position: relative;
  padding-bottom: 5px;
}

.header .header_inner nav ul li .menu::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: var(--main-color);
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
}

.header .header_inner nav ul li .menu:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.header .header_inner nav ul li .btn {
  width: 100%;
  min-width: auto;
  margin-top: 0;
  padding-left: 3rem;
  padding-right: 3rem;
}

/* --------------------------

セクション(section)

-------------------------- */
.section {
  padding: 60px 0;
}

.section .section_title h2 {
  font-size: 1.4rem;
}

.section .section_title p {
  font-family: var(--font-en);
  font-size: 4rem;
  color: rgba(167, 176, 198, 0.2);
  margin-top: -3rem;
}

.section_bg {
  background-color: var(--bg-light_color);
}

.two_column {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.two_column div:first-child {
  margin-bottom: 2rem;
}

/* --------------------------

cta

-------------------------- */
.cta {
  text-align: center;
}

.cta .cta_inner {
  background-color: var(--main-color);
  color: var(--bg-dark_color);
}

.cta .cta_inner ul li:nth-child(1) {
  padding: 30px 0 15px;
}

.cta .cta_inner ul li:nth-child(2) {
  padding: 15px 0 30px;
}

.cta .cta_inner ul li h2 {
  position: relative;
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.cta .cta_inner ul li h2::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background-color: var(--bg-dark_color);
  bottom: -1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.cta .cta_inner ul li .phone {
  font-size: 2rem;
  font-weight: bold;
}

.cta .cta_inner ul li .btn {
  margin-top: 1rem;
}

.cta .cta_inner .cta_download {
  padding-bottom: 50px;
}

/* --------------------------

フッター(footer)

-------------------------- */
.footer {
  background-color: #080B1C;
  text-align: center;
  padding: 30px 0 10px;
}

.footer .logo {
  font-family: var(--font-en);
  font-size: 2rem;
}

.footer nav {
  font-size: .8rem;
  margin-top: 1rem;
}

.footer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer nav ul li {
  margin: 0 5px;
}

.footer nav ul li a {
  text-decoration: underline;
}

.footer nav ul li a:hover {
  text-decoration: none;
}

.footer p {
  font-size: .8rem;
  margin-top: 1rem;
}
/*# sourceMappingURL=common.css.map */