@charset "UTF-8";
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*@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;
}
@media screen and (max-width: 1294px) {
  html {
    font-size: 56.25%;
    /* 90% */
    /*font-size: 53.125%;*/
    /* 85% */
  }
}

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: 1.6rem;
}

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

.sp {
  display: none;
}

.pc {
  display: block;
}

.common_container {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.common_pcnolink {
  pointer-events: none;
}

.common_inner {
  max-width: 1200px;
  width: 90.625%;
}
@media screen and (max-width: 1294px) {
  .common_inner {
    width: 84%;
  }
}
@media screen and (max-width: 980px) {
  .common_inner {
    width: 90.625%;
  }
}

.ank {
  padding-top: 90px;
  margin-top: -90px;
}
@media screen and (max-width: 1160px) {
  .ank {
    padding-top: 80px;
    margin-top: -80px;
  }
}

.common_txt01 {
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
}

.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: 40rem;
  height: 7rem;
}
.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: 2rem;
}
.common_btn01 a::before {
  background: url(../images/common/icon_arrow_wh.svg);
  position: absolute;
  top: calc(50% - 11px);
  right: 2rem;
  content: "";
  width: 22px;
  height: 22px;
  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.8rem;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 37px;
  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% - 9px);
  left: 0;
  content: "";
  width: 27px;
  height: 19px;
}
.common_btn01 a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
header {
  z-index: 99;
  width: 100%;
  height: 9rem;
  position: fixed;
  left: 50%;
  top: 0;
  box-sizing: border-box;
  max-width: 1920px;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  display: flex;
  align-self: center;
  justify-content: center;
  transition: 0.4s;
  background-color: #fff;
}
header .common_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1294px) {
  header .common_inner {
    width: 90.625%;
  }
}
header .hd_logo {
  display: flex;
  align-self: center;
  justify-content: center;
  z-index: 99;
  transition: 0.4s;
}
header .hd_logo a:hover {
  opacity: 0.7;
  transition: 0.4s;
}
header .hd_logo_img a {
  position: relative;
}
header .hd_logo_img a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1294px) {
  header .hd_logo {
    height: 3rem;
  }
  header .hd_logo img {
    height: 100%;
    width: auto;
    max-width: inherit;
  }
}
header .global_menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .global_menu nav {
  display: flex;
  align-items: center;
  height: 9rem;
  transition: 0.4s;
}
header .global_menu nav > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
header .global_menu nav > ul > li {
  margin-right: 4rem;
  display: flex;
  align-items: center;
}
header .global_menu nav > ul > li a {
  text-decoration: none;
  color: #333;
  letter-spacing: 0.05em;
  font-weight: 700;
  position: relative;
}
header .global_menu nav > ul > li a::after {
  background-color: #003288;
  bottom: 3px;
  content: "";
  height: 3px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: all 0.3s;
  width: 100%;
}
header .global_menu nav > ul > li a:hover::after {
  bottom: -7px;
  opacity: 1;
}
@media screen and (min-width: 1161px) {
  header .global_menu nav > ul > li.menu_mega {
    position: relative;
    display: flex;
    justify-content: center;
    margin-right: 3rem;
  }
  header .global_menu nav > ul > li.menu_mega div.menu__second-level {
    display: none;
    z-index: 1;
    position: absolute;
    top: 8rem;
    left: 0;
    box-sizing: border-box;
    padding: 1.5rem 3rem;
    border-radius: 0.5rem;
    background-color: #000;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  header .global_menu nav > ul > li.menu_mega div.menu__second-level ul li {
    position: relative;
    padding: 1rem 0;
  }
  header .global_menu nav > ul > li.menu_mega div.menu__second-level ul li a {
    display: inline-block;
    padding-right: 2rem;
    text-decoration: none;
    color: #333;
    letter-spacing: 0.05em;
    position: relative;
    transition: all 0.4s;
    white-space: nowrap;
    font-size: 1.5rem;
    font-family: "Noto Sans CJK JP", "Noto Sans Japanese", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  }
  header .global_menu nav > ul > li.menu_mega div.menu__second-level ul li a:hover {
    transition: all 0.4s;
  }
}
header .hd_btn01 {
  width: 23rem;
  height: 5rem;
}
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::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;
}
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;
}

