@charset "UTF-8";
/** Colorの定義**/
/** 文字の定義**/
/* ==============================

	  共通

  ============================== */
* {
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  line-height: 1;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  overflow: hidden;
  color: #0071bc;
}
a:hover {
  color: #ffb700;
}

picture {
  display: block;
}

img {
  border: none;
  line-height: 0;
  vertical-align: bottom;
  max-width: 100%;
}

i {
  font-style: normal;
}

.clear {
  clear: both;
  height: 0;
  line-height: 0;
  font-size: 0;
}

.space10 {
  height: 10px;
}

.space20 {
  height: 20px;
}

.space30 {
  height: 30px;
}

.space40 {
  height: 40px;
}

.space100 {
  height: 100px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

.bold {
  font-weight: bold;
}

.txt-left {
  text-align: left;
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.red {
  color: #c00;
}

ul li {
  list-style: none;
}

.alpha {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .alpha:hover {
    opacity: 0.7;
  }
}

.wrap-alpha a {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .wrap-alpha a:hover {
    opacity: 0.7;
  }
}

.enlarge {
  position: relative;
}
.enlarge::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23000000'%3E%3Cpath d='M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352c79.5 0 144-64.5 144-144s-64.5-144-144-144S64 128.5 64 208s64.5 144 144 144z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  bottom: 3px;
  right: 3px;
  z-index: 3;
  opacity: 0.6;
  transition: opacity 0.4s;
}
.enlarge:hover::after {
  opacity: 1;
}

.bd-01 {
  background: linear-gradient(transparent 60%, rgba(252, 238, 33, 0.6) 0%);
  font-weight: bold;
}

.bd-02 {
  background: linear-gradient(transparent 60%, rgba(228, 0, 3, 0.4) 0%);
  font-weight: bold;
}

.bd-03 {
  background: linear-gradient(transparent 60%, rgba(0, 65, 219, 0.5) 0%);
  font-weight: bold;
}

.cursor {
  cursor: pointer;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-table;
}

.link a {
  color: #0071bc;
}
.link a:hover {
  color: #ffb700;
}

/** Loader **/
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 998;
}

#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 200px;
  margin-top: -80px;
  margin-left: -80px;
  text-align: center;
  z-index: 999;
}
#loader p {
  font-size: 12px;
  margin-top: 30px;
  letter-spacing: 1.5px;
}
#loader .num1 {
  animation: flash1 1s 0s infinite;
}
#loader .num2 {
  animation: flash2 1s 0s infinite;
}
#loader .num3 {
  animation: flash3 1s 0s infinite;
}

@keyframes flash1 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash2 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  66% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash3 {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
/** ***********************************************

COMMON

*********************************************** **/
body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(15px, 1.6vw, 16px);
  letter-spacing: 1px;
  -webkit-text-size-adjust: 100%;
}

.inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.width-1400 {
  max-width: 1400px;
}

.width-1200 {
  max-width: 1200px;
}

.width-1000 {
  max-width: 1000px;
}

.wrap-flex {
  display: flex;
}
.wrap-flex .col {
  width: 50%;
}
.wrap-flex.flex-3 .col {
  width: 33.3333333333%;
}
.wrap-flex.flex-4 .col {
  width: 25%;
}

.font-s {
  font-size: smaller;
}

.sec-common {
  padding: 80px 10px;
}
@media screen and (max-width: 600px) {
  .sec-common {
    padding: 40px 10px;
  }
}

@media screen and (max-width: 600px) {
  .page .sec-common {
    padding: 40px 0px;
  }
}

.title-h3 {
  font-size: clamp(18px, 2.4vw, 24px);
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
}
@media screen and (max-width: 600px) {
  .title-h3 {
    margin-bottom: 30px;
  }
}
.title-h3 .en {
  display: block;
  text-align: center;
  color: #999;
  font-size: 12px;
  margin-top: 20px;
  font-weight: normal;
  position: relative;
  margin-bottom: 50px;
}
.title-h3 .en::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 1px;
  background-color: #ddd;
  bottom: -40px;
  left: calc(50% - 25px);
}
.title-h3::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #111;
  margin-top: 15px;
  transition: 0.6s;
}
.title-h3.on::after {
  width: 100%;
}
.title-h3.small {
  font-size: clamp(15px, 2vw, 20px);
}
.title-h3.small::after {
  display: none;
}

.title-h4 {
  border-left: solid 3px #111;
  padding: 4px 20px;
  font-size: clamp(15px, 2vw, 20px);
  margin-bottom: 30px;
}

.title-h4-2 {
  font-size: clamp(15px, 1.5vw, 18px);
  margin-bottom: 60px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.title-h4-2::before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #111;
  display: block;
}

.bt {
  font-size: 13px;
  font-size: clamp(12px, 1.3vw, 13px);
  color: #fff;
  background-color: #111;
  border-radius: 100px;
  display: block;
  padding: 12px 40px 12px 30px;
  position: relative;
  font-weight: bold;
  letter-spacing: 0;
  max-width: -moz-fit-content;
  max-width: fit-content;
  min-width: 100px;
  text-align: center;
}
.bt::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg) translateY(-50%);
}
.bt.bt-2 {
  background-color: #0071bc;
}
@media (hover: hover) {
  .bt:hover {
    color: #fff;
  }
}

.zoom {
  overflow: hidden;
}
.zoom img {
  transition: 0.4s;
  display: block;
}
@media (hover: hover) {
  .zoom:hover img {
    transform: scale(1.08);
  }
}

.link-1 {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-size: clamp(14px, 1vw, 14px);
  margin: 0 auto;
  overflow: visible;
  padding-right: 10px;
  line-height: 1.6;
  color: #111;
  font-weight: bold;
}
.link-1::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0px;
  width: 6px;
  height: 6px;
  border-top: solid 1px #111;
  border-right: solid 1px #111;
  transform: rotate(45deg) translateY(-50%);
}
.link-1::before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #111;
  position: absolute;
  bottom: -10px;
  left: 0;
  transition: 0.4s;
}
@media (hover: hover) {
  .link-1:hover {
    color: #111;
  }
  .link-1:hover::before {
    width: 100%;
  }
}

