/*!
 * jquery-drawer v3.2.2
 * Flexible drawer menu using jQuery, iScroll and CSS.
 * http://git.blivesta.com/drawer
 * License : MIT
 * Author : blivesta <design@blivesta.com> (http://blivesta.com/)
 */

/*!------------------------------------*\
    Base
\*!------------------------------------*/
.header-section a:link,.header-section a:visited,.header-section a:hover,.header-section a:active,
.header-section-sp a:link,.header-section-sp a:visited,.header-section-sp a:hover,.header-section-sp a:active {
	text-decoration: none;
}

.drawer div {
  -webkit-tap-highlight-color:rgba(0,0,0,0) !important;
}
.drawer-open {
  overflow: hidden !important;
}
.scroll-stop {
  overflow: hidden !important;
  height: 100% !important;
}
.drawer-nav {
  position: fixed;
  z-index: 9999;
  top: 0;
  overflow: hidden;
  width: 275px;
  height: 100%;
  pointer-events: none;
}
.drawer-menu {
  z-index: 9998;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  pointer-events: auto;
}
.drawer-menu li {
  border-bottom: 1px solid #000B00;
}
.drawer-menu li:last-of-type {
  border-bottom: none;
}

/*! overlay */
.drawer-overlay {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
}
.drawer-open .drawer-overlay {
  display: block;
}

/*!------------------------------------*\
    Top
\*!------------------------------------*/
.drawer--top .drawer-nav {
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 100%;
  -webkit-transition: top .1s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: top .1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top .1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0,0,0);
          transform: translate3d(0,0,0);
}
.drawer--top.drawer-open .drawer-nav {
  top: 0;
}

/*!------------------------------------*\
    Left
\*!------------------------------------*/
.drawer--left .drawer-nav {
  left: -275px;
  -webkit-transition: left .5s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: left .5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: left .5s cubic-bezier(0.19, 1, 0.22, 1);
}
.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0;
}
.drawer--left.drawer-open .drawer-hamburger {
  left: 275px;
}

/*!------------------------------------*\
    Right
\*!------------------------------------*/
.drawer--right .drawer-nav {
  right: -275px;
  -webkit-transition: right .3s;
  -o-transition: right .3s;
  transition: right .3s;
}
.drawer--right.drawer-open .drawer-nav,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
}
.drawer--right .drawer-hamburger {
  display: none;
  right: 0;
}
.drawer--right.drawer-open .drawer-hamburger {
  right: 275px;
  display: block;
}

/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/
.drawer-hamburger {
  z-index: 9999;
  display: none;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 4rem;
  padding: 0;
  padding-top: 2rem;
  padding-right: 1.5rem;
  padding-bottom: 3rem;
  padding-left: .75rem;
  border: 0;
  outline: 0;
  background-color: transparent;
  margin: 0 0 0 auto;
}

.drawer-open .drawer-hamburger {
  display: block;
}

.wf-active .header-section-sp {
  font-weight: 500;
}
.drawer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0rem 1rem;
}
.drawer-list li:nth-of-type(1),
.drawer-list li:nth-of-type(2) {
  height: 100%;
}
.drawer-list li:nth-of-type(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.drawer-list li:nth-of-type(1) a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.drawer-list li:nth-of-type(1) a:hover {
  opacity: 0.7;
}
.drawer-list li:nth-of-type(2) {
  display: none;
}

.drawer-list li:nth-of-type(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.drawer-list li:nth-of-type(3) a {
  cursor: pointer;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  margin-right: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.drawer-list li:nth-of-type(3) a:hover {
  -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}
.drawer-list li:nth-of-type(3) img {
  width: 50px;
  height: 50px;
}
.drawer-menuicon {
  display: none;
  position: relative;
  width: 100%;
  border: 0;
  outline: 0;
  height: 100%;
  cursor: pointer;
  background: #4d4d4d;
  text-align:center;
}

.drawer-menuicon span, .drawer-menuicon span:before, .drawer-menuicon span:after {
  position: absolute;
  height: 4px;
  width: 45px;
  background: #e6e6e6;
  display: block;
  content: '';
  margin: 0 auto;
  right: 0;
  left:0;
}
.drawer-menuicon span:before {
  bottom: 15px;
}
.drawer-menuicon span:after {
  bottom: -15px;
}
.drawer-hamburger:hover {
  cursor: pointer;
  background-color: transparent;
}
.drawer-hamburger-icon {
  position: relative;
  display: block;
  margin-top: 10px;
}
.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 100%;
  height: 3px;
  background-color: #fff;
}
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  position: absolute;
  top: -10px;
  left: 0;
  content: ' ';
}
.drawer-hamburger-icon:after {
  top: 10px;
}
.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}
.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 0;
}
.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}
.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

