@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

::selection {
  background-color: pink;
}

html {
  font-size: 62.5%;
  overflow-x: auto;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  object-fit: cover;
}

a:link,
a:visited {
  color: black;
  text-decoration: none;
  display: inline-block;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

textarea {
  resize: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
  color: #222222;
}

@font-face {
  font-family: "小塚ゴシック Pr6N";
  src: url("../font/pr6n.woff") format("woff");
  src: url("../font/pr6n.otf") format("otf");
  src: url("../font/pr6n.ttf") format("truetype");
  font-weight: 400;
}
.container {
  width: 100%;
  max-width: 103rem;
  padding-right: 1.2rem;
  padding-left: 1.2rem;
  margin-right: auto;
  margin-left: auto;
}

.container-header {
  width: 100%;
  max-width: 120rem;
  padding-right: 1.2rem;
  padding-left: 1.2rem;
  margin-right: auto;
  margin-left: auto;
}

.red700 {
  font-weight: 700;
  color: #ff443b;
}

.black700 {
  font-weight: 700;
  color: #222222;
}

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

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

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

/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #942d2f;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s;
}

#page-top a:hover {
  background: #777;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.l-footer {
  background-color: #ff443b;
  padding: 3rem 1.5rem 12.7rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 2rem 0 10rem;
  }
}
.l-footer__wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 3.6rem;
  column-gap: 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer__wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 3rem;
  }
}
.l-footer__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 9px;
  margin-left: 3.3rem;
}
@media screen and (max-width: 900px) {
  .l-footer__left {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__left {
    width: 55%;
    align-items: center;
  }
}
.l-footer__right {
  text-align: left;
  width: 61.7rem;
  margin-right: 3.3rem;
  transform: translateY(-0.7rem);
}
@media screen and (max-width: 900px) {
  .l-footer__right {
    width: 70%;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__right {
    width: 100%;
  }
}
.l-footer__p {
  color: #fff;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.8;
}
.l-footer__p--special {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 900px) {
  .l-footer__p {
    font-size: 1.2rem;
  }
  .l-footer__p--special {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
}
.l-footer__ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  row-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__ul {
    text-align: center;
    align-items: center;
  }
}
.l-footer__a {
  transition: all 0.3s;
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff !important;
  text-decoration: underline !important;
}
.l-footer__a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.l-footer__copy {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}
.l-footer__footer-logo {
  width: 183px;
}
@media screen and (max-width: 767px) {
  .l-footer__footer-logo {
    width: 100%;
  }
}

.l-header {
  height: 84px;
  line-height: 84px;
  position: fixed;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 60px;
    line-height: 60px;
  }
}
.l-header__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header__container {
    height: 60px;
    line-height: 60px;
  }
}
.l-header__logo {
  width: 24.5rem;
}
@media screen and (max-width: 900px) {
  .l-header__logo {
    width: 22rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 18rem;
  }
}
.l-header__p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .l-header__p {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__p {
    font-size: 1.5rem;
    display: none;
  }
}
.l-header__right {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  column-gap: 4.5px;
  transition: all 0.3s;
  font-size: 2rem;
}
.l-header__right:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 900px) {
  .l-header__right {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__right {
    font-size: 1.5rem;
  }
}
.l-header__home {
  width: 3.44rem;
}
@media screen and (max-width: 900px) {
  .l-header__home {
    width: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__home {
    width: 2.3rem;
  }
}
.l-header__top {
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  .l-header__top {
    display: none;
  }
}

.l-header.hide {
  transform: translateY(-100%);
}

.p-check {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-check {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.p-check__first {
  background-color: #ff443b;
  border-top-right-radius: 7px;
  border-top-left-radius: 7px;
  padding-top: 28px;
  padding-bottom: 28px;
  text-align: center;
  position: relative;
}
.p-check__first-text {
  font-size: 30px;
  color: #fff;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 900px) {
  .p-check__first-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-check__first-text {
    font-size: 14px;
  }
}
.p-check__rec {
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
}
.p-check__body {
  background-color: #faf4f4;
  padding: 59px 35px 35px;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  box-shadow: 3px 3px 15px rgba(34, 34, 34, 0.16);
}
@media screen and (max-width: 767px) {
  .p-check__body {
    padding: 40px 10px 25px;
  }
}
.p-check__child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  row-gap: 20px;
}
.p-check__child:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-check__child {
    row-gap: 15px;
  }
}
.p-check__title-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 15px;
}
@media screen and (max-width: 900px) {
  .p-check__check {
    width: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-check__check {
    width: 22px;
  }
}
.p-check__title {
  font-size: 25px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .p-check__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-check__title {
    font-size: 16px;
  }
}
.p-check__content {
  padding: 28px 30px;
  background-color: #fff;
  width: 100%;
}
.p-check__description {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 900px) {
  .p-check__description {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-check__description {
    font-size: 15px;
  }
}

.p-fv {
  padding-top: 159px;
  padding-bottom: 60px;
  background-color: #faf4f4;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-fv {
    padding-top: 100px;
    padding-bottom: 45px;
  }
}
.p-fv__parent {
  text-align: center;
}
.p-fv__p {
  font-size: 27px;
  margin-bottom: 15px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-fv__p {
    font-size: 18px;
    margin-bottom: 18px;
  }
}
.p-fv__h1 {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 40px;
  color: #000;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-fv__h1 {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 35px;
  }
}
.p-fv__white-box {
  margin: 0 auto;
  width: 870px;
  border-radius: 7px;
  background-color: #fff;
  padding: 35px 55px;
  box-shadow: 3px 3px 15px rgba(34, 34, 34, 0.16);
}
@media screen and (max-width: 900px) {
  .p-fv__white-box {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__white-box {
    padding: 20px 15px 25px;
  }
}
.p-fv__big {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  row-gap: 25px;
}
.p-fv__child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  row-gap: 1px;
  letter-spacing: 0.02em;
}
.p-fv__popUp {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #ff443b;
  padding: 5px 15px;
  border-radius: 30px;
  position: relative;
  margin-block-end: 10px;
}
.p-fv__popUp::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: inherit;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: 0;
  left: 30px;
  transform: translateY(95%);
}
.p-fv__up {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-fv__up {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-fv__title {
  font-size: 25px;
  font-weight: 700;
  text-decoration: underline !important;
  letter-spacing: 0.03em;
  transition: all 0.3s;
  color: #103fac !important;
}
.p-fv__title:hover {
  color: #ff443b;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-fv__title {
    font-size: 16.5px;
  }
}
.p-fv__mouth {
  color: #103fac;
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline !important;
  transition: all 0.3s;
}
.p-fv__mouth:visited {
  color: #103fac;
}
.p-fv__mouth:link {
  color: #103fac;
}
.p-fv__mouth:hover {
  transition: all 0.3s;
  color: #ff443b;
}
@media screen and (max-width: 767px) {
  .p-fv__mouth {
    display: none !important;
  }
}
.p-fv__star-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-fv__star {
    width: 76px;
  }
}
.p-fv__star-number {
  font-size: 26px;
  font-weight: 500;
  color: #103fac;
}
@media screen and (max-width: 767px) {
  .p-fv__star-number {
    font-size: 20px;
  }
}
.p-fv__detail {
  font-size: 20px;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-fv__detail {
    font-size: 14px;
  }
}
.p-fv__detail .st_hiLight {
  background: linear-gradient(transparent 60%, #fde838 60%, #fde838 85%, transparent 85%);
}

.p-table {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-table {
    padding-top: 50px;
  }
}
.p-table__h2 {
  margin-bottom: 32px;
  font-size: 35px;
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  .p-table__h2 {
    font-size: 27px;
  }
}
@media screen and (max-width: 767px) {
  .p-table__h2 {
    font-size: 18px;
  }
}
.p-table__table {
  width: 1000px;
  border-collapse: collapse;
}
.p-table__td {
  border: 1px solid #727272;
}
.p-table__td--1 {
  padding: 10px 0 10px 25px;
}
.p-table__td--2 {
  padding: 11px 0 11px 25px;
}
.p-table__td--3 {
  padding: 5px 10px 10px 10px;
  text-align: center;
}
.p-table__title {
  font-size: 20px;
  font-weight: 700;
  color: #222222;
}
.p-table__title--only {
  transition: all 0.3s;
  text-decoration: underline !important;
  color: #222222;
}
.p-table__title--only:hover {
  transition: all 0.3s;
  color: #ff443b !important;
}
@media screen and (max-width: 767px) {
  .p-table__title {
    font-size: 18px;
  }
}
.p-table__description {
  font-size: 17px;
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-table__description {
    font-size: 15px;
  }
}
.p-table__star-group {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-table__star-text {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-table__review {
    font-size: 15px;
  }
}
.p-table__a {
  font-weight: 700;
  color: #fff !important;
  font-size: 20px;
  background-color: #ff443b;
  width: 100%;
  box-shadow: 0 7px 0 #d81a0f;
  padding-top: 8px;
  padding-bottom: 9px;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.p-table__a:active {
  box-shadow: 0 0px 0 #d81a0f;
  transform: translateY(7px);
}
.p-table__a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 50px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  transform: skewX(-30deg);
  animation-name: shine;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.p-table__a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-table__a {
    font-size: 18px;
  }
}

.p-content {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-content {
    margin-top: 50px;
  }
}
.p-content__group {
  display: flex;
  flex-direction: column;
  row-gap: 90px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-content__group {
    row-gap: 50px;
  }
}
.p-content__child {
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.16);
  border-radius: 7px;
}
.p-content__up {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 25px;
  padding: 28px 35px;
  background-color: #fff;
  width: 100%;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
@media screen and (max-width: 767px) {
  .p-content__up {
    padding: 18px 18px;
    column-gap: 15px;
  }
}
.p-content__number {
  width: 70px;
  left: 16.5px;
  top: -10px;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .p-content__number {
    width: 50px;
  }
}
.p-content__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 35px;
}
@media screen and (max-width: 767px) {
  .p-content__arrow {
    width: 12px;
    right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-content__logo {
    width: 150px;
  }
}
.p-content__up-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  row-gap: 5px;
}
@media screen and (max-width: 767px) {
  .p-content__up-right {
    row-gap: 10px;
  }
}
.p-content__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  columns: #222222;
}
@media screen and (max-width: 767px) {
  .p-content__title {
    font-size: 20px;
  }
}
.p-content__up-link {
  color: #103fac !important;
  text-decoration: underline !important;
  display: inline-block !important;
  transition: all 0.3s;
}
.p-content__up-link img {
  transform: translateY(-7px);
}
.p-content__up-link:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-content__up-link {
    font-size: 15px;
  }
}
.p-content__up-down {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 8px;
}
@media screen and (max-width: 767px) {
  .p-content__up-down {
    flex-direction: column;
    align-items: center;
    row-gap: 3px;
  }
}
.p-content__star-number {
  font-size: 26px;
  font-weight: 500;
  color: #103fac;
}
@media screen and (max-width: 767px) {
  .p-content__star-number {
    font-size: 20px;
  }
}
.p-content__mouth {
  font-size: 18px;
  font-weight: 700;
  color: #103fac;
  text-decoration: underline !important;
}
.p-content__mouth:visited {
  color: #103fac;
}
.p-content__mouth:link {
  color: #103fac;
}
@media screen and (max-width: 767px) {
  .p-content__mouth {
    font-size: 15px;
  }
}
.p-content__down {
  padding: 30px 35px 60px 35px;
  background-color: #faf4f4;
}
@media screen and (max-width: 767px) {
  .p-content__down {
    padding: 20px 8px 40px 8px;
  }
}
.p-content__first-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  column-gap: 29px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .p-content__first-group {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 30px;
  }
}
.p-content__first-right {
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .p-content__first-right {
    width: 100%;
  }
}
.p-content__first-up {
  background-color: #f57a74;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-top: 12px;
  padding-bottom: 12px;
  border-top-right-radius: 7px;
  border-top-left-radius: 7px;
}
@media screen and (max-width: 767px) {
  .p-content__first-up {
    font-size: 18px;
  }
}
.p-content__first-down {
  background-color: #fff;
  border-bottom-right-radius: 7px;
  border-bottom-left-radius: 7px;
}
.p-content__ul {
  display: flex;
  flex-direction: column;
  row-gap: 21px;
  padding: 30px 20px 35px 20px;
}
@media screen and (max-width: 767px) {
  .p-content__ul {
    padding: 20px 10px 15px 10px;
  }
}
.p-content__li {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 8.5px;
  letter-spacing: 0.04em;
  font-size: 18px;
}
.p-content__li span {
  font-weight: 700;
  background: linear-gradient(transparent 60%, #fde838 60%, #fde838 85%, transparent 85%);
}
@media screen and (max-width: 767px) {
  .p-content__li {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-content__check {
    width: 20px;
  }
}
.p-content__table-group {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-content__table-group {
    margin-bottom: 30px;
  }
}
.p-content__dl {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #f57a74;
}
.p-content__dl:not(:last-child) {
  border-bottom: 1px solid #dddddd;
}
.p-content__dl--1 {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.p-content__dl--last {
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
@media screen and (max-width: 767px) {
  .p-content__dl {
    width: 572px;
  }
}
.p-content__dt {
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  line-height: 1;
  padding: 18px 5px;
  width: 20%;
  text-align: center;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .p-content__dt {
    width: 30%;
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-content__dt {
    font-size: 14px;
    padding: 15px 0px;
    width: 146px;
  }
}
.p-content__dd {
  font-size: 17px;
  color: #222222;
  line-height: 1;
  background-color: #fff;
  padding: 18px 31px;
  width: 81%;
}
.p-content__dd--last {
  border-bottom-right-radius: 7px;
}
.p-content__dd--1 {
  border-top-right-radius: 7px;
}
@media screen and (max-width: 900px) {
  .p-content__dd {
    width: 70%;
    font-size: 15px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .p-content__dd {
    font-size: 14px;
    padding: 15px 10px;
    width: 426px;
  }
  .p-content__dd--1 {
    border-top-right-radius: 7px;
  }
  .p-content__dd--last {
    border-bottom-right-radius: 7px;
  }
}
.p-content__dd-link {
  color: #103fac !important;
  text-decoration: underline !important;
}
.p-content__mouth-group {
  width: 100%;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-content__mouth-group {
    margin-bottom: 30px;
  }
}
.p-content__mouth-link {
  display: block;
  width: 72px;
  height: 20px;
  background-color: transparent;
  position: absolute;
  top: 20%;
  left: 26%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-content__mouth-link {
    width: 17%;
    top: 12%;
    left: 28%;
  }
}
.p-content__mouth-img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-content__mouth-img {
    display: none;
  }
}
.p-content__mouth-img--sp {
  display: none;
  transform: translateX(-2px);
}
@media screen and (max-width: 767px) {
  .p-content__mouth-img--sp {
    display: block;
  }
}
.p-content__voice {
  text-align: center;
  margin-bottom: 58px;
}
.p-content__voice-result {
  font-size: 13px;
  color: #222222;
  text-align: right;
  transform: translatey(5px);
}
@media screen and (max-width: 767px) {
  .p-content__voice-result {
    transform: translatey(30px);
  }
}
.p-content__voice-title {
  background-color: #f57a74;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  padding-top: 6px;
  padding-bottom: 6px;
  margin-bottom: 15px;
  color: #fff;
  border-radius: 7px;
}
@media screen and (max-width: 767px) {
  .p-content__voice-title {
    font-size: 17px;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-bottom: 10px;
  }
}
.p-content__swiper {
  padding-bottom: 65px;
  max-width: 936px;
  overflow: hidden;
}
.p-content__swiper-container {
  max-width: 936px;
  position: relative;
}
.p-content__swiper-wrapper {
  height: 354px;
}
.p-content__swiper-content {
  background-color: #fff;
  border-radius: 7px;
  text-align: left;
  position: relative;
  height: 404px;
}
.p-content__swiper-p {
  font-size: 15px;
  color: #404040;
  letter-spacing: 0.04em;
  line-height: 1.8;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 25px;
}
.p-content__swiper-p span {
  color: #1b88d2;
}
.p-content__people-group {
  bottom: 15px;
  width: 88% !important;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}
.p-content__people-left {
  width: 100%;
}
.p-content__special {
  text-align: center;
}
.p-content__special-title {
  background-color: #f8c935;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  padding-top: 6px;
  padding-bottom: 6px;
  margin-bottom: 35px;
  color: #fff;
  border-radius: 7px;
}
@media screen and (max-width: 767px) {
  .p-content__special-title {
    font-size: 17px;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-bottom: 20px;
  }
}
.p-content__button-group {
  margin-top: 40px;
  text-align: center;
}
.p-content__button-group.st_margin {
  margin-bottom: 50px;
}
.p-content__button-text {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
}
.p-content__button-text span {
  color: #ff443b;
}
@media screen and (max-width: 767px) {
  .p-content__button-text {
    font-size: 17px;
  }
}
.p-content__button {
  display: inline-block;
  position: relative;
  padding: 15px 5px;
  border-radius: 33px;
  width: 397px;
  background-color: #ff443b;
  box-shadow: 0px 7px 0px #d81a0f;
  transition: all 0.3s;
  overflow: hidden;
}
.p-content__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-content__button:active {
  box-shadow: none;
  transform: translateY(7px);
}
@media screen and (max-width: 767px) {
  .p-content__button {
    width: 90%;
    padding: 10px 3px;
  }
}
.p-content__button-white {
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-content__button-white {
    font-size: 20px;
  }
}
.p-content__button-effect {
  position: absolute;
  top: 0;
  left: -50px;
  width: 50px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  transform: skewX(-30deg);
  animation-name: shine;
  animation-duration: 3s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.p-content__arrow-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 31px;
}
@media screen and (max-width: 767px) {
  .p-content__arrow-button {
    right: 15px;
    width: 10px;
  }
}

.swiper-pagination {
  transform: translateY(30px);
}

.swiper-pagination-bullet-active {
  background-color: #be7976;
  width: 9px;
  height: 9px;
}

.swiper-pagination-bullet {
  width: 9px;
  height: 9px;
}

.swiper-button-prev::after {
  background-image: url(../img/swiper-left.svg);
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../img/swiper-right.svg);
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  height: 30px;
  width: 30px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

.swiper-button-prev {
  left: -30px;
}

/* 次への矢印 */
.swiper-button-next {
  right: -30px;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 28px;
  margin: auto;
  width: 11px;
}

@keyframes shine {
  0% {
    left: -100px;
  }
  30% {
    left: calc(100% + 50px);
  }
  35% {
    opacity: 0;
  }
  100% {
    left: -50px;
    opacity: 0;
  }
}
.p-bnrArea {
  margin-block-end: 40px;
}
@media (width <= 767px) {
  .p-bnrArea {
    margin-block-end: 30px;
  }
}

.p-bnrArea__text {
  font-size: 20px;
  font-weight: 700;
  margin-block-end: 12px;
  text-align: center;
}
@media (width <= 767px) {
  .p-bnrArea__text {
    font-size: 17px;
  }
}

.p-bnrArea__link {
  transition: opacity 0.3s;
}
.p-bnrArea__link img {
  width: 100%;
}
@media (any-hover: hover) {
  .p-bnrArea__link:hover {
    opacity: 0.7;
  }
}

.p-fixBnr {
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 90px;
  padding-inline: 50px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s, pointer-events 0.3s;
}
.p-fixBnr.is_active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .p-fixBnr {
    min-height: 65px;
    padding-inline: 20px;
  }
}
.p-fixBnr .p-fixBnr__link {
  background-color: color-mix(in srgb, #fff 95%, transparent);
  border: 3px solid #ff443b;
  display: grid;
  grid-template-columns: 1fr max-content;
  min-height: inherit;
}
@media screen and (max-width: 767px) {
  .p-fixBnr .p-fixBnr__link {
    border: 2px solid #ff443b;
  }
}
.p-fixBnr .p-fixBnr__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: color-mix(in srgb, #fff 30%, transparent);
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
@media (any-hover: hover) {
  .p-fixBnr .p-fixBnr__link:hover::before {
    opacity: 1;
    visibility: visible;
  }
}
.p-fixBnr .p-fixBnr__content {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 20px;
  padding-inline: 30px;
  padding-block: 10px;
}
@media screen and (max-width: 767px) {
  .p-fixBnr .p-fixBnr__content {
    padding-inline: 10px;
    padding-block: 5px;
    gap: 5px;
  }
}
.p-fixBnr .p-fixBnr__content img {
  width: 80px;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .p-fixBnr .p-fixBnr__content img {
    width: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-fixBnr .p-fixBnr__content img {
    width: 30px;
  }
}
.p-fixBnr .p-fixBnr__title {
  font-size: 24px;
  font-weight: 700;
  color: #103fac;
}
@media screen and (max-width: 1200px) {
  .p-fixBnr .p-fixBnr__title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-fixBnr .p-fixBnr__title {
    font-size: 12px;
  }
}
.p-fixBnr .p-fixBnr__read {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 24px;
  font-weight: 700;
  background-color: #ff443b;
  color: #fff;
  padding: 10px 20px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-fixBnr .p-fixBnr__read {
    font-size: 12px;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-fixBnr .p-fixBnr__read span {
    display: none;
  }
}
.p-fixBnr .p-fixBnr__read::after {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
  background: url(../img/icon_arrow_right_white.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-fixBnr .p-fixBnr__read::after {
    width: 32px;
  }
}

.p-cta {
  width: 100%;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-cta {
    display: none;
  }
}
.p-cta__a {
  width: 100%;
  transition: all 0.3s;
}
.p-cta__a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-cta__img {
  width: 100%;
  box-shadow: 3px 3px 15px rgba(34, 34, 34, 0.16);
}
.p-cta.p-cta--bottom {
  margin-top: initial;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-cta.p-cta--spUp {
    display: block;
  }
}
.p-cta.p-cta--spUp .container {
  padding-inline: 0;
}
.p-cta .p-cta__text {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta .p-cta__text {
    font-size: 13px;
  }
}