@charset "UTF-8";
/*
 * ========================================
 * Reset / Layout
 * ========================================
 */
@import url("https://rakuma.rakuten.co.jp/info/campaign/common/css/reset.css");
@import url("https://rakuma.rakuten.co.jp/info/campaign/common/css/layout.css");

/*
 * ========================================
 * Base
 * ========================================
 */
body {
  font-size: 16px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-feature-settings: "palt";
  line-height: 1.75;
  color: #000;
  position: relative;
  letter-spacing: 0.06em;
  background-color: #fff;
}

* {
  box-sizing: border-box;
}

a {
  color: #BF0000;
}

hr {
  color: #CCC;
  margin: 24px 0;
}

.onlyPC {
  display: none;
}

@media screen and (min-width: 640px) {
  .onlyPC {
    display: block;
  }

  .onlySP {
    display: none;
  }
}

img {
  width: 100%;
  margin: 0 auto;
}

/*
 * ========================================
 * Header
 * ========================================
 */
header {
  position: relative;
}

.header__inner {
  max-width: 648px;
  margin: 0 auto;
}

.header__inner img {
  max-width: 100%;
}

.header__date {
  background: #ec0606;
  padding: 8px 0;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  font-size: 3.2vw;
  color: white;
}

.header {
  background-size: 100%;
  background-size: cover;
}

@media screen and (min-width: 640px) {
  .header__date {
    padding: 16px 0;
    font-size: 24px;
    line-height: 1.75;
  }
}

.top-nav-red {
  display: block;
  background-color: #bf0000;
  text-align: center;
  padding: 12px;
  color: #fff;
  background-image: url("../img/Chevron-Right.png");
  background-position: right 10px bottom 50%;
  background-size: 20px;
  background-repeat: no-repeat;
  font-size: 12px;
  font-weight: bold;
}

.header--nav {
  border-bottom: 2px #bf0000 solid;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav-local {}

.nav-01 {
  text-align: center;
  width: 50%;
  border-right: 1px #dddddd solid;
  font-size: 12px;
  padding: 10px 5px;
  display: block;
  color: #212121;
}

.nav-02 {
  text-align: center;
  width: 50%;
  font-size: 12px;
  padding: 12px;
  padding: 10px 5px;
  display: block;
  color: #212121;
}

.nav-03 {
  width: 100%;
}

/*
 * ========================================
 見出し
* ========================================
*/
/* ======== h１見出し  ======== */
.heading--01 {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  margin: 5px auto;
  line-height: 3;
}

.heading--01:after {
  content: "";
  width: 40px;
  height: 4px;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 20px);
  background-color: #ec0606;
}

/* ======== h２見出し背景ピンクのとき  ======== */
.heading--02 {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 3px 0;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  border-bottom: solid 1px #bf0000;
  box-sizing: border-box;
}

.heading--02:before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 26px;
  margin-left: -14px;
  border: 6px solid transparent;
  border-top: 6px solid #FFF0F0;
  z-index: 2;
}

.heading--02:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 26px;
  margin-left: -15px;
  border: 7px solid transparent;
  border-top: 7px solid #bf0000;
  z-index: 1;
}

/* ======== h２見出し 背景白のとき  ======== */
.heading--02-bgwh {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 3px 0;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  border-bottom: solid 1px #bf0000;
  box-sizing: border-box;
}

.heading--02-bgwh:before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 26px;
  margin-left: -14px;
  border: 6px solid transparent;
  border-top: 6px solid #FFF;
  z-index: 2;
}

.heading--02-bgwh:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 26px;
  margin-left: -15px;
  border: 7px solid transparent;
  border-top: 7px solid #bf0000;
  z-index: 1;
}

/* ======== h3見出し ======== */
.heading--03 {
  position: relative;
  width: 100%;
  margin: 20px auto;
  padding: 6px 0;
  font-size: 16px;
  font-weight: bold;
}

.heading--03:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid #E7CFCF;
}

.heading--03:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  border-bottom: 1px solid #bf0000;
}

