@charset "UTF-8";
/*-----------------------------------------------------
	common content
-----------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
}

.smph_contents {
  font-weight: 400;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
.smph_contents figure {
  margin: 0;
}
.smph_contents img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.smph_contents .is_pc {
  display: none;
}
.smph_contents .txt_bold {
  font-weight: 700;
}
.smph_contents .txt_exbold {
  font-weight: 900;
}
.smph_contents .txt_sml {
  font-size: 14px;
}
.smph_contents .txt_xsml {
  font-size: 10px;
}
.smph_contents .txt_uline {
  text-decoration: underline;
}
.smph_contents .highlight_red {
  display: inline-block;
  margin-right: 0.3em;
  padding: 1px 10px 3px;
  background: #9E0C21;
  color: #fff;
}
.smph_contents h1, .smph_contents h2, .smph_contents h3, .smph_contents h4, .smph_contents h5, .smph_contents h6, .smph_contents ul, .smph_contents ol, .smph_contents li, .smph_contents p {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.smph_contents .inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-inline: 30px;
}

@media screen and (min-width: 768px) {
  .smph_contents .is_sp {
    display: none;
  }
  .smph_contents .is_pc {
    display: block;
  }
  .smph_contents .txt_xsml {
    font-size: 12px;
  }
  .smph_contents .txt_lrg_pc {
    font-size: 18px;
  }
  .smph_contents .inner {
    max-width: 1050px;
    margin: 0 auto;
  }
}
/* link */
.smph_contents .link_red {
  color: #9E0C21;
  text-decoration: underline;
}

