@charset "UTF-8";
@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";

/*-----------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

/*-----------------*/
body {
  background: #fff5e5;
  font-size: 16px;
}

.text {
  line-height: 1.6em;
  text-align: center;
}

@media (max-width:768px) {
  .text {
    font-size: 1.8em;
    /*スマホ文字サイズ*/
  }
}

#houjin img {
  max-width: 100%;
  height: auto;
}

#houjin section {
  margin-bottom: 0;
}

/*---- 太字＆文字サイズ1.1em----*/
#houjin .bold11 {
  font-weight: bold;
  font-size: 1.1em;
}

/*---- 太字＆文字サイズ1.2em----*/
#houjin .bold12 {
  font-weight: bold;
  font-size: 1.2em;
}

/*----padding0でセンタリング----*/
#houjin .pd0center {
  padding: 0;
  text-align: center;
}

/*----デフォのH2デザイン----*/
#houjin h2 {
  font-size: 1.8em;
  font-weight: bold;
  line-height: 1.7em;
  margin-top: 0;
  margin-bottom: 1em;
  padding: 0.2rem;
  display: inline;
}

/*----〜〜から選ぶのH2デザイン----*/
#houjin h2.choice {
  position: relative;
  color: #8a331e;
  font-size: 1.8em;
  text-align: center;
}

#houjin h2.choice:before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 140px;
  height: 75px;
  border-radius: 50%;
  border: 5px solid #f9ab93;
  border-left-color: transparent;
  border-right-color: transparent;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/*----黄色の下線マーカーデザイン----*/
#houjin span.bg_line {
  background: linear-gradient(transparent 60%, #fbd959 60%);
}

/*----一番上の〜〜の方へ----*/
#houjin .headerline {
  background: #f1813a;
  color: #fff;
  padding: 5px 25px;
}

/*----一番上のオレンジラインの文字調整----*/
@media screen and (max-width: 768px) {
  #houjin .headerline h2 {
    font-size: 1.5em;
  }
}

/*----一番大きい見出しテキスト、PCSPテキスト調整----*/
#houjin h2.largettl {
  font-size: 2.7em;
}

@media screen and (max-width: 768px) {
  #houjin h2.largettl {
    font-size: 2em;
  }
}

/*----グローバルメニュー----*/
/* 共通設定 */
.fixed-nav {
  /* 追加 */
  max-width: 956px;
  margin: 0 auto;
  position: fixed !important;
  top: 96px;
  /* ← ヘッダーの高さに合わせる */
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 0 5px 4px rgba(0, 0, 0, 0.3);
}

.global-nav {
  width: 100%;
}

.global-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

/* ▼ PC用（横一列） */
@media screen and (min-width: 769px) {
  .global-nav li {
    width: 16.666%;
    background: #469946;
    border-right: 1px solid #fff;
    box-sizing: border-box;
    font-weight: bold;
  }

  .global-nav li:last-child {
    border-right: none;
    /* 最後の項目の右線を消す */
  }
}

/* ▼ スマホ用（2列表示） */
@media screen and (max-width: 1024px) {

  /* 追加 */
  .fixed-nav {
    top: 70px;
  }
}

@media screen and (max-width: 991px) {
  .fixed-nav {
    /* 追加 */
    top: 60px;
  }
}

/* ▼ スマホ用（2列表示） */
@media screen and (max-width: 768px) {
  .global-nav li {
    width: 33.333%;
    /* 2列にする */
    background: #469946;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    /* 行の区切りとして追加 */
    box-sizing: border-box;
    font-weight: bold;
  }

  .global-nav li:nth-child(3n) {
    border-right: none;
    /* 3の倍数（1列3セル）は右線を消す */
  }
}

.global-nav li a {
  display: block;
  padding: 10px 0;
  color: #fff;
  text-decoration: none;
  text-align: center;
}

/*----３人の意見リストのデザイン----*/
.houjin3nin ul {
  padding: 10px 10px 10px 35px;
}

.houjin3nin li {
  padding-bottom: 7px;
}

/*----✓マーク付きデザイン----*/
.checklist ul {
  list-style-type: none;
  font-size: 1.5em;
}

.checklist li {
  position: relative;
  padding-bottom: 0.6em;
}

.checklist li::after {
  content: '';
  display: block;
  position: absolute;
  top: .5em;
  left: -1.5em;
  width: 18px;
  height: 9px;
  border-left: 4px solid #ff6600;
  border-bottom: 4px solid #ff6600;
  transform: rotate(-45deg);
}

