/* TABLE OF CONTENT
    1. [header]
    2. [footer]
    3. [page home] 
*/
/******************************************************/
/* ly_header */
/******************************************************/
.ly_header-contentmenu-mark {
  width: 22px;
  height: 14px;
  position: relative;
}

.ly_header-contentmenu-mark span {
  transition: all 0.5s;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
}

.ly_header-contentmenu-mark span.bar2 {
  top: 50%;
  transform: translateY(-50%);
}

.ly_header-contentmenu-mark span.bar1 {
  top: 0;
  transform: rotate(0deg);
  margin-top: 0;
}

.ly_header-contentmenu-mark span.bar3 {
  bottom: 0;
  transform: rotate(0deg);
}

.ly_header.toggle__parent .toggle__btn .ly_header-contentmenu-txt {
  text-decoration: underline;
}

.ly_header.toggle__parent.active .ly_header-contentmenu-mark span.bar2 {
  opacity: 0;
}

.ly_header.toggle__parent.active .ly_header-contentmenu-mark span.bar1 {
  transform: rotate(45deg);
  top: 6px;
}

.ly_header.toggle__parent.active .ly_header-contentmenu-mark span.bar3 {
  transform: rotate(-45deg);
  bottom: 6px;
}

.ly_header.toggle__parent .toggle__content {
  display: none;
}

.bg-gray {
  background: #ebebeb;
}

br {
  opacity: 0;
}

.ly_contents {
  position: relative;
}

@media (max-width: 640px) {
  .ly_contents {
    padding-top: 0;
  }
}

.head_content {
  position: relative;
}

@media (max-width: 640px) {
  .head_content {
    padding-top: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }
}

.head_content > .toggle__btn {
  background: #dadada;
  padding: 8px;
  z-index: 9;
  position: relative;
}

@media (min-width: 641px) {
  .head_content > .toggle__btn {
    display: none;
  }
}

@media (min-width: 641px) {
  .head_content > .toggle__content {
    display: block !important;
  }
}

.head_content.active .ly_header-contentmenu-mark span.bar2 {
  opacity: 0;
}

.head_content.active .ly_header-contentmenu-mark span.bar1 {
  transform: rotate(45deg);
  top: 6px;
}

.head_content.active .ly_header-contentmenu-mark span.bar3 {
  transform: rotate(-45deg);
  bottom: 6px;
}

body.fixedTop .head_content {
  display: block;
}

@media (max-width: 640px) {
  .pc-none {
    padding-top: 25px;
  }
}

@media (min-width: 641px) {
  .pc-none {
    display: none;
  }
}

@media (max-width: 640px) {
  .title_pc {
    display: none;
  }
}

.title_sp {
  background: #f6f6f6;
  border-bottom: 1px solid #fff;
  padding: 7px 15px;
  background-image: url(../images/icon_down.png);
  background-position: 93.5% 50%;
  background-repeat: no-repeat;
}

@media (min-width: 641px) {
  .title_sp {
    display: none;
  }
}

.toggle__parent.active > .title_sp {
  background-image: url(../images/icon_down2.png);
}

.ly_title .ly_contents-title {
  position: relative;
}

@media (max-width: 640px) {
  .ly_title .ly_contents-title {
    margin: 0;
    padding: 10px 15px;
    text-align: center;
  }
}

@media (min-width: 641px) {
  .ly_title .ly_contents-title {
    margin-bottom: 1.6rem;
  }
}

.ly_title .ly_contents-title .ly_btn-toggle {
  position: absolute;
  line-height: 55px;
  top: 0;
  right: 0;
  width: 225px;
  border: 1px solid #969696;
  text-align: center;
  color: #656565;
  cursor: pointer;
  transition: all 0.3s;
}

@media (max-width: 640px) {
  .ly_title .ly_contents-title .ly_btn-toggle {
    display: none;
  }
}

.ly_title .ly_contents-title .ly_btn-toggle:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 15px;
  width: 9px;
  transform: translateY(-50%);
  background-image: url(../images/icon_down.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  height: 5px;
  transform: rotate(0deg) translateY(-50%);
  transition: all 0.35s;
}

.ly_title .ly_contents-title .ly_btn-toggle:hover {
  background-color: #bfbfbf;
  color: #000;
}

@media (max-width: 640px) {
  .ly_title .ly_main > ul {
    padding: 5px 0;
    margin: 0 -5px;
  }
}

@media (min-width: 641px) {
  .ly_title .ly_main > ul {
    margin: 0 -10px;
  }
}

.ly_title .ly_main > ul > li {
  box-sizing: border-box;
  width: calc(50% - 10px);
  margin: 5px;
  border: 1px solid #d5d5d5;
  background-color: #f6f6f6;
  color: #5d5d5d;
  transition: all 0.3s;
}

@media (min-width: 641px) {
  .ly_title .ly_main > ul > li {
    width: calc((100% / 6) - 20px);
    margin: 10px 9.5px;
    border: 1px solid #d5d5d5;
    background-color: #fff;
  }
}

