@charset "utf-8";
/* ----------------------------------------------

 * Reset

---------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video,picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 1.5em;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}
picture {
  display: block;
}
/* ----------------------------------------------

 * Basic Setup

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

html {
  -webkit-font-smoothing: antialiased;
  font-size: 100px;
}
body {
  margin: 0 auto;
  padding: 0;
  line-height: 1.8em;
  color: #242728;
  height: 100%;
  position: relative;
  font-weight: 400;
  font-size: 0.16rem;
  font-feature-settings: "palt";
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
}

.min {
  font-family: "Hiragino Mincho ProN","Hiragino Mincho Pro",游明朝,"Yu Mincho",YuMincho,HGS明朝E,メイリオ,Meiryo,serif;
}
.serif {
  font-family: 'EB Garamond', serif;
}

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

main {
  display: block;
  position: relative;
  overflow: hidden;
}

a {
  outline:none;
  color: #040000;
}

a:hover {
  text-decoration: none;
}

a,a:hover,a:hover img,button,input {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  filter: alpha(opacity=80);
  -moz-opacity:0.80;
  opacity:0.80;
}

input[type=text]:focus {
    outline: none;
}
sup {
  font-size: 60%;
  vertical-align: top;
}

/* ----------------------------------------------

 * Common

---------------------------------------------- */
.fit {
  object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
  height: 100%;
}

@media only screen and ( max-width : 991px ) {
  .br_tb_none {
    display: none;
  }
}
@media only screen and ( max-width : 767px ) {
  .br_pc {
    display: none;
  }
  .btn {
    font-size: 15px;
  }
  .sp_none {
    display: none !important;
  }
}
@media print, screen and ( min-width : 768px ) {
  .br_sp {
    display: none;
  }
  .btn {
    font-size: .16rem;
  }
  .sp {
    display: none !important;
  }
}
@media print, screen and ( min-width : 992px ) {
  .br_tb {
    display: none;
  }
}

/*-----------------------------------------------------------
  header
-----------------------------------------------------------*/
#header {
  position: relative;
  width: 100%;
  top: 0;
  z-index: 99;
  background: #fff;
}

@media only screen and ( max-width : 767px ) {
  #header {
    position: sticky;
  }
  #header .container {
    padding: 0 0 0 15px;
  }
  .header_inner {
    height: 50px;
  }
  #header .logo {
    max-width: 72px;
  }
  #menu_btn.active {
  }
  .overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 98;
    opacity: 0;
    transition: opacity .5s;
  }
  .overlay.open {
    width: 100vw;
    height: 100vh;
    opacity: 1;
  }
  #main {
    height: 100%;
    transition: all .5s;
  }
  #menu_btn {
    transition: .3s;
    cursor: pointer;
    position: relative;
    z-index: 9999;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #534741;
  }
  #menu_btn.active {
    background: #fff;
  }
  #menu_btn .menu-txt {
    font-size: 10px;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1;
  }
  #menu_btn .menu-txt-close {
    font-size: 10px;
    display: none;
    line-height: 1;
  }
  #menu_btn.active .menu-txt {
    display: none;
  }
  #menu_btn.active .menu-txt-close {
    display: block;
    color: #000;
    margin-top: 5px;
  }
  .menu-trigger {
    width: 25px;
    height: 18px;
    position: relative;
  }
  .menu-trigger span.menu-line {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all .5s;
  }
  #menu_btn.active .menu-trigger span.menu-line {
    background: #000;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  #menu_btn.active .menu-trigger span.menu-line:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  .menu-trigger span:nth-of-type(2) {
    top: 8px;
  }
  #menu_btn.active .menu-trigger span.menu-line:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  #menu_btn.active .menu-trigger span.menu-line:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
   
  #gNav {
    width: 350px;
    overflow: auto;
    background-color: rgba(255,255,255,1);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 101;
    height: 100%;
    transform: translate(350px);
    transition: all .5s;
  }
  #gNav.open {
    transform: translateZ(0);
  }
  #gNav ul {
    height: 100%;
    overflow: auto;
    padding: 90px 0;
  }
  #gNav li {
    border-bottom: 1px solid #ccc;
  }
  #gNav li:last-child {
    margin-bottom: 0;
  }
  #gNav li a {
    position: relative;
    display: block;
    letter-spacing: .14em;
    padding: 15px 25px;
  }
  .terminix {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
  }
}

