@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
a,
a:hover {
  color: inherit;
}
.news_d3 {
  width: 100%;
}

.news_d3 > .width-1280-max {
  display: flex;
  align-items: flex-start;
  gap: clamp(36px, 5vw, 60px);
  width: 100%;
  margin: 0 auto;
}

.news_d3 .cate-wrap {
  width: 160px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
  align-self: flex-start;
}

.news_d3 .cate-wrap .titlebox {
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  padding-bottom: 18px;
  margin-bottom: 4px;
}

.news_d3 .cate-wrap .titlebox p {
  letter-spacing: 0.12em;
  line-height: 1;
    white-space: nowrap;
}

.news_d3 .cate-wrap .webgene-blog {
  display: flex;
  flex-direction: column;
}

.news_d3 .cate-wrap .webgene-item a {
  width: 100%;
  padding: clamp(8px, 1.6vw, 16px) 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.14);
  justify-content: flex-start;
  text-decoration: none;
}

.news_d3 .cate-wrap .webgene-item a p {
  letter-spacing: 0.08em;
}

.news_d3 .cate-wrap .webgene-blog .webgene-item a.on {
  position: relative;
  background: rgba(213, 122, 39, 0.1);
  border-color: rgba(213, 122, 39, 0.35);
  padding-left: 18px;
  padding-right: 12px;
}

.news_d3 .cate-wrap .webgene-blog .webgene-item a.on::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 58%;
  background:#333;
  border-radius: 999px;
  transform: translateY(-50%);
}

.news_d3 .cate-wrap .webgene-blog .webgene-item a.on p {
  color:#333;
  font-weight: 700;
}

.news_d3 .contents.news_list {
  flex: 1;
  min-width: 0;
}

/* ---------- blog list ---------- */
.news_d3 .newstop_j .webgene-blog {
  --blog-gap: clamp(28px, 3vw, 42px);

  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(54px, 6vw, 78px) var(--blog-gap);
}

.news_d3 .newstop_j .webgene-blog .webgene-item {
  width: calc((100% - var(--blog-gap) * 2) / 3);
}

.news_d3 .newstop_j .webgene-blog .webgene-item a {
  display: block;
  text-decoration: none;
  transition: ease 0.3s;
}

.news_d3 .newstop_j .webgene-blog .webgene-item a:hover {
  opacity: 0.65;
}

.news_d3 .newstop_j .webgene-blog .webgene-item .imgbox {
  overflow: hidden;
  border-radius: 3px;
}

.news_d3 .newstop_j .webgene-blog .webgene-item .imgbox img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 2.85;
  object-fit: cover;
}

.news_d3 .newstop_j .webgene-blog .webgene-item h3 {
  letter-spacing: 0.08em;
}

.news_d3 .newstop_j .webgene-blog .webgene-item .date {
  color: #b3b3b3;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: "Cardo", "Zen Old Mincho", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
/* ---------- pagination ---------- */
.news_d3 .webgene-pagination {
  width: 100%;
  padding-top: clamp(40px, 5vw, 70px);
}

.news_d3 .webgene-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.news_d3 .webgene-pagination ul a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid #333;
  color: #333;
  background: transparent;
  text-align: center;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: ease 0.3s;
}

.news_d3 .webgene-pagination ul .selected a,
.news_d3 .webgene-pagination ul a:hover {
  background: #333;
  border-color: #333;
  color: #fff;
}

.news_d3 .webgene-pagination ul .selected a {
  pointer-events: none;
}

@media screen and (max-width: 900px) {
  .news_d3 > .width-1280-max {
    gap: clamp(24px, 4vw, 40px);
  }

  .news_d3 .cate-wrap {
    width: 150px;
  }

  .news_d3 .newstop_j .webgene-blog .webgene-item {
    width: calc((100% - var(--blog-gap)) / 2);
  }
}

@media screen and (max-width: 576px) {
  .news_d3 > .width-1280-max {
    flex-direction: column;
    gap: 50px;
  }

  .news_d3 .cate-wrap,
  .news_d3 .contents {
    width: 100%;
    flex: none;
    min-width: 0;
  }

  .news_d3 .cate-wrap {
    position: relative;
    top: 0;
  }

  .news_d3 .cate-wrap .webgene-blog {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 18px;
      margin-top: 12px;
  }

  .news_d3 .cate-wrap .webgene-item a {
    width: auto;
    padding: 6px 0;
  }

  .news_d3 .cate-wrap .webgene-blog .webgene-item a.on {
    padding: 6px 12px;
  }

  .news_d3 .newstop_j .webgene-blog {
    --blog-gap: 30px;
  }

  .news_d3 .newstop_j .webgene-blog .webgene-item {
    width: 100%;
  }
}
/* ---------- news page list ---------- */
.news_d3_news .newstop_b3 .contents {
  width: 100%;
}