div.checklist {
  margin-left: auto;
  margin-right: auto;
  width: 75%;
}

@media screen and (max-width: 768px) {
  div.checklist {
    margin-left: 3em;
    margin-right: 0;
    width: 85%;
  }
}

/*----課題用幅狭めテキストエリア----*/
div.kadai_textarea {
  margin-left: auto;
  margin-right: auto;
  width: 75%;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  div.kadai_textarea {
    margin-left: auto;
    margin-right: auto;
    width: 85%;
  }
}

/*----人物付き吹き出しの調整----*/
.balloon5 {
  margin: 3.5em 0 1em 0;
}

/*----吹き出しのテキストに白縁取り---*/
#houjin .says h3 {
  color: #000;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF,
    -1px 1px 0 #FFF, 1px -1px 0 #FFF,
    0px 1px 0 #FFF, 0-1px 0 #FFF,
    -1px 0 0 #FFF, 1px 0 0 #FFF;
}

/*----事例用幅狭めテキストエリア　太字----*/
div.jirei_textarea {
  margin: 1.5em auto;
  width: 75%;
  color: #002d55;
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  div.jirei_textarea {
    margin-left: auto;
    margin-right: auto;
    width: 85%;
  }
}

/*----事例回答用見出し----*/
h3.jirei_answer {
  font-size: 1.2em;
  margin-bottom: 1.5em;
  line-height: 1.7;
}

h3.jirei_answer span {
  font-size: 1.5em;
  background: linear-gradient(transparent 60%, #fbd959 60%);
}

/*----事例回答用テキストボックス調整用----*/
.conceptD__text {
  padding: 40px;
  background: #fdf6e5c9;
}

.conceptD__text span {
  color: #000;
  font-size: 1em;
}

/*----角丸テキストボックス調整----*/
#houjin .kdmrbox {
  margin: 0 30px;
  font-weight: normal;
  color: #000;
  background: #fff4c8;
  border: 0;
}

/*----Pタグ見出し----*/
#houjin p.mds {
  font-size: 1.2em;
  font-weight: bold;
  color: #833030;
}

@media screen and (max-width: 768px) {
  #houjin p.mds {
    font-size: 1.3em !important;
  }
}

/*PCで3カラム、SPで1カラムの調整*/
.col_3-1 {
  margin: : 0;
}

.col_3-1>div {
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .col_3-1 img {
    margin-top: 20px;
  }
}

/*----リード文の調整----*/
.lead {
  text-align: center;
  margin: 1.6em;
  line-height: 1.7em;
}

/*----このページ用の角丸ボタン----*/
.minibtn {
  font-weight: bold;
  font-size: 0.8em;
  display: inline-block;
  background: salmon;
  /* 背景色 */
  color: #fff !important;
  /* 文字色 */
  padding: 3px 20px;
  /* 上下の余白、左右の余白 */
  text-decoration: none;
  /* デフォルトで入るリンクの下線を消す */
  border-radius: 10px;
  /* 角を丸くする */
}

/*----事例タイトル----*/
.jireittl {
  width: 50%;
}

/*----事例施設名とテキスト----*/
.caseimg {
  width: 85%;
}

.casename {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  text-decoration: none;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .casename {
    font-size: 21px;
  }
}

.casetext {
  text-align: left;
}

.casetext p {
  font-size: 0.9em;
  line-height: 1.6;
  margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
  .itemname {
    font-size: 20px !important;
  }
}

