/*======================================================
Common layout
======================================================*/
body {
  font-size: 14px;
  font-family:"Helvetica Neue", Arial,"Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  -webkit-font-smoothing:antialiased;
  line-height: 1.75;
  color: #333333;
  min-width: 320px;
  overflow-x: hidden;
}
a {
  color: #000;
  text-decoration: none;
}
main img {
  max-width: 100%;
  height: auto;
}
sub {
  vertical-align: sub;
  font-size: 50%;
  position: relative;
  top: -3px;
  font-weight: inherit;
}
.content{
  padding-top: 96px;
  box-sizing: border-box;
}
.content * {
  box-sizing: border-box;
}
.cmn-inner {
  max-width: 1124px;
  margin: 0 auto;
  padding: 0 4%;
  box-sizing: content-box;
}
.cmn-mv {
  width: 100%;
  height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 4%;
}
.cmn-mv__ttl {
  font-size: 32px;
  color: #FFF;
  font-weight: 600;
  text-align: center;
}
.cmn-mv__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.cmn-mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cmn-txt-01 {
  font-size: 16px;
  line-height: 2;
}
.cmn-txt-02 {
  font-size: 20px;
}
.center {
  text-align: center;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.cmn-link-01 {
  color: #F0047F;
  border-bottom: solid 1px #F0047F;
  display: inline-block;
  line-height: 1;
}
.cmn-link-01:hover {
  border-color: #FFF;
}
.cmn-link-02 {
  color: #000;
  border-bottom: solid 1px #333333;
  transition: all .5s ease;
  padding-bottom: 5px;
}
.cmn-link-02.is-white {
  color: #FFF;
  border-color: #FFF;
}
.cmn-link-02:hover {
  border-color: #F0047F;
}
.cmn-link-03 {
  min-width: 240px;
  background-color: #dc1e37;
  border: 2px solid #dc1e37;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  line-height: 1.5;
  max-width: 100%;
  outline: 0;
  padding: calc(1em - 2px) calc(1.5em - 2px);
  text-align: center;
  transition: opacity .1s linear;
  user-select: none;
  white-space: nowrap;
}

.cmn-link-03:hover {
  opacity: .7;
}
.bold {
  font-weight: bold;
}
/*======================================================
header
======================================================*/
.header {
  width: 100%;
  height: 96px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(0,0,0,.5) 0%,transparent);
}

.header.is-white {
  background: #fff;
}

.header__logo {
  width: 173px;
  height: 16px;
  line-height: 1.15;
  position: absolute;
  top: 40px;
  left: 54px;
  z-index: 2;
  background-image: url('/global/yanmar_tokyo/img/header_logo_w.svg');
  background-size: contain;
  background-repeat: no-repeat;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.header.is-white .header__logo {
  background-image: url('/global/yanmar_tokyo/img/header_logo.svg');
}
.header__logo a {
  display: block;
}
.g-nav {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 120px 80px 20px;
  box-sizing: border-box;
  display: none;
}
.g-nav::after {
  content: '';
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, .9);
  position: absolute;
  top: 0;
  left: 0;
  transition: width .3s ease;
  z-index: -1;
}
header.is-white .g-nav::after {
  background-color: rgba(255, 255, 255, .9);
}
.g-nav.is-open {
  left: 0;
}
.g-nav.is-open::after {
  width: 100%;
}
.g-nav.is-open  .g-nav-list {
  opacity: 1;
  transition: opacity .8s ease;
}
.g-nav-list {
  opacity: 0;
}
.g-nav-list__item:not(:first-child) {
  margin-top: 60px;
}
.g-nav-list__text-e {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.g-nav-list__text {
  font-size: 15px;
  font-weight: 400;
  margin-top: 6px;
  display: inline-block;
}

.g-nav-list__link:link {
  color: #fff;
  text-decoration: none;
}

.g-nav-list__link:visited {
  color: #fff;
  text-decoration: none;
}

.g-nav-list__link:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.5;
}

