@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/media/font/NotoSansJP-Black.woff") format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/media/font/NotoSansJP-Bold.woff") format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/media/font/NotoSansJP-Medium.woff") format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/media/font/NotoSansJP-Regular.woff") format("truetype");
}
/*-- foundationフォルダの中の_index.scss --*/
body {
  color: #000;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
h5,
table,
th,
td,
ul,
li,
ol,
dl,
dt,
dd,
form,
p,
figure,
fieldset {
  margin: 0px;
  padding: 0px;
  font-weight: 500;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  list-style-type: none;
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0;
  text-underline-offset: 3px;
}
@media only screen and (max-width: 767px) {
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  table,
  th,
  td,
  ul,
  li,
  ol,
  dl,
  dt,
  dd,
  form,
  p,
  figure,
  fieldset {
    font-size: 14px;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}
a img {
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  backface-visibility: hidden;
}

input,
textArea,
select,
button {
  background: none;
  margin: 0px;
  outline: none;
  padding: 0px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "メイリオ", sans-serif;
  font-weight: normal;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  list-style-type: none;
  -webkit-appearance: none;
}

select {
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
}

button {
  cursor: pointer;
}

* {
  box-sizing: border-box;
}

/*                link
======================================================= */
a {
  color: #000;
  text-decoration: none;
}

/*-- componentフォルダの中の_index.scss --*/
.c-band {
  text-align: center;
  background-color: #F4F11D;
  padding: 7px 0;
}
@media only screen and (max-width: 767px) {
  .c-band.--reco {
    padding: 18px 0;
  }
}
.c-band.--key {
  padding-top: 23px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .c-band.--key {
    padding-top: 17px;
    padding-bottom: 21px;
  }
}
.c-band.--check {
  padding: 30px 0;
}
@media only screen and (max-width: 767px) {
  .c-band.--check {
    padding: 25px 0;
  }
}
.c-band__ttl {
  font-size: 60px;
  font-weight: 900;
  color: #122D75;
}
@media only screen and (max-width: 767px) {
  .c-band__ttl {
    font-size: 24px;
  }
}
.c-band__ttl.--key {
  line-height: 1.3;
}
.c-band__sub-ttl {
  font-size: 40px;
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  .c-band__sub-ttl {
    font-size: 32px;
  }
}
.c-band__sub-ttl.--key {
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .c-band__sub-ttl.--key {
    padding-top: 10px;
  }
}

.c-headline {
  font-size: 30px;
  font-weight: 700;
  color: #F4F11D;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-headline {
    font-size: 24px;
  }
}
.c-headline.--left {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .c-headline.--left {
    text-align: center;
  }
}

.c-btn-cntr {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-btn::after {
  /* 初期アニメーション */
  animation: shiny 4s ease-in-out infinite;
}

.c-btn.is-hover::after {
  /* ホバー時に一度だけ再生 */
  animation: shine-hover 1.2s ease-in-out forwards;
}

.c-btn.restart-loop::after {
  /* アニメーションリセット用 */
  animation: none;
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 80px;
  background-color: #F4F11D;
  border: 2px solid #122D75;
  color: #122D75;
  font-weight: 700;
  transition: 0.5s;
  position: relative;
  padding: 11px 30px 11px 40px;
  max-width: 240px;
  margin: 0 auto;
  font-size: 20px;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .c-btn {
    font-size: 16px;
    border-radius: 6px;
    padding: 3px 11px 5px 19px;
    line-height: 1.4;
  }
}
.c-btn::before {
  position: absolute;
  content: "";
  background: url("/media/images/common/icon_roundbtn.svg") center/contain no-repeat;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 767px) {
  .c-btn::before {
    width: 14px;
    height: 14px;
    left: 5px;
  }
}
.c-btn:hover {
  opacity: 0.7;
}
.c-btn.--big {
  font-size: 24px;
  max-width: 600px;
  padding: 22px 35px 25px 58px;
}
@media only screen and (max-width: 767px) {
  .c-btn.--big {
    font-size: 18px;
    padding: 9px 73px 11px 70px;
    border-radius: 50px;
    text-align: center;
  }
}
.c-btn.--big::before {
  width: 30px;
  height: 30px;
  left: 20px;
}
@media only screen and (max-width: 767px) {
  .c-btn.--big::before {
    width: 22px;
    height: 22px;
    left: 15px;
  }
}

.c-btn .shine {
  position: absolute;
  top: -50%;
  left: -30%;
  width: 30px;
  height: 150px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  pointer-events: none;
}

@keyframes shiny {
  0% {
    left: -30%;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
@keyframes shine-hover {
  0% {
    left: -30%;
  }
  100% {
    left: 120%;
  }
}
.c-ttl {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
}
.c-ttl .red {
  color: #E02828;
}
.c-ttl .yellow {
  color: #F4F11D;
}
.c-ttl .white {
  color: #fff;
}
.c-ttl.--20 {
  font-size: 20px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .c-ttl.--20 {
    font-size: 14px;
  }
}
.c-ttl.--24 {
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .c-ttl.--24 {
    font-size: 16px;
  }
}
.c-ttl.--30 {
  font-size: 30px;
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  .c-ttl.--30 {
    font-size: 21px;
  }
}
.c-ttl.--36 {
  font-size: 36px;
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  .c-ttl.--36 {
    font-size: 24px;
  }
}
.c-ttl.--40 {
  font-size: 40px;
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  .c-ttl.--40 {
    font-size: 28px;
    line-height: 1.5;
  }
}
.c-ttl.--50 {
  font-size: 50px;
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  .c-ttl.--50 {
    font-size: 28px;
  }
}
.c-ttl.--80 {
  font-size: 80px;
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  .c-ttl.--80 {
    font-size: 40px;
  }
}
.c-ttl.--center {
  text-align: center;
}
.c-ttl.--navy {
  color: #122D75;
}
.c-ttl.--bold {
  font-weight: 700;
}

.c-width {
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
  padding: 0 30px;
}
@media only screen and (max-width: 767px) {
  .c-width {
    padding: 0 16px;
  }
}
.c-width.--900 {
  max-width: 900px;
}
.c-width.--930 {
  max-width: 930px;
}
.c-width.--975 {
  max-width: 975px;
}
@media only screen and (max-width: 767px) {
  .c-width.--spthin {
    padding: 0 8px;
  }
}

.c-wrap {
  margin: 20px 0 80px;
  position: relative;
}

.c-txt {
  font-size: 16px;
  font-weight: 400;
}
.c-txt.--13 {
  font-size: 13px;
}
@media only screen and (max-width: 767px) {
  .c-txt.--13 {
    font-size: 12px;
  }
}
.c-txt.--18 {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .c-txt.--18 {
    font-size: 16px;
  }
}
.c-txt.--21 {
  font-size: 21px;
}
@media only screen and (max-width: 767px) {
  .c-txt.--21 {
    font-size: 16px;
  }
}
.c-txt.--24 {
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .c-txt.--24 {
    font-size: 16px;
  }
}
.c-txt .red {
  color: #E02828;
}
.c-txt.--bold {
  font-weight: 700;
}
.c-txt.--center {
  text-align: center;
}

/*-- utilityフォルダの中の_index.scss --*/
@media only screen and (min-width: 1024px) {
  .u-pc-hide {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .u-tb-hide {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .u-sp-hide {
    display: none;
  }
}

.u-sp-space {
  display: none;
}
@media only screen and (max-width: 767px) {
  .u-sp-space {
    display: inline;
  }
}

.u-txt-left {
  text-align: left;
}

.u-txt-center {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .u-txt-center.--sp {
    text-align: left;
  }
}

.u-txt-right {
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .u-block-center-tb {
    margin-left: auto;
    margin-right: auto;
  }
}

.u-ml-auto {
  margin-left: auto;
}

.u-mr-auto {
  margin-right: auto;
}

.u-ib {
  display: inline-block;
}

.u-bold {
  font-weight: 700;
}

a.u-link-txt {
  text-decoration: underline;
  color: #5D7DBA;
}

.u-bg-light-sky {
  background-color: blue;
}

.pc_none {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .pc_none {
    display: block;
  }
}

.tb_none {
  display: none;
}
@media only screen and (max-width: 767px) {
  .tb_none {
    display: block;
  }
}

/*-- layoutフォルダの中の_index.scss --*/
.is-sp-menu-opened {
  overflow: hidden;
}

.l-wrap {
  overflow: hidden;
}

.l-ft__inr {
  background-color: #292929;
  padding-top: 32px;
  padding-bottom: 51px;
}
.l-ft__cont {
  padding-left: 77px;
  gap: 81px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .l-ft__cont {
    padding-left: 53px;
    gap: 48px;
  }
}
.l-ft__link {
  color: #fff;
  text-decoration: underline;
  transition: 0.5s;
  font-size: 16px;
  color: #B8B6B6;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .l-ft__link {
    font-size: 12px;
  }
}
@media only screen and (min-width: 1272px) {
  .l-ft__link:hover {
    opacity: 0.7;
  }
}

.p-search-wrap {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  background-color: #ecf1f3;
}

/* 表示時に適用されるクラス */
.p-search-wrap.is-active {
  max-height: 100%; /* 十分な高さに設定（必要に応じて調整） */
  opacity: 1;
}

.p-sheet-list {
  margin-top: 26px;
}
@media only screen and (max-width: 767px) {
  .p-sheet-list {
    margin-top: 16px;
  }
}
.p-sheet-list__ttl {
  border: 2px solid #122D75;
  background-color: #fff;
  letter-spacing: 0;
  padding: 1px 3px 3px;
}
@media only screen and (max-width: 767px) {
  .p-sheet-list__ttl {
    font-size: 20px !important;
    padding: 7px;
  }
}
.p-sheet-list__ttl .small {
  font-weight: 400;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .p-sheet-list__ttl .small {
    font-size: 16px;
  }
}
.p-sheet-list__sub-ttl {
  margin: 22px 20px 0;
  font-size: 18px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-sheet-list__sub-ttl {
    font-size: 16px;
    margin: 25px 0px 0;
  }
}
.p-sheet-list__sub-ttl + .p-sheet-list__check {
  margin-top: 15px;
}
.p-sheet-list__check {
  display: flex;
  margin: 19px 20px 0 20px;
}
@media only screen and (max-width: 767px) {
  .p-sheet-list__check {
    margin: 13px 5px;
  }
}
.p-sheet-list__check.--generation {
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .p-sheet-list__check.--generation {
    gap: 12px;
  }
}
.p-sheet-list__check.--purpose {
  gap: 24px;
  margin-top: 38px;
}
@media only screen and (max-width: 767px) {
  .p-sheet-list__check.--purpose {
    flex-wrap: wrap;
    margin-top: 19px;
    gap: 12px 24px;
  }
}
.p-sheet-list__check.--degree {
  gap: 55px;
}
@media only screen and (max-width: 767px) {
  .p-sheet-list__check.--degree {
    gap: 24px;
  }
}
.p-sheet-list__check + .p-sheet-list__ttl {
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .p-sheet-list__check + .p-sheet-list__ttl {
    margin-top: 26px;
  }
}
.p-sheet-list__label {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 13px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #b8b6b6;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  transition: 0.5s;
}
@media only screen and (max-width: 767px) {
  .p-sheet-list__label {
    border-radius: 4px;
    font-size: 14px;
    padding: 13px 13px 5px;
  }
}
@media only screen and (max-width: 767px) {
  .p-sheet-list__label.--generation {
    padding: 13px 4px 14px 4px;
  }
}
.p-sheet-list__label.--generation {
  width: calc((100% - 36px) / 4);
  transition: 0.5s;
}
.p-sheet-list__label.--degree {
  width: calc((100% - 110px) / 3);
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
@media only screen and (max-width: 767px) {
  .p-sheet-list__label.--degree {
    width: calc((100% - 48px) / 3);
    gap: 5px;
  }
}
.p-sheet-list__label.--degree img {
  width: 75px;
}
@media only screen and (max-width: 767px) {
  .p-sheet-list__label.--degree img {
    width: 72%;
  }
}
.p-sheet-list__label.--purpose {
  width: calc((100% - 36px) / 4);
  transition: 0.5s;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 15px;
  padding: 13px 4px;
}
@media only screen and (max-width: 767px) {
  .p-sheet-list__label.--purpose {
    width: calc((100% - 24px) / 2);
    padding: 13px 5px 13px 5px;
  }
}

.actions {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 52px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .actions {
    margin-top: 35px;
    gap: 35px;
  }
}

.generation,
.area,
.purpose {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

input[type=radio],
input[type=checkbox] {
  visibility: hidden;
  vertical-align: middle; /* または baseline, text-bottom など調整 */
  margin: 0; /* Safari は radio にデフォルトの margin を持つ */
  width: 0;
}

#clear,
#search {
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
@media only screen and (max-width: 767px) {
  #clear,
  #search {
    padding: 16px;
  }
}

.p-search-txt {
  padding-left: 10px;
  position: relative;
}
.p-search-txt::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  left: -10px;
  background: url("/media/images/common/icon_arrow_white.svg") center/contain no-repeat;
}

#clear {
  background-color: #fff;
  color: #616161;
  width: 120px;
  font-size: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  #clear {
    font-size: 14px;
  }
}

#clear:hover {
  background-color: #ccc;
}

#search {
  background-color: #003366;
  color: #fff;
  width: 200px;
  font-size: 24px;
  font-weight: 600;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #search {
    font-size: 18px;
  }
}
#search::before {
  position: absolute;
  content: "";
}

