/* header
   ========================================================================== */

.header-section {
  background-color: #f7f7f7;
  -webkit-backface-visibility: hidden;
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 1000;
}

#drawer-tgl {
  display: none;
}

.header-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-sub-nav {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

#searchform {
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: opacity 200ms, visibility 0 200ms;
  transition: opacity 200ms, visibility 0 200ms;
  visibility: hidden;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#search-tgl:checked ~ #searchform {
  opacity: 1;
  -webkit-transition: opacity 200ms;
  transition: opacity 200ms;
  visibility: visible;
}

.search-open {
  z-index: 200;
}

.search-close {
  pointer-events: none;
  display: none;
}

#search-tgl:checked ~ #searchform {
  opacity: 1;
  -webkit-transition: opacity 200ms;
  transition: opacity 200ms;
  visibility: visible;
}

.search-bar-inner {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.search-input-form {
  width: 100%;
  font-size: 1.2rem;
}

#search-tgl {
  display: none;
}

.search-open:hover {
  opacity: 0.5;
}

#search-tgl:checked + .search-open {
  display: none;
}

#search-tgl:checked ~ .search-close {
  position: relative;
  pointer-events: auto;
  display: inline-block;
  z-index: 100;
}

.header-nav-primary-list-link:hover {
  opacity: 0.5;
}

.header-nav-primary-list-link,
.drawer-menu-primary-list-link {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #404040;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 80px;
}

.header-nav-primary-list-link-text_en,
.drawer-menu-primary-list-link-text_en {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
.header-nav-primary-list-link-text_jp,
.drawer-menu-primary-list-link-text_jp {
  font-size: 16px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .header-section {
    /* min-width: 480px; */
  }

  .header-logo-link {
    height: 47px;
  }
  .header-logo img {
    width: 115px;
  }

  .header-nav,
  .header-nav-contact {
    display: none;
  }

  .header-nav-primary-list-link,
  .drawer-menu-primary-list-link {
    color: #ffffff;
    height: 80px;
  }

  .drawer-menu-btn {
    position: relative;
  }
  .drawer-open {
    z-index: 200;
    width: 48px;
    height: 48px;
    background: lightSeaGreen;
    transition: background 0.6s,
      transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: block;
  }

  .drawer-open::before,
  .drawer-open::after {
    content: "";
  }
  .drawer-open span,
  .drawer-open::before,
  .drawer-open::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 30%;
    width: 40%;
    border-bottom: 2px solid white;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .drawer-open::before {
    transform: translateY(-8px);
  }
  .drawer-open::after {
    transform: translateY(8px);
  }
  .drawer-close {
    z-index: 100;
    width: 48px;
    height: 48px;
    pointer-events: none;
    transition: background 0.6s;
    position: absolute;
    top: 0;
    right: 0;
  }
  .drawer-close svg {
    padding: 20px;
  }

  #drawer-menu {
    position: fixed;
    left: 0;
    top: 48px;
    z-index: 100;
    background-color: #00a89c;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity 200ms, visibility 0 200ms;
    transition: opacity 200ms, visibility 0 200ms;
    visibility: hidden;
  }

  #drawer-tgl:checked + .drawer-open {
    background-color: indianRed;
  }
  #drawer-tgl:checked + .drawer-open span {
    transform: scaleX(0);
  }
  #drawer-tgl:checked + .drawer-open::before {
    transform: rotate(45deg);
  }
  #drawer-tgl:checked + .drawer-open::after {
    transform: rotate(-45deg);
  }
  #drawer-tgl:checked ~ .drawer-close {
    pointer-events: auto;
  }
  #drawer-tgl:checked ~ .drawer-menu-primary-list {
    opacity: 1;
    -webkit-transition: opacity 200ms;
    transition: opacity 200ms;
    visibility: visible;
  }

  .accordion-content {
    display: none;
    text-align: center;
    background-color: #f7f7f7;
  }

  .accordion-toggle, .accordion-content {
    position: relative;
  }

  .accordion-toggle a:before, .accordion-toggle a:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 30px;
    width: 15px;
    height: 2px;
    margin-top: -1px;
    background-color: #ffffff;
    transform-origin: 50% 50%;
    transition: all 0.3s ease-out;
  }

  .accordion-toggle a:before {
    transform: rotate(-90deg);
    opacity: 1;
    z-index: 2;
  }

  .accordion-toggle.active-tab {
    transition: all 0.5s ease;
  }
  .accordion-toggle a.active:before {
    transform: rotate(0deg);
    background: #ffffff !important;
  }

  .accordion-toggle a.active:after {
    transform: rotate(180deg);
    background: #ffffff !important;
    opacity: 0;
  }

  .drawer-menu-secondary-list-item {
    line-height: 2.5rem;
  }

  .drawer-menu-secondary-list-link {
    color: #404040;
  }

  .search-open img {
    padding: 14px;
    vertical-align: middle;
  }

  .search-close svg {
    padding: 13px;
  }

  .header-nav-search {
    width: 20px;
    margin-left: auto;
  }

  .icon-search {
    width: 20px;
  }

  .search-bar-inner {
    height: 48px;
    max-width: 980px;
  }
}