.ly_title .ly_main > ul > li.on, .ly_title .ly_main > ul > li.on:hover {
  background: #414349;
  color: #fff;
}

.ly_title .ly_main > ul > li:hover {
  background: #bfbfbf;
}

.ly_title .ly_main > ul > li > a {
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: bold;
  transition-property: background-color, color;
  line-height: 1.4;
  box-sizing: border-box;
  color: inherit;
  text-align: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .ly_title .ly_main > ul > li > a {
    padding: 10px 5px;
    font-size: 70%;
    height: 100%;
  }
}

@media (min-width: 641px) {
  .ly_title .ly_main > ul > li > a {
    height: 76px;
    padding: 0 10px;
  }
}

.ly_title .ly_main > ul > li > a span {
  display: inline-block;
}

@media (max-width: 640px) {
  .ly_title .ly_main > ul > li > a span {
    text-align: left;
  }
}

@media (min-width: 641px) {
  .ly_title .ly_main > ul > li > a span {
    font-size: 0.85rem;
  }
}

.ly_title .toggle__content {
  display: none;
}

.ly_title.active .toggle__btn:after {
  transform: rotate(180deg) translateY(50%);
}

.ly_title.active .ly_header-contentmenu-mark span.bar2 {
  opacity: 0;
}

.ly_title.active .ly_header-contentmenu-mark span.bar1 {
  transform: rotate(45deg);
  top: 6px;
}

.ly_title.active .ly_header-contentmenu-mark span.bar3 {
  transform: rotate(-45deg);
  bottom: 6px;
}

.ly_title_year {
  font-family: 'SST W20 Roman';
}

@media (max-width: 640px) {
  .ly_title_year {
    margin-top: 0;
    background: #ebebeb;
  }
}

@media (min-width: 641px) {
  .ly_title_year .toggle__content {
    display: block !important;
  }
}

@media (max-width: 640px) {
  .ly_title_year .text-sub {
    display: none;
  }
}

.ly_title_year .list_year {
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .ly_title_year .list_year {
    margin-top: 0;
    padding: 7px 0;
    margin: 0 -5px;
  }
}

@media (min-width: 641px) {
  .ly_title_year .list_year {
    margin: 0 -10px;
  }
}

.ly_title_year .list_year li {
  box-sizing: border-box;
  font-size: 1rem;
  border: 3px solid #d5d5d5;
  position: relative;
  width: calc(50% - 10px);
  box-sizing: border-box;
  background: #fff;
  transition: all 0.3s;
}

.ly_title_year .list_year li:hover {
  background: #bfbfbf;
}

@media (max-width: 640px) {
  .ly_title_year .list_year li {
    margin: 7px 5px;
  }
}

@media (min-width: 641px) {
  .ly_title_year .list_year li {
    width: calc((100% / 6) - 20px);
    border: 4px solid #d5d5d5;
    padding: 10px 10px;
    margin: 10px 9.5px;
  }
}

.ly_title_year .list_year li:before {
  position: absolute;
  content: "";
  top: 50%;
  width: 9px;
  right: 10px;
  height: 11px;
  transform: translateY(-50%);
  background-image: url(../images/ico-anchor.png);
  background-size: 100%;
}

.ly_title_year .list_year li a {
  display: block;
  color: #5d5d5d;
  font-weight: bold;
}

@media (max-width: 640px) {
  .ly_title_year .list_year li a {
    padding: 5px 15px;
    background: #fff;
  }
}

.ly_title_year .list_year li a:hover, .ly_title_year .list_year li a:focus {
  text-decoration: none;
}

.ly_title_year .list_year li a:after {
  content: "-";
}

@media (max-width: 640px) {
  .text_main {
    font-size: 1.8rem;
    font-weight: normal;
  }
}

.text-sub {
  font-size: 1.3rem;
  padding-bottom: 0;
}

@media (max-width: 640px) {
  .text-sub {
    font-size: 1.3rem;
    padding: 0 20px;
  }
}

.historyList {
  position: relative;
}

@media (max-width: 640px) {
  .historyList {
    padding-left: 2.1rem;
    margin-top: 46px;
  }
}

@media (min-width: 641px) {
  .historyList {
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
    width: 950px;
    padding: 10px 0;
  }
}

.historyList .title_year {
  font-weight: normal;
  position: relative;
  font-size: 1.8rem;
  line-height: 3rem;
}

@media (min-width: 641px) {
  .historyList .title_year {
    font-size: 3.8rem;
    line-height: 4rem;
  }
}

.historyList .title_year:before {
  position: absolute;
  content: "";
  top: 58%;
  height: 1px;
  background: #000;
  width: 1rem;
}

@media (max-width: 640px) {
  .historyList .title_year:before {
    transform: translateX(-1.2rem);
    margin-left: 3px;
  }
}

@media (min-width: 641px) {
  .historyList .title_year:before {
    width: 100px;
  }
}

