﻿@charset "UTF-8";

/* -------------------------------------------------------- ボタン（赤）*/

.button-red {
  background-color: #e70012;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 8px;
  padding-right: 34px;
  padding-bottom: 8px;
  padding-left: 14px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  position: relative;
}

.button-red span {
  display: inline-block;
  text-align: center;
}

.button-red:hover {
  opacity: 0.7;
}

.button-red .m-icon-pdf:before {
  display: none;
}

.button-red img {
  position: absolute;
  height: 18px;
  width: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto 12px auto auto;
}

.button-red a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* -------------------------------------------------------- ボタン（青）*/

.button-blue {
  background-color: #2771c3;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 8px;
  padding-right: 34px;
  padding-bottom: 8px;
  padding-left: 14px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  position: relative;
}

.button-blue span {
  display: inline-block;
  text-align: center;
}

.button-blue:hover {
  opacity: 0.7;
}

.button-blue .m-icon-pdf:before {
  display: none;
}

.button-blue img {
  position: absolute;
  height: 18px;
  width: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto 12px auto auto;
}

.button-blue a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* -------------------------------------------------------- ボタン（オレンジ）*/

.button-orange {
  background-color: #f7941d;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 8px;
  padding-right: 34px;
  padding-bottom: 8px;
  padding-left: 14px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  position: relative;
}

.button-orange span {
  display: inline-block;
  text-align: center;
}

.button-orange:hover {
  opacity: 0.7;
}

.button-orange .m-icon-pdf:before {
  display: none;
}

.button-orange img {
  position: absolute;
  height: 18px;
  width: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto 12px auto auto;
}

.button-orange a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* -------------------------------------------------------- ボタン（閉じる）*/

.button-close {
  border: 1px solid #5a5a5a;
  color: #5a5a5a;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 8px;
  padding-right: 34px;
  padding-bottom: 8px;
  padding-left: 14px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  position: relative;
}

.button-close span {
  display: inline-block;
  text-align: center;
}

.button-close:hover {
  opacity: 0.7;
}

.button-close .m-icon-pdf:before {
  display: none;
}

.button-close img {
  position: absolute;
  height: 18px;
  width: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto 12px auto auto;
}

.button-close a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* -------------------------------------------------------- マージントップ */

.mt-00 {
  margin-top: 0;
}

.mt-04 {
  margin-top: 4px;
}

.mt-08 {
  margin-top: 8px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-28 {
  margin-top: 28px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-36 {
  margin-top: 36px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-44 {
  margin-top: 44px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-20 {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {

  /* -------------------------------------------------------- ボタン */

  .button-red,
  .button-blue,
  .button-orange,
  .button-close {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }

  .button-red:hover,
  .button-blue:hover,
  .button-orange:hover,
  .button-close:hover {
    opacity: 1.0;
  }

}