.g-nav-list__link:active {
  color: #fff;
  text-decoration: none;
}
.header .g-nav-list__link {
  transition: all .5s ease;
}
.header.is-white .g-nav-list__link:link {
  color: #000;
  text-decoration: none;
}

.header.is-white .g-nav-list__link:visited {
  color: #000;
  text-decoration: none;
}

.header.is-white .g-nav-list__link:hover {
  text-decoration: none;
}

.header.is-white .g-nav-list__link:active {
  color: #000;
  text-decoration: none;
}

.hamburger {
  position: absolute;
  top: 37px;
  right: 54px;
  width: 26px;
  height: 20px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  z-index: 2;
}

.hamburger span {
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: #fff;
  left: 0;
  transition: all .3s ease;
}

.header.is-white .hamburger span {
  background-color: #000;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: calc(50% - 1px);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}
.hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg);
  transform-origin: left top;
}
.hamburger.is-open span:nth-child(2) {
  display: none;
}
.hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg);
  transform-origin: left bottom;
}

.location-breads {
  background-color: #f0f0f0;
  color: #000000;
}
.location-breads__inner {
  max-width: 1110px;
  width: calc(100% - 60px);
  box-sizing: border-box;
  margin: 0 auto;
}

.location-breads__list {
  flex-wrap: wrap;
  overflow-x: visible;
  padding-left: 0;
  padding-right: 0;
  align-items: center;
  display: flex;
  white-space: nowrap;
}

.location-breads__item,
.location-breads__ellipsis {
  padding-right: 2em;
  position: relative;
}

.location-breads__item:last-child {
  padding-right: 15px;
}

.location-breads__item:last-child::after {
  content: none;
}

