@charset "UTF-8";
@import url('https://fonts.googleapis.com/earlyaccess/notosansjp.css');

*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly. */
:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/*
foundation/_base.scss
*/
html {
  font-size: 62.5%;
}

main {
  margin: 0 auto;
  width: 100%;
  max-width: 428px;
  color: #3e3a39;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  line-height: 1.4;
  background-color: #fff;
  position: relative;
}
main a {
  display: block;
  color: #3e3a39;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
}
main picture {
  display: block;
}
main img {
  vertical-align: top;
}
main li {
  list-style: none;
}

main.noscroll {
  overflow: hidden;
}

/* header
========================================================================== */
/* 共通部分 */
.logo-background {
  background: #fff;
  border-bottom: 1px solid #cc0022;
  width: 100%;
  height: 82px;
  display: flex;
  align-items: center;
}

.logo-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
}

.left-logo {
  max-width: 211px;
  height: auto;
  display: block;
}

.right-logo {
  height: 18px;
  display: block;
}

/* SP専用ロゴの初期設定（PCでは非表示） */
.sp-logo {
  display: none;
}

/* レスポンシブデザイン（SP用） */
@media screen and (max-width: 1020px) {
  .logo-background {
    height: 65px;
    display: none;
  }

  .sp-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
    background: #fff;
    border-bottom: 1px solid #cc0022;
  }

  .sp-logo img {
    height: auto;
    max-height: 50px;
  }
}
/*
layout/_section.scss
*/
.l-section {
  padding: 0 16px;
  width: 100%;
}

/*
layout/_footer.scss
*/
.l-footer {
  padding: 24px 16px 10px 16px;
  font-size: 1.2rem;
  font-weight: 600;
}

/* l-footer_top */
.l-footer_top {
  margin-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed #000;
}

.l-footer_top_list {
  width: 100%;
}

/* l-footer_bottom */
.l-footer_bottom {
  margin-top: 24px;
}
.l-footer_bottom_text:nth-child(3) {
  margin-top: 16px;
}
.l-footer_bottom_list {
  margin: 24px 0 0 auto;
  width: 100%;
}
.l-footer_bottom_item {
  padding-left: 16px;
  font-size: 1.6rem;
  position: relative;
}
.l-footer_bottom_item::before {
  content: "";
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #00b08d;
  position: absolute;
  top: 2px;
  left: 0
}
.l-footer_bottom_number {
  margin-top: 40px;
  text-align: right;
}

.l-footer_copyright {
  display: block;
  margin-top: 40px;
  font-size: 1rem;
  text-align: center;
}

.c-dot {
  margin: 0 0 0 auto;
  padding-left: 16px;
  position: relative;
}
.c-dot::before {
  content: "●";
  font-size: 12px;
  position: absolute;
  left: 0;
}

.c-annotation {
  margin: 0 0 0 auto;
  padding-left: 16px;
  position: relative;
}
.c-annotation::before {
  content: "※";
  font-size: 12px;
  position: absolute;
  left: 0;
}