/*!------------------------------------*\
    accessibility
\*!------------------------------------*/

/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

/*!------------------------------------*\
    Sidebar
\*!------------------------------------*/
.drawer--sidebar {
  background-color: #fff;
}
.drawer--sidebar .drawer-contents {
  background-color: #fff;
}

@media (min-width: 64em) {
  .drawer--sidebar .drawer-hamburger {
    display: none;
    visibility: hidden;
  }
  .drawer--sidebar .drawer-nav {
    display: block;
    -webkit-transform: none;
            -ms-transform: none;
        transform: none;
    position: fixed;
    width: 12.5rem;
    height: 100%;
  }
  /*! Left */
  .drawer--sidebar.drawer--left .drawer-nav {
    left: 0;
    border-right: 1px solid #ddd;
  }
  .drawer--sidebar.drawer--left .drawer-contents {
    margin-left: 12.5rem;
  }
  /*! Right */
  .drawer--sidebar.drawer--right .drawer-nav {
    right: 0;
    border-left: 1px solid #ddd;
  }
  .drawer--sidebar.drawer--right .drawer-contents {
    margin-right: 12.5rem;
  }
  /*! container */
  .drawer--sidebar .drawer-container {
    max-width: 48rem;
  }
}

@media (min-width: 75em) {
  .drawer--sidebar .drawer-nav {
    width: 275px;
  }
  .drawer--sidebar.drawer--left .drawer-contents {
    margin-left: 275px;
  }
  .drawer--sidebar.drawer--right .drawer-contents {
    margin-right: 275px;
  }
  /*! container */
  .drawer--sidebar .drawer-container {
    max-width: 60rem;
  }
}

/*!------------------------------------*\
    Navbar
\*!------------------------------------*/
.drawer--navbarTopGutter {
  padding-top: 3.75rem;
}
.drawer-navbar .drawer-navbar-header {
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}
.drawer-navbar {
  z-index: 102;
  top: 0;
  width: 100%;
}

