.txt-a {
  position: relative;
  box-sizing: border-box;
  border: solid 2px #ffffff;
  background: #ffffff;
  color: #544C42;
  display: flex;
  align-items: center;
  width: 13.6458333333vw;
  height: 3.6458333333vw;
  border-radius: 3.6458333333vw;
  margin: 0 auto;
  gap: 0.8vw;
  transition: 1s;
  padding: 0 1.5625vw;
  box-sizing: border-box;
}
.txt-a .icon {
  width: 1.71875vw;
  height: 1.71875vw;
  border-radius: 1.71875vw;
  background: #544C42;
  border: solid 1px #544C42;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 2.2395833333vw;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.txt-a .icon svg {
  display: flex;
  width: 0.78125vw;
  height: 0.78125vw;
}
.txt-a .icon svg path {
  transition: 1s;
  fill: #ffffff;
}
.txt-a:hover {
  background: #544C42;
  color: #ffffff;
}
.txt-a:hover .icon {
  border-color: #ffffff;
}

.ttl-box {
  position: relative;
  margin-bottom: 2.6041666667vw;
  padding-bottom: 2.6041666667vw;
}
.ttl-box .txt-h2 {
  color: #ffffff;
  line-height: 1;
}
.ttl-box .txt-h2 .txt-e {
  color: #87827B;
  display: block;
  line-height: 1;
  margin-bottom: 1.5625vw;
}
.ttl-box:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.5625vw;
  height: 2px;
  background: #ffffff;
}

@media screen and (max-width: 767px) {
  .txt-a {
    width: 100%;
    height: 50px;
    border-radius: 50px;
    gap: 10px;
    margin: 0 auto;
    font-size: 16px;
    padding: 0 20px;
  }
  .txt-a .icon {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    right: 20px;
  }
  .txt-a .icon svg {
    width: 12px;
    height: 12px;
  }
  .txt-a:hover {
    background: #ffffff;
    color: #000000;
  }
  .txt-a:hover svg path {
    fill: #000000;
  }
  .ttl-box {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .ttl-box:after {
    width: 30px;
  }
  .ttl-box .txt-h2 {
    font-size: 14px;
  }
  .ttl-box .txt-h2 .txt-e {
    font-size: 38px;
    margin-bottom: 15px;
  }
}
/*==========================================================================
section#mv_area
========================================================================== */
section#mv_area {
  position: relative;
}
section#mv_area .img-box {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  z-index: 1;
  transform: scale(1);
}
section#mv_area .img-box::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
section#mv_area .txt-box {
  position: absolute;
  z-index: 3;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
section#mv_area .txt-box::before {
  content: "";
  background: url(../img/yokozuna_icon001.webp) center no-repeat;
  background-size: cover;
  width: 31.6666666667vw;
  height: 27.6875vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
section#mv_area .txt-box .txt-h1 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
section#mv_area .txt-box .txt-h1 .item {
  writing-mode: tb;
  padding: 0;
  margin: 0;
  display: block;
  color: #ffffff;
  letter-spacing: 1vw;
}

body:not(.loading) section#mv_area .img-box img {
  -webkit-animation: fadeInScale 1.5s ease-out 0.3s forwards, slowZoom 15s linear 1.8s forwards;
  animation: fadeInScale 1.5s ease-out 0.3s forwards, slowZoom 15s linear 1.8s forwards;
}