@media screen and (min-width: 768px) {
  .header-container {
    margin: 0 auto;
  }

  .header-section,
  .footer-section {
    min-width: 1340px;
  }

  .header-section {
    min-width: 1340px;
    height: 80px;
  }

  .header-logo-link {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 70px;
    padding: 0 10px 1px;
  }

  .header-logo-link:hover {
    opacity: 0.5;
  }

  .header-logo img {
    display: block;
    width: 180px;
  }

  #header-nav-drawer-btn {
    display: none;
  }

  .header-nav-drop {
    background-color: #00a89c;
    opacity: 0;
    padding: 45px 0;
    width: 100%;
  }

  .header-container {
    height: 80px;
  }

  .header-nav-drop {
    background-color: #00a89c;
    opacity: 0;
    padding: 45px 0;
    position: absolute;
    -webkit-transition: opacity 200ms, visibility 0 200ms;
    transition: opacity 200ms, visibility 0 200ms;
    visibility: hidden;
    width: 100%;
  }

  .header-nav-container {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .header-nav-primary-list {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-around;
    -webkit-justify-content: space-around;
    -ms-flex-pack: space-around;
    justify-content: space-around;
    height: 80px;
  }

  .header-nav-primary-list-item {
    width: 320px;
    text-align: center;
    position: relative;
  }

  .header-nav-primary-list-item:hover .header-nav-drop {
    opacity: 1;
    -webkit-transition: opacity 200ms;
    transition: opacity 200ms;
    visibility: visible;
  }

  .drawer-menu-btn {
    display: none;
  }

  .header-nav-primary-list-link {
    color: #404040;
    height: 80px;
  }

  .header-nav-contact {
    width: 120px;
  }

  .header-nav-contact-link {
    font-size: 10px;
    min-width: 120px;
    background: #00a89c;
    color: #ffffff;
  }

  .header-nav-contact-link:hover {
    opacity: 0.5;
  }

  .icon-mail {
    height: 22px;
    width: 27.5px;
    margin-bottom: 5px;
  }

  .header-contact-link-text_en {
    font-size: 16px;
    font-weight: 700;
  }

  .header-contact-link-text_jp {
    font-size: 14px;
    font-weight: 400;
  }
  .header-nav-secondary-list {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header-nav-secondary-list-item {
    margin: 20px 0;
  }
  .header-nav-secondary-list-link {
    font-weight: 700;
    color: #ffffff;
  }

  .header-nav-secondary-list-link:hover {
    opacity: 0.5;
  }

  .search-open img {
    padding: 20px;
    vertical-align: middle;
  }

  .search-close svg {
    padding: 20px;
  }

  .header-nav-search {
    width: 20px;
    margin-left: auto;
  }

  .icon-search {
    width: 20px;
  }

  .search-bar-inner {
    height: 80px;
    max-width: 980px;
  }
  
}


/* footer
   ========================================================================== */

.footer-section {
  background-color: #f7f7f7;
}

.to-pagetop-bar {
  background-color: #00a89c;
  text-align: center;
  height: 79px;
  position: relative;
}
.to-pagetop-bar:hover {
  opacity: 0.5;
}
.btn-to-pagetop img {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.footer-primary-list {
  color: #00a89c;
}

.footer-primary-list-item {
  line-height: 2;
}

.footer-primary-list-title {
  font-weight: 700;
  margin: 20px 0;
}

.footer-primary-list-link {
  color: #00a89c;
}
.footer-pages {
  margin-bottom: 20px;
}
.footer-other-content {
  text-align: center;
}

.footer-sns-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-around;
  -webkit-justify-content: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around;
  margin: 20px 0;
}

.footer-copyright {
  color: #00a89c;
}

@media screen and (max-width: 767px) {
  .footer-container {
    padding: 30px;
  }
}

@media screen and (min-width: 768px) {
  .footer-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 50px;
  }

  .footer-pages {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .footer-primary-list {
    width: 240px;
  }

  .footer-other-content {
    position: relative;
    width: 240px;
  }
  .footer-sns-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-around;
    -webkit-justify-content: space-around;
    -ms-flex-pack: space-around;
    justify-content: space-around;
  }

  .footer-copyright {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}


.article__tag {
  color: #292929;
  border-bottom: 3px solid;
  width: fit-content;
  padding-right: 38px;
}

.article__tag__strategy {
  border-bottom-color: #ff799d;
}

.article__tag__research {
  border-bottom-color: #ffb95a;
}

.article__tag__advertisement {
  border-bottom-color: #9dde73;
}

.article__tag__interview {
  border-bottom-color: #6addb6;
}

.article__tag__resources {
  border-bottom-color: #73b5e0;
}

.article__tag__trend {
  border-bottom-color: #ac8ae3;
}

.breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.search-result-header {
  background-color: #F7F7F7;
}


.article-side-bar-article-list-title {
  background-color: #00A89C;
  color: #ffffff;
  text-align: center;
  padding: 18px 0;
  margin-bottom: 30px;
}

.article-side-bar-article-list__item {
  margin: 10px 0;
}

.article-side-bar-article-list__item img, .article-side-bar-recommend-article-list .highlight-list__item img{
  width: 300px;
  height: 200px;
  object-fit: cover;
}

.pagination {
  text-align: center;
}

.page-numbers, .post-page-numbers {
  background: #00A89C 0% 0% no-repeat padding-box;
  border: 1px solid #00A89C;
  border-radius: 26px;
  padding: 10px 13px;
  color:#ffffff;  
}

.current {
  background: #FFFFFF;
  border: 3px solid #00A89C;
  border-radius: 26px;
  padding: 10px 13px;
  color:#292929
}


.side-cta img {
  margin: 25px auto;
}


@media screen and (max-width: 767px) {
  /*l-side*/
  .l-side {
    width: 100%;
    padding: 30px 0 5px;
    /* text-align: center; */
  }

  .article-side-bar-article-list-title {
    padding: 12px 0;
  }

  .article-side-bar-latest-article-list, .article-side-bar-recommend-article-list, .article-list {
    padding: 12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .article-side-bar-article-list__item {
    flex-basis: 49%;
    margin-bottom: 15px;
  }


  .article-side-bar-article-list__item img, .article-side-bar-recommend-article-list .highlight-list__item img{
    width: 160px;
    height: 100px;
    object-fit: cover;    
  }

  .to-pagetop-bar {
    height: 50px;
  }

  .breadcrumb {
    font-size: 10px;
  }

  .side-cta {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {

  /*l-side*/
  .l-side {
    width: 300px;
    margin-left: 80px;

  }

  .ad-sample-img {
    width: 300px;
  }

  .article-side-bar-recommend-article-list .highlight-list__inner {
    width: 100%;
  }

}

.cta-carousel-container {
  background-color: #CFD3D5;
}

.cta-carousel-container img{
  height: 300px;
}

.cta-carousel-container .swiper-slide {
  text-align: center;
}

.cta-carousel-container span.swiper-pagination-bullet{
  background-color: initial;
  border: 1px solid #ffffff;
  opacity: 1;
}

.cta-carousel-container span.swiper-pagination-bullet-active{
  background-color: #ffffff;
}

.cta-carousel-container .swipe-button-next, .cta-carousel-container .swipe-button-prev{
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-carousel-container .swipe-button-prev {
  left: 1%;
  right: auto;
}
.cta-carousel-container .swipe-button-next{
  left: auto;
  right: 1%;
}

@media screen and (max-width: 767px) {
  .cta-carousel-container img{
    height: 150px;
    max-width: 100%;
  }
  .cta-carousel-container .swipe-button-prev svg, .cta-carousel-container .swipe-button-next svg {
    width: 13px;
    height: 21px;  
  }
  .cta-carousel-container .swipe-button-next, .cta-carousel-container .swipe-button-prev{
    width: 13px;
    height: 22px;
    margin-top: -11px;
    -moz-background-size: 13px 22px;
    -webkit-background-size: 13px 22px;
    background-size: 13px 22px;
  }
  

}
@media screen and (min-width: 768px) {
  .cta-carousel-container img{
    height: 300px;
  } 
  .cta-carousel-container .swipe-button-prev svg, .cta-carousel-container .swipe-button-next svg {
    width: 26px;
    height: 42px;  
  }
}
