/* for covid-19 landing page */
/*variables
--------------------------------------------------------------*/
/* fonts */
/*base font-size*/
/*colors*/
/* borders */
/* margin & padding */
/*devices*/
/* aniimation */
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/* reset
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6, p, div, a, ul, ol, dl {
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  color: #324148;
  margin: 0; }

a {
  text-decoration: none; }

ul {
  padding-inline-start: 0; }

li {
  list-style: none; }

* {
  box-sizing: border-box; }

body {
  margin: 0;
  padding: 0; }

/* utility */
@media only screen and (max-width: 959px) {
  .pc-only {
    display: none; } }

.sp-only {
  display: none; }
  @media only screen and (max-width: 959px) {
    .sp-only {
      display: block; } }

.btn {
  background: none;
  border: none;
  padding: 0; }
  .btn a {
    display: block;
    background: #fff;
    color: #9E242C;
    border: 1px solid #9E242C;
    border-radius: 5px;
    text-align: center;
    padding: 8px 16px;
    transition: all 0.5s ease; }
    .btn a:hover {
      background: #9E242C;
      color: #fff; }

@media only screen and (max-width: 959px) {
  .wrap {
    overflow: hidden; } }

/* common */
section .row {
  margin: auto;
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap; }
  @media only screen and (max-width: 1099px) {
    section .row {
      max-width: 920px; } }
  @media only screen and (max-width: 959px) {
    section .row {
      max-width: unset;
      margin: auto 10px; } }

/* header */
.sec_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 94px;
  box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.2);
  background: #fff;
  z-index: 1000;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    .sec_header {
      height: 49px;
      padding: 10px; } }
  .sec_header::after {
    content: '';
    display: block;
    clear: both; }
  .sec_header .logo {
    flex: 0 1 65%; }
    @media only screen and (max-width: 767px) {
      .sec_header .logo {
        flex: 0 1 auto; } }
    .sec_header .logo img {
      display: inline-block;
      width: 175px;
      vertical-align: -18px; }
      @media only screen and (max-width: 767px) {
        .sec_header .logo img {
          width: 87px;
          vertical-align: -5px; } }
    .sec_header .logo span {
      display: inline-block;
      font-size: 14px;
      line-height: 1.2;
      margin-left: 8px; }
      @media only screen and (max-width: 767px) {
        .sec_header .logo span {
          font-size: 10px; } }
  .sec_header .nav_contact {
    flex: 0 1 35%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end; }
    @media only screen and (max-width: 767px) {
      .sec_header .nav_contact {
        display: none; } }
    .sec_header .nav_contact .tel {
      position: relative;
      color: #9E242C;
      font-size: 22px;
      font-weight: 500;
      padding-left: 30px; }
      .sec_header .nav_contact .tel:before {
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        content: '\f098';
        display: block;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%); }
      .sec_header .nav_contact .tel span {
        display: block;
        color: #324148;
        font-size: 12px;
        font-weight: 400;
        margin-top: 4px; }
    .sec_header .nav_contact .inquiry {
      font-size: 22px;
      margin: 6px 0 0 30px; }
      .sec_header .nav_contact .inquiry a {
        color: #9E242C; }
        .sec_header .nav_contact .inquiry a:before {
          font-family: "Font Awesome 5 Free";
          font-weight: 600;
          content: '\f0e0';
          margin-right: 8px; }
        .sec_header .nav_contact .inquiry a:hover {
          color: #DE616A; }

/* float nav*/
.sec_float {
  display: none; }
  @media only screen and (max-width: 767px) {
    .sec_float {
      display: block;
      position: fixed;
      bottom: 0;
      left: 0;
      z-index: 999;
      height: 49px;
      background: #9E242C;
      border-top: 1px solid #fff;
      width: 100%; }
      .sec_float .nav_float {
        display: flex;
        align-items: center;
        height: 100%; }
        .sec_float .nav_float > div {
          flex: 0 1 50%;
          height: 100%; }
          .sec_float .nav_float > div a {
            color: #fff;
            display: block;
            width: 100%;
            height: 100%;
            text-align: center;
            font-weight: 500; }
        .sec_float .nav_float .tel {
          font-size: 18px;
          border-right: 1px solid #fff;
          padding-top: 8px; }
          .sec_float .nav_float .tel a:before {
            font-family: "Font Awesome 5 Free";
            font-weight: 600;
            content: '\f098';
            margin-right: 4px; }
          .sec_float .nav_float .tel span {
            display: block;
            font-size: 12px;
            font-weight: 400;
            margin-top: 4px; }
        .sec_float .nav_float .inquiry {
          font-size: 16px;
          padding-top: 16px; }
          .sec_float .nav_float .inquiry a:before {
            font-family: "Font Awesome 5 Free";
            font-weight: 600;
            content: '\f0e0';
            margin-right: 8px; } }

.sec_hero {
  width: 100%;
  height: 100vh;
  background: url("/images/campaign2020/pic_mainvisual@2x.png") no-repeat;
  background-position: top 80px center;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 100px;
  position: relative;
  overflow: hidden; }
  @media only screen and (max-width: 959px) {
    .sec_hero {
      background-attachment: scroll; } }
  @media only screen and (max-width: 767px) {
    .sec_hero {
      background-position: top 40px center;
      background-size: auto 100%;
      padding-top: 50px; } }
  .sec_hero h2 {
    width: 1100px;
    color: #fff;
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    position: absolute;
    top: 22vh;
    left: 50%;
    transform: translateX(-50%); }
    @media only screen and (max-width: 1099px) {
      .sec_hero h2 {
        top: 25vh;
        width: 90%;
        font-size: 32px; } }
    @media only screen and (max-width: 959px) {
      .sec_hero h2 {
        top: 30vh;
        width: 100%;
        margin: 10px auto;
        font-size: 24px; } }
    @media only screen and (max-width: 767px) {
      .sec_hero h2 {
        top: 35vh;
        font-size: 16px;
        width: 100%;
        margin: 10px 0; } }
  .sec_hero h1 {
    width: 1100px;
    color: #fff;
    text-align: center;
    font-size: 60px;
    font-weight: 900;
    position: absolute;
    top: 30vh;
    left: 50%;
    transform: translateX(-50%); }
    @media only screen and (max-width: 1099px) {
      .sec_hero h1 {
        top: 32vh;
        width: 90%;
        font-size: 46px; } }
    @media only screen and (max-width: 959px) {
      .sec_hero h1 {
        top: 35vh;
        width: 100%;
        margin: 10px auto;
        font-size: 36px; } }
    @media only screen and (max-width: 767px) {
      .sec_hero h1 {
        top: 40vh;
        font-size: 24px;
        width: 100%;
        margin: 10px 0; } }
  .sec_hero .announcement {
    width: 1100px;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    position: absolute;
    top: 42vh;
    left: 50%;
    transform: translateX(-50%); }
    @media only screen and (max-width: 1099px) {
      .sec_hero .announcement {
        top: 28vh;
        width: 90%;
        font-size: 14px; } }
    @media only screen and (max-width: 959px) {
      .sec_hero .announcement {
        top: 45vh;
        width: 100%;
        font-size: 18px; } }
    @media only screen and (max-width: 767px) {
      .sec_hero .announcement {
        top: 28vh;
        font-size: 14px;
        width: 90%;
        line-height: 1.6; } }
    .sec_hero .announcement i {
      margin-right: 0.5rem; }
  .sec_hero .box_catch {
    width: 890px;
    padding: 6px;
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(158, 36, 44, 0.33);
    border-radius: 5px; }
    @media only screen and (max-width: 1099px) {
      .sec_hero .box_catch {
        width: 80%; } }
    @media only screen and (max-width: 767px) {
      .sec_hero .box_catch {
        width: 90%;
        top: 47vh;
        bottom: unset; } }
    .sec_hero .box_catch .catch {
      font-size: 32px;
      line-height: 2;
      color: #fff;
      text-align: center;
      border: 3px dotted #9E242C;
      border-radius: 5px;
      padding: 20px; }
      @media only screen and (max-width: 1099px) {
        .sec_hero .box_catch .catch {
          font-size: 24px; } }
      @media only screen and (max-width: 959px) {
        .sec_hero .box_catch .catch {
          font-size: 20px; } }
      @media only screen and (max-width: 767px) {
        .sec_hero .box_catch .catch {
          font-size: 16px;
          padding: 10px; } }
  .sec_hero .box_scroll {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); }
    @media only screen and (max-width: 767px) {
      .sec_hero .box_scroll {
        display: none; } }
    .sec_hero .box_scroll a {
      background: url("/images/campaign2020/icon_mouse.svg") no-repeat top center;
      background-size: auto 45px;
      padding-top: 50px;
      display: block;
      height: 100%;
      color: #fff;
      font-size: 12px;
      padding-bottom: 4px;
      line-height: 1.2; }
  .sec_hero .box_slide {
    display: none; }
    @media only screen and (max-width: 767px) {
      .sec_hero .box_slide {
        display: block;
        text-align: center;
        position: absolute;
        top: 80vh;
        left: 50%;
        transform: translateX(-50%);
        bottom: unset; }
        .sec_hero .box_slide a {
          background: url("/images/campaign2020/icon_touch.svg") no-repeat top center;
          background-size: auto 35px;
          padding-top: 40px;
          display: block;
          height: 100%;
          color: #fff;
          font-size: 10px;
          padding-bottom: 4px;
          line-height: 1.2; } }
  .sec_hero .badge_campaign {
    width: 500px;
    overflow: hidden;
    background: #DE616A;
    position: absolute;
    right: -175px;
    top: 30px;
    padding-top: 120px;
    padding-bottom: 80px;
    transform: rotate(45deg); }
    @media only screen and (max-width: 959px) {
      .sec_hero .badge_campaign {
        width: 380px;
        top: 55px;
        right: -145px;
        padding-top: 80px;
        padding-bottom: 50px; } }
    @media only screen and (max-width: 767px) {
      .sec_hero .badge_campaign {
        top: 5px;
        right: -145px; } }
    .sec_hero .badge_campaign .box_txt .ttl {
      color: #fff;
      text-align: center;
      font-size: 16px;
      line-height: 1.2; }
      @media only screen and (max-width: 959px) {
        .sec_hero .badge_campaign .box_txt .ttl {
          font-size: 12px; } }
      .sec_hero .badge_campaign .box_txt .ttl span {
        display: block;
        font-size: 30px;
        font-weight: 500; }
        @media only screen and (max-width: 959px) {
          .sec_hero .badge_campaign .box_txt .ttl span {
            font-size: 20px; } }
    .sec_hero .badge_campaign .box_txt .catch {
      color: #fff;
      text-align: center;
      font-size: 16px;
      margin-top: 6px; }
      @media only screen and (max-width: 959px) {
        .sec_hero .badge_campaign .box_txt .catch {
          font-size: 12px; } }
    .sec_hero .badge_campaign .slide {
      white-space: nowrap;
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%); }
      .sec_hero .badge_campaign .slide .slideitem {
        display: inline-block;
        width: 70px;
        height: 51px;
        margin-right: 1px; }
        @media only screen and (max-width: 959px) {
          .sec_hero .badge_campaign .slide .slideitem {
            width: 46px;
            height: 34px; } }
        .sec_hero .badge_campaign .slide .slideitem img {
          width: auto;
          height: 100%; }

