@charset "UTF-8";
/* Color Theme Swatches in RGBA */
/* Common
--------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@700;900&display=swap");
/* スムーススクロール */
html {
  scroll-behavior: smooth; }

.img-fluid {
  width: 100%;
  height: auto; }

/* トップに戻るボタン */
a.backToTop {
  background: #64adaf;
  width: 55px;
  height: 55px;
  position: fixed;
  right: 50px;
  bottom: 50px;
  opacity: 0;
  z-index: 999;
  border-radius: 9999px;
  display: inline-block;
  transition: opacity 0.8s;
  pointer-events: none;
  /* 上三角 */
  /* hover時 */ }
  a.backToTop:before {
    display: inline-block;
    color: #FFF;
    line-height: 1;
    width: 0.8rem;
    height: 0.8em;
    border: 0.2em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    content: "";
    z-index: 1000;
    opacity: 1;
    left: 50%;
    top: 55%;
    position: absolute;
    transform: translate(-50%, -50%) rotate(-45deg); }
  a.backToTop:hover {
    opacity: 0.8 !important; }

/* Padding Margin
--------------------------------------------------------*/
m-auto {
  margin: 0 auto; }

.mt-5 {
  margin-top: 5rem; }

.p-5 {
  padding: 2.5rem; }

.px-5 {
  padding-right: 2.5rem;
  padding-left: 2.5rem; }

.py-5 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem; }

.pt-5 {
  padding-top: 10rem; }

.pb-5 {
  padding-bottom: 10rem; }

.rounded-5 {
  border-radius: 2.5rem; }

.border-5 {
  border: 5px solid; }

.border-bottom-5 {
  border-bottom: 5px solid; }

.opacity-5 {
  opacity: 0.8; }

.mt-n5 {
  margin-top: -5rem;
  position: relative;
  z-index: 10; }

.mt-4 {
  margin-top: 4rem; }

.p-4 {
  padding: 2rem; }

.px-4 {
  padding-right: 2rem;
  padding-left: 2rem; }

.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem; }

.pt-4 {
  padding-top: 8rem; }

.pb-4 {
  padding-bottom: 8rem; }

.rounded-4 {
  border-radius: 2rem; }

.border-4 {
  border: 4px solid; }

.border-bottom-4 {
  border-bottom: 4px solid; }

.opacity-4 {
  opacity: 0.64; }

.mt-n4 {
  margin-top: -4rem;
  position: relative;
  z-index: 10; }

.mt-3 {
  margin-top: 3rem; }

.p-3 {
  padding: 1.5rem; }

.px-3 {
  padding-right: 1.5rem;
  padding-left: 1.5rem; }

.py-3 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem; }

.pt-3 {
  padding-top: 6rem; }

.pb-3 {
  padding-bottom: 6rem; }

.rounded-3 {
  border-radius: 1.5rem; }

.border-3 {
  border: 3px solid; }

.border-bottom-3 {
  border-bottom: 3px solid; }

.opacity-3 {
  opacity: 0.48; }

.mt-n3 {
  margin-top: -3rem;
  position: relative;
  z-index: 10; }

.mt-2 {
  margin-top: 2rem; }

.p-2 {
  padding: 1rem; }

.px-2 {
  padding-right: 1rem;
  padding-left: 1rem; }

.py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem; }

.pt-2 {
  padding-top: 4rem; }

.pb-2 {
  padding-bottom: 4rem; }

.rounded-2 {
  border-radius: 1rem; }

.border-2 {
  border: 2px solid; }

.border-bottom-2 {
  border-bottom: 2px solid; }

.opacity-2 {
  opacity: 0.32; }

.mt-n2 {
  margin-top: -2rem;
  position: relative;
  z-index: 10; }

.mt-1 {
  margin-top: 1rem; }

.p-1 {
  padding: 0.5rem; }

.px-1 {
  padding-right: 0.5rem;
  padding-left: 0.5rem; }

.py-1 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }

.pt-1 {
  padding-top: 2rem; }

.pb-1 {
  padding-bottom: 2rem; }

.rounded-1 {
  border-radius: 0.5rem; }

.border-1 {
  border: 1px solid; }