main {
  position: relative;
}

.bg-gray {
  background-color: #f5f5f5;
}

/* ==============================

	  ファイル読み込み

  ==============================   */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 30px;
  transition: 0.4s;
}
@media screen and (max-width: 834px) {
  header {
    position: absolute;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  header {
    padding: 30px 20px;
  }
}
header.hd-page {
  background-color: #111;
}
header.on {
  background-color: #111;
  padding: 10px 30px;
}
@media screen and (max-width: 834px) {
  header.on {
    background-color: transparent;
    padding: 30px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  header.on {
    padding: 20px;
  }
}
header .in {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  display: block;
  width: 100%;
  max-width: 150px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  header .logo {
    max-width: 100px;
  }
}
@media screen and (max-width: 834px) {
  header .col-2 {
    display: none;
  }
}
@media screen and (max-width: 834px) {
  header .col-3 {
    display: none;
  }
}
header .gnav ul {
  display: flex;
  justify-content: space-around;
  gap: 20px 40px;
}
header .gnav a {
  color: #fff;
  font-size: clamp(14px, 1vw, 14px);
  position: relative;
  display: block;
  padding-bottom: 10px;
}
header .gnav a::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.4s;
}
@media (hover: hover) {
  header .gnav a:hover::after {
    width: 100%;
  }
}
header .icons {
  display: flex;
  gap: 20px;
}
header .icons a {
  display: block;
  overflow: visible;
}
@media (hover: hover) {
  header .icons a:hover img {
    transform: translateY(-3px);
  }
}
header .icons img {
  display: block;
  width: auto;
  height: 22px;
  transition: 0.4s;
}

#bt-nav {
  display: none;
  position: fixed;
  top: 30px;
  right: 20px;
  padding: 8px;
  cursor: pointer;
  z-index: 9999;
  width: 60px;
  height: 38px;
  transition: 0.4s;
  border-radius: 3px;
}
@media screen and (max-width: 834px) {
  #bt-nav {
    display: block;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  #bt-nav {
    right: 10px;
    top: 20px;
    background-color: #111;
  }
}
#bt-nav span {
  position: absolute;
  width: 40px;
  display: block;
  border-top: solid 1px #eee;
  transition: all 0.4s ease;
}
#bt-nav .item-01 {
  top: 10px;
  left: 10px;
}
#bt-nav .item-02 {
  top: 18px;
  left: 10px;
  opacity: 1;
}
#bt-nav .item-03 {
  top: 26px;
  left: 10px;
}
#bt-nav.on span {
  width: 30px;
  left: 15px;
}
#bt-nav.on .item-01 {
  transform: translateY(8px) rotate(-315deg);
}
#bt-nav.on .item-02 {
  width: 0;
  opacity: 0;
}
#bt-nav.on .item-03 {
  transform: translateY(-8px) rotate(315deg);
}
#bt-nav.active {
  background-color: #111;
}