.location-breads__item::after,
.location-breads__ellipsis::after {
  background-image: url(/assets/img/bg/bg_nav-location.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 40%;
  content: '';
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 2em;
}

a.location-breads__anchor {
  align-items: center;
  color: inherit;
  display: flex;
  height: 3em;
  text-decoration: none;
  transition: color 0.1s;
  font-size: 13px;
}

.footer#footer,
.footer {
  background-color: #f5f5f5;
  position: relative;
  padding-top: 120px;
  font-size: 12px;
}

.footer__inner {
  max-width: 1110px;
  width: calc(100% - 60px);
  margin: 0 auto;
  position: relative;
}

.footer-related__content {
  display: flex;
  flex-wrap: wrap;
}
.footer-related__ttl {
  font-weight: 600;
}
.footer-related__list {
  margin-right: 120px;
}

.footer-related__item {
  margin-top: 1.2em;
  white-space: nowrap;
}

.footer-related__item a:link {
  color: #000;
  text-decoration: none;
}

.footer-related__item a:visited {
  color: #000;
  text-decoration: none;
}

.footer-related__item a:hover {
  color: #000;
  text-decoration: underline;
}

.footer-related__item a:active {
  color: #000;
  text-decoration: none;
}

.footer__social-links {
  align-items: center;
  display: flex;
  font-size: 100%;
  margin-bottom: 40px;
  padding-bottom: 40px;
  justify-content: flex-start;
}

.footer__social-links-title {
  flex-shrink: 0;
}

.footer__social-links ul {
  margin-left: 15px;
  margin-right: 34px;
  margin-top: 0;
  align-items: center;
  display: flex;
}

.footer__social-links ul a {
  display: block;
  height: 30px;
  width: 30px;
}

.footer__social-links ul a img {
  height: auto;
  width: 100%;
}

.footer__social-links ul li+li {
  margin-left: 10px;
}

*~.footer-content__aside {
  margin-top: 40px;
}

.footer-content__aside-region {
  align-items: center;
  display: flex;
  height: 40px;
  margin-bottom: 30px;
  width: 100%;
}

.footer-content__aside-region-inner {
  display: inline-block;
  position: relative;
}

.footer-content__aside-region-inner a {
  align-items: center;
  color: #333;
  display: inline-flex;
  white-space: nowrap;
}

.footer-content__aside-region-inner a:link {
  color: #333;
  text-decoration: none;
}

.footer-content__aside-region-inner a:visited {
  color: #333;
  text-decoration: none;
}

.footer-content__aside-region-inner a:hover {
  color: #333;
  text-decoration: underline;
}

.footer-content__aside-region-inner a:active {
  color: #333;
  text-decoration: none;
}

.footer-content__aside-region-inner img {
  margin-right: 10px;
  width: 24px;
  height: 24px;
}

.footer__social-links {
  height: 40px;
  margin-bottom: 0;
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid #CCCCCC;
}

.footer__social-links-notes a {
  position: relative;
  display: block;
  padding: 0 0 6px;
  white-space: nowrap;
}
.footer__social-links-notes a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
}
.footer__social-links-notes a {
  position: relative;
}
.footer__social-links-notes a:link {
  color: #000;
  text-decoration: none;
}
.footer__social-links-notes a:visited {
  color: #000;
  text-decoration: none;
}
.footer__social-links-notes a:hover {
  color: #000;
  text-decoration: none;
}
.footer__social-links-notes a:active {
  color: #000;
  text-decoration: none;
}
.footer-content__aside-submenu {
  font-size: 86%;
  width: 50%;
}
.footer-content__aside-submenu li {
  display: inline-block;
}
.footer-content__aside-submenu li:not(:last-child) {
  margin-right: 24px;
}
.footer-content__aside-submenu a {
  color: #666666;
  white-space: nowrap;
  text-decoration: none;
}
.footer-content__aside-rights {
  font-size: 72%;
  text-align: right;
  width: 50%;
}
.footer-content__aside-submenu a {
  color: #666666;
  white-space: nowrap;
}
.footer-content__aside-rights a {
  color: #666666;
  white-space: nowrap;
}
.footer-content__aside-submenu a:hover {
  text-decoration: underline;
}
.footer-content__aside-flex {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
}
.footer-main-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 40px;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 8px 0 24px;
}
.footer-main-menu__item {
  margin: 16px 32px 0;
  white-space: nowrap;
}
.footer-main-menu__item.is-top {
  font-weight: 700;
}
.footer-main-menu__link:link {
  color: #000;
  text-decoration: none;
}
.footer-main-menu__link:visited {
  color: #000;
  text-decoration: none;
}
.footer-main-menu__link:link {
  color: #000;
  text-decoration: none;
}
.footer-main-menu__link:link:hover {
  text-decoration: underline;
}
.footer-main-menu__link:link {
  color: #000;
  text-decoration: none;
}
#footer #nav-pagetop {
  position: absolute;
  right: 30px;
  top: 0;
  cursor: pointer;
}
#footer #nav-pagetop img {
  width: 40px;
  height: 40px;
}
/*======================================================
shop floor
======================================================*/
.shop-floor {
  padding: 50px 0 0;
}
.shop-floor__ttl {
  font-size: 38px;
  margin-bottom: 40px;
}
.shop-floor__row {
  display: flex;
  flex-wrap: wrap;
}
.shop-floor__item {
  width: 30%;
  padding: 0 30px 40px 0;
  margin: 0 3.3% 50px 0;
  border-bottom: solid 1px #DDDDDD;
  border-right: solid 1px #DDDDDD;
  display: flex;
  flex-direction:column;
  transform: translateZ(0);
}
a.shop-floor__item:hover .shop-floor__item-img img {
  transform:scale(1.1);
  opacity: .7;
}
a.shop-floor__item:hover .cmn-link-02 {
  border-color: #F0047F;
}
.shop-floor__item-img {
  position: relative;
  overflow: hidden;
  margin: 0 auto 30px;
}
.shop-floor__item-img img {
  transition: all .5s ease;
  transform: translateZ(0);
  width: 100%;
  display: block;
  height: auto;
  zoom: 1;
  -webkit-transform: scale(1,1);
  transform: scale(1,1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.shop-floor__item-ttl {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1;
  text-align: center;
}
.shop-floor__item-ttl span {
  font-size: 13px;
  font-weight: 600;
}
.shop-floor__item-logo {
  height: 35px;
  text-align: center;
  margin-bottom: 20px;
}
.shop-floor__item-logo img {
  height: 100%;
}
.shop-floor__item-txt {
  font-size: 13px;
  margin-bottom: 30px;
  flex-grow: 1;
}
.shop-floor__item-hours {
  font-size: 14px;
  margin: 0 0 30px;
  /* text-indent: -5em; */
  /* padding-left: 5em; */
}
.shop-floor__item-link {
  color: #000;
  border-bottom: solid 2px #333333;
  transition: all .5s ease;
  padding-bottom: 5px;
}

/*======================================================
accordion
======================================================*/
.accordion {
  position: relative;
  margin-bottom: 150px;
}
.accordion__item {
  width: 50%;
  margin: 0 0 0 auto;
}
.accordion__unit {
  border-bottom: solid 1px #DDDDDD;
  padding: 12px 0;
}
.accordion__item:nth-of-type(1) .accordion__unit {
  border-top: solid 1px #DDDDDD;
}

.accordion__item:nth-of-type(1) .accordion__txt {
  display: block;
}
.accordion__ttl {
  font-size: 20px;
  padding: 20px 100px 20px 0;
  cursor: pointer;
  position: relative;
  line-height: 1.2;
  font-weight: 700;
}
.accordion__ttl::after {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: calc(50% - 16px);
  right: 20px;
  border-top: #000000 3px solid;
  border-left: #000000 3px solid;
  transform: rotate(-135deg);
  transition: transform .3s ease;
}
.accordion__ttl.active::after {
  transform: rotate(45deg);
}
.accordion__txt {
  font-size: 16px;
  display: none;
  padding-bottom: 30px;
}
.accordion__note {
  font-size: 13px;
}
.accordion__img a {
  position: relative;
  line-height: 1;
  font-size: 0;
}
.accordion__img a::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(/global/yanmar_tokyo/img/icon_q.jpg)no-repeat center /contain;
}
/*======================================================
lbox
======================================================*/
  #lbox {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
  }
  #lbox .lbox-inr {
    max-width: 90%;
    height: auto;
    position: relative;
    top: 10px;
    z-index: 1001;
    text-align: center;
  }
  #lbox .lbox-img {
    max-height: 90vh;
    width: auto;
    position: relative;
    overflow-y: auto;
    z-index: 10001;
  }
  #lbox .lbox-img img {
    max-width: 800px;
  }
  #lbox #close {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 44px;
    height: 44px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    z-index: 10002;
    background: #F5F5F5;
    border-radius: 50%;
  }
  #lbox #close:hover {
    cursor: pointer;
  }
  #lbox #close:before, #lbox #close:after {
    content: '';
    display: block;
    width: 2px;
    height: 45%;
    background: #333333;
    position: absolute;
    top: 28%;
    left: 48%;
  }
  #lbox #close:before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }

  #lbox #close:after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }

  #lbox #clickable {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    opacity: .3;
  }
