html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Zen Maru Gothic", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.secBody,
.secHeader {
  margin: 0 auto;
  max-width: 560px;
  overflow: hidden;
}

.secHeader {
  background: #fffff7;
}

.secHeader__image {
  max-width: 280px;
}

picture {
  line-height: 0;
  margin: 0;
  font-size: 0;
}

img {
  font-size: 0;
  /* line-height: 0; */
  /* margin: 0; */
  width: 100%;
}

.secHeader__image {
  margin: 0 auto;
  padding: 2px 0;
}

.areaCTA--position {
  position: relative;
}

.areaCTA__btn--positon {
  position: absolute;
  bottom: 120px;
}
/*----------------------- ヘッダー */
/* ハンバーガー */
.secHeader__hamburger {
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
  position: fixed;
  right: 10px;
  top: 12px;
}

.secHeader__hamburger span {
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffbc00;
  left: 0;
  transition: 0.3s;
}

.secHeader__hamburger span:nth-child(1) {
  top: 0;
}
.secHeader__hamburger span:nth-child(2) {
  top: 9px;
}
.secHeader__hamburger span:nth-child(3) {
  top: 18px;
  width: 20px;
  right: 0;
  left: unset;
}

/* ハンバーガー開閉アニメーション */
.secHeader__hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.secHeader__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.secHeader__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* ナビゲーション */
.secHeader__navWrapper {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
}

.secHeader__navWrapper.active {
  right: 0;
}

/* ナビリスト */
.secHeader__navList {
  list-style: none;
  padding: 50px 20px;
}

.secHeader__navListItem {
  margin-bottom: 20px;
}

.secHeader__navListItem a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* オーバーレイ防止 */
body.no-scroll {
  overflow: hidden;
}

.secBanner {
  position: fixed;
  bottom: -1px;
  max-width: 480px;
  margin: 0 auto;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.secBanner.is-show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.secHeader {
  height: 40px;
  position: relative;
}

.secHeader__hamburger.active span {
  background: #333;
  left: unset;
  right: unset;
  width: 100%;
}

span.secHeader__navListItem--en {
  color: #ff8a00;
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 6px 0;
}

.secHeader__navListItem a {
  font-size: 20px;
}

/* オーバーレイ背景 */
.secHeader__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 999;
}

/* ナビ開いた時に表示 */
.secHeader__overlay.active {
  opacity: 1;
  visibility: visible;
}

/*----------------------- アドバイザー */
.c-adviser {
  padding: 0 0 20px 0;
}