/************************************
** スマホで見やすい比較表
************************************/
.comparison-table-wrap {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 2em;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.comparison-table-title {
  background: #ffc53d;
  text-align: center;
  color: #333;
  font-weight: bold;
  padding: 0.5em;
  letter-spacing: 1px;
  margin: 0;
  font-size: 1.5em;
  box-shadow: 0 2px 5px rgba(100, 100, 100, 0.1);
}

.comparison-table {
  background: #fef9ed;
  margin: 0;
  padding: 0.3em 1em;
}

.comparison-table table {
  border-collapse: separate;
  border-spacing: 5px 10px;
  border: none;
  margin-bottom: 0;
}

.comparison-table table th, .comparison-table table td {
  width: 33.3%;
}

.comparison-table table thead th {
  background: #d4c096;
  border: none;
  color: #fff;
  box-shadow: 0 2px 5px rgba(100, 100, 100, 0.1);
  padding: 0.8em 0.5em;
  line-height: 1.5;
  border-radius: 3px;
  font-size: 1.2em;
}

.comparison-table table tbody th {
  background: #ffc53d;
  text-align: center;
  color: #333;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 0.4em 1em;
  font-size: 1.2em;
  line-height: 1.3;
}

.comparison-table table tbody td {
  background: #fff;
  box-shadow: 0 2px 5px rgba(100, 100, 100, 0.1);
  border-radius: 3px;
  border: none;
  padding: 1.2em;
  color: #555;
  line-height: 1.8;
  text-align: justify;
  vertical-align: top;
}

.comparison-table table tbody td p {
  margin: 0;
  padding: 0;
  margin-bottom: 1em;
  font-size: 14px;
}

.comparison-table table tbody td .td-h {
  text-align: center;
  font-weight: bold;
  color: #ffc53d;
  font-size: 2em;
  margin-bottom: 7px;
}

@media screen and (max-width: 768px) {
  .comparison-table {
    padding: 7px;
  }

  .comparison-table table {
    border-spacing: 3px 10px;
  }

  .comparison-table table thead th {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    z-index: 100;
  }
}

/*----比較表の見出しに白縁取り----*/
#houjin .comparison-table-title {
  -webkit-text-stroke: 3px #fff;
  text-stroke: 3px #fff;
  paint-order: stroke;
}

/*--------事例から選ぶの太字エリア---------*/
div.jirei_textarea {
  margin: 1.5em 1.5em 1.5em 75px;
  left: 30px;
  color: #002d55;
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  div.jirei_textarea {
    margin-left: auto;
    margin-right: auto;
    width: 85%;
  }
}

/*--------アイコン付き見出しのアイコン変更---------*/
h3.icon_mds:before {
  content: "\f521";
}

/*--------難易度のボタン設定---------*/
#houjin .nanidobtn {
  font-size: 1.3em;
  margin: 0.5em 0;
  padding: 0.3em 0.6em;
  width: 100%;
  border-radius: 8px;
  border: 2px solid;
  font-family: sans-serif;
}

/*--------難易度のテキスト設定---------*/
#houjin .nanidogenre {
  font-size: 0.85em;
  line-height: 1.5em;
  text-align: left;
  color: #555;
}

#houjin .col_3-1, p.left095em {
  text-align: left;
  font-size: 0.95em;
}

/*----　FAQの開閉（このページ専用）----*/
.lp_houjin_faq .faqbox {
  max-width: 100%;
  margin: 0 auto;
}

.lp_houjin_faq .faqbox dl {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.7em;
}

.lp_houjin_faq .faqbox dl:not(:first-child) {
  margin-top: 20px;
}

.lp_houjin_faq .faqbox dl dt {
  margin: 0;
  padding: 0;
  position: relative;
  cursor: pointer;
}

.lp_houjin_faq .faqbox dl dt.active {
  background: #6ab69d;
  color: #fff;
}

.lp_houjin_faq .faqbox dl dt.active:before {
  color: #fff;
}

.lp_houjin_faq .faqbox dl dt:before {
  content: "Q";
  font-size: 24px;
  line-height: 24px;
  display: block;
  width: 40px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 10px;
  color: #6ab69d;
  font-weight: 500;
}

.lp_houjin_faq .faqbox dl dt span {
  display: block;
  padding: 10px 50px 10px 40px;
  position: relative;
}

.lp_houjin_faq .faqbox dl dt span:before {
  content: "";
  width: 2px;
  height: 20px;
  display: block;
  background: #6ab69d;
  position: absolute;
  top: calc(50% - 10px);
  right: 20px;
}

.lp_houjin_faq .faqbox dl dt span:after {
  content: "";
  width: 2px;
  height: 20px;
  display: block;
  background: #6ab69d;
  position: absolute;
  top: calc(50% - 10px);
  right: 20px;
  transform: rotate(90deg);
}

.lp_houjin_faq .faqbox dl dd {
  margin: 0;
  padding: 20px 20px 20px 50px;
  display: none;
}

@media screen and (max-width: 768px) {
  .lp_houjin_faq .faqbox dl dd {
    padding-left: 40px;
  }
}

/*--------資料請求ボタンセット---------*/
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn-wrap {
  margin: 30px 0;
}

a.btn-c {
  font-size: 2.2rem;
  position: relative;
  padding: 0.25rem 2rem 1.5rem 3.5rem;
  color: #fff;
  background: #32b16c;
  -webkit-box-shadow: 0 5px 0 #2c9d60;
  box-shadow: 0 5px 0 #2c9d60;
}