@media only screen and ( max-width : 350px ) {
  #gNav {
    width: 300px;
    transform: translate(300px);
  }
  #gNav.open {
    transform: translateZ(0);
  }
}
@media print, screen and ( min-width : 768px ) {
  #header .container {
    padding: 0;
  }
  .header_inner {
    height: 57px;
  }
  #h_nav,#menu_btn,.overlay,#gNav {
    display: none;
  }
}
/*-----------------------------------------------------------
  footer
-----------------------------------------------------------*/
#footer{
  padding:50px 0 30px;
  text-align: center;
}
#footer .inner{
  max-width:990px;
  padding: 0 25px;
  margin:0 auto;
}

.other-service-ttl{
  font-size:32px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom:25px;
}
.other-bnr{
  margin-bottom:60px;
}
.other-bnr li{
  width: 31.3%;
  margin: 0 3% 0 0;
}
.other-bnr li:nth-child(3n) {
  margin: 0 0 0 0;
}
.other-bnr li a p{
  background: #ff9600;
  color:#fff;
  padding:10px 15px;
  line-height: 1.1;
  font-size:24px;
  font-weight: bold;
}
#footer .copy {
    font-size: 13px;
}
@media screen and ( max-width:668px) {
  #footer{
    padding:30px 0 10px;
    text-align: center;
  }
}

@media screen and ( max-width:668px) {
  .other-service-ttl{
    font-size:24px;
    margin-bottom:15px;
  }
  .other-bnr{
    margin-bottom:40px;
  }
  .other-bnr li a p{
    padding:8px;
    font-size:15px;
  }
}

.callcenter_bannerAnchor {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  /* vertical-align: top; */
  display: block;
}
.special_bannerAnchor {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  /* vertical-align: top; */
  display: block;
}
.sns_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
}
.sns_anchor {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  display: block;
}


@media screen and (max-width: 767px) {
  #footer {
    padding-bottom: 90px;
  }
  .callcenter_bannerAnchor {
    background: url(../img/common/bn_callcenter_sp.png) no-repeat left top/contain;
    margin-bottom: 2.666667vw;
    padding-top: 42.4vw;
  }
    .special_bannerAnchor {
    background: url(../img/common/bn_special_sp.jpg) no-repeat left top/contain;
    margin-bottom: 6.4vw;
    padding-top: 54.666667vw;
  }
  .sns_list {
    margin-bottom: 5.6vw;
    width: 44.8vw;
  }
   .sns_item {
    width: 10.666667vw;
  }
  .sns_anchor {
    padding-top: 10.666667vw;
  }
  .sns_anchorFb {
    background: url(../img/common/bnr_footer_facebook_sp.png) no-repeat left top/contain;
  }
  .sns_anchorTw {
    background: url(../img/common/bnr_footer_twitter_sp.png) no-repeat left top/contain;
  }
  .sns_anchorLn {
    background: url(../img/common/bnr_footer_line_sp.png) no-repeat left top/contain;
  }
}

@media screen and (min-width: 768px) {
  #footer {
    padding-bottom: 140px;
  }
  .callcenter_bannerAnchor {
    background: url(../img/common/bn_callcenter_pc.png) no-repeat left top/contain;
    height: 54px;
    margin-bottom: 40px;
    pointer-events: none;
  }
  .special_bannerAnchor {
    background: url(../img/common/bn_special_pc.jpg) no-repeat left top/contain;
    height: 150px;
    margin-bottom: 50px;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
  .special_bannerAnchor:hover {
    opacity: 0.7;
  }
  .sns_list {
    margin-bottom: 30px;
    /*width: 700px;*/
  }
  .sns_item {
    /*width: 220px;*/
    width: 32%;
  }
   .sns_anchor {
    height: 44px;
    position: relative;
  }
  .sns_anchor:before, .sns_anchor:after {
    content: '';
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
    width: 100%;
  }
  .sns_anchor:after {
    opacity: 0;
  }
  .sns_anchor:hover:before {
    opacity: 0;
  }
  .sns_anchor:hover:after {
    opacity: 1;
  }
  .sns_anchorFb:before {
    background: url(../img/common/bnr_footer_facebook_pc.png) no-repeat left top/contain;
  }
  .sns_anchorFb:after {
    background: url(../img/common/bnr_footer_facebook_pc_on.png) no-repeat left top/contain;
  }
  .sns_anchorTw:before {
    background: url(../img/common/bnr_footer_twitter_pc.png) no-repeat left top/contain;
  }
  .sns_anchorTw:after {
    background: url(../img/common/bnr_footer_twitter_pc_on.png) no-repeat left top/contain;
  }
  .sns_anchorLn:before {
    background: url(../img/common/bnr_footer_line_pc.png) no-repeat left top/contain;
  }
  .sns_anchorLn:after {
    background: url(../img/common/bnr_footer_line_pc_on.png) no-repeat left top/contain;
  }
}