#search:hover {
  background-color: #002244;
}

#results {
  max-width: 600px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  min-height: 50px;
}

.generation label,
.area label,
.purpose label {
  display: inline-flex;
  align-items: center;
  background-color: #eef1f5;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease-in-out;
}

/* チェックされた input に隣接する label を装飾 */
input[type=radio]:checked + label,
input[type=checkbox]:checked + label {
  background-color: #003366;
  color: #fff;
  border-color: #002244;
}

.generation label,
.area label,
.purpose label {
  display: inline-flex;
  align-items: center;
  background-color: #eef1f5;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease-in-out;
  margin-right: 0.5rem;
}

/* 内包される input に対して checked を確認し、親 label に反映 */
input[type=radio]:checked + label,
input[type=checkbox]:checked + label,
input[type=checkbox]:checked + label {
  background-color: #003366;
  color: #fff;
  border-color: #002244;
}

/* input と label が同一要素内にある場合の指定（実際はこちら） */
label:has(input[type=radio]:checked),
label:has(input[type=checkbox]:checked),
label:has(input[type=checkbox]:checked) {
  background-color: #122D75;
  color: #fff;
}

/* 非対応ブラウザ（例: Safari）対策としてJSでクラス付与も併用可 */
.p-home-fv {
  background-color: #F4F11D;
  border-bottom: 8px solid #122D75;
  padding: 42px 0 66px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-home-fv {
    padding: 14px 0 58px 4px;
  }
}
.p-home-fv__inr {
  display: flex;
  position: relative;
}
.p-home-fv__kv {
  width: 68%;
}
@media only screen and (max-width: 767px) {
  .p-home-fv__kv {
    width: 99%;
  }
}
.p-home-fv__txt {
  font-size: 12px;
  position: absolute;
  top: 10px;
  right: 15px;
}
@media only screen and (max-width: 767px) {
  .p-home-fv__txt {
    top: auto;
    right: auto;
    bottom: 10px;
    left: 10px;
  }
}
.p-home-fv__txt.pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  .p-home-fv__txt.pc {
    display: none;
  }
}
.p-home-fv__txt.sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-home-fv__txt.sp {
    display: flex;
  }
}
.p-home-fv__txt.sp .kome {
  text-indent: -1em;
  padding-left: 1em;
}
.p-home-fv__txt .pr {
  border: 1px solid #616161;
  padding: 0px 3px;
  margin-right: 6px;
  height: -moz-fit-content;
  height: fit-content;
}
.p-home-fv__img {
  position: absolute;
  right: 9px;
  bottom: -65px;
  width: 36%;
}
@media only screen and (max-width: 767px) {
  .p-home-fv__img {
    right: 0px;
    bottom: -62px;
    width: 53%;
  }
}