.news_d3_news .newstop_b3 .webgene-blog .webgene-item {
  padding-bottom: clamp(18px, 2vw, 24px);
  margin-bottom: clamp(18px, 2vw, 24px);
  border-bottom: 1px solid rgba(51, 51, 51, 0.16);
}

.news_d3_news .newstop_b3 .webgene-blog .webgene-item a .item {
  align-items: flex-start;
  gap: clamp(18px, 2.5vw, 30px);
}

.news_d3_news .newstop_b3 .webgene-blog .webgene-item a .label {
  width: clamp(130px, 15vw, 170px);
  flex: none;
  gap: 14px;
}

.news_d3_news .newstop_b3 .webgene-blog .webgene-item a .catelabel {
  font-size: 11px;
  padding: 2px 8px;
}

.news_d3_news .newstop_b3 .webgene-blog .webgene-item a h3 {
  line-height: 1.8;
    font-weight: 400;
}

@media screen and (max-width: 576px) {
  .news_d3_news .newstop_b3 .webgene-blog .webgene-item a .label {
    width: auto;
  }
}
.news_d3_news .newstop_b3 .webgene-blog .webgene-item a {
  display: block;
}

.news_d3_news .newstop_b3 .news_meta {
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 8px;
}

.news_d3_news .newstop_b3 .news_meta .date {
  white-space: nowrap;
font-family: "Cardo", "Zen Old Mincho", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;}

.news_d3_news .newstop_b3 .news_meta .catelabel {
  padding: 2px 8px;
  border: 1px solid #777;
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
  box-sizing: border-box;
}

.news_d3_news .newstop_b3 .webgene-blog .webgene-item h3 {
  line-height: 1.8;
}
.news_detail {
  position: relative;
}

