@charset "UTF-8";

/*  ====================================================
  基本設定
===================================================== */
:root {
  
  --c-red: #BE0161;
  
  --c-pitchblack: #000;
  --c-linkblack: #111;
  --c-black: #333;
  --c-ivolytblack: #555;
  --c-gray: #999;
  --c-white: #fff;
  
  --c-bgnone: transparent;
  
  --c-border: #EFEFF0;
  
  --c-tdbg: #F9F9F9;
  
  --c-graybg: #F2F2F2;
  --c-footerbg: #E9E9E9;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  background-color: var(--c-white);
  color: var(--c-ivolytblack);
}

a {
  text-decoration: none;
  color: var(--c-linkblack);
}
a:hover {
  opacity: 0.7;
}


li {
  list-style: none;
}

h1,h2,h3,h4 {
  color: var(--c-linkblack);
}


.is-sp {
  display: none !important;
}


@media screen and (max-width: 834px) {
  .is-sp {
    display: block!important;
  }
  br.is-sp {
    display: inline!important;
  }

  .is-pc {
    display: none!important;
  }

} 



/*  ====================================================
  汎用
===================================================== */

/* ボタン */
.btn {
  padding: 0 25px;
  border-radius: 23px;
  display: block;
  text-align: center;
  line-height: 46px;
  background: var(--c-red);
}

.btn:hover {
  opacity: 0.7;
  cursor: pointer;
}


.content-wrap {
  max-width: 1130px;
  margin: 0 auto;
  padding: 30px 15px;
}

.flex-wrap {
  display: flex;
  justify-content: space-between;
}


/* カード汎用 */
.card-wrap {
  padding: 40px;
  background-color: var(--c-graybg);
  border-radius: 10px;
}

.card-wrap-flex {
  display: flex;
  justify-content: space-between;
}


/* カード：左枠 */
.card-wrap-left {
  width: calc(100% - 510px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.card-lead {
  font-size: 16px;
  line-height: 1.5;
}


/* カード：右枠 */
.card-wrap-right {
  width: 470px;
}

.card-ttl {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--c-red);
}

.card-wrap-left .card-ttl-sub {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
  color: var(--c-black);
  font-feature-settings: "palt";
}



@media screen and (max-width: 767px) {  
.content-wrap {
  padding: 15px 15px;
}

.flex-wrap {
  display: block;
}


/* カード汎用 */
.card-wrap {
  padding: 20px 15px 15px;
}

.card-wrap-flex {
  display: block;
}


/* カード：左枠 */
.card-wrap-left {
  width: 100%;
}

.card-lead {
  padding-bottom: 30px;
  font-size: 14px;
  line-height: 1.7;
}

  
/* カード：右枠 */
.card-wrap-right {
  width: 100%;
}

}


@media screen and (max-width: 480px) {  
.card-ttl {
  margin-bottom: 5px;
  font-size: 14px;
}

.card-wrap-left .card-ttl-sub {
  margin-bottom: 20px;
  font-size: 24px;
}

.card-lead {
  padding-bottom: 30px;
}

}



/*  ====================================================
  ヘッダー
===================================================== */
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: var(--c-linkblack);
}
.header-inner {
  width: 100%;
  max-width: 1130px;
  height: 80px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  transition: 0.3s ease-out;
}


/* ロゴ */
.header-logo {
  width: 180px;
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-out;
}
.header-logo a {
  width: 100%;
  display: block;
}


/* Gナビ */
.header-nav {
  width: calc(100% - 200px);
}

