@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

p,
blockquote,
pre {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  border: none;
  border-top: 1px solid currentColor;
}

address {
  font-style: normal;
}

body {
  font-family: "Yu Gothic", "Meiryo", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #333;
  background-color: #fff;
  width: 100%;
  overflow-x: hidden;
}

header,
main,
footer {
  width: 100%;
}

main {
  margin-top: 70px;
}

section {
  height: 110vh;
}

h1 {
  font-size: 36px;
  font-weight: bold;
}

.content-wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

a:hover {
  color: #ffd700;
  text-decoration: underline;
}

a:visited {
  color: #7a6800;
}

.hero {
  height: calc(100vh - 70px);
  margin: auto;
  position: relative;
}

.hero .hero-inner {
  position: relative;
  width: 100%;
  height: 100%;
  margin: auto;
}

.hero .hero-inner .title {
  width: 1200px;
  height: 100%;
  margin: auto;
  position: relative;
}

.hero .hero-inner .title h1 {
  position: absolute;
  top: 30%;
  left: 0;
  z-index: 2;
  color: #fff;
}
@media (max-width: 1200px) {
  .hero .hero-inner .title h1 {
    left: 20px;
  }
}

.hero .hero-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

/* 再生/一時停止ボタン */
.video-toggle {
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 2;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.6);
}

/* product */
.product {
  display: flex;
}

