@charset "UTF-8";
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** SPスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*@function vw($size, $viewport:1920) {
  $rate: 100 / $viewport;
  @return $rate * $size * 1vw;
}*/
html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 62.5%;
  color: #333;
  line-height: 1.6;
}

body,
input,
button,
textarea,
select {
  /*font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;*/
  /*font-family: "Noto Sans Japanese","Noto Sans JP","Hiragino Kaku Gothic ProN",Meiryo,sans-serif;*/
  font-family: "Noto Sans CJK JP", "Noto Sans Japanese", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 14px;
}

img {
  max-width: 100%;
  height: auto;
}

.sp {
  display: block;
}

.pc {
  display: none;
}

.common_pcnolink {
  pointer-events: visible;
}

.common_inner {
  /*width: 86%;*/
  width: 92%;
}

.ank {
  padding-top: 55px;
  margin-top: -55px;
}
@media screen and (min-width: 481px) {
  .ank {
    padding-top: 90px;
    margin-top: -90px;
  }
}

.common_txt01 {
  line-height: 2;
  letter-spacing: 0.05em;
}

.common_tx_c {
  text-align: center;
}

.common_en01 {
  font-family: "Montserrat", sans-serif;
}

.common_jp01 {
  font-family: "Noto Sans CJK JP", "Noto Sans Japanese", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.common_btn01 {
  width: 100%;
  max-width: 325px;
  height: 55px;
}
.common_btn01 a {
  overflow: hidden;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  border-radius: 9999px;
  cursor: pointer;
  width: 100%;
  height: 100%;
  background-color: #ff6c02;
  padding-right: 1rem;
}
.common_btn01 a::before {
  background: url(../images/common/icon_arrow_wh.svg);
  background-size: contain;
  position: absolute;
  top: calc(50% - 9px);
  right: 15px;
  content: "";
  width: 17px;
  height: 17px;
  z-index: 2;
}
.common_btn01 a::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ec4e00;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.3s ease;
  transition-property: transform;
}
.common_btn01 a .icon_txt {
  color: #FFF;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 30px;
  font-weight: 700;
  z-index: 2;
}
.common_btn01 a .icon_txt::before {
  background: url(../images/common/icon_mail.svg) no-repeat left top;
  background-size: contain;
  position: absolute;
  top: calc(50% - 7px);
  left: 0;
  content: "";
  width: 20px;
  height: 14px;
}
.common_btn01 a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.common_top_h2ttl {
  text-align: center;
  margin-bottom: 1rem;
}
.common_top_h2ttl .h2_ttl {
  font-size: 2.6rem;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: #003288;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
  margin-bottom: 5px;
}
.common_top_h2ttl .h2_ttl img {
  margin-right: 5px;
  width: 180px;
}
.common_top_h2ttl .common_en01 {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #003288;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
header {
  z-index: 999;
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
}
header .hd_logo {
  margin-left: 4%;
  width: 176px;
}
header button {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}
header .nav_toggle_pc {
  cursor: pointer;
  width: 55px;
  height: 55px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  background-color: #003288;
}
header .nav_toggle_pc span {
  transition: 0.3s;
  border-top: 2px solid #fff;
  width: 28px;
  position: absolute;
  top: 18px;
  left: calc((100% - 28px) / 2);
  text-align: center;
}
header .nav_toggle_pc span:nth-child(2) {
  top: 26px;
}
header .nav_toggle_pc span:nth-child(3) {
  top: 35px;
}
header .nav_toggle_pc span.open:nth-child(1) {
  transform: rotate(-35deg);
  top: 26px;
}
header .nav_toggle_pc span.open:nth-child(2) {
  display: none;
}
header .nav_toggle_pc span.open:nth-child(3) {
  transform: rotate(35deg);
  top: 26px;
}
header .hd_btn01 {
  width: 100%;
  max-width: 325px;
  height: 55px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
header .hd_btn01 a {
  background-color: #ff6c02;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 9999px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
header .hd_btn01 a::before {
  background: url(../images/common/icon_arrow_wh.svg);
  background-size: contain;
  position: absolute;
  top: calc(50% - 9px);
  right: 15px;
  content: "";
  width: 17px;
  height: 17px;
  z-index: 2;
}
header .hd_btn01 a::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ff6c02;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.3s ease;
  transition-property: transform;
}
header .hd_btn01 a .icon_txt {
  color: #FFF;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 34px;
  font-weight: 700;
  z-index: 2;
}
header .hd_btn01 a .icon_txt::before {
  background: url(../images/common/icon_mail.svg) no-repeat left top;
  background-size: contain;
  position: absolute;
  top: calc(50% - 9px);
  left: 0;
  content: "";
  width: 24px;
  height: 17px;
}
header .hd_btn01 a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
header .hd_btn02_sp {
  position: absolute;
  right: 55px;
  top: 0;
  width: 55px;
  height: 55px;
}
header .hd_btn02_sp img {
  width: 100%;
}
header .global_menu.open {
  top: 0;
}
header .global_menu {
  position: fixed;
  top: -500%;
  left: 0;
  width: 100%;
  transition: 0.3s;
  box-sizing: border-box;
  height: 100%;
  z-index: 9;
}
header .global_menu .inblock {
  overflow-y: scroll;
  overflow-x: hidden;
  height: calc(100% - 55px);
  box-sizing: border-box;
  position: relative;
  margin-top: 55px;
  background-color: #fff;
  padding-bottom: 40px;
}
header .global_menu .hd_nav01 {
  box-sizing: border-box;
}
header .global_menu .hd_nav01 > ul {
  border-top: 1px solid #003288;
}
header .global_menu .hd_nav01 > ul > li > a {
  color: #003288;
  padding: 20px 4%;
  letter-spacing: 0.1em;
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  display: block;
  border-bottom: 1px solid #003288;
}
header .global_menu .hd_nav01 > ul > li > a::before {
  background: url(../images/common/icon_arrow.svg);
  background-size: contain;
  position: absolute;
  top: calc(50% - 9px);
  right: 15px;
  content: "";
  width: 17px;
  height: 17px;
  z-index: 2;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pagetop {
  position: fixed;
  right: 10px;
  z-index: 5;
  /*はじめは非表示*/
  opacity: 0;
  bottom: 60px !important;
  transform: translateY(170px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.pagetop a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  text-decoration: none;
}
.pagetop a::before {
  background: url(../images/common/icon_arrow_green.svg) no-repeat center top;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  content: "";
  width: 36px;
  height: 36px;
  margin-left: -18px;
  transform: rotate(-90deg);
}
.pagetop a:hover {
  opacity: 0.7;
}
.pagetop a .pagetop_txt {
  font-size: 10px;
  color: #003288;
  font-weight: 900;
  margin-top: 36px;
  white-space: nowrap;
  display: block;
}

.pagetop.UpMove {
  animation: UpAnime 0.5s forwards;
}

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

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(170px);
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
footer {
  display: flex;
  justify-content: center;
  padding: 40px 0 30px 0;
  text-align: center;
}
footer .ft_menu {
  margin-bottom: 30px;
}
footer .ft_menu ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
footer .ft_menu ul li {
  padding: 0 10px;
  margin: 5px 0;
}
footer .ft_menu ul li a {
  text-decoration: none;
  color: #333;
  letter-spacing: 0.05em;
  font-weight: 700;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}
footer .ft_menu ul li a:hover {
  opacity: 0.7;
  transition: 0.4s;
}
footer .ft_menu ul li:not(:last-child) {
  border-right: 1px solid #DDD;
}
footer .ft_logo {
  margin-bottom: 20px;
}
footer .ft_logo a:hover {
  opacity: 0.7;
  transition: 0.4s;
}
footer address {
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  font-style: normal;
}

/*----------------------------------------------------------------------------
******************************************************************************
** top
******************************************************************************
----------------------------------------------------------------------------*/
.top_main_bg {
  width: 100%;
  padding: 20px 0 40px 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin-top: 55px;
}
.top_main_bg .common_btn01 {
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
.top_main_box {
  position: relative;
}
.top_main_left {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}
.top_main_left::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 38.05rem;
  height: 18.2rem;
  background: url(../images/top/top_main_img03.svg) no-repeat left top;
  background-size: contain;
}
.top_main_left::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 250px;
  width: 8.75rem;
  height: 8.75rem;
  background: url(../images/top/top_main_img01.svg) no-repeat left top;
  background-size: contain;
}
.top_main_right {
  display: none;
}
.top_main_logo {
  box-sizing: border-box;
  padding-right: 0;
  width: 224px;
  position: relative;
  z-index: 2;
  padding-top: 1.8rem;
}
.top_main_ttl {
  font-size: 1.8rem;
  font-size: 5vw;
  color: #003288;
  font-weight: bold;
  font-weight: 900;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  position: relative;
}
.top_main_ttl .cl_txt {
  color: #fff;
  background-color: #01b3c4;
  padding: 0 0.5rem;
}
.top_main_ttl .type01 {
  display: block;
}
.top_main_ttl .type02 {
  display: block;
}
.top_main_ttl::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 17.65rem;
  width: 47.2vw;
  height: 16.3rem;
  height: 43.47vw;
  background: url(../images/top/top_main_img02.svg) no-repeat left top;
  background-size: contain;
}
.top_main_txt {
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
  text-align: center;
}
.top_main_tel {
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.top_main_tel a {
  color: #003288;
  font-size: 3rem;
  font-weight: 700;
  position: relative;
  padding-left: 30px;
  text-decoration: none;
  font-family: "Roboto", serif;
  line-height: 1.2;
}
.top_main_tel a::after {
  content: "";
  position: absolute;
  top: calc(50% - 12px);
  left: 0px;
  width: 25px;
  height: 25px;
  background: url(../images/common/icon_tel.svg) no-repeat left top;
  background-size: contain;
}
.top_main_time {
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 5px;
}

.top_strong_bg {
  display: flex;
  justify-content: center;
  padding: 50px 0 60px 0;
  position: relative;
  overflow: hidden;
}
.top_strong_bg .common_inner {
  position: relative;
  z-index: 2;
}
.top_strong_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 40px;
  background: url(../images/top/sp_strong_bg_sp.png) no-repeat center bottom;
  background-size: cover;
}
.top_strong_bg::after {
  background-color: #ecf2f9;
  content: "";
  position: absolute;
  top: 40px;
  left: 0px;
  width: 100%;
  height: calc(100% - 40px);
}
.top_strong_ttl {
  text-align: center;
  margin-bottom: 1.5rem;
}
.top_strong_ttl .bf_txt {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding-bottom: 5px;
  border-bottom: 2px solid #003288;
  color: #003288;
}
.top_strong_ttl .h2_ttl {
  margin-top: 10px;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}
.top_strong_ttl .h2_ttl .big_txt {
  font-size: 3.1rem;
  margin: 0 1px;
  color: #003288;
}
.top_strong_img .type01 {
  display: block;
}
@media screen and (min-width: 481px) {
  .top_strong_img .type01 {
    display: none;
  }
}
.top_strong_img .type02 {
  display: none;
}
@media screen and (min-width: 481px) {
  .top_strong_img .type02 {
    display: block;
  }
}

.top_strong02_bg {
  display: flex;
  justify-content: center;
  padding: 60px 0;
  background-color: #003288;
  position: relative;
}
.top_strong02_bg::before {
  position: absolute;
  top: 0;
  left: calc(50% - 30px);
  content: "";
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 35px solid #ecf2f9;
}
.top_strong02_bg .common_btn01 {
  margin: 0 auto;
}
.top_strong02_ttl {
  position: relative;
  display: table;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 481px) {
  .top_strong02_ttl {
    padding: 0 30px;
  }
}
.top_strong02_ttl .h2_ttl {
  color: #fff;
  line-height: 1.2;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  font-weight: 900;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.top_strong02_ttl .h2_ttl img {
  width: 180px;
  margin-right: 5px;
}
.top_strong02_ttl .h2_ttl .type02 {
  line-height: 4.48rem;
  display: inline-block;
}
.top_strong02_ttl .big_txt {
  font-size: 2.8rem;
  display: block;
}
.top_strong02_ttl::before {
  position: absolute;
  top: 50%;
  left: -20px;
  content: "";
  border-top: 3px solid #fff;
  width: 50px;
  height: 3px;
  transform: rotate(70deg);
  border-radius: 9999px;
}
.top_strong02_ttl::after {
  position: absolute;
  top: 50%;
  right: -20px;
  content: "";
  border-top: 3px solid #fff;
  width: 50px;
  height: 3px;
  transform: rotate(-70deg);
  border-radius: 9999px;
}
.top_strong02_box {
  margin-top: 35px;
  margin-bottom: 2.5rem;
  background-color: #fff;
  border: 5px solid #0548ba;
  border-radius: 15px;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top_strong02_box ul li {
  padding: 20px 0 25px 0;
  position: relative;
}
.top_strong02_box ul li::before {
  position: absolute;
  left: 0;
  top: 20px;
  width: 46px;
  height: 46px;
  background-color: #01b3c4;
  content: "";
  border-radius: 50%;
}
.top_strong02_box ul li::after {
  position: absolute;
  left: 0.05em;
  top: calc(20px + 0.75rem);
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}
.top_strong02_box ul li:nth-child(1)::after {
  content: "01";
  left: 0.15em;
}
.top_strong02_box ul li:nth-child(2)::after {
  content: "02";
}
.top_strong02_box ul li:nth-child(3)::after {
  content: "03";
}
.top_strong02_box ul li:not(:last-child) {
  background: url(../images/top/top_strong02_line.svg) no-repeat left bottom;
}
.top_strong02_box ul li .top_strong02_subttl {
  color: #003288;
  font-size: 2rem;
  letter-spacing: 0.05em;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 10px;
  padding-left: 55px;
  min-height: 46px;
  display: flex;
  align-items: center;
}
.top_strong02_img {
  display: none;
}

.top_feature_bg {
  display: flex;
  justify-content: center;
  padding: 60px 0 10px 0;
}
.top_feature_subttl {
  padding-left: 60px;
  position: relative;
  margin-bottom: 15px;
}
.top_feature_subttl::before {
  position: absolute;
  left: 0;
  top: 0;
  color: #01b3c4;
  font-size: 3.8rem;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}
.top_feature_subttl .line_txt {
  line-height: 1.4;
  color: #003288;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(transparent 60%, #ffe957 70%);
}
.top_feature_box {
  margin-top: 35px;
}
.top_feature_box ul li {
  margin-bottom: 50px;
}
.top_feature_box ul li:nth-child(1) .top_feature_subttl::before {
  content: "01";
  letter-spacing: 0.05em;
}
.top_feature_box ul li:nth-child(2) .top_feature_subttl::before {
  content: "02";
}
.top_feature_box ul li:nth-child(3) .top_feature_subttl::before {
  content: "03";
}
.top_feature_box ul li:nth-child(4) .top_feature_subttl::before {
  content: "04";
  letter-spacing: -0.05em;
}
.top_feature_img {
  /*border-radius: 15px;
  overflow: hidden;*/
  margin-bottom: 15px;
}
.top_feature_img img {
  width: 100%;
}

.top_flow_bg {
  display: flex;
  justify-content: center;
  padding: 60px 0 40px 0;
  background-color: #003288;
}
.top_flow_bg .common_top_h2ttl .h2_ttl {
  color: #FFF;
}
.top_flow_bg .common_top_h2ttl .common_en01 {
  color: #FFF;
}
.top_flow_box {
  margin-top: 35px;
}
.top_flow_box ul {
  position: relative;
}
.top_flow_box ul::before {
  background: url(../images/top/top_flow_line.svg) repeat-y left top;
  background-size: contain;
  position: absolute;
  left: 35px;
  top: 35px;
  content: "";
  width: 3px;
  height: calc(100% - 13em);
}
@media screen and (min-width: 481px) {
  .top_flow_box ul::before {
    height: calc(100% - 7em);
  }
}
.top_flow_box ul li {
  margin-left: 85px;
  width: calc(100% - 85px);
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
  position: relative;
}
.top_flow_box ul li .h3_ttl {
  color: #003288;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
.top_flow_box ul li::before {
  position: absolute;
  left: -85px;
  top: 0;
  content: "";
  width: 70px;
  height: 70px;
}
.top_flow_box ul li:nth-child(1)::before {
  background: url(../images/top/top_flow_no01.png) no-repeat left top;
  background-size: contain;
}
.top_flow_box ul li:nth-child(2)::before {
  background: url(../images/top/top_flow_no02.png) no-repeat left top;
  background-size: contain;
}
.top_flow_box ul li:nth-child(3)::before {
  background: url(../images/top/top_flow_no03.png) no-repeat left top;
  background-size: contain;
}
.top_flow_box ul li:nth-child(4)::before {
  background: url(../images/top/top_flow_no04.png) no-repeat left top;
  background-size: contain;
}

.top_use_bg {
  display: flex;
  justify-content: center;
  padding: 60px 0 40px 0;
  background-color: #ecf2f9;
}
.top_use_bg .common_top_h2ttl {
  position: relative;
  padding: 0 30px;
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.top_use_bg .common_top_h2ttl::before {
  position: absolute;
  top: 50%;
  left: -20px;
  content: "";
  border-top: 3px solid #003288;
  width: 50px;
  height: 3px;
  transform: rotate(70deg);
  border-radius: 9999px;
}
.top_use_bg .common_top_h2ttl::after {
  position: absolute;
  top: 50%;
  right: -20px;
  content: "";
  border-top: 3px solid #003288;
  width: 50px;
  height: 3px;
  transform: rotate(-70deg);
  border-radius: 9999px;
}
.top_use_box {
  margin-top: 35px;
}
.top_use_box_in {
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
}
.top_use_box_in .h3_ttl {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}
.top_use_box_in .h3_ttl .sml_txt {
  font-size: 1.8rem;
  display: block;
  width: 100%;
}
.top_use_box_img {
  margin-bottom: 1rem;
}

.top_campaign_bg {
  display: flex;
  justify-content: center;
  padding: 50px 0;
  background: url(../images/top/top_campaign_bg.png) no-repeat left top;
  background-size: cover;
}
.top_campaign_bg .common_btn01 {
  margin: 35px auto 0 auto;
}
.top_campaign_ttl {
  background-color: #01b3c4;
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 900;
  display: table;
  padding: 0.5rem 1rem;
  margin: 0 auto;
  text-align: center;
  height: 64px;
}
@media screen and (min-width: 481px) {
  .top_campaign_ttl {
    height: 50px;
    padding: 1rem;
  }
}
.top_campaign_ttl::before, .top_campaign_ttl::after {
  position: absolute;
  top: 0;
  width: 0px;
  height: 0px;
  border-color: #01b3c4 transparent;
  border-style: solid;
  content: "";
}
.top_campaign_ttl::before {
  left: -17px;
  border-width: 32px 0px 32px 17px;
}
@media screen and (min-width: 481px) {
  .top_campaign_ttl::before {
    left: -15px;
    border-width: 25px 0px 25px 15px;
  }
}
.top_campaign_ttl::after {
  right: -17px;
  border-width: 32px 17px 32px 0px;
}
@media screen and (min-width: 481px) {
  .top_campaign_ttl::after {
    right: -15px;
    border-width: 25px 15px 25px 0px;
  }
}
.top_campaign_ttl .type01 {
  display: block;
}
@media screen and (min-width: 481px) {
  .top_campaign_ttl .type01 {
    display: none;
  }
}
.top_campaign_box {
  background-color: #fff;
  padding: 55px 20px 20px 20px;
  border-radius: 15px;
  position: relative;
  top: -34px;
  margin-bottom: -34px;
}
@media screen and (min-width: 481px) {
  .top_campaign_box {
    top: -25px;
    padding: 45px 20px 20px 20px;
    margin-bottom: -25px;
  }
}
.top_campaign_box::before {
  content: "";
  position: absolute;
  bottom: -3rem;
  left: -10px;
  width: 7.4rem;
  height: 19.3rem;
  background: url(../images/top/top_campaign_img.svg) no-repeat left bottom;
  background-size: contain;
}
.top_campaign_box_flex {
  margin-bottom: 15px;
}
.top_campaign_box_in {
  background-color: #ecf2f9;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.top_campaign_box_in .bf_txt {
  color: #003288;
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  font-weight: 900;
  line-height: 1.4;
  position: relative;
  display: table;
  margin-left: auto;
  margin-right: auto;
  padding: 0 25px;
  margin-bottom: 5px;
}
.top_campaign_box_in .bf_txt .common_en01 {
  font-weight: 700;
  margin: 0 0 0 5px;
}
.top_campaign_box_in .bf_txt::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  border-top: 2px solid #003288;
  width: 25px;
  height: 2px;
  transform: rotate(50deg);
  border-radius: 9999px;
}
.top_campaign_box_in .bf_txt::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  border-top: 2px solid #003288;
  width: 25px;
  height: 2px;
  transform: rotate(-50deg);
  border-radius: 9999px;
}
.top_campaign_box_in .line_txt {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-end;
}
.top_campaign_box_in .line_txt .in_txt {
  display: inline;
  line-height: 1.2;
  color: #003288;
  font-size: 3.4rem;
  letter-spacing: 0.05em;
  font-weight: 900;
  background: linear-gradient(transparent 60%, #ffe957 70%);
}
.top_campaign_box_in .line_txt .kome_txt {
  font-size: 1.6rem;
  position: relative;
  top: -1rem;
}
.top_campaign_box_in .line_txt.twogyo .in_txt {
  font-size: 2.8rem;
}
.top_campaign_box_in .sml_txt {
  display: block;
  color: #003288;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
.top_campaign_box .cau_txt {
  margin-left: 40px;
}
.top_campaign_box .cau_txt li {
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 12px;
}
.top_campaign_box .cau_txt li::before {
  content: "※";
}

.top_voice_bg {
  display: flex;
  justify-content: center;
  padding: 60px 0;
}
.top_voice_box_in {
  margin-top: 35px;
  border: 3px solid #003288;
  border-radius: 15px;
  background-color: #ecf2f9;
  padding: 0 1.75rem 2.25rem 1.75rem;
  position: relative;
}
.top_voice_box_ttl {
  display: flex;
  justify-content: space-between;
  position: relative;
  top: -1.7rem;
  left: 0;
  margin-bottom: -1.7rem;
}
.top_voice_box_ttl .h3_ttl {
  font-size: 2rem;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: #003288;
  line-height: 1.4;
  position: relative;
  padding-top: 4.2rem;
  width: calc(100% - 105px);
}
.top_voice_box_ttl .h3_ttl::before {
  position: absolute;
  top: 0.75rem;
  left: -0.75rem;
  content: "";
  background: url(../images/top/top_voice_icon.svg) no-repeat left top;
  background-size: contain;
  width: 3.9rem;
  height: 2.95rem;
}
.top_voice_box_ttl .type01 {
  display: block;
}
@media screen and (min-width: 481px) {
  .top_voice_box_ttl .type01 {
    display: none;
  }
}
.top_voice_box_img {
  width: 95px;
}
.top_voice_box_img img {
  width: 100%;
}
.top_voice_box_catch {
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  margin-top: 10px;
}

.top_voice02_bg {
  display: flex;
  justify-content: center;
  padding: 60px 0 40px 0;
  background-color: #ecf2f9;
}
.top_voice02_box {
  margin-top: 35px;
}
.top_voice02_box_in {
  border: 3px solid #003288;
  border-radius: 15px;
  background-color: #fff;
  padding: 20px 10px 20px 20px;
  position: relative;
  margin-bottom: 20px;
}
.top_voice02_box_in .h3_ttl {
  font-size: 2rem;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: #003288;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
}
.top_voice02_box_in .h3_ttl::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background: url(../images/top/top_voice_ling.svg) no-repeat left top;
  background-size: contain;
  width: 339px;
  height: 3px;
}
.top_voice02_box_in:nth-child(1)::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: url(../images/top/top_voice02_img01.svg) no-repeat right bottom;
  background-size: contain;
  width: 7.5rem;
  height: 14.25rem;
  max-width: 32%;
}
.top_voice02_box_in:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 35px;
  background: url(../images/top/top_voice02_img02.svg) no-repeat right bottom;
  background-size: contain;
  width: 4.45rem;
  height: 13.65rem;
  max-width: 32%;
}
.top_voice02_box_disc {
  overflow: hidden;
}
.top_voice02_box_disc .common_txt01 {
  width: 70%;
}

.top_faq_bg {
  display: flex;
  justify-content: center;
  padding: 5rem 0 5.5rem 0;
}
.top_faq_bg .common_top_h2ttl {
  position: relative;
}
.top_faq_bg .common_top_h2ttl::after {
  content: "";
  position: absolute;
  top: 0px;
  right: -10px;
  width: 78px;
  height: 87px;
  background: url(../images/top/top_faq_ttl.svg);
  background-size: contain;
}
.top_faq_box {
  border-top: 1px solid #DDD;
  margin-top: 30px;
}
.top_faq_box_in {
  border-bottom: 1px solid #DDD;
}
.top_faq_box_in .acctit {
  padding: 15px 40px 15px 50px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.top_faq_box_in .acctit::before {
  position: absolute;
  top: 15px;
  left: 15px;
  content: "";
  background: url(../images/top/top_faq_iconq.svg) no-repeat left top;
  background-size: contain;
  width: 27px;
  height: 27px;
}
.top_faq_box_in .acctit::after {
  position: absolute;
  top: calc(50% - 8px);
  right: 15px;
  content: "";
  background: url(../images/common/icon_plus.svg) no-repeat left top;
  background-size: contain;
  width: 16px;
  height: 16px;
}
.top_faq_box_in .accct {
  display: none;
  padding: 0rem 4rem 1.75rem 5.5rem;
}
.top_faq_box_in.open {
  background-color: #ecf2f9;
}
.top_faq_box_in.open .acctit::after {
  position: absolute;
  top: calc(50% - 1px);
  right: 15px;
  content: "";
  background: url(../images/common/icon_minus.svg) no-repeat left top;
  background-size: contain;
  width: 16px;
  height: 16px;
}

.top_contact_bg {
  display: flex;
  justify-content: center;
  padding: 5.5rem 0 6rem 0;
  background-color: #ecf2f9;
}
.top_contact_box {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  margin-top: 2rem;
}/*# sourceMappingURL=sp.css.map */