@-webkit-keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@-webkit-keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media screen and (max-width: 767px) {
  section#mv_area {
    position: relative;
  }
  section#mv_area .img-box {
    position: relative;
    width: 100%;
    height: 100svh;
    overflow: hidden;
    z-index: 1;
  }
  section#mv_area .img-box img {
    -o-object-position: right;
       object-position: right;
  }
  section#mv_area .img-box::before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
  }
  section#mv_area .txt-box::before {
    width: 85vw;
    height: 74.6875vw;
  }
  section#mv_area .txt-box .txt-h1 {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  section#mv_area .txt-box .txt-h1 .item {
    display: block;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 10px;
  }
  section#mv_area .txt-box .txt-h1 .item.txt-j {
    font-size: 32px;
    margin-bottom: 0;
  }
}
/*==========================================================================
section#about_area
========================================================================== */
section#about_area {
  position: relative;
}
section#about_area .inner {
  padding-top: 10.4166666667vw;
  padding-bottom: 7.8125vw;
  position: relative;
}
section#about_area .box {
  position: relative;
  justify-content: space-between;
  align-items: flex-end;
}
section#about_area .top-box {
  justify-content: space-between;
}
section#about_area .top-box .txt-box {
  width: 40.15%;
  position: relative;
}
section#about_area .top-box .txt-box::before {
  content: "";
  background: url(../img/yokozuna_icon002.webp) center no-repeat;
  background-size: cover;
  width: 31.6666666667vw;
  height: 27.6875vw;
  position: absolute;
  top: -9.65625vw;
  right: -11.3020833333vw;
}
section#about_area .top-box .txt-box .txt-h3 {
  margin: 0;
  color: #ffffff;
  margin-bottom: 1.5vw;
}
section#about_area .top-box .txt-box .txt-p {
  color: #ffffff;
  line-height: 1.8em;
}
section#about_area .top-box .txt-box .txt-a {
  margin: 0;
  position: absolute;
  right: 0;
  bottom: 0;
}
section#about_area .top-box .img-box {
  width: 53.3%;
  height: 32.8125vw;
}
section#about_area .bot-box {
  margin-top: 11.9791666667vw;
}
section#about_area .bot-box .list-box {
  justify-content: space-between;
}
section#about_area .bot-box .list-box .img-box {
  margin-bottom: 1.5625vw;
}
section#about_area .bot-box .list-box .txt-n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.2083333333vw;
  height: 5.2083333333vw;
  border-radius: 5.2083333333vw;
  border: solid 1px #ffffff;
  position: absolute;
  top: -4.1666666667vw;
  left: -2.6041666667vw;
  z-index: -1;
}
section#about_area .bot-box .list-box .txt-h3 {
  margin-bottom: 1.5625vw;
}
section#about_area .bot-box .list-box .txt-p {
  line-height: 1.8em;
}
section#about_area .bot-box .list-box li {
  position: relative;
  width: 30.5%;
}
section#about_area .txt-a {
  margin-top: 7.8125vw;
}

@media screen and (max-width: 767px) {
  section#about_area .inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  section#about_area .top-box .txt-box {
    position: relative;
    margin-bottom: 0;
    width: 100%;
  }
  section#about_area .top-box .txt-box::before {
    width: 57.666667vw;
    height: 47.6875vw;
  }
  section#about_area .top-box .txt-box .txt-h3 {
    margin-bottom: 30px;
    font-size: 20px;
  }
  section#about_area .top-box .txt-box .txt-p {
    font-size: 14px;
  }
  section#about_area .top-box .txt-box .txt-a {
    margin: 0;
    margin-top: 50px;
    position: relative;
    bottom: initial;
    right: initial;
  }
  section#about_area .top-box .txt-box .txt-a svg {
    width: 14px;
    height: 14px;
  }
  section#about_area .top-box .img-box {
    width: 100%;
    height: 60vw;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  section#about_area .bot-box {
    margin-top: 80px;
  }
  section#about_area .bot-box .list-box {
    justify-content: space-between;
  }
  section#about_area .bot-box .list-box .img-box {
    margin-bottom: 15px;
  }
  section#about_area .bot-box .list-box .txt-n {
    width: 60px;
    height: 60px;
    border-radius: 80px;
    border: solid 1px #ffffff;
    position: absolute;
    top: -50px;
    left: -5%;
    font-size: 20px;
  }
  section#about_area .bot-box .list-box .txt-h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }
  section#about_area .bot-box .list-box .txt-p {
    font-size: 14px;
  }
  section#about_area .bot-box .list-box li {
    position: relative;
    width: 100%;
  }
  section#about_area .bot-box .list-box li:nth-child(n+2) {
    margin-top: 80px;
  }
  section#about_area .txt-a {
    width: 80%;
    margin-top: 80px;
  }
}
/*==========================================================================
section#business_area
========================================================================== */
section#business_area {
  position: relative;
  background: #FCF5EB;
  overflow: clip;
}
section#business_area::before {
  content: "";
  background: url(../img/bg001.webp) center no-repeat;
  background-size: cover;
  width: 67.5520833333vw;
  height: 23.9583333333vw;
  position: absolute;
  top: -10.78125vw;
  right: -11.25vw;
}
section#business_area::after {
  content: "";
  background: url(../img/bg002.webp) center no-repeat;
  background-size: cover;
  width: 110.1041666667vw;
  height: 57.3958333333vw;
  position: absolute;
  bottom: -15.1041666667vw;
  left: -2.5vw;
}
section#business_area .inner {
  position: relative;
  z-index: 1;
  padding: 7.8125vw 0;
}
section#business_area .ttl-box .txt-h2 {
  color: #333333;
}
section#business_area .ttl-box:after {
  background: #D4A56C;
}
section#business_area .txt-box {
  align-items: center;
}
section#business_area .txt-box .txt-p {
  color: #333333;
  line-height: 1.8em;
}
section#business_area .txt-box .txt-a {
  background: #544C42;
  border-color: #544C42;
  color: #ffffff;
}
section#business_area .txt-box .txt-a .icon {
  background: #ffffff;
  border-color: #ffffff;
}
section#business_area .txt-box .txt-a .icon svg path {
  fill: #544C42;
}
section#business_area .txt-box .txt-a:hover {
  background: #ffffff;
  color: #544C42;
}
section#business_area .txt-box .txt-a:hover .icon {
  border-color: #544C42;
}
section#business_area .list-box {
  margin-top: 3.6458333333vw;
  justify-content: space-between;
}
section#business_area .list-box .img-box {
  width: 100%;
  height: 23.4375vw;
  margin-bottom: 1.05vw;
}
section#business_area .list-box .txt-h3 {
  color: #333333;
}
section#business_area .list-box li {
  width: 31.5%;
}
section#business_area .box {
  position: relative;
}