.product .section-inner-left {
  width: 50%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.product .section-inner-left h2 {
  margin: 0 0 0 7%;
}

.product .section-inner-left h2 img {
  height: 45px;
}
@media (max-width: 480px) {
  .product .section-inner-left h2 img {
    height: 35px;
  }
}

.product .section-inner-left p {
  width: 80%;
  margin: 24px 0 0 7%;
  font-size: 18px;
}
@media (max-width: 480px) {
  .product .section-inner-left p {
    font-size: 1rem;
  }
}

.product .section-inner-left a {
  display: inline-block;
  margin: 24px 0 0 7%;
  font-size: 18px;
}
.product .section-inner-left a:hover {
  color: #ffd700;
  text-decoration: underline;
}
.product .section-inner-left a:visited {
  color: #c2791a;
}

.product .section-inner-left a::before {
  font-family: "Font Awesome 6 Free";
  content: "\f138";
  font-weight: 900;
  font-size: 18px;
  font-weight: bold;
  margin-right: 3px;
  color: #fff;
  display: inline-block;
  text-decoration: none;
}

.product .section-inner-right {
  width: 50%;
  height: 100%;
  overflow: clip;
}

.product .section-inner-right video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.product .section-inner-right video source {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (max-height: 983px) {
  .product .section-inner-right video {
    -o-object-fit: none;
       object-fit: none;
    height: 100%;
    width: auto;
    min-width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}
/* about */
.about {
  height: 110vh;
  display: flex;
}

.about .section-inner-right {
  width: 50%;
  height: 100%;
  color: #fff;
  background: rgb(33, 33, 33);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.about .section-inner-right h2 {
  margin: 0 0 0 7%;
}

.about .section-inner-right h2 img {
  height: 45px;
}
@media (max-width: 480px) {
  .about .section-inner-right h2 img {
    height: 35px;
  }
}

.about .section-inner-right p {
  width: 80%;
  margin: 24px 0 0 7%;
  font-size: 18px;
}
@media (max-width: 480px) {
  .about .section-inner-right p {
    font-size: 1rem;
  }
}

.about .section-inner-right a {
  display: inline-block;
  margin: 24px 0 0 7%;
  font-size: 18px;
}
.about .section-inner-right a:hover {
  color: #ffd700;
  text-decoration: underline;
}
.about .section-inner-right a:visited {
  color: #c2791a;
}

.about .section-inner-right a::before {
  font-family: "Font Awesome 6 Free";
  content: "\f138";
  font-weight: 900;
  font-size: 18px;
  font-weight: bold;
  margin-right: 3px;
  color: #fff;
  display: inline-block;
  text-decoration: none;
}

.about .section-inner-left {
  width: 50%;
  height: 100%;
  overflow: clip;
}

.about .section-inner-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 5% center;
     object-position: 5% center;
}
@media (max-width: 768px) {
  .about .section-inner-left img {
    -o-object-position: 20% center;
       object-position: 20% center;
  }
}

/* news */
.news {
  height: 100%;
  margin-bottom: 60px;
  padding: 5% 10% 5%;
}

.news h2 {
  margin: 0 0 10% 0;
  display: flex;
  justify-content: center;
}

.news h2 img {
  height: 45px;
}

.news .news-list {
  display: grid;
  grid-template-columns: auto 1fr auto;
  row-gap: 24px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.news-item {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: subgrid;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.news-date {
  color: #888;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .news-date {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .news-date {
    font-size: 0.8rem;
  }
}

.news-title {
  font-size: 1.2rem;
  text-decoration: none;
}
.news-title:hover {
  color: #ffd700;
  text-decoration: underline;
}

.news-cat {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .news-cat {
    display: none;
  }
}

.cat-label {
  background: #333;
  color: #fff;
  font-size: 0.8rem;
  padding: 2px 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news .section-inner .section-link {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.news .section-inner a {
  font-size: 1.2rem;
  color: #333;
}
.news .section-inner a:hover {
  color: #ffd700;
  text-decoration: underline;
}
.news .section-inner a:visited {
  font-size: 1.2rem;
  color: #c2791a;
}
@media (max-width: 768px) {
  .news .section-inner a {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .news .section-inner a {
    font-size: 0.8rem;
  }
}

.news .section-link a::before {
  font-family: "Font Awesome 6 Free";
  content: "\f138";
  font-weight: 900;
  font-size: 18px;
  font-weight: bold;
  margin-right: 3px;
  color: #333;
  display: inline-block;
  text-decoration: none;
}

.breadcrumb {
  padding: 10px 0 0;
  font-size: 0.8rem;
}
@media (max-width: 1024px) {
  .breadcrumb {
    padding: 10px 20px 0;
  }
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  color: #666;
}

.breadcrumb a {
  color: #333;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.scroll-controls {
  font-size: 12px;
  position: fixed;
  bottom: 60px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 9999;
}
@media (max-width: 480px) {
  .scroll-controls {
    display: none;
  }
}

.nav-btn {
  padding: 5px 10px;
  background: #333;
  color: #fff;
  border: none;
  cursor: pointer;
  display: none; /* JSで制御 */
}

.sidebar {
  flex: 1;
  min-width: 250px;
  padding: 10px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  height: -moz-fit-content;
  height: fit-content;
  background: #f5f5f5;
  border: 3px solid #ccc;
}

.sidebar h3 {
  font-weight: bold;
  border-bottom: solid 1px #ccc;
}

.sidebar .sidebar-widget {
  margin-bottom: 10px;
}

.sidebar .sidebar-widget .no-children,
.sidebar .sidebar-widget .sidebar-item,
.sidebar .sidebar-widget .sidebar-toggle__item {
  font-weight: bold;
  padding-left: 10px;
}
.sidebar .sidebar-widget .no-children:hover,
.sidebar .sidebar-widget .sidebar-item:hover,
.sidebar .sidebar-widget .sidebar-toggle__item:hover {
  color: #fff;
  font-weight: bold;
  background: rgb(121, 121, 121);
}
.sidebar .sidebar-widget .no-children a,
.sidebar .sidebar-widget .sidebar-item a,
.sidebar .sidebar-widget .sidebar-toggle__item a {
  display: block;
  color: inherit;
  font-weight: bold;
}
.sidebar .sidebar-widget .no-children:hover a,
.sidebar .sidebar-widget .sidebar-item:hover a,
.sidebar .sidebar-widget .sidebar-toggle__item:hover a {
  color: #fff;
}
.sidebar .sidebar-widget .no-children.current,
.sidebar .sidebar-widget .sidebar-item.current,
.sidebar .sidebar-widget .sidebar-toggle__item.current {
  padding-left: 5px;
}

.sidebar .sidebar-widget .no-children a,
.sidebar .sidebar-widget .sidebar-item a {
  color: #333;
}
.sidebar .sidebar-widget .no-children a:visited,
.sidebar .sidebar-widget .sidebar-item a:visited {
  color: #333;
}
.sidebar .sidebar-widget .no-children a:hover,
.sidebar .sidebar-widget .sidebar-item a:hover {
  color: #fff;
}

.sidebar-toggle,
.no-children {
  font-weight: bold;
  border-left: solid 1px #ccc;
  border-right: solid 1px #ccc;
}

.sidebar .sidebar-toggle {
  width: 100%;
  text-align: left;
  display: block;
  background: #ddd;
  border-bottom: solid 2px #333;
}

.sidebar .sidebar-toggle__btn {
  width: 100%;
  text-align: left;
  padding-left: 5px;
}

.sidebar-toggle__list a,
.sidebar-toggle__single a {
  display: block;
  padding: 3px 10px;
}

.sidebar .current {
  background-color: #e6e2d8;
  border-left: 5px solid transparent;
  border-left-color: #888;
}

.tax-news_category .sidebar .current {
  background-color: #ddd;
  border-left: 0;
  border-left-color: #888;
}
.tax-news_category .sidebar .current:hover {
  background-color: rgb(121, 121, 121);
}

.sidebar-item,
.sidebar-toggle__item,
.sidebar-toggle__btn {
  display: block;
  border-bottom: 1px solid #ccc;
}

.error404 .not-found {
  max-width: 1200px;
  height: calc(70dvh - 70px);
  margin: 0 auto;
}

.error404 .not-found .not-found-inner {
  height: 100%;
  padding: 20px;
  background-image: url(../images/tsumetogi_404.svg);
  background-size: 30%;
  background-position: left center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .error404 .not-found .not-found-inner {
    background-image: none;
  }
}

.error404 .not-found .not-found-inner h1 {
  font-size: 6.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}/*# sourceMappingURL=common.css.map */