/* ---------------------------------------------------------------------------------------------

　   pagetop

--------------------------------------------------------------------------------------------- */
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 80px;
  z-index: 2;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  z-index: 98;
}
#page-top:hover {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}
@media screen and ( max-width:1000px) {
  .wrap {
    padding:50px 0 ;
  }
  #page-top {
    width: 50px;
    bottom: 5px;
     right: 5px;
  }
}



/* ---------------------------------------------------------------------------------------------

　   COMMON

--------------------------------------------------------------------------------------------- */
.color_red {
  color: #C00045;
}
.color_blue {
  color: #253C89;
}
.bold {
  font-weight: bold;
}
.square_title {
  text-align: center;
  font-size: .28rem;
  position: relative;
  background: url(../img/square.jpg) no-repeat center / .92rem;
  min-height: .92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .1em;
}
@media only screen and ( max-width : 767px ) {
  .square_title {
    margin-bottom: .35rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .square_title {
    margin-bottom: .5rem;
  }
}
/* ---------------------------------------------------------------------------------------------

　   MV

--------------------------------------------------------------------------------------------- */
#mv {
  background: url(../img/main_bg.jpg) repeat-x left top / auto 100%;
  position: relative;
}
.mv_inner {
  margin: 0 auto;
}

@media only screen and ( max-width : 767px ) {
  #mv img {
    width: 100%;
  }
}
@media print, screen and ( min-width : 768px ) {
  #mv {
    height: 429px;
  }
  #mv img {
    position: absolute;
    width: 1400px;
    max-width: 1400px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
}

/* ---------------------------------------------------------------------------------------------

　   CTA

--------------------------------------------------------------------------------------------- */
.cta_area {
  background: url(../img/s_paper03.jpg) repeat top left;
}
.campaign_bnr {
  display: block;
  margin: 0 auto;
}