/*! .drawer-navbar modifier */
.drawer-navbar--fixed {
  position: fixed;
}
.drawer-navbar-header {
  position: relative;
  z-index: 102;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 3.75rem;
  padding: 0 .75rem;
  text-align: center;
}
.drawer-navbar .drawer-brand {
  line-height: 3.75rem;
  display: inline-block;
  padding-top: 0;
  padding-bottom: 0;
  text-decoration: none;
}
.drawer-navbar .drawer-brand:hover {
  background-color: transparent;
}
.drawer-navbar .drawer-nav {
  padding-top: 3.75rem;
}
.drawer-navbar .drawer-menu {
  padding-bottom: 7.5rem;
}
@media (min-width: 64em) {
  .drawer-navbar {
    height: 3.75rem;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
  }
  .drawer-navbar .drawer-navbar-header {
    position: relative;
    display: block;
    float: left;
    width: auto;
    padding: 0;
    border: 0;
  }
  .drawer-navbar .drawer-menu--right {
    float: right;
  }
  .drawer-navbar .drawer-menu li {
    float: left;
  }
  .drawer-navbar .drawer-menu-item {
    line-height: 3.75rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .drawer-navbar .drawer-hamburger {
    display: none;
  }
  .drawer-navbar .drawer-nav {
    position: relative;
    left: 0;
    overflow: visible;
    width: auto;
    height: 3.75rem;
    padding-top: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  .drawer-navbar .drawer-menu {
    padding: 0;
  }
  /*! dropdown */
  .drawer-navbar .drawer-dropdown-menu {
    position: absolute;
    width: 275px;
    border: 1px solid #ddd;
  }
  .drawer-navbar .drawer-dropdown-menu-item {
    padding-left: .75rem;
  }
}

/*!------------------------------------*\
    Dropdown
\*!------------------------------------*/
.drawer-dropdown-menu {
  display: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
}
.drawer-dropdown-menu > li {
  width: 100%;
  list-style: none;
}
.drawer-dropdown-menu-item {
  line-height: 3.75rem;
  display: block;
  padding: 0;
  padding-right: .75rem;
  padding-left: 1.5rem;
  text-decoration: none;
  color: #222;
}
.drawer-dropdown-menu-item:hover {
  text-decoration: underline;
  color: #555;
  background-color: transparent;
}

/*! open */
.drawer-dropdown.open > .drawer-dropdown-menu {
  display: block;
}

/*! drawer-caret */
.drawer-dropdown .drawer-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  -webkit-transition: opacity .2s ease, -webkit-transform .2s ease;
  transition: opacity .2s ease, -webkit-transform .2s ease;
  -o-transition: transform .2s ease, opacity .2s ease;
  transition: transform .2s ease, opacity .2s ease;
  transition: transform .2s ease, opacity .2s ease, -webkit-transform .2s ease;
  -webkit-transform: rotate(0deg);
          -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/*! open */
.drawer-dropdown.open .drawer-caret {
  -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}

/*!------------------------------------*\
    Container
\*!------------------------------------*/
.drawer-container {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 64em) {
  .drawer-container {
    max-width: 60rem;
  }
}

@media (min-width: 75em) {
  .drawer-container {
    max-width: 70rem;
  }
}

/* PCヘッダー */
.header-section-sp img,#header_second a img {
  opacity: 1 !important;
}
.header-section {
  background: #FFF;
  border-top: 1px solid #003149;
  border-bottom: 1px solid #003149;
  font-family: "source-han-sans-japanese","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  font-weight: 300;
  font-size: 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.header-section-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 65px;
  width: 1140px;
  margin: 0 auto;
}
.header-section-menu-item {
    width: 25%;
    height: 65px;
    line-height: 50px;
    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;

}
.header-section-menu > li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #003149;
    display: flex;
    width: 100%;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align:center;
    height: 100%;
}
ul.header-section-menu-item-label {
    visibility: hidden;
    opacity: 0;
    z-index: 9999;
}
.header-section-menu > li:hover {
    background: #e6e6e6;
}
.header-section-menu-item-title span {
  position: relative;
  height: 100%;
  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;  
}
.header-section-menu-item-title span:after {
    content: '';
    display: inline-block;
    position:absolute;
    right: -20px;
    top: 28px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #ec6d51;
    border-bottom: 1px solid #ec6d51;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.header-section-menu-item:nth-of-type(1) .header-section-menu-item-title {
  padding-left: 20px;
}
.header-section-menu-item:nth-of-type(n+2) .header-section-menu-item-title {
  padding-left: 10px;
}
.header-section-menu-item:nth-of-type(1) .header-section-menu-item-title span:after {
  display: none;
}
.header-section-menu-item-title span:before {
  position: absolute;
  content: "";
  top: 32px;
  left: -27px;
  width: 20px;
  height: 20px;
  margin-top: -9px;
  background-size: 10px 10px;
}
li.header-section-menu-item ul.header-section-menu-item-label {
    position: absolute;
    top: 65px;
    left: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 20px 20px 5px 20px;
    background: #003149;
    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;
}
li.header-section-menu-item:hover ul.header-section-menu-item-label {
    top: 65px;
    visibility: visible;
    background-color: rgba(11, 49, 71, 0.9);
    opacity: 1;
}
li.header-section-menu-item ul.header-section-menu-item-label > li {
    width: 32%;
    margin: 0 0 15px 0;
    border: none;
    background: #FFF;
    opacity: 1;
}
li.header-section-menu-item ul.header-section-menu-item-label > li a {
    color: #003149 !important;
    cursor: pointer;
    position: relative;
}
li.header-section-menu-item ul.header-section-menu-item-label > li a:after {
    content: '';
    display: inline-block;
    position:absolute;
    right: 20px;
    top: 20px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #003149;
    border-bottom: 1px solid #003149;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    cursor: pointer;
}
li.header-section-menu-item ul.header-section-menu-item-label > li:hover {
  background: #e6e6e6;
}
li.header-section-menu-item ul.header-section-menu-item-label > li.empty {
  background: none;
}
h1.title {
  border: none;
  padding-left: 0px;
}
#topicpath,h1.title {
  width: 1140px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#snsarea {
  width: 1140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -32px auto 0 auto !important;
}
.sns_link {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.sns_link:hover {
  opacity: 0.7 !important;
}
.tw-share-button {
  margin-right: 10px;
}
.tw-share-button img,.line-share-button img {
  width: auto;
  height: 30px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#header_second {
  position: relative;
  z-index: 19;
  -webkit-box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2);
  box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2);
  font-family: "source-han-sans-japanese","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  font-weight: 300; 
}
#topicpath span,h1.title {
  font-weight: bold; 
}
.wf-active #topicpath span,.wf-active h1.title {
  font-weight: 500;
}
#topicpath,#topicpath a {
  color: #7B7B7B;
}
#topicpath a:hover {
  text-decoration: underline;
  color: #333;
}
#topicpath span {
  color: #ec6d51;
}
#twibtn,#bookmark {
  display: none;
}
@media screen and (min-width: 721px) and (max-width: 1160px) {
  .drawer-menuicon {
    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;
  }
  .header-section-sp {
    height: 60px;
  }
  .drawer-list li:nth-of-type(1) a {
    width: 60px;
    height: 60px; 
  }
  .drawer-list li:nth-of-type(2) {
    width: 60px;
    height: 100%;
  }
  .drawer-list li:nth-of-type(2) {
    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;
    background: #e6e6e6;
  }
  .drawer-menuicon span, .drawer-menuicon span:before, .drawer-menuicon span:after {
    height: 4px;
    width: 35px;
  }
  .header-section {
    display: none;
  }
  .drawer-list li:nth-of-type(3) {
    display: none;
  }
  .drawer-menuicon span:before {
    bottom: 14px;
  }
  .drawer-menuicon span:after {
    bottom: -14px;
  }
  .drawer-list li:nth-of-type(1) img {
    width: 187px; 
  }
  h1.title {
    border: none;
    padding-left: 0px;
  }
  #topicpath,.title,#snsarea {
      width: 100%;
  }
  #snsarea {
    height: auto;
    margin: -28px auto 0 auto !important;
  }
  #header_second {
    padding: 5px 5px 5px 5px !important;
  }
  .tw-share-button img,.line-share-button img {
    height: 25px !important;
  }
}