.nav_toggle_pc {
  display: none;
}

.hd_btn02_sp {
  display: none;
}

@media screen and (max-width: 1160px) {
  .hd_btn02_sp {
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0;
    right: 80px;
  }
  .hd_btn02_sp img {
    width: 100%;
  }
  header {
    height: 80px;
  }
  header .common_inner {
    width: 92%;
  }
  header .hd_btn01 {
    width: 37rem;
    height: 6rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
  }
  header .hd_btn01 a::before {
    background: url(../images/common/icon_arrow_wh.svg);
    background-size: contain;
    position: absolute;
    top: calc(50% - 11px);
    right: 2rem;
    content: "";
    width: 22px;
    height: 22px;
    z-index: 2;
  }
  header .hd_btn01 a .icon_txt {
    font-size: 1.8rem;
    padding-left: 37px;
  }
  header .hd_btn01 a .icon_txt::before {
    width: 27px;
    height: 19px;
  }
  .hd_btn02.sp {
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    right: 80px;
    top: 0;
    z-index: 99;
  }
  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;
  }
  .nav_toggle_pc {
    cursor: pointer;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
    background-color: #003288;
    display: block;
  }
  .nav_toggle_pc span {
    transition: 0.3s;
    border-top: 2px solid #fff;
    width: 34px;
    position: absolute;
    top: 24px;
    left: calc((100% - 34px) / 2);
    text-align: center;
  }
  .nav_toggle_pc span:nth-child(2) {
    top: 37px;
  }
  .nav_toggle_pc span:nth-child(3) {
    top: 50px;
  }
  .nav_toggle_pc span.open:nth-child(1) {
    transform: rotate(-35deg);
    top: 37px;
  }
  .nav_toggle_pc span.open:nth-child(2) {
    display: none;
  }
  .nav_toggle_pc span.open:nth-child(3) {
    transform: rotate(35deg);
    top: 37px;
  }
  .global_menu.open {
    top: 0px;
    height: 100vw;
  }
  .global_menu {
    position: fixed;
    top: -500%;
    left: 0;
    width: 100%;
    transition: 0.3s;
    box-sizing: border-box;
    height: 100%;
    z-index: 9;
  }
  .global_menu .inblock {
    width: 100%;
    /*overflow-y: scroll;*/
    overflow-x: hidden;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    padding-top: 80px;
    background-color: #fff;
  }
  .global_menu .hd_nav01 {
    box-sizing: border-box;
    display: block;
  }
  .global_menu .hd_nav01 > ul {
    border-top: 1px solid #003288;
    display: block;
  }
  .global_menu .hd_nav01 > ul > li {
    display: block;
    margin-right: 0;
  }
  .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;
  }
  .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;
  }
  .global_menu .hd_nav01 > ul > li > a::after {
    content: inherit;
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
footer {
  display: flex;
  justify-content: center;
  padding: 5rem 0 5rem 0;
  text-align: center;
}
footer .ft_menu {
  margin-bottom: 4rem;
}
footer .ft_menu ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
footer .ft_menu ul li {
  padding: 0 3rem;
  margin: 1rem 0;
}
footer .ft_menu ul li a {
  text-decoration: none;
  color: #333;
  letter-spacing: 0.05em;
  font-weight: 700;
  height: 2rem;
  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: 2rem;
}
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%;
  margin-top: 9rem;
  padding: 2.5rem 0 7rem 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.top_main_bg .common_btn01 {
  width: 37rem;
  height: 6rem;
}
.top_main_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top_main_left {
  width: 56.25%;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}
.top_main_left::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 17.5rem;
  height: 17.5rem;
  background: url(../images/top/top_main_img01.svg) no-repeat left top;
  background-size: contain;
}
.top_main_right {
  max-width: 493px;
  width: 41.08%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.top_main_right img {
  position: relative;
  z-index: 2;
}
.top_main_right::after {
  content: "";
  position: absolute;
  top: 0px;
  right: -10rem;
  width: 76.1rem;
  height: 36.4rem;
  background: url(../images/top/top_main_img03.svg) no-repeat left top;
  background-size: contain;
}
.top_main_logo {
  box-sizing: border-box;
  padding-right: 19.5rem;
}
.top_main_ttl {
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: #003288;
  font-weight: 900;
  margin-bottom: 3rem;
  margin-top: 3rem;
}
.top_main_ttl .cl_txt {
  color: #fff;
  background-color: #01b3c4;
  padding: 0 1rem;
}
.top_main_ttl .type01 {
  display: none;
}
@media screen and (max-width: 1260px) {
  .top_main_ttl .type01 {
    display: block;
  }
}
.top_main_ttl .type02 {
  display: block;
}
@media screen and (max-width: 980px) {
  .top_main_ttl .type02 {
    display: none;
  }
}
.top_main_ttl .type03 {
  display: none;
}
@media screen and (max-width: 980px) {
  .top_main_ttl .type03 {
    display: none;
  }
}
.top_main_txt {
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.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;
}

.top_strong_bg {
  display: flex;
  justify-content: center;
  padding: 9rem 0 12rem 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: 260.6rem;
  height: 24.1rem;
  background: url(../images/top/top_strong_bg.svg) no-repeat center top;
  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: 3rem;
}
.top_strong_ttl .bf_txt {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #003288;
  color: #003288;
}
.top_strong_ttl .h2_ttl {
  margin-top: 1.5rem;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.top_strong_ttl .h2_ttl .big_txt {
  font-size: 5rem;
  margin: 0 0.5rem;
  color: #003288;
}
.top_strong_img .type01 {
  display: none;
}
.top_strong_img .type02 {
  display: block;
}

.top_strong02_bg {
  display: flex;
  justify-content: center;
  padding: 11rem 0 9rem 0;
  background-color: #003288;
  position: relative;
}
.top_strong02_bg::before {
  position: absolute;
  top: 0;
  left: calc(50% - 35px);
  content: "";
  width: 0;
  height: 0;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-top: 40px solid #ecf2f9;
}
.top_strong02_bg .common_btn01 {
  margin: 0 auto;
}
.top_strong02_ttl {
  position: relative;
  padding: 0 7.5rem;
  display: table;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}
.top_strong02_ttl .h2_ttl {
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-weight: 900;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.top_strong02_ttl .h2_ttl img {
  margin-right: 5px;
}
.top_strong02_ttl .big_txt {
  font-size: 5rem;
  margin-left: 5px;
  display: inline-block;
}
.top_strong02_ttl::before {
  position: absolute;
  top: calc(50% + 0.5rem);
  left: 0;
  content: "";
  border-top: 4px solid #fff;
  width: 6.2rem;
  height: 4px;
  transform: rotate(50deg);
  border-radius: 9999px;
}
.top_strong02_ttl::after {
  position: absolute;
  top: calc(50% + 0.5rem);
  right: 0;
  content: "";
  border-top: 4px solid #fff;
  width: 6.2rem;
  height: 4px;
  transform: rotate(-50deg);
  border-radius: 9999px;
}
.top_strong02_box {
  margin-top: 4rem;
  margin-bottom: 5rem;
  background-color: #fff;
  border: 8px solid #0548ba;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 2rem 4rem 2rem 5.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top_strong02_box ul {
  width: 77.89%;
  max-width: calc(100% - 242px);
}
@media screen and (max-width: 980px) {
  .top_strong02_box ul {
    width: 100%;
    max-width: inherit;
  }
}
.top_strong02_box ul li {
  padding: 3rem 0 3rem 15rem;
  position: relative;
}
.top_strong02_box ul li::before {
  position: absolute;
  left: 0;
  top: 3rem;
  width: 11.7rem;
  height: 11.7rem;
  background-color: #01b3c4;
  content: "";
  border-radius: 50%;
}
.top_strong02_box ul li::after {
  position: absolute;
  left: 0.3em;
  top: calc(3rem + 0.45em);
  color: #fff;
  font-size: 6.4rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  letter-spacing: 0.05em;
}
.top_strong02_box ul li:nth-child(1)::after {
  content: "01";
}
.top_strong02_box ul li:nth-child(2)::after {
  content: "02";
  left: 0.25em;
}
.top_strong02_box ul li:nth-child(3)::after {
  content: "03";
  left: 0.25em;
}
.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: 3.4rem;
  letter-spacing: 0.05em;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.top_strong02_img {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 22.11%;
  max-width: 242px;
}
@media screen and (max-width: 980px) {
  .top_strong02_img {
    display: none;
  }
}

.top_feature_bg {
  display: flex;
  justify-content: center;
  padding: 11rem 0 6.5rem 0;
}
.top_feature_subttl {
  padding-left: 11rem;
  position: relative;
  margin-bottom: 2.5rem;
}
.top_feature_subttl::before {
  position: absolute;
  left: 0;
  top: 0;
  color: #01b3c4;
  font-size: 7rem;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}
.top_feature_subttl .line_txt {
  line-height: 1.4;
  color: #003288;
  font-size: 3.2rem;
  font-weight: 900;
  background: linear-gradient(transparent 60%, #ffe957 70%);
}
.top_feature_box {
  margin-top: 4rem;
}
.top_feature_box ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top_feature_box ul li {
  width: calc(50% - 2rem);
  margin-bottom: 4rem;
}
.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: 2rem;
}
.top_feature_img img {
  width: 100%;
}

.top_flow_bg {
  display: flex;
  justify-content: center;
  padding: 10rem 0 8.5rem 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 ul {
  position: relative;
}
.top_flow_box ul::before {
  background: url(../images/top/top_flow_line.svg) no-repeat left top;
  background-size: contain;
  position: absolute;
  left: calc(7.5rem - 1.5px);
  top: calc(50% - 236px);
  content: "";
  width: 3px;
  height: 453px;
}
.top_flow_box ul li {
  margin-left: 19rem;
  width: calc(100% - 19rem);
  background-color: #fff;
  border-radius: 15px;
  padding: 3.5rem 4rem;
  margin-bottom: 3.5rem;
  position: relative;
}
.top_flow_box ul li .h3_ttl {
  color: #003288;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.top_flow_box ul li::before {
  position: absolute;
  left: -19rem;
  top: 0;
  content: "";
  width: 15rem;
  height: 15rem;
}
.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: 9rem 0 9.5rem 0;
  background-color: #ecf2f9;
}
.top_use_bg .common_top_h2ttl {
  position: relative;
  padding: 0 7.5rem;
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.top_use_bg .common_top_h2ttl::before {
  position: absolute;
  top: calc(50% + 0.5rem);
  left: 0;
  content: "";
  border-top: 4px solid #003288;
  width: 6.2rem;
  height: 4px;
  transform: rotate(50deg);
  border-radius: 9999px;
}
.top_use_bg .common_top_h2ttl::after {
  position: absolute;
  top: calc(50% + 0.5rem);
  right: 0;
  content: "";
  border-top: 4px solid #003288;
  width: 6.2rem;
  height: 4px;
  transform: rotate(-50deg);
  border-radius: 9999px;
}
.top_use_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 5rem;
}
.top_use_box_in {
  width: calc((100% - 6rem) / 3);
  border-radius: 15px;
  background-color: #fff;
  text-align: center;
  padding: 4rem;
  margin-bottom: 3.5rem;
}
.top_use_box_in .h3_ttl {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  min-height: 5.6rem;
}
.top_use_box_in .h3_ttl .sml_txt {
  font-size: 1.8rem;
  display: block;
  width: 100%;
}
.top_use_box_in:nth-child(1), .top_use_box_in:nth-child(2), .top_use_box_in:nth-child(4) {
  margin-right: 3rem;
}
.top_use_box_img {
  margin-bottom: 2rem;
}

.top_campaign_bg {
  display: flex;
  justify-content: center;
  padding: 10rem 0;
  background: url(../images/top/top_campaign_bg.png) no-repeat center top;
  background-size: cover;
}
.top_campaign_bg .common_btn01 {
  margin: 4rem auto 0 auto;
}
.top_campaign_ttl {
  background: url(../images/top/top_campaign_ttl.png) no-repeat center top;
  background-size: contain;
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 4rem;
  letter-spacing: 0.05em;
  font-weight: 900;
  width: 81.1rem;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.top_campaign_ttl .type01 {
  display: none;
}
.top_campaign_box {
  background-color: #fff;
  padding: 7.5rem 4rem 3rem 4rem;
  border-radius: 20px;
  position: relative;
  margin-top: -35px;
}
.top_campaign_box::before {
  content: "";
  position: absolute;
  bottom: -6rem;
  left: -5rem;
  width: 14.8rem;
  height: 38.6rem;
  background: url(../images/top/top_campaign_img.svg) no-repeat left bottom;
  background-size: contain;
}
.top_campaign_box_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.top_campaign_box_in {
  background-color: #ecf2f9;
  border-radius: 15px;
  padding: 3rem 4rem;
  width: calc(50% - 2rem);
  text-align: center;
}
@media screen and (max-width: 1160px) {
  .top_campaign_box_in {
    width: 100%;
  }
  .top_campaign_box_in:last-child {
    margin-top: 3rem;
  }
}
.top_campaign_box_in .bf_txt {
  color: #003288;
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  font-weight: 900;
  line-height: 1.4;
  position: relative;
  display: table;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3.5rem;
}
.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: 3px solid #003288;
  width: 3.6rem;
  height: 3px;
  transform: rotate(50deg);
  border-radius: 9999px;
}
.top_campaign_box_in .bf_txt::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  border-top: 3px solid #003288;
  width: 3.6rem;
  height: 3px;
  transform: rotate(-50deg);
  border-radius: 9999px;
}
.top_campaign_box_in .line_txt {
  min-height: 9.6rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media screen and (max-width: 1160px) {
  .top_campaign_box_in .line_txt {
    min-height: inherit;
  }
}
.top_campaign_box_in .line_txt .in_txt {
  display: inline;
  line-height: 1.2;
  color: #003288;
  font-size: 5.6rem;
  letter-spacing: 0.05em;
  font-weight: 900;
  background: linear-gradient(transparent 60%, #ffe957 70%);
}
@media screen and (max-width: 1294px) {
  .top_campaign_box_in .line_txt .in_txt {
    font-size: 4.8rem;
  }
}
.top_campaign_box_in .line_txt .kome_txt {
  font-size: 2.4rem;
  position: relative;
  top: -1.3rem;
}
.top_campaign_box_in .line_txt.twogyo .in_txt {
  font-size: 4rem;
}
.top_campaign_box_in .sml_txt {
  display: block;
  color: #003288;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}
.top_campaign_box .cau_txt {
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.top_campaign_box .cau_txt li {
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-left: 1em;
  text-indent: -1em;
}
.top_campaign_box .cau_txt li::before {
  content: "※";
}

.top_voice_bg {
  display: flex;
  justify-content: center;
  padding: 10rem 0 11rem 0;
}
.top_voice_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top_voice_box_in {
  margin-top: 8rem;
  width: calc(50% - 2rem);
  border: 3px solid #003288;
  border-radius: 15px;
  background-color: #ecf2f9;
  padding: 0 3.5rem 4.5rem 3.5rem;
  position: relative;
}
@media screen and (max-width: 1160px) {
  .top_voice_box_in {
    width: 100%;
  }
}
.top_voice_box_ttl {
  display: flex;
  justify-content: space-between;
  position: relative;
  top: -3rem;
  left: 0;
  height: 157px;
}
@media screen and (max-width: 1294px) {
  .top_voice_box_ttl {
    height: auto;
  }
}
@media screen and (max-width: 1160px) {
  .top_voice_box_ttl {
    margin-bottom: -3rem;
  }
}
.top_voice_box_ttl .h3_ttl {
  font-size: 2.6rem;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: #003288;
  line-height: 1.4;
  position: relative;
  padding-top: 9.4rem;
  width: calc(100% - 174px);
}
@media screen and (max-width: 1160px) {
  .top_voice_box_ttl .h3_ttl {
    margin-bottom: 2.5rem;
  }
}
.top_voice_box_ttl .h3_ttl::before {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  content: "";
  background: url(../images/top/top_voice_icon.svg) no-repeat left top;
  background-size: contain;
  width: 7.8rem;
  height: 5.9rem;
}
.top_voice_box_ttl .type01 {
  display: none;
}
.top_voice_box_img {
  width: 154px;
}
.top_voice_box_img img {
  width: 100%;
}
.top_voice_box_catch {
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.top_voice02_bg {
  display: flex;
  justify-content: center;
  padding: 10rem 0;
  background-color: #ecf2f9;
}
.top_voice02_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 5.5rem;
}
.top_voice02_box_in {
  width: calc(50% - 2rem);
  border: 3px solid #003288;
  border-radius: 15px;
  background-color: #fff;
  padding: 3.5rem 3.5rem 5rem 3.5rem;
  position: relative;
}
@media screen and (max-width: 1160px) {
  .top_voice02_box_in {
    width: 100%;
  }
  .top_voice02_box_in:last-child {
    margin-top: 6rem;
  }
}
.top_voice02_box_in .h3_ttl {
  font-size: 2.6rem;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: #003288;
  padding-bottom: 1.5rem;
  margin-bottom: 1rem;
  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;
}
@media screen and (max-width: 1160px) {
  .top_voice02_box_in .h3_ttl::after {
    background: url(../images/top/top_voice_ling.svg) repeat-x left top;
    background-size: contain;
    width: 100%;
  }
}
.top_voice02_box_in:nth-child(1)::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 30px;
  background: url(../images/top/top_voice02_img01.svg) no-repeat right bottom;
  background-size: contain;
  width: 15rem;
  height: 28.5rem;
  max-width: 32%;
}
.top_voice02_box_in:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 40px;
  background: url(../images/top/top_voice02_img02.svg) no-repeat right bottom;
  background-size: contain;
  width: 8.9rem;
  height: 27.3rem;
  max-width: 32%;
}
.top_voice02_box_disc {
  width: 66%;
  overflow: hidden;
}
@media screen and (max-width: 1160px) {
  .top_voice02_box_disc {
    width: 80%;
  }
}

.top_faq_bg {
  display: flex;
  justify-content: center;
  padding: 10rem 0 11rem 0;
}
.top_faq_bg .common_top_h2ttl {
  position: relative;
  padding: 0 206px;
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.top_faq_bg .common_top_h2ttl::after {
  content: "";
  position: absolute;
  top: calc(50% - 106px);
  right: 0px;
  width: 156px;
  height: 173px;
  background: url(../images/top/top_faq_ttl.svg);
  background-size: contain;
}
.top_faq_box {
  border-top: 1px solid #DDD;
  margin-top: 4rem;
}
.top_faq_box_in {
  border-bottom: 1px solid #DDD;
}
.top_faq_box_in .acctit {
  padding: 2rem 8rem 2rem 11rem;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.4;
  min-height: 9.4rem;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.top_faq_box_in .acctit::before {
  position: absolute;
  top: calc(50% - 2.7rem);
  left: 3rem;
  content: "";
  background: url(../images/top/top_faq_iconq.svg) no-repeat left top;
  background-size: contain;
  width: 5.4rem;
  height: 5.4rem;
}
.top_faq_box_in .acctit::after {
  position: absolute;
  top: calc(50% - 11px);
  right: 3rem;
  content: "";
  background: url(../images/common/icon_plus.svg) no-repeat left top;
  background-size: contain;
  width: 22px;
  height: 22px;
}
.top_faq_box_in .accct {
  display: none;
  padding: 0rem 8rem 3.5rem 11rem;
}
.top_faq_box_in.open {
  background-color: #ecf2f9;
}
.top_faq_box_in.open .acctit::after {
  position: absolute;
  top: calc(50% - 1px);
  right: 3rem;
  content: "";
  background: url(../images/common/icon_minus.svg) no-repeat left top;
  background-size: contain;
  width: 22px;
  height: 22px;
}

.top_contact_bg {
  display: flex;
  justify-content: center;
  padding: 11rem 0 12rem 0;
  background-color: #ecf2f9;
}
.top_contact_box {
  background-color: #fff;
  padding: 5rem;
  border-radius: 15px;
  margin-top: 4rem;
}/*# sourceMappingURL=pc.css.map */