#js-clone-cta {
  position: fixed;
  bottom: -200px;
  left: 0;
  transition: all 1s;
  width: 100%;
  z-index: 100;
}
#js-clone-cta.is-fixed-cta {
  bottom: 0;
}
#js-clone-cta .campaign_bnr {
  display: none;
}
.cta_heading {
  color: #534741;
  font-weight: bold;
  text-align: center;
  line-height: 1em;
}
.cta_area ul li {
  width: 49.5%;
}
.cta_area ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
}
.cta_area ul li.cta_btn01 a {
  background: #c61958;
  background: -moz-linear-gradient(top,  #c61958 0%, #8f0f38 100%);
  background: -webkit-linear-gradient(top,  #c61958 0%,#8f0f38 100%);
  background: linear-gradient(to bottom,  #c61958 0%,#8f0f38 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c61958', endColorstr='#8f0f38',GradientType=0 );
}
.cta_area ul li.cta_btn02 a {
  background: #4c61a0;
  background: -moz-linear-gradient(top,  #4c61a0 0%, #253c89 100%);
  background: -webkit-linear-gradient(top,  #4c61a0 0%,#253c89 100%);
  background: linear-gradient(to bottom,  #4c61a0 0%,#253c89 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c61a0', endColorstr='#253c89',GradientType=0 );
}
@media only screen and ( max-width : 767px ) {
  .cta_area {
    padding: .05rem .05rem 0;
  }
  #js-clone-cta.is-fixed-cta {
    padding: .05rem 0;
  }
  .cta_area .container {
    padding: 0;
  }
  .cta_heading {
    margin-bottom: .05rem;
  }
  .cta_area ul li a {
    height: .46rem;
    font-size: .16rem;
  }
  .cta_area ul li a small {
    font-size: .13rem;
  }
  .campaign_bnr {
    margin: .05rem -.05rem 0;
  }
}
@media print, screen and ( min-width : 768px ) {
  .cta_area {
    padding: .15rem 0 .2rem;
  }
  #js-clone-cta.is-fixed-cta {
    padding: .15rem 0;
  }
  .cta_heading {
    font-size: .22rem;
    margin-bottom: .1rem;
  }
  .cta_area ul {
    max-width: 5.13rem;
    margin: 0 auto;
  }
  .cta_area ul li a {
    height: .64rem;
    font-size: .22rem;
  }
  .cta_area ul li a small {
    font-size: .18rem;
  }
  .campaign_bnr {
    max-width: 5.2rem;
    margin-top: .2rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   Introuction

--------------------------------------------------------------------------------------------- */
#intro h1 {
  text-align: center;
  color: #534741;
  font-size: .28rem;
}
.intro_point {
  margin-bottom: .2rem;
}
.intro_point:last-of-type {
  margin-bottom: .3rem;
}
.intro_point h2 {
  text-align: center;
  background: #C00045;
  color: #fff;
  padding: .05rem;
}
.intro_point p {
  background: #F2CCDA;
}
.intro_lead_txt {
  text-align: center;
  text-decoration-line: underline;
  text-decoration-color: #CBAE55;
  text-decoration-thickness: .1em;
  text-underline-offset: .3em;
  text-decoration-skip-ink: none;
  color: #534741;
  line-height: 1.8em;
  font-weight: bold;
  font-size: .21rem;
}


#voice h3 {
  position: relative;
  margin: 0 auto .15rem;
  text-align: center;
  color: #C00045;
}
#voice h3::before, #voice h3::after {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
}

#voice h3::before {
  border-left: solid 1px #C00045;
  border-top: solid 1px #C00045;
  top: 0;
  left: 0;
}

#voice h3::after {
  border-right: solid 1px #C00045;
  border-bottom: solid 1px #C00045;
  bottom: 0;
  right: 0;
}
.voice_txt {
  background: #FFF7D8;
  padding: .15rem;
  margin-bottom: .2rem;
  font-size: .15rem;
}
.voice_txt:last-of-type {
  margin-bottom: .3rem;
}
.voice_txt p span {
  font-weight: bold;
}
.voice_txt .customer_name {
  font-size: .14rem;
}
.other_voice_links {
  text-align: center;
  font-size: .14rem;
}
.other_voice_links a {
  font-weight: bold;
  text-decoration: underline;
}
.other_voice_links small {
  display: block;
  font-size: .095rem;
  margin-top: .3rem;
}
@media only screen and ( max-width : 767px ) {
  #intro {
    padding: .3rem 0 .6rem;
  }
  #intro h1 {
    margin-bottom: .25rem;
  }
  .intro_point h2 {
    font-size: .18rem;
  }
  .intro_point h2 span {
    font-size: .24rem;
  }
  .intro_point p {
    padding: .06rem .15rem;
  }
  #voice {
    margin-top: .55rem;
  }
  #voice h3 {
    padding: .10rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #intro {
    padding: .5rem 0 1.1rem;
  }
  #intro h1 {
    margin-bottom: .3rem;
  }
  .intro_point h2 {
    font-size: .21rem;
  }
  .intro_point h2 span {
    font-size: .29rem;
  }
  .intro_point p {
    padding: .15rem;
  }
  #voice {
    margin-top: .7rem;
  }
  #voice h3 {
    width: 3rem;
    padding: .15rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   Flow

--------------------------------------------------------------------------------------------- */

