/* resetCSS */

/* http://meyerweb.com/eric/tools/css/reset/
  v2.0 | 20110126
  License: none (public domain)
 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

:root {
  --white: #fff;
  --black: #222f3e;
  --gray-light: #f9fafb;
  --gray-mid: #f0f1f4;
  --gray: #e5e9ed;
  --gray-dark: #b4bfcb;
  --gray-black: #576574;
  --gold: #dbccab;
  --lightblue: #eff6fa;
  --blue-light: #64bdd4;
  --blue-dark: #404176;
  --blue: #1e7dde;
  --green: #00c4c4;
  --red: #de6066;
  --pink: #ea7d85;
  --yellow: #ffff5f;
  --brown: #604d21;
  --button-blue: #21bddb;
  --button-green: #2accc1;
  --button-yellow: #f6d365;
  --button-orange: #fda085;
  --line-green: #21b83c;
  --line-blue: #2accc1;
  --gradient-primary-blue: linear-gradient(-45deg, var(--green), var(--blue));
  --button-gradient-blue: linear-gradient(-45deg, var(--button-green), var(--button-blue));
  --button-gradient-yellow: linear-gradient(-45deg, var(--button-orange), var(--button-yellow));
  --button-gradient-line-green: linear-gradient(-45deg, var(--line-blue), var(--line-green));
  --marker_yellow: linear-gradient(transparent 60%, var(--yellow) 60%);
  --status-standby: linear-gradient(-15deg, #82b1d1, #83ccd2);
  --status-call: linear-gradient(-15deg, #e68386, #e69383);
  --status-resv: linear-gradient(-15deg, #abbe65, #dbd477);
  --status-out: linear-gradient(-15deg, #a5b1c2, #d1d8e0);
  --fa-mincho: "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  --fa_hiragino-maru-gothic: "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

/* 共通設定 */
html {
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-wrap: break-word;
}

body {
  color: #222f3e;
  font-size: 1.4rem;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background-image: url(../../../images/sp/index-lo-bg-wht.png);
  background-size: inherit;
  background-attachment: fixed;
  background-repeat: repeat;
  background-position: center center;
}

main {
  margin: 0 auto;
  max-width: 450px;
  border-left: 2px solid var(--white);
  border-right: 2px solid var(--white);
  box-shadow: 0 3px 10px 1px #8395a7;
}

.image--full-width {
  display: block;
  width: 750px;
}

.relative-container {
  position: relative;
}

.relative {
  position: relative;
  display: block;
}

.absolute {
  position: absolute;
}

.line {
  margin: 0 0 15px 0;
}

