@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-overflow-scrolling: touch;
}

body:has(dialog[open]) {
  overflow: hidden;
}

html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

/* 追加で、よりiOS Safari向けの対策 */
html, body {
  overflow-x: hidden;
  position: relative;
}

.content-inner {
  max-width: none;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .content-inner {
    max-width: 100%;
  }
}

.wrap01 {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrap01 {
    width: 86.9565vw;
  }
}

.product-detail {
  display: none; /* 初期状態では非表示 */
  padding: 10px;
  border: 1px solid #ccc;
  margin-top: 5px;
  background-color: #f9f9f9;
}

.product-dialog, .policy-dialog {
  padding: 0;
  border: none;
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  max-width: 90vw;
  max-height: 90vh;
  height: 80%;
  width: 800px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: visible;
}

.close-dialog-outside {
  position: absolute;
  top: -48px;
  right: 10px;
  color: #fff;
  width: 35px;
  height: 35px;
  cursor: pointer;
  z-index: 1001;
  background: transparent;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  border: none;
  text-decoration: none;
}

.scroll-down {
  display: block;
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  opacity: 1;
  pointer-events: auto;
}
.scroll-down.fade-out {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .scroll-down {
    display: block;
    position: absolute;
    bottom: 2.9vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 12.3vw;
  }
}

.dialog-content {
  overflow-y: auto; /* 内部コンテンツのスクロールはこちらで管理 */
  max-height: 100%;
}

/* ダイアログの背景（backdrop） */
.product-dialog::-ms-backdrop, .policy-dialog::-ms-backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(3px);
}
.product-dialog::backdrop, .policy-dialog::backdrop {
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

/* アニメーション効果 */
.product-dialog[open], .policy-dialog[open] {
  -webkit-animation: dialogSlideIn 0.1s ease-out;
          animation: dialogSlideIn 0.1s ease-out;
}

.product-dialog.closing, .policy-dialog.closing {
  -webkit-animation: dialogSlideOut 0.1s ease-in;
          animation: dialogSlideOut 0.1s ease-in;
}

@-webkit-keyframes dialogSlideIn {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.95);
            transform: translate(-50%, -50%) scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes dialogSlideIn {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.95);
            transform: translate(-50%, -50%) scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
@-webkit-keyframes dialogSlideOut {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
@keyframes dialogSlideOut {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
/* モーダル内の「応募ボタン」*/
.product-link {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .product-link {
    margin-top: 9.7vw;
  }
}
.product-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 414px;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  color: #ffff00;
  background-color: #0000ff;
  border-radius: 25px;
  position: relative;
  margin-inline: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  border: none;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .product-link a {
    width: 74.39613vw;
    height: 12.07729vw;
    font-size: 3.8647vw;
    border-radius: 6.03864vw;
  }
}
.product-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 9px;
  background-color: #ffff00;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 768px) {
  .product-link a::after {
    right: 4vw;
    width: 1.93236vw;
    height: 2.173913vw;
  }
}
.product-link.orange a {
  background-color: #ff6300;
}

/* slickの矢印のスタイル*/
.slick-prev, .slick-next {
  background-color: #000;
  width: 44px !important;
  height: 44px !important;
  z-index: 1000;
}
.slick-prev:before, .slick-next:before {
  font-size: 16px;
  color: white;
  opacity: 1;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  background-color: #000;
  opacity: 0.9;
  color: transparent;
  outline: none;
}

.slick-prev {
  left: 10px;
}

.slick-next {
  right: 10px;
}

/* 動画部分のスタイル*/
.movie_title {
  width: 424px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .movie_title {
    width: 72.4637vw;
  }
}

.video_content {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  z-index: 3;
}

/* 動画部分*/
.video_content video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.video_poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.video_poster img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* キャンペーン概要などのボタン*/
.policy-button_wrapper {
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .policy-button_wrapper {
    max-width: none;
    width: 100%;
    display: block;
  }
}
.policy-button_wrapper li {
  width: 31.1%;
}
@media screen and (max-width: 768px) {
  .policy-button_wrapper li {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .policy-button_wrapper li + li {
    margin-top: 3.4vw;
  }
}

.policy-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
  height: 50px;
  font-size: 14px;
  letter-spacing: 0.12em;
  font-weight: 500;
  border-radius: 25px;
  border: 1px solid #000;
  color: #000;
}
@media screen and (max-width: 768px) {
  .policy-button {
    display: block;
    width: 68.60156vw;
    height: 12.07729vw;
    margin-left: auto;
    margin-right: auto;
    font-size: 3.381642vw;
    border-radius: 6.038647vw;
  }
}

#bottom {
  position: relative;
}
#bottom .wrap01 {
  max-width: none;
  width: 100%;
  position: relative;
  z-index: 10;
  padding-top: 55px;
  padding-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #bottom .wrap01 {
    padding-top: 13.3vw;
    padding-bottom: 5.6vw;
  }
}
#bottom #share {
  margin-top: 115px;
}
@media screen and (max-width: 768px) {
  #bottom #share {
    margin-top: 13.043vw;
  }
}
#bottom #share h2 {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #bottom #share h2 {
    font-size: 3.6231vw;
    letter-spacing: 0.03em;
  }
}
#bottom #share .btn_list {
  margin-top: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  #bottom #share .btn_list {
    margin-top: 3.3816vw;
  }
}
#bottom #share .btn_list li + li {
  margin-left: 42px;
}
@media screen and (max-width: 768px) {
  #bottom #share .btn_list li + li {
    margin-left: 3.9vw;
  }
}
#bottom #share .btn_list li button {
  border-radius: 50%;
  border: none;
}
#bottom #share .btn_list li img {
  width: auto;
  height: 48px;
}
@media screen and (max-width: 768px) {
  #bottom #share .btn_list li img {
    height: 9.66183vw;
  }
}
#bottom #inquiry {
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 45px;
  padding-top: 45px;
  border-top: 1px solid #000;
}
@media screen and (max-width: 768px) {
  #bottom #inquiry {
    max-width: none;
    width: 100%;
    margin-top: 8.6956vw;
    padding-top: 0;
    border-top: none;
  }
}
#bottom #inquiry h2 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #bottom #inquiry h2 {
    font-size: 3.1vw;
    letter-spacing: 0.012em;
  }
}
#bottom #inquiry .tel_no {
  font-size: 65px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: -0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #bottom #inquiry .tel_no {
    margin-top: -0.1em;
    font-size: 9.6618vw;
  }
}
#bottom #inquiry .tel_no a {
  text-decoration: none;
}
#bottom #inquiry .txt01 {
  font-size: 16px;
  line-height: 1.7em;
  margin-top: 15px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #bottom #inquiry .txt01 {
    margin-top: 0px;
    font-size: 3.14vw;
    line-height: 1.4em;
    letter-spacing: 0.012em;
  }
}
#bottom #page_top {
  margin-top: 65px;
}
@media screen and (max-width: 768px) {
  #bottom #page_top {
    margin-top: 6vw;
  }
}
#bottom #page_top p {
  width: 64px;
  margin-right: 20px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  #bottom #page_top p {
    width: 15.5vw;
    margin-right: 0;
  }
}