@media only screen and (max-width: 959px) {
  .sec_lead .row {
    display: block;
    position: relative;
    height: 600px; } }
.sec_lead .row .col {
  width: 33%;
  position: relative;
  text-align: center; }
  @media only screen and (max-width: 959px) {
    .sec_lead .row .col {
      position: absolute;
      width: 65%; } }
  .sec_lead .row .col p {
    line-height: 1.6; }
    @media only screen and (max-width: 1099px) {
      .sec_lead .row .col p {
        font-size: 16px; } }
    @media only screen and (max-width: 959px) {
      .sec_lead .row .col p {
        font-size: 12px;
        width: 160px;
        margin: auto; } }
  .sec_lead .row .col#pop_left {
    padding-top: 230px;
    padding-bottom: 240px;
    padding-left: 10px;
    background: url("/images/campaign2020/bg_pop-left.svg") no-repeat;
    background-size: auto 65%;
    background-position: top 105px center; }
    @media only screen and (max-width: 1099px) {
      .sec_lead .row .col#pop_left {
        padding-top: 180px;
        background-size: auto 65%;
        background-position: top 80px center;
        padding-bottom: 180px; } }
    @media only screen and (max-width: 959px) {
      .sec_lead .row .col#pop_left {
        padding-top: 55px;
        padding-bottom: 120px;
        background-size: 230px auto;
        background-position: top center;
        padding-left: 0;
        top: 150px;
        left: 0; } }
    .sec_lead .row .col#pop_left::after {
      content: '';
      background: url("/images/campaign2020/icon_lead-01.svg") no-repeat;
      background-size: 90% auto;
      display: block;
      width: 45px;
      height: 67px;
      position: absolute;
      bottom: 30px;
      left: 40%; }
      @media only screen and (max-width: 1099px) {
        .sec_lead .row .col#pop_left::after {
          bottom: 25px; } }
      @media only screen and (max-width: 959px) {
        .sec_lead .row .col#pop_left::after {
          width: 31px;
          height: 40px;
          bottom: 0; } }
  .sec_lead .row .col#pop_center {
    padding-top: 140px;
    padding-bottom: 220px;
    padding-left: 10px;
    background: url("/images/campaign2020/bg_pop-center.svg") no-repeat;
    background-size: auto 63%;
    background-position: top 10px center; }
    @media only screen and (max-width: 1099px) {
      .sec_lead .row .col#pop_center {
        padding-top: 105px;
        background-size: auto 65%;
        background-position: top center; } }
    @media only screen and (max-width: 959px) {
      .sec_lead .row .col#pop_center {
        padding-top: 70px;
        padding-bottom: 120px;
        padding-left: 0;
        background-size: 230px auto;
        background-position: top center;
        top: 0;
        right: 0; } }
    .sec_lead .row .col#pop_center::after {
      content: '';
      background: url("/images/campaign2020/icon_lead-02.svg") no-repeat;
      background-size: 100% auto;
      display: block;
      width: 45px;
      height: 67px;
      position: absolute;
      bottom: 130px;
      left: 40%; }
      @media only screen and (max-width: 1099px) {
        .sec_lead .row .col#pop_center::after {
          bottom: 95px; } }
      @media only screen and (max-width: 959px) {
        .sec_lead .row .col#pop_center::after {
          width: 31px;
          height: 40px;
          bottom: 0; } }
  .sec_lead .row .col#pop_right {
    padding-top: 235px;
    padding-bottom: 240px;
    padding-right: 10px;
    background: url("/images/campaign2020/bg_pop-right.svg") no-repeat;
    background-size: auto 60%;
    background-position: top 130px center; }
    @media only screen and (max-width: 1099px) {
      .sec_lead .row .col#pop_right {
        padding-top: 170px;
        padding-bottom: 230px;
        background-size: auto 65%;
        background-position: top 80px center; } }
    @media only screen and (max-width: 959px) {
      .sec_lead .row .col#pop_right {
        padding-top: 55px;
        padding-bottom: 120px;
        padding-left: 0;
        background-size: 230px auto;
        background-position: top center;
        top: 300px;
        right: 0; } }
    .sec_lead .row .col#pop_right::after {
      content: '';
      background: url("/images/campaign2020/icon_lead-03.svg") no-repeat;
      background-size: 100% auto;
      display: block;
      width: 45px;
      height: 67px;
      position: absolute;
      bottom: 35px;
      left: 50%; }
      @media only screen and (max-width: 1099px) {
        .sec_lead .row .col#pop_right::after {
          bottom: 20px; } }
      @media only screen and (max-width: 959px) {
        .sec_lead .row .col#pop_right::after {
          width: 31px;
          height: 40px;
          bottom: 0; } }