#flow_inner {
  background: url(../img/s_paper03.jpg) repeat top left;
}
.step_box {
  background: #fff;
  position: relative;
}
.step_box:last-of-type {
  margin-bottom: 0;
}
.step_box:after {
  content: "";
  display: block;
  width: 1.06rem;
  height: .3rem;
  background: url(../img/step_arrow.png) no-repeat center / 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.step_box:last-of-type:after {
  content: none;
}
.step_box .step_num {
  background: #253C89;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.step_box .step_num .step_num_small {
  line-height: 1;
}
.step_box .step_num .step_num_txt {
  line-height: 1;
}
.step_box h3 {
  text-align: center;
  color: #253C89;
}
.step_box p {
  text-align: justify;
}
.step_box .step_txt p small {
  display: block;
  font-size: .125rem;
  margin-top: .1rem;
  position: relative;
  padding-left: 1.2em;
}
.step_box .step_txt p small:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.step_list_box {
  padding: .1rem;
  background: #E9EBF3;
  margin-top: .2rem;
}
.step_list_box h4 {
  text-align: center;
  font-weight: bold;
  color: #253C89;
  margin-bottom: .1rem;
}
.step_list_box li {
  position: relative;
  padding-left: 1.2em;
  font-size: .15rem;
}
.step_list_box li small {
  font-size: .12rem;
}
.step_list_box li:before {
  content: "";
  background: #929DC4;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: .3em;
  width: 1em;
  height: 1em;
}
.step_lead_txt_inner {
  background: url(../img/light_bulb.png) no-repeat center left / .44rem;
  padding-left: .55rem;
  margin: .15rem auto 0;
  font-weight: bold;
}
.step_list_box02 {
  margin-top: .2rem;
}
.step_list_box02 li {
  border-left: .065rem solid #929DC4;
  margin-bottom: .15rem;
  padding-left: .12rem;
  font-size: .175rem;
  font-weight: bold;
  color: #253C89;
}
.step_list_box02 li:last-child {
  margin-bottom: 0;
}
.for_business_customers h3 {
  border-radius: .1rem .1rem 0 0;
  border: 2px solid #C00045;
  text-align: center;
  background: #fff;
  color: #C00045;
  padding: .05rem;
}
.for_business_customers_heading {
  background: #C00045;
  color: #fff;
  font-weight: bold;
  padding: .1rem .15rem;
}
.for_business_customers_heading img {
  width: .6rem;
}
.for_business_customers_content {
  background: #DC7399;
  border-radius: 0 0 .1rem .1rem;
  padding: .1rem .15rem;
  color: #fff;
}
.for_business_customers_content small {
  display: block;
  font-size: .125rem;
}

@media only screen and ( max-width : 767px ) {
  #flow_inner {
    padding: .38rem 0 .6rem;
  }
  .step_heading {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .1rem;
  }
  .step_box {
    padding: .15rem;
    margin-bottom: .76rem;
  }
  .step_box:after {
    bottom: -.55rem;
  }
  .step_box .step_num {
    width: .45rem;
    height: .45rem;
    margin-right: .13rem;
  }
  .step_box .step_num .step_num_small {
    font-size: .09rem;
  }
  .step_box .step_num .step_num_txt {
    font-size: .235rem;
  }
  .step_box h3 {
    font-size: .24rem;
  }
  .step_box img {
    max-width: 74%;
    display: block;
    margin: 0 auto .25rem;
  }
  .for_business_customers h3 {
    font-size: .175rem;
  }
  .for_business_customers_heading {
    font-size: .21rem;
  }
  .for_business_customers_heading img {
    margin-right: .1rem;
  }
  .for_business_customers_heading p {
    max-width: calc(100% - .7rem);
  }
}
@media print, screen and ( min-width : 768px ) {
  #flow_inner {
    padding: .6rem 0;
  }
  .step_box {
    padding: .55rem .3rem .3rem;
    margin-bottom: 1.1rem;
  }
  .step_box:after {
    bottom: -.6rem;
  }
  .step_heading {
    margin-bottom: .3rem;
  }
  .step_box .step_num {
    width: .62rem;
    height: .62rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -.2rem;
  }
  .step_box .step_num .step_num_small {
    font-size: .11rem;
  }
  .step_box .step_num .step_num_txt {
    font-size: .33rem;
  }
  .step_box h3 {
    font-size: .336rem;
  }
  .step_img {
    width: 54%;
  }
  .step_txt {
    width: 42%;
  }
  .step_list_box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .step_list_box ul {
    min-width: 3.2rem;
  }
  .for_business_customers h3 {
    font-size: .18rem;
  }
  .for_business_customers_heading {
    font-size: .24rem;
  }
  .for_business_customers_heading img {
    margin-right: .2rem;
  }
  .for_business_customers_heading p {
    max-width: calc(100% - .8rem);
  }
}