.header-nav ul {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.header-nav li {
  display: flex;
  align-items: center;
}
.header-nav li a {
  padding: 0 15px;
  line-height: 80px;
  display: block;
  color: var(--c-white);
  font-size: 16px;
  font-weight: bold;
  text-shadow: 0 0 3px rgba(0,0,0,0.3);
}


/* お問い合わせ */
.header-nav li a.header-contact {
  margin-left: 15px;
  padding: 0 30px 0 15px;
  line-height: 40px;
  background: var(--c-red) url(../images/common/i_arrow_wh.png) no-repeat right 15px center;
  background-size: 7px auto;
  transition: all 0.3s ease-out;
}


/* スクロール時 */
header.header-scroll {
  background: rgba(0,0,0,0.785);
  transition: all 0.3s ease-out;
}

header.header-scroll-end {
  top: -100px;
  transition: all 0.3s ease-out;
}

/* PCで非表示 */
.nav-btn {
  display: none;
}
.new-sp-openbg {
  opacity: 0;
  /*transition: 0.3s;*/
}

@media screen and (max-width: 1180px) {
/* ロゴ */
.header-logo {
  width: 120px;
  transition: all 0.3s ease-out;
}


/* Gナビ */
.header-nav {
  width: calc(100% - 140px);
}

.header-nav li a {
  padding: 0 10px;
  font-size: 14px;
  transition: all 0.3s ease-out;
}


}


@media screen and (max-width: 940px) {
header {
  padding: 0 0 0 15px;
}

.header-outer {
  position: relative;
}

.header-inner {
  display: block;
  height: 72px;
  padding: 0 5px;
}



/* PCで非表示 */
.nav-btn {
  display: block;
}


/* Gナビ */
.header-nav {
  display: none;
  width: 100%;
  transition: all 0.3s ease-out;
}
.header-nav.is-open {
  display: block;
  transition: all 0.3s ease-out;
}


.header-nav ul {
  width: 100%;
  display: block;
  transition: all 0.3s ease-out;
}
.header-nav li {
  display: flex;
  align-items: center;
  transition: all 0.3s ease-out;
}
.header-nav li a {
  width: 100%;
  display: inline-block;
  line-height: 60px;
  text-shadow: none;
  text-align: center;
  font-size: 18px;
}


/* お問い合わせ */
.header-nav li a.header-contact {
  margin: 30px 15px 0;
  color: var(--c-white);
}


/* 展開時の背景 */
.new-sp-openbg.is-open {
  display: block;
  background: rgba(0,0,0,0.8);
  position: fixed;
  z-index: 900;
  width: 100%;
  height: 100%;
  opacity: 1;
  /*transition: 0.3s;*/
}
  
  
  
/* ボタン */
.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    background: var(--c-white);
    position: absolute;
    top: 12px;
    right: 12px;
    text-align: center;
    z-index: 1200;
}
.nav-btn .nav-btn-menu {
    position: relative;
    width: 24px;
    height: 16px;
    display: block;
    margin: 0 auto
}
.nav-btn .nav-btn-menu > span {
    position: absolute;
    display: block;
    width: 100%;
    right: 0;
    height: 2px;
    background: var(--c-red);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s
}
.nav-btn .nav-btn-menu>span:nth-child(1) {
    top: 17px
}
.nav-btn .nav-btn-menu>span:nth-child(2) {
    top: 24px
}
.nav-btn .nav-btn-menu>span:nth-child(3) {
    top: 31px
}
.nav-btn .nav-btn-txt {
    position: relative;
    display: block
}
.nav-btn .nav-btn-txt:before {
    display: none;
}

.nav-btn.is-open {
    z-index: 1200;
}
.nav-btn.is-open .nav-btn-menu>span:nth-child(1) {
    top: 24px;
    transform: rotate(45deg)
}
.nav-btn.is-open .nav-btn-menu>span:nth-child(2) {
    right: -200%;
}
.nav-btn.is-open .nav-btn-menu>span:nth-child(3) {
    top: 24px;
    transform: rotate(-45deg)
}


}


/*  ====================================================
  コンバージョン
===================================================== */
.content-wrap-conversion {
  margin: 30px 0 0;
  background: url(../images/common/conversion_bg.jpg) no-repeat center center;
  background-size: cover;
}

.content-wrap-conversion .content-wrap {
  padding: 60px 15px;
}


.three-wrap {
  display: flex;
  justify-content: space-between;
}

.three-item {
  padding: 50px 15px;
  width: calc((100% - 60px) / 3);
  background: rgba(255,255,255,0.75) url(../images/common/i_arrow_bk.png) no-repeat right 15px center;
  background-size: 7px auto;
  border-radius: 10px;
  text-shadow: 0 0 3px rgba(255,255,255,0.3);
  box-shadow: 0 0 3px rgba(0,0,0,0.1);
  display: block;
}


