@charset "UTF-8";
/* ==================================================
valiable 
================================================== */
:root {
  --color-red-1: #cd2323;
  --color-blue-1: #c8f0ff;
  --transparent: rgba(0, 0, 0, 0);
}

/* ==================================================
my Reset
================================================== */
* {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  box-sizing: border-box;
}

body {
  font-family: Hiragino Kaku Gothic Pro, Meiryo, Osaka, MS PGothic, sans-serif;
  font-size: 16px;
  color: #333;
  background: var(--color-blue-1);
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
a {
  color: inherit;
}

a:hover {
  color: var(--color-red-1);
}

ul,
li {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

/* ==================================================
utility
================================================== */
.inner {
  max-width: 750px;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
.fontBig {
  font-size: max(1.7em, 34px);
}
.fontSmall {
  font-size: max(0.7em, 12px);
}

.textRed {
  color: var(--color-red-1);
}

/* ==================================================
component
================================================== */
.btnPrimary {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  height: auto;
  margin: 0 auto;
  background: var(--color-red-1);
  border-radius: 6px;
  border: 3px solid var(--color-red-1);
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 0.5em 2.5em 0.5em 2em;
  position: relative;
  top: 0em;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .btnPrimary {
    font-size: 14px;
    padding: 0.5em 2.5em 0.5em 1em;
  }
}
.btnPrimary::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5em;
  transition: 0.3s;
  width: 1.3em;
  height: 1.3em;
  background: url(../img/icon-arrow-right.svg) center/contain no-repeat;
}

.btnPrimary:hover {
  color: var(--color-red-1);
  background: #fff;
}

.btnPrimary:hover::before {
  right: 0.3em;
}

/* ==================================================
アコーディオン
================================================== */
.acBtn,.faqBtn {
  font-size: 20px;
  border-radius: 6px;
  overflow: hidden;
  border: 3px solid var(--color-red-1);
}

@media screen and (max-width: 768px) {
  .acBtn,.faqBtn {
    font-size: 14px;
  }
}
.acBtn_ttl {
  color: var(--color-red-1);
  font-weight: bold;
  height: 2.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 0 2em 0 1em;
  transition: 0.3s;
}

.acBtn_ttl.is-active {
  background: #f2f2f2;
  color: var(--color-red-1);
}

.acBtn_btn,.faqBtn_btn {
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
  background: var(--color-red-1);
  width: 1.3em;
  height: 1.3em;
  border-radius: 100vh;
}

.acBtn_btn::before,
.acBtn_btn::after ,
.faqBtn_btn::before,
.faqBtn_btn::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 0.1em;
  background: #fff;
}

.acBtn_btn::before {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: 0.3s;
}

.acBtn_content {
  display: none;
  padding: 1em;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .acBtn_content {
    padding: 1em 10px;
  }
}
.acBtn_contentText {
  font-size: max(0.8em, 14px);
}

/* ==================================================
header
================================================== */
.header {
  font-size: 20px;
  padding: 0 10px;
  height: 60px;
  border-bottom: 2px solid var(--gray-01);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .header {
    font-size: 16px;
    height: 3em;
  }
}
.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1em;
}

.header_logo img {
  vertical-align: middle;
  height: 1.8em;
}

.header_link {
  font-size: max(0.8em, 14px);
}

/* ==================================================
mv
================================================== */
.mv {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-top: 45px;
  }
}

.mv {
  padding: 0;
  background: url(../img/mv-bg.webp) center/cover no-repeat;
}

.mv_text {
  padding-top: 40px;
}

@media screen and (max-width: 768px) {
  .mv_text {
    padding-top: 20px;
  }
}

#js-default-contents,
#js-point-contents {
  display: none;
}
#js-default-contents.active,
#js-point-contents.active {
  display: block;
}

/* ==================================================
secBlock
================================================== */
.secBlock {
  padding: 0 10px;
  font-size: 20px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .secBlock {
    font-size: 16px;
  }
}
.secBlock .inner {
  background: #fff;
  border-radius: 8px;
}

.secBlock_ttl {
  background: var(--color-red-1);
  color: #fff;
  font-size: 1.3em;
  text-align: center;
  padding: 0.5em;
  border-radius: 8px 8px 0 0;
}
.secBlock_ttl h2 {
  font-size: 1em;
}