@media screen and (max-width: 767px) {
  section#business_area::before {
    content: "";
    background: url(../img/bg001.webp) center no-repeat;
    background-size: cover;
    width: 67.5520833333vw;
    height: 23.9583333333vw;
    position: absolute;
    top: -10.78125vw;
    right: -11.25vw;
  }
  section#business_area::after {
    content: "";
    background: url(../img/bg002.webp) center no-repeat;
    background-size: cover;
    width: 110.1041666667vw;
    height: 57.3958333333vw;
    position: absolute;
    bottom: -15.1041666667vw;
    left: -2.5vw;
  }
  section#business_area .inner {
    padding: 80px 0;
  }
  section#business_area .txt-box .txt-p {
    font-size: 14px;
  }
  section#business_area .txt-box .txt-a {
    margin-top: 30px;
  }
  section#business_area .list-box {
    margin-top: 50px;
  }
  section#business_area .list-box .img-box {
    width: 100%;
    height: 70vw;
    margin-bottom: 15px;
  }
  section#business_area .list-box .txt-h3 {
    font-size: 16px;
  }
  section#business_area .list-box li {
    width: 100%;
  }
  section#business_area .list-box li:nth-child(n+2) {
    margin-top: 40px;
  }
  section#business_area .box {
    position: relative;
  }
}
/*==========================================================================
section#products_area
========================================================================== */
section#products_area {
  position: relative;
}
section#products_area .inner {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
section#products_area .txt-box {
  width: 50%;
  padding: 7.8125vw 10.4166666667vw;
  box-sizing: border-box;
  background: #7F766B;
}
section#products_area .txt-box .ttl-box .txt-h2 {
  color: #ffffff;
}
section#products_area .txt-box .ttl-box .txt-h2 .txt-e {
  color: #544C42;
}
section#products_area .txt-box .txt-p {
  line-height: 1.8em;
}
section#products_area .txt-box .txt-p.p2 {
  margin-top: 1.05vw;
}
section#products_area .txt-box .txt-a {
  margin: 0;
  margin-top: 10.0520833333vw;
}
section#products_area .img-box {
  width: 50%;
}

@media screen and (max-width: 767px) {
  section#products_area .txt-box {
    width: 100%;
    padding: 50px 10%;
  }
  section#products_area .txt-box .txt-p {
    font-size: 14px;
  }
  section#products_area .txt-box .txt-p.p2 {
    margin-top: 15px;
  }
  section#products_area .txt-box .txt-a {
    margin: 0;
    margin-top: 40px;
  }
  section#products_area .img-box {
    width: 100%;
    height: 70vw;
  }
}
/*==========================================================================
section#news_area
========================================================================== */
section#news_area .inner {
  padding: 7.8125vw 0;
}
section#news_area .box {
  align-items: center;
  justify-content: space-between;
  gap: 7.8125vw;
}
section#news_area .ttl-box {
  flex: none;
  margin: 0;
}
section#news_area .ttl-box::after {
  content: none;
}
section#news_area .ttl-box .txt-a {
  margin-top: 2.6041666667vw;
}
section#news_area .list-box {
  flex: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