a.btn-c span {
  font-size: 1.5rem;
  position: absolute;
  top: -10px;
  left: calc(50% - 150px);
  display: block;
  width: 300px;
  padding: 0.2rem 0;
  color: #32b16c;
  border: 2px solid #32b16c;
  border-radius: 0.5rem;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

a.btn-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background: #30a967;
  -webkit-box-shadow: 0 2px 0 #2c9d60;
  box-shadow: 0 2px 0 #2c9d60;
}

a.btn-c:hover:before {
  left: 2rem;
}

#houjin .minibtn {
  margin-top: 1em;
}

/*------画像にリンクを貼る------*/
.chart-container {
  position: relative;
  width: 100% !important;
  max-width: 768px;
  /* 実画像の横幅 */
}

.chart-image {
  width: 100%;
  height: auto;
  display: block;
}

.link-area {
  position: absolute;
  display: block;
  z-index: 9;
  /* 背景を付けたい場合（テスト用）： */
  background: rgba(255, 203, 0, 0.3);
}

/*▼▼▼▼▼１段目▼▼▼▼▼*/
.link-page1 {
  top: 46.5%;
  /* 画像全体に対する相対位置 */
  left: 2%;
  width: 11.7%;
  /* 相対的な横幅 */
  height: 3.5%;
}

.link-page2 {
  top: 46.5%;
  /* 画像全体に対する相対位置 */
  left: 17%;
  width: 11.7%;
  /* 相対的な横幅 */
  height: 3.5%;
}

.link-page3 {
  top: 46.5%;
  /* 画像全体に対する相対位置 */
  left: 32%;
  width: 11.7%;
  /* 相対的な横幅 */
  height: 3.5%;
}

.link-page4 {
  top: 46.5%;
  /* 画像全体に対する相対位置 */
  left: 47%;
  width: 11.7%;
  /* 相対的な横幅 */
  height: 3.5%;
}

.link-page5 {
  top: 46.5%;
  /* 画像全体に対する相対位置 */
  left: 63%;
  width: 11.7%;
  /* 相対的な横幅 */
  height: 3.5%;
}

.link-page6 {
  top: 46.5%;
  /* 画像全体に対する相対位置 */
  left: 77%;
  width: 11.7%;
  /* 相対的な横幅 */
  height: 3.5%;
}

/*▼▼▼▼▼２段目▼▼▼▼▼*/
.link-page7 {
  top: 72.5%;
  /* 画像全体に対する相対位置 */
  left: 8%;
  width: 11.7%;
  /* 相対的な横幅 */
  height: 3.5%;
}

.link-page8 {
  top: 73%;
  /* 画像全体に対する相対位置 */
  left: 42%;
  width: 11.7%;
  /* 相対的な横幅 */
  height: 3.5%;
}

.link-page9 {
  top: 77.5%;
  /* 画像全体に対する相対位置 */
  left: 72%;
  width: 11.7%;
  /* 相対的な横幅 */
  height: 3.5%;
}

.link-page10 {
  top: 77.5%;
  /* 画像全体に対する相対位置 */
  left: 85%;
  width: 11.7%;
  /* 相対的な横幅 */
  height: 3.5%;
}

/*▼▼▼▼▼２段目▼▼▼▼▼*/
.link-page11 {
  top: 94%;
  /* 画像全体に対する相対位置 */
  left: 16%;
  width: 12.5%;
  /* 相対的な横幅 */
  height: 3.5%;
}

.link-page12 {
  top: 94%;
  /* 画像全体に対する相対位置 */
  left: 31%;
  width: 12.5%;
  /* 相対的な横幅 */
  height: 3.5%;
}

.link-page13 {
  top: 94%;
  /* 画像全体に対する相対位置 */
  left: 46%;
  width: 12.5%;
  /* 相対的な横幅 */
  height: 3.5%;
}

.link-page14 {
  top: 94%;
  /* 画像全体に対する相対位置 */
  left: 61.5%;
  width: 12.5%;
  /* 相対的な横幅 */
  height: 3.5%;
}

/*左右互い違い*/
.box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 20px 0;
}

.txtarea {
  width: 40%;
  padding-left: 10px;
}

h4 {
  font-size: 1.25em;
  margin: 0;
}

.pict {
  width: 60%;
  margin-left: 3%;
}

.pict img {
  width: 100%;
  height: auto;
}

.box:nth-child(even) {
  flex-direction: row-reverse;
}