.content-wrap-conversion .three-ttl {
  max-width: 230px;
  margin: 0 auto 20px auto;
  font-size: 14px;
  font-weight: bold;
  line-height: 30px;
  color: var(--c-red);
  text-align: center;
  background: var(--c-white);
  border-radius: 15px;
}

.content-wrap-conversion .three-ttl-sub {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.content-wrap-conversion .three-txt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: var(--c-ivolytblack);
}


@media screen and (min-width: 1025px) {
.content-wrap-conversion {
  background-attachment: fixed;
}
}


@media screen and (max-width: 834px) {
.content-wrap-conversion {
  margin: 15px 0 0;
}
  
.content-wrap-conversion .content-wrap {
  padding: 30px 15px;
}

.three-wrap {
  display: block;
}

.three-item {
  padding: 20px;
  width: 100%;
}
.three-item + .three-item {
  margin-top: 30px;
}

.three-ttl-sub {
  margin-bottom: 30px;
}

.three-img {
  margin-bottom: 30px;
}

.three-txt {
  font-size: 14px;
}

}


/*  ====================================================
  フッター
===================================================== */
footer {
  background: var(--c-linkblack);
}

.footer-inner {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding: 60px 0 15px;
}


/* フッターリンク */
.footer-nav {
  display: flex;
  justify-content: space-between;
}

.footer-list {
  padding: 0 15px
}

.footer-nav li {
  margin-bottom: 3px;
}
.footer-nav li a {
  line-height: 24px;
  display: block;
  font-size: 12px;
  color: var(--c-white);
  font-feature-settings: "palt";
  opacity: 0.8;
}
.footer-nav li a:hover {
  text-decoration: underline;
  opacity: 0.5;
}



.footer-nav li.footer-category {
  margin-bottom: 10px;
}
.footer-nav li.footer-category a {
  font-size: 16px;
  font-weight: bold;
  color: var(--c-white);
  opacity: 1;
}
.footer-nav li.footer-category a:hover {
  opacity: 0.5;
}

.footer-nav li.footer-logo {
  margin-bottom: 20px;
}
.footer-nav li.footer-logo a {
  width: 100%;
  max-width: 180px;
  opacity: 1;
}
.footer-nav li.footer-logo a:hover {
  opacity: 0.5;
}

.footer-pmark {
  margin-top: 20px;
}

.footer-pmark a {
  max-width: 85px;
  margin-left: auto;
  padding: 10px;
  display: block;
  border-radius: 5px;
  background: var(--c-white);
  opacity: 1 !important;
}
.footer-pmark a:hover {
  opacity: 0.7 !important;
}

.footer-pmark img {
  max-width: 85px;
}

copy {
  padding: 10px 15px 0;
  display: block;
  font-size: 12px;
  text-align: right;
  color: var(--c-white);
  opacity: 0.8;
}


@media screen and (max-width: 834px) {
.footer-inner {
  padding: 30px 15px 15px;
}

/* フッターリンク */
.footer-nav {
  display: block;
}

.footer-list {
  display: block;
  margin-bottom: 40px;
  padding: 0;
}

.footer-nav li a {
  width: 100%;
  padding: 0;
  font-size: 14px;
}

.footer-nav li.footer-logo {
  margin-bottom: 15px;
}
.footer-nav li.footer-logo a {
  padding: 10px 20px 10px 0;
}

copy {
  padding: 0;
  font-size: 10px;
  text-align: left;
}

}




/*  ================================================================================
  汎用
================================================================================= */

.c-red {
  color: var(--c-red);
}

.c-blue {
  color: var(--c-blue);
}

.c-green {
  color: var(--c-green);
}

.c-orange {
  color: var(--c-orange);
}

.c-light-blue {
  color: #1173D1;
}

.c-gray {
  color: var(--c-gray);
}

.c-white {
  color: var(--c-white);
}

.fs-xs {
  font-size: 10px;
}

.fs-s {
  font-size: 12px;
}

.fs-m {
  font-size: 18px;
}

.fs-l {
  font-size: 24px;
}

.fs-xl {
  font-size: 32px;
}

.fs-xxl {
  font-size: 48px;
}

.fw-bold {
  font-weight: 700;
}

.txt-center {
  text-align: center;
}

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}



.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt100 {
  margin-top: 100px !important;
}


.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}



.mb130 {
  margin-bottom: 130px !important;
}