.sp-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  overflow-y: auto;
  z-index: 999;
  background-color: #111;
  transition: 0.6s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.sp-nav.on {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sp-nav .wrap-menu {
  padding: 100px 0;
}
.sp-nav .wrap-menu h4 {
  font-weight: bold;
  margin-bottom: 1px;
}
.sp-nav .wrap-menu h4 a {
  display: block;
  position: relative;
  font-size: clamp(15px, 1.6vw, 16px);
  background-color: #222;
  padding: 20px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sp-nav .wrap-menu h4 a {
    font-size: clamp(14px, 1vw, 14px);
  }
}
.sp-nav .wrap-menu h4 a::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: solid 1px #ddd;
  border-right: solid 1px #ddd;
  transform: rotate(135deg);
  transition: 0.4s;
}
.sp-nav .wrap-menu h4.no-sub a::after {
  transform: rotate(45deg);
}
.sp-nav .wrap-menu h4.on a::after {
  transform: rotate(-45deg);
}
.sp-nav .wrap-menu a {
  color: #fff;
}
.sp-nav .wrap-menu .sub-category {
  display: none;
}
.sp-nav .wrap-menu .sub-category a {
  font-size: clamp(14px, 1vw, 14px);
  color: #ddd;
  padding: 20px;
  display: block;
  border-bottom: solid 1px #333;
  position: relative;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sp-nav .wrap-menu .sub-category a {
    font-size: 13px;
    padding: 15px 20px;
  }
}
.sp-nav .wrap-menu .sub-category a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: solid 1px #ddd;
  border-right: solid 1px #ddd;
  transform: rotate(45deg) translateY(-50%);
}
.sp-nav .wrap-menu .sub-category li:last-child a {
  border-bottom: none;
}
.sp-nav .sub-menus {
  display: flex;
  padding: 50px 20px;
  gap: 20px;
  justify-content: space-around;
  flex-wrap: wrap;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sp-nav .sub-menus {
    justify-content: center;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sp-nav .sub-menus a {
    font-size: 13px;
  }
}
.sp-nav .wrap-icon-sns {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.sp-nav .wrap-icon-sns .icon {
  display: block;
  width: 30px;
}

footer {
  background-color: #222;
  padding: 50px 50px 100px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  footer {
    padding: 50px 20px 100px;
  }
}

.wrap-f-menu {
  display: flex;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto 100px;
  justify-content: space-around;
}
@media screen and (max-width: 834px) {
  .wrap-f-menu {
    display: none;
  }
}
.wrap-f-menu h4 {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: clamp(14px, 1vw, 14px);
}
.wrap-f-menu .sub-category {
  border-left: solid 1px #444;
  padding-left: 20px;
}
.wrap-f-menu .sub-category li {
  padding: 5px 0;
}
.wrap-f-menu .sub-category li:first-child {
  display: none;
}
@media screen and (max-width: 834px) {
  .wrap-f-menu .sub-category li:first-child {
    display: block;
  }
}
.wrap-f-menu .sub-category a {
  font-size: clamp(11px, 1.2vw, 12px);
  color: #ddd;
}
.wrap-f-menu a {
  color: #fff;
}

.wrap-f-menu-2 {
  display: flex;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .wrap-f-menu-2 {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 600px) {
  .wrap-f-menu-2 {
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .wrap-f-menu-2 .col-1 {
    width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .wrap-f-menu-2 .col-2 {
    display: none;
  }
}
.wrap-f-menu-2 .col-3 .wrap-sns {
  display: flex;
  gap: 10px 15px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .wrap-f-menu-2 .col-3 .wrap-sns {
    gap: 10px 5px;
  }
}
@media screen and (max-width: 600px) {
  .wrap-f-menu-2 .col-3 .wrap-sns {
    gap: 15px;
    margin: 0 auto;
    justify-content: center;
  }
}
.wrap-f-menu-2 .img-logo {
  display: block;
  width: 100%;
  max-width: 150px;
}
@media screen and (max-width: 600px) {
  .wrap-f-menu-2 .img-logo {
    max-width: 120px;
    margin: 0 auto;
  }
}
.wrap-f-menu-2 .sub-menus {
  display: flex;
  justify-content: center;
  gap: 20px 30px;
}
.wrap-f-menu-2 .sub-menus li {
  padding: 5px 0;
}
.wrap-f-menu-2 .sub-menus a {
  font-size: clamp(14px, 1vw, 14px);
  color: #ddd;
}
@media screen and (max-width: 1024px) {
  .wrap-f-menu-2 .sub-menus a {
    font-size: clamp(11px, 1.2vw, 12px);
  }
}
.wrap-f-menu-2 a {
  color: #fff;
}

.copyright {
  text-align: center;
  display: block;
  color: #999;
  font-size: clamp(60%, 1.2vw, 10px);
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

#back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #222;
  border: solid 1px #fff;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
  transform: translateY(5px);
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  #back-top {
    right: 10px;
  }
}
#back-top.on {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
#back-top img {
  display: block;
  width: 12px;
}

.sec-mv {
  position: relative;
  overflow: hidden;
  background-color: #000;
  width: 100%;
  height: 100dvh;
  /*
    .swiper-slide {
      position: relative;
      &::after {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background-color: #f5f5f5;
        transition: 4s;
      }
      &.is-active {
        &::after {
          width: 100%;
        }
      }
    }
  */
}
.sec-mv .swiper-slide {
  position: relative;
}
.sec-mv .swiper-slide::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 250px;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}
.sec-mv .mv {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  width: 100%;
  height: 100dvh;
  display: block;
  opacity: 0.9;
}
.sec-mv .layer {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 250px;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}
.sec-mv .wrap-mv-1 {
  position: relative;
}
.sec-mv .wrap-catch {
  position: absolute;
  top: 15%;
  right: 15%;
  display: flex;
  gap: 20px;
  z-index: 10;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .sec-mv .wrap-catch {
    top: 10%;
    right: 10%;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-mv .wrap-catch {
    top: 18%;
  }
}
.sec-mv .wrap-catch span {
  background-color: #fff;
  padding: 10px 5px;
}
.sec-mv .wrap-catch span.catch-1 {
  order: 2;
  transition-delay: 0.1s;
}
.sec-mv .wrap-catch span.catch-2 {
  margin-top: 50px;
  transition-delay: 0.8s;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-mv .wrap-catch span.catch-2 {
    margin-top: 30px;
  }
}
.sec-mv .wrap-catch img {
  display: block;
  width: 30px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-mv .wrap-catch img {
    width: 20px;
  }
}
.sec-mv .wrap-link {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  max-width: 300px;
  position: absolute;
  bottom: 50px;
  right: 50px;
  padding: 30px;
  border-radius: 6px;
  transition: 0.6s;
  transform: translateX(10px);
  opacity: 0;
}
@media screen and (max-width: 834px) {
  .sec-mv .wrap-link {
    right: 20px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-mv .wrap-link {
    max-width: 90%;
    right: 5%;
    bottom: 80px;
    padding: 20px;
  }
}
.sec-mv .wrap-link .pd-name {
  color: #fff;
  font-size: clamp(14px, 1vw, 14px);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.6;
}
.sec-mv .wrap-link .wrap-bts {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.sec-mv .wrap-link .wrap-bts .bt {
  border: solid 1px #333;
  background-color: #111;
}
.sec-mv .is-active .wrap-link {
  opacity: 1;
  transform: translateX(0);
}
.sec-mv .swiper-pagination {
  position: absolute;
  bottom: 5% !important;
  left: 5% !important;
  z-index: 10;
  width: -moz-fit-content !important;
  width: fit-content !important;
}
.sec-mv .swiper-pagination-bullet {
  width: 30px;
  height: auto;
  text-align: center;
  font-size: clamp(15px, 2vw, 20px);
  color: #fff;
  background-color: transparent;
  opacity: 0.6;
  transform: scale(0.8);
  transition: 0.4s;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-mv .swiper-pagination-bullet {
    width: 25px;
  }
}
.sec-mv .swiper-pagination-bullet-active {
  color: #fff;
  background-color: transparent;
  opacity: 1;
  font-weight: bold;
  transform: scale(1);
}

.sec-top-new-pd {
  position: relative;
}
.sec-top-new-pd .inner {
  max-width: 1000px;
}
.sec-top-new-pd .inner .list-news {
  margin-bottom: 30px;
}
.sec-top-new-pd .inner .list-news li {
  border-bottom: solid 1px #ddd;
  position: relative;
  transition: 0.4s;
}
.sec-top-new-pd .inner .list-news li:last-child {
  margin-bottom: 0;
}
@media (hover: hover) {
  .sec-top-new-pd .inner .list-news li:hover {
    background-color: #f5f5f5;
  }
}
.sec-top-new-pd .inner .list-news .wrap-txt {
  font-size: clamp(15px, 1.6vw, 16px);
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-new-pd .inner .list-news .wrap-txt {
    line-height: 1.6;
    font-size: 14px;
  }
}
.sec-top-new-pd .inner .list-news .date {
  font-size: clamp(11px, 1.2vw, 12px);
  display: block;
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-new-pd .inner .list-news .date {
    margin-bottom: 10px;
  }
}
.sec-top-new-pd .inner .list-news .date .new {
  color: #c30d23;
  margin-left: 10px;
  font-weight: bold;
}
.sec-top-new-pd .inner .list-news a {
  color: #111;
  display: flex;
  gap: 20px;
  transition: 0.4s;
  padding: 15px 10px;
  position: relative;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-new-pd .inner .list-news a {
    line-height: 1.6;
    padding: 10px 0px;
    font-size: clamp(14px, 1vw, 14px);
    gap: 15px;
  }
}
.sec-top-new-pd .inner .list-news a .pd-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 80px;
  max-height: 80px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-new-pd .inner .list-news a .pd-img {
    max-width: 60px;
    max-height: 60px;
  }
}
.sec-top-new-pd .inner .list-news a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: solid 1px #111;
  border-right: solid 1px #111;
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-new-pd .inner .list-news a::after {
    display: none;
  }
}
@media (hover: hover) {
  .sec-top-new-pd .inner .list-news a:hover {
    transform: translateX(5px);
  }
}
.sec-top-new-pd .bt-important {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: clamp(14px, 1vw, 14px);
  display: flex;
  gap: 8px;
  align-items: center;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-new-pd .bt-important {
    font-size: 12px;
    gap: 5px;
    top: -30px;
    right: 0px;
  }
}
.sec-top-new-pd .bt-important:hover {
  color: #0071bc;
}
.sec-top-new-pd .bt-important::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%230071bc"><path class="e" d="M10,0C4.48,0,0,4.48,0,10c0,5.52,4.48,10,10,10,5.52,0,10-4.48,10-10C20,4.48,15.52,0,10,0ZM10,17.65c-2.12,0-4.02-.85-5.41-2.24-1.39-1.39-2.24-3.29-2.24-5.41,0-2.12.85-4.02,2.24-5.41,1.39-1.39,3.29-2.24,5.41-2.24,2.12,0,4.02.85,5.41,2.24,1.39,1.39,2.24,3.29,2.24,5.41,0,2.12-.85,4.02-2.24,5.41-1.39,1.39-3.29,2.24-5.41,2.24Z"/><circle class="e" cx="10.02" cy="5.83" r="1.2"/><path class="e" d="M10.02,7.79c-.53,0-.96.43-.96.96v5.25c0,.53.43.96.96.96s.96-.43.96-.96v-5.25c0-.53-.43-.96-.96-.96Z"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-new-pd .bt-important::before {
    width: 15px;
    height: 15px;
  }
}

.sec-top-pickup {
  margin-bottom: 50px;
}
.sec-top-pickup .wrap-pickup {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-pickup .wrap-pickup {
    flex-direction: column;
  }
}
.sec-top-pickup .wrap-pickup li {
  width: calc(50% - 5px);
  background-image: url(../images/bg-1.png);
  background-size: cover;
  text-align: center;
  padding: 30px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-pickup .wrap-pickup li {
    width: 100%;
  }
}
.sec-top-pickup .wrap-pickup li:nth-of-type(2), .sec-top-pickup .wrap-pickup li:nth-of-type(3) {
  background-image: url(../images/bg-2.png);
}
@media (hover: hover) {
  .sec-top-pickup .wrap-pickup li:hover img {
    transform: scale(1.08);
  }
}
.sec-top-pickup .wrap-pickup li .catch {
  display: block;
  font-size: clamp(14px, 1vw, 14px);
  margin-bottom: 15px;
}
.sec-top-pickup .wrap-pickup li .name {
  font-weight: bold;
  font-size: clamp(18px, 2.4vw, 24px);
  margin-bottom: 20px;
}
.sec-top-pickup .wrap-pickup li .wrap-pd-img {
  width: 80%;
  max-width: 450px;
  aspect-ratio: 1/1;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.sec-top-pickup .wrap-pickup li .wrap-pd-img img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  transition: 0.6s;
}
.sec-top-pickup .wrap-pickup li .bts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.sec-top-scene .wrap-flex {
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-scene .wrap-flex {
    gap: 30px 10px;
  }
}
.sec-top-scene .wrap-flex li {
  width: calc(20% - 8px);
  text-align: center;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-scene .wrap-flex li {
    width: calc(50% - 5px);
  }
}
.sec-top-scene .wrap-flex li .wrap-img {
  overflow: hidden;
  height: 80%;
  border-radius: 10px;
}
.sec-top-scene .wrap-flex li .cat-name {
  color: #111;
  display: block;
  font-size: clamp(15px, 1.6vw, 16px);
  margin-top: 20px;
  font-weight: bold;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-scene .wrap-flex li .cat-name {
    margin-top: 10px;
    font-size: clamp(14px, 1vw, 14px);
  }
}
.sec-top-scene .wrap-flex li img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
}
@media (hover: hover) {
  .sec-top-scene .wrap-flex li:hover img {
    transform: scale(1.08);
  }
}