/* ---------------------------------------------------------------------------------------------

　   Sign

--------------------------------------------------------------------------------------------- */
#sign {
  background: url(../img/sign_bg.jpg) no-repeat left bottom / cover;
}
#sign h2 {
  font-size: .28rem;
  text-align: center;
  color: #fff;
  margin-bottom: .3rem;
}
.sign_list li {
  color: #fff;
  text-align: center;
}
.sign_list li .sign_balloon {
  font-weight: bold;
  text-align: center;
  font-size: .155rem;
  position: relative;
  background: #C00045;
  border-radius: .5rem;
  margin-bottom: 8px;
  padding: 2px;
}
.sign_list li .sign_balloon:after {
  content: "";
  width: 9px;
  height: 6px;
  background: url(../img/balloon.png) no-repeat center / 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5.5px;
}
.sign_list li figcaption {
  font-size: .115rem;
  margin-top: .1rem;
}
#sign h3 {
  text-align: center;
  color: #fff;
  font-size: .23rem;
  background: url(../img/arrow.png) no-repeat center / 106px;
  line-height: 46px;
  margin: .44rem 0 .32rem;
}
.sign_result {
  background: #fff;
  margin-bottom: .2rem;
}
.sign_result:last-child {
  margin-bottom: 0;
}
.sign_result_heading img {
  width: 1rem;
}
.sign_result_heading h4 {
  width: calc(100% - 1rem);
  color: #C00045;
  text-align: center;
  font-size: .27rem;
  padding: .1rem;
}
.sign_result .switch {
  background: #C00045;
  color: #fff;
  text-align: center;
  padding: .05rem;
  cursor: pointer;
}
.sign_result .switch .switch_inner {
  display: inline-block;
  position: relative;
  padding-right: .3rem;
}
.sign_result .switch .switch_inner:after {
  content: "";
  position: absolute;
  background: url(../img/acc_arrow.png) no-repeat center / 100%;
  width: 20px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: .3s;
}
.sign_result .switch.open .switch_inner:after {
  transform: translateY(-50%) rotate(180deg);
}
.sign_result .switch .switch_inner .switch_close {
  display: none;
}
.sign_result .switch.open .switch_inner .switch_close {
  display: block;
}
.sign_result .switch.open .switch_inner .switch_open {
  display: none;
}
.sign_result .contentWrap {
  padding: .15rem;
  display: none;
}

@media only screen and ( max-width : 767px ) {
  #sign {
    padding: .4rem 0 2.1rem;
  }
  .sign_list li {
    width: 48%;
    margin-right: 4%;
    margin-top: .35rem;
  }
  .sign_list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .sign_list li:nth-child(2n),
  .sign_list li:last-child {
    margin-right: 0;
  }
}
@media print, screen and ( min-width : 768px ) {
  #sign {
    padding: 1rem 0 3rem;
  }
  .sign_list {
    max-width: 516px;
    margin: 0 auto;
  }
  .sign_list li {
    width: 32%;
    margin-right: 2%;
  }
  .sign_list li:last-child {
    margin-right: 0;
  }
}
/* ---------------------------------------------------------------------------------------------

　   Rat

--------------------------------------------------------------------------------------------- */
#rat {
  background: #F9E5EC;
  margin-top: -1px;
  position: relative;
  z-index: 2;
}
.rat_inner {
  position: relative;
  z-index: 2;
}
#rat h2 {
  text-align: center;
  color: #FFFF00;
  font-size: .27rem;
  position: relative;
  z-index: 3;
}
.rat_illust {
  display: block;
  margin: .2rem auto .3rem;
}
.rat_lead_txt {
  text-align: center;
  text-decoration-line: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 1em;
  text-underline-offset: -1em;
  text-decoration-skip-ink: none;
  color: #534741;
  font-size: .21rem;
  font-weight: bold;
  letter-spacing: .15em;
  margin-bottom: .2rem;
}
.rat_arrow {
  margin: .3rem 0 .2rem;
}
.rat_lead_txt02 {
  background: #fff;
  padding: .15rem;
}
.rat_lead_txt02_heading {
  text-align: center;
  font-size: .23rem;
  color: #534741;
  margin-bottom: .1rem;
  font-weight: bold;
}
.rat_lead_txt02_heading span {
  display: inline-block;
  background: #C00045;
  color: #fff;
  line-height: 1;
}
#rat_kind {
  padding-top: .5rem;
}
#rat_kind h3 {
  color: #C00045;
  text-align: center;
  font-size: .21rem;
  margin-bottom: .3rem;
}
.rat_kind_box {
  background: #fff;
  margin-bottom: .3rem;
}
.rat_kind_box:last-child {
  margin-bottom: 0;
}
.rat_kind_box h4 {
  padding: .1rem;
  text-align: center;
  font-size: .2rem;
}
.rat_kind_box .switch {
  background: #534741;
  color: #fff;
  text-align: center;
  padding: .05rem;
  cursor: pointer;
}
.rat_kind_box .switch .switch_inner {
  display: inline-block;
  position: relative;
  padding-right: .3rem;
}
.rat_kind_box .switch .switch_inner:after {
  content: "";
  position: absolute;
  background: url(../img/acc_arrow.png) no-repeat center / 100%;
  width: 20px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: .3s;
}
.rat_kind_box .switch.open .switch_inner:after {
  transform: translateY(-50%) rotate(180deg);
}
.rat_kind_box .switch .switch_inner .switch_close {
  display: none;
}
.rat_kind_box .switch.open .switch_inner .switch_close {
  display: block;
}
.rat_kind_box .switch.open .switch_inner .switch_open {
  display: none;
}
.rat_kind_box .contentWrap {
  padding: .15rem;
  display: none;
  font-size: .15rem;
}
.rat_kind_box .hidden01,
.rat_kind_box .hidden02,
.rat_kind_box .hidden03 {
  display: none;
}
.rat_kind_img_wrapper {
  width: 125px;
  margin: 0 auto .15rem;
}