/*======================================================
scroll Animation
======================================================*/
  .js-fadeup {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
  }
  .js-fadeup.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .js-fadeup-row-child {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
  }
  .js-fadeup-row.is-visible .js-fadeup-row-child {
    opacity: 1;
    transform: translateY(0);
  }


/*======================================================
list-news
======================================================*/
.list-news-01 {
    margin-bottom: 30px
}

.list-news-01 li {
    border-bottom: 1px solid #ccc
}

.list-news-01 li a:hover,.list-news-01 li a:focus {
    color: #dc1e37;
    background-color: #f5f5f5;
    text-decoration: none
}

.list-news-01 li a:hover .content .date,.list-news-01 li a:focus .content .date {
    color: #333
}

.list-news-01 li a:hover .content .text,.list-news-01 li a:focus .content .text {
    text-decoration: underline
}

.list-news-01 li a:active .content .text {
    color: #e6465a;
    text-decoration: none
}

.list-news-01 li .no-link,.list-news-01 li a {
    display: flex;
    padding: 13px 16px 12px;
    vertical-align: middle;
    color: #333
}

.list-news-01 li .no-link .image,.list-news-01 li a .image {
    flex-grow: 0;
    flex-shrink: 0;
    margin-right: 20px;
    width: 250px
}

.list-news-01 li .no-link .image img,.list-news-01 li a .image img {
    border: 1px solid #ddd;
    box-sizing: border-box;
    display: block;
    height: auto;
    width: 100%
}