.sec-top-products .wrap-flex {
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-products .wrap-flex {
    gap: 30px 10px;
  }
}
.sec-top-products .wrap-flex li {
  width: calc(20% - 8px);
  text-align: center;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-products .wrap-flex li {
    width: calc(50% - 5px);
  }
}
.sec-top-products .wrap-flex li .wrap-img {
  overflow: hidden;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80%;
  border-radius: 10px;
}
.sec-top-products .wrap-flex li .cat-name {
  color: #111;
  display: block;
  font-size: clamp(15px, 1.6vw, 16px);
  margin-top: 20px;
  font-weight: bold;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-products .wrap-flex li .cat-name {
    margin-top: 10px;
    font-size: clamp(14px, 1vw, 14px);
  }
}
.sec-top-products .wrap-flex li img {
  display: block;
  transition: 0.4s;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 90%;
}
@media (hover: hover) {
  .sec-top-products .wrap-flex li:hover img {
    transform: scale(1.08);
  }
}

.sec-top-vf {
  background-color: #0b0f0e;
  min-height: 500px;
  padding: 50px 0;
  position: relative;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-vf {
    padding-top: 20px;
  }
}
.sec-top-vf .wrap-flex {
  position: relative;
  z-index: 2;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .sec-top-vf .wrap-flex {
    flex-direction: column;
  }
}
.sec-top-vf .wrap-flex .col-1 {
  width: 35%;
  position: relative;
}
@media screen and (max-width: 834px) {
  .sec-top-vf .wrap-flex .col-1 {
    width: 50%;
    height: 200px;
  }
}
.sec-top-vf .wrap-flex .col-1 .txt-vf {
  font-size: clamp(15px, 2vw, 20px);
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  letter-spacing: 2px;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  line-height: 1.6;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-vf .wrap-flex .col-1 .txt-vf {
    top: 40%;
  }
}
.sec-top-vf .wrap-flex .col-1 .txt-vf::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #fff;
  margin-top: 10px;
  transition: 0.6s;
}
.sec-top-vf .wrap-flex .col-1 .txt-vf.on::after {
  width: 100%;
}
.sec-top-vf .wrap-flex .col-2 {
  width: 65%;
}
@media screen and (max-width: 834px) {
  .sec-top-vf .wrap-flex .col-2 {
    width: 100%;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-vf .wrap-flex .col-2 {
    overflow-x: auto;
  }
}
.sec-top-vf .wrap-flex .list-vf {
  display: flex;
  gap: 20px;
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-vf .wrap-flex .list-vf {
    max-width: inherit;
    width: 150%;
    gap: 20px 10px;
  }
}
.sec-top-vf .wrap-flex .list-vf li {
  background-color: #fff;
  padding: 20px 10px;
  width: calc(33.3333333333% - 13.3333333333px);
  cursor: pointer;
  border-radius: 10px;
}
.sec-top-vf .wrap-flex .list-vf .field {
  display: block;
  font-weight: bold;
  margin: 0 auto 20px;
  text-align: center;
  font-size: clamp(15px, 1.5vw, 18px);
}
.sec-top-vf .wrap-flex .list-vf .bt {
  margin: 0 auto 20px;
}
.sec-top-vf .wrap-flex .list-vf .wrap-img {
  aspect-ratio: 1/1;
}
.sec-top-vf .wrap-flex .list-vf .wrap-img img {
  height: 100%;
  margin: 0 auto;
}
.sec-top-vf .bg-vf-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  max-width: 400px;
}
@media screen and (max-width: 834px) {
  .sec-top-vf .bg-vf-2 {
    max-width: 40%;
    display: none;
  }
}