.news_detail h1 {
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.news_detail .date {
  font-family: "Cardo", "Zen Old Mincho", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.news_detail .catename {
  display: inline-block;
  width: fit-content;
  padding: 3px 10px;
  border: 1px solid #777;
  background: transparent;
  box-sizing: border-box;
  line-height: 1.2;
  font-size: 12px;
  font-weight: 400;
}


.news_detail .img-box {
  width: min(760px, 100%);
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  border-radius: 4px;
}

.news_detail .img-box img {
  display: block;
  width: 100%;
  height: auto;
}

.news_detail article > .lineheight22 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  letter-spacing: 0.08em;
}

.news_detail .more1 {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.titlebox1 {
  position: relative;
}
.titlebox1 h2 {
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.14em;
}
.titlebox1 .jp_title {
  letter-spacing: 0.08em;
}
/* ---------- pagetitle1 ---------- */
.pagetitle1 {
  position: relative;
  min-height: clamp(300px, 30vw, 430px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagetitle1 .pagetitle_txtbox {
  position: relative;
  z-index: 3;
  transform: translateY(clamp(20px, 3vw, 44px));
}
body.on .pagetitle1::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
}
.pagetitle1 .pagetitle_bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.pagetitle1 .pagetitle_bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pagetitle1 .pagetitle_txtbox h1 {
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.2;
}
.pagetitle1 .pagetitle_txtbox p {
  color: #fff;
  letter-spacing: 0.12em;
  margin-top: 8px;
}
@media screen and (max-width: 576px) {
  .pagetitle1 {
    min-height: 220px;
  }
}
/* ---------- pagetitle2 ---------- */
.pagetitle2 {
  position: relative;
  min-height: clamp(190px, 20vw, 280px);
  padding-top: clamp(120px, 7vw, 150px);
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.pagetitle2 .pagetitle_txtbox {
  width: min(1280px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.pagetitle2 .pagetitle_txtbox h1 {
  font-size: clamp(30px, 10vw, 100px);
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.1;
}

@media screen and (max-width: 576px) {
  .pagetitle2 {
    min-height: 180px;
  }

  .pagetitle2 .pagetitle_txtbox {
    width: calc(100% - 40px);
  }
}

/* ---------- footer shop ---------- */
.footer_shop_section {
  position: relative;
  overflow: hidden;
}
.footer_shop_link {
  position: relative;
  display: block;
  min-height: clamp(320px, 24vw, 470px);
  overflow: hidden;
  text-decoration: none;
  isolation: isolate;
}
.footer_shop_bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
body.on .footer_shop_bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.12) 48%, rgba(0, 0, 0, 0.5) 100%), rgba(0, 0, 0, 0.18);
  transition: ease 0.55s;
}
.footer_shop_bg::after {
  content: "";
  position: absolute;
  left: -20%;
  top: 0;
  z-index: 3;
  width: 18%;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-18deg);
  filter: blur(6px);
  transition: ease 0.7s;
}
.footer_shop_bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: ease 1s;
}
.footer_shop_txtbox {
  position: relative;
  z-index: 4;
  min-height: clamp(320px, 24vw, 470px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer_shop_txtbox .lead1 {
  color: #fff;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  transition: ease 0.45s;
}
.footer_shop_txtbox h2 {
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.18em;
  margin-bottom: clamp(18px, 2vw, 26px);
  transition: ease 0.45s;
}
/* more1 inside full link */
.footer_shop_link .more1 {
  position: relative;
  display: inline-block;
  min-width: 170px;
  padding: 15px 34px;
  background: #333;
  border: 1px solid #333;
  border-radius: 999px;
  overflow: hidden;
  transition: ease 0.35s;
  pointer-events: none;
}
.footer_shop_link .more1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #666;
  transform: translateX(-105%) skewX(-18deg);
  transition: transform 0.45s ease;
}
.footer_shop_link .more1::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 28px;
  height: 180%;
  background: rgba(255, 255, 255, 0.55);
  transform: rotate(24deg) translateX(-120px);
  filter: blur(2px);
  transition: transform 0.65s ease;
}
.footer_shop_link .more1 .flex {
  position: relative;
  z-index: 2;
  justify-content: center;
  align-items: center;
}
.footer_shop_link .more1 p {
  color: #fff;
  letter-spacing: 0.2em;
  font-size: clamp(12px, 1.3vw, 18px);
  line-height: 1;
  transition: ease 0.35s;
}
/* hover */
.footer_shop_link:hover .footer_shop_bg img {
  transform: scale(1.09) translateX(1.5%);
}
body.on .footer_shop_link:hover .footer_shop_bg::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0.62) 100%), rgba(0, 0, 0, 0.2);
}
.footer_shop_link:hover .footer_shop_bg::after {
  left: 120%;
}
.footer_shop_link:hover .footer_shop_txtbox .lead1 {
  transform: translateY(-4px);
}
.footer_shop_link:hover .footer_shop_txtbox h2 {
  letter-spacing: 0.25em;
  transform: translateY(-4px) scale(1.02);
}
.footer_shop_link:hover .more1 {
  border-color: #666;
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}
.footer_shop_link:hover .more1::before {
  transform: translateX(0) skewX(-18deg);
}
.footer_shop_link:hover .more1::after {
  transform: rotate(24deg) translateX(360px);
}
.footer_shop_link:hover .more1 p {
  transform: scale(1.04);
}
/* ---------- footer ---------- */
.footer {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 110px) 0 clamp(48px, 6vw, 80px);
}
.footer .inner {
  position: relative;
}
.footer_contents {
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(50px, 8vw, 120px);
}
.footer_left {
  width: clamp(180px, 20vw, 260px);
}
.footer_logo {
  width: clamp(140px, 14vw, 190px);
  margin-bottom: 24px;
}
.footer_logo img {
  display: block;
  width: 100%;
}
.footer_shop_btn {
  width: fit-content;
  margin-bottom: 24px;
}
.footer_shop_btn a {
  display: block;
  min-width: 150px;
  padding: 11px 24px;
  border-radius: 999px;
  background: #d57a27;
  text-align: center;
  text-decoration: none;
  transition: ease 0.3s;
}
.footer_shop_btn a:hover {
  background: #333;
  transform: translateY(-2px);
}
.footer_shop_btn p {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
}
.footer_sns {
  justify-content: flex-start;
  gap: 14px;
}
.footer_sns a {
  display: block;
  width: 28px;
  transition: ease 0.3s;
}
.footer_sns a:hover {
  opacity: 0.6;
  transform: translateY(-2px);
}
.footer_sns img {
  display: block;
  width: 100%;
}
.footer_nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(46px, 8vw, 110px);
  padding-top: 6px;
}
.footer_nav_col {
  display: grid;
  gap: 12px;
}
.footer_nav_col a {
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: ease 0.3s;
}
.footer_nav_col a:hover {
  opacity: 0.55;
}
.copyright {
  position: absolute;
  right: clamp(20px, 4vw, 60px);
  bottom: 0;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .footer_contents {
    display: block;
  }
  .footer_left {
    width: 100%;
    text-align: center;
    margin-bottom: 42px;
  }
  .footer_logo, .footer_shop_btn {
    margin-right: auto;
    margin-left: auto;
  }
  .footer_sns {
    justify-content: center;
  }
  .footer_nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .copyright {
    position: static;
    text-align: center;
    margin-top: auto;
  }
}
@media screen and (max-width: 576px) {
  .footer_nav {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }
}
.footer_nav_col {
  display: grid;
  align-content: start;
  gap: 12px;
}
.footer_nav_col:nth-child(3) {
  gap: 10px;
}
.footer_nav_col a p {
  line-height: 1.4;
    font-weight: 400;
    
}
.copyright {
  position: absolute;
  right: clamp(20px, 4vw, 60px);
  bottom: 0;
  color: rgba(51, 51, 51, 0.62);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .copyright {
    position: static;
    text-align: center;
    margin-top: 42px;
    font-size: 11px;
  }
}
/* ---------- header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  padding: 4px clamp(18px, 3vw, 36px);
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  background: rgba(246, 242, 234, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}
.header .logo {
  width: clamp(84px, 9vw, 120px);
}
.header .logo img {
  display: block;
  width: 100%;
}
.header .head_nav {
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 3vw, 42px);
}
.header .head_nav .ul {
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
}
.header .head_nav .ul a {
  text-decoration: none;
}
.header .head_nav .ul p {
  color: #333;
  font-size: 14px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.header .online_bt a {
  display: block;
  min-width: 154px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #d57a27;
  text-align: center;
  text-decoration: none;
  transition: ease 0.3s;
}
.header .online_bt a:hover {
  background: #333;
  transform: translateY(-2px);
}
.header .online_bt p {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
}
/* ---------- menu button ---------- */
.menu-bt {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}
.menu-bt .line {
  position: absolute;
  inset: 0;
}
.menu-bt .line div {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 1px;
  background: #333;
  transform: translate(-50%, -50%);
  transition: ease 0.3s;
}
.menu-bt .line div:nth-child(1) {
  transform: translate(-50%, calc(-50% - 8px));
}
.menu-bt .line div:nth-child(2) {
  transform: translate(-50%, -50%);
}
.menu-bt .line div:nth-child(3) {
  transform: translate(-50%, calc(-50% + 8px));
}
.menu-bt.active .line div:nth-child(1) {
  transform: translate(-50%, -50%) rotate(35deg);
}
.menu-bt.active .line div:nth-child(2) {
  opacity: 0;
}
.menu-bt.active .line div:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-35deg);
}
/* ---------- menu-wrap ---------- */
.menu-wrap {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 24px 50px;
  box-sizing: border-box;
  background: rgba(246, 242, 234, 0.98);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.menu-wrap.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-wrap .menu-wrap_inner {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-wrap .menuwrap_box {
  width: min(900px, 100%);
  text-align: center;
  padding-top: clamp(60px, 4vw, 100px);
  box-sizing: border-box;
}



.menu-wrap .ul_menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px clamp(28px, 5vw, 70px);
  margin-bottom: clamp(36px, 5vw, 56px);
}

.menu-wrap .li a {
  display: block;
  padding: 18px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  text-decoration: none;
}

.menu-wrap .li .en {
  color: #d57a27;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.menu-wrap .li .jp {
  color: #333;
  font-size: 17px;
  letter-spacing: 0.08em;
}

.menu-wrap .menu_online_bt a {
  display: inline-block;
  min-width: 190px;
  padding: 14px 30px;
  border-radius: 999px;
  background: #d57a27;
  text-decoration: none;
  transition: ease 0.3s;
}

.menu-wrap .menu_online_bt a:hover {
  background: #333;
  transform: translateY(-2px);
}

.menu-wrap .menu_online_bt p {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.18em;
}

/* ---------- responsive ---------- */
@media screen and (max-width: 1080px) {
  .header .head_nav .ul,
  .header .head_nav > .online_bt {
    display: none;
  }

  .menu-bt {
    display: block;
  }
}

@media screen and (max-width: 576px) {
  .menu-wrap {
    padding: 0px 24px 42px;
  }

  .menu-wrap .ul_menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
    margin-bottom: clamp(28px, 8vw, 42px);
    margin-top: 0px;
  }

  .menu-wrap .li a {
    padding: 14px 8px;
  }

  .menu-wrap .li .en {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .menu-wrap .li .jp {
    font-size: 14px;
    letter-spacing: 0.04em;
  }
}
.more1 a {
  position: relative;
  display: inline-block;
  min-width: 170px;
  padding: 15px 34px;
  background: #333;
  color: #fff;
  text-decoration: none;
  border: 1px solid #333;
  border-radius: 999px;
  overflow: hidden;
  transition: ease 0.35s;
}
.more1 a .flex {
  position: relative;
  z-index: 3;
  justify-content: center;
  align-items: center;
}
.more1 a p {
  color: #fff;
  letter-spacing: 0.2em;
  font-size: clamp(12px, 1.4vw, 14px);
  line-height: 1;
  transition: ease 0.35s;
}
.more1 a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, #666 0%, #222 45%, #999 100%);
  transform: translateX(-110%) skewX(-18deg);
  transform-origin: left;
  transition: transform 0.48s ease;
}
.more1 a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  z-index: 2;
  width: 45%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.more1 a:hover {
  border-color: #777;
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.25);
}
.more1 a:hover::before {
  transform: translateX(0) skewX(-18deg);
}
.more1 a:hover::after {
  left: 130%;
}
.more1 a:hover p {
  transform: translateX(-4px) scale(1.04);
  letter-spacing: 0.26em;
}
.main-wrap {
  overflow: hidden;
}
.nowhite {
  white-space: nowrap;
}
.font400 {
  font-weight: 400;
}
.font500 {
  font-weight: 500;
}
.lineheight22 {
  line-height: 2.2;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.txtwhite {
  color: #fff;
}
.color1 {}
.color2 {}
.color3 {}
.bg1 {}
.bg2 {}
.bg3 {}
.fontnoto {
  font-family: "Noto Sans JP", "Noto Sans", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.zenkaku {
  font-family: "Zen Kaku Gothic New", "Noto Sans", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.fontca {
  font-family: "Cardo", "Zen Old Mincho", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
}
.entitle0 {
  font-family: "Cardo", "Zen Old Mincho", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  font-size: clamp(56px, 6vw, 72px);
  letter-spacing: 0.08em;
}
.entitle1 {
  font-family: "Cardo", "Zen Old Mincho", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  font-size: clamp(40px, 4vw, 57px);
  letter-spacing: 0.12em;
}
.entitle2 {
  font-family: "Cardo", "Zen Old Mincho", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  font-size: clamp(32px, 5vw, 46px);
  letter-spacing: 0.1em;
}
.entitle3 {
  font-family: "Cardo", "Zen Old Mincho", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 0.08em;
}
.entitle4 {
  font-family: "Cardo", "Zen Old Mincho", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  font-size: clamp(18px, 3vw, 22px);
  letter-spacing: 0.08em;
}
.default_title1 {
  font-size: clamp(28px, 3.2vw, 44px);
}
.default_title2 {
  font-size: clamp(26px, 3.0vw, 32px);
}
.default_title3 {
  font-size: clamp(18px, 2.8vw, 28px);
}
.default_title4 {
  font-size: clamp(18px, 1.8vw, 22px);
}
.default_txt1 {
  font-size: clamp(15px, 1.4vw, 18px);
}
.default_txt2 {
  font-size: clamp(12px, 1.2vw, 14px);
}
.default_txt3 {
  font-size: clamp(12px, 1.2vw, 14px);
}
.mg_b_1 {
  margin-bottom: 150px;
}
.mg_b_2 {
  margin-bottom: 100px;
}
.mg_b_3 {
  margin-bottom: 80px;
}
.mg_b_4 {
  margin-bottom: 50px;
}
.mg_b_5 {
  margin-bottom: 30px;
}
@media screen and (max-width: 1080px) {
  .mg_b_1 {
    margin-bottom: 100px;
  }
  .mg_b_2 {
    margin-bottom: 80px;
  }
  .mg_b_3 {
    margin-bottom: 60px;
  }
  .mg_b_4 {
    margin-bottom: 40px;
  }
  .mg_b_5 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .mg_b_1 {
    margin-bottom: 80px;
  }
  .mg_b_2 {
    margin-bottom: 60px;
  }
  .mg_b_3 {
    margin-bottom: 50px;
  }
  .mg_b_4 {
    margin-bottom: 30px;
  }
  .mg_b_5 {
    margin-bottom: 20px;
  }
}
.mg_t_1 {
  margin-top: 150px;
}
.mg_t_2 {
  margin-top: 100px;
}
.mg_t_3 {
  margin-top: 80px;
}
.mg_t_4 {
  margin-top: 50px;
}
.mg_t_5 {
  margin-top: 30px;
}
@media screen and (max-width: 1080px) {
  .mg_t_1 {
    margin-top: 100px;
  }
  .mg_t_2 {
    margin-top: 80px;
  }
  .mg_t_3 {
    margin-top: 60px;
  }
  .mg_t_4 {
    margin-top: 40px;
  }
  .mg_t_5 {
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .mg_t_1 {
    margin-top: 80px;
  }
  .mg_t_2 {
    margin-top: 60px;
  }
  .mg_t_3 {
    margin-top: 50px;
  }
  .mg_t_4 {
    margin-top: 30px;
  }
  .mg_t_5 {
    margin-top: 20px;
  }
}
.pd_wrap {
  padding: 150px 80px 0;
}
.pd_wrap_all {
  padding: 150px 80px 150px;
}
.pd_wrap_side {
  padding-left: 80px;
  padding-right: 80px;
}
.pd_wrap_t {
  padding-top: 150px;
}
.pd_wrap_b {
  padding-bottom: 150px;
}
.pd_wrap_tb {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media screen and (max-width: 1280px) {
  .pd_wrap {
    padding: 150px 60px 0;
  }
  .pd_wrap_all {
    padding: 150px 60px 150px;
  }
  .pd_wrap_side {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 768px) {
  .pd_wrap {
    padding: 100px 50px 0;
  }
  .pd_wrap_all {
    padding: 100px 50px 100px;
  }
  .pd_wrap_side {
    padding-left: 50px;
    padding-right: 50px;
  }
  .pd_wrap_t {
    padding-top: 100px;
  }
  .pd_wrap_b {
    padding-bottom: 100px;
  }
  .pd_wrap_tb {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 576px) {
  .pd_wrap {
    padding: 80px 20px 0;
  }
  .pd_wrap_all {
    padding: 80px 20px 80px;
  }
  .pd_wrap_side {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pd_wrap_t {
    padding-top: 80px;
  }
  .pd_wrap_b {
    padding-bottom: 80px;
  }
  .pd_wrap_tb {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
html {}
body {
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background-color: #F5F1E8;
  color: #333333;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("https://kinugawa-inc.com/system_panel/uploads/images/bg1.png");
  background-repeat: repeat;
  background-position: left top;
  opacity: 0.4;
  pointer-events: none;
}
body .bg_img_wrap {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.on .bg_img_wrap .bg_img {
  display: none;
}
body .bg_img_wrap2 {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.on .bg_img_wrap2 > img {
  display: none;
}
a {
  display: inline-block;
  transition: ease 0.3s;
}
a:hover {
  opacity: 0.5;
}
a p, a, a i {
  color: #000000;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-black {
  font-weight: 900;
}
.cate_wrap > .cate {
  padding-top: 150px;
}
/* ---------- common ---------- */
/* ---------- header ---------- */
.header {}
/* ---------- footer ---------- */
/* ANIME */
.sc-anime.topin.on {
  opacity: 0;
  transform: translateY(-50px);
}
.sc-anime.topin.on.active {
  animation-name: topin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.bottomin.on {
  opacity: 0;
  transform: translateY(50px);
}
.sc-anime.bottomin.on.active {
  animation-name: bottomin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.leftin.on {
  opacity: 0;
  transform: translateX(-50px);
}
.sc-anime.leftin.on.active {
  animation-name: leftin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.rightin.on {
  opacity: 0;
  transform: translateX(50px);
}
.sc-anime.rightin.on.active {
  animation-name: rightin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.fadein.on {
  opacity: 0;
}
.sc-anime.fadein.on.active {
  animation-name: fadein;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.blurin.on {
  opacity: 0;
  -ms-filter: blur(6px);
  filter: blur(6px);
}
.sc-anime.blurin.on.active {
  animation-name: blurin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.blurin2.on {
  opacity: 0;
  transform: translateY(50px);
  -ms-filter: blur(6px);
  filter: blur(6px);
}
.sc-anime.blurin2.on.active {
  animation-name: blurin2;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
@keyframes topin {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes bottomin {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes leftin {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes rightin {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes upin {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes blurin {
  0% {
    opacity: 0;
    -ms-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    -ms-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes blurin2 {
  0% {
    opacity: 0;
    transform: translateY(50px);
    -ms-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
    -ms-filter: blur(0px);
    filter: blur(0px);
  }
}
/* color */
.txt-color-normal {
  color: #000000;
}
.txt-white {
  color: #ffffff;
}
.txt-red {
  color: red;
}
.txt-color1 {
  color: #FFE93C
}
.txt-color2 {
  color: #F1F1E9
}
.txt-color3 {
  color: #021745
}
.txt-color4 {
  color: #EBF5E5
}
.bg-white {
  background-color: #ffffff;
}
.bg-black {
  background-color: black
}
.bg-color1 {
  background-color: #FFE93C
}
.bg-color2 {
  background-color: #F1F1E9
}
.bg-color3 {
  background-color: #021745
}
.bg-color4 {
  background-color: #EBF5E5
}
.border-color1 {
  border-color: #FFE93C
}
.border-color2 {
  border-color: #F1F1E9
}
.border-color3 {
  border-color: #021745
}
.border-color4 {
  border-color: #EBF5E5
}
.hvr-txt-color-normal:hover {
  color: #000000;
}
.hvr-txt-white:hover {
  color: #ffffff;
}
.hvr-txt-red:hover {
  color: red;
}
.hvr-txt-color1:hover {
  color: #FFE93C
}
.hvr-txt-color2:hover {
  color: #F1F1E9
}
.hvr-txt-color3:hover {
  color: #021745
}
.hvr-txt-color4:hover {
  color: #EBF5E5
}
.hvr-bg-white:hover {
  background-color: #ffffff;
}
.hvr-bg-black:hover {
  background-color: black
}
.hvr-bg-color1:hover {
  background-color: #FFE93C
}
.hvr-bg-color2:hover {
  background-color: #F1F1E9
}
.hvr-bg-color3:hover {
  background-color: #021745
}
.hvr-bg-color4:hover {
  background-color: #EBF5E5
}
.hvr-border-color1:hover {
  border-color: #FFE93C
}
.hvr-border-color2:hover {
  border-color: #F1F1E9
}
.hvr-border-color3:hover {
  border-color: #021745
}
.hvr-border-color4:hover {
  border-color: #EBF5E5
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {
  .pd_wrap {
    padding: 150px 60px 0;
  }
  .pd_wrap_all {
    padding: 150px 60px 150px;
  }
  .pd_wrap_side {
    padding-left: 60px;
    padding-right: 60px;
  }
  /* ---------- common ---------- */
  /* ---------- header ---------- */
  /* ---------- footer ---------- */
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {
  /* ---------- common ---------- */
  /* ---------- header ---------- */
  /* ---------- footer ---------- */
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {
  .pd_wrap {
    padding: 100px 50px 0;
  }
  .pd_wrap_all {
    padding: 100px 50px 100px;
  }
  .pd_wrap_side {
    padding-left: 50px;
    padding-right: 50px;
  }
  .cate_wrap > .cate {
    padding-top: 100px;
  }
  /* ---------- common ---------- */
  /* ---------- header ---------- */
  /* ---------- footer ---------- */
}
/* ---------- スマートフォン ---------- */
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {
  .pd_wrap {
    padding: 80px 20px 0;
  }
  .pd_wrap_all {
    padding: 80px 20px 80px;
  }
  .pd_wrap_side {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cate_wrap > .cate {
    padding-top: 80px;
  }
  /* ---------- common ---------- */
  /* ---------- header ---------- */
  /* ---------- footer ---------- */
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}