@charset "UTF-8";
/*------------------------------------------------------------


  common.css


------------------------------------------------------------*/
/*============================================================
  btn-link
============================================================*/
.btn-link {
  display: inline-block;
  width: auto;
  border: 1px solid;
  border-radius: 10rem;
  padding: 1.4em 2em 1.4em 2.4em;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.btn-link.cl-blk {
  border-color: rgba(0,0,0,0.8);
}

.btn-link.cl-wht {
  border-color: rgba(255,255,255,0.5);
}

.btn-link span {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.btn-link .icon {
  width: 1.1rem;
  fill: none;
  stroke-width: 1px;
  margin-left: 1rem;
  vertical-align: middle;
  transform: translateY(-20%);
}

.btn-link.cl-blk .icon {
  stroke: #000;
}

.btn-link.cl-wht .icon {
  stroke: #fff;
}

@media (hover: hover) {
  .btn-link::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10rem;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    transform: translateX(-100%);
  }

  .btn-link.cl-blk::before {
    background-color: #000;
  }

  .btn-link.cl-wht::before {
    background-color: #fff;
  }

  .btn-link.cl-blk:hover {
    color: #fff;
  }

  .btn-link.cl-wht:hover {
    color: #000;
  }

  .btn-link.cl-blk:hover .icon {
    stroke: #fff;
  }

  .btn-link.cl-wht:hover .icon {
    stroke: #000;
  }

  .btn-link:hover::before {
    transform: translateX(0);
  }
}


/*============================================================
  btn-close
============================================================*/
.btn-close {
  display: block;
  padding-right: 2.8rem;
  position: relative;
}

.btn-close::before,
.btn-close::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background-color: #000;
  margin: auto 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.btn-close::before {
  transform: rotate(45deg);
}

.btn-close::after {
  transform: rotate(-45deg);
}

@media (hover: hover) {
  .btn-close:hover .text-btn {
    text-decoration: underline;
    text-decoration-thickness: 0.8px;
    text-underline-offset: 0.2em;
    text-decoration-color: rgba(0,0,0,0.4);
  }
}


/*============================================================
  btn-play
============================================================*/
.btn-play {
  display: inline-block;
  width: 16rem;
  height: 16rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.btn-play.cl-blk {
  border-color: #000;
}

.btn-play.cl-wht {
  border-color: #fff;
}

.btn-play .icon {
  height: 20%;
  margin: auto;
  position: absolute;
  left: 10%;
  right: 0;
  top: 0;
  bottom: 0;
}

.btn-play.cl-blk .icon {
  fill: #000;
}

.btn-play.cl-wht .icon {
  fill: #fff;
}

@media (hover: hover) {
  .btn-play::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: scale(0);
  }

  .btn-play.cl-blk::before {
    background-color: #000;
  }

  .btn-play.cl-wht::before {
    background-color: #fff;
  }

  .btn-play:hover {
    border-color: transparent;
  }

  .btn-play:hover::before {
    transform: scale(1);
  }

  .btn-play.cl-blk:hover .icon {
    fill: #fff;
  }

  .btn-play.cl-wht:hover .icon {
    fill: #000;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  .btn-play {
    width: 8rem;
    height: 8rem;
  }
}


/*============================================================
  text
============================================================*/
.text-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 3rem;
  border: 0.8px solid;
  padding: 0 0.8em;
  vertical-align: middle;
}

.text-tag.cl-blk {
  border-color: rgba(0,0,0,0.2);
}

.text-tag.cl-wht {
  border-color: rgba(255,255,255,0.2);
}

.text-notes {
  text-indent: -0.8em;
  padding-left: 1em;
  position: relative;
}

.text-notes::before {
  content:"※";
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-right: 0.2em;
}

@media (max-width: 768px) and (orientation: portrait) {
  .text-tag {
    height: 2.8rem;
    padding: 0 0.8em;
  }
}


/*============================================================
  list style
============================================================*/
.list-disc {
  padding-left: 1.4em;
}