.marker_warm span {
  background-image: linear-gradient(90deg, #fdeec8, #e6c0c2);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 30%;
  z-index: -1;
}

/* 開始フェードイン */
.fade_start {
  will-change: transform, opacity;
  animation: fadein 3s forwards;
}

@keyframes fadein {
  0% {opacity: 0}
  100% {opacity: 1}
}

/* ページ遷移フェードイン */
.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s,visibility 1s, transform 1s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* content */
.section__hero-mv img {
  vertical-align: bottom;
}

/* 見出し */
.section__title {
  background-image: url(../../../images/lp/chat/bg_01_deco.png), url(../../../images/lp/chat/bg_01.png);
  background-repeat: no-repeat, no-repeat;
  background-position: top center, top center;
  background-size: 100% auto, cover;
  padding: 0 0 20px;
}

.section__title h2 {
  padding: 25px 0 15px;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: var(--fa-mincho);
  background: linear-gradient(0deg, #b1895c 0%, #ddbb80 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  text-align: center;
}

.section__title h2::before {
  content: '';
  display: block;
  width: 120px;
  height: 40px;
  margin: 0 auto;
  background: url(../../../images/lp/chat/img_deco-01.png) no-repeat center bottom;
  background-size: contain;
}

.section__title > p {
  font-size: 1.3rem;
  color: var(--white);
  text-align: center;
  line-height: 1.4;
}

.section__title.light_blue {
  background-image: url(../../../images/lp/chat/bg_02_deco.png), url(../../../images/lp/chat/bg_02.png);
  background-repeat: no-repeat, no-repeat;
  background-position: top center, top center;
  background-size: 100% auto, cover;
}

.section__title.light_blue h2 {
  background: linear-gradient(0deg, #111d68 0%, #3253ce 80%);
  -webkit-background-clip: text;
}

.section__title.light_blue > p {
  color: var(--blue-dark);
}

/* こんなお悩みセクション */
.section__worries-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: var(--fa-mincho);
  background: linear-gradient(0deg, #b1895c 0%, #ddbb80 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.4;
  margin-bottom: 8px;
}

.section__worries-header h2::before {
  content: '';
  display: block;
  width: 180px;
  height: 60px;
  margin: 0 auto;
  background: url(../../../images/lp/chat/img_deco-01.png) no-repeat center bottom;
  background-size: contain;
}

.section__worries-header > p {
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 20px;
}

.section__worries-lead {
  text-align: center;
  margin: 0 20px 20px;
  font-size: 2.6rem;
  font-weight: 700;
  font-family: var(--fa-mincho);
  color: #e0cda5;
  line-height: 1.3;
  text-shadow:
    -1px -1px 0 #20436B,
    0 -1px 0 #20436B,
    1px -1px 0 #20436B,
    -1px 0 0 #324F7A,
    1px 0 0 #324F7A,
    -1px 1px 0 #4E6B88,
    0 1px 0 #4E6B88,
    1px 1px 0 #4E6B88;
}

.section__worries-lead::before {
  content: url(../../../images/lp/chat/img_deco-04.svg);
  display: block;
  width: 97px;
  height: 15px;
  margin: 0 auto;
  opacity: 0.6;
}

.section__worries p.lead {
  text-align: center;
  margin: 10px 0;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: var(--fa-mincho);
  color: #e0cda5;
  line-height: 1.6;
}

.section__worries-cta {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 900;
  font-family: var(--fa-mincho);
  color: #c0213f;
  line-height: 1.3;
  text-shadow:
    -2px -2px 0 #fff,
    0 -2px 0 #fff,
    2px -2px 0 #fff,
    -2px 0 0 #fff,
    2px 0 0 #fff,
    -2px 2px 0 #fff,
    0 2px 0 #fff,
    2px 2px 0 #fff;
}

.section__worries-cta::before {
  content: '';
  display: block;
  width: 120px;
  height: 40px;
  margin: 0 auto 8px;
  background: url(../../../images/lp/chat/img_deco-01.png) no-repeat center bottom;
  background-size: contain;
}

.section__triangle {
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom right, #2A4F74, #405e7e, #647e98, #668bb1);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* エキサイト初！チャット占いとは？ */
.section__reason-point {
  margin: 20px 0 0;
  padding: 20px 15px 15px;
  background: url(../../../images/lp/chat/bg_04.png) no-repeat top center / cover;
}

.section__reason ul {
  padding: 0;
  overflow: visible;
}

.section__reason ul li {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  margin: 0 0 17px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  text-align: left;
  overflow: visible;
}

.section__reason ul li:last-child {
  margin-bottom: 0;
}

.section__reason ul li::after {
  content: '';
  position: absolute;
  top: -16px;
  right: 6px;
  width: 80px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
}

.section__reason ul li:nth-child(1)::after { background-image: url(../../../images/lp/chat/ic_point_01.png); }
.section__reason ul li:nth-child(2)::after { background-image: url(../../../images/lp/chat/ic_point_02.png); }
.section__reason ul li:nth-child(3)::after { background-image: url(../../../images/lp/chat/ic_point_03.png); }
.section__reason ul li:nth-child(4)::after { background-image: url(../../../images/lp/chat/ic_point_04.png); }
.section__reason ul li:nth-child(5)::after { background-image: url(../../../images/lp/chat/ic_point_05.png); }

.section__reason ul li .line {
  margin: 0;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.section__reason ul li .line img {
  width: 50px;
  height: 50px;
}

.section__reason ul li .section__reason-point-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section__reason ul li h3 {
  font-size: 1.6rem;
  font-family: var(--fa-mincho);
  font-weight: 700;
  color: #1a2a5e;
  margin-bottom: 3px;
  line-height: 1.4;
  text-align: left;
  background: none;
  -webkit-text-fill-color: unset;
}

.section__reason ul li p {
  color: #444;
  line-height: 1.5;
  text-align: left;
}

/* おすすめの占い師セクション */
.section__recommend-list {
  padding: 15px 15px 0;
}

.section__recommend-item + .section__recommend-item {
  margin-top: 15px;
}
.section__recommend-item {
  background: #fff;
  border: 1px solid #b4bfcb;
  border-radius: 8px;
  padding: 20px 18px 35px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.section__recommend-item::before,
.section__recommend-item::after {
  content: '';
  position: absolute;
  width: 44px;
  height: 44px;
  background: url(../../../images/lp/chat/bg_03_deco.svg) no-repeat center / contain;
}

.section__recommend-item::before { top: 4px; left: 4px; }
.section__recommend-item::after  { bottom: 4px; right: 4px; transform: rotate(180deg); }

.section__recommend-deco::before,
.section__recommend-deco::after {
  content: '';
  position: absolute;
  width: 44px;
  height: 44px;
  background: url(../../../images/lp/chat/bg_03_deco.svg) no-repeat center / contain;
  pointer-events: none;
}

.section__recommend-deco::before { top: 4px; right: 4px; transform: rotate(90deg); }
.section__recommend-deco::after  { bottom: 4px; left: 4px; transform: rotate(-90deg); }

.section__recommend-deco {
  text-align: center;
  margin: -10px 0 16px;
}

.section__recommend-deco img {
  max-width: 80%;
  height: auto;
}

.section__recommend-catch {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--fa-mincho);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 18px;
  background: linear-gradient(0deg, #b02060 0%, #e05080 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fortune-teller-profile {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.list_prof_photo {
  position: relative;
  width: 130px;
  height: 130px;
  flex-shrink: 0;
}

.flame_circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 130px;
  height: 130px;
}

.flame_circle img {
  width: 130px;
  height: 130px;
}

.list_photo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  overflow: hidden;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}

.list_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.fortune-teller-info {
  flex: 1;
}

.fortune-teller-name {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--fa-mincho);
  color: var(--blue-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.fortune-teller-name span {
  font-size: 2.8rem;
}

.fortune-teller-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-start;
}

.fortune-teller-tags li {
  font-size: 1.1rem;
  border: 1px solid #dbccab;
  border-radius: 20px;
  padding: 4px 12px;
  color: #c09e68;
  background: #fff;
}

.section__voice-title {
  font-weight: 700;
  font-family: var(--fa-mincho);
  text-align: center;
  color: var(--blue-dark);
  margin-bottom: 10px;
  position: relative;
}

.section__voice-title::before,
.section__voice-title::after {
  content: url(../../../images/lp/chat/img_deco-03.svg);
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin: 0 6px;
}

.section__voice-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section__voice-item {
  background: var(--gray-light);
  border-radius: 8px;
  padding: 14px 16px;
}

.voice-text {
  line-height: 1.4;
  color: #333;
  margin: 8px 0;
}

.voice-author {
  text-align: right;
}

/* こんなお悩みセクション */
.section__worries h2 {
font-size: 2.3rem;
}

/* CVボタン */
button {
  width: auto;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  font-size: 0;
  line-height: 0;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
}

.section__button-cv a {
  width: 100%;
  background-image: url(../../../images/lp/chat/img_bg-cv.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  aspect-ratio: 750 / 462;
  display: inline-block;
  vertical-align: bottom;
  overflow: hidden;
  position: relative;
}

.section__button-cv div {
  position: absolute;
  top: 67%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  margin: auto;
}

.section__button-cv div::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
  will-change: transform, opacity;
  animation: 4s 0s shine linear infinite;
  z-index: 1;
}

.section__fortune-teller .button_cv {
  margin: 0 auto;
  text-align: center;
}


@keyframes shine {
  20% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

/* header */
#exHeader {
  display: block;
  width: 100%;
  height: 44px;
  margin: 0 auto;
  padding: 0;
  clear: both;
  overflow: hidden;
  position: relative;
  border-top: 2px solid #000;
  border-bottom: solid 1px #e5e5e5;
  box-sizing: border-box;
  background: #fbfbfb;
}

#exHeader #exHeaderInner {
  display: flex;
  justify-content: flex-end;
  margin: 3px 3px 0 0;
}

#exHeader #siteLogo {
  position: absolute;
  top: 7px;
  left: 5px;
}

#exHeader .headerBtn {
  margin-left: 2px;
}

#exHeader .exSupportNumber {
  display: flex;
  justify-content: flex-end;
}

#exHeader .exSupportNumber .exPhoneNumber {
  margin: 8px 8px 0 0;
}

#exHeader #exHeaderInner_recruit {
  display: flex;
  justify-content: flex-end;
  margin: 3px 3px 0 0;
}

@media screen and (max-width: 750px) {
  #exHeader {
    width: 100%;
  }
}

/* footer */
footer {
  font-size: 12px;
  letter-spacing: 0.1rem;
  font-weight: 100;
  width: 100%;
  margin: 0 auto;
}

ul.footer {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #34424d;
}

ul.footer li {
  float: left;
  width: 50%;
}

ul.footer li:last-child {
  border-right: none;
}

ul.footer li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul.footer li a:hover:not(.active) {
  background-color: #bbb;
}

.li-left {
  border-right: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
}

.li-right {
  border-bottom: 1px solid #bbb;
}

.copywriter {
  font-size: 10px;
  color: #bbb;
  background-color: #34424d;
  text-align: center;
  padding: 14px 16px;
}

@media screen and (max-width: 750px) {
  footer {
    width: 100%;
  }
}