.list-news-01 li .no-link .content .date,.list-news-01 li a .content .date {
    margin-right: 20px;
    display: block;
    float: left;
    width: 290px
}

.list-news-01 li .no-link .content .date .icon,.list-news-01 li a .content .date .icon {
    float: right;
    width: 130px;
    color: #fff;
    font-size: 86%;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    *zoom:1;*display: inline
}

.list-news-01 li .no-link .content .date .icon.category-01,.list-news-01 li a .content .date .icon.category-01 {
    background-color: #0096e1
}

.list-news-01 li .no-link .content .date .icon.category-02,.list-news-01 li a .content .date .icon.category-02 {
    background-color: #dc1e37
}

.list-news-01 li .no-link .content .date .icon.category-03,.list-news-01 li a .content .date .icon.category-03 {
    background-color: #41b432
}

.list-news-01 li .no-link .content .text,.list-news-01 li a .content .text {
    display: block;
    overflow: hidden
}

.list-news-01 li .no-link .content .external,.list-news-01 li a .content .external {
    background: url("/assets/img/icon/icon_window_02.png") no-repeat 0;
    padding-left: 20px
}

.list-news-01 li .no-link .image+.content,.list-news-01 li a .image+.content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center
}

.list-news-01 li .no-link .image+.content span,.list-news-01 li a .image+.content span {
    display: block;
    float: none
}

.list-news-01 li .no-link .image+.content .date,.list-news-01 li a .image+.content .date {
    margin-bottom: 10px;
    margin-right: 0
}

.list-news-01 li .no-link:hover .content .external,.list-news-01 li a:hover .content .external {
    background-image: url("/assets/img/icon/icon_window_01.png")
}

.list-news-01.l-small li .no-link .content .date,.list-news-01.l-small li a .content .date {
    width: 130px
}

.list-news-01.l-small li .no-link .content .date .icon,.list-news-01.l-small li a .content .date .icon {
    float: none
}

@media screen and  (min-width:661px) and (max-height:700px) {
  .g-nav .g-nav-list {
    transform: scale(0.8);
    transform-origin:left top;
  }
}