.list-disc > li {
  list-style-type: disc;
  list-style-position: outside;
}

.list-disc > li + li {
  margin-top: 1em;
}

.list-notes {
  padding-left: 1em;
}

.list-notes > li {
  list-style-position: outside;
  text-indent: -1em;
}

.list-notes > li::before {
  content:"※";
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.list-notes > li + li {
  margin-top: 0.4em;
}


/*============================================================
  heading-section
============================================================*/
.heading-section a {
  display: inline-block;
}

.heading-section a strong {
  display: inline-block;
  white-space: nowrap;
  padding-bottom: 0.4rem;
  position: relative;
}

.heading-section a strong::before,
.heading-section a strong::after {
  content: "";
  display: block;
  border-bottom: 0.8px solid;
  position: absolute;
  left: 0;
  bottom: 0;
}

.heading-section a strong::before {
  width: 100%;
}

.heading-section a strong::after {
  width: 0;
}

.heading-section.cl-blk a strong::before {
  border-color: rgba(0,0,0,0.2);
}

.heading-section.cl-blk a strong::after {
  border-color: #000;
}

.heading-section.cl-wht a strong::before {
  border-color: rgba(255,255,255,0.4);
}

.heading-section.cl-wht a strong::after {
  border-color: #fff;
}

.heading-section img.text {
  width: auto;
  height: 3.6rem;
  vertical-align: baseline;
}

.heading-section .text-keyword {
  vertical-align: baseline;
  margin-left: 1rem;
}

@media (hover: hover) {
  .heading-section a:hover strong::after {
    width: 100%;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  .heading-section a strong {
    padding-bottom: 0.16rem;
  }

  .heading-section img.text {
    height: 2.8rem;
  }

  .heading-section .text-keyword {
    margin-left: 0.8rem;
  }
}


/*============================================================
  module-slide
============================================================*/
.module-slide {
  margin-bottom: 1.6rem;
  position: relative;
}

.module-slide .group-slide-body {
  position: relative;
}

.module-slide .group-slide-nav {}

.module-slide .list-slide > li {
  display: block;
  overflow: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.module-slide .list-slide > li:first-child {
  position: relative;
}

.module-slide .list-slide > li.current,
.module-slide .list-slide > li.in,
.module-slide .list-slide > li.out {
  opacity: 1;
}

.module-slide .list-slide > li.current {
  z-index: 1;
}

/*  indicator
--------------------------------------------------*/
.module-slide .group-slide-indicator {
  font-size: 0;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.6rem;
}

.module-slide .group-slide-indicator button {
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #000;
  border-radius: 0.3rem;
  vertical-align: middle;
  margin: 0 0.4rem;
  position: relative;
  opacity: 0.2;
  cursor: pointer;
}

.module-slide .group-slide-indicator button.current {
  width: 1.8rem;
  opacity: 1;
}

/*  button
--------------------------------------------------*/
.module-slide .btn-prev,
.module-slide .btn-next {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  text-align: center;
  margin: auto 0;
  position: absolute;
  top: 0;
  bottom: 0;
  cursor: pointer;
}

.module-slide .btn-prev {
  left: -6rem;
}

.module-slide .btn-next {
  right: -6rem;
}

.module-slide .btn-prev .icon,
.module-slide .btn-next .icon {
  height: 0.7rem;
  fill: none;
  stroke: #000;
}

.module-slide .btn-prev .icon {
  transform: scaleX(-1);
}

@media (max-width: 768px) and (orientation: portrait) {
  .module-slide .btn-prev,
  .module-slide .btn-next {
    width: 1.8rem;
    height: 0.6rem;
    line-height: 0;
    margin: 0;
    top: auto;
    bottom: -1.6rem;
  }

  .module-slide .btn-prev {
    left: 0;
  }

  .module-slide .btn-next {
    right: 0;
  }

  .module-slide .btn-prev .icon,
  .module-slide .btn-next .icon {
    height: 0.6rem;
  }
}


/*============================================================
  module-popup
============================================================*/
.module-popup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(160,160,160,0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  position: fixed;
  opacity: 0;
  left: -100%;
  top: 0;
  z-index: 20;
}

.module-popup.in {
  opacity: 1;
  left: 0;
}

.module-popup .btn-close {
  position: absolute;
  right: 1.6rem;
  top: 1.6rem;
  z-index: 1;
}

@media (max-width: 768px) and (orientation: portrait) {
  .module-popup .btn-close {
    right: 1rem;
    top: 1rem;
    z-index: 1;
  }
}


/*============================================================
  header
============================================================*/
#header {
  width: 100%;
  height: 6rem;
  background-color: rgba(255,255,255,0);
  padding: 0 4rem;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  opacity: 0;
  transform: translateY(-100%);
}

#header.active {
  opacity: 1;
  transform: translateY(0);
}

#header .nav-header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

#header .title-site {
  display: inline-block;
}

