@charset "UTF-8";
/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
/* FontAwesome（外部読み込み） */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css");
/*====================
  変数定義
====================*/
/*====================
  Mixin（メディアクエリ管理）
====================*/
/*====================
  共通: デバイス表示制御（PC/SP）
====================*/
.pc_none {
  display: none;
}

.sp_none {
  display: block;
}

@media (max-width: 768px) {
  .pc_none {
    display: block;
  }
  .sp_none {
    display: none;
  }
}
/*====================
  ベース設定（BASE）
====================*/
html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  font-family: "Noto sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
  color: #000000;
  background-color: #ffffff;
}

/* リンク設定 */
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.6;
}

/* 外部リンクアイコン */
a.blank::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  vertical-align: middle;
  content: "\f08e"; /* FontAwesomeの外部リンクアイコン */
  padding-left: 3px;
}

/* 画像 */
img {
  max-width: 100%;
  height: auto;
}

/*======================================*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  text-align: left;
  width: 100%;
  height: 78px;
  background-color: #ffffff;
  z-index: 100;
}

@media (max-width: 768px) {
  .header {
    padding: 10px 15px;
    height: auto;
  }
  .header h1 img {
    width: 80px;
  }
}


.container{
  position: relative;
  background-color: #f0f0f0;
}


main {
  max-width: 640px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
  
}

.copy{}
.copy p{
  text-align: center;
  font-size: 2.4em;
  padding: 30px 3%;
}

@media (max-width: 768px) {
  .copy p{
  font-size: 1.8em;
  padding: 30px 3%;
}
}

.cp-detail{
  padding: 0 3%;
}

.cp-bt{
  text-align: center;
  padding: 60px 3%;
}
.cp-bt h3{
  font-size: 2.6em;
}

.bt_one,
.bt_max,
.bt_poi{
  padding: 40px 0 0 0;
}

.bt_one h3,
.bt_max h3,
.bt_poi h3{
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 487px 50px;
  margin: 0 0 20px 0;
}
.bt_one h3{background-image: url(../img/bt_one_ttl.png);}
.bt_max h3{background-image: url(../img/bt_max_ttl.png);}
.bt_poi h3{background-image: url(../img/bt_poi_ttl.png);}

@media (max-width: 768px) {

  .cp-bt{
  text-align: center;
  padding: 40px 5%;
}

  .cp-bt h3{
  font-size: 1.8em;
}

.bt_one,
.bt_max,
.bt_poi{
  padding: 30px 0 0 0;
}

.bt_one h3,
.bt_max h3,
.bt_poi h3{
  background-size:343px 35px;
  margin: 0 0 10px 0;
}

}

.bt_list{
  text-align: left;
  padding: 40px 20px 0;
}
.bt_list li{
  font-size: 1.8em;
  text-indent: -1em;
  padding-left: 1em;
}











.cp-overview{
  background-color: #f0f0f0;
  padding: 30px;
}
.cp-section{
  background-color: #fff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .cp-overview{
    padding: 30px 20px;
  }
  .cp-section{
    margin-bottom: 15px;
    padding: 15px;
  }
}

.cp-overview__title{
  text-align: center;
  font-size: 3.4em;
  font-weight: bold;
  padding: 0 0 60px 0;
  position: relative;
}
.cp-overview__title::after{
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 25px);
  bottom: 45px;
  width: 50px;
  height: 6px;
  background-color: #d00f31;
}

@media (max-width: 768px) {
  .cp-overview__title{
    font-size: 2.6em;
    padding: 0 0 40px 0;
  }
  .cp-overview__title::after{
    left: calc(50% - 20px);
  bottom: 25px;
  width: 40px;
  height: 4px
  }
}


.cp-section__heading{
  font-size: 2.8em;
  border-bottom: solid 3px #e6e6e6;
  font-weight: bold;
  padding: 0 0 5px 12px;
  margin: 0 0 20px 0;
  position: relative;
}
.cp-section__heading::after{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 4px;
  width: 6px;
  height: 28px;
  background-color: #d00f31;
}

@media (max-width: 768px) {
  .cp-section__heading{
    font-size: 2.0em;
  }
  .cp-section__heading::after{
    top: 4px;
  width: 4px;
  height: 20px;
  }
}

.cp-section__text,
.cp-discount__channel,
.cp-discount__label,
.cp-discount__amount,
.cp-list li,
.cp-models__list li,
.cp-models__channel{
  font-size: 2.4em;
}

.cp-discount__channel,
.cp-models__channel{
  font-weight: bold;
}
.cp-discount__amount,
.cp-models__list{
  padding-bottom: 1em;
}
.cp-list li{
  text-indent: -0.6em;
  padding-left: 0.6em;
}

.cp-section__note{
  font-size: 2.0em;
}

.cp-list li span{
  color: #d00f31;
}

@media (max-width: 768px) {
  .cp-section__text,
.cp-discount__channel,
.cp-discount__label,
.cp-discount__amount,
.cp-list li,
.cp-models__list li,
.cp-models__channel{
  font-size: 1.7em;
}

.cp-section__note{
  font-size: 1.4em;
}

}




.footer {
  background-color: #fff;
  text-align: center;
  padding: 30px 5%;
}
.footer address {
  font-size: 1.4em;
}
@media (max-width: 768px) {
  .footer {
    padding: 20px 5%;
  }
  .footer address {
    font-size: 1.2em;
  }
}/*# sourceMappingURL=home.css.map */