.sec-top-article {
  background-color: #f5f5f5;
  margin: 10px;
  min-height: 500px;
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 834px) {
  .sec-top-article {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sec-top-article .wrap-flex {
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  cursor: pointer;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-article .wrap-flex {
    flex-direction: column;
  }
}
.sec-top-article .col-img {
  width: 50%;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-article .col-img {
    width: 100%;
  }
}
.sec-top-article .col-img img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 400px;
  border-radius: 10px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-article .col-img img {
    height: auto;
  }
}
.sec-top-article .col-txt {
  width: 50%;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-article .col-txt {
    width: 100%;
  }
}
.sec-top-article .col-txt h4 {
  font-size: clamp(18px, 2.4vw, 24px);
  margin-bottom: 20px;
  letter-spacing: 1px;
  line-height: 1.6;
}
.sec-top-article .col-txt .desc {
  margin-bottom: 30px;
}
.sec-top-article .col-txt .desc p {
  line-height: 1.6;
  letter-spacing: 1px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-article .col-txt .desc p {
    font-size: clamp(14px, 1vw, 14px);
  }
}

.sec-top-others {
  margin: 10px;
}
.sec-top-others .wrap-flex {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-others .wrap-flex {
    flex-direction: column;
  }
}
.sec-top-others .col {
  background-color: #f5f5f5;
  padding: 50px 100px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .sec-top-others .col {
    padding: 50px;
  }
}
@media screen and (max-width: 834px) {
  .sec-top-others .col {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-others .col {
    width: 100%;
  }
}
.sec-top-others .desc {
  margin-bottom: 20px;
}
.sec-top-others .desc p {
  letter-spacing: 1px;
  line-height: 1.6;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-others .desc p {
    font-size: clamp(14px, 1vw, 14px);
  }
}
.sec-top-others .wrap-img {
  margin: 0 auto 20px;
}
.sec-top-others .wrap-img img {
  display: block;
  max-height: 450px;
  margin: 0 auto;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .sec-top-others .wrap-img img {
    max-height: 400px;
  }
}
@media screen and (max-width: 834px) {
  .sec-top-others .wrap-img img {
    max-height: 300px;
  }
}

.sec-top-news .wrap-flex {
  max-width: 1400px;
  margin: 0 auto;
  gap: 50px;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .sec-top-news .wrap-flex {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
}
.sec-top-news .col-1 {
  width: 20%;
}
@media screen and (max-width: 834px) {
  .sec-top-news .col-1 {
    width: 100%;
  }
}
.sec-top-news .col-2 {
  width: 80%;
  padding-left: 50px;
}
@media screen and (max-width: 834px) {
  .sec-top-news .col-2 {
    width: 100%;
    padding: 0 20px 0 60px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-news .col-2 {
    padding: 0 0px 0 60px;
  }
}
.sec-top-news .list-news {
  margin-bottom: 30px;
}
.sec-top-news .list-news li {
  border-bottom: solid 1px #ddd;
  position: relative;
  transition: 0.4s;
}
.sec-top-news .list-news li:last-child {
  margin-bottom: 0;
}
@media (hover: hover) {
  .sec-top-news .list-news li:hover {
    background-color: #f5f5f5;
  }
}
.sec-top-news .list-news .date {
  font-size: clamp(11px, 1.2vw, 12px);
  display: block;
  margin-bottom: 10px;
}
.sec-top-news .list-news .date .new {
  color: #c30d23;
  margin-left: 10px;
  font-weight: bold;
}
.sec-top-news .list-news a {
  color: #111;
  display: block;
  transition: 0.4s;
  padding: 15px 10px;
  position: relative;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-news .list-news a {
    line-height: 1.6;
    padding: 10px 0px;
    font-size: clamp(14px, 1vw, 14px);
  }
}
.sec-top-news .list-news a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: solid 1px #111;
  border-right: solid 1px #111;
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-top-news .list-news a::after {
    display: none;
  }
}
@media (hover: hover) {
  .sec-top-news .list-news a:hover {
    transform: translateX(5px);
  }
}
.sec-top-news .list-news .important::before {
  content: "重要";
  display: block;
  background-color: #c30d23;
  font-size: clamp(70%, 1.2vw, 11px);
  padding: 4px 10px;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -60px;
  color: #fff;
}

.sec-page-title {
  position: relative;
  background-color: #212122;
  margin-top: 80px;
  height: 300px;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .sec-page-title {
    height: 200px;
  }
}
.sec-page-title .img-title {
  width: 60%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 600px) {
  .sec-page-title .img-title {
    height: 200px;
    width: 100%;
  }
}
.sec-page-title .page-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 2;
  width: 100%;
  text-align: center;
  font-size: clamp(18px, 3vw, 30px);
  font-weight: bold;
  color: #fff;
}
.sec-page-title .page-title .en {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: clamp(14px, 1vw, 14px);
  letter-spacing: 2px;
}
.sec-page-title .layer {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(33, 33, 34, 0) 30%, rgb(33, 33, 34) 50%);
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .sec-page-title .layer {
    background: rgba(0, 0, 0, 0.2);
  }
}

.sticky-nav {
  position: absolute;
  top: 400px;
  left: 20px;
  height: calc(100% - 450px);
  z-index: 2;
}
@media screen and (max-width: 1500px) {
  .sticky-nav {
    position: static;
    height: auto;
  }
}
.sticky-nav ul {
  position: sticky;
  top: 100px;
  left: 0px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px;
  box-shadow: 0 0 4px #ddd;
  border-radius: 6px;
  background-color: #fff;
}
@media screen and (max-width: 1500px) {
  .sticky-nav ul {
    position: static;
    height: auto;
    display: flex;
    justify-content: center;
    margin: 50px auto 0;
    gap: 30px;
    padding: 20px 40px;
  }
}
@media screen and (max-width: 600px) {
  .sticky-nav ul {
    flex-wrap: wrap;
    gap: 0;
    justify-content: flex-start;
    padding: 20px;
    margin: 20px;
  }
}
.sticky-nav li {
  margin-bottom: 8px;
}
@media screen and (max-width: 1500px) {
  .sticky-nav li {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .sticky-nav li {
    width: 50%;
  }
}
.sticky-nav li:last-child {
  margin-bottom: 0;
}
.sticky-nav a {
  color: #80a895;
  font-size: 13px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0 10px;
  padding: 10px 0;
  transition: 0.2s;
}
@media screen and (max-width: 1500px) {
  .sticky-nav a {
    font-size: clamp(14px, 1vw, 14px);
    padding: 10px 0;
  }
}
.sticky-nav a::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #80a895;
  border-radius: 10px;
  transition: 0.2s;
}
@media (hover: hover) {
  .sticky-nav a:hover {
    color: #111;
  }
  .sticky-nav a:hover::before {
    background-color: #111;
  }
}

.sec-top-mesage .inner {
  max-width: 800px;
}
.sec-top-mesage .content {
  padding: 0 50px 50px;
}
@media screen and (max-width: 600px) {
  .sec-top-mesage .content {
    padding: 0;
  }
}
.sec-top-mesage .content p {
  font-size: clamp(15px, 1.6vw, 16px);
  margin-bottom: 2em;
  line-height: 2;
  letter-spacing: 1px;
  text-align: justify;
}
@media screen and (max-width: 600px) {
  .sec-top-mesage .content p {
    font-size: 14px;
  }
}
.sec-top-mesage .content p.signature {
  text-align: right;
  border-bottom: solid 1px #111;
  padding-bottom: 7px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4em 0 0 auto;
}

@media screen and (max-width: 600px) {
  .img-board {
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 150px;
  }
}

.sec-overview .wrap-flex {
  max-width: 1000px;
  margin: 0 auto;
  gap: 50px 100px;
}
@media screen and (max-width: 600px) {
  .sec-overview .wrap-flex {
    flex-direction: column;
    gap: 30px 0;
  }
}
.sec-overview .col-1 {
  width: 60%;
}
@media screen and (max-width: 600px) {
  .sec-overview .col-1 {
    width: 100%;
  }
}
.sec-overview .col-2 {
  width: 40%;
}
@media screen and (max-width: 600px) {
  .sec-overview .col-2 {
    width: 100%;
  }
}
.sec-overview .dl-overview {
  display: flex;
  flex-wrap: wrap;
}
.sec-overview .dl-overview dt {
  width: 30%;
  padding: 15px 0;
  border-bottom: solid 0.5px #111;
  font-weight: bold;
  font-size: clamp(14px, 1vw, 14px);
}
@media screen and (max-width: 600px) {
  .sec-overview .dl-overview dt {
    font-size: 13px;
    line-height: 1.6;
  }
}
.sec-overview .dl-overview dd {
  width: 70%;
  padding: 15px 0 15px 50px;
  border-bottom: solid 0.5px #ddd;
  font-size: clamp(14px, 1vw, 14px);
}
@media screen and (max-width: 600px) {
  .sec-overview .dl-overview dd {
    font-size: 13px;
    padding: 15px 0 15px 15px;
    line-height: 1.6;
  }
}
.sec-overview .wrap-img {
  margin-bottom: 30px;
}
.sec-overview .wrap-img img {
  display: block;
  border-radius: 10px;
}
.sec-overview .wrap-img .cap {
  display: block;
  text-align: center;
  font-size: 13px;
  margin: 10px 0 0;
}

.sec-history .dl-history {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
  .sec-history .dl-history {
    flex-direction: column;
  }
}
.sec-history .dl-history dt {
  width: 20%;
  padding: 10px 10px 15px;
}
@media screen and (max-width: 600px) {
  .sec-history .dl-history dt {
    width: 100%;
    font-size: 12px;
    padding: 0;
  }
}
.sec-history .dl-history dt .year {
  display: block;
  font-size: clamp(14px, 1vw, 14px);
  font-weight: bold;
  background-color: #111;
  width: -moz-fit-content;
  width: fit-content;
  margin: 5px 0 0;
  border-radius: 100px;
  color: #fff;
  padding: 0px 20px;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .sec-history .dl-history dt .year {
    font-size: 11px;
  }
}
.sec-history .dl-history dd {
  width: 80%;
  padding: 10px 10px 15px;
  font-size: clamp(15px, 1.6vw, 16px);
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .sec-history .dl-history dd {
    width: 100%;
    font-size: 13px;
    padding: 10px 0 15px;
  }
}

.sec-slik-history .inner {
  max-width: 1200px;
}
.sec-slik-history .wrap-history-img {
  width: 100%;
  position: relative;
  overflow-x: scroll;
  cursor: grab;
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .sec-slik-history .wrap-history-img {
    width: calc(100% + 20px);
  }
}
.sec-slik-history .wrap-history-img.active {
  cursor: grabbing;
}
.sec-slik-history .slik-history {
  display: block;
  width: 100%;
  max-width: inherit;
  width: 1600px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .sec-slik-history .slik-history {
    width: 1400px;
  }
}
.sec-slik-history .flex-1 {
  gap: 50px;
  margin-bottom: 100px;
  flex-wrap: wrap;
}
@media screen and (max-width: 834px) {
  .sec-slik-history .flex-1 {
    flex-direction: column;
  }
}
.sec-slik-history .flex-1 .col p {
  font-size: clamp(15px, 1.6vw, 16px);
  line-height: 1.8;
  letter-spacing: 1.5px;
  margin-bottom: 2em;
  text-align: justify;
}
@media screen and (max-width: 600px) {
  .sec-slik-history .flex-1 .col p {
    font-size: 14px;
  }
}
.sec-slik-history .flex-1 .col.col-1 {
  width: calc(50% - 25px);
  background-image: url("../images/about/bg-history-1.jpg");
  background-size: 70%;
  background-position: left 50px;
}
@media screen and (max-width: 834px) {
  .sec-slik-history .flex-1 .col.col-1 {
    width: 100%;
    background-size: auto 100%;
    background-position: center 50px;
  }
}
@media screen and (max-width: 600px) {
  .sec-slik-history .flex-1 .col.col-1 {
    background-size: auto 70%;
    background-position: right 100px;
  }
}
.sec-slik-history .flex-1 .col.col-2 {
  width: calc(50% - 25px);
  padding-top: 100px;
  background-image: url("../images/about/bg-history-2.jpg");
  background-size: 70%;
  background-position: right bottom;
  padding-bottom: 80px;
}
@media screen and (max-width: 834px) {
  .sec-slik-history .flex-1 .col.col-2 {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0px;
    background-size: auto 70%;
    background-position: center bottom;
  }
}
@media screen and (max-width: 600px) {
  .sec-slik-history .flex-1 .col.col-2 {
    background-size: auto 50%;
  }
}
.sec-slik-history .flex-1 .col.col-3 {
  width: 100%;
}
.sec-slik-history .flex-1 .col.col-3 .wrap-img {
  max-width: 300px;
  margin-bottom: 30px;
}
.sec-slik-history .flex-1 .col.col-3 .wrap-img .cap {
  font-size: 13px;
  font-size: clamp(12px, 1.3vw, 13px);
}
.sec-slik-history .wrap-img {
  max-width: 200px;
}
.sec-slik-history .wrap-img img {
  border-radius: 6px;
}
.sec-slik-history .wrap-img .cap {
  display: block;
  margin-top: 10px;
  font-size: clamp(11px, 1.2vw, 12px);
  text-align: center;
}
.sec-slik-history .flex-2 {
  gap: 50px;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .sec-slik-history .flex-2 {
    flex-direction: column;
    gap: 0;
  }
}
.sec-slik-history .flex-2 .col-txt {
  width: 60%;
}
@media screen and (max-width: 600px) {
  .sec-slik-history .flex-2 .col-txt {
    width: 100%;
  }
}
.sec-slik-history .flex-2 .col-img {
  width: 30%;
}
@media screen and (max-width: 600px) {
  .sec-slik-history .flex-2 .col-img {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .sec-slik-history .flex-2 .col-img .wrap-img {
    max-width: 100% !important;
  }
}
.sec-slik-history .flex-2 .col-img img {
  display: block;
  aspect-ratio: 1.6/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 600px) {
  .sec-slik-history .flex-2 .col-img img {
    width: 100%;
    max-width: inherit;
  }
}

.sec-technology .inner {
  max-width: 1200px;
}
.sec-technology .desc {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.8;
}
.sec-technology .list-technology {
  margin-bottom: 100px;
}
@media screen and (max-width: 600px) {
  .sec-technology .list-technology {
    margin-bottom: 50px;
  }
}
.sec-technology .list-technology li {
  display: flex;
  gap: 20px 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .sec-technology .list-technology li {
    flex-direction: column;
    gap: 30px 0;
  }
}
.sec-technology .list-technology li:last-child {
  margin-bottom: 0;
}
.sec-technology .list-technology li .wrap-img {
  width: 200px;
}
@media screen and (max-width: 600px) {
  .sec-technology .list-technology li .wrap-img {
    margin: 0 auto;
    width: 100%;
  }
}
.sec-technology .list-technology li .wrap-img img {
  display: block;
  border-radius: 6px;
  box-shadow: 0 0 3px #ccc;
}
@media screen and (max-width: 600px) {
  .sec-technology .list-technology li .wrap-img img {
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 1.6/1;
  }
}
.sec-technology .list-technology li .wrap-txts {
  width: calc(100% - 230px);
}
@media screen and (max-width: 600px) {
  .sec-technology .list-technology li .wrap-txts {
    width: 100%;
  }
}
.sec-technology .list-technology li .wrap-txts h5 {
  font-size: clamp(15px, 1.6vw, 16px);
  margin-bottom: 20px;
}
.sec-technology .list-technology li .wrap-txts p {
  font-size: clamp(14px, 1.2vw, 15px);
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .sec-technology .list-technology li .wrap-txts p {
    font-size: 14px;
    text-align: justify;
  }
}

/**  Slick Base  fadeする場合はslick.cssの読み込みが必要 **/
.slick {
  width: 100%;
  position: relative;
}
.slick li.slick-slide {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
}
.slick li.slick-slide img {
  width: 100%;
  height: auto;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/**  チラツキ防止 **/
.slick-slide,
.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
  transform: translateZ(0);
  perspective: 1000;
  backface-visibility: hidden;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  font-size: 50px;
  margin-top: -50px;
  z-index: 2;
}

.slick-prev {
  left: 10px;
}

.slick-next {
  right: 10px;
}

.fa-angle-left {
  width: 50px;
  height: 50px;
  display: block;
  border-top: solid 1px #333;
  border-left: solid 1px #333;
  transform: rotate(-45deg);
}

.fa-angle-right {
  width: 50px;
  height: 50px;
  display: block;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  transform: rotate(45deg);
}

.slick-dots {
  text-align: center;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
}

.slick-dots li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ddd;
  border-radius: 100%;
  text-indent: -9999px;
  cursor: pointer;
}

.slick-dots li.slick-active {
  background-color: #0071bc;
}

/* FLEX VER
.slick-dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%);
  width: fit-content;;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px 30px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  button{display: none;}
  li {
    display: block;
    width: 8px;
    height: 8px;
    margin: 0 6px;
    background-color: #eee;
    border-radius: 100%;
    cursor: pointer;
    &.slick-active {
      background-color: $color-01;
    }
  }
}
*/
/*
      Colorbox Core Style:
  */
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  font-size: 12px;
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
  overflow: visible;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#cboxOverlay {
  background: #000;
}