.secBlock_acTtl {
  margin: 3.5rem 0 0.7rem 0;
  padding-left: 0.5rem;
  border-left: 10px solid;
  border-color: var(--color-red-1);
  font-weight: bold;
}
.secBlock_acTtl:first-child {
  margin-top: 1rem;
}
.secBlock_acTtl h3 {
  font-size: 1em;
}

.secBlock_content {
  padding: 40px clamp(10px, 10%, 100px);
}
@media screen and (max-width: 768px) {
  .secBlock_content {
    padding: 25px 20px;
  }
}
.secBlock_content + .secBlock_content {
  position: relative;
}
.secBlock_content + .secBlock_content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px);
  height: 1em;
  background: radial-gradient(#cccccc 30%, var(--transparent) 30%) center/1em
    1em repeat;
}

.secBlock_btn {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .secBlock_btn {
    margin-top: 25px;
  }
}
.secBlock_btn + .secBlock_btn {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .secBlock_btn + .secBlock_btn {
    margin-top: 20px;
  }
}

/* ==================================================
共通
================================================== */

.secBlock_subttl {
  text-align: center;
  font-weight: bold;
}

.secBlock_txt {
  margin-top: 1.5em;
  font-size: 0.8em;
  display: flex;
}
.secBlock_txt p {
  margin-bottom: 1em;
  margin:auto;
}
.secBlock_txt p:last-child {
  margin-bottom: 0;
}
.secBlock_txt.is-center{
  text-align: center;
}
ul.secBlock_list li {
  list-style: disc;
  font-size: 0.8em;
  margin-left: 1.5em;
}
@media screen and (max-width: 768px) {
  ul.secBlock_list li {
    list-style: disc;
  }
}

.secBlock_numWrap {
  row-gap: 1em;
  display: flex;
  align-items: center;
  margin: 1em auto;
}

.secBlock_numWrap img {
  width: 2.5em;
  height: 2.2em;
  margin:auto 0 auto auto;
}

.secBlock_numWrap p {
  font-weight: bold;
  margin:0 auto 0 0.5em;
}

.secBlock_img{
  margin:25px auto;
}

/* ==================================================
indexArea
================================================== */
.secBlock_index {
  font-size: 1.3em;
  text-align: center;
  padding: 0.5em;
  font-weight: bold;
  border-radius: 8px 8px 0 0;
}

.indexArea_content {
  padding-bottom:1.3em;
}
@media screen and (max-width: 768px) {
  .indexArea_content {
    padding: 0 10px 25px 10px;
  }
}

.indexArea_content {
  margin-top: .8em;
  width: 60%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .indexArea_content {
    width: 100%;
  }
}

.indexArea_content a {
  font-size: 20px;
  display: flex;
  text-decoration: none;
  height: 2.7em;
  margin: 0 auto;
  border-bottom: 1px solid #999;
  font-weight: bold;
  padding: 0.5em 2.5em 0.5em 0;
  position: relative;
  top: 0em;
  transition: 0.3s;
}
.indexArea_content a:last-child {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .indexArea_content a {
    font-size: 14px;
    padding: 0.5em 2.5em 0.5em 1em;
  }
}
.indexArea_content a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5em;
  transition: 0.3s;
  width: 1.3em;
  height: 1.3em;
  background: url(../img/index-arrow.webp) center/contain no-repeat;
}

.indexArea_content a:hover {
  color: var(--color-red-1);
  background: #fff;
}

.indexArea_content a:hover::before {
  right: 0.3em;
}

/* ==================================================
pointget
================================================== */
.pointget_acContent p {
  font-size: 0.8em;
}

.pointget_acContent img {
  width: 100%;
  display: block;
  margin: 1.5rem auto 0 auto;
}
@media screen and (max-width: 768px) {
  .pointget_acContent img {
    width: 90%;
  }
}

/* ==================================================
faq
================================================== */
.faqBtn_ttl {
  color: var(--color-red-1);
  font-weight: normal;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 10px 2em 10px 10px;
  transition: 0.3s;
}

.faqBtn_ttl.is-active .acBtn_btn::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faqBtn_contentWrap {
  display: none;
  padding: 10px;
  background: #fff;
  border-top: dotted 3px #999;
}
@media screen and (max-width: 768px) {
  .qaBtn_contentwrap {
    padding: 1em 10px;
  }
}

.faqBtn_contentWrap {
  font-weight: bold;
  display: none;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.faqBtn_content {
  display: grid;
  grid-template-columns: 2em 1fr;
  margin-right: -7px;
}

#faq .secBlock_content .secBlock_btn:first-child{
  margin-top: 0;
}