.c-button {
  margin: 8px auto 0 auto;
  width: 100%;
  max-width: 398px;
}
.c-button_ex {
  margin: 16px auto 0 auto;
  width: 100%;
  max-width: 398px;
  filter: drop-shadow(1px 2px 2px #6b6867);
}

.c-heading {
  margin: -40px -16px 0 -16px;
  text-align: center;
  font-weight: 800;
  position: relative;
  z-index: 2;
}
.c-heading_inner {
  padding-bottom: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #fff9eb;
}
.c-heading_h2 {
  margin: 0;
  padding: 0;
  font-size: 3.2rem;
  line-height: 1.2;
}
.c-heading_h3 {
  padding: 5px 0 20px;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: normal;
}
.c-heading_arrow {
  margin: -20px auto 0 auto;
  width: 55%;
  height: 55px;
  border-top: 55px solid #fff9eb;
  border-right: 125px solid transparent;
  border-left: 125px solid transparent;
}

.p-fv_image {
  width: 100%;
  max-width: 428px;
}

.p-button-area_background {
  display: block;
  width: 128%;
  max-width: 546px;
  height: auto;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.p-button-area_claim {
  width: 100%;
  max-width: 389px;
}
.p-button-area_bg {
  background-color: #fff9eb;
}
.p-button-area_inner {
  padding: 30px 0;
}
.p-button-area_text {
  margin-top: 16px;
  font-size: 1.2rem;
  font-weight: bold;
}
.p-button-area_logo {
  margin: 25px 0 30px;
  width: 100%;
  max-width: 398px;
}

.p-award {
  padding: 40px 32px;
  width: 100%;
  max-width: 428px;
  height: auto;
  background-image: url("../img/p-award_background.png");
  background-size: 145%;
  background-position: top center;
  background-repeat: no-repeat;
}
.p-award_medal, .p-award_evaluation {
  margin-top: 24px;
}

.p-security {
  font-size: 1.2rem;
  font-weight: 700;
}
.p-security .c-heading{
  margin-top: -40px;
}
.p-security_list {
  margin-top: 24px;
  width: 100%;
}
.p-security .c-annotation {
  padding-left: 24px;
}
.p-security .c-annotation:nth-child(1)::before {
  content: "※1";
}
.p-security .c-annotation:nth-child(2)::before {
  content: "※2";
}
.p-security .c-annotation:nth-child(3)::before {
  content: "※3";
}

.p-disclaimer {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #fefdf5;
}
.p-disclaimer_title {
  width: 100%;
  max-width: 396px;
}
.p-disclaimer_copy {
  margin-top: 16px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
}
.p-disclaimer_copy sup {
  font-size: 1rem;
}
.p-disclaimer_copy span {
  color: #a80001;
}
.p-disclaimer_image {
  margin-top: 24px;
}
.p-disclaimer_image img {
  width: 100%;
}
.p-disclaimer_text {
  margin-top: 24px;
  font-size: 1.2rem;
  font-weight: 600;
}
.p-disclaimer_text:last-child {
  margin-top: 0;
}
.p-disclaimer_text_annotation::before {
  content: "※";
  font-size: 12px;
  position: absolute;
  left: -16px;
}

.p-appeal {
  margin-bottom: 40px;
}
.p-appeal_image {
  margin-top: 24px;
}
.p-appeal_image:first-of-type {
  margin-top: 8px;
}

.u-mt0 {
  margin-top: 0;
}

.u-mt24 {
  margin-top: 24px;
}

.u-mt35 {
  margin-top: 35px;
}

/*---- contact ----*/
.contact {
  background: repeating-linear-gradient(-70deg, #fce28e, #fce28e 4px, #fce59a 0, #fce59a 8px);
  padding: 5.5rem 0 6rem;
}
.sp_contact {
  display: none;
}
.spBlock {
  display: none;
}

@media screen and (max-width: 768px) {
  .spBlock {
    display: block;
  }
  .contact {
    padding: 10.2667vw 0;
  }
  .pc_contact {
    display: none;
  }
  .sp_contact {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    transition: all 0.5s ease 0.5s;
    z-index: 9999999;
  }

  .sp_block .sp_contact {
	  transform: translate(-50%, 0);
  }
  .sp_block  .sp_contact.is-hidden {
    transform: translate(-50%, 100%);
  }

  .sp_contact {
    background: rgba(205, 205, 205, 0.7);
    padding: 3.0667vw 3.3333vw;
  }
  .sp_contact .sp_contact__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .sp_contact .sp_contact__telReq {
    width: 45.8667vw;
  }
  .sp_contact .sp_contact__netReq {
    width: 45.8667vw;
  }
  .sp_contact .sp_contact__estimate {
    width: 91.7vw;
  }
  .sp_contact .sp_contact__estimate img {
    filter: drop-shadow(0.1rem 0.1rem 0.1rem rgba(0,0,0,0.35));
  }
}

/* PCのフッター設定 */
.footer-copy {
  background: #cc0022;
  height: 36px;
  display: flex;
  justify-content: center; /* 内部コンテンツを中央揃え */
  align-items: center; /* 上下中央揃え */
  padding: 0 21px;
  width: 100%;
  margin-top: 20px;
}

.copy-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 990px;
}

.footer-logo {
  height: auto;
  max-height: 12px;
}

#current-year{
  color: #fff;
  font-size: 10px; 
  font-family: "Helvetica Neue","Helvetica","Arial","Hiragino Kaku Gothic ProN","Meiryo",sans-serif;
}

.copyright {
  color: #fff;
  font-size: 10px; 
  /*margin: 12px 0 8px;*/
  white-space: nowrap;
  font-family: "Helvetica Neue","Helvetica","Arial","Hiragino Kaku Gothic ProN","Meiryo",sans-serif;
}
.br-sp {
  display: none;
}

/* SP時のフッター設定 */
@media screen and (max-width: 1020px) {
    .footer-copy {
  height: 65px;
  padding: 12px 0 8px;
}
  /* ロゴを非表示 */
  .footer-logo {
    display: none;
  }

  .copy-inner {
    justify-content: center;
       /*padding: 12px 0 8px 0;*/
  }

  .copyright {
     
    text-align: center;
  }
    .br-sp {
    display: inline-block;
  }
}