.popMenu,
.popEntry{
  position: fixed;
  width: 300px;
  top: 130px;
}

.popMenu{
  left: calc(50% - 680px);
}
.popEntry{
  right: calc(50% - 680px);
}

.popMenu .inner,
.popEntry .inner{
  margin: 5px;
  padding: 20px 0;
  height: 300px;
  text-align: center;
}

.popMenu .inner p{
  padding: 0 0 20px 0;
}


.popEntry .inner p{
  position: relative;
}
.updwn{
  position: absolute;
  left: calc(50% - 12px);
  bottom: -70px;
  animation: updwn-bounce 1.0s ease-in-out infinite;
}

@keyframes updwn-bounce {
  0%, 100% { bottom: -70px; }
  50%       { bottom: -80px; }
}






.link-disabled {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
.link-disabled img{
  box-shadow:none !important;
}


/* =====================
   適用条件 タブ
===================== */
.cp-eligibility .cp-section__text {
  margin-bottom: 16px;
}

.cp-tabs {
  margin: 0 -25px -25px;
}

.cp-tabs__header {
  display: flex;
  gap: 8px;
  padding: 0 25px;
}
@media (max-width: 768px) {
  .cp-tabs__header {
    padding: 0 20px;
  }
}

.cp-tabs__btn {
  flex: 1;
  padding: 14px 8px;
  font-size: 2.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  line-height: 1.5;
  text-align: center;
  color: #666666;
  transition: color 0.2s ease;
  border-radius: 10px 10px 0 0;
}

@media (max-width: 768px) {
  .cp-tabs__btn {
    font-size: 1.6em;
  }
}

.cp-tabs__btn[data-tab="store"] {
  background-color: #f8dbe0;
  color: #d00f31;
}

.cp-tabs__btn[data-tab="online"] {
  background-color: #ede9df;
  color: #000;
}

.cp-tabs__panel {
  display: none;
  background-color: #ffffff;
  padding: 20px;
  margin: 0 25px 25px;
  border-radius: 0 0 10px 10px;
}
@media (max-width: 768px) {
  .cp-tabs__panel {
  padding: 15px;
  margin: 0 20px 20px;
  }
}

.cp-tabs__panelL{
  background-color: #f8dbe0;
}
.cp-tabs__panelR{
  background-color: #ede9df;
}

.cp-tabs__panel--active {
  display: block;
}

.cp-tabs__intro {
  font-size: 2.2em;
  line-height: 1.6;
  margin-bottom: 12px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .cp-tabs__intro {
  font-size: 1.6em;
  }
}

.cp-tabs__panel > .cp-tabs__intro:first-child {
  margin-top: 0;
}

/* サービス契約テーブル */
.cp-service-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 2.2em;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
  .cp-service-table {
    font-size: 1.5em;
  }
}

.cp-service-table th {
  
  padding: 10px 12px;
  text-align: left;
  font-weight: bold;
  border-top: 1px solid #231815;
  border-bottom: 1px solid #231815;
}

.cp-service-table td {
  padding: 10px 10px;
  border-bottom: 1px solid #231815;
  vertical-align: middle;
  line-height: 1.5;
}

.cp-service-table__num {
  text-align: center;
  white-space: nowrap;
  border-right: 1px solid #231815;
}

@media (max-width: 768px) {
  .cp-service-table th {
  padding: 5px 6px;
  }
  .cp-service-table td {
  padding: 5px 5px;
  }
}

/* 注意テキスト */
.cp-tabs__notes {
  font-size: 1.9em;
  line-height: 1.7;
}

.cp-tabs__notes li {
  padding-left: 1em;
  text-indent: -1em;
}

.cp-tabs__subnote {
  font-size: 1.9em;
  line-height: 1.7;
  margin-bottom: 20px;
  padding-left: 1em;
  text-indent: -1em;
}

@media (max-width: 768px) {
  .cp-tabs__notes,
  .cp-tabs__subnote {
  font-size: 1.4em;
  }
}