.p-pickup__inr {
  transition: 0.5s;
  background-color: #ECF1F3;
}
.p-pickup__cont {
  background-color: #122D75;
  text-align: center;
  padding: 21px 0 3px;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .p-pickup__cont {
    max-width: 70%;
    min-width: 300px;
    padding: 12px 0 11px;
  }
}
.p-pickup__sankaku-wrap {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .p-pickup__sankaku-wrap {
    display: flex;
    max-width: 70%;
    min-width: 300px;
  }
}
.p-pickup__sub-ttl {
  color: #fff;
}
.p-pickup__ttl {
  font-size: 32px;
  font-weight: 700;
  color: #F4F11D;
}
@media only screen and (max-width: 767px) {
  .p-pickup__ttl {
    font-size: 20px;
    padding-top: 10px;
    line-height: 1.5;
  }
}
.p-pickup__btn {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  font-size: 18px;
  margin: 20px auto 0;
  padding: 5px 50px 5px 42px;
  transition: 0.5s;
}
@media only screen and (max-width: 767px) {
  .p-pickup__btn {
    margin: 12px auto 0;
    font-size: 16px;
    padding: 10px 64px 7px 42px;
  }
}
.p-pickup__btn.is-active img {
  transform: rotate(-180deg);
}

.p-reco {
  padding-top: 30px;
}
@media only screen and (max-width: 767px) {
  .p-reco {
    padding-top: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .p-reco__band-img {
    width: 80%;
  }
}

.p-reco-list {
  display: flex;
  gap: 48px;
  margin-top: 36px;
}
@media only screen and (max-width: 1023px) {
  .p-reco-list {
    gap: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .p-reco-list {
    gap: 6px;
    padding-left: 3px;
    padding-right: 3px;
    margin-top: 44px;
  }
}
.p-reco-list__item {
  width: calc((100% - 96px) / 3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1023px) {
  .p-reco-list__item {
    width: calc((100% - 48px) / 3);
  }
}
@media only screen and (max-width: 767px) {
  .p-reco-list__item {
    width: calc((100% - 12px) / 3);
  }
}
.p-reco-list__cont {
  padding-bottom: 32px;
  margin-bottom: 22px;
  border: 5px solid #ECF1F3;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .p-reco-list__cont {
    border-width: 3px;
    padding: 5px 6px 34px 6px;
  }
}
.p-reco-list__cont.--red {
  border: 5px solid #E02828;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-reco-list__cont.--red {
    border-width: 3px;
  }
}
.p-reco-list__cont.--red::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 44px solid #0b205a;
  left: 53%;
  transform: translateX(-50%);
  bottom: -151px;
}
@media only screen and (max-width: 1023px) {
  .p-reco-list__cont.--red::after {
    bottom: -182px;
  }
}
@media only screen and (max-width: 767px) {
  .p-reco-list__cont.--red::after {
    bottom: -135px;
  }
}
.p-reco-list__rank {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .p-reco-list__rank {
    width: 80%;
  }
}
.p-reco-list__img-wrap {
  min-height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .p-reco-list__img-wrap {
    min-height: auto;
    max-height: 80px;
    height: 100%;
  }
}
.p-reco-list__img-wrap a {
  transition: 0.5s;
}
@media only screen and (min-width: 1272px) {
  .p-reco-list__img-wrap a:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 767px) {
  .p-reco-list__img {
    max-height: 80px;
    height: 100%;
  }
}
.p-reco-list__ttl {
  font-weight: 700;
  font-size: 20px;
  margin-top: 2px;
}
@media only screen and (max-width: 767px) {
  .p-reco-list__ttl {
    font-size: 14px;
  }
}
.p-reco-list__detail-cont {
  max-width: 190px;
  margin: 14px auto 0;
}
@media only screen and (max-width: 767px) {
  .p-reco-list__detail-cont {
    margin: 18px auto 0;
  }
}
.p-reco-list__plan-ttl {
  color: #fff;
  font-size: 16px;
  background-color: #122D75;
  padding: 5px 5px 3px;
}
@media only screen and (max-width: 767px) {
  .p-reco-list__plan-ttl {
    font-size: 14px;
  }
}
.p-reco-list__plan-ttl.--light {
  background-color: #BECAEC;
  color: #000;
}
.p-reco-list__plan-ttl + img {
  margin-top: 15px;
}
.p-reco-list__price {
  font-size: 16px;
  font-weight: 700;
  margin-top: 12px;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .p-reco-list__price {
    font-size: 14px;
  }
}
.p-reco-list__price .big {
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-reco-list__price .big {
    font-size: 20px;
  }
}
.p-reco-list__price .medium {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .p-reco-list__price .medium {
    font-size: 18px;
  }
}
.p-reco-list__price .red {
  color: #E02828;
}
.p-reco-list__price + .p-reco-list__plan-ttl {
  margin-top: 19px;
}
@media only screen and (max-width: 767px) {
  .p-reco-list__price + .p-reco-list__plan-ttl {
    margin-top: 23px;
  }
}
.p-reco-list__btn {
  margin-top: auto;
}