/* ======== 枠内見出し========== */
.head-border {
  position: relative;
  display: inline-block;
  padding: 0 25px;
  font-size: 14px;
  font-weight: bold;
  margin: 10px auto;
}

.head-border:before,
.head-border:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #ddd;
}

.head-border:before {
  left: 0;
}

.head-border:after {
  right: 0;
}

/*
 * ========================================
 共通で使う
* ========================================
*/
.txt-s {
  font-size: 12px;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

/*  マージン調整　　*/
.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

/*  パディング調整　　*/
.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

/*
 * ========================================
 * forCorporation
 * ========================================
 */
.contents_wrapper {
}

.forCorporation__bg-red {
  background-color: #fcf2f2;
}

.forCorporation__bg-white {
  background-color: #FFF;
  padding: 16px;
}

.forCorporation__wrapbox {
  max-width: 640px;
  margin: 0 auto;
  padding: 16px;
}

.forCorporation__maintxt {
  font-size: 14px;
}

.forCorporation__btn-red{
  color: #FFF;
  background-color: #BF0000;
  display: block;
  text-align: center;
  padding: 8px;
  max-width: 400px;
  border-radius: 4px;
  margin: 20px auto;
  font-weight: bold;
  font-size: 0.9rem;
}



.forCorporation__box-bg-lightpink {
  background-color: #FEFBFB;
  border: solid 1px #FFEEEE;
  border-radius: 4px;
  padding: 16px;
  margin: 12px auto;
}

.forCorporation__box-bg-white {
  background-color: #fdfbfb;
  border: solid 1px #FFEEEE;
  border-radius: 4px;
  padding: 16px;
  margin: 12px auto;
}

.forCorporation__dtstyle {
  font-weight: bold;
  font-size: 14px;
}

.forCorporation__ddstyle {
  font-size: 14px;
  margin-bottom: 12px;
}

.flexbox {
  display: flex;
}

.box-01 {
  text-align: center;
  width: 60%;
  margin-right: 16px;
}

.box-02 {
  text-align: center;
  width: 40%;
}

.box-movie {
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}

.box-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.movie-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

/*
 * ========================================
 * Footer
 * ========================================
 */
footer{
  margin: 0 auto;
  padding: 16px 16px 32px;
  background-color: #f5f5f5;
}

.footer_wrapper {
  max-width: 640px;
  margin: 0 auto;
}


footer h3 a{
  display: inline-block;
  width: 100%;
  color: #333;
  font-size: 16px;
  text-align: left;
  font-weight: bold;
  margin-bottom: 16px;
  border-bottom: solid 1px #CCCCCC;
  position: relative;
}

footer h3 a:after {
   position: absolute;
   content: " ";
   display: block;
   border-bottom: solid 1px #888888;
   width: 10%;
}

.footer_wrapper {
  max-width: 640px;
  margin: 0 auto;
}
.footer-inner-1{
  display: flex;
  font-size: 14px;
}

.footer-inner-1 a{
  color: #333;
}

.footer-inner-2{
  width: 100%;
}

.footer-inner-2-left{
  width: 100%;
  padding-right: 8px;
}

.footer__logo {
  padding: 16px;
  text-align: center;
}

.footer__logo img {
  height: 42px;
}

.footer__logo p {
  font-size: .6em;
  padding-top: 16px;
}


.copyright_wrapper{
  background-color: #E5E5E5;
  display: block;
  width: 100%;
  margin: 0 auto;
  font-size: 75%;
  text-align: center;
  padding: 8px 0;
}


@media screen and (min-width: 640px) {
  .top-nav-red {
    display: block;
    background-color: #bf0000;
    text-align: center;
    padding: 12px;
    color: #fff;
    background-image: url("../img/Chevron-Right.png");
    background-position: right 10px bottom 50%;
    background-size: 20px;
    background-repeat: no-repeat;
    font-size: 12px;
    font-weight: bold;
  }

  .header--nav {
    border-bottom: 2px #bf0000 solid;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .nav-local {}

  .nav-01 {
    text-align: center;
    width: 200px;
    border-right: 1px #dddddd solid;
    font-size: 16px;
    padding: 10px 5px;
    display: block;
    color: #212121;
    align-self: center;
  }

  .nav-02 {
    text-align: center;
    width: 200px;
    font-size: 16px;
    padding: 10px 5px;
    display: block;
    color: #212121;
    align-self: center;
  }

  .nav-03 {
    width: 190px;
    order: 2;
    align-self: center;
    text-align: left;
  }

  .heading--1 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    position: relative;
    margin: 20px auto;
    line-height: 3;
  }

  .heading--1:after {
    content: "";
    width: 40px;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 20px);
    background-color: #ec0606;
  }

  .forCorporation__btn-red {
    color: #FFF;
    background-color: #BF0000;
    display: block;
    text-align: center;
    padding: 12px;
    max-width: 400px;
    border-radius: 4px;
    margin: 20px auto;
    font-weight: bold;
    font-size: 18px;
  }

  .forCorporation__maintxt {
    font-size: 16px;
  }

  .txt-s {
    font-size: 13px;
  }

  /* ======== h１見出し  ======== */
  .heading--01 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    position: relative;
    margin: 5px auto;
    line-height: 3;
  }

  .heading--01:after {
    content: "";
    width: 40px;
    height: 4px;
    border-radius: 2px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 20px);
    background-color: #ec0606;
  }

  /* ======== h２見出し背景ピンクのとき  ======== */
  .heading--02 {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 3px 10px;
    width: 100%;
    font-size: 24px;
    font-weight: bold;
    border-bottom: solid 1px #bf0000;
    box-sizing: border-box;
  }

  .heading--02:before {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 26px;
    margin-left: -14px;
    border: 6px solid transparent;
    border-top: 6px solid #FFF0F0;
    z-index: 2;
  }

  .heading--02:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 26px;
    margin-left: -15px;
    border: 7px solid transparent;
    border-top: 7px solid #bf0000;
    z-index: 1;
  }

  /* ======== h２見出し 背景白のとき  ======== */
  .heading--02-bgwh {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 3px 10px;
    width: 100%;
    font-size: 24px;
    font-weight: bold;
    border-bottom: solid 1px #bf0000;
    box-sizing: border-box;
  }

  .heading--02-bgwh:before {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 26px;
    margin-left: -14px;
    border: 6px solid transparent;
    border-top: 6px solid #FFF;
    z-index: 2;
  }

  .heading--02-bgwh:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 26px;
    margin-left: -15px;
    border: 7px solid transparent;
    border-top: 7px solid #bf0000;
    z-index: 1;
  }

  /* ======== h3見出し ======== */
  .heading--03 {
    position: relative;
    width: 100%;
    margin: 20px auto;
    padding: 6px 0;
    font-size: 18px;
    font-weight: bold;
  }

  .heading--03:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 1px solid #E7CFCF;
  }

  .heading--03:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    border-bottom: 1px solid #bf0000;
  }

  /* ======== 枠内見出し========== */
  .head-border {
    position: relative;
    display: inline-block;
    padding: 0 25px;
    font-size: 16px;
    font-weight: bold;
    margin: 10px auto;
  }

  .head-border:before,
  .head-border:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: #ddd;
  }

  .head-border:before {
    left: 0;
  }

  .head-border:after {
    right: 0;
  }

  .footer h2 {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .footer__overview,
  .footer__precautions {
    padding: 64px 16px;
  }

  .footer__overview__inner,
  .footer__precautions__inner {
    width: 704px;
    padding: 0;
    margin: 0 auto;
  }

  .footer__overview dl dt {
    font-size: 18px;
  }

  .footer__overview dl dd {
    font-size: 16px;
  }

  .footer__precautions {
    font-size: 16px;
  }

  .footer__note {
    font-size: .8em;
    text-align: left;
  }

  .footer__logo {
    padding: 16px;
  }
}
