@charset "UTF-8";
:root {
  --main-color: #e9608d;
  --base-color: #424242;
  --border-color: #e9608d;
  --font-sans: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", "Meiryo", "Osaka",
      "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --font-plus: "Rounded Mplus 1c", san-serif;
  --font-roboto: "Roboto", san-serif;
}

*,
::before,
::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

@font-face {
  font-family: "Rounded Mplus 1c";
  src: url("../fonts/RoundedMplus1c/RoundedMplus1c-Regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Rounded Mplus 1c";
  src: url("../fonts/RoundedMplus1c/RoundedMplus1c-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Rounded Mplus 1c";
  src: url("../fonts/RoundedMplus1c/RoundedMplus1c-Bold.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Medium.woff") format("woff");
  font-weight: 500;
}
html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
  word-break: break-all;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--base-color);
  overflow-x: hidden;
  position: relative;
  font-weight: 300;
}

.container {
  max-width: 1080px;
  width: auto;
  margin: 0 auto;
}
@media (max-width: 1104px) {
  .container {
    margin: 0 12px;
  }
}

a {
  text-decoration: none;
  transition: all 0.3s;
}
a:hover {
  text-decoration: none;
}

img,
iframe,
video {
  max-width: 100%;
}

img.hide-pc {
  width: 100%;
}

p {
  margin: 0 0 10px;
}
p:last-child {
  margin: 0;
}

strong {
  font-weight: 700;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.block-f {
  margin-left: calc((100vw - 100%) / 2 * -1);
  margin-right: calc((100vw - 100%) / 2 * -1);
}

.bg-linear {
  background-image: url("../images/bg-linear.jpg");
  background-repeat: repeat-y;
  background-size: auto;
}
@media (max-width: 991px) {
  .bg-linear {
    background-size: cover;
  }
}

.bg-pink {
  background: var(--main-color);
  padding: 21px 0 22px;
}
@media (max-width: 991px) {
  .bg-pink {
    padding: 28px 0 37px;
  }
}
.bg-pink p {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 991px) {
  .bg-pink p {
    font-size: 24px;
  }
}
@media (max-width: 374px) {
  .bg-pink p {
    font-size: 20px;
  }
}
.bg-pink .sub-title {
  font-size: 24px;
}
@media (max-width: 991px) {
  .bg-pink .sub-title {
    font-size: 18px;
  }
}
.bg-pink.large p {
  font-size: 36px;
}
@media (max-width: 991px) {
  .bg-pink.large p {
    font-size: 24px;
    line-height: 1.48;
  }
}
@media (max-width: 374px) {
  .bg-pink.large p {
    font-size: 20px;
  }
}
.bg-pink.has-arrow {
  position: relative;
  padding: 28px 0 31px;
}
@media (max-width: 991px) {
  .bg-pink.has-arrow {
    padding: 38px 0 21px;
  }
}
.bg-pink.has-arrow::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 42px 23px 0px 23px;
  border-color: var(--main-color) transparent transparent transparent;
  bottom: -40px;
  left: calc(50% - 1px);
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .bg-pink.has-arrow::after {
    border-width: 37px 23px 0px 23px;
    bottom: -36px;
  }
}
.bg-pink#advantage {
  padding: 14px 0 30px;
}
@media (max-width: 991px) {
  .bg-pink#advantage {
    padding: 20px 0 25px;
  }
}
@media (max-width: 991px) {
  .bg-pink#advantage.has-arrow::after {
    border-width: 40px 23px 0px 23px;
    bottom: -40px;
    left: calc(50% - 6px);
  }
}

.number {
  font-family: var(--font-roboto);
  font-size: 40px;
  font-weight: 300;
  line-height: 28px;
}