.p-reason {
  overflow: hidden;
}
.p-reason__inr {
  margin-top: 64px;
  padding-top: 32px;
  padding-bottom: 27px;
  background: linear-gradient(to right, #0b205a 0%, #183482 100%);
}
@media only screen and (max-width: 767px) {
  .p-reason__inr {
    margin-top: 58px;
    padding-top: 6px;
  }
}
.p-reason__cont {
  display: flex;
  padding-right: 25%;
  position: relative;
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  .p-reason__cont {
    margin-top: 10px;
    padding-right: 0;
  }
}
.p-reason__ex {
  background-color: #fff;
  padding: 16px 32px 60px;
  max-width: 628px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-reason__ex {
    padding: 19px 22px 25px;
  }
}
.p-reason__ex::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 67px solid #fff;
  right: -31px;
  transform: translateX(-50%);
  top: -10px;
  transform: rotate(66deg);
}
@media only screen and (max-width: 1023px) {
  .p-reason__ex::after {
    content: none;
  }
}
.p-reason__cap {
  margin-top: 30px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-reason__cap {
    margin-top: 16px;
  }
}
.p-reason__ex-ttl {
  font-size: 24px;
  font-weight: 700;
  padding-left: 68px;
  position: relative;
  line-height: 1.8;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-reason__ex-ttl {
    padding-left: 50px;
    font-size: 19px;
    line-height: 2.2;
    letter-spacing: 0.02em;
  }
}
.p-reason__ex-ttl::before {
  position: absolute;
  content: "";
  background: url("/media/images/common/icon_check.svg") center/contain no-repeat;
  top: 0;
  left: 0;
  width: 58px;
  height: 48px;
}
@media only screen and (max-width: 767px) {
  .p-reason__ex-ttl::before {
    width: 40px;
    height: 40px;
  }
}
.p-reason__txt {
  max-width: 464px;
  padding-left: 10px;
  line-height: 1.4;
  padding-top: 23px;
}
@media only screen and (max-width: 767px) {
  .p-reason__txt {
    padding-left: 0;
    padding-top: 5px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 1023px) {
  .p-reason__txt .pr100 {
    padding-right: 60px;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .p-reason__txt .pr100 {
    padding-right: 100px;
  }
}
.p-reason__img {
  position: absolute;
  right: -3.5%;
  top: -63%;
  width: 44%;
}
@media only screen and (max-width: 1023px) {
  .p-reason__img {
    right: -1.5%;
    top: auto;
    width: 36%;
    bottom: -11%;
  }
}
@media only screen and (max-width: 767px) {
  .p-reason__img {
    right: -6.5%;
  }
}

.p-key {
  margin-top: 40px;
  padding-bottom: 30px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-key {
    margin-top: 44px;
    padding-bottom: 20px;
  }
}
.p-key__item {
  border: 6px solid #122D75;
  margin-top: 40px;
  padding: 34px 63px 72px;
  position: relative;
  background-image: linear-gradient(0deg, transparent 11px, #edeef0 12px), linear-gradient(90deg, transparent 11px, #edeef0 12px);
  background-size: 12px 12px;
}
@media only screen and (max-width: 767px) {
  .p-key__item {
    margin-top: 24px;
    padding: 30px 10px 29px;
  }
}
.p-key__item + .p-key__item {
  margin-top: 36px;
}
@media only screen and (max-width: 767px) {
  .p-key__item + .p-key__item {
    margin-top: 25px;
  }
}
.p-key__item.--pb52 {
  padding-bottom: 52px;
}
@media only screen and (max-width: 767px) {
  .p-key__item.--pb52 {
    padding-bottom: 20px;
  }
}
.p-key__item.--pb38 {
  padding-bottom: 38px;
}
@media only screen and (max-width: 767px) {
  .p-key__item.--pb38 {
    padding-bottom: 23px;
  }
}
.p-key__item.--pt46 {
  padding-top: 46px;
}
@media only screen and (max-width: 767px) {
  .p-key__item.--pt46 {
    padding-top: 31px;
  }
}
.p-key__item-inr {
  max-width: 604px;
  margin: 0 auto;
}
.p-key__item-inr.--640 {
  max-width: 640px;
}
.p-key__item-inr.--760 {
  max-width: 760px;
}
.p-key__ttl {
  letter-spacing: 0;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .p-key__ttl {
    line-height: 1.4;
  }
}
.p-key__sub-ttl + .p-key__ttl {
  margin-top: 10px;
}
.p-key__img {
  margin-top: 32px;
}
@media only screen and (max-width: 767px) {
  .p-key__img {
    margin-top: 25px;
    padding: 0 15px;
  }
}
.p-key__txt {
  margin-top: 55px;
}
@media only screen and (max-width: 767px) {
  .p-key__txt {
    margin-top: 30px;
    padding: 0 10px;
    line-height: 1.7;
  }
}
.p-key__list {
  display: flex;
  gap: 48px;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .p-key__list {
    gap: 24px;
    margin-top: 29px;
    padding: 0 10px;
  }
}
.p-key__list-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #FFFEE4;
  border: 3px solid #122D75;
  padding: 34px 10px;
  width: calc((100% - 48px) / 2);
}
@media only screen and (max-width: 767px) {
  .p-key__list-item {
    padding: 16px 5px;
    width: calc((100% - 24px) / 2);
  }
}
.p-key__list-ttl {
  line-height: 1.4;
  letter-spacing: 0;
  min-height: 3em;
  margin: auto;
}
.p-key__arrow-img {
  position: absolute;
  right: -13%;
  top: -22%;
  width: 38%;
}
@media only screen and (max-width: 1023px) {
  .p-key__arrow-img {
    top: auto;
    bottom: -75px;
    width: 44%;
  }
}
@media only screen and (max-width: 767px) {
  .p-key__arrow-img {
    bottom: -61px;
  }
}
.p-key__arrow-band {
  background-color: #183482;
  max-width: 760px;
  margin: 40px auto 0;
  padding-top: 47px;
  padding-bottom: 56px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-key__arrow-band {
    margin: 25px auto 0;
    max-width: 87%;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.p-key__arrow-ttl {
  line-height: 1.2;
  font-weight: 700 !important;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .p-key__arrow-ttl {
    line-height: 1.5;
  }
}
.p-key__list-img {
  margin: 28px auto 0;
}
@media only screen and (max-width: 767px) {
  .p-key__list-img {
    margin: 18px auto 0;
    width: 85%;
  }
}
.p-key__list-memo {
  margin-top: 42px;
}
@media only screen and (max-width: 767px) {
  .p-key__list-memo {
    font-size: 12px;
    margin-top: 21px;
  }
}
.p-key__sankaku-wrap {
  max-width: 760px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .p-key__sankaku-wrap {
    max-width: 87%;
    margin-top: -1px;
  }
}
.p-key__sankaku {
  width: 100%;
}

.p-point-list {
  margin-top: 47px;
}
@media only screen and (max-width: 767px) {
  .p-point-list {
    margin-top: 17px;
    padding: 0 8px;
  }
}
.p-point-list__item {
  background-color: #fff;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 3px solid #BDBEBE;
  border-right: 3px solid #BDBEBE;
  padding: 20px 20px 25px;
}
@media only screen and (max-width: 767px) {
  .p-point-list__item {
    display: block;
    padding: 18px 20px 20px;
  }
}
.p-point-list__item + .p-point-list__item {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .p-point-list__item + .p-point-list__item {
    margin-top: 18px;
  }
}
.p-point-list__ttl {
  font-weight: 700;
  position: relative;
  padding-left: 52px;
  font-size: 20px;
}
.p-point-list__ttl::before {
  position: absolute;
  content: "";
  background: url("/media/images/common/icon_check.svg") center/contain no-repeat;
  top: 0;
  left: 0;
  width: 35px;
  height: 30px;
}
.p-point-list__txt {
  margin-top: 18px;
}
@media only screen and (max-width: 767px) {
  .p-point-list__txt {
    font-size: 14px;
    line-height: 1.5;
  }
}
.p-point-list__img-wrap {
  flex: none;
  width: 122px;
}
@media only screen and (max-width: 767px) {
  .p-point-list__img-wrap {
    width: 92px;
    float: right;
    padding-left: 1em;
  }
}

.p-comparison__sub-ttl {
  letter-spacing: 0;
  padding-top: 11px;
}
@media only screen and (max-width: 767px) {
  .p-comparison__sub-ttl {
    padding-top: 6px;
  }
}
.p-comparison__ttl {
  font-size: 21px;
  padding-bottom: 25px;
  line-height: 1.1;
}
@media only screen and (max-width: 767px) {
  .p-comparison__ttl {
    padding-bottom: 16px;
  }
}
.p-comparison__txt {
  margin-top: 40px;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .p-comparison__txt {
    margin-top: 23px;
  }
}
.p-comparison__table {
  display: block;
  width: 100%;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .p-comparison__table {
    margin-top: 24px;
  }
}
.p-comparison__table-ttl {
  font-size: 20px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-comparison__table-ttl {
    font-size: 14px;
    margin-top: 3px;
  }
}
.p-comparison__table-img-wrap {
  aspect-ratio: 165/81;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1023px) {
  .p-comparison__table-img-wrap {
    aspect-ratio: 122/81;
  }
}
@media only screen and (max-width: 767px) {
  .p-comparison__table-img-wrap {
    aspect-ratio: 100/81;
  }
}
.p-comparison__table-img-wrap a {
  transition: 0.5s;
}
@media only screen and (min-width: 1272px) {
  .p-comparison__table-img-wrap a:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 767px) {
  .p-comparison__logo-img {
    max-height: 94px;
  }
}
.p-comparison__logo-img.--hairtect {
  max-width: 226px;
  width: 100%;
}
.p-comparison__logo-img.--for {
  max-width: 146px;
  width: 100%;
}
.p-comparison__tbody {
  display: block;
  width: 100%;
}
.p-comparison__tr {
  display: flex;
  width: 100%;
  border: 1px solid #BDBEBE;
}
.p-comparison__tr + .p-comparison__tr {
  border-top: 0;
}
.p-comparison__td {
  width: 33.3333333333%;
  text-align: center;
  padding: 5px 10px 24px;
}
@media only screen and (max-width: 767px) {
  .p-comparison__td {
    padding: 5px 4px 13px;
  }
}
.p-comparison__td:first-of-type {
  background-color: #FFFEE4;
}
.p-comparison__td.--wide {
  width: 100%;
  background-color: #5D7DBA;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  padding: 9px 30px 8px;
}
@media only screen and (max-width: 767px) {
  .p-comparison__td.--wide {
    font-size: 14px;
  }
}
.p-comparison__td.--thin {
  padding-bottom: 12px;
}
@media only screen and (max-width: 1023px) {
  .p-comparison__td.--thin {
    padding-bottom: 8px;
  }
}
.p-comparison__td.--btn {
  padding: 26px 10px 27px;
}
@media only screen and (max-width: 767px) {
  .p-comparison__td.--btn {
    padding: 21px 6px 22px;
  }
}
.p-comparison__td + .p-comparison__td {
  border-left: 1px solid #BDBEBE;
}
.p-comparison__price {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .p-comparison__price {
    font-size: 14px;
  }
}
.p-comparison__price .big {
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-comparison__price .big {
    font-size: 20px;
  }
}
.p-comparison__price .red {
  color: #E02828;
}
.p-comparison__price .first {
  display: inline-block;
  color: #616161;
  border: 1px solid #616161;
  font-weight: 500;
  padding: 4px 8px;
}
@media only screen and (max-width: 767px) {
  .p-comparison__price .first {
    font-size: 12px;
    padding: 2px 12px;
  }
}
.p-comparison__price.--mtWide {
  margin-top: 1em;
}
.p-comparison__price.--flex {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .p-comparison__price.--flex {
    gap: 3px;
    flex-direction: column;
    justify-content: center;
  }
}
.p-comparison__price + .p-reco-list__plan-ttl {
  margin-top: 19px;
}
.p-comparison__td-img {
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  .p-comparison__td-img {
    margin-top: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .p-comparison__td-img.--sp {
    margin-top: 3px;
  }
}
@media only screen and (max-width: 767px) {
  .p-comparison__td-img.--spWide {
    margin-top: 10px;
  }
}
.p-comparison__cap {
  margin-top: 20px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-comparison__cap {
    margin-top: 18px;
    padding-left: 7px;
  }
}

.p-way {
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .p-way {
    margin-top: 45px;
  }
}
.p-way__ttl {
  padding: 30px 0;
  background-color: #122D75;
}
@media only screen and (max-width: 767px) {
  .p-way__ttl {
    padding: 14px 0;
    margin-left: -8px;
    margin-right: -8px;
  }
}

.p-way-list {
  display: flex;
  gap: 14px;
  margin: 24px auto 0;
  max-width: 800px;
}
@media only screen and (max-width: 767px) {
  .p-way-list {
    flex-wrap: wrap;
    padding: 0 10px;
  }
}
.p-way-list__item {
  background-color: #FFFEE4;
  border: 2px solid #122D75;
  width: calc((100% - 42px) / 4);
  text-align: center;
  padding: 20px 10px;
}
@media only screen and (max-width: 767px) {
  .p-way-list__item {
    width: calc((100% - 14px) / 2);
    padding: 20px 10px 10px;
  }
}
.p-way-list__ttl {
  font-size: 18px;
  font-weight: 700;
  color: #122D75;
}
@media only screen and (max-width: 767px) {
  .p-way-list__ttl {
    font-size: 16px;
  }
}
.p-way-list__img-wrap {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .p-way-list__img-wrap {
    margin-top: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .p-way-list__img-wrap img {
    max-width: 103px;
  }
}
.p-way-list__txt {
  font-size: 16px;
  margin-top: 16px;
  min-height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1023px) {
  .p-way-list__txt {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .p-way-list__txt {
    margin-top: 4px;
  }
}

.p-check {
  margin-top: 74px;
  padding-bottom: 60px;
  background-color: #EBEAEA;
}
@media only screen and (max-width: 767px) {
  .p-check {
    margin-top: 24px;
    padding-bottom: 33px;
  }
}
.p-check__list {
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .p-check__list {
    margin-top: 25px;
  }
}
.p-check__item {
  border: 5px solid #122D75;
  background-color: #fff;
  padding: 20px 20px 50px;
}
@media only screen and (max-width: 767px) {
  .p-check__item {
    padding: 30px 12px 26px;
  }
}
.p-check__item.--pb66 {
  padding-top: 35px;
  padding-bottom: 66px;
}
@media only screen and (max-width: 767px) {
  .p-check__item.--pb66 {
    padding-top: 39px;
    padding-bottom: 26px;
  }
}
.p-check__item + .p-check__item {
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .p-check__item + .p-check__item {
    margin-top: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .p-check__cont {
    padding: 0 10px;
  }
}
.p-check__logo {
  margin-left: 13px;
}
@media only screen and (max-width: 1023px) {
  .p-check__logo {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-check__logo {
    margin-left: 0;
    max-height: 148px;
  }
}
.p-check__logo.--clinicfor {
  margin-left: 11px;
  width: 139px;
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .p-check__logo.--clinicfor {
    margin-top: 0;
    margin-left: 0;
    width: 118px;
  }
}
.p-check__logo.--hairtect {
  margin-left: 7px;
  max-width: 227px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-check__logo.--hairtect {
    margin-left: 0;
    width: 100%;
    max-width: 262px;
  }
}
@media only screen and (max-width: 767px) {
  .p-check__logo.--aga {
    width: 100%;
    max-width: 264px;
  }
}
.p-check__ttl-cntr {
  display: flex;
  align-items: center;
  max-height: 120px;
}
@media only screen and (max-width: 767px) {
  .p-check__ttl-cntr {
    max-height: 100%;
    flex-direction: column;
    justify-content: center;
  }
}
.p-check__ttl-wrap {
  width: 33.3333333333%;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .p-check__ttl-wrap {
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .p-check__ttl-wrap.--hairtect {
    margin-top: 15px;
  }
}
.p-check__ttl-wrap a {
  transition: 0.5s;
}
@media only screen and (min-width: 1272px) {
  .p-check__ttl-wrap a:hover {
    opacity: 0.7;
  }
}
.p-check__shop-ttl.--hairtect {
  padding-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .p-check__shop-ttl.--hairtect {
    padding-bottom: 0;
  }
}
.p-check__ttl {
  line-height: 1.2;
  letter-spacing: 0;
}
.p-check__txt {
  margin-top: 38px;
  line-height: 1.3;
}
@media only screen and (max-width: 1023px) {
  .p-check__txt {
    line-height: 1.4;
  }
}
@media only screen and (max-width: 767px) {
  .p-check__txt {
    font-size: 20px !important;
  }
}
.p-check__txt.--mt45 {
  margin-top: 45px;
}
@media only screen and (max-width: 767px) {
  .p-check__txt.--mt45 {
    margin-top: 30px;
  }
}
.p-check__img-wrap {
  text-align: center;
  margin-top: 58px;
}
@media only screen and (max-width: 767px) {
  .p-check__img-wrap {
    margin-top: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .p-check__img-wrap.--mt36 {
    margin-top: 36px;
  }
}
.p-check__img-wrap.--mt32 {
  margin-top: 32px;
}
@media only screen and (max-width: 767px) {
  .p-check__img-wrap.--mt32 {
    margin-top: 36px;
  }
}
.p-check__item-ttl {
  padding-bottom: 34px;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .p-check__item-ttl {
    padding-bottom: 0;
    font-size: 28px !important;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .p-check__item-ttl.--hairtect {
    margin-top: 0;
  }
}
.p-check__cont {
  max-width: 700px;
  margin: 0 auto;
}
.p-check__reason-ttl {
  letter-spacing: 0;
}
.p-check__table {
  display: block;
  width: 100%;
  margin-top: 46px;
}
@media only screen and (max-width: 767px) {
  .p-check__table {
    margin-top: 22px;
  }
}
.p-check__tbody {
  display: block;
  width: 100%;
}
.p-check__th {
  background-color: #5D7DBA;
  color: #fff;
  font-weight: 700;
  width: 200px;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .p-check__th {
    width: 85px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.p-check__td {
  padding: 14px 24px 16px;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .p-check__td {
    padding: 8px 13px 8px;
    font-size: 14px;
    line-height: 1.4;
    min-height: 52px;
    width: calc(100% - 85px);
    display: flex;
    align-items: center;
  }
}
.p-check__td strong {
  font-size: 18px;
  color: #E02828;
}
@media only screen and (max-width: 767px) {
  .p-check__td strong {
    font-size: 16px;
  }
}
.p-check__tr {
  border: 1px solid #616161;
  display: block;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-check__tr {
    display: flex;
  }
}
.p-check__tr + .p-check__tr {
  border-top: 0;
}
.p-check__cap {
  margin-top: 24px;
  line-height: 1.55;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-check__cap {
    margin-top: 18px;
    line-height: 1.5;
  }
}
.p-check__reason {
  background: linear-gradient(to right, #0b205a 0%, #183482 100%);
  padding-bottom: 32px;
  margin: 52px auto 0;
  max-width: 800px;
  padding-top: 25px;
}
@media only screen and (max-width: 767px) {
  .p-check__reason {
    margin: 38px auto 0;
    padding: 16px 16px 20px;
  }
}
.p-check__reason.--mt25 {
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  .p-check__reason.--mt25 {
    margin-top: 36px;
  }
}
.p-check__reason-list {
  background-color: #fff;
  max-width: 628px;
  margin: 28px auto 0;
  padding: 25px 32px 35px;
}
@media only screen and (max-width: 1023px) {
  .p-check__reason-list {
    padding-top: 22px;
    padding-bottom: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .p-check__reason-list {
    margin-top: 17px;
    padding: 17px 9px 18px;
  }
}
.p-check__reason-list.--pb25 {
  padding-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .p-check__reason-list.--pb25 {
    padding: 5px 6px 17px;
  }
}
@media only screen and (max-width: 767px) {
  .p-check__reason-list.--pb25.--sp {
    padding: 18px 6px 21px;
  }
}
.p-check__reason-item {
  padding-left: 68px;
  line-height: 2;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-check__reason-item {
    font-size: 18px !important;
    padding-left: 36px;
    line-height: 1.5;
  }
}
.p-check__reason-item::before {
  position: absolute;
  content: "";
  background: url("/media/images/common/icon_check.svg") center/contain no-repeat;
  top: 0;
  left: 0;
  width: 58px;
  height: 48px;
}
@media only screen and (max-width: 767px) {
  .p-check__reason-item::before {
    width: 32px;
    height: 26px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.p-check__reason-item.--20 {
  line-height: 2.7;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .p-check__reason-item.--20 {
    line-height: 1.5;
  }
}
.p-check__reason-item .underline {
  text-decoration: underline;
}
.p-check__reason-item + .p-check__reason-item {
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .p-check__reason-item + .p-check__reason-item {
    margin-top: 10px;
  }
}
.p-check__reason-txt {
  margin-top: 26px;
  padding-left: 10px;
  line-height: 1.5;
}
@media only screen and (max-width: 1023px) {
  .p-check__reason-txt {
    margin-top: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .p-check__reason-txt {
    font-size: 14px !important;
    line-height: 1.4;
    margin-top: 12px;
    padding-left: 0;
  }
}
.p-check__btn {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .p-check__btn {
    margin-top: 20px;
  }
}

.p-massage {
  padding: 45px 0 52px;
}
@media only screen and (max-width: 767px) {
  .p-massage {
    padding: 31px 0 29px;
  }
}
.p-massage__ttl {
  line-height: 1.2;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .p-massage__ttl {
    font-size: 21px !important;
    line-height: 1.5;
  }
}

.p-popup {
  display: flex;
  flex-direction: column;
}
.p-popup__link {
  display: block;
  transition: 0.5s;
}
@media only screen and (min-width: 1272px) {
  .p-popup__link:hover {
    opacity: 0.7;
  }
}
.p-popup__btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.p-popup__wrap {
  position: fixed;
  opacity: 0;
  z-index: -1;
  transition: 0.5s;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}/*# sourceMappingURL=home.css.map */