.border-bottom-1 {
  border-bottom: 1px solid; }

.opacity-1 {
  opacity: 0.16; }

.mt-n1 {
  margin-top: -1rem;
  position: relative;
  z-index: 10; }

/* color
--------------------------------------------------------*/
.text-dark {
  color: rgba(0, 0, 0, 0.8) !important; }

.bg-dark {
  background-color: rgba(0, 0, 0, 0.8); }

.border-dark {
  border-color: rgba(0, 0, 0, 0.8); }

.text-primary {
  color: #64adaf !important; }

.bg-primary {
  background-color: #64adaf; }

.border-primary {
  border-color: #64adaf; }

.text-light {
  color: white !important; }

.bg-light {
  background-color: white; }

.border-light {
  border-color: white; }

.text-gray {
  color: #f4f4f4 !important; }

.bg-gray {
  background-color: #f4f4f4; }

.border-gray {
  border-color: #f4f4f4; }

.text-blue {
  color: #1181d6 !important; }

.bg-blue {
  background-color: #1181d6; }

.border-blue {
  border-color: #1181d6; }

.text-sky {
  color: #a5cfe8 !important; }

.bg-sky {
  background-color: #a5cfe8; }

.border-sky {
  border-color: #a5cfe8; }

.text-warning {
  color: #ab1142 !important; }

.bg-warning {
  background-color: #ab1142; }

.border-warning {
  border-color: #ab1142; }

/* font
--------------------------------------------------------*/
.fs-1 {
  line-height: 1.75;
  font-size: 2.60625rem;
  letter-spacing: 0.0417em;
  font-family: 'Noto Serif JP', serif; }
  @media screen and (min-width: 768px) {
    .fs-1 {
      line-height: 1.75;
      font-size: 6.5625rem;
      letter-spacing: 0.105em; } }
  @media screen and (min-width: 1280px) {
    .fs-1 {
      line-height: 1.75;
      font-size: 6.5625rem;
      letter-spacing: 0.105em; } }
  @media screen and (min-width: 1440px) {
    .fs-1 {
      line-height: 1.75;
      font-size: 6.875rem;
      letter-spacing: 0.11em; } }

.fs-2 {
  line-height: 1.75;
  font-size: 4.25rem;
  letter-spacing: 0.068em;
  font-family: 'Noto Serif JP', serif; }
  @media screen and (min-width: 1440px) {
    .fs-2 {
      line-height: 1.75;
      font-size: 4.25rem;
      letter-spacing: 0.068em; } }

.fs-3 {
  line-height: 2.1;
  font-size: 1.5625rem;
  letter-spacing: 0.03em;
  font-family: 'Noto Serif JP', serif; }
  @media screen and (min-width: 768px) {
    .fs-3 {
      line-height: 1.75;
      font-size: 2.625rem;
      letter-spacing: 0.042em; } }
  @media screen and (min-width: 1440px) {
    .fs-3 {
      line-height: 1.75;
      font-size: 2.625rem;
      letter-spacing: 0.042em; } }

.fs-4 {
  line-height: 2.5277777778;
  font-size: 1.125rem;
  letter-spacing: 0.026em;
  font-family: 'Noto Serif JP', serif; }
  @media screen and (min-width: 1440px) {
    .fs-4 {
      line-height: 1.75;
      font-size: 1.625rem;
      letter-spacing: 0.026em; } }

.fs-5 {
  line-height: 1.75;
  font-size: 1rem;
  letter-spacing: 0.016em; }
  @media screen and (min-width: 768px) {
    .fs-5 {
      line-height: 1.75;
      font-size: 1rem;
      letter-spacing: 0.016em; } }
  @media screen and (min-width: 1440px) {
    .fs-5 {
      line-height: 1.75;
      font-size: 1rem;
      letter-spacing: 0.016em; } }

.fs-6 {
  line-height: 1.75;
  font-size: 0.75rem;
  letter-spacing: 0.012em; }
  @media screen and (min-width: 768px) {
    .fs-6 {
      line-height: 1.75;
      font-size: 0.75rem;
      letter-spacing: 0.012em; } }
  @media screen and (min-width: 1440px) {
    .fs-6 {
      line-height: 1.75;
      font-size: 0.75rem;
      letter-spacing: 0.012em; } }

.text-center {
  text-align: center; }

.text-end {
  text-align: right; }

/* container：colom(%)
--------------------------------------------------------*/
.container-fluid {
  display: flex;
  justify-content: space-between; }

@media screen and (min-width: 1280px) {
  .container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1220px;
    width: 1300rem; } }
@media screen and (min-width: 1440px) {
  .container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1300px;
    width: 1300rem; } }
.container .container__col--7, .container .container__col--3 {
  padding-right: 1.25rem;
  padding-left: 1.25rem; }
.container__col--7 {
  width: 100%; }
  @media screen and (min-width: 1440px) {
    .container__col--7 {
      width: 70%;
      padding-right: 0rem !important;
      padding-left: 0rem !important; } }
.container__col--5 {
  width: 100%; }
  @media screen and (min-width: 1440px) {
    .container__col--5 {
      width: 50%;
      padding-right: 0rem !important;
      padding-left: 0rem !important; } }
.container__col--3 {
  width: 100%; }
  @media screen and (min-width: 1280px) {
    .container__col--3 {
      width: 30%;
      padding-right: 0rem !important;
      padding-left: 0rem !important; } }
  @media screen and (min-width: 1440px) {
    .container__col--3 {
      width: 30%;
      padding-right: 0rem !important;
      padding-left: 0rem !important; } }

/*
Header
================================================ */
nav {
  width: 100%;
  height: 70px;
  position: fixed;
  z-index: 100;
  background: #fff; }
  @media screen and (min-width: 1280px) {
    nav {
      position: relative;
      display: flex;
      flex-direction: row;
      max-width: 1300px;
      margin: 0 auto; } }

.drawer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 70px;
  padding: 0 1em; }

.navbar_toggle {
  z-index: 9999; }
  @media screen and (min-width: 1280px) {
    .navbar_toggle {
      display: none; } }

.navbar_toggle_icon {
  position: relative;
  display: block;
  height: 2px;
  width: 30px;
  background: #5c6b80;
  -webkit-transition: ease .5s;
  transition: ease .5s; }

.navbar_toggle_icon:nth-child(1) {
  top: 0; }

.navbar_toggle_icon:nth-child(2) {
  margin: 8px 0; }

.navbar_toggle_icon:nth-child(3) {
  top: 0; }

/*OPEN時の動き*/
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0; }

.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
  top: -10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.menu {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: ease .5s;
  transition: ease .5s;
  z-index: 1000; }
  @media screen and (min-width: 1280px) {
    .menu {
      width: 100%;
      -webkit-transform: translateX(0);
      transform: translateX(0); } }

.menu ul {
  background-color: #fafafa;
  height: 100vh; }
  @media screen and (min-width: 1280px) {
    .menu ul {
      background-color: #FFF;
      height: 70px;
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      align-items: center; } }

.menu ul li {
  padding: 0.5em;
  border-bottom: 1px solid #CCC; }
  @media screen and (min-width: 1280px) {
    .menu ul li {
      padding: 0 1em;
      border-bottom: none; }
      .menu ul li:hover {
        background-color: #fafafa; } }

.menu ul li a {
  padding: 0 15px;
  line-height: 70px;
  display: block;
  color: #313131;
  position: relative; }
  @media screen and (min-width: 1280px) {
    .menu ul li a:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0%;
      width: 100%;
      height: 3px;
      background: #64adaf;
      transition: all .3s;
      transform: scale(0, 1);
      transform-origin: center top; }
    .menu ul li a:hover {
      color: #000000 !important; }
    .menu ul li a:hover:after {
      transform: scale(1, 1); } }

/*OPEN時の動き*/
.menu.open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

/* footer
--------------------------------------------------------*/
/* main
--------------------------------------------------------*/
.bg-img1 {
  background-image: url("../images/dron-bg@72x-100.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: overlay; }

.bg-img2 {
  background-image: url("../images/dron-bg-2@72x-100.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: overlay; }

.bg-img3 {
  background-image: url("../images/1x/footer-100.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: overlay; }

/* ブレーカー */
.bg-img4 {
  background-image: url("../images/breaker-bg@72x-100.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: overlay; }

.bg-img5 {
  background-image: url("../images/breaker-bg-2@72x-100.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: overlay; }

.bg-img6 {
  background-image: url("../images/breaker-bg-6@72x-100.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: overlay; }

.clip-polygon {
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 100%, 0 100%, 0% 20%); }

.clip-2 {
  clip-path: polygon(0 1%, 100% 0, 100% 100%, 0 100%); }

/* Title
--------------------------------------------------------*/
.tit-typ1-dark {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 2rem 1.5rem 130px;
  border-top: 3px solid rgba(0, 0, 0, 0.8); }

.tit-typ1-dark:before {
  position: absolute;
  top: -150%;
  left: -100px;
  width: 200px;
  height: 300%;
  content: '';
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  background: rgba(0, 0, 0, 0.8); }

.tit-typ1-dark span {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 5px;
  padding-left: 16px; }

.tit-typ2-dark {
  position: relative;
  padding: 1em 2em;
  text-align: center; }

.tit-typ2-dark:before,
.tit-typ2-dark:after {
  position: absolute;
  content: ''; }

.tit-typ2-dark:after {
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-top: 2px solid rgba(0, 0, 0, 0.8);
  border-left: 2px solid rgba(0, 0, 0, 0.8); }

.tit-typ2-dark:before {
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  border-right: 2px solid rgba(0, 0, 0, 0.8);
  border-bottom: 2px solid rgba(0, 0, 0, 0.8); }

.tit-typ3-dark {
  position: relative;
  padding: 1rem 2rem;
  text-align: center;
  border: 3px solid rgba(0, 0, 0, 0.8); }

.tit-typ3-dark:before {
  font-size: 1.2rem;
  position: absolute;
  top: -24px;
  left: -3px;
  height: 24px;
  padding: 0 1em;
  content: 'POINT';
  color: #fff;
  background: rgba(0, 0, 0, 0.8); }

.tit-typ1-primary {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 2rem 1.5rem 130px;
  border-top: 3px solid #64adaf; }

.tit-typ1-primary:before {
  position: absolute;
  top: -150%;
  left: -100px;
  width: 200px;
  height: 300%;
  content: '';
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  background: #64adaf; }

.tit-typ1-primary span {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 5px;
  padding-left: 16px; }

.tit-typ2-primary {
  position: relative;
  padding: 1em 2em;
  text-align: center; }

.tit-typ2-primary:before,
.tit-typ2-primary:after {
  position: absolute;
  content: ''; }

.tit-typ2-primary:after {
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-top: 2px solid #64adaf;
  border-left: 2px solid #64adaf; }

.tit-typ2-primary:before {
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  border-right: 2px solid #64adaf;
  border-bottom: 2px solid #64adaf; }

.tit-typ3-primary {
  position: relative;
  padding: 1rem 2rem;
  text-align: center;
  border: 3px solid #64adaf; }

.tit-typ3-primary:before {
  font-size: 1.2rem;
  position: absolute;
  top: -24px;
  left: -3px;
  height: 24px;
  padding: 0 1em;
  content: 'POINT';
  color: #fff;
  background: #64adaf; }

.tit-typ1-light {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 2rem 1.5rem 130px;
  border-top: 3px solid white; }

.tit-typ1-light:before {
  position: absolute;
  top: -150%;
  left: -100px;
  width: 200px;
  height: 300%;
  content: '';
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  background: white; }

.tit-typ1-light span {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 5px;
  padding-left: 16px; }

.tit-typ2-light {
  position: relative;
  padding: 1em 2em;
  text-align: center; }

.tit-typ2-light:before,
.tit-typ2-light:after {
  position: absolute;
  content: ''; }

.tit-typ2-light:after {
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-top: 2px solid white;
  border-left: 2px solid white; }

.tit-typ2-light:before {
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  border-right: 2px solid white;
  border-bottom: 2px solid white; }

.tit-typ3-light {
  position: relative;
  padding: 1rem 2rem;
  text-align: center;
  border: 3px solid white; }

.tit-typ3-light:before {
  font-size: 1.2rem;
  position: absolute;
  top: -24px;
  left: -3px;
  height: 24px;
  padding: 0 1em;
  content: 'POINT';
  color: #fff;
  background: white; }

.tit-typ1-gray {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 2rem 1.5rem 130px;
  border-top: 3px solid #f4f4f4; }

.tit-typ1-gray:before {
  position: absolute;
  top: -150%;
  left: -100px;
  width: 200px;
  height: 300%;
  content: '';
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  background: #f4f4f4; }

.tit-typ1-gray span {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 5px;
  padding-left: 16px; }

.tit-typ2-gray {
  position: relative;
  padding: 1em 2em;
  text-align: center; }

.tit-typ2-gray:before,
.tit-typ2-gray:after {
  position: absolute;
  content: ''; }

.tit-typ2-gray:after {
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-top: 2px solid #f4f4f4;
  border-left: 2px solid #f4f4f4; }

.tit-typ2-gray:before {
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  border-right: 2px solid #f4f4f4;
  border-bottom: 2px solid #f4f4f4; }

.tit-typ3-gray {
  position: relative;
  padding: 1rem 2rem;
  text-align: center;
  border: 3px solid #f4f4f4; }

.tit-typ3-gray:before {
  font-size: 1.2rem;
  position: absolute;
  top: -24px;
  left: -3px;
  height: 24px;
  padding: 0 1em;
  content: 'POINT';
  color: #fff;
  background: #f4f4f4; }

.tit-typ1-blue {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 2rem 1.5rem 130px;
  border-top: 3px solid #1181d6; }

.tit-typ1-blue:before {
  position: absolute;
  top: -150%;
  left: -100px;
  width: 200px;
  height: 300%;
  content: '';
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  background: #1181d6; }

.tit-typ1-blue span {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 5px;
  padding-left: 16px; }

.tit-typ2-blue {
  position: relative;
  padding: 1em 2em;
  text-align: center; }

.tit-typ2-blue:before,
.tit-typ2-blue:after {
  position: absolute;
  content: ''; }

.tit-typ2-blue:after {
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-top: 2px solid #1181d6;
  border-left: 2px solid #1181d6; }

.tit-typ2-blue:before {
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  border-right: 2px solid #1181d6;
  border-bottom: 2px solid #1181d6; }

.tit-typ3-blue {
  position: relative;
  padding: 1rem 2rem;
  text-align: center;
  border: 3px solid #1181d6; }

.tit-typ3-blue:before {
  font-size: 1.2rem;
  position: absolute;
  top: -24px;
  left: -3px;
  height: 24px;
  padding: 0 1em;
  content: 'POINT';
  color: #fff;
  background: #1181d6; }

.tit-typ1-sky {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 2rem 1.5rem 130px;
  border-top: 3px solid #a5cfe8; }

.tit-typ1-sky:before {
  position: absolute;
  top: -150%;
  left: -100px;
  width: 200px;
  height: 300%;
  content: '';
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  background: #a5cfe8; }

.tit-typ1-sky span {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 5px;
  padding-left: 16px; }

.tit-typ2-sky {
  position: relative;
  padding: 1em 2em;
  text-align: center; }

.tit-typ2-sky:before,
.tit-typ2-sky:after {
  position: absolute;
  content: ''; }

.tit-typ2-sky:after {
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-top: 2px solid #a5cfe8;
  border-left: 2px solid #a5cfe8; }

.tit-typ2-sky:before {
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  border-right: 2px solid #a5cfe8;
  border-bottom: 2px solid #a5cfe8; }

.tit-typ3-sky {
  position: relative;
  padding: 1rem 2rem;
  text-align: center;
  border: 3px solid #a5cfe8; }

.tit-typ3-sky:before {
  font-size: 1.2rem;
  position: absolute;
  top: -24px;
  left: -3px;
  height: 24px;
  padding: 0 1em;
  content: 'POINT';
  color: #fff;
  background: #a5cfe8; }

.tit-typ1-warning {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 2rem 1.5rem 130px;
  border-top: 3px solid #ab1142; }

.tit-typ1-warning:before {
  position: absolute;
  top: -150%;
  left: -100px;
  width: 200px;
  height: 300%;
  content: '';
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  background: #ab1142; }

.tit-typ1-warning span {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 5px;
  padding-left: 16px; }

.tit-typ2-warning {
  position: relative;
  padding: 1em 2em;
  text-align: center; }

.tit-typ2-warning:before,
.tit-typ2-warning:after {
  position: absolute;
  content: ''; }

.tit-typ2-warning:after {
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-top: 2px solid #ab1142;
  border-left: 2px solid #ab1142; }

.tit-typ2-warning:before {
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  border-right: 2px solid #ab1142;
  border-bottom: 2px solid #ab1142; }

.tit-typ3-warning {
  position: relative;
  padding: 1rem 2rem;
  text-align: center;
  border: 3px solid #ab1142; }

.tit-typ3-warning:before {
  font-size: 1.2rem;
  position: absolute;
  top: -24px;
  left: -3px;
  height: 24px;
  padding: 0 1em;
  content: 'POINT';
  color: #fff;
  background: #ab1142; }

/* Box
--------------------------------------------------------*/
.box-typ1-dark {
  margin: 2em auto;
  padding: 2em;
  position: relative;
  border: 2px solid rgba(0, 0, 0, 0.8); }
  .box-typ1-dark .box-title {
    background-color: #fff;
    color: rgba(0, 0, 0, 0.8);
    padding: 0 5px;
    line-height: 1;
    position: absolute;
    top: -5px;
    left: 20px; }

.box-typ2-dark {
  position: relative;
  z-index: 0; }

.box-typ2-dark:before {
  border-top: 2px solid rgba(0, 0, 0, 0.8);
  border-left: 2px solid rgba(0, 0, 0, 0.8);
  content: '';
  display: block;
  position: absolute;
  top: -2px;
  left: -2px;
  width: 20px;
  height: 20px;
  z-index: 1; }

.box-typ3-dark {
  margin: 2em auto;
  padding: 2em;
  background-color: rgba(0, 0, 0, 0.8);
  position: relative; }

.box-typ3-dark:after {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  border-width: 0 15px 15px 0;
  border-style: solid;
  border-color: #ccc #fff  #ccc;
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15); }

.box-typ1-primary {
  margin: 2em auto;
  padding: 2em;
  position: relative;
  border: 2px solid #64adaf; }
  .box-typ1-primary .box-title {
    background-color: #fff;
    color: #64adaf;
    padding: 0 5px;
    line-height: 1;
    position: absolute;
    top: -5px;
    left: 20px; }

.box-typ2-primary {
  position: relative;
  z-index: 0; }

.box-typ2-primary:before {
  border-top: 2px solid #64adaf;
  border-left: 2px solid #64adaf;
  content: '';
  display: block;
  position: absolute;
  top: -2px;
  left: -2px;
  width: 20px;
  height: 20px;
  z-index: 1; }

.box-typ3-primary {
  margin: 2em auto;
  padding: 2em;
  background-color: #64adaf;
  position: relative; }

.box-typ3-primary:after {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  border-width: 0 15px 15px 0;
  border-style: solid;
  border-color: #ccc #fff  #ccc;
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15); }

.box-typ1-light {
  margin: 2em auto;
  padding: 2em;
  position: relative;
  border: 2px solid white; }
  .box-typ1-light .box-title {
    background-color: #fff;
    color: white;
    padding: 0 5px;
    line-height: 1;
    position: absolute;
    top: -5px;
    left: 20px; }

.box-typ2-light {
  position: relative;
  z-index: 0; }

.box-typ2-light:before {
  border-top: 2px solid white;
  border-left: 2px solid white;
  content: '';
  display: block;
  position: absolute;
  top: -2px;
  left: -2px;
  width: 20px;
  height: 20px;
  z-index: 1; }

.box-typ3-light {
  margin: 2em auto;
  padding: 2em;
  background-color: white;
  position: relative; }

.box-typ3-light:after {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  border-width: 0 15px 15px 0;
  border-style: solid;
  border-color: #ccc #fff  #ccc;
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15); }

.box-typ1-gray {
  margin: 2em auto;
  padding: 2em;
  position: relative;
  border: 2px solid #f4f4f4; }
  .box-typ1-gray .box-title {
    background-color: #fff;
    color: #f4f4f4;
    padding: 0 5px;
    line-height: 1;
    position: absolute;
    top: -5px;
    left: 20px; }

.box-typ2-gray {
  position: relative;
  z-index: 0; }

.box-typ2-gray:before {
  border-top: 2px solid #f4f4f4;
  border-left: 2px solid #f4f4f4;
  content: '';
  display: block;
  position: absolute;
  top: -2px;
  left: -2px;
  width: 20px;
  height: 20px;
  z-index: 1; }

.box-typ3-gray {
  margin: 2em auto;
  padding: 2em;
  background-color: #f4f4f4;
  position: relative; }

.box-typ3-gray:after {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  border-width: 0 15px 15px 0;
  border-style: solid;
  border-color: #ccc #fff  #ccc;
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15); }

.box-typ1-blue {
  margin: 2em auto;
  padding: 2em;
  position: relative;
  border: 2px solid #1181d6; }
  .box-typ1-blue .box-title {
    background-color: #fff;
    color: #1181d6;
    padding: 0 5px;
    line-height: 1;
    position: absolute;
    top: -5px;
    left: 20px; }

.box-typ2-blue {
  position: relative;
  z-index: 0; }

.box-typ2-blue:before {
  border-top: 2px solid #1181d6;
  border-left: 2px solid #1181d6;
  content: '';
  display: block;
  position: absolute;
  top: -2px;
  left: -2px;
  width: 20px;
  height: 20px;
  z-index: 1; }

.box-typ3-blue {
  margin: 2em auto;
  padding: 2em;
  background-color: #1181d6;
  position: relative; }

.box-typ3-blue:after {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  border-width: 0 15px 15px 0;
  border-style: solid;
  border-color: #ccc #fff  #ccc;
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15); }

.box-typ1-sky {
  margin: 2em auto;
  padding: 2em;
  position: relative;
  border: 2px solid #a5cfe8; }
  .box-typ1-sky .box-title {
    background-color: #fff;
    color: #a5cfe8;
    padding: 0 5px;
    line-height: 1;
    position: absolute;
    top: -5px;
    left: 20px; }

.box-typ2-sky {
  position: relative;
  z-index: 0; }

.box-typ2-sky:before {
  border-top: 2px solid #a5cfe8;
  border-left: 2px solid #a5cfe8;
  content: '';
  display: block;
  position: absolute;
  top: -2px;
  left: -2px;
  width: 20px;
  height: 20px;
  z-index: 1; }

.box-typ3-sky {
  margin: 2em auto;
  padding: 2em;
  background-color: #a5cfe8;
  position: relative; }

.box-typ3-sky:after {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  border-width: 0 15px 15px 0;
  border-style: solid;
  border-color: #ccc #fff  #ccc;
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15); }

.box-typ1-warning {
  margin: 2em auto;
  padding: 2em;
  position: relative;
  border: 2px solid #ab1142; }
  .box-typ1-warning .box-title {
    background-color: #fff;
    color: #ab1142;
    padding: 0 5px;
    line-height: 1;
    position: absolute;
    top: -5px;
    left: 20px; }

.box-typ2-warning {
  position: relative;
  z-index: 0; }

.box-typ2-warning:before {
  border-top: 2px solid #ab1142;
  border-left: 2px solid #ab1142;
  content: '';
  display: block;
  position: absolute;
  top: -2px;
  left: -2px;
  width: 20px;
  height: 20px;
  z-index: 1; }

.box-typ3-warning {
  margin: 2em auto;
  padding: 2em;
  background-color: #ab1142;
  position: relative; }

.box-typ3-warning:after {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  border-width: 0 15px 15px 0;
  border-style: solid;
  border-color: #ccc #fff  #ccc;
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15); }

/* Ribon
--------------------------------------------------------*/
.ribon {
  position: relative;
  display: inline-block;
  overflow: hidden; }
  .ribon figcaption {
    display: inline; }
  .ribon span {
    position: absolute;
    display: inline-block;
    top: 10%;
    left: -15%;
    width: 50%;
    padding: 10px 10px;
    background: #64adaf;
    color: #fff;
    text-align: center;
    transform: rotate(-45deg); }