.line .btn {
  border-radius: 8px;
  background: linear-gradient(180deg, #e60012 0%, #bb000f 100%), #e60012;
  font-family: var(--font-plus);
  text-align: center;
  color: #fff;
  font-size: 15px;
  display: block;
  font-weight: 800;
  padding: 10px 48px;
}
.line .btn:hover {
  opacity: 0.8;
}

.pink {
  color: #e9608d;
}

.txt-20 {
  font-size: 20px;
}

.mb-19 {
  margin-bottom: 19px;
}

.mb-34 {
  margin-bottom: 34px;
}

@media (max-width: 991px) {
  .txt-19sp {
    font-size: 19px;
    margin: 0 0 14px;
    display: inline-block;
  }
}
@media (max-width: 374px) {
  .txt-19sp {
    font-size: 18px;
  }
}

sup {
  font-size: 10px;
}

.dot {
  position: relative;
}
.dot::before {
  content: "•";
  position: absolute;
  top: -34px;
  color: #fff;
  width: 100%;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 36px;
}
@media (max-width: 991px) {
  .dot::before {
    top: -37px;
    font-size: 36px;
  }
}

.section .title {
  font-size: 48px;
  font-family: var(--font-plus);
  font-weight: 500;
  line-height: 1.34;
  color: var(--main-color);
  text-align: center;
  margin: 0 0 40px;
}
@media (max-width: 991px) {
  .section .title {
    font-size: 36px;
    margin: 0 0 22px;
  }
}
@media (max-width: 374px) {
  .section .title {
    font-size: 32px;
  }
}
.section .title.style-2 {
  color: #917171;
  font-size: 32px;
  margin: 0 0 24px;
}
@media (max-width: 991px) {
  .section .title.style-2 {
    font-size: 28px;
    margin: 0 0 16px;
  }
}
@media (max-width: 374px) {
  .section .title.style-2 {
    font-size: 24px;
  }
}
.section .title .sub-title {
  color: #917171;
  font-size: 24px;
  margin: 0 0 10px;
}
.section .line .btn {
  border-radius: 16px;
  background: linear-gradient(180deg, #e60012 0%, #bb000f 100%), linear-gradient(180deg, #e60012 0%, #cc0312 100%);
  box-shadow: 0px 9px 0px 0px #9b000c;
  max-width: 421px;
  width: 100%;
  margin: 0 auto;
  font-size: 24px;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 700;
  letter-spacing: 2.4px;
  padding: 25px 5px 21px;
}
@media (max-width: 550px) {
  .section .line .btn {
    font-size: 24px;
    max-width: 100%;
  }
}
@media (max-width: 374px) {
  .section .line .btn {
    font-size: 20px;
    padding: 16px 5px 9px;
  }
}

.box-element {
  border-radius: 16px;
  box-shadow: 0px 4px 24px 0px rgba(203, 203, 203, 0.2);
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  header {
    padding: 12px 0;
  }
}
header .container {
  max-width: 100%;
  padding: 0 26px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1104px) {
  header .container {
    padding: 0;
  }
}
header .custom-logo-link {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  header .custom-logo-link {
    flex-direction: column;
    align-items: flex-start;
  }
}
header .logo {
  margin-right: 3px;
}
header .logo img.custom-logo {
  max-width: 131px;
  object-fit: contain;
  height: auto;
}
@media (max-width: 991px) {
  header .logo img.custom-logo {
    max-width: 92px;
  }
}
@media (max-width: 767px) {
  header .logo img.custom-logo {
    max-width: 80px;
  }
}
header .logo .txt {
  font-family: var(--font-plus);
  font-size: 18px;
  color: var(--main-color);
  font-weight: 500;
  letter-spacing: 1.44px;
  border: 3px solid var(--border-color);
  border-radius: 8px;
  padding: 0 8px;
  display: block;
  margin-left: 19px;
  white-space: nowrap;
  line-height: 26px;
}
@media (max-width: 991px) {
  header .logo .txt {
    font-size: 12px;
    line-height: normal;
    padding: 0;
  }
}
@media (max-width: 767px) {
  header .logo .txt {
    margin: 5px 0 0;
    font-size: 7px;
    letter-spacing: 0.56px;
    border-width: 1.2px;
    border-radius: 3px;
  }
}
header .line .btn {
  padding: 13px 48px 13px 49px;
}
@media (max-width: 991px) {
  header .line .btn {
    font-size: 14px;
    padding: 9px 10px 8px;
  }
}
@media (max-width: 374px) {
  header .line .btn {
    font-size: 12px;
    padding: 8px 5px;
  }
}

.main-navigation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.main-navigation ul li {
  display: inline-block;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .main-navigation ul li {
    display: block;
    margin-right: 12px;
    line-height: 20px;
    text-align: right;
  }
}
.main-navigation ul li a {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  color: #363636;
  position: relative;
  padding-right: 22px;
}
@media (max-width: 991px) {
  .main-navigation ul li a {
    font-size: 12px;
    padding-right: 10px;
  }
}
@media (max-width: 374px) {
  .main-navigation ul li a {
    font-size: 10px;
  }
}
.main-navigation ul li a::after {
  content: "";
  position: absolute;
  background-image: url("../images/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  right: 0;
  top: 2px;
}
@media (max-width: 991px) {
  .main-navigation ul li a::after {
    width: 8px;
    height: 8px;
  }
}

.main-visual {
  background-image: url("../images/fv.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  padding: 150px 0 14px;
}
@media (min-width: 992px) and (max-width: 1180px) {
  .main-visual {
    background-position: right 48% center;
    background-color: #fff6f9;
  }
}
@media (max-width: 991px) {
  .main-visual {
    background-image: url("../images/fv-sp.png");
    padding: 79px 0 7px;
    background-size: contain;
    background-color: #fff6f9;
  }
}
.main-visual .content-viewsual img {
  max-width: 985px;
  margin-left: -2px;
}
@media (max-width: 991px) {
  .main-visual .content-viewsual img {
    max-width: 100%;
    margin: 0;
  }
}
@media (max-width: 1104px) {
  .main-visual .container {
    margin: 0 12px 0 10px;
  }
}

.why-choose {
  padding: 48px 0 58px;
}
@media (min-width: 768px) and (max-width: 1180px) {
  .why-choose {
    background-size: cover;
  }
}
@media (max-width: 991px) {
  .why-choose {
    padding: 69px 0 70px;
  }
}
@media (max-width: 767px) {
  .why-choose {
    background-size: contain;
  }
}
@media (max-width: 374px) {
  .why-choose {
    padding: 40px 0;
  }
}
.why-choose .choose-img img, .why-choose .content-choose img {
  width: 100%;
}
.why-choose .choose-img {
  max-width: 978px;
  margin: 0 auto 23px;
}
@media (max-width: 991px) {
  .why-choose .choose-img {
    max-width: 100%;
    margin: 0 auto 36px;
  }
}
@media (max-width: 991px) {
  .why-choose .content-choose {
    margin-bottom: 22px;
  }
}

.check-medical {
  padding: 48px 0 42px;
}
@media (max-width: 991px) {
  .check-medical {
    padding: 52px 0;
  }
}
@media (max-width: 374px) {
  .check-medical {
    padding: 40px 0;
  }
}
.check-medical .title {
  margin: 0 0 30px;
}
@media (max-width: 991px) {
  .check-medical .title {
    font-size: 32px;
    margin: 0 0 34px;
  }
}
@media (max-width: 374px) {
  .check-medical .title {
    font-size: 28px;
  }
}

.statistical-data {
  padding: 48px 0 48px;
  background: #fff6f9;
}
@media (max-width: 991px) {
  .statistical-data {
    padding: 42px 0 72px;
  }
}
@media (max-width: 374px) {
  .statistical-data {
    padding: 40px 0;
  }
}
.statistical-data .title-statistical {
  font-size: 46px;
  font-family: var(--font-plus);
  font-weight: 500;
  line-height: 1.4;
  color: #917171;
  margin: 0 0 39px;
  text-align: center;
}
@media (max-width: 991px) {
  .statistical-data .title-statistical {
    font-size: 26px;
    margin: 0 0 28px;
  }
}
.statistical-data .title-statistical .sub-title {
  font-size: 28px;
  display: block;
  margin: 0 0 8px;
}
@media (max-width: 991px) {
  .statistical-data .title-statistical .sub-title {
    font-size: 20px;
    margin: 0 0 9px;
  }
}
@media (max-width: 991px) {
  .statistical-data .box-2 {
    margin-bottom: 23px;
  }
}
.statistical-data .box-element {
  background: #fff;
  padding: 60px 60px 55px;
  border-radius: 16px;
  box-shadow: 0px 4px 24px 0px rgba(203, 203, 203, 0.2);
  margin: 0 0 40px;
}
@media (max-width: 991px) {
  .statistical-data .box-element {
    padding: 40px 11px 36px;
    margin: 0 0 34px;
  }
}
.statistical-data .box-element.style-2 {
  padding: 52px 80px 54px;
  margin: 0;
}
@media (max-width: 991px) {
  .statistical-data .box-element.style-2 {
    padding: 40px 12px;
  }
}
.statistical-data .box-element .title-box {
  font-size: 32px;
  font-family: var(--font-plus);
  font-weight: 500;
  line-height: 1.34;
  text-align: center;
  color: #917171;
  margin: 0 0 33px;
}
@media (max-width: 991px) {
  .statistical-data .box-element .title-box {
    text-align: left;
    font-size: 22px;
    margin: 0 0 30px;
  }
}
.statistical-data .box-element .title-box .subtitle {
  font-size: 24px;
}
@media (max-width: 991px) {
  .statistical-data .box-element .title-box .subtitle {
    font-size: 18px;
    margin: 0 0 1px;
    display: inline-block;
  }
}
.statistical-data .box-element .title-box .pink {
  color: #e9608d;
  padding-bottom: 0px;
  background-image: linear-gradient(transparent 60%, #F5F1F8 50%);
  background-image: linear-gradient(transparent 60%, #F5F1F8 50%);
  display: inline-block;
  line-height: 36px;
}
.statistical-data .box-element .title-txt {
  margin: 0 0 10px;
}
.statistical-data .box-element .title-txt.style-2 {
  font-size: 16px;
  color: #424242;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
.statistical-data .box-element .title.style-2 {
  margin: 0 0 32px;
}
@media (max-width: 991px) {
  .statistical-data .box-element .title.style-2 {
    font-size: 24px;
    margin: 0 0 11px;
  }
}
@media (max-width: 374px) {
  .statistical-data .box-element .title.style-2 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .statistical-data .box-element .scrollsp {
    overflow-x: auto;
    scrollbar-width: thin;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    margin: 0 0 15px -12px;
  }
}
@media (max-width: 767px) {
  .statistical-data .box-element .scrollsp::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 4px;
    height: 4px;
  }
}
@media (max-width: 767px) {
  .statistical-data .box-element .scrollsp::-webkit-scrollbar-thumb {
    width: 4px;
    height: 4px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 767px) {
  .statistical-data .box-element .scrollsp::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 8px;
    width: 4px;
    height: 4px;
  }
}
@media (max-width: 767px) {
  .statistical-data .box-element .scrollsp img {
    width: 928px;
    max-width: none;
  }
}
.statistical-data .description {
  font-weight: 600;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 1.92px;
  margin: 0 0 31px;
}
@media (max-width: 991px) {
  .statistical-data .description {
    text-align: left;
    margin: 0 0 19px;
    line-height: 1.6;
  }
}
.statistical-data .reponsive-table {
  margin: 0 0 24px;
}
@media (max-width: 767px) {
  .statistical-data .reponsive-table {
    overflow-x: auto;
    scrollbar-width: thin;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    margin: 0 0 12px -12px;
  }
}
@media (max-width: 767px) {
  .statistical-data .reponsive-table::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 4px;
    height: 4px;
  }
}
@media (max-width: 767px) {
  .statistical-data .reponsive-table::-webkit-scrollbar-thumb {
    width: 4px;
    height: 4px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 767px) {
  .statistical-data .reponsive-table::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 8px;
    width: 4px;
    height: 4px;
  }
}
@media (max-width: 767px) {
  .statistical-data .reponsive-table > img {
    width: 752px;
    max-width: none;
  }
}
.statistical-data .content-table {
  border-width: 0px 1px 1px 0px;
  border-style: solid;
  border-color: #e9608d;
  margin: 0 0 32px;
}
.statistical-data .content-table .item-tr {
  display: flex;
  flex-wrap: wrap;
}
.statistical-data .content-table .item-tr > div {
  flex: 1;
  position: relative;
  border-width: 1px 0 0 1px;
  border-style: solid;
  border-color: #e9608d;
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  background: #f5f1f8;
  color: #917171;
}
@media (max-width: 991px) {
  .statistical-data .content-table .item-tr > div {
    padding: 9px 10px 10px;
  }
}
.statistical-data .content-table .item-tr .item-th {
  background: #e9608d;
  border-left-color: #fff;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  font-family: "Noto Sans Japanese", sans-serif;
  padding: 13px;
}
.statistical-data .content-table .item-tr .item-th:first-child {
  border-left-color: #e9608d;
}
.statistical-data .content-table .item-td .txt-medium strong {
  font-size: 15px;
}
.statistical-data .content-table .item-td strong {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 767px) {
  .statistical-data .content-table.custom-0 {
    width: 770px;
    max-width: none;
    margin: 0;
  }
}
.statistical-data .content-table.custom-1 {
  margin: 0 0 16px;
}
@media (max-width: 991px) {
  .statistical-data .content-table.custom-1 {
    margin: 0 0 24px;
  }
}
.statistical-data .content-table.custom-1 .item-td {
  color: #424242;
  font-weight: 600;
  font-size: 16px;
}
.statistical-data .content-table.custom-2 {
  margin: 0 0 26px;
}
@media (max-width: 991px) {
  .statistical-data .content-table.custom-2 {
    margin: 0 0 21px;
  }
}
.statistical-data .content-table.custom-2 .item-td {
  color: #424242;
  font-weight: 600;
  font-size: 16px;
}
.statistical-data .content-table.custom-2 + .title-txt {
  margin: 0 0 6px;
}
@media (max-width: 991px) {
  .statistical-data .content-table.custom-2 + .title-txt {
    margin: 0 0 3px;
    line-height: 1.6;
  }
}
.statistical-data .content-table.custom-2 .item-tr:first-child .item-td:first-child {
  display: flex;
  align-items: center;
}
.statistical-data .content-table.custom-3 {
  margin: 0 0 28px;
  border-width: 3px 4px 4px 3px;
  position: relative;
}
@media (max-width: 991px) {
  .statistical-data .content-table.custom-3 {
    margin: 0 0 18px;
  }
}
.statistical-data .content-table.custom-3 .item-td {
  color: #424242;
  font-weight: 600;
  font-size: 16px;
  padding: 11px 10px 9px;
}
.statistical-data .content-table.custom-3 .item-td:last-child {
  font-size: 14px;
}
@media (max-width: 991px) {
  .statistical-data .content-table.custom-3 .item-td:last-child {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.statistical-data .list-estimate {
  display: flex;
  flex-wrap: wrap;
}
.statistical-data .list-estimate .item {
  width: 50%;
  padding-right: 5px;
  font-size: 13px;
}
.statistical-data .txt-notice li {
  font-size: 10px;
  color: #666;
  font-weight: 600;
  line-height: 1.34;
}

.opportunity-check {
  padding: 67px 0 80px;
}
@media (max-width: 991px) {
  .opportunity-check {
    padding: 51px 0 60px;
  }
}
@media (max-width: 374px) {
  .opportunity-check {
    padding: 40px 0;
  }
}
.opportunity-check .auc-img {
  margin: 0 auto 42px;
  padding: 0 0 31px;
  text-align: center;
  border-bottom: 1px solid #E5E5E5;
}
@media (min-width: 992px) {
  .opportunity-check .auc-img {
    margin: 0 auto 49px;
    padding: 0 0 41px;
    position: relative;
  }
}
@media (min-width: 992px) {
  .opportunity-check .auc-img img {
    max-width: 763px;
    height: auto;
  }
}
.opportunity-check .box-check {
  margin: 57px 0 0;
  padding: 64px 64px 65px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 4px 24px 0px rgba(203, 203, 203, 0.2);
}
@media (max-width: 991px) {
  .opportunity-check .box-check {
    padding: 40px 12px 38px;
    margin: 72px 0 0;
  }
}
.opportunity-check .box-check .content-top, .opportunity-check .box-check .point-img, .opportunity-check .box-check .check-detail, .opportunity-check .box-check .box-comnent {
  margin: 0 0 42px;
}
@media (max-width: 991px) {
  .opportunity-check .box-check .content-top, .opportunity-check .box-check .point-img, .opportunity-check .box-check .check-detail, .opportunity-check .box-check .box-comnent {
    margin: 0 0 7px;
  }
}
.opportunity-check .box-check .content-top {
  max-width: 826px;
  margin: 0 auto 42px;
}
@media (max-width: 991px) {
  .opportunity-check .box-check .content-top {
    max-width: 100%;
    margin: 0 auto 32px;
  }
}
@media (max-width: 991px) {
  .opportunity-check .box-check .point-img {
    margin: 0 0 34px;
  }
}
@media (max-width: 991px) {
  .opportunity-check .box-check .box-comnent {
    margin: 0 0 35px;
  }
}
.opportunity-check .box-check .title.style-2 {
  margin: 0 0 36px;
}
@media (max-width: 991px) {
  .opportunity-check .box-check .title.style-2 {
    margin: 0 0 16px;
  }
}
@media (max-width: 991px) {
  .opportunity-check .box-check .line .btn {
    padding: 16px 5px 9px;
  }
}
.opportunity-check .step-img {
  margin: 0 0 29px;
}
@media (max-width: 991px) {
  .opportunity-check .step-img {
    margin: 0 0 49px;
  }
}
@media (min-width: 992px) {
  .opportunity-check .step-img img {
    max-width: 1092px;
    position: relative;
    right: -75px;
  }
}
.opportunity-check .title {
  margin: 0 0 24px;
}
@media (max-width: 991px) {
  .opportunity-check .title {
    font-size: 32px;
    letter-spacing: -0.1px;
    margin: 0 0 36px;
  }
}
@media (max-width: 374px) {
  .opportunity-check .title {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .opportunity-check .title .sub-title {
    font-size: 18px;
  }
}
.opportunity-check .title.style-2 {
  margin: 0 0 24px;
}
@media (max-width: 991px) {
  .opportunity-check .title.style-2 {
    margin: 0 0 14px;
  }
}

.popular-use {
  padding: 48px 0 42px;
}
@media (max-width: 991px) {
  .popular-use {
    padding: 64px 0 54px;
  }
}
@media (max-width: 374px) {
  .popular-use {
    padding: 40px 0;
  }
}
.popular-use .title {
  margin: 0 0 24px;
}
@media (max-width: 991px) {
  .popular-use .title {
    font-size: 32px;
  }
}
.popular-use .certificate-image {
  text-align: center;
}
@media (min-width: 992px) {
  .popular-use .certificate-image img {
    max-width: 1068px;
    height: auto;
  }
}

.certificate {
  padding: 80px 0 69px;
  background-image: url("../images/bg-certiface.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 991px) {
  .certificate {
    padding: 60px 0 54px;
    background-image: url("../images/bg-certiface-sp.jpg");
  }
}
@media (max-width: 374px) {
  .certificate {
    padding: 40px 0;
  }
}
@media (min-width: 992px) {
  .certificate .certificate-image {
    max-width: 1000px;
    margin: 0 0 0 auto;
  }
}
@media (max-width: 767px) {
  .certificate .container {
    margin: 0 23px 0 15px;
  }
}

.qanda {
  padding: 48px 0 17px;
}
@media (max-width: 991px) {
  .qanda {
    padding: 53px 0 44px;
  }
}
@media (max-width: 374px) {
  .qanda {
    padding: 40px 0;
  }
}
.qanda .title {
  color: #917171;
  margin: 0 0 24px;
}
@media (max-width: 991px) {
  .qanda .title {
    font-size: 32px;
    margin: 0 0 10px;
  }
}
.qanda p {
  text-align: center;
  margin: 0 0 46px;
  font-weight: 600;
  letter-spacing: 1.92px;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .qanda p {
    margin: 0 0 38px;
  }
}
.qanda .element-qanda dl {
  margin: 0;
  border-radius: 16px;
  border: 1px solid #e9608d;
  background: #fff;
  margin: 0 0 32px;
}
@media (max-width: 991px) {
  .qanda .element-qanda dl {
    margin: 0 0 16px;
  }
}
.qanda .element-qanda dl.active dt::after {
  transform: rotate(180deg);
  transform-origin: center center;
}
@media (min-width: 992px) {
  .qanda .element-qanda dl.active dd {
    min-height: 116px;
  }
}
.qanda .element-qanda dt {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.34;
  padding: 32px 50px 28px 80px;
  background: url("../images/q-icon.png") no-repeat top 27px left 23px;
  background-size: auto 34px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 991px) {
  .qanda .element-qanda dt {
    padding: 13px 48px 16px 60px;
    background-size: auto 32px;
    background-position: top 14px left 16px;
    font-size: 18px;
  }
}
.qanda .element-qanda dt::after {
  content: "";
  position: absolute;
  top: 36px;
  right: 32px;
  background-image: url("../images/arrow-pink-bottom.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 32px;
  height: 16px;
  transition: transform 0.2s ease;
}
@media (max-width: 991px) {
  .qanda .element-qanda dt::after {
    width: 24px;
    height: 12px;
    right: 15px;
    top: 14px;
  }
}
.qanda .element-qanda dd {
  display: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 1.92px;
  border-radius: 16px;
  padding: 36px 50px 24px 86px;
  background: url("../images/a-icon.png") no-repeat top 42px left 35px;
  background-size: auto 36px;
  background-color: #f4f1f1;
  position: relative;
  margin: 4px 32px 33px 32px;
}
@media (max-width: 991px) {
  .qanda .element-qanda dd {
    background-size: auto 18px;
    background-position: top 30px left 23px;
    margin: 0 12px 24px 12px;
    padding: 24px 14px 24px 54px;
    line-height: 1.6;
  }
}
.qanda .element-qanda dd p {
  text-align: left;
  margin: 0 0 10px;
}
.qanda .element-qanda dd p:last-child {
  margin: 0;
}

.line-check {
  padding: 48px 0;
}
@media (max-width: 991px) {
  .line-check {
    padding: 38px 0 40px;
  }
}
.line-check .title-line {
  background: #fff;
  border-radius: 16px;
  padding: 12px 5px;
  position: relative;
  color: #e9608d;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 3.84px;
  text-align: center;
  margin: 0 0 39px;
}
@media (max-width: 991px) {
  .line-check .title-line {
    font-size: 24px;
    margin: 0 0 19px;
  }
}
@media (max-width: 374px) {
  .line-check .title-line {
    font-size: 20px;
  }
}
.line-check .title-line::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 22px 0px 22px;
  border-color: #fff transparent transparent transparent;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .line-check .title-line::after {
    border-width: 20px 20px 0px 20px;
    bottom: -19px;
  }
}
.line-check .title {
  color: #fff;
  margin: 0 0 25px;
}
@media (max-width: 991px) {
  .line-check .title {
    font-size: 32px;
    margin: 0 0 35px;
  }
}
@media (max-width: 374px) {
  .line-check .title {
    font-size: 28px;
  }
}
.line-check .box-line {
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 4px 24px 0px rgba(203, 203, 203, 0.2);
  padding: 64px 64px 57px 64px;
}
@media (max-width: 991px) {
  .line-check .box-line {
    padding: 40px 12px 34px;
  }
}
.line-check .content-top {
  margin: 0 auto 9px;
}
@media (min-width: 992px) {
  .line-check .content-top {
    max-width: 834px;
    margin: 0 auto 17px;
    position: relative;
    left: 13px;
  }
}
.line-check .line {
  margin: 0 0 31px;
}
@media (max-width: 991px) {
  .line-check .line {
    margin: 0 0 28px;
  }
}
.line-check .line .btn {
  max-width: 610px;
}
@media (max-width: 991px) {
  .line-check .line .btn {
    max-width: 100%;
    padding: 16px 5px 9px;
  }
}

footer .footer-logo {
  padding: 18px 0 13px;
}
footer .footer-logo .logo {
  text-align: center;
}
footer .footer-logo .logo img {
  max-width: 131px;
  object-fit: contain;
}
footer .site-info {
  background: #e60012;
  padding: 15px 0;
  text-align: center;
  letter-spacing: 0.4px;
}
footer .site-info p {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.48;
}
@media (max-width: 374px) {
  footer .site-info p {
    font-size: 11px;
  }
}

/*------ hide-pc & hide-sp ------*/
@media (min-width: 768px) {
  .hide-pc {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hide-sp {
    display: none !important;
  }
}