@media only screen and ( max-width : 767px ) {
  #rat .rat_inner {
    top: -160px;
  } 
}
@media print, screen and ( min-width : 768px ) {
  #rat .rat_inner {
    top: -250px;
  } 
}

/* ---------------------------------------------------------------------------------------------

　   Useful

--------------------------------------------------------------------------------------------- */
#useful {
  background: #fff;
  position: relative;
  z-index: 2;
}
#useful li a {
  display: block;
  background: #F3EDDD;
  padding: .15rem;
  font-size: .15rem;
}
#useful li a p {
  margin-top: .1rem;
}
#useful li a .useful_img {
  background-color: #fff;
  text-align: center;
}

@media only screen and ( max-width : 767px ) {
  #useful {
    padding: .61rem 0;
    margin-top: -1.2rem;
  }
  #useful li {
    margin-bottom: .25rem;
  }
  #useful li:last-child {
    margin-bottom: 0;
  }
}
@media print, screen and ( min-width : 768px ) {
  #useful {
    padding: 1.1rem 0;
    margin-top: -1.8rem;
  }
  #useful li {
    width: 30%;
    margin-right: 5%;
  }
  #useful li:last-child {
    margin-right: 0;
  }
  #useful li a {
    height: 100%;
  }
}

/* ---------------------------------------------------------------------------------------------

　   Price

--------------------------------------------------------------------------------------------- */
#price h2 {
  margin-bottom: .35rem;
}
#price_inner {
  background: #E9EBF3;
  padding: .35rem 0 .45rem;
}
.price_block {
  background: #fff;
}
.price_block h3 {
  background: #253C89;
  text-align: center;
  color: #fff;
  padding: .05rem;
}
.price_block_content {
  padding: .2rem;
  max-width: 370px;
  margin: 0 auto;
  font-size: .15rem;
}
.price_ex_heaing {
  text-align: center;
  font-size: .15rem;
  margin-bottom: .15rem;
}
.price_ex_heaing span {
  font-size: .14rem;
}
.price_box {
  margin-bottom: .06rem;
}

.price_box dl {
  position: relative;
}
.price_box dl:before {
  content: "";
  width: 100%;
  height: 1px;
  border-top: 1px dotted #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
}
.price_box dt {
  color: #253C89;
  font-weight: bold;
}
.price_box dd {
  color: #C00045;
  font-weight: bold;
}
.price_box dd small {
  font-size: .09rem;
}
.price_box dt span,
.price_box dd span {
  display: inline-block;
  background: #fff;
  position: relative;
  z-index: 2;
}
.price_box dt span {
  padding-right: .3em;
}
.price_box dd span {
  padding-left: .3em;
}
.price_box ul {
  font-size: .13rem;
  margin-top: .03rem;
}
.price_box ul li {
  list-style: disc;
  margin-left: 1.2em;
}
.price_total {
  border-top: 1px solid #000;
  padding-top: .06rem;
  color: #C00045;
  font-weight: bold;
  margin-bottom: .1rem;
}
.price_total span {
  font-size: .18rem;
}
.price_sup_txt {
  font-size: .1rem;
}
@media only screen and ( max-width : 767px ) {
  
}
@media print, screen and ( min-width : 768px ) {

}