#colorbox {
  outline: none;
}

#cboxContent {
  margin: 0px;
  background: #fff;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxTitle {
  position: absolute;
  bottom: -30px;
  left: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  width: 100%;
}

#cboxCurrent {
  position: absolute;
  bottom: -30px;
  left: 0px;
  color: #ccc;
  font-size: 12px;
}

#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
  outline: none;
}

#cboxSlideshow {
  position: absolute;
  top: -20px;
  right: 90px;
  color: #fff;
}

#colorbox .slick-arrow {
  color: #fff;
  font-size: 40px;
}

#cboxPrevious .slick-arrow {
  margin-top: -25px;
  left: -40px;
}

#cboxNext .slick-arrow {
  margin-top: -35px;
  right: -40px;
}

#cboxClose {
  font-size: 40px;
  color: #fff;
  position: absolute;
  top: -60px;
  right: 0;
}

.visible {
  opacity: 1;
  transition: opacity 1s;
}

.invisible {
  opacity: 0;
}

.fromTopIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 1s, transform 1s;
}

.fromTopOut {
  transform: translate(0, -20px);
  opacity: 0;
}

.fromBottomIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 1s, transform 1s;
}

.fromBottomOut {
  transform: translate(0, 20px);
  opacity: 0;
}

.fromLeftIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 1s, transform 1s;
}