.box:nth-child(even) .txtarea {
  text-align: right;
}

.box:nth-child(even) .pict {
  margin-left: 0;
  margin-right: 3%;
}

@media (max-width:768px) {
  .box {
    flex-direction: column;
  }

  .box:nth-child(even) {
    flex-direction: column;
  }

  .txtarea {
    width: 100%;
  }

  .box:nth-child(even) .txtarea {
    text-align: center;
  }

  .pict {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .box:nth-child(even) .pict {
    margin-left: 0;
    margin-right: 0%;
  }

  .pict img {
    width: 100%;
    height: auto;
  }
}

/*------------cssだけでカルーセル-------------*/
/* 全体を中央寄せ */
.carousel {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .carousel {
    margin-top: 1em;
  }
}

/* カルーセルの枠 */
.contains {
  width: 500px;
  height: 281px;
  overflow: hidden;
  position: relative;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .contains {
    width: 380px;
    height: 214px;
  }
}

/* ラジオボタン非表示 */
.slide_select {
  display: none;
}

/* 各スライド */
.slide {
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  transition: opacity 0.5s ease;
}

/* 選択されたスライドのみ表示 */
.slide_select:checked+.slide {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

/* iframe調整 */
iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  border: none;
}

/* 前・次ボタン共通 */
.scroll_button {
  position: absolute;
  display: block;
  height: 30px;
  width: 30px;
  top: 50%;
  margin-top: -20px;
  border-width: 5px 5px 0 0;
  border-style: solid;
  border-color: #ff5a5a;
  cursor: pointer;
  opacity: 0.5;
  z-index: 3;
}

.scroll_button:hover {
  opacity: 1;
}

.scroll_prev {
  left: 15px;
  transform: rotate(-135deg);
}

.scroll_next {
  right: 15px;
  transform: rotate(45deg);
}

/* スライド移動ボタンエリア */
.move_controller {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.button_move {
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  border-radius: 100%;
  cursor: pointer;
  opacity: 0.5;
  background-color: #fdfdfd;
}

.button_move:hover {
  opacity: 0.75;
}

/* 選択されたボタンの視覚効果
.slide_select:checked + .slide + .move_controller .button_move {
  opacity: 1;
}*/
/* スライダー調整 */
/* 選択されたボタンの視覚効果（現在地が白くなる） */
/* スライドの枚数（ABC)や設置個数（123)に合わせる */
#Slide1A:checked~.move_controller label[for="Slide1A"],
#Slide1B:checked~.move_controller label[for="Slide1B"],
#Slide1C:checked~.move_controller label[for="Slide1C"],
#Slide1D:checked~.move_controller label[for="Slide1D"],
#Slide1E:checked~.move_controller label[for="Slide1E"],
#Slide2A:checked~.move_controller label[for="Slide2A"],
#Slide2B:checked~.move_controller label[for="Slide2B"],
#Slide2C:checked~.move_controller label[for="Slide2C"],
#Slide2D:checked~.move_controller label[for="Slide2D"],
#Slide2E:checked~.move_controller label[for="Slide2E"],
#Slide3A:checked~.move_controller label[for="Slide3A"],
#Slide3B:checked~.move_controller label[for="Slide3B"],
#Slide3C:checked~.move_controller label[for="Slide3C"],
#Slide3D:checked~.move_controller label[for="Slide3D"],
#Slide3E:checked~.move_controller label[for="Slide3E"] {
  opacity: 1;
}

/*----テキストに白枠---*/
#houjin .fuchi {
  color: #000;
  text-shadow:
    1px 1px 0 rgba(255,255,255,0.3),
    -1px -1px 0 rgba(255,255,255,0.3),
    -1px 1px 0 rgba(255,255,255,0.3),
    1px -1px 0 rgba(255,255,255,0.3),
    0 1px 0 rgba(255,255,255,0.3),
    0 -1px 0 rgba(255,255,255,0.3),
    -1px 0 0 rgba(255,255,255,0.3),
    1px 0 0 rgba(255,255,255,0.3),
    2px 0 0 rgba(255,255,255,0.3),
    -2px 0 0 rgba(255,255,255,0.3),
    0 2px 0 rgba(255,255,255,0.3),
    0 -2px 0 rgba(255,255,255,0.3),
    2px 2px 0 rgba(255,255,255,0.3),
    -2px -2px 0 rgba(255,255,255,0.3),
    -2px 2px 0 rgba(255,255,255,0.3),
    2px -2px 0 rgba(255,255,255,0.3);
}