@media screen and (max-width: 720px) {
  .drawer-menuicon {
    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;
  }
  .header-section-sp {
    height: 7rem;
  }
  .drawer-list li:nth-of-type(2) {
    width: 5rem;
    height: 5rem;
  }
  .drawer-list li:nth-of-type(2) {
    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;
    background: #e6e6e6;
  }
  .drawer-menuicon span, .drawer-menuicon span:before, .drawer-menuicon span:after {
    height: 2px;
    width: 3rem;
  }
  .header-section {
    display: none;
  }
  .drawer-list li:nth-of-type(3) {
    display: none;
  }
  .drawer-menuicon span:before {
    bottom: 10px;
  }
  .drawer-menuicon span:after {
    bottom: -10px;
  }
  .drawer-list li:nth-of-type(1) img {
    width: 156px; 
  }
  .drawer-list li:nth-of-type(1) a:hover {
    opacity: 1 !important;
  }
  h1.title {
    width: 100%;
    padding: 0 5px 0 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 1px solid #a9a9a9;
    border-left: none;
    font-size: 4.5vw;
  }
  h1.title,#snsarea {
      width: 100%;
  }
  #topicpath {
    display: none !important;
  }
  #snsarea {
    width: 100%;
    text-align: right;
    margin: 5px 0 0 auto !important;
  }
  #header_second {
    display: block;
    padding: 5px 5px 5px 5px !important;
  }
  .tw-share-button img,.line-share-button img {
    height: 25px !important;
  }
  .sns_link {
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
    -webkit-tap-highlight-color:rgba(0, 0, 0, 0.25) !important;
  }
  .sns_link:hover {
    opacity: 1 !important;
  }
  .drawer-list li:nth-of-type(1) a {
    -webkit-transition: all 0s !important;
    -o-transition: all 0s !important;
    transition: all 0s !important;
  }
}

@media screen\0 {
  .sns_link {
    -webkit-transition: 0s !important;
    -o-transition: 0s !important;
    transition: 0s !important;
  }
  .drawer-list li:nth-of-type(1) a {
    -webkit-transition: all 0s !important;
    -o-transition: all 0s !important;
    transition: all 0s !important;
  }
}

@supports (-ms-ime-align: auto) and (not (-webkit-text-stroke: initial)) {
  .sns_link {
    -webkit-transition: 0s !important;
    -o-transition: 0s !important;
    transition: 0s !important;
  }
  .drawer-list li:nth-of-type(1) a {
    -webkit-transition: all 0s !important;
    -o-transition: all 0s !important;
    transition: all 0s !important;
  }
}