section#news_area .list-box .txt-c {
  line-height: 1;
  transition: 1s;
  color: #333333;
  background: #87827B;
  width: 8.0729166667vw;
  height: 2.2395833333vw;
  border-radius: 2.2395833333vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
section#news_area .list-box .txt-d {
  line-height: 1;
  transition: 1s;
  color: #ffffff;
}
section#news_area .list-box .txt-h3 {
  line-height: 1;
  transition: 1s;
  color: #ffffff;
}
section#news_area .list-box svg {
  width: 0.8vw;
  height: 0.8vw;
  transition: 1s;
  position: absolute;
  right: 1.8229166667vw;
  top: 50%;
  transform: translateY(-50%);
}
section#news_area .list-box svg path {
  transition: 1s;
  fill: #ffffff;
}
section#news_area .list-box a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #ffffff;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 1.3020833333vw 0;
  padding-right: 3vw;
  gap: 2.6041666667vw;
  border-bottom: solid 1px #ffffff;
  position: relative;
  line-height: 1;
}
section#news_area .list-box a:hover .txt-d {
  font-family: "font-ZKGNb", "Zen Kaku Gothic New", sans-serif;
}
section#news_area .list-box a:hover .txt-h3 {
  font-family: "font-ZKGNb", "Zen Kaku Gothic New", sans-serif;
}
section#news_area .list-box a:hover svg {
  right: 1vw;
}
section#news_area .list-box li {
  width: 100%;
  line-height: 1;
}
section#news_area .txt-a {
  margin-left: auto;
  margin-right: 0;
  margin-top: 5.2083333333vw;
}

@media screen and (max-width: 767px) {
  section#news_area .inner {
    padding: 80px 0;
  }
  section#news_area .ttl-box {
    flex: none;
    margin-bottom: 30px;
  }
  section#news_area .list-box {
    flex: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  section#news_area .list-box .txt-c {
    width: 100px;
    height: 25px;
    font-size: 12px;
    border-radius: 25px;
  }
  section#news_area .list-box .txt-d {
    font-size: 14px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  section#news_area .list-box .txt-h3 {
    font-size: 14px;
  }
  section#news_area .list-box svg {
    width: 16px;
    height: 16px;
    right: 20px;
  }
  section#news_area .list-box a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: #ffffff;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 30px 0;
    padding-right: 40px;
    gap: 10px 20px;
    border-bottom: solid 1px #ffffff;
    position: relative;
    line-height: 1;
  }
  section#news_area .list-box a:hover svg {
    right: 10px;
  }
  section#news_area .list-box li {
    width: 100%;
    line-height: 1;
  }
  section#news_area .list-box li:first-child a {
    border-top: solid 1px #ffffff;
  }
  section#news_area .txt-a {
    margin-top: 80px;
  }
}
/*==========================================================================
section#contact_area
========================================================================== */
section#contact_area {
  background: #544C42;
  position: relative;
}
section#contact_area .inner {
  padding: 7.8125vw 0;
}
section#contact_area .box {
  position: relative;
  z-index: 2;
  align-items: flex-end;
  justify-content: space-between;
}
section#contact_area .box .ttl-box .txt-h2 .txt-e {
  color: #ffffff;
}
section#contact_area .box .txt-a {
  background: #168F5F;
  color: #ffffff;
  border-color: #168F5F;
  width: 23.6979166667vw;
  margin: 0;
  justify-content: center;
}
section#contact_area .box .txt-a .icon {
  background: #ffffff;
  border-color: #ffffff;
}
section#contact_area .box .txt-a .icon svg path {
  fill: #168F5F;
}
section#contact_area .box .txt-a:hover {
  background: #ffffff;
  color: #168F5F;
}
section#contact_area .box .txt-a:hover .icon {
  border-color: #168F5F;
}
section#contact_area .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section#contact_area .bg::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  section#contact_area .inner {
    padding: 80px 0;
  }
  section#contact_area .box {
    position: relative;
    z-index: 2;
    align-items: flex-end;
    justify-content: space-between;
  }
  section#contact_area .box .txt-p {
    font-size: 14px;
  }
  section#contact_area .box .txt-a {
    width: 100%;
    margin-top: 50px;
  }
  section#contact_area .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  section#contact_area .bg::before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
/*# sourceMappingURL=top.css.map */