
@charset "utf-8";
@import url(common/css/ress.css);
@import url(common/css/default.css);
main .inner {
  margin: 20px auto 0 auto;
}
html {
  height: 100%;
}
body {
  height: auto;
  width: 100vw;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
main#main {
  flex: inherit;
  padding-bottom: 0;
}
header,
main,
footer {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  position: relative;
}
header,
footer {
  width: 100vw;
  height: auto;
}
footer {
  color: #FFFFFF;
  width: 100%;
}
.container {
  margin: 0 20px;
  position: relative;
  max-width: 1240px;
  height: auto;
}
@media screen and (max-width: 767.99999999px) {
  .container {
    width: max-width: 100%;
    height: auto;
  }
}
@media screen and (min-width : 768px) and (max-width : 1300px), print  {
  main {
    background-size: auto;
    padding-bottom: 0;
  }
  .container {
    margin: 0 20px;
  }
}
@media screen and (min-width: 1301px) {
  main {
    background-size: contain;
    padding-bottom: 0;
  }
  .container {
    margin: 0 auto;
  }
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.row,
.sp-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
.flex-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.flex-align-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.flex-align-stretch {
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}
.flex-align-start {
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.flex-align-end {
  -ms-flex-line-pack: end;
  align-content: flex-end;
}
.flex-align-content-center {
  -ms-flex-line-pack: center;
  align-content: center;
}
.flex-align-content-between {
  -ms-flex-line-pack: justify;
  align-content: space-between;
}
.flex-align-content-spacearound {
  -ms-flex-line-pack: distribute;
  align-content: space-around;
}
.flex-grow1 {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.flex1 {
  flex: 1;
}
.grid3n {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
@media screen and (min-width : 768px) and (max-width : 1300px), print  {
    .grid3n {
        gap: 20px;
    }
}
@media screen and (max-width : 767px) {
    .grid3n {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
dl.table {
  width: 100%;
}
dl.table dt {
  display: table;
  font-weight: 700;
  padding: 10px 0;
  margin-bottom: 20px;
  white-space: normal;
}
dl.table dd {
  border-left: 1px solid #F15A24;
  display: table;
  padding: 10px 0 10px 20px;
  margin-bottom: 20px;
  white-space: normal;
}
@media screen and (max-width : 767px) {
  .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .sp-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .row-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex1 {
    flex: inherit !important;
  }
  dl.table dt {
    padding: 10px 0;
    margin-bottom: 0;
}
  dl.table dd {
    border-left: none;
    border-top: 1px solid #F15A24;
    padding: 10px 0;
    margin-bottom: 5px;
  }
}
.float_left,
.float_right {
  float: none;
  margin-bottom: 10px;
  display: block;
}
.margin-center {
  margin: 0 auto;
}
@media screen and (min-width : 768px) and (max-width : 1300px), print  {
  .float_left {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
    width: auto;
    height: auto;
  }
  .float_right {
    float: right;
    margin-left: 10px;
    margin-bottom: 10px;
    width: auto;
    height: auto;
  }
}
@media screen and (min-width: 1301px) {
  .float_left {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .float_right {
    float: right;
    margin-left: 10px;
    margin-bottom: 10px;
  }
}
.fadein_box {
    opacity: 0;
    transition: 512ms
}
.fadein_box.fadein,
.fadein_box.fadein-bottom,
.fadein_box.is-visible,
.fadein_box.fadeup-bottom.is-visible,
.fadein_box.fadein-zoom.is-visible {
    opacity: 1;
}
.fadein_box.fadein.is-visible {
  animation-name: fadein;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadein_box.fadeup-bottom.is-visible {
  animation-name: fadeup;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
article.fadein_box.fadeX.is-visible {
  animation-name: fadeleft;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes fadeleft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
article.fadein_box.fadein-zoom.is-visible {
  animation-name: fadezoom;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes fadezoom {
  0% {
    opacity: 0;
    transform: scale(0%);
  }
  100% {
    opacity: 1;
    transform: scale(100%);
  }
}
article.fadein_box.fadeX:nth-of-type(2n).is-visible {
  animation-name: faderight;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes faderight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
strong {
  font-weight: 700;
}
.text-blur {
  text-shadow: 0 0 8px #000000;
}
.box-shadow {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.50);
}
.radius-shadow {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.50);
  border-radius: 100%;
}
.border-blue {
  border: 20px solid var(--key-color);
}
.blink {
  animation: 2s linear infinite blink_effect;
}
@keyframes blink_effect {
      0% {
          opacity: 0;
      }
      50% {
          opacity: 1;
      }
      100% {
          opacity: 0;
      }
}
.card {
  max-width: 100%;
  height: auto;
  margin-right: 40px;
  margin-bottom: 40px;
  padding: 10px;
  background-color: #FAFAFA;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.25);
}
.card:nth-child(3n) {
  margin-right: 0;
}
.card img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  aspect-ratio: 387 / 200 !important;
}
.card a {
  position: relative;
}
.card a.media::before,
.card a.health::before,
.card a.news::before {
  position: absolute;
  left: 0px;
  z-index: 2;
  display: block;
  width: 10em;
  height: 1.5em;
  font-size: 1rem;
  line-hight: 1.5em;
  background-color: var(--navy);
  color: var(--white);
  border-radius: 10px 0 10px 0;
  text-align: center;
  text-transform: uppercase;
}
.card a.media::before {
  content: 'media';
  background-color: var(--navy);
}
.card a.health::before {
  content: 'health';
  background-color: var(--green);
}
.card a.news::before {
  content: 'news';
  background-color: var(--brown);
}
.card a p.post-date,
.card a p.post-title {
  font-size: 1rem;
  line-height: 1.2em;
}
.card a:hover p.post-date,
.card a:hover p.post-title {
  opacity: 0.5;
}
.card a p.post-date {
  color: var(--glay);
  margin-top: 0.5em;
}
.card a p.post-title {
  color: var(--text);
  font-weight: 500;
}
main {
  position: relative;
}
main p,
main table {
}
main p.read,
main table {
  font-size: 1.33rem;
}
@media screen and (max-width: 767.99999999px) {
  .card {
    margin-bottom: 20px;
  }
  .card p,
  .card a {
    font-size: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .card:not(:has(p)) {
    display: none;
    visibility: hidden;
  }
  .card:not(:has(img)) {
    text-align: right;
  }
}
@media screen and (min-width : 768px) and (max-width : 1300px), print  {
  .card {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .card p {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1301px) {
}
.white {
  background-color: var(--white) !important;
}
.ci-color {
  background-color: var(--ci-color) !important;
}
.black {
  background-color: var(--text) !important;
}
.navy {
  background-color: var(--navy) !important;
}
.brown {
  background-color: var(--brown) !important;
}
.green {
  background-color: var(--green) !important;
}
.glay {
  background-color: var(--glay) !important;
}
.light-glay {
  background-color: var(--light-glay) !important;
}
.border-white {
  border: 1px solid var(--white) !important;
}
.border-blue {
  border: 1px solid var(--ci-color) !important;
}
.border-black {
  border: 1px solid var(--text) !important;
}
.border-glay {
  border: 1px solid var(--glay) !important;
}
.border-light-glay {
  border: 1px solid var(--light-glay) !important;
}
.border-navy {
  border: 1px solid var(--navy) !important;
}
.border-brown {
  border: 1px solid var(--brown) !important;
}
.border-green {
  border: 1px solid var(--green) !important;
}
.text-blue {
  color: var(--ci-color) !important;
}
.text-white {
  color: var(--white) !important;
}
.text-black {
  color: var(--text) !important;
}
.text-glay {
  color: var(--glay) !important;
}
.text-light-glay {
  color: var(--light-glay) !important;
}
.text-navy {
  color: var(--navy) !important;
}
.text-brown {
  color: var(--brown) !important;
}
.text-green {
  color: var(--green) !important;
}
.text-center {
  text-align: center;
}
.margin-center {
  margin: 0 auto;
}
.bg-arrow {
  background: url("common/images/arrow_black.svg") calc(100% - 20px) center no-repeat;
  background-size: 1em;
  padding: 1.5em !important;
}
a.button {
  background-color: var(--white);
  border: 1px solid var(--text);
  color: var(--text);
  font-size: 1em;
  line-height: 1em;
  padding: 1rem;
  text-decoration: none;
}
a.button.contact,
#submit_button.button {
  background-image: url("common/images/icon_btn_cta.svg"),
                    linear-gradient(99deg, #633CD1 0%, #4488FF 100%);
  background-position: 20px center, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-size: 1.5em, auto;
  box-shadow: 0 4px 8px 3px rgba(0,0,0,0.25);
  border: inherit;
  border-radius: 10px;
  color: var(--white);
  font-size: 1.4rem !important;
  font-weight: 700;
  margin-bottom: 1rem;
  padding: 1rem;
}
.btn_more {
  margin-top: 1rem;
}
.radius {
  border-radius: 10px;
}
.radius50 {
  border-radius: 50px;
}
.radius100 {
  border-radius: 100%;
}
.button:active,
.button-large:active {
  transform: translateY(5px);
  transition: all 0.1s ease;
}
.inquiry-button {
  background-color: var(--key-color);
  border: 1px solid var(--valo-red);
  display: block;
  padding: 0.5em 3em;
  margin-top: 1em;
}
@media screen and (min-width : 768px) and (max-width: 1499px), print  {
 a.button {
  }
}
@media screen and (min-width: 1301px) {
  a.button {
  }
}
header {
  background-color: rgba(255, 255, 255, 0.8); 
  backdrop-filter: blur(20px); 
  -webkit-backdrop-filter: blur(20px); 
  box-shadow: 0 5px 5px 0 rgba(0,0,0,0.25);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 10;
}
header h1#logo {
  background-image: linear-gradient(180deg, #69ACD6 0%, #3874AC 100%);
  box-shadow: 0 0 20px 2px rgba(0,0,0,0.50);
  padding: 15px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
header nav#gnav ul {
  width: 100%;
  height: 100% !important;
  padding: 50px 0;
  float: right;
}
header nav#gnav ul li {
  list-style: none;
  text-align: center;
}
header nav#gnav ul li a {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767.99999999px) {
  header {
    width: 100%;
    height: 60px;
  }
  header h1#logo {
    width: 50%;
    height: 60px;
    background-image: linear-gradient(180deg, #69ACD6 0%, #3874AC 100%);
    box-shadow: 0 0 20px 2px rgba(0,0,0,0.50);
    padding: 5px;
    position: absolute;
    left: 0;
    top: 0;
  }
  header h1#logo img {
    width: auto;
    height: 100%;
  }
  .menu-toggle {
    display: none !important;
  }
  .hamburger {
    position: fixed;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 1px solid var(--ci-color);
    cursor: pointer;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 5px;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--ci-color);
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  .menu-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  header nav#gnav.col2 {
    background-color: var(--white);
    position: fixed;
    right: calc(-70vw - 20px); 
    top: 0;
    padding-top: 60px;
    width: 70vw;
    height: 100vh;
    z-index: 1500;
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  .menu-toggle:checked ~ nav#gnav.col2 {
    right: 0;
  }
  .overlay {
    content: '';
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    right: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .menu-toggle:checked ~ .overlay {
    display: block;
    opacity: 1;
  }
  header nav#gnav ul {
    background-color: var(--white);
    width: 100%;
    height: auto !important;
    padding: 80px 0 0 0; 
    position: relative;
    z-index: 1501;
  }
  header nav#gnav ul li:not(:last-child) {
    border-bottom: 1px solid var(--ci-color);
  }
  header nav#gnav ul li a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav#gnav.col2 {
  }
  header nav#gnav.col2::after {
  }
  header nav#gnav ul {
    background-color: var(--white);
    border-top: 1px solid var(--ci-color);
    width: 100%;
    height: auto !important;
    padding: 0 0;
    float: right;
  }
  header nav#gnav ul li {
    width: 100%;
    height: auto;
  }
  header nav#gnav ul li a {
    display: block;
    padding: 2em 0.5em;
  }
  header nav#gnav ul li {
    border-bottom: 1px solid var(--ci-color);
  }
}
@media screen and (min-width : 768px) and (max-width : 1300px), print  {
}
@media screen and (min-width: 1301px) {
}
main {
}
main section:last-child {
  margin-bottom: 0 !important;
}
main section artile {
  padding: 40px 0;
}
main section artile:last-child {
  padding: 40px 0 0 0;
}
div#keyvisual {
  position: relative;
  width: 100vw;
  height: 100vh;
}
div#keyvisual::after {
  content: '';
  background: url("common/images/arrow_scroll.svg") center center no-repeat;
  background-size: contain;
  display: block;
  width: 34px;
  height: 100.32px;
  position: absolute;
  bottom: 10px;
  left: calc((100vw - 35px) / 2);
  z-index: 1;
  animation: slideDown 1.5s ease-out infinite;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 0.5;
  }
  90% {
    transform: translateY(0);
    opacity: 0.75;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slide-fade 9s infinite; 
  background-size: cover;
  background-position: center;
}
.slide:nth-of-type(1) {
  background-image: url('common/images/ph_slide01.webp');
  animation-delay: 0s;
}
.slide:nth-of-type(2) {
  background-image: url('common/images/ph_slide02.webp');
  animation-delay: 3s; 
}
.slide:nth-of-type(3) {
  background-image: url('common/images/ph_slide03.webp');
  animation-delay: 6s;
}
@keyframes slide-fade {
  0% { opacity: 0; }
  5% { opacity: 1; } 
  33.33% { opacity: 1; } 
  38.33% { opacity: 0; } 
  100% { opacity: 0; }
}
div#keyvisual h2 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  height: 100vh;
  width: 100vw;
  padding: 0 20px !important;
  text-align: center !important;
  color: var(--white);
  background: url("common/images/bg_slide_linepattern.svg") center no-repeat;
  background-size: cover;
  text-shadow: 0px 2px 10px rgba(0, 0, 0, 1),
               0px 4px 20px rgba(0, 0, 0, 1);
  font-size: 3.89rem;
  line-height: 1.2em;
}
div#keyvisual h2 span {
  font-size: 2.78rem;
  font-weight: 500;
  line-height: 1.2em;
}
main:not(#top) {
  margin-top: calc(159px + 40px);
}
main section strong.article_title_sub {
  display: block;
  padding: 60px 200px 10px 0;
  width: auto;
  height: auto;
}
main section#about strong.article_title_sub {
  background: url("common/images/bg_philosophy.webp") left top no-repeat;
  background-size: auto;
}
main section#media strong.article_title_sub {
  background: url("common/images/bg_media.webp") left top no-repeat;
  background-size: auto;
}
main section#merchandise strong.article_title_sub {
  background: url("common/images/bg_merchandise.webp") left top no-repeat;
  background-size: auto;
}
main section#cta {
  background-color: var(--light-glay);
}
main#contact section form .wpcf7-form-control-wrap {
  display: block;
}
main#contact section form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: block;
}
main#contact section form label {
  font-weight: 600;
}
main#contact section form label span.hissu {
  color: var(--white);
  background-color: var(--glay);
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 100;
  line-height: 1em;
  margin-left: 0.5rem;
  padding: 0.15rem 0.5rem;
}
main#contact section form label,
main#contact section form input,
main#contact section form textarea {
  margin-top: 2rem;
}
main#contact section form .wpcf7-form-control-wrap:has(.w75-margin) {
  width: 100%;
}
main#contact section form .wpcf7-form-control-wrap:has(.w75-margin) input,
main#contact section form .wpcf7-form-control-wrap:has(.w75-margin) textarea {
  width: 100%;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border: none;
  background: var(--brown);
  border-radius: 20px;
  color: var(--white);
}
.wpcf7-not-valid-tip::before {
  content: '▲';
}
.wpcf7 form.sent .wpcf7-response-output {
  border: none;
  background: var(--ci-color);
  border-radius: 20px;
  color: var(--white);
}
@media screen and (max-width: 767.99999999px) {
  main:not(#top) {
    margin-top: calc(90px + 30px);
  }
  div#keyvisual h2 {
    font-size: 3rem;
    line-height: 1.2em;
  }
  div#keyvisual h2 span {
    font-size: 2rem;
    line-height: 1.2em;
  }
  main section#about img,
  main section#media img,
  main section#merchandise img {
    margin-top: 20px;
  }
  main#contact section form .w25-margin:nth-child(odd) {
    margin-right: 0;
  }
  main#contact section form label,
  main#contact section form input,
  main#contact section form textarea {
    margin-top: 1rem;
  }
}
@media screen and (min-width : 768px) and (max-width : 1300px), print  {
  main#contact section form .wpcf7-form-control-wrap:has(.w75-margin) {
    width: calc(75% - 30px);
  }
}
@media screen and (min-width: 1301px) {
  main#contact section form .wpcf7-form-control-wrap:has(.w75-margin) {
    width: calc(75% - 40px);
  }
}
main section h1.sec_title,
main section h1.article_title {
  color: var(--ci-color);
  font-size: 1.89rem;
  font-weight: 700;
  line-height: 1.4em;
  padding-bottom: 1em;
}
main section h1.sec_title span {
  color: var(--text);
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: inherit;
}
main section h1.article_title {
  padding-bottom: 0.5em;
}
main section h2.article_title {
  color: var(--ci-color);
  border-bottom: 1px solid var(--glay);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5em;
  margin: 1rem 0 0.5rem 0;
  padding-bottom: 0;
}
main section strong.article_title_sub {
  color: var(--green);
  font-size: 1.3rem;
}
#pannavi {
  margin-top: -0.5rem;
}
#pannavi ul {
  list-style: none;
}
#pannavi ul li,
#pannavi ul li a {
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#pannavi ul li:not(:last-child) {
  margin-right: 0.2rem;
}
#pannavi ul li:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border: solid 0.4rem transparent;
  border-left: solid 0.7rem var(--ci-color);
  margin-left: 0.5rem;
}
main#news section#news_archive dl {
  border-top: 1px solid var(--glay);
}
main#news section#news_archive dl dt,
main#news section#news_archive dl dd {
  border-bottom: 1px solid var(--glay);
  white-space: wrap;
  padding: 0.5em 0;
  text-transform: uppercase;
}
main#news section#news_archive dl dd span {
  display: table;
  border-radius: 20px;
  color: var(--white);
  font-size: 0.75em;
  line-height: 1em;
  padding: 0.5em 1.5em;
}
main#news section#news_archive dl dd span.media {
  background-color: var(--navy);
}
main#news section#news_archive dl dd span.health {
  background-color: var(--green);
}
main#news section#news_archive dl dd span.news {
  background-color: var(--brown);
}
main#news section#news_archive .pagination {
    text-align: center;
    margin-top: 2rem;
}
main#news section#news_archive .pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border: 1px solid var(--ci-color);
    border-radius: 50%;
    text-decoration: none;
}
main#news section#news_archive .pagination .page-numbers.current {
    background: var(--ci-color);
    color: var(--white);
    border-color: var(--ci-color);
    border-radius: 50%;
}
main#news section#news_archive .pagination .page-numbers:hover:not(.current) {
    background: var(--green);
    color: var(--white);
}
main#news section#news_archive .pagination .prev,
main#news section#news_archive .pagination .next {
  border-radius: 20px;
}
@media screen and (max-width : 767px) {
  main#news section#news_archive dl dt {
    border-bottom: none;
    padding: 0.5em 0 0 0;
  }
  main#news section#news_archive dl dd.w75 {
    width: 100%;
  }
}
main#works #cat_label {
  margin-bottom: 40px;
}
main#works #cat_label a {
  border: 1px solid var(--ci-color);
  box-shadow: inset 0 0 20px 7px rgba(56, 116, 172, 0.4);
  color: var(--ci-color);
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  opacity: 0.6;
  padding: 0 5px 0 0;
  transition: all 0.3s ease;
  text-decoration: none;
}
main#works #cat_label a:hover {
  opacity: 1;
}
main#works #cat_label a.active {
  opacity: 1;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: inset 0 0 20px 7px rgba(56, 116, 172, 0.56);
}
main#works #cat_label a img {
  margin-right: 0.5em;
  width: auto;
  height: 100%;
}
main#works #product_card .card {
  padding: inherit;
  background-color: inherit;
  box-shadow: inherit;
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
  margin: inherit;
}
main#works #product_card .card.hidden {
  display: none;
}
main#works #product_card .card img {
  aspect-ratio: 1 / 1 !important;
}
main#works #product_card .card .label {
  display: inline-block;
  border-radius: 20px;
  border-width: 2px;
  border-style: solid;
  padding: 0.15rem 0.5rem;
  margin: 10px 0 5px;
  font-size: 0.85rem;
}
main#works #our_partner ul {
  margin: 0 auto;
}
@media screen and (max-width : 767px) {
  main#works #cat_label a {
  }
  main#works #cat_label a.w25 {
    width: 50% !important;
  }
  main#works #cat_label a img {
    width: 3rem;
    height: 3rem;
  }
  main#works #product_card .card {
    width: 100%;
    margin-right: 20px !important;
  }
  main#works #product_card .card:nth-child(2n) {
    margin-right: 0 !important;
  }
}
main#company #history dl dt,
main#company #history dl dd {
  margin-bottom: 40px;
}
main#company #history dl dt,
main#company #history dl dd {
  white-space: wrap;
}
main#company #history dl dt {
  margin-right: 40px;
}
main#company #history dl dd {
}
main#company #history dl img {
  margin-top: 10px;
}
@media screen and (max-width : 767px) {
  main#company section#history h2.article_title:first-child {
    margin: 0 0 0.5rem 0;
  }
  main#company #history dl dt,
  main#company #history dl dd {
    margin-bottom: 10px;
  }
  main#company #history dl dd img {
    min-width: 100%;
    height: auto;
  }
}
@media screen and (min-width : 768px) and (max-width: 1499px), print  {
  main#company #history dl dt,
  main#company #history dl dd {
    margin-bottom: 30px;
  }
}
footer {
  background-color: var(--dark-glay);
  color: var(--white);
  padding: 2rem 0;
}
footer nav ul {
  list-style: none;
}
footer nav ul li a:link,
footer nav ul li a:visited {
  color: var(--white);
}
footer address p {
}
footer address a#footer-logo {
}
footer .copyright {
  margin: 2rem auto 0 auto;
}
#page_top {
  display: block;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 5rem;
  height: 5rem;
  z-index: 5;
}
#page_top a img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5))
          drop-shadow(0 4px 4px rgba(0, 0, 0, 1));
}
@media screen and (max-width: 767.99999999px) {
  footer address #footer-logo.w50 {
    width: 50%;
    height: auto;
  }
  footer address {
    margin: 0 auto 1em;
    text-align: center;
  }
  footer address a[href^="tel:"] {
    color: var(--white);
  }
  footer nav ul li a {
    border: 1px solid var(--light-glay);
    border-radius: 10px;
    display: block;
    margin-right: 0.5rem;
    padding: 0.5rem;
    text-align: center;
  }
  footer nav ul li ul {
    display: none;
  }
  #page_top {
    right: 20px;
    bottom: 20px;
    width: 4rem;
    height: 4rem;
  }
  #page_top a img {
    background-color: rgba(56, 116, 172, 0.5);
    border-radius: 100%;
  }
}
@media screen and (min-width : 768px) and (max-width : 1300px), print  {
}
@media screen and (min-width: 1301px) {
}