#caution {
  background-color: #00009d;
}
#caution .wrap01 {
  padding: 12px 0;
}
@media screen and (max-width: 768px) {
  #caution .wrap01 {
    padding: 2.9vw 0;
  }
}
#caution .wrap01 p {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1.4em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #caution .wrap01 p {
    font-size: 4.58937vw;
  }
}

footer {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  footer {
    width: 100%;
  }
}
footer .wrap01 {
  padding: 6px 0 6px;
}
@media screen and (max-width: 768px) {
  footer .wrap01 {
    padding: 1.53846vw 0 21vw;
  }
}
footer .wrap01 p {
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer .wrap01 p {
    font-size: 2.4vw;
  }
}

/* ポップアップのCSS */
.policy-dialog {
  padding-top: 50px;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .policy-dialog {
    padding-top: 5vw;
    padding-bottom: 11.4vw;
  }
}
.policy-dialog .dialog-content {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .policy-dialog .dialog-content {
    padding-top: 4.7vw;
  }
}
.policy-dialog .dialog-content h3 {
  width: 85.6%;
  margin-left: auto;
  margin-right: auto;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .policy-dialog .dialog-content h3 {
    font-size: 5.6vw;
    margin-bottom: 1em;
    text-align: left;
  }
}
.policy-dialog .dialog-content .policy-content {
  width: 85.6%;
  margin-left: auto;
  margin-right: auto;
}
.policy-dialog .dialog-content .policy-content .header_txt {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .policy-dialog .dialog-content .policy-content .header_txt {
    padding-bottom: 7.2vw;
    margin-bottom: 7.2vw;
  }
}
.policy-dialog .dialog-content .policy-content .header_txt02 {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .policy-dialog .dialog-content .policy-content .header_txt02 {
    margin-bottom: 7.2vw;
  }
}
.policy-dialog .dialog-content .policy-content .header_txt02 .txt01 {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .policy-dialog .dialog-content .policy-content .header_txt02 .txt01 {
    font-size: 3.6vw;
  }
}
.policy-dialog .dialog-content .policy-content .txt_content + .txt_content {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .policy-dialog .dialog-content .policy-content .txt_content + .txt_content {
    margin-top: 7.2vw;
  }
}
.policy-dialog .dialog-content .policy-content .txt_content h4 {
  font-size: 18px;
  font-weight: bold;
  color: #0000ff;
}
@media screen and (max-width: 768px) {
  .policy-dialog .dialog-content .policy-content .txt_content h4 {
    font-size: 4.5vw;
  }
}
.policy-dialog .dialog-content .policy-content .txt_list li,
.policy-dialog .dialog-content .policy-content .txt01 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .policy-dialog .dialog-content .policy-content .txt_list li,
  .policy-dialog .dialog-content .policy-content .txt01 {
    font-size: 3.9vw;
  }
}
.policy-dialog .dialog-content .policy-content .txt_list li a,
.policy-dialog .dialog-content .policy-content .txt01 a {
  color: #0000ff;
  text-decoration: underline;
  word-wrap: break-word;
}
.policy-dialog .dialog-content .policy-content .sub_content {
  padding-left: 16px;
}
@media screen and (max-width: 768px) {
  .policy-dialog .dialog-content .policy-content .sub_content {
    padding-left: 3.9vw;
  }
}
.policy-dialog .dialog-content > .close-dialog {
  display: block;
  max-width: 308px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  padding: 1em 0;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #00009d;
  border-radius: 6px;
  border: none;
  text-decoration: underline;
  word-wrap: break-word;
  outline: none;
}
@media screen and (max-width: 768px) {
  .policy-dialog .dialog-content > .close-dialog {
    max-width: none;
    width: 85.6%;
    margin-top: 14.5vw;
    font-size: 4.8vw;
    border-radius: 1.4vw;
  }
}