@media screen and (min-width: 661px) {
  .pc-none {
    display: none !important;
  }
  .accordion__item:nth-of-type(n+2) .accordion__img {
    display: none;
    }
  .accordion__img {
    width: 40%;
    height: 100%;
    max-width: 400px;
    position: absolute;
    left: 50px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    }
}
@media screen and (max-width:660px) {
  .sp-none {
    display: none !important;
  }
  .content {
    padding-top: 46px;
  }
  .cmn-mv {
    height: 250px;
  }
  .cmn-mv__ttl {
    font-size: 24px;
  }
  .cmn-txt-01 {
    font-size: 14px;
  }
  .cmn-txt-02 {
    font-size: 16px;
  }
  .header {
    height: 48px;
  }
  .header__logo {
    top: 15px;
    left: 15px;
  }
  .g-nav {
    padding: 80px 20px 20px;
  }

  .g-nav-list__item:not(:first-child) {
    margin-top: 30px;
  }

  .g-nav-list__text-e {
    font-size: 24px;
  }

  .g-nav-list__text {
    font-size: 12px;
  }

  .hamburger {
    position: absolute;
    top: 15px;
    right: 15px;
  }

  .footer-related__list {
    margin-right: 60px;
  }

  .footer-main-menu__item {
    margin: 16px 16px 0;
  }

  .footer-content__aside-flex {
    flex-direction: column;
  }

  .footer-content__aside-submenu {
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    padding: 15px 0;
    text-align: center;
    width: 100%;
    line-height: 1.8;
  }
  .footer-content__aside-rights {
    padding: 15px 0;
    text-align: center;
    width: 100%;
  }
  #footer #nav-pagetop {
    right: 15px;
    bottom: 156px;
  }
  #topcontrol {
    bottom: 0 !important;
    right: 15px !important;
    height: 40px;
  }
  /*======================================================
  shop floor
  ======================================================*/
  .shop-floor__ttl {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .shop-floor__row {
    max-width: 320px;
    margin: 0 auto;
  }
  .shop-floor__item {
    width: 100%;
    margin-right: 0;
    padding-right: 4%;
  }
  .shop-floor__item-img {
    height: 198px;
  }
  /*======================================================
  accordion
  ======================================================*/
  .accordion {
    position: relative;
    margin-bottom: 50px;
  }
  .accordion__item {
    width: 100%;
    margin: 0 0 0 auto;
  }
  .accordion__unit {
    padding: 10px 0;
  }
  .accordion__item:nth-of-type(1) .accordion__unit {
  border-top: solid 1px #DDDDDD;
  }
  .accordion__ttl {
    font-size: 16px;
    padding: 13px 50px 13px 0;
    cursor: pointer;
    position: relative;
  }
  .accordion__ttl::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    top: calc(50% - 11px);
    right: 20px;
    border-top: #000000 3px solid;
    border-left: #000000 3px solid;
    transform: rotate(-135deg);
    transition: transform .3s ease;
  }
  .accordion__ttl.active::after {
    transform: rotate(45deg);
  }
  .accordion__txt {
    font-size: 14px;
    display: none;
    padding-bottom: 30px;
  }
  .accordion__note {
    font-size: 12px;
  }
  .accordion__img {
    margin-top: 20px;
  }
  /*======================================================
  lbox
  ======================================================*/
  #lbox .lbox-img img {
    max-width: 540px;
  }
  /*======================================================
  list-news
  ======================================================*/
  .list-news-01 {
    margin-bottom:15px
  }

  .list-news-01 li .no-link .image,.list-news-01 li a .image {
      margin-right: 10px;
      width: 100px
  }

  .list-news-01 li .no-link .content .date,.list-news-01 li a .content .date {
      margin-right: 0;
      margin-bottom: 5px;
      width: auto;
      float: none;
      color: #666
  }

  .list-news-01 li .no-link .content .date .icon,.list-news-01 li a .content .date .icon {
      margin-top: 2px;
      margin-left: 10px;
      float: none;
      width: 110px;
      font-size: 65%
  }

  .list-news-01 li .no-link .content .text,.list-news-01 li a .content .text {
      overflow: auto
  }

  .list-news-01 li .no-link .image+.content .date,.list-news-01 li a .image+.content .date {
      align-items: center;
      display: flex;
      font-size: 86%;
      margin-bottom: 5px
  }

  .list-news-01 li .no-link .image+.content .date .icon,.list-news-01 li a .image+.content .date .icon {
      font-size: 86%;
      margin-left: 5px
  }

  .list-news-01.l-small li .no-link .content .date .icon,.list-news-01.l-small li a .content .date .icon {
      margin-left: 0
  }
}