.sec_lead .copy {
  max-width: 1100px;
  margin: 30px auto 60px; }
  @media only screen and (max-width: 1099px) {
    .sec_lead .copy {
      max-width: 920px; } }
  @media only screen and (max-width: 1099px) {
    .sec_lead .copy {
      max-width: unset;
      margin: 20px 10px 40px; } }
  .sec_lead .copy p {
    text-align: center;
    color: #9E242C;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.8; }
    @media only screen and (max-width: 1099px) {
      .sec_lead .copy p {
        font-size: 24px; } }
    @media only screen and (max-width: 959px) {
      .sec_lead .copy p {
        font-size: 16px;
        line-height: 1.2; } }
    .sec_lead .copy p strong {
      display: block;
      font-size: 60px;
      font-weight: 700;
      margin: 60px auto; }
      @media only screen and (max-width: 1099px) {
        .sec_lead .copy p strong {
          font-size: 48px;
          margin: 40px auto; } }
      @media only screen and (max-width: 959px) {
        .sec_lead .copy p strong {
          font-size: 32px;
          margin: 30px auto; } }

.sec_cv-first {
  max-width: 1100px;
  margin: 30px auto 60px;
  border: 3px dotted #9E242C;
  border-radius: 5px;
  padding: 20px; }
  @media only screen and (max-width: 1099px) {
    .sec_cv-first {
      max-width: 920px; } }
  @media only screen and (max-width: 1099px) {
    .sec_cv-first {
      max-width: unset;
      margin: 20px 10px 40px;
      padding: 10px; } }
  .sec_cv-first .box_contact {
    text-align: center;
    padding-top: 40px; }
    @media only screen and (max-width: 1099px) {
      .sec_cv-first .box_contact {
        padding-top: 20px; } }
    .sec_cv-first .box_contact p {
      font-size: 24px;
      margin-bottom: 20px;
      font-weight: 500; }
      @media only screen and (max-width: 959px) {
        .sec_cv-first .box_contact p {
          font-size: 18px;
          line-height: 1.6; } }
    .sec_cv-first .box_contact .row {
      justify-content: center;
      margin-top: 60px; }
      @media only screen and (max-width: 959px) {
        .sec_cv-first .box_contact .row {
          margin-top: 30px; } }
      .sec_cv-first .box_contact .row .col {
        width: 300px; }
        @media only screen and (max-width: 959px) {
          .sec_cv-first .box_contact .row .col {
            width: 100%; } }
        .sec_cv-first .box_contact .row .col.tel p {
          color: #9E242C;
          font-size: 36px;
          font-weight: 500;
          text-align: left; }
          .sec_cv-first .box_contact .row .col.tel p:before {
            font-family: "Font Awesome 5 Free";
            font-weight: 600;
            content: '\f098';
            margin-right: 8px; }
          .sec_cv-first .box_contact .row .col.tel p span {
            display: block;
            font-size: 12px;
            font-weight: 400;
            margin-left: 40px;
            line-height: 1.2; }
            @media only screen and (max-width: 959px) {
              .sec_cv-first .box_contact .row .col.tel p span {
                margin-left: 0; } }
          @media only screen and (max-width: 959px) {
            .sec_cv-first .box_contact .row .col.tel p {
              margin: 0 auto 20px;
              text-align: center; } }
        .sec_cv-first .box_contact .row .col.inquiry .btn_inquiry a {
          font-size: 28px;
          padding: 16px 30px;
          font-weight: 500; }
          @media only screen and (max-width: 959px) {
            .sec_cv-first .box_contact .row .col.inquiry .btn_inquiry a {
              font-size: 24px;
              padding: 12px 40px; } }
          .sec_cv-first .box_contact .row .col.inquiry .btn_inquiry a:before {
            font-family: "Font Awesome 5 Free";
            font-weight: 600;
            content: '\f0e0';
            margin-right: 20px; }
  .sec_cv-first .box_announce {
    /*2020.10 add*/
    background: #FDE7E8;
    border-radius: 5px;
    padding: 30px; }
    @media only screen and (max-width: 767px) {
      .sec_cv-first .box_announce {
        margin-top: 20px;
        padding: 10px; } }
    .sec_cv-first .box_announce .continued {
      text-align: center;
      font-size: 16px;
      color: #9E242C;
      line-height: 1.8; }
      @media only screen and (max-width: 767px) {
        .sec_cv-first .box_announce .continued {
          font-size: 14px; } }
    .sec_cv-first .box_announce .box_btn {
      display: flex;
      justify-content: center;
      margin: 20px auto; }
      @media only screen and (max-width: 767px) {
        .sec_cv-first .box_announce .box_btn {
          flex-wrap: wrap; } }
      @media only screen and (max-width: 767px) {
        .sec_cv-first .box_announce .box_btn .btn {
          width: 100%;
          text-align: center; }
          .sec_cv-first .box_announce .box_btn .btn:first-child {
            margin-bottom: 10px; } }
      .sec_cv-first .box_announce .box_btn .btn a {
        display: inline-block;
        font-size: 12px;
        text-align: center;
        padding: 8px 16px;
        margin: 0 12px;
        line-height: 1.8;
        color: #DE616A;
        border: 1px solid #DE616A;
        background: #FCF7F7;
        width: 350px; }
        .sec_cv-first .box_announce .box_btn .btn a:hover {
          background: #DE616A;
          color: #fff; }
        @media only screen and (max-width: 767px) {
          .sec_cv-first .box_announce .box_btn .btn a {
            font-size: 10px;
            width: 90%; } }
        .sec_cv-first .box_announce .box_btn .btn a em {
          display: block;
          font-size: 18px;
          font-style: normal;
          font-weight: 700; }
          @media only screen and (max-width: 767px) {
            .sec_cv-first .box_announce .box_btn .btn a em {
              font-size: 14px; } }
          .sec_cv-first .box_announce .box_btn .btn a em:before {
            font-family: "Font Awesome 5 Free";
            font-weight: 600;
            content: '\f105';
            margin-right: 8px; }
  .sec_cv-first .box_caution {
    margin-top: 80px; }
    .sec_cv-first .box_caution .ttl_primary {
      background: #9E242C;
      color: #fff;
      text-align: center;
      margin: auto 10px;
      border-radius: 30px;
      padding: 12px; }
      @media only screen and (max-width: 1099px) {
        .sec_cv-first .box_caution .ttl_primary {
          margin: auto; } }
      @media only screen and (max-width: 959px) {
        .sec_cv-first .box_caution .ttl_primary {
          text-align: left;
          font-size: 14px;
          line-height: 1.2;
          padding: 10px 16px;
          border-radius: 5px;
          line-height: 1.6; } }
      .sec_cv-first .box_caution .ttl_primary img {
        vertical-align: middle;
        margin-right: 8px; }
        @media only screen and (max-width: 959px) {
          .sec_cv-first .box_caution .ttl_primary img {
            width: 70px;
            height: auto;
            vertical-align: top; } }
    .sec_cv-first .box_caution .row {
      margin-top: 12px; }
      @media only screen and (max-width: 959px) {
        .sec_cv-first .box_caution .row {
          justify-content: space-around;
          margin: auto 0; } }
      .sec_cv-first .box_caution .row .col {
        flex: 0 1 20%;
        text-align: center;
        padding: 150px 10px 12px;
        font-size: 16px;
        color: #9E242C; }
        @media only screen and (max-width: 959px) {
          .sec_cv-first .box_caution .row .col {
            flex: 0 1 50%;
            font-size: 12px;
            margin-bottom: 12px;
            background-size: 80% auto;
            padding: 120px 10px 12px; } }
        .sec_cv-first .box_caution .row .col:nth-child(1) {
          background: url("/images/campaign2020/icon_covid-01.svg") no-repeat top 25px center;
          border-right: 1px dashed #9E242C; }
          @media only screen and (max-width: 959px) {
            .sec_cv-first .box_caution .row .col:nth-child(1) {
              border-right: none; } }
        .sec_cv-first .box_caution .row .col:nth-child(2) {
          background: url("/images/campaign2020/icon_covid-02.svg") no-repeat top 25px center;
          border-right: 1px dashed #9E242C; }
          @media only screen and (max-width: 959px) {
            .sec_cv-first .box_caution .row .col:nth-child(2) {
              border-right: none; } }
        .sec_cv-first .box_caution .row .col:nth-child(3) {
          background: url("/images/campaign2020/icon_covid-03.svg") no-repeat top 25px center;
          border-right: 1px dashed #9E242C; }
          @media only screen and (max-width: 959px) {
            .sec_cv-first .box_caution .row .col:nth-child(3) {
              border-right: none; } }
        .sec_cv-first .box_caution .row .col:nth-child(4) {
          background: url("/images/campaign2020/icon_covid-04.svg") no-repeat top 25px center;
          border-right: 1px dashed #9E242C; }
          @media only screen and (max-width: 959px) {
            .sec_cv-first .box_caution .row .col:nth-child(4) {
              border-right: none; } }
        .sec_cv-first .box_caution .row .col:nth-child(5) {
          background: url("/images/campaign2020/icon_covid-05.svg") no-repeat top 25px center; }

_:-ms-lang(x)::-ms-backdrop, .sec_cv-first .box_caution .row .col {
  width: 18%;
  flex: 0 1 18%; }

.sec_point {
  background: white no-repeat;
  background: linear-gradient(0deg, white 0%, #fcf7f7 100%) no-repeat; }
  .sec_point:before {
    content: '';
    display: block;
    width: 100%;
    height: 120px;
    background: #fcf7f7 no-repeat;
    background: linear-gradient(0deg, #fcf7f7 80%, white 100%) no-repeat no-repeat; }
    @media only screen and (max-width: 959px) {
      .sec_point:before {
        height: 80px; } }
  .sec_point .ttl_primary {
    text-align: center;
    font-size: 30px;
    color: #DE616A;
    font-weight: 500; }
    @media only screen and (max-width: 959px) {
      .sec_point .ttl_primary {
        font-size: 16px;
        line-height: 1.6; } }
    .sec_point .ttl_primary span {
      display: block;
      font-size: 18px; }
      @media only screen and (max-width: 959px) {
        .sec_point .ttl_primary span {
          font-size: 12px; } }
    .sec_point .ttl_primary em {
      font-size: 60px;
      font-style: normal;
      font-weight: 700;
      line-height: 0.5; }
      @media only screen and (max-width: 959px) {
        .sec_point .ttl_primary em {
          font-size: 48px;
          line-height: 1; } }
  .sec_point .row {
    justify-content: space-between;
    margin-top: 80px; }
    @media only screen and (max-width: 959px) {
      .sec_point .row {
        margin-top: 20px; } }
    .sec_point .row .col {
      flex: 0 1 32%;
      border: 1px solid #DE616A;
      border-radius: 5px;
      position: relative; }
      @media only screen and (max-width: 959px) {
        .sec_point .row .col {
          flex: 0 1 100%;
          margin-bottom: 20px; } }
      .sec_point .row .col figure {
        background: #FCCBCF;
        margin: 0;
        height: 300px;
        position: relative;
        overflow: hidden; }
        @media only screen and (max-width: 1099px) {
          .sec_point .row .col figure {
            height: 250px; } }
        @media only screen and (max-width: 959px) {
          .sec_point .row .col figure {
            height: 160px; } }
        .sec_point .row .col figure:before {
          content: '';
          display: block;
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: -50%;
          background: #FDE7E8;
          transform: skewX(-50deg); }
        .sec_point .row .col figure img {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
          @media only screen and (max-width: 959px) {
            .sec_point .row .col figure img {
              width: auto;
              height: 120px; } }
      .sec_point .row .col .label {
        background: #fff;
        padding: 8px 4px;
        border-top: 1px solid #DE616A;
        border-right: 1px solid #DE616A;
        border-bottom: 1px solid #DE616A;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        position: absolute;
        left: 0;
        top: 282px;
        font-family: "PT Sans", sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: #DE616A; }
        @media only screen and (max-width: 1099px) {
          .sec_point .row .col .label {
            top: 232px; } }
        @media only screen and (max-width: 959px) {
          .sec_point .row .col .label {
            top: 145px;
            font-size: 10px; } }
        .sec_point .row .col .label span {
          background: #DE616A;
          color: #fff;
          padding: 4px 10px;
          margin-left: 4px;
          border-radius: 5px; }
          @media only screen and (max-width: 959px) {
            .sec_point .row .col .label span {
              padding: 4px 6px; } }
      .sec_point .row .col .ttl_secondary {
        margin-top: 30px;
        padding: 0 10px;
        font-size: 24px;
        line-height: 1.2;
        color: #DE616A;
        min-height: 60px; }
        @media only screen and (max-width: 1099px) {
          .sec_point .row .col .ttl_secondary {
            font-size: 20px; } }
        @media only screen and (max-width: 959px) {
          .sec_point .row .col .ttl_secondary {
            margin-top: 20px;
            font-size: 16px;
            min-height: unset; } }
      .sec_point .row .col .txt {
        padding: 10px 10px;
        line-height: 1.8; }
        @media only screen and (max-width: 1099px) {
          .sec_point .row .col .txt {
            font-size: 16px; } }
        @media only screen and (max-width: 959px) {
          .sec_point .row .col .txt {
            font-size: 14px; } }
  .sec_point .box_summary {
    max-width: 1100px;
    margin: 60px auto;
    padding-left: 150px;
    background: url("/images/campaign2020/icon_point-04.svg") no-repeat;
    background-position: left 40px bottom; }
    @media only screen and (max-width: 1099px) {
      .sec_point .box_summary {
        max-width: 920px;
        padding-left: 150px; } }
    @media only screen and (max-width: 959px) {
      .sec_point .box_summary {
        margin: 20px 10px;
        padding-left: 0;
        padding-bottom: 60px;
        background-position: center bottom;
        background-size: 38px auto; } }
    .sec_point .box_summary p {
      border: 1px solid #9E9B34;
      border-radius: 5px;
      padding: 20px;
      color: #9E9B34;
      font-size: 22px;
      font-weight: 500;
      line-height: 1.6;
      position: relative; }
      @media only screen and (max-width: 1099px) {
        .sec_point .box_summary p {
          font-size: 18px; } }
      @media only screen and (max-width: 959px) {
        .sec_point .box_summary p {
          padding: 16px;
          font-size: 14px; } }
      .sec_point .box_summary p::before {
        content: '';
        position: absolute;
        display: block;
        width: 0;
        height: 0;
        left: -15px;
        top: 30px;
        border-right: 15px solid #9E9B34;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent; }
        @media only screen and (max-width: 1099px) {
          .sec_point .box_summary p::before {
            top: 15px; } }
        @media only screen and (max-width: 959px) {
          .sec_point .box_summary p::before {
            top: unset;
            left: 50%;
            transform: translateX(-50%);
            bottom: -30px;
            border-top: 15px solid #9E9B34;
            border-right: 15px solid transparent;
            border-left: 15px solid transparent; } }
      .sec_point .box_summary p::after {
        content: '';
        position: absolute;
        display: block;
        width: 0;
        height: 0;
        left: -14px;
        top: 30px;
        border-right: 15px solid #fff;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent; }
        @media only screen and (max-width: 1099px) {
          .sec_point .box_summary p::after {
            top: 15px; } }
        @media only screen and (max-width: 959px) {
          .sec_point .box_summary p::after {
            top: unset;
            left: 50%;
            transform: translateX(-50%);
            bottom: -29px;
            border-top: 15px solid #fff;
            border-right: 15px solid transparent;
            border-left: 15px solid transparent; } }

.sec_support {
  margin-top: 120px;
  background: #fbfaf3 no-repeat;
  background: linear-gradient(0deg, #fbfaf3 80%, white 100%) no-repeat;
  background-position: left bottom;
  background-size: 100% 600px; }
  @media only screen and (max-width: 1099px) {
    .sec_support {
      margin-top: 60px; } }
  .sec_support .ttl_primary {
    text-align: center;
    font-size: 36px;
    color: #9E242C;
    font-weight: 500; }
    @media only screen and (max-width: 959px) {
      .sec_support .ttl_primary {
        margin-top: 60px;
        font-size: 16px;
        line-height: 1.6; } }
    .sec_support .ttl_primary img {
      vertical-align: middle;
      margin-right: 8px; }
      @media only screen and (max-width: 959px) {
        .sec_support .ttl_primary img {
          width: 150px;
          height: auto; } }
  .sec_support .row {
    margin-top: 30px;
    justify-content: space-between; }
    .sec_support .row .col {
      flex: 0 1 32%;
      margin-bottom: 20px; }
      @media only screen and (max-width: 959px) {
        .sec_support .row .col {
          flex: 0 1 100%; } }
      .sec_support .row .col .img {
        overflow: hidden;
        position: relative;
        height: 165px;
        margin-bottom: 16px; }
        .sec_support .row .col .img img {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          width: 100%;
          height: auto; }
      .sec_support .row .col .ttl_secondary {
        border-left: 6px solid #9E242C;
        padding-left: 24px;
        line-height: 1.6;
        font-weight: 500;
        min-height: 60px;
        margin-bottom: 16px; }
        @media only screen and (max-width: 959px) {
          .sec_support .row .col .ttl_secondary {
            padding-left: 16px;
            font-size: 16px;
            min-height: 40px; } }
      .sec_support .row .col .txt {
        font-size: 18px;
        line-height: 1.8; }
        @media only screen and (max-width: 1099px) {
          .sec_support .row .col .txt {
            font-size: 16px; } }
        @media only screen and (max-width: 959px) {
          .sec_support .row .col .txt {
            font-size: 14px; } }

.sec_flow {
  padding-top: 120px;
  background: white no-repeat;
  background: linear-gradient(0deg, white 0%, #fbfaf3 100%) no-repeat;
  background-position: left top;
  background-size: 100% 600px; }
  @media only screen and (max-width: 959px) {
    .sec_flow {
      padding-top: 60px; } }
  .sec_flow .ttl_primary {
    text-align: center;
    color: #9FBE55;
    font-size: 36px;
    font-weight: 500; }
    @media only screen and (max-width: 959px) {
      .sec_flow .ttl_primary {
        font-size: 20px; } }
  .sec_flow .row {
    margin-top: 50px; }
    .sec_flow .row .col {
      flex: 0 1 25%;
      background: url("/images/campaign2020/icon_arrow_g.svg") no-repeat right 30px center;
      margin-bottom: 20px; }
      .sec_flow .row .col:last-child {
        background: none; }
      @media only screen and (max-width: 959px) {
        .sec_flow .row .col {
          flex: 0 1 50%;
          position: relative;
          width: 50%;
          height: auto;
          background: url("/images/campaign2020/icon_arrow_g.svg") no-repeat right 7% top 35%;
          margin-bottom: 0; }
          .sec_flow .row .col:before {
            content: "";
            display: block;
            padding-top: 100%; } }
      .sec_flow .row .col:nth-child(3) .box_flow {
        opacity: 0.8; }
      .sec_flow .row .col .box_flow {
        width: 180px;
        height: 180px;
        background: #9FBE55;
        border-radius: 5px;
        position: relative;
        overflow: hidden;
        margin-right: 95px; }
        @media only screen and (max-width: 959px) {
          .sec_flow .row .col .box_flow {
            position: absolute;
            top: 0;
            left: 0;
            width: 80%;
            height: 80%; } }
        .sec_flow .row .col .box_flow:before {
          content: '';
          display: block;
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: -50%;
          background: #A7C65E;
          transform: skewX(-45deg); }
        .sec_flow .row .col .box_flow figure img {
          position: absolute;
          top: 30px;
          left: 50%;
          transform: translateX(-50%); }
          @media only screen and (max-width: 959px) {
            .sec_flow .row .col .box_flow figure img {
              top: 20px;
              width: auto;
              height: 40%; } }
        .sec_flow .row .col .box_flow .num {
          position: absolute;
          bottom: -5px;
          right: -5px;
          font-family: "PT Sans", sans-serif;
          font-size: 18px;
          font-weight: 700;
          background: #9FBE55;
          padding: 4px 8px;
          border-radius: 5px;
          border: 3px solid #fff;
          color: #fff; }
        .sec_flow .row .col .box_flow .label {
          position: absolute;
          bottom: 15px;
          left: 50%;
          transform: translateX(-50%);
          text-align: center;
          width: 100%;
          padding: 0 15px;
          line-height: 1.2;
          color: #fff;
          min-height: 40px; }
          @media only screen and (max-width: 959px) {
            .sec_flow .row .col .box_flow .label {
              font-size: 14px;
              bottom: 10px; } }
      .sec_flow .row .col .caution {
        margin-top: 4px;
        font-size: 14px; }
        @media only screen and (max-width: 959px) {
          .sec_flow .row .col .caution {
            position: absolute;
            font-size: 10px;
            left: 0;
            bottom: 10%; } }
  .sec_flow .box_last .txt {
    text-align: center;
    margin-top: 30px;
    padding-bottom: 40px;
    background: url("/images/campaign2020/icon_arrow-down_g.svg") no-repeat bottom center; }
    @media only screen and (max-width: 959px) {
      .sec_flow .box_last .txt {
        margin-top: 20px;
        font-size: 16px;
        background-size: 150px auto; } }
  .sec_flow .box_last .box_flow {
    width: 280px;
    height: 280px;
    background: #9FBE55;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    margin: 30px auto; }
    .sec_flow .box_last .box_flow:before {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: -50%;
      background: #A7C65E;
      transform: skewX(-45deg); }
    .sec_flow .box_last .box_flow figure img {
      position: absolute;
      top: 30px;
      left: 50%;
      transform: translateX(-50%); }
    .sec_flow .box_last .box_flow .label {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      width: 100%;
      padding: 0 15px;
      font-size: 24px;
      line-height: 1.6;
      color: #fff;
      min-height: 40px; }
      @media only screen and (max-width: 959px) {
        .sec_flow .box_last .box_flow .label {
          font-size: 20px; } }

.sec_enquete {
  margin-top: 120px;
  padding-bottom: 120px;
  background: #fbfaf3 no-repeat;
  background: linear-gradient(90deg, #fbfaf3 80%, white 100%) no-repeat; }
  @media only screen and (max-width: 959px) {
    .sec_enquete {
      margin-top: 60px;
      padding-bottom: 30px; } }
  .sec_enquete .box_graph {
    position: relative;
    max-width: 1100px;
    margin: auto; }
    @media only screen and (max-width: 1099px) {
      .sec_enquete .box_graph {
        max-width: 920px; } }
    @media only screen and (max-width: 959px) {
      .sec_enquete .box_graph {
        margin: 20px 10px; } }
    .sec_enquete .box_graph .ttl_primary {
      position: absolute;
      top: 15px;
      left: 0;
      background: #9E9B34;
      padding: 12px 40px;
      border-radius: 5px;
      color: #fff;
      font-size: 32px;
      font-weight: 500;
      transform: rotate(-15deg);
      z-index: 30; }
      @media only screen and (max-width: 959px) {
        .sec_enquete .box_graph .ttl_primary {
          font-size: 18px;
          padding: 12px 60px 12px 20px;
          left: unset;
          right: -40px; } }
    .sec_enquete .box_graph .graph {
      height: 650px;
      border-bottom: 1px solid #9E9B34;
      position: relative; }
      @media only screen and (max-width: 959px) {
        .sec_enquete .box_graph .graph {
          height: 600px; } }
      .sec_enquete .box_graph .graph .data {
        position: absolute;
        font-family: "PT Sans", sans-serif;
        font-size: 36px;
        width: 15%;
        text-align: center; }
        @media only screen and (max-width: 959px) {
          .sec_enquete .box_graph .graph .data {
            font-size: 12px; } }
        .sec_enquete .box_graph .graph .data em {
          font-size: 60px;
          font-weight: 700;
          font-style: normal; }
          @media only screen and (max-width: 959px) {
            .sec_enquete .box_graph .graph .data em {
              font-size: 30px; } }
        .sec_enquete .box_graph .graph .data#graph-data-01 {
          bottom: 465px;
          left: 8%;
          color: #9FBE55; }
        .sec_enquete .box_graph .graph .data#graph-data-02 {
          bottom: 185px;
          left: 31%;
          color: #9FBE55; }
        .sec_enquete .box_graph .graph .data#graph-data-03 {
          bottom: 80px;
          left: 54%;
          color: #A7C65E; }
        .sec_enquete .box_graph .graph .data#graph-data-04 {
          bottom: 65px;
          left: 77%;
          color: #A7C65E; }
      .sec_enquete .box_graph .graph .bar {
        position: absolute;
        bottom: 0;
        width: 15%; }
        .sec_enquete .box_graph .graph .bar#graph-bar-01 {
          height: 460px;
          left: 8%;
          background: #9FBE55; }
        .sec_enquete .box_graph .graph .bar#graph-bar-02 {
          height: 180px;
          left: 31%;
          background: #9FBE55; }
        .sec_enquete .box_graph .graph .bar#graph-bar-03 {
          height: 75px;
          left: 54%;
          background: #A7C65E; }
        .sec_enquete .box_graph .graph .bar#graph-bar-04 {
          height: 60px;
          left: 77%;
          background: #A7C65E; }
      .sec_enquete .box_graph .graph .label {
        position: absolute;
        top: 655px;
        width: 15%;
        border: 1px solid #9FBE55;
        border-radius: 5px;
        background: #fff;
        padding: 8px; }
        .sec_enquete .box_graph .graph .label#graph-label-01 {
          left: 8%; }
        .sec_enquete .box_graph .graph .label#graph-label-02 {
          left: 31%; }
        .sec_enquete .box_graph .graph .label#graph-label-03 {
          left: 54%; }
        .sec_enquete .box_graph .graph .label#graph-label-04 {
          left: 77%; }
        .sec_enquete .box_graph .graph .label p {
          font-size: 16px;
          line-height: 1.6; }
          @media only screen and (max-width: 959px) {
            .sec_enquete .box_graph .graph .label p {
              font-size: 12px; } }
        .sec_enquete .box_graph .graph .label::before {
          content: '';
          position: absolute;
          display: block;
          width: 0;
          height: 0;
          left: 50%;
          transform: translateX(-50%);
          top: -15px;
          border-right: 15px solid transparent;
          border-bottom: 15px solid #9FBE55;
          border-left: 15px solid transparent; }
        .sec_enquete .box_graph .graph .label::after {
          content: '';
          position: absolute;
          display: block;
          width: 0;
          height: 0;
          left: 50%;
          transform: translateX(-50%);
          top: -14px;
          border-right: 15px solid transparent;
          border-bottom: 15px solid #fff;
          border-left: 15px solid transparent; }
        @media only screen and (max-width: 959px) {
          .sec_enquete .box_graph .graph .label {
            width: auto; }
            .sec_enquete .box_graph .graph .label#graph-label-01 {
              left: 24%;
              top: 200px; }
              .sec_enquete .box_graph .graph .label#graph-label-01::before {
                top: 50%;
                transform: translateY(-50%);
                left: -25px;
                border-top: 10px solid transparent;
                border-right: 10px solid #9FBE55;
                border-bottom: 10px solid transparent; }
              .sec_enquete .box_graph .graph .label#graph-label-01::after {
                top: 50%;
                transform: translateY(-50%);
                left: -24px;
                border-top: 10px solid transparent;
                border-right: 10px solid #fff;
                border-bottom: 10px solid transparent; }
            .sec_enquete .box_graph .graph .label#graph-label-02 {
              top: 330px;
              left: 31%; }
              .sec_enquete .box_graph .graph .label#graph-label-02::before {
                top: unset;
                bottom: -10px;
                left: 11%;
                border-right: 10px solid transparent;
                border-top: 10px solid #9FBE55;
                border-left: 10px solid transparent;
                border-bottom: unset; }
              .sec_enquete .box_graph .graph .label#graph-label-02::after {
                top: unset;
                bottom: -9px;
                left: 11%;
                border-right: 10px solid transparent;
                border-top: 10px solid #fff;
                border-left: 10px solid transparent;
                border-bottom: unset; }
            .sec_enquete .box_graph .graph .label#graph-label-03 {
              top: 420px;
              left: 54%; }
              .sec_enquete .box_graph .graph .label#graph-label-03::before {
                top: unset;
                bottom: -10px;
                left: 13%;
                border-right: 10px solid transparent;
                border-top: 10px solid #9FBE55;
                border-left: 10px solid transparent;
                border-bottom: unset; }
              .sec_enquete .box_graph .graph .label#graph-label-03::after {
                top: unset;
                bottom: -9px;
                left: 13%;
                border-right: 10px solid transparent;
                border-top: 10px solid #fff;
                border-left: 10px solid transparent;
                border-bottom: unset; }
            .sec_enquete .box_graph .graph .label#graph-label-04 {
              left: unset;
              top: 605px;
              right: 10px; }
              .sec_enquete .box_graph .graph .label#graph-label-04::before {
                left: 80%;
                top: -10px;
                border-right: 10px solid transparent;
                border-bottom: 10px solid #9FBE55;
                border-left: 10px solid transparent; }
              .sec_enquete .box_graph .graph .label#graph-label-04::after {
                left: 80%;
                top: -9px;
                border-right: 9px solid transparent;
                border-bottom: 9px solid #fff;
                border-left: 9px solid transparent; } }
    .sec_enquete .box_graph .box_txt {
      position: absolute;
      top: 30px;
      right: 10px;
      width: 67.27%;
      padding: 16px;
      border: 3px solid #9E9B34;
      border-radius: 5px;
      background: #fff;
      z-index: 20; }
      @media only screen and (max-width: 959px) {
        .sec_enquete .box_graph .box_txt {
          position: static;
          width: auto;
          margin: 60px 10px 0; } }
      .sec_enquete .box_graph .box_txt p {
        font-size: 16px;
        line-height: 1.8; }
        @media only screen and (max-width: 959px) {
          .sec_enquete .box_graph .box_txt p {
            font-size: 12px; } }

.sec_reason .catch {
  text-align: center;
  color: #DE616A;
  font-size: 48px;
  font-weight: 700;
  margin-top: 60px;
  padding-top: 60px;
  background: url("/images/campaign2020/icon_arrow_r.svg") no-repeat top center; }
  @media only screen and (max-width: 959px) {
    .sec_reason .catch {
      margin-top: 30px;
      font-size: 18px; } }
.sec_reason .box_reason {
  background: white no-repeat;
  background: linear-gradient(0deg, white 0%, #fcf7f7 50%, white 100%) no-repeat;
  background-size: 100% 100%; }
  .sec_reason .box_reason .row {
    padding-top: 80px;
    position: relative; }
    @media only screen and (max-width: 959px) {
      .sec_reason .box_reason .row {
        padding-top: 60px; } }
    .sec_reason .box_reason .row .box_img {
      flex: 0 1 51%;
      background: #FDE7E8;
      position: relative;
      border-radius: 5px;
      padding: 30px 18px 18px; }
      @media only screen and (max-width: 959px) {
        .sec_reason .box_reason .row .box_img {
          flex: 0 1 100%;
          padding: 20px 10px 10px; } }
      .sec_reason .box_reason .row .box_img .label {
        border: 1px solid #DE616A;
        border-radius: 5px;
        color: #DE616A;
        padding: 12px 8px;
        position: absolute;
        top: -24px;
        left: 18px;
        background: #fff; }
        @media only screen and (max-width: 959px) {
          .sec_reason .box_reason .row .box_img .label {
            top: -20px;
            font-size: 10px;
            left: 10px; } }
        .sec_reason .box_reason .row .box_img .label span {
          color: #fff;
          background: #DE616A;
          font-style: "PT Sans", sans-serif;
          font-weight: 700;
          padding: 2px 8px;
          border-radius: 5px;
          margin-left: 4px; }
      .sec_reason .box_reason .row .box_img .ttl_secondary {
        color: #DE616A;
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 12px; }
        @media only screen and (max-width: 959px) {
          .sec_reason .box_reason .row .box_img .ttl_secondary {
            font-size: 16px; } }
      .sec_reason .box_reason .row .box_img .img {
        width: 100%;
        height: auto;
        overflow: hidden;
        position: relative; }
        .sec_reason .box_reason .row .box_img .img:before {
          content: "";
          display: block;
          padding-top: 66.6666666666%; }
        .sec_reason .box_reason .row .box_img .img img {
          border-radius: 5px;
          width: 100%;
          height: 100%;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
    .sec_reason .box_reason .row .box_txt {
      flex: 0 1 49%; }
      @media only screen and (max-width: 959px) {
        .sec_reason .box_reason .row .box_txt {
          flex: 0 1 100%; } }
      .sec_reason .box_reason .row .box_txt p {
        margin: 60px 10px auto 30px;
        font-size: 16px;
        line-height: 1.8; }
        @media only screen and (max-width: 959px) {
          .sec_reason .box_reason .row .box_txt p {
            margin: 10px;
            font-size: 12px; } }
    .sec_reason .box_reason .row .box_catch {
      position: absolute;
      width: 53%;
      border: 1px solid #DE616A;
      background: #fff;
      border-radius: 5px; }
      @media only screen and (max-width: 1099px) {
        .sec_reason .box_reason .row .box_catch {
          position: static;
          width: 100%;
          margin: 20px 10px; } }
      .sec_reason .box_reason .row .box_catch .quote {
        padding: 30px;
        font-size: 18px;
        line-height: 1.8;
        position: relative; }
        @media only screen and (max-width: 959px) {
          .sec_reason .box_reason .row .box_catch .quote {
            margin: 10px;
            font-size: 14px;
            padding: 20px 10px; } }
        .sec_reason .box_reason .row .box_catch .quote:before {
          font-family: "Font Awesome 5 Free";
          font-weight: 600;
          content: '\f10d';
          display: block;
          position: absolute;
          left: 10px;
          top: 10px;
          color: #FDE7E8; }
          @media only screen and (max-width: 959px) {
            .sec_reason .box_reason .row .box_catch .quote:before {
              left: 5px;
              top: 0; } }
        .sec_reason .box_reason .row .box_catch .quote:after {
          font-family: "Font Awesome 5 Free";
          font-weight: 600;
          content: '\f10e';
          display: block;
          position: absolute;
          right: 10px;
          bottom: 10px;
          color: #FDE7E8; }
          @media only screen and (max-width: 959px) {
            .sec_reason .box_reason .row .box_catch .quote:after {
              right: 5px;
              bottom: 5px; } }
      .sec_reason .box_reason .row .box_catch .box_btn {
        margin-bottom: 20px;
        text-align: center; }
        .sec_reason .box_reason .row .box_catch .box_btn .btn_reason a {
          font-size: 16px; }
          @media only screen and (max-width: 959px) {
            .sec_reason .box_reason .row .box_catch .box_btn .btn_reason a {
              font-size: 14px; } }
  .sec_reason .box_reason#reason-01 {
    margin-bottom: 80px; }
    @media only screen and (max-width: 1099px) {
      .sec_reason .box_reason#reason-01 {
        margin-bottom: 0; } }
    .sec_reason .box_reason#reason-01 .box_catch {
      bottom: -80px;
      right: 0; }
  .sec_reason .box_reason#reason-02 {
    margin-bottom: 80px; }
    @media only screen and (max-width: 1099px) {
      .sec_reason .box_reason#reason-02 {
        margin-bottom: 0; } }
    .sec_reason .box_reason#reason-02 .row {
      flex-direction: row-reverse; }
      .sec_reason .box_reason#reason-02 .row .box_img .label {
        left: unset;
        right: 18px; }
        @media only screen and (max-width: 959px) {
          .sec_reason .box_reason#reason-02 .row .box_img .label {
            right: unset;
            left: 10px; } }
      .sec_reason .box_reason#reason-02 .row .box_img .ttl_secondary {
        text-align: right; }
        @media only screen and (max-width: 959px) {
          .sec_reason .box_reason#reason-02 .row .box_img .ttl_secondary {
            text-align: left; } }
    .sec_reason .box_reason#reason-02 .box_catch {
      bottom: -90px;
      left: 0; }
  .sec_reason .box_reason#reason-03 {
    margin-bottom: 80px; }
    .sec_reason .box_reason#reason-03 .row .box_img .list_img ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
    .sec_reason .box_reason#reason-03 .row .box_img .list_img li {
      flex: 0 1 48%;
      text-align: center; }
      .sec_reason .box_reason#reason-03 .row .box_img .list_img li img {
        width: 100%;
        height: auto; }
      .sec_reason .box_reason#reason-03 .row .box_img .list_img li span {
        display: block;
        color: #DE616A;
        font-size: 16px;
        margin: 4px auto 8px; }
        @media only screen and (max-width: 1099px) {
          .sec_reason .box_reason#reason-03 .row .box_img .list_img li span {
            font-size: 12px; } }
    .sec_reason .box_reason#reason-03 .box_catch {
      width: 47%;
      bottom: 150px;
      left: unset;
      right: 0; }
      @media only screen and (max-width: 1099px) {
        .sec_reason .box_reason#reason-03 .box_catch {
          width: 100% !important; } }
      .sec_reason .box_reason#reason-03 .box_catch .label {
        text-align: center;
        font-size: 32px;
        font-weight: 500;
        color: #9E242C;
        margin-top: 16px; }
        @media only screen and (max-width: 959px) {
          .sec_reason .box_reason#reason-03 .box_catch .label {
            font-size: 24px; } }
        .sec_reason .box_reason#reason-03 .box_catch .label img {
          width: 144px;
          vertical-align: middle;
          margin-right: 8px; }
          @media only screen and (max-width: 959px) {
            .sec_reason .box_reason#reason-03 .box_catch .label img {
              width: 96px; } }
      .sec_reason .box_reason#reason-03 .box_catch .txt {
        text-align: center;
        font-size: 16px;
        margin: 12px auto 16px; }
        @media only screen and (max-width: 959px) {
          .sec_reason .box_reason#reason-03 .box_catch .txt {
            font-size: 14px; } }
      .sec_reason .box_reason#reason-03 .box_catch .btn {
        width: 60%; }