.fromLeftOut {
  transform: translate(-20px, 0);
  opacity: 0;
}

.fromRightIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 1s, transform 1s;
}

.fromRightOut {
  transform: translate(20px, 0);
  opacity: 0;
}

.scaleUpIn {
  transform: scale(1, 1);
  opacity: 1;
  transition: opacity 1s, transform 1s;
}

.scaleUpOut {
  transform: scale(1.2, 1.2);
  opacity: 0;
}

.scaleDownIn {
  transform: scale(1, 1);
  opacity: 1;
  transition: opacity 1s, transform 1s;
}

.scaleDownOut {
  transform: scale(0.7, 0.7);
  opacity: 0;
}

.rotateIn {
  transform: rotate(0deg) scale(1);
  opacity: 1;
  transition: opacity 1s, transform 1s;
}

.rotateOut {
  transform: rotate(30deg) scale(0.9);
  opacity: 0;
}

.delay1 {
  transition-delay: 0.1s;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .delay1 {
    transition-delay: 0s;
  }
}

.delay2 {
  transition-delay: 0.2s;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .delay2 {
    transition-delay: 0s;
  }
}

.delay3 {
  transition-delay: 0.3s;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .delay3 {
    transition-delay: 0s;
  }
}

.delay4 {
  transition-delay: 0.4s;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .delay4 {
    transition-delay: 0s;
  }
}