@media screen and (min-width: 1024px) {
  .smph_contents .link_red {
    -webkit-transition: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
    transition: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  }
  .smph_contents .link_red:hover {
    opacity: 0.7;
  }
}
/*-----------------------------------------------------
	btn
-----------------------------------------------------*/
.smph_contents .btn_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .smph_contents .btn_block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
  }
}
/* btn_external */
.smph_contents .btn_external {
  display: block;
  position: relative;
  width: min(100%, 260px);
  margin: 0 auto;
  padding: 18px 20px;
  border: 2px solid #9E0C21;
  border-radius: 999px;
  background: #9E0C21;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
.smph_contents .btn_external:before, .smph_contents .btn_external:after {
  position: absolute;
  top: calc(50% - 1px);
  right: 20px;
  width: 12px;
  height: 2px;
  -webkit-transform-origin: calc(100% - 1px) 50%;
  transform-origin: calc(100% - 1px) 50%;
  border-radius: 9999px;
  background-color: #FFF;
  content: "";
  -webkit-transition: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
.smph_contents .btn_external:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.smph_contents .btn_external:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (min-width: 768px) {
  .smph_contents .btn_external {
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .smph_contents .btn_external:hover {
    background: #fff;
    color: #9E0C21;
  }
  .smph_contents .btn_external:hover:before, .smph_contents .btn_external:hover:after {
    background-color: #9E0C21;
  }
}
/* btn_internal */
.smph_contents .btn_internal {
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 10px 20px 10px 10px;
  border: 1px solid #9E0C21;
  border-radius: 999px;
  background: #fff;
  color: #9E0C21;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
.smph_contents .btn_internal:before, .smph_contents .btn_internal:after {
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  width: 2px;
  height: 8px;
  -webkit-transform-origin: 50% calc(100% - 1px);
  transform-origin: 50% calc(100% - 1px);
  border-radius: 9999px;
  background-color: #9E0C21;
  content: "";
  -webkit-transition: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
.smph_contents .btn_internal:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.smph_contents .btn_internal:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (min-width: 1024px) {
  .smph_contents .btn_internal:hover {
    background: #9E0C21;
    color: #fff;
  }
  .smph_contents .btn_internal:hover:before, .smph_contents .btn_internal:hover:after {
    background-color: #fff;
  }
}
/*-----------------------------------------------------
	smph_section_head
--------------------------------------------------*/
.smph_section_head {
  position: relative;
  margin-bottom: 40px;
  color: #9E0C21;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 0.3em;
  text-align: center;
}
.smph_section_head .head {
  font-weight: bold;
  font-size: 36px;
}
.smph_section_head .head span {
  display: inline-block;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
.smph_section_head .head.is-animated span {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.smph_section_head .horizontal .uline {
  display: inline;
  position: relative;
  -webkit-transform: none;
  transform: none;
  -webkit-transition: none;
  transition: none;
}
.smph_section_head .horizontal .uline:after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 2px;
  background: #9E0C21;
  content: "";
  -webkit-transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.smph_section_head .horizontal.is-animated .uline:after {
  width: calc(100% - 0.3em);
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
.smph_section_head .vertical {
  display: inline-block;
  letter-spacing: 0.25em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.smph_section_head .head_note {
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  opacity: 0;
}
.smph_section_head .head_note.is-animated {
  -webkit-animation: fadeInUp 0.4s ease-out forwards;
  animation: fadeInUp 0.4s ease-out forwards;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.smph_section_head .icon_sm {
  position: absolute;
  top: 50%;
  left: calc(50% + 40px);
  width: 58px;
  height: 98px;
  -webkit-transform: rotate(12deg) translateY(-50%);
  transform: rotate(12deg) translateY(-50%);
  -webkit-transform-origin: center;
  transform-origin: center;
}
.smph_section_head .icon_sm_img {
  opacity: 0;
}
.smph_section_head .icon_sm_img.is-animated {
  -webkit-animation: scaleInBounce 0.8s ease-out forwards;
  animation: scaleInBounce 0.8s ease-out forwards;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@media screen and (min-width: 768px) {
  .smph_section_head {
    margin-bottom: 80px;
  }
  .smph_section_head .head {
    font-size: 40px;
  }
  .smph_section_head .icon_sm {
    left: calc(50% + 90px);
    width: 85px;
    height: 157px;
  }
  .smph_section_head .head_note {
    margin-top: 10px;
  }
}
/*-----------------------------------------------------
	smph_card_lists
-------------------------------------------------------*/
.smph_card_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.smph_card_lists + .btn_block {
  margin-top: 40px;
}

.smph_card_item {
  list-style-type: none;
}
.smph_card_item .num {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background: #9E0C21;
  color: #fff;
  font-size: 24px;
  line-height: 50px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  text-align: center;
}
.smph_card_item .head {
  padding-block: 20px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background: #9E0C21;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.smph_card_inner {
  position: relative;
  border-radius: 20px;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .smph_card_lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .smph_card_lists + .btn_block {
    margin-top: 80px;
  }
  .smph_card_item {
    width: calc((100% - 20px) / 2);
  }
  .smph_card_item.w_full {
    width: 100%;
  }
  .smph_card_item .head {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .smph_card_lists {
    gap: 30px;
  }
  .smph_card_item {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 1180px) {
  .smph_card_lists {
    gap: 60px;
  }
  .smph_card_item {
    width: calc((100% - 60px) / 2);
  }
}
/*-----------------------------------------------------
	smph_grid_block
-------------------------------------------------------*/
.smph_grid_block {
  display: grid;
}
.smph_grid_block.grid_cloum {
  grid-template-rows: 1fr;
  grid-template-columns: repeat(2, 1fr);
}
.smph_grid_block.grid_row {
  grid-template-rows: auto auto;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 10px;
}
.smph_grid_block.grid_row .smph_grid_note {
  grid-column: span 2/span 2;
  align-self: start;
  line-height: 1.7;
}

.smph_grid_fig {
  padding-right: 20px;
}

.smph_grid_body {
  -ms-flex-item-align: center;
  align-self: center;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.smph_grid_body .highlight_red {
  padding-right: calc(10px - 0.08em);
}

@media screen and (max-width: 767px) {
  .smph_grid_block.grid_cloum_full {
    grid-template-rows: repeat(3, auto);
    grid-template-columns: 1fr;
  }
  .smph_grid_block.grid_cloum_full .smph_grid_fig {
    padding-right: 0;
  }
  .smph_grid_block.grid_cloum_full .smph_grid_note {
    grid-column: 1/-1;
  }
}
@media screen and (min-width: 768px) {
  .smph_grid_block {
    display: grid;
  }
  .smph_grid_block.grid_cloum {
    grid-template-columns: 50% 1fr;
  }
  .smph_grid_block.grid_row {
    grid-template-rows: auto auto;
    grid-template-columns: 50% 1fr;
    row-gap: 10px;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .smph_grid_block.grid_row .smph_grid_fig {
    grid-row: span 2/span 2;
  }
  .smph_grid_block.grid_row .smph_grid_body {
    -ms-flex-item-align: end;
    align-self: end;
  }
  .smph_grid_block.grid_row .smph_grid_note {
    grid-column-start: 2;
    align-self: start;
  }
  .smph_grid_body {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .smph_grid_fig {
    padding-right: 30px;
  }
  .smph_grid_body {
    line-height: 1.8;
  }
}
/*-----------------------------------------------------
	smph_note_block
-------------------------------------------------------*/
.smph_note_block {
  margin-top: 10px;
  line-height: 1.7;
}
.smph_note_block.mgt20 {
  margin-top: 24px;
}

/*-----------------------------------------------------
	smph_main_visual
-----------------------------------------------------*/
.smph_main_visual {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #d7e5ee;
}
.smph_main_visual .mv {
  width: min(100vw, 350px);
  margin: 0 auto;
  opacity: 0;
}
.smph_main_visual .mv .mv_img {
  display: block;
}
.smph_main_visual .mv.is-animated {
  -webkit-animation: fadeInUp 1.2s ease-out forwards;
  animation: fadeInUp 1.2s ease-out forwards;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.smph_main_visual .head {
  position: absolute;
  top: 27%;
  left: 50%;
  width: 301px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
}
.smph_main_visual .head.is-animated {
  -webkit-animation: fadeInRight 0.8s ease-out forwards;
  animation: fadeInRight 0.8s ease-out forwards;
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

@media screen and (min-width: 768px) {
  .smph_main_visual .mv {
    width: min(100vw, 760px);
  }
  .smph_main_visual .head {
    top: 38%;
    width: 638px;
  }
}
/*-----------------------------------------------------
	smph_lead_area
-----------------------------------------------------*/
.smph_lead_area {
  padding-bottom: 80px;
}
.smph_lead_area .lead_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 50px;
}
.smph_lead_area .lead_img {
  z-index: 1;
  position: relative;
  width: min(37.5vw, 160px);
  margin: -86px auto 0;
  opacity: 0;
}
.smph_lead_area .lead_img.is-animated {
  -webkit-animation: scaleInBounce 0.8s ease-out forwards;
  animation: scaleInBounce 0.8s ease-out forwards;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.smph_lead_area .lead_body {
  text-align: center;
  opacity: 0;
}
.smph_lead_area .lead_body.is-animated {
  -webkit-animation: fadeInUp 0.8s ease-out forwards;
  animation: fadeInUp 0.8s ease-out forwards;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.smph_lead_area .head {
  color: #9E0C21;
  font-weight: 800;
  font-size: 24px;
  line-height: 2;
}
.smph_lead_area .txt {
  margin-top: 30px;
  line-height: 2;
}
.smph_lead_area .txt_lrg {
  font-size: 18px;
}
.smph_lead_area .btn_block {
  margin-top: 20px;
}
.smph_lead_area .inpage_block {
  margin-top: 60px;
}
.smph_lead_area .inpage_block .inpage_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 20px;
  list-style: none;
}
.smph_lead_area .inpage_block .inpage_link {
  width: calc((100% - 20px) / 2);
  margin: 0;
  padding: 0;
}
.smph_lead_area .inpage_block .inpage_link:last-child {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .smph_lead_area {
    max-width: 990px;
    margin: 0 auto;
    padding-block: 120px;
  }
  .smph_lead_area .lead_block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 80px;
  }
  .smph_lead_area .lead_img {
    width: 200px;
    margin: 0;
  }
  .smph_lead_area .lead_body {
    text-align: left;
  }
  .smph_lead_area .lead_body.is-animated {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
  }
  .smph_lead_area .head {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 1.8;
  }
  .smph_lead_area .txt {
    margin-top: 10px;
  }
  .smph_lead_area .txt_lrg {
    font-size: 20px;
  }
  .smph_lead_area .btn_block {
    margin-top: 40px;
  }
  .smph_lead_area .inpage_block .inpage_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
  .smph_lead_area .inpage_block .inpage_link {
    width: calc((100% - 80px) / 3);
  }
  .smph_lead_area .inpage_block .inpage_link:last-child {
    width: calc((100% - 80px) / 3);
  }
}
/*-----------------------------------------------------
	smph_catch_area
-----------------------------------------------------*/
.smph_catch_area img {
  display: block;
}
.smph_catch_area .catch_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
  list-style: none;
}
.smph_catch_area .catch_item {
  position: relative;
  background-size: 100% auto;
}
.smph_catch_area .catch_item.item01 {
  background-image: url(../images/item01_bg.png);
}
.smph_catch_area .catch_item.item02 {
  background-image: url(../images/item02_bg.png);
}
.smph_catch_area .catch_item.item03 {
  background-image: url(../images/item03_bg.png);
}
.smph_catch_area .catch_fig {
  opacity: 0;
}
.smph_catch_area .catch_fig.is-animated {
  -webkit-animation: fadeInUp 0.8s ease-out forwards;
  animation: fadeInUp 0.8s ease-out forwards;
}
.smph_catch_area .catch_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(80%, 262px);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.smph_catch_area .catch_txt.is-animated {
  -webkit-animation: fadeOpacity 0.4s ease-out forwards;
  animation: fadeOpacity 0.4s ease-out forwards;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.smph_catch_area .copy_txt {
  position: absolute;
  top: calc(50% + 80px);
  left: 50%;
  width: min(60%, 149px);
  -webkit-transform: translate(-50%, -35%);
  transform: translate(-50%, -35%);
  opacity: 0;
}
.smph_catch_area .copy_txt.is-animated {
  -webkit-animation: fadeInBounce 0.8s ease-out forwards;
  animation: fadeInBounce 0.8s ease-out forwards;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.smph_catch_area .item01 .catch_txt {
  width: min(80%, 279px);
}

@media screen and (min-width: 768px) {
  .smph_catch_area {
    /* --- 0.5秒ずつの時間差（セットパターン） --- */
  }
  .smph_catch_area .catch_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .smph_catch_area .catch_item {
    width: calc((100% - 2px) / 3);
  }
  .smph_catch_area .item01 .catch_fig.is-animated {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
  .smph_catch_area .item02 .catch_fig.is-animated {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }
  .smph_catch_area .item03 .catch_fig.is-animated {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
  }
  .smph_catch_area .item01 .catch_txt.is-animated {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
  .smph_catch_area .item02 .catch_txt.is-animated {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }
  .smph_catch_area .item03 .catch_txt.is-animated {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
  }
  .smph_catch_area .item01 .copy_txt.is-animated {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
  }
  .smph_catch_area .item02 .copy_txt.is-animated {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
  }
  .smph_catch_area .item03 .copy_txt.is-animated {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
  }
}
/*-----------------------------------------------------
	smph_footer
-----------------------------------------------------*/
.smph_footer {
  margin-top: 2px;
  background-color: #E1EDF0;
}
.smph_footer .footer_inner {
  position: relative;
  padding: 90px 30px;
}
.smph_footer .footer_inner:before, .smph_footer .footer_inner:after {
  position: absolute;
  top: 50%;
  width: min(30%, 93px);
  height: min(100% - 20px, 210px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.smph_footer .footer_inner:before {
  left: 20px;
  background-image: url(../images/smph_footer_left_sp.webp);
}
.smph_footer .footer_inner:after {
  right: 20px;
  background-image: url(../images/smph_footer_right_sp.webp);
}
.smph_footer .btn_block {
  z-index: 1;
  position: relative;
}

@media screen and (min-width: 768px) {
  .smph_footer .footer_inner {
    width: min(80%, 960px);
    margin: 0 auto;
    padding: 70px 30px;
  }
  .smph_footer .footer_inner:before, .smph_footer .footer_inner:after {
    top: auto;
    bottom: 0;
    width: min(35%, 236px);
    height: min(100% - 20px, 277px);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .smph_footer .footer_inner:before {
    left: 20px;
    background-image: url(../images/smph_footer_left.webp);
    background-position: left bottom;
  }
  .smph_footer .footer_inner:after {
    right: 20px;
    background-image: url(../images/smph_footer_right.webp);
    background-position: right bottom;
  }
}
@media screen and (min-width: 1024px) {
  .smph_footer .footer_inner {
    padding: 140px 30px;
  }
  .smph_footer .footer_inner:before, .smph_footer .footer_inner:after {
    width: min(35%, 236px);
  }
}
/*-----------------------------------------------------
	smph_howto_area
-----------------------------------------------------*/
.smph_howto_area {
  margin-top: 2px;
  padding-block: 40px;
  background: #E1EDF0;
}
.smph_howto_area .head.horizontal {
  text-align: left;
}
.smph_howto_area.bg_pink {
  background: rgba(158, 12, 33, 0.12);
}
.smph_howto_area .smph_card_item > .txt_sml {
  margin-top: 8px;
}
.smph_howto_area .smph_grid_block {
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .smph_howto_area .head.horizontal {
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) {
  .smph_howto_area {
    padding-block: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .smph_howto_area .smph_grid_block {
    padding: 30px;
  }
}
/*-----------------------------------------------------
	smph_howto_faq
-----------------------------------------------------*/
.smph_faq_area {
  margin-top: 2px;
  padding-block: 40px;
  background: #E1EDF0;
}
.smph_faq_area .faq_block {
  margin-bottom: 40px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
.smph_faq_area .faq_icon:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 50px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 0;
  text-align: center;
}
.smph_faq_area .faq_ques {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  padding-left: 65px;
  color: #9E0C21;
  font-weight: bold;
}
.smph_faq_area .faq_ques:after {
  background-color: #9E0C21;
  content: "Q";
  color: #fff;
}
.smph_faq_area .faq_answer {
  position: relative;
  padding-left: 65px;
}
.smph_faq_area .faq_answer:after {
  background-color: #fff;
  content: "A";
  color: #9E0C21;
}
.smph_faq_area .faq_answer .answer_inner {
  padding: 15px 20px;
  border-radius: 20px;
  background: #fff;
}
.smph_faq_area .faq_answer sub {
  vertical-align: 1px;
}
.smph_faq_area .smph_note_block {
  letter-spacing: 0;
}

@media screen and (min-width: 768px) {
  .smph_faq_area {
    padding-block: 100px;
  }
  .smph_faq_area .faq_block {
    margin-bottom: 80px;
  }
  .smph_faq_area .faq_icon:after {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  .smph_faq_area .faq_ques,
  .smph_faq_area .faq_answer {
    min-height: 60px;
    padding-left: 90px;
    font-size: 18px;
  }
  .smph_faq_area .faq_answer .answer_inner {
    padding: 20px 30px;
  }
  .smph_faq_area .smph_section_head {
    text-align: left;
  }
}
/*-----------------------------------------------------
	アニメーション
-----------------------------------------------------*/
@-webkit-keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    -webkit-transform: translateX(-47%);
    transform: translateX(-47%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    -webkit-transform: translateX(-47%);
    transform: translateX(-47%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInBounce {
  0% {
    -webkit-transform: translate(-50%, 35%);
    transform: translate(-50%, 35%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translate(-50%, -65%);
    transform: translate(-50%, -65%);
    opacity: 1;
  }
  70% {
    -webkit-transform: translate(-50%, -20%);
    transform: translate(-50%, -20%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes fadeInBounce {
  0% {
    -webkit-transform: translate(-50%, 35%);
    transform: translate(-50%, 35%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translate(-50%, -65%);
    transform: translate(-50%, -65%);
    opacity: 1;
  }
  70% {
    -webkit-transform: translate(-50%, -20%);
    transform: translate(-50%, -20%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@-webkit-keyframes scaleInBounce {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 1;
  }
  85% {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scaleInBounce {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 1;
  }
  85% {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*# sourceMappingURL=maps/style.css.map */