_:-ms-lang(x)::-ms-backdrop, .sec_reason .box_reason .row .col.box_txt {
  width: 45%;
  flex: 0 1 45%; }

.sec_faq {
  position: relative;
  max-width: 1100px;
  margin: 120px auto;
  border: 1px solid #9E242C;
  border-radius: 5px;
  padding: 18px; }
  @media only screen and (max-width: 1099px) {
    .sec_faq {
      max-width: 920px;
      padding: 10px; } }
  @media only screen and (max-width: 959px) {
    .sec_faq {
      margin: 20px 10px; } }
  .sec_faq .ttl_primary {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    color: #9E242C;
    margin-top: 20px; }
    @media only screen and (max-width: 959px) {
      .sec_faq .ttl_primary {
        font-size: 18px; } }
  .sec_faq dl {
    margin: 30px auto 60px; }
    @media only screen and (max-width: 959px) {
      .sec_faq dl {
        margin: 16px auto 30px; } }
    .sec_faq dl dt {
      font-size: 18px;
      font-weight: 500;
      line-height: 1.6;
      margin-bottom: 20px;
      padding-left: 40px;
      padding-top: 4px;
      position: relative; }
      @media only screen and (max-width: 959px) {
        .sec_faq dl dt {
          font-size: 12px;
          padding-left: 20px;
          margin-bottom: 10px; } }
      .sec_faq dl dt:before {
        content: 'Q';
        font-family: "PT Sans", sans-serif;
        font-weight: 700;
        color: #9E242C;
        font-size: 24px;
        display: block;
        position: absolute;
        top: 0;
        left: 0; }
        @media only screen and (max-width: 959px) {
          .sec_faq dl dt:before {
            font-size: 18px; } }
    .sec_faq dl dd {
      margin-left: 0;
      margin-bottom: 30px;
      padding-left: 40px;
      padding-top: 4px;
      font-size: 18px;
      line-height: 1.6;
      position: relative; }
      @media only screen and (max-width: 959px) {
        .sec_faq dl dd {
          font-size: 12px;
          padding-left: 20px;
          margin-bottom: 20px; } }
      .sec_faq dl dd:before {
        content: 'A';
        font-family: "PT Sans", sans-serif;
        font-weight: 700;
        color: #9E9B34;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        font-size: 24px; }
        @media only screen and (max-width: 959px) {
          .sec_faq dl dd:before {
            font-size: 18px; } }
  .sec_faq .box_btn {
    text-align: center;
    margin: 20px auto; }
    .sec_faq .box_btn .btn a {
      font-size: 20px;
      padding: 24px 60px; }

.sec_ending {
  max-width: 1100px;
  margin: 0 auto 120px; }
  @media only screen and (max-width: 1099px) {
    .sec_ending {
      max-width: 920px;
      padding: 10px; } }
  @media only screen and (max-width: 959px) {
    .sec_ending {
      margin: 20px 10px; } }
  .sec_ending .ttl_primary {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 40px; }
    @media only screen and (max-width: 959px) {
      .sec_ending .ttl_primary {
        font-size: 14px;
        margin-bottom: 20px; }
        .sec_ending .ttl_primary img {
          height: 34px; } }
  .sec_ending .txt {
    text-align: center;
    font-size: 18px;
    line-height: 2;
    margin-bottom: 30px; }
    @media only screen and (max-width: 959px) {
      .sec_ending .txt {
        font-size: 14px;
        text-align: left; } }
  .sec_ending .box_btn {
    text-align: center;
    margin: 20px auto; }
    .sec_ending .box_btn .btn a {
      font-size: 20px;
      padding: 24px 60px; }
      .sec_ending .box_btn .btn a span {
        font-size: 24px;
        margin-right: 4px; }

.sec_cv {
  margin-top: 120px;
  position: relative; }
  @media only screen and (max-width: 959px) {
    .sec_cv {
      margin-top: 60px; } }
  .sec_cv .box_slide {
    padding-top: 60px;
    overflow: hidden;
    position: relative;
    height: 222px; }
    @media only screen and (max-width: 959px) {
      .sec_cv .box_slide {
        height: 157px; } }
    .sec_cv .box_slide .slide {
      margin: 0 auto; }
      .sec_cv .box_slide .slide .slideitem {
        border-right: 1px solid #fff;
        display: inline-block;
        position: relative;
        overflow: hidden; }
        @media only screen and (max-width: 959px) {
          .sec_cv .box_slide .slide .slideitem img {
            width: 100%;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); } }
  .sec_cv .box_contact {
    background: #9E242C;
    padding: 40px 0; }
    .sec_cv .box_contact .txt {
      color: #fff;
      text-align: center;
      font-size: 24px;
      font-weight: 500;
      line-height: 1.6; }
      @media only screen and (max-width: 959px) {
        .sec_cv .box_contact .txt {
          font-size: 18px; } }
    .sec_cv .box_contact .row {
      justify-content: center;
      margin-top: 60px; }
      @media only screen and (max-width: 959px) {
        .sec_cv .box_contact .row {
          margin-top: 30px; } }
      .sec_cv .box_contact .row .col {
        width: 300px; }
        @media only screen and (max-width: 959px) {
          .sec_cv .box_contact .row .col {
            width: 100%; } }
        .sec_cv .box_contact .row .col.tel p {
          color: #fff;
          font-size: 36px;
          font-weight: 500;
          text-align: left; }
          .sec_cv .box_contact .row .col.tel p:before {
            font-family: "Font Awesome 5 Free";
            font-weight: 600;
            content: '\f098';
            margin-right: 8px; }
          .sec_cv .box_contact .row .col.tel p span {
            display: block;
            font-size: 12px;
            font-weight: 400;
            margin-left: 40px;
            line-height: 1.2; }
            @media only screen and (max-width: 959px) {
              .sec_cv .box_contact .row .col.tel p span {
                margin-left: 0; } }
          @media only screen and (max-width: 959px) {
            .sec_cv .box_contact .row .col.tel p {
              margin: 0 auto 20px;
              text-align: center; } }
        .sec_cv .box_contact .row .col.inquiry {
          text-align: center; }
          .sec_cv .box_contact .row .col.inquiry .btn_inquiry a {
            font-size: 28px;
            padding: 16px 30px;
            font-weight: 500; }
            .sec_cv .box_contact .row .col.inquiry .btn_inquiry a:hover {
              border: 1px solid #fff; }
            @media only screen and (max-width: 959px) {
              .sec_cv .box_contact .row .col.inquiry .btn_inquiry a {
                font-size: 24px;
                padding: 12px 40px; } }
            .sec_cv .box_contact .row .col.inquiry .btn_inquiry a:before {
              font-family: "Font Awesome 5 Free";
              font-weight: 600;
              content: '\f0e0';
              margin-right: 20px; }
  .sec_cv .catch {
    text-align: center;
    background: #fff;
    width: 650px;
    font-size: 20px;
    font-weight: 500;
    padding: 16px;
    border-radius: 25px;
    margin: 30px auto 0;
    color: #9E242C; }
    @media only screen and (max-width: 959px) {
      .sec_cv .catch {
        margin: 30px 10px 0;
        width: auto;
        font-size: 16px;
        line-height: 1.6;
        border-radius: 41px; } }
  .sec_cv .box_campaign {
    max-width: 1100px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 10%;
    z-index: 10; }
    @media only screen and (max-width: 959px) {
      .sec_cv .box_campaign {
        right: 10px; } }
    .sec_cv .box_campaign .campaign {
      width: 266px;
      height: 266px;
      background: #DE616A;
      border-radius: 50%;
      border: 3px solid #fff;
      text-align: center; }
      @media only screen and (max-width: 959px) {
        .sec_cv .box_campaign .campaign {
          width: 200px;
          height: 200px; } }
      .sec_cv .box_campaign .campaign .ttl {
        color: #fff;
        margin-top: 70px;
        font-size: 16px;
        line-height: 1.6; }
        @media only screen and (max-width: 959px) {
          .sec_cv .box_campaign .campaign .ttl {
            margin-top: 50px;
            font-size: 12px; } }
        .sec_cv .box_campaign .campaign .ttl span {
          display: block;
          font-size: 30px;
          font-weight: 500; }
          @media only screen and (max-width: 959px) {
            .sec_cv .box_campaign .campaign .ttl span {
              font-size: 20px; } }
      .sec_cv .box_campaign .campaign .txt {
        color: #fff;
        font-size: 12px;
        margin-bottom: 20px; }
        @media only screen and (max-width: 959px) {
          .sec_cv .box_campaign .campaign .txt {
            font-size: 10px; } }
      .sec_cv .box_campaign .campaign .copy {
        color: #fff;
        font-weight: 500; }
        @media only screen and (max-width: 959px) {
          .sec_cv .box_campaign .campaign .copy {
            font-size: 16px; } }

.sec_footer {
  max-width: 1100px;
  margin: auto;
  padding-bottom: 30px; }
  @media only screen and (max-width: 1099px) {
    .sec_footer {
      max-width: 920px;
      padding: 10px; } }
  @media only screen and (max-width: 959px) {
    .sec_footer {
      margin: 0 10px 49px; } }
  .sec_footer .box_social {
    margin-top: 60px; }
    @media only screen and (max-width: 959px) {
      .sec_footer .box_social {
        margin-top: 30px; } }
    .sec_footer .box_social .title {
      text-align: center;
      font-size: 20px;
      margin-bottom: 16px; }
    .sec_footer .box_social .nav_social {
      display: flex;
      justify-content: center; }
      .sec_footer .box_social .nav_social li {
        width: 35px;
        height: 35px;
        text-align: center;
        background: #666;
        border-radius: 50%;
        position: relative;
        margin-left: 10px; }
        .sec_footer .box_social .nav_social li:first-child {
          margin-left: 0; }
        .sec_footer .box_social .nav_social li i {
          color: #fff;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
  .sec_footer .box_info {
    margin-top: 80px; }
    @media only screen and (max-width: 959px) {
      .sec_footer .box_info {
        margin-top: 40px; } }
    .sec_footer .box_info p {
      font-size: 13px;
      width: 40%;
      margin: auto;
      line-height: 1.6; }
      @media only screen and (max-width: 959px) {
        .sec_footer .box_info p {
          width: 90%; } }
      .sec_footer .box_info p:after {
        content: '';
        display: block;
        clear: both; }
      .sec_footer .box_info p a {
        font-size: 13px; }
      .sec_footer .box_info p img {
        float: left;
        margin-right: 10px; }
    .sec_footer .box_info .nav_footer {
      display: flex;
      justify-content: center;
      margin-top: 24px; }
      @media only screen and (max-width: 959px) {
        .sec_footer .box_info .nav_footer {
          flex-wrap: wrap; } }
      .sec_footer .box_info .nav_footer li a {
        font-size: 14px;
        text-decoration: underline;
        margin: auto 8px;
        color: #666; }
        @media only screen and (max-width: 959px) {
          .sec_footer .box_info .nav_footer li a {
            font-size: 12px; } }
    .sec_footer .box_info .copy {
      text-align: center;
      font-size: 14px;
      color: #666;
      margin: 16px auto; }
      @media only screen and (max-width: 959px) {
        .sec_footer .box_info .copy {
          font-size: 10px; } }

/*# sourceMappingURL=campaign2020.css.map */