#header .title-site .logo {
  width: auto;
  height: 1.2rem;
  fill: #000;
}

#header .list-menu {
  display: inline-block;
  font-size: 0;
  letter-spacing: 0;
}

#header .list-menu > li {
  display: inline;
}

#header .list-menu > li + li {
  margin-left: 3.2rem;
}

#header .list-menu > li > a {
  display: inline-block;
  color: #000;
  font-size: 1.6rem;
  white-space: nowrap;
}

#header .link-contact {
  display: inline-block;
  color: #000;
  font-size: 1.6rem;
  white-space: nowrap;
}

#header .link-contact .icon {
  width: 2rem;
  height: auto;
  fill: none;
  stroke: #000;
  stroke-miterlimit: 10;
  vertical-align: middle;
  margin-left: 0.8rem;
  transform: translateY(-12%);
}

#header .btn-menu {
  display: none;
}

@media (hover: hover) {
  #header:hover {
    background-color: rgba(255,255,255,0.96);
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  #header {
    padding: 0 2rem;
    opacity: 1;
    transform: none;
  }

  #header.active .title-site .logo {
    fill: #fff;
  }

  #header .list-menu {
    display: none;
    width: 100%;
    background-color: rgba(0,0,0,0.98);
    padding: 6rem 0 1.6rem;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
  }

  #header .list-menu > li {
    display: block;
    text-align: center;
    padding: 1.6rem;
  }

  #header .list-menu > li + li {
    margin-left: 0;
  }

  #header .list-menu > li > a {
    color: #fff;
  }

  #header .link-contact {
    position: absolute;
    right: 6.4rem;
  }

  #header .link-contact .icon {
    width: 2.4rem;
    margin-left: 0;
    transform: none;
  }

  #header.active .link-contact .icon {
    stroke: #fff;
  }

  #header .btn-menu {
    display: block;
    width: 2.4rem;
    height: 6rem;
  }

  #header .btn-menu::before,
  #header .btn-menu::after {
    content: "";
    display: block;
    width: 2.4rem;
    height: 1px;
    background-color: #000;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }

  #header .btn-menu::before {
    transform: translateY(-0.24rem);
  }

  #header .btn-menu::after {
    transform: translateY(0.24rem);
  }

  #header .btn-menu.active::before {
    background-color: #fff;
    transform: rotate(45deg);
  }

  #header .btn-menu.active::after {
    background-color: #fff;
    transform: rotate(-45deg);
  }
}


/*============================================================
  footer
============================================================*/
#footer {
  width: 100%;
  background-color: #fff;
  padding: 4rem 8rem;
}

#footer .btn-contact {
  vertical-align: middle;
}

#footer .text-copyright {
  margin-left: 3.2rem;
  vertical-align: middle;
}

@media (max-width: 768px) and (orientation: portrait) {
  #footer {
    width: 100%;
    background-color: #fff;
    padding: 4rem 2rem 2rem;
  }

  #footer .text-copyright {
    margin-left: 1.6rem;
  }
}