/* ---------------------------------------------------------------------------------------------

　   Since

--------------------------------------------------------------------------------------------- */
#since {
  padding: .38rem 0 .5rem;
}
.since_ribbon {
  display: block;
  width: 1.89rem;
  margin: 0 auto;
}
#since h2 {
  text-align: center;
  font-size: .2rem;
  color: #534741;
  margin: .3rem 0 .2rem;
}
#since figure {
  text-align: center;
  margin-bottom: .24rem;
}
#since p {
  line-height: 2em;
  margin-bottom: 1em;
}
#since p:last-child {
  margin-bottom: 0;
}

@media only screen and ( max-width : 767px ) {
  
}
@media print, screen and ( min-width : 768px ) {
  
}
/* ---------------------------------------------------------------------------------------------

　   campaign

--------------------------------------------------------------------------------------------- */
#campaign h2 {
  text-align: center;
  margin-bottom: .05rem;
}
.campaign_sup_text {
  text-align: right;
  color: #fff;
  font-size: .12rem;
}
.campaign_content {
  background: #f9e0ca;
  overflow: hidden;
  border-radius: .12rem;
  margin-top: .1rem;
}
.campaign_content p {
  line-height: 2em;
}
.campaign_content h3 {
  text-align: center;
  color: #fff;
  background: #004095;
  font-weight: bold;
}
.campaign_info {
  border: 1px solid #231815;
  margin: .15rem 0;
  font-weight: bold;
}
.campaign_content .campaign_info {
  font-size: .13rem;
}
.campaign_infoBox {
  border-bottom: 1px solid #231815;
}
.campaign_infoBox:last-child {
  border-bottom: none;
}
.campaign_infoBox h4 {
  margin-bottom: .05rem;
}
.campaign_infoBox ul {
  display: flex;
  flex-wrap: wrap;
}
.campaign_infoBox li {
  position: relative;
  margin-right: .05rem;
  padding-left: .15rem;
}
.campaign_infoBox li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #231815;
  width: .1rem;
  height: .1rem;
}
.campaign_content .campaign_info p span {
  font-size: .1rem;
}
.campaign_content {
  font-size: .1rem;
}
.campaign_content .campaign_lead_text {
  font-weight: bold;
  margin-bottom: .1rem;
  line-height: 1.6em;
}
.notes_text {
  position: relative;
  padding-left: 1.2em;
}
.notes_text span {
  position: absolute;
  left: 0;
  top: 0.3em;
}
@media only screen and ( max-width : 767px ) {
  #campaign {
    padding: 0 0 .2rem;
    background: url(../img/campaign_bg_sp.jpg) no-repeat top center / cover;
  }
  #campaign h2 img {
    margin-top: -.15rem;
  }
  .campaign_content h3 {
    padding: .07rem;
    font-size: .14rem;
  }
  .campaign_content .campaign_lead_text {
    font-size: .15rem;
  }
  .campaign_content_inner {
    padding: .15rem .2rem;
  }
  .campaign_flow {
    margin-bottom: .1rem;
  }
  .campaign_infoBox {
    padding: .1rem;
  }
  .campaign_content .notes_text {
    line-height: 1.4em;
  }
  .notes_text span  {
    top: 0;
  }
}
@media print, screen and ( min-width : 768px ) {
  #campaign {
    padding: .75rem 0 0;
  }
  #campaign_inner {
    background: url(../img/campaign_bg.jpg) no-repeat center / cover;
    padding: 0 .2rem .28rem;
  }
  #campaign h2 img {
    margin-top: -.28rem;
  }
  .campaign_content h3 {
    padding: .1rem;
    font-size: .18rem;
  }
  .campaign_content .campaign_lead_text {
    font-size: .16rem;
  }
  .campaign_content_inner {
    padding: .2rem .4rem;
  }
  .campaign_flow {
    margin-bottom: .2rem;
  }
  .campaign_infoBox {
    padding: .15rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   XXX

--------------------------------------------------------------------------------------------- */


@media only screen and ( max-width : 767px ) {
  
}
@media print, screen and ( min-width : 768px ) {
  
}