.delay5 {
  transition-delay: 0.5s;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .delay5 {
    transition-delay: 0s;
  }
}

.delay6 {
  transition-delay: 0.4s;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .delay6 {
    transition-delay: 0s;
  }
}

.delay7 {
  transition-delay: 0.7s;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .delay7 {
    transition-delay: 0s;
  }
}

.delay8 {
  transition-delay: 0.8s;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .delay8 {
    transition-delay: 0s;
  }
}

.delay9 {
  transition-delay: 0.9s;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .delay9 {
    transition-delay: 0s;
  }
}

.delay10 {
  transition-delay: 1s;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .delay10 {
    transition-delay: 0s;
  }
}

.speed1 {
  transition-duration: 0.1s;
}

.speed2 {
  transition-duration: 0.2s;
}

.speed3 {
  transition-duration: 0.3s;
}

.speed4 {
  transition-duration: 0.4s;
}

.speed5 {
  transition-duration: 0.5s;
}

.speed6 {
  transition-duration: 0.6s;
}

.speed7 {
  transition-duration: 0.7s;
}

.speed8 {
  transition-duration: 0.8s;
}

.speed9 {
  transition-duration: 0.9s;
}

.speed10 {
  transition-duration: 1s;
}/*# sourceMappingURL=common.css.map */