.faqBtn_q {
  text-align: left;
  width: 2em;
  font-weight: bold;
}
.faqBtn_contentTxt {
  margin-left: -7px;
  font-weight: normal;
}
.faqBtn_contentTxt span{
  font-size:.8em;
}

/* ==================================================
lv
================================================== */

.lv {
  margin:30px 0;
  text-align: center;
}
.lv::after {
  content: "";
  display: inline-block;
  background: url(../img/lv.webp) center/contain no-repeat;
  height: 345px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .lv{
    width:100%;
    margin:auto;
  }
  .lv::after {
    height: 300px;
    width: 80%;
    background-size: contain;
  }
}

/* ==================================================
footer
================================================== */
.footer a {
  color: #000;
  text-decoration: none;
  position: relative;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-sitemap {
  background: #f1ede3;
  font-size: 12px;
}

.footer-sitemap .inner {
  padding: 40px 0;
}

.footer-sitemap .upper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-sitemap .upper .lead {
  font-size: 18px;
  font-weight: bold;
}

.footer-sitemap .upper .text {
  font-weight: bold;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-menu .menu-col:nth-child(1) {
  width: 60%;
  padding-right: 30px;
}

.footer-menu .menu-col:nth-child(2) {
  width: 20%;
  border-left: 2px dotted #c5ba9f;
  padding: 0 30px;
}

.footer-menu .menu-col:nth-child(3) {
  width: 20%;
  border-left: 2px dotted #c5ba9f;
  padding-left: 30px;
}

.footer-menu.is-service .menu-col:nth-child(1) {
  width: 28%;
  padding-right: 0;
}

.footer-menu.is-service .menu-col:nth-child(2) {
  width: 44%;
}

.footer-menu .menu-head {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-menu .menu-text {
  font-size: 13px;
  margin-bottom: 30px;
}

.list-menu + .list-menu {
  margin-top: 15px;
}

.list-menu li + li {
  margin-top: 8px;
}

.list-menu-sub {
  padding: 0 14px;
}

.list-menu .lead {
  font-size: 14px;
  font-weight: bold;
}

.list-menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.list-menu-grid .list-menu {
  width: 32%;
}

.list-menu-grid .list-menu + .list-menu {
  margin-top: 0;
}

.list-menu a {
  display: inline-block;
}

.footer-company {
  background: #fff;
}

.footer-company .inner {
  padding: 10px 0;
}

.footer-company-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.btn-footer-wrap {
  display: flex;
  flex-wrap: wrap;
}

.btn-footer-wrap li + li {
  margin-left: 10px;
}

.footer-service {
  display: flex;
  flex-wrap: wrap;
}

.footer-service li {
  font-size: 12px;
}

.footer-service li + li {
  margin-left: 12px;
}

.footer-service.list-triangle > li + li {
  margin-top: 0;
}

.copyright {
  font-size: 12px;
  margin-top: 5px;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .footer-company {
    background: #ffa513;
  }
  .footer-company .inner {
    padding: 20px 12px;
    max-width: 980px;
  }
  .footer-service {
    justify-content: center;
  }
  .footer-service li {
    padding: 0 8px;
    margin-top: 6px;
    line-height: 1.1;
  }
  .footer-service.list-triangle > li + li {
    margin-top: 6px;
  }
  .footer-service.list-triangle > li:before {
    display: none;
  }
  .footer-service li + li {
    margin-left: 0;
    border-left: 1px solid #000;
  }
  .copyright {
    margin-top: 10px;
    text-align: center;
  }
}
.footer {
  background: #000;
  color: #fff;
}

.footer-company .inner {
  padding: 10px 0 30px;
  position: relative;
}

.footer a {
  color: #fff;
  text-decoration: none;
  position: relative;
}

.footer-service {
  margin-bottom: 10px;
}

.footer-service li + li {
  margin-left: 15px;
  padding-left: 15px;
  position: relative;
}

.footer-service li + li:before {
  position: absolute;
  content: "|";
  left: 0;
  top: 0;
}

.copyright {
  position: absolute;
  right: 0;
  bottom: 30px;
}

@media screen and (max-width: 768px) {
  .footer-company .inner {
    padding: 10px 15px;
  }
  .footer-service {
    text-align: center;
    margin-bottom: 0;
  }
  .footer-service li + li:before {
    content: none;
  }
  .copyright {
    position: relative;
    right: auto;
    bottom: auto;
  }
}