.product-dialog {
  padding-top: 60px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .product-dialog {
    padding-top: 10vw;
    padding-bottom: 11.4vw;
  }
}
.product-dialog .dialog-content .dialog-body {
  width: 85.6%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .product-dialog .dialog-content .dialog-body {
    width: 100%;
  }
}
.product-dialog .dialog-content .dialog-body .product_img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.product-dialog .dialog-content .dialog-body .product-slider {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.product-dialog .dialog-content .dialog-body .product-slider .slick-prev,
.product-dialog .dialog-content .dialog-body .product-slider .slick-next {
  width: 21px !important;
  height: 42px !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .product-dialog .dialog-content .dialog-body .product-slider .slick-prev,
  .product-dialog .dialog-content .dialog-body .product-slider .slick-next {
    width: 2.4vw !important;
    height: 5.1vw !important;
  }
}
.product-dialog .dialog-content .dialog-body .product-slider .slick-prev {
  background-image: url(../img/pop_arrow_left.svg);
  background-position: left center;
  background-color: transparent;
}
.product-dialog .dialog-content .dialog-body .product-slider .slick-prev:hover,
.product-dialog .dialog-content .dialog-body .product-slider .slick-prev:focus {
  background-image: url(../img/pop_arrow_left.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  color: transparent;
  outline: none;
  background-color: transparent;
}
.product-dialog .dialog-content .dialog-body .product-slider .slick-next {
  background-image: url(../img/pop_arrow_right.svg);
  background-position: right center;
  background-color: transparent;
}
.product-dialog .dialog-content .dialog-body .product-slider .slick-next:hover,
.product-dialog .dialog-content .dialog-body .product-slider .slick-next:focus {
  background-image: url(../img/pop_arrow_right.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  color: transparent;
  outline: none;
  background-color: transparent;
}
.product-dialog .dialog-content .dialog-body .product-slider .slick-prev:hover:before,
.product-dialog .dialog-content .dialog-body .product-slider .slick-prev:focus:before,
.product-dialog .dialog-content .dialog-body .product-slider .slick-next:hover:before,
.product-dialog .dialog-content .dialog-body .product-slider .slick-next:focus:before {
  display: none;
}
.product-dialog .dialog-content .dialog-body .product-slider .slick-prev.slick-disabled:before,
.product-dialog .dialog-content .dialog-body .product-slider .slick-next.slick-disabled:before {
  display: none;
}
.product-dialog .dialog-content .dialog-body .product-slider .slick-prev {
  left: -30px;
}
@media screen and (max-width: 768px) {
  .product-dialog .dialog-content .dialog-body .product-slider .slick-prev {
    left: 3.1vw;
  }
}
.product-dialog .dialog-content .dialog-body .product-slider .slick-next {
  right: -30px;
}
@media screen and (max-width: 768px) {
  .product-dialog .dialog-content .dialog-body .product-slider .slick-next {
    right: 3.1vw;
  }
}
.product-dialog .dialog-content .dialog-body .product-slider .slick-prev:before,
.product-dialog .dialog-content .dialog-body .product-slider .slick-next:before {
  display: none;
}
.product-dialog .dialog-content .dialog-body .product_name,
.product-dialog .dialog-content .dialog-body .product_name_sub,
.product-dialog .dialog-content .dialog-body .product_txt,
.product-dialog .dialog-content .dialog-body .product_list {
  width: 85.6%;
  margin-left: auto;
  margin-right: auto;
}
.product-dialog .dialog-content .dialog-body .product_name {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .product-dialog .dialog-content .dialog-body .product_name {
    font-size: 6.3vw;
    line-height: 1.3em;
  }
}
.product-dialog .dialog-content .dialog-body .product_name_sub {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5em;
  text-align: center;
  margin-top: 0.2em;
}
@media screen and (max-width: 768px) {
  .product-dialog .dialog-content .dialog-body .product_name_sub {
    font-size: 3.9vw;
  }
}
.product-dialog .dialog-content .dialog-body .product_name_sub strong {
  font-weight: bold;
  color: #0000ff;
}
.product-dialog .dialog-content .dialog-body .product_name_sub strong.orange {
  color: #ff6300;
}
.product-dialog .dialog-content .dialog-body .product_txt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5em;
  margin-top: 1.3em;
}
@media screen and (max-width: 768px) {
  .product-dialog .dialog-content .dialog-body .product_txt {
    font-size: 3.4vw;
  }
}
.product-dialog .dialog-content .dialog-body .product_txt .s-txt {
  display: inline-block;
  padding-top: 0.5em;
  font-size: 12px;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .product-dialog .dialog-content .dialog-body .product_txt .s-txt {
    font-size: 2.6vw;
  }
}
.product-dialog .dialog-content .dialog-body .product_list {
  margin-top: 40px;
}
.product-dialog .dialog-content .dialog-body .product_list dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5em;
  color: #0000ff;
}
.product-dialog .dialog-content .dialog-body .product_list dd {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5em;
}
.product-dialog .dialog-content .dialog-body .product_list dd + dt {
  margin-top: 0.8em;
}
.product-dialog .dialog-content .dialog-body .product_list dd .s-txt {
  display: inline-block;
  padding-top: 0.5em;
  font-size: 12px;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .product-dialog .dialog-content .dialog-body .product_list dd .s-txt {
    font-size: 2.6vw;
  }
}
.product-dialog .dialog-content .dialog-body .product_list.orange dt {
  color: #ff6300;
}

.pc_float {
  display: none;
  width: 182px;
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 20;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .pc_float {
    display: none;
  }
}
.pc_float li + li {
  margin-top: 20px;
}
.pc_float li a {
  background-color: #00009d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 144px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border: 3px solid #fff;
  border-right: none;
  color: #fff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  background-image: url(../img/arrow_white.svg);
  background-repeat: no-repeat;
  background-position: center bottom 20px;
  background-size: 13px auto;
}
.pc_float li a .t01 {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.pc_float li a .t02 {
  display: block;
  font-size: 29px;
  font-weight: bold;
}
.pc_float li.link01 a {
  padding-bottom: 30px;
  background-image: url(../img/arrow_yellow.svg);
}
.pc_float li.link01 a .t01, .pc_float li.link01 a .t02 {
  color: #ffff00;
}
.pc_float li.link03 a {
  padding-bottom: 26px;
}

.sp_float {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_float {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.sp_float li {
  width: 33.3333333333%;
  border-top: 1px solid #fff;
}
.sp_float li + li {
  border-left: 1px solid #fff;
}
.sp_float li a {
  background-color: #00009d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 19.7vw;
  color: #fff;
}
.sp_float li a .t01 {
  display: block;
  font-size: 3vw;
  font-weight: bold;
  margin-bottom: -0.1em;
}
.sp_float li a .t02 {
  display: block;
  font-size: 4.2vw;
  font-weight: bold;
}
.sp_float li.link01 a .t01, .sp_float li.link01 a .t02 {
  color: #ffff00;
}/*# sourceMappingURL=style.css.map */