.c-adviser__nav,
.c-voiceList-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.c-adviser__dot,
.c-voiceList-dot {
  background: #d3e4e1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.c-adviser__dot.active,
.c-voiceList-dot.active {
  background: #02757f;
  padding: 4px;
  margin: -4px 0 0 0;
}

.c-adviser__list {
  display: flex;
}

.c-adviser__listItem {
  box-sizing: border-box;
  min-width: 100%;
  flex-shrink: 0;
  padding: 20px 10px 20px 10px;
}

.c-adviser__listDetail {
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
  width: 100vw;
}

.c-adviser__listDetailItem {
  width: calc(50% - 20px);
}

.c-adviser__listWrapper {
  background: url(../img/c-adviser__bg.jpg);
  position: relative;
}

.c-voiceList-slide img,
.c-voiceList-slide picture {
  max-width: 90vw;
  width: 100%;
}

/*----------------------- よくある質問 */
.c-faq {
  margin-top: 20px;
  padding: 20px;
}

.c-faq__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.c-faqListItemWrapper {
  border-top: 2px solid #fff;
}

.c-faqListItem__title {
  background: #00b0a6;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 50px 16px 40px;
  position: relative;
}

.c-faqListItem__title:before {
  border-radius: 60px;
  content: "Q";
  color: #fdecab;
  font-size: 26px;
  left: 10px;
  padding: 2px 0 0 4px;
  position: absolute;
  top: 7px;
}

.c-faqListItem__content {
  color: #333;
  display: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding: 12px 20px 20px 50px;
  position: relative;
  transition: all 0.3s ease;
}

.c-faqListItem__content:before {
  background: transparent;
  color: #ffe167;
  content: "A";
  font-size: 26px;
  font-weight: 700;
  left: 16px;
  position: absolute;
}

.c-faqListItemWrapper.is-open .c-faqListItem__content {
  display: block;
}

.c-faqListItem__titleArrow {
  position: absolute;
  right: 20px;
  background: #ffffff;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  bottom: 0;
  top: 0;
  margin: auto;
}

.c-faqListItem__titleArrow:before {
  position: absolute;
  content: "";
  right: 7px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #00b0a6;
  border-right: 2px solid #00b0a6;
  transform: rotate(-45deg);
  top: 0;
  bottom: -6px;
  margin: auto;
}

.c-faqListItemWrapper.is-open .c-faqListItem__titleArrow:before {
  bottom: 2px;
  transform: rotate(135deg);
}

@media screen and (max-width: 480px) {
}

/*----------------------- 選ばれる理由 */
.c-reasonList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/*----------------------- お客様の声 */
.c-voice {
  background: #fffff7;
  margin: 0 0 -1px 0;
  padding: 0 0 60px 0;
}

.c-voiceList {
  margin: 40px 0;
}

.c-voiceList-track {
  display: flex;
  transition: transform 0.3s ease;
}

.c-voiceList-slide {
  min-width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  text-align: center;
}

.c-voiceList-slide img,
.c-voiceList-slide picture {
  width: 78%;
  text-align: center;
  margin: 0 auto;
}

.c-voiceList-dot.active {
  background: #fcbc07;
}

.c-voiceList-dot {
  background: #fcedab;
}

/*----------------------- フッター */
.secFooter {
  background: #fff5cf;
  margin: 80px auto 0 auto;
  max-width: 560px;
  overflow: hidden;
}
.secFooter__inner {
  padding: 40px 20px 30px 20px;
}

.secFooter__pmarkWrapper {
  align-items: center;
  border-top: 2px solid #fff;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 20px;
  padding: 10px 0 20px 0;
}

.secFooter__licence {
  margin: 0 auto 20px auto;
  width: 60%;
}

.secFooter__linklist {
  border-top: 2px solid #fff;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0 0 0;
}

.secFooter__linklistItem a {
  color: #333;
  font-size: 12px;
}

.secFooter__pmarkImage {
  width: 20%;
}

.secFooter__pmarkText {
  font-size: 12px;
  width: calc(80% - 20px);
}

.copyrightWrapper {
  margin: 20px auto 80px auto;
  max-width: 560px;
  text-align: center;
}

/*----------------------- モーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: auto;
  padding: 80px 0 0 0;
}

.modal-content img {
  max-width: 500px;
  display: block;
  border-radius: 8px;
  width: 90%;
}

.modal-close {
  position: absolute;
  top: 70px;
  right: 20px;
  color: #ffffff;
  font-size: 34px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 999;
}

.modal-close:after {
  bottom: 0;
  border-radius: 50%;
  background: #007580;
  content: "";
  display: block;
  height: 60px;
  margin: auto;
  position: absolute;
  top: 8px;
  right: -14px;
  width: 60px;
  z-index: -1;
}

.areaCTA {
  margin: -1px 0 -1px 0;
}

#service {
  margin: 0 0 -1px 0;
}

.c-voiceListWrapper {
  position: relative;
}

.c-adviser__prev,
.c-adviser__next,
.c-voice__next,
.c-voice__prev {
  background: #04757f;
  bottom: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  left: 4px;
  height: 30px;
  position: absolute;
  top: 0;
  width: 30px;
  margin: auto;
}

.c-adviser__next,
.c-voice__next {
  left: unset;
  right: 6px;
}

.c-adviser__next:disabled,
.c-voice__next:disabled {
  background: #d3e4e1;
}
.c-voice__next,
.c-voice__prev {
  background: #fcbc09;
}
.c-voice__next:disabled,
.c-voice__prev:disabled {
  background: #fcedab;
}