.historyList:before {
  content: "";
  background-color: #656565;
  display: block;
  height: 100%;
  width: 1px;
  position: absolute;
  left: 1rem;
  top: 0px;
}

@media (min-width: 641px) {
  .historyList:before {
    left: 50%;
  }
}

.historyList li {
  width: 100%;
}

@media (min-width: 641px) {
  .historyList li {
    margin-top: 130px;
    position: relative;
    width: 375px;
    margin-bottom: 50px;
  }
}

@media (min-width: 641px) {
  .historyList li:nth-child(even) .title_year:before {
    right: 100%;
  }
}

.historyList li:nth-child(odd) {
  margin-top: 0;
}

@media (min-width: 641px) {
  .historyList li:nth-child(odd) .title_year {
    text-align: right;
  }
}

@media (min-width: 641px) {
  .historyList li:nth-child(odd) .title_year:before {
    left: 100%;
  }
}

.historyList li .item + .item {
  padding-top: 30px;
}

@media (max-width: 640px) {
  .historyList li + li {
    margin-top: 2rem;
  }
}

.historyList li dl {
  margin-top: 0.8rem;
}

@media (min-width: 641px) {
  .historyList li dl {
    margin-top: 1.8rem;
  }
}

.historyList li dl dt {
  font-size: 1.2rem;
  line-height: 0.7;
  padding-bottom: 10px;
  border-bottom: 2px solid #4c4948;
}

@media (max-width: 640px) {
  .historyList li dl dt {
    font-weight: normal;
    line-height: 1.5;
  }
}

@media (min-width: 641px) {
  .historyList li dl dt {
    font-size: 156.2%;
    line-height: 1.2;
  }
}

.historyList li dl dd {
  line-height: 1.5;
  margin-top: 15px;
  letter-spacing: -0.5px;
}

.historyList li dl dd figure {
  margin: 0;
  line-height: 0;
}

.historyList li dl dd figure img {
  position: relative;
  margin-top: 30px;
}

@media (max-width: 640px) {
  .historyList li dl dd figure img {
    font-size: 0.8rem;
  }
}

.historyList li dl dd span span {
  font-size: 13px;
  display: inline-block;
  position: relative;
  top: -7px;
}

.historyList li .btn-popup {
  width: 210px;
  border: 1px solid #969696;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.5rem;
  cursor: pointer;
  padding: 6px;
}

@media (min-width: 641px) {
  .historyList li .btn-popup {
    padding: 0.75rem 0;
    width: 225px;
  }
}

.historyList li .btn-popup:hover {
  background-color: #efefef;
  outline: solid 1px #969696;
  color: #5d5d5d;
}

.modal_main {
  background: #fff;
  top: 30px;
  padding: 4rem 1rem 2rem;
}

@media (min-width: 641px) {
  .modal_main {
    padding: 50px 45px;
    width: 950px;
    margin-left: auto;
    box-sizing: border-box;
    margin-right: auto;
  }
}

.modal_main .image_main {
  margin: auto;
  margin-right: auto;
  width: 100%;
  max-width: 280px;
}

@media (min-width: 641px) {
  .modal_main .image_main {
    width: 330px;
  }
}

.modal_main .title_year {
  text-align: left !important;
  margin-top: 0.8rem;
}

@media (min-width: 641px) {
  .modal_main .title_year {
    transform: translateY(-50%);
  }
}

.modal_main .title_year:before {
  display: none;
}

.modal_main .info_detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 641px) {
  .modal_main .info_detail {
    margin-top: -1rem !important;
  }
}

.modal_main .info_detail h4 {
  line-height: 1.2;
  padding-bottom: 10px;
  border-bottom: 2px solid #4c4948;
  width: 100%;
  font-size: 1.2rem;
}

@media (max-width: 640px) {
  .modal_main .info_detail h4 {
    font-weight: normal;
  }
}

.modal_main .info_detail .text {
  margin-top: 1rem;
}

@media (max-width: 640px) {
  .modal_main .info_detail .text {
    font-size: 0.8rem;
    line-height: 1.3rem;
  }
}

@media (min-width: 641px) {
  .modal_main .info_detail .text {
    width: calc(100% - 270px - 40px);
  }
}

.modal_main .info_detail .image_sub {
  display: inline-block;
  max-width: 270px;
  margin-left: 30px;
}

.modal_main .info_detail .image_sub img {
  width: 100%;
  margin-top: 1.5rem;
}

.modal_main .info_detail .image_sub img[src="common/images/product/"] {
  display: none;
  margin-left: 0;
}

@media (max-width: 640px) {
  .modal_main .info_detail .image_sub {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.modal_main .info_detail .image_sub span {
  font-size: 0.8rem;
  margin-top: 10px;
  display: block;
  margin-left: 30px;
}

.modal_main .info_detail .image_sub span:empty {
  display: none;
}

body.fix {
  overflow: hidden;
}

body.fix .head_content:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.7;
  z-index: -1;
}
