@charset "utf-8";

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  position: relative;
  scroll-behavior: smooth;
}

h1,
h2,
p {
  margin: 0;
  padding: 0;
}

h2 {
  font-size: 30px;
}

p {
  font-size: 14px;
}

a {
  text-decoration: none;
}

ul {
  list-style: none !important;
  padding-left: 0;
}

li,
li a {
  list-style: none !important;
}


.br_phone,
.phone {
  display: none !important;
}

.pc {
  display: inherit;
}

.button {
  margin-top: 25px;
}

.button a {
  color: #fff;
  border: 1px #fff solid;
  padding: 15px 20px;
  border-radius: 30px;
}

.button a:visited {
  color: #fff;
}

.button a:hover {
  background-color: #fff;
  color: #000;
  transition: 0.5s;
}

/*========= レイアウトのためのCSS ===============*/

#header {
  z-index: 100000;
}

.header_02 {
  background-color: #000;
  height: 100px;
  width: 100%;
  position: fixed;
  top: 0;
}

.header_logo_w {
  height: 55px;
  position: fixed;
  top: 20px;
  left: 5%;
}

.header_logo_w img {
  height: 100%;
  width: auto;
}

.header_sns_container {
  display: inherit;
}

.movie {
  width: 100vw;
  height: auto;
}

.box,
#box6 {
  color: #fff;
  display: flex;
  justify-content: center;
  height: 100vh;
  width: 100vw;
}

#box1 {
  background: #a58e51;
}

#box2 {}

#box3 {}



#footer {
  background: #000;

}

#footer .wrapper {
  padding: 25px 0;
}


.wrapper {
  width: 90%;
  margin: 0 auto;
}

.wrapper_menu {
  width: 60%;
  margin: 0 auto;
  padding: 50px 0;
}

.bg-slider {
  min-height: 450px;
  height: 700vh;
  width: 100vw !important;
}

.bg-slider_back {
  width: 100vw !important;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed !important;
  left: 0;
  top: 0;
  z-index: -1;
}

.MenuBtn.Style01 {
  position: fixed;
  border: none;
  outline: none;
  background: transparent;
  top: 25px;
  right: 5vw;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10002;
}

.MenuBtn.Style01 .MenuBtn-BarFrame {
  position: relative;
  display: block;
  width: 24px;
  height: 2px;
}

.MenuBtn.Style01 .MenuBtn-BarFrame-FirstBar {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all .15s linear;


}

.MenuBtn.Style01 .MenuBtn-BarFrame-SecondBar {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all .15s linear;

  transform: translateY(-8px) rotate(0deg);
}

.MenuBtn.Style01 .MenuBtn-BarFrame-ThirdBar {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all .15s linear;

  transform: translateY(8px) rotate(0deg);
}

.MenuBtn.Style01.isClosed .MenuBtn-BarFrame-FirstBar {
  opacity: 0;
}

.MenuBtn.Style01.isClosed .MenuBtn-BarFrame-SecondBar {
  transform: translateY(0) rotate(45deg);
}

.MenuBtn.Style01.isClosed .MenuBtn-BarFrame-ThirdBar {
  transform: translateY(0) rotate(-45deg);
}

/*----------------------------
* メニュー本体
*----------------------------*/
.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10001;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
}

.menu__item {
  width: 100%;
  height: auto;
  color: #fff;
  box-sizing: border-box;
  overflow: scroll !important;
  z-index: 10;
}

/*----------------------------
* アニメーション部分
*----------------------------*/

/* アニメーション前のメニューの状態 */
.menu {
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s linear;
}

/* アニメーション後のメニューの状態 */
.menu.is-active {
  pointer-events: auto;
  opacity: 1;
}

.header_sns_container {
  position: fixed;
  top: 35px;
  right: 220px;
  z-index: 1000;
}

.header_sns_container img {
  height: 30px;
  margin-right: 20px;
}

.home_link_container {
  position: relative;
  height: 90%;
}

.home_link_box {
  position: absolute;
  left: 0;
  bottom: 0;
}

.home_link_box02 {
  position: absolute;
  left: 0;
  top: 50px;
}

.home_link_box02 p {
  line-height: 30px;
}

.home_product_container {
  display: flex;
  flex-wrap: wrap;
  align-content: space-around;
  width: 100%;
  height: 70%;
  position: absolute;
  top: 30%;
}

.home_pruduct_container_button {
  width: 31%;
  height: 100px;
  text-align: center;
  color: #fff;
  border: 1px #fff solid;
  box-sizing: border-box;
  font-size: 20px;
}

.menu_home_pruduct_center {
  margin: 0 3.5%;
}

.home_pruduct_container_button_a {
  padding-top: 35px;
}

.home_pruduct_container_button_a_br {
  padding-top: 20px;
}


.home_pruduct_container_button a {
  width: 100%;
}

.home_pruduct_container_button a,
.home_pruduct_container_button a:visited {
  color: #fff;
}

.home_pruduct_container_button:hover {
  color: #000;
  background-color: #fff;
  transition: 1s;
}

.home_pruduct_container_button:hover a,
.home_pruduct_container_button:hover p {
  color: #000;
  transition: 1s;
  transform: 1S;
}

.home_pruduct_container_button_shoes {
  font-size: 18px;
}



/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.menu-btn_home_pruduct_container,
.menu-btn_home_pruduct_container_close {
  font-size: 18px;
  color: #fff;
  border: none;
  background: transparent;
  width: 100%;
  height: auto;
}

.menu-btn_home_pruduct_container p {
  font-size: 18px;
}

.menu_home_pruduct_container_close {
  position: absolute;
  bottom: 20%;
  right: 0px;
}

.menu_home_pruduct_container_close img {
  height: 30px;
  width: auto;
}

/*----------------------------
* メニュー本体
*----------------------------*/
.menu_home_pruduct_container {
  position: fixed;
  top: 0;
  right: -5vw;
  width: 100vw;
  height: 100vh;
  color: #fff;
  background: #000000bf;
}

.menu_home_pruduct_container02 {
  right: -8vw !important;
}

.menu_home_pruduct_container .wrapper {
  height: 50%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.menu__item_menu_home_pruduct_container {
  width: 30%;
  height: auto;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
  background-color: #fff !important;
  color: #000 !important;
  padding: 40px;
}

.menu__item_menu_home_pruduct_container:hover {
  background-color: #000 !important;
  color: #fff !important;
}

.menu__item_menu_home_pruduct_container:hover a {
  color: #fff !important;
}

/*----------------------------
* アニメーション部分
*----------------------------*/

/* アニメーション前のメニューの状態 */
.menu_home_pruduct_container,
.menu-btn_home_pruduct_container_close {
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s linear;
}

/* アニメーション後のメニューの状態 */
.menu_home_pruduct_container.is-active,
.menu-btn_home_pruduct_container_close.is-active {
  pointer-events: auto;
  opacity: 1;
}

#box4 {
  background-color: #9a82414f;
}

.home_news_tr {
  display: flex;
}

.home_news_contents {
  padding-bottom: 20px;
}


.home_news_th {
  text-align: start;
  width: 15%;
  font-weight: 100;
}

.home_news_table {
  margin-top: 30px;
  width: 90vw;
}

.home_news_table_a,
.home_news_table_a:visited {
  color: #fff;
}

.home_pro_container {
  display: flex;
  flex-direction: column;
  align-content: space-between;
  height: 70%;
  box-sizing: border-box;
  position: relative;
}

.home_pro_imgbox {
  display: flex;
  justify-content: space-around;
  margin-top: 110px;
}

.home_pro_cap {
  text-align: end;
  margin-top: 10px;
}

.home_pro_text {
  color: #fff;
  font-size: 10px;
  padding-top: 5px;
}

.sample1 {
  overflow: hidden;
  margin: 10px 8px 10px 16px;
  position: relative;
  /* 相対位置指定 */
}

.sample1 .caption {
  text-align: center;
  padding-top: 60%;
  color: #9A8341;
}

.caption_name {
  font-size: 37px;
  font-weight: bold;
}

.sample1 .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  /* 絶対位置指定 */
  top: 0;
  left: 0;
  opacity: 0;
  /* マスクを表示しない */
  background-color: #0000007d;
  /* マスクは半透明 */
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.sample1:hover .mask {
  opacity: 1;
  /* マスクを表示する */
}

.sample1 a img {
  height: 75vh;
  width: auto;
}

#box5 {
  background-image: url(../images/home_shop.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  box-sizing: border-box;
  padding-top: 3.25%;
}

.home_shop {
  height: 80%;
  padding-top: 5%;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-content: space-between;
}

.home_shop h2 {
  height: 10%;
  margin-bottom: 30px;
  text-align: center;
}

.home_shop_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  width: 100%;
  height: 90%;
}

.home_shop_container_button {
  width: 47.5%;
  height: 70px;
  text-align: center;
  color: #fff;
  border: 1px #fff solid;
  padding-top: 20px;
  box-sizing: border-box;
  font-size: 20px;
}

.home_shop_container_button a,
.home_shop_container_button a:visited {
  color: #fff;
}

.home_shop_container_button:hover {
  color: #000;
  background-color: #fff;
  transition: 1s;
}

.home_shop_container_button:hover a {
  color: #000;
  transition: 1s;
}

#box6 {
  height: 100vh;
}

.home_insta {
  height: 70%;
  box-sizing: border-box;
  margin-top: 10%;
  color: #fff;
}

.home_insta h2 {
  text-align: center;
  margin-bottom: 30px;

}

.home_insta_container {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.home_insta .button {
  text-align: center;
  padding-top: 30px;
}

.home_insta .button a {
  color: #fff;
  border: 1px #fff solid;
  padding: 15px 20px;
  border-radius: 30px;
}

.home_insta .button a:visited {
  color: #fff;
}

.home_insta .button a:hover {
  background-color: #fff;
  color: #000;
  transition: 0.5s;
}

.title,
.title a,
.title_02,
.title_02 a,
.menu_box,
.menu_box a {
  color: #9A8341 !important;
  transition: 0.5s;
}

.title:hover,
.title a:hover,
.title_02:hover,
.title_02 a:hover,
.menu_box:hover,
.menu_box a:hover,
.menu_sns li a i:hover {
  color: #62532a !important;
}

main {
  display: block !important;
}

.title {
  line-height: 1.2em;
}

.menu_box li {
  margin-bottom: 20px;
  margin-left: 10px;
}

.menu_logo {
  height: 75px;
  width: auto;
}

.menu_logo img {
  height: 100%;
  width: auto;
}

.menu_container {
  display: flex;
  justify-content: space-between;
}

.menu_container_box {
  width: 100%;
}

.menu_container_box .button {
  width: 100%;
}

.menu_container_box .button a {
  font-weight: bold;
  font-size: 18px;
  color: #9A8341;
  border: 1px #9A8341 solid;
  padding: 15px 20px;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu_container_box .button a:visited {
  color: #9A8341;
}

.menu_container_box .button a:hover {
  background-color: #9A8341;
  color: #fff;
  transition: 0.5s;
}

.menu_container_box .button a:hover .dli-arrow-right {
  color: #fff;
  transition: 0.5s;
}

.dli-arrow-right {
  display: inline-block;
  vertical-align: middle;
  color: #9A8341;
  line-height: 1;
  position: relative;
  width: 1em;
  height: 0.1em;
  background: currentColor;
}

.dli-arrow-right::before {
  content: '';
  width: 0.65em;
  height: 0.65em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}

.menu_sns {
  display: flex;


}

.menu_sns li {
  height: 30px;
  margin-right: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.menu_sns li img {
  height: 100%;
  width: auto;
}


/*==================================================
アコーディオンのためのcss
===================================*/

/*アコーディオン全体*/
.accordion-area {
  list-style: none;

}

.accordion-area_03 {
  list-style: none;

}

.accordion_03_link {
  font-size: 14px;
}

.menu_box_03 {
  color: #fff;
}

.accordion_03_link {
  margin: 5px 0;
  width: 30%;
  display: inline-block;
}

.title_03 {
  padding: 7% 0;
}

.menu_box_03 a,
.menu_box_03 a:visited {
  color: #fff;
}

/*アコーディオンタイトル*/
.title {
  cursor: pointer;
  font-size: 30px;
  margin-bottom: 30px;
  transition: all .5s ease;
}

.title_02 {
  cursor: pointer;
  font-size: 18px;
  margin-bottom: 20px;
  transition: all .5s ease;
}

.title_02_new a {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}

.title_02_new a p {
  padding-left: 20px;
  font-style: oblique;
}

.title_nohover {
  margin-bottom: 20px !important;
}

.title_nohover:hover {
  color: #9A8341 !important;
}

/*closeというクラスがついたら形状変化　*/
.title.close::before,
.title_02.close::before {
  transform: rotate(45deg);
}

.title.close::after,
.title_02.close::after {
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.menu_box {
  display: none;
  /*はじめは非表示*/
  margin: 20px, 0;
  flex-direction: column;
}

.menu_box li a {
  display: flex;
}

.menu_box li a p {
  padding-left: 20px;
  font-style: oblique;
}

.menu_box_03 {
  display: none;
  /*はじめは非表示*/
  flex-direction: column;
}

.accordion_03_container {
  text-align: center;
  border: 1px solid #fff;
}

.title_03 {
  font-size: 20px;
}

.home_sns_container {
  display: flex;
  justify-content: space-between;
}

.home_sns_container_box {
  width: 30% !important;
  height: 60vh !important;
  overflow: scroll !important;
}

.home_sns_container_box iframe {
  width: 100% !important;
  height: 80vh !important
}

.footer_caption {
  font-size: 14px;
  text-align: center;
  color: #9A8341;
  border-top: 1px solid #9A8341;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_caption img {
  height: 30px;
  width: auto;
}

.about_container {
  margin-bottom: 150px !important;
  padding-top: 100px;
}

.about_container_0 {
  padding-top: 0 !important;
}

.about_container01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about_container01 h2,
.about_container04 h2 {
  font-size: 50px;
}

.about_container01 h3,
.about_container02 h3,
.about_container03 h3,
.about_container04 h3 {
  font-size: 35px;
  line-height: 50px;
  margin-top: 0;
}

.about_container02 h3 {
  margin-bottom: 10px;
}

.about_container01_subtitle {
  margin-bottom: 0px;
}

.about_container01_text {
  width: 45%;
  height: auto;
}

.about_container01_text p,
.about_container02_text p {
  margin-bottom: 50px;
  line-height: 30px;
}

.about_container01_img {
  width: 50%;
  height: auto;
}

.about_container01_img img {
  width: 100%;
  height: auto;
}

.about_container02 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about_container02_box {
  width: 45%;
  margin-bottom: 150px;
}

.about_container02_box img {
  width: 100%;
  height: auto;
}

.about_container03_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about_container03_box_item {
  width: 18%;
  height: auto;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

.about_container03_box_item img {
  width: 100%;
  height: auto;
}

.about_container03_text {
  width: 100%;
  line-height: 30px;
}

.about_container04 {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}

.about_container04_img {
  width: 40%;
}

.about_container04_img img {
  width: 100%;
  height: auto;
}

.about_container04_bold {
  font-weight: bold;
  margin-bottom: 10px !important;
}

.about_container04 .about_container01_subtitle,
.about_container05 .about_container01_subtitle {
  font-size: 35px;
}

.about_container05 .about_container01_text {
  width: 100% !important;
}

.about_container05_box,
.about_container05_box_b {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-top: 20px;
}

.about_container05_box_b_text {
  text-align: start;
}

.about_container05_box_item {
  width: 45%;
}

.about_container05_box_item img {
  width: 100%;
}

.about_container06 .about_container01_img {
  display: flex;
  flex-direction: column;
}

.about_container06_img01 img,
.about_container06_img02 img {
  width: 100%;
  height: auto;
}

.about_container06_img02 {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.about_container06_img02 div {
  width: 48%;
  height: auto;
  text-align: center;
  font-weight: bold;
}

.about_container07_box {
  display: flex;
  flex-direction: row !important;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about_container07_box_item {
  width: 22vw !important;
  height: 22vw !important;
  margin-bottom: 10px;
}

.about08_text {
  position: relative;
}

.about08 {
  height: 30px;
  width: 100px;
  background-image: url(../images/ultrasuede.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 2px;
  left: 140px;
}

.about08-en {
  height: 30px;
  width: 100px;
  background-image: url(../images/ultrasuede.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 2px;
  left: 90px;
}

.about14 {
  height: 50px;
  width: auto;
  background-image: url(../images/about_shellarmove.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.about17 {
  height: 70px;
  width: auto;
  background-image: url(../images/about_ankblk.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.about18 {
  height: 70px;
  width: auto;
  background-image: url(../images/about_bothheel.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 10px;
}

.about20_01 {
  background-image: url(../images/about20-01.jpg);
  height: auto;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

.about20_02 {
  background-image: url(../images/about20-02.jpg);
  height: auto;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

.about20_03 {
  background-image: url(../images/about20-03.jpg);
  height: auto;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

.about20_04 {
  background-image: url(../images/about20-04.jpg);
  height: auto;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

.about_container21_img02 img {
  width: 80%;
  height: auto;
}

.about_container21_img02 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 10px;
}

.about_container21_img02 div {
  height: auto;
  text-align: center;
  font-weight: bold;
}

.about20_01 b,
.about20_02 b,
.about20_03 b,
.about20_04 b {
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.about_company {
  margin-bottom: 50px;
}

.about_company_01,
.about_company_02,
.about_company_03,
.about_company_04 {
  height: 30px;
  width: auto;
}

.about_company_01 {
  background-image: url(../images/logo_honsha.png);
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
}

.about_company_02 {
  background-image: url(../images/logo_hassou.png);
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
}

.about_company_03 {
  background-image: url(../images/logo_tokyo.png);
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
}

.about_company_04 {
  background-image: url(../images/logo_korea.png);
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
}

.pagetitle {
  font-size: 30px;
  margin: 150px 0 50px 0;
}

.pro-staff_container {
  display: flex;
  margin-bottom: 150px;
  align-items: center;
  padding-top: 100px;
}

.pro-staff-img-pc {
  width: 40%;
}

.pro-staff-img-pc img {
  width: 100%;
  height: auto;
}

.pro-staff_container_text {
  width: 40%;
  display: flex;
  flex-direction: column;
}

.pro-staff_container_text {
  padding-left: 5%;
}

.pro-staff_container_text h3 {
  font-size: 25px;
  margin-top: 0;
}

.pro-staff_container_text_info {
  font-size: 12px;
  margin-top: 30px;
}

.promodel {
  display: flex;
  flex-wrap: wrap;
}

.promodel a {
  width: 30%;
  height: auto;
  padding-right: 10px;
  text-align: center;
  color: #000;
}

.promodel a:link {
  color: #000;
}


.promodel img {
  width: 100%;
  height: auto;
}

#catalog_container {
  width: 100vw;
  height: 71vw;
}

#catalog_container div {
  width: 50vw;
}

#catalog_container div img {
  width: 50vw;
  height: auto;
}

.link {
  padding-top: 100px;
}

/*ここから newsページ*/
.news_container {
  margin-top: 150px;
  margin-bottom: 50px;
}

.news_container_box01 {
  margin-bottom: 150px;
}

.news_container_box01 h3 {
  border-bottom: #000 1px solid;
}

#news-02,
#news-03 {
  display: block;
  padding-top: 100px !important;
  margin-top: -100px !important;
}

/*これはindexからnewsページへのリンク*/
/*2025更新 ここから*/
.news-top {
  position: absolute;
  top: 100px;
  right: 5vw;
  font-weight: bold;
  z-index: 2;
}

.news-top-2 {
  position: absolute;
  top: 150px;
  right: 5vw;
  font-weight: bold;
  z-index: 2;
}

.news-top a,
.news-top-2 a {
  margin-bottom: 20px;
  background-color: #fff;
  font-size: 18px;
  padding: 5px;
}

.news-top a,
.news-top a:visited,
.news-top-2 a,
.news-top-2 a:visited {
  color: #9A8341;

}

/*2025更新 ここまで*/
/*これはindexからnewsページへのリンク*/

/*ここまで newsページ*/

/*アニメーション*/
/*========= レイアウトのためのCSS ===============*/

.about_container01_text h3 {

  font-size: 35px;
  overflow: hidden;
  /*左右アニメーションで画面からはみ出る際に出る横スクロールバーを隠す*/
}

/*========= 流れるテキスト ===============*/

/*全共通*/

.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime,
.leftAnimetop {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

/* fadeUp */

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(150px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/


.fadeUpTrigger {
  opacity: 0;
}


@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }

  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}


@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

#u46764-7 {
  padding-top: 100px;
}

.translation-container {
  top: 22px;
  right: 125px;
  position: fixed;
  z-index: 100001;
  color: #fff;
}

.translation-container a,
.translation-container a:visited {
  color: #fff;
}

.translation-container ul {
  display: flex;
}

.translation-container ul img {
  height: 24px;
}

.translation-on {

  border-bottom: 2px solid #fff;
}

.translation-container-padding {
  margin-left: 20px;
}


#u19933 {
  padding-top: 120px;
}

#u19918-25-wrapper,
#u19904_img,
#u19903-4,
#pu19933 {
  margin-top: 120px;
}

#u20587 {
  top: 220px;
}


/*768px以下は現在地表示のテキストを非表示*/
@media screen and (min-width:1500px) {
  .translation-container {
    right: 155px;
  }

  .header_sns_container {
    right: 250px;
  }
}

/*768px以下は現在地表示のテキストを非表示*/
@media screen and (max-width:768px) {
  .pagination a .hover-text {
    display: none;
  }
}

/*850px以下は現在地表示のテキストを非表示*/
@media screen and (max-width:850px) {

  .header_logo_w img {
    height: 80%;
    margin-top: 5%;
  }

  .br_phone,
  .phone {
    display: inherit !important;
  }

  .pc {
    display: none;
  }

  .wrapper_menu {
    width: 90%;
  }

  .header_sns_container {
    display: none;
  }

  .menu_logo {
    margin-top: 20px;
  }

  .menu_logo img {
    height: 55px !important;
    width: auto;
  }

  .menu_container {
    flex-direction: column;
  }

  .menu_logo img {
    height: 80%;
  }

  .footer_caption {
    flex-direction: column;
  }

  .footer_caption img {
    padding-bottom: 20px;
  }

  .pagetitle {
    margin: 130px 0 20px 0;
    line-height: 45px
  }

  .movie {
    width: 100vw;
    height: auto;
  }

  .home_link_container {
    height: 100vh;
  }

  .home_link_box02 {
    position: absolute;
    bottom: 50px;
    top: auto;
    line-height: 45px;
  }

  .home_link_box02 h2 {
    line-height: 50px;
  }

  .home_pro_imgbox li {
    width: 32%;
    height: 60vh;
  }

  .sample1 {
    height: 100%;
  }

  .sample1 a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
  }

  .home_link_box02_phone {
    top: 50px !important;
    position: absolute;
  }

  .home_news_tr {
    flex-direction: column;
  }

  .home_news_th {
    padding-bottom: 0;
    width: auto;
  }

  .home_news_td {
    padding-left: 0;
    border-bottom: 1px solid #fff;
  }

  .home_product_container {
    height: 0%;
    display: block;
    top: 35%;
    z-index: 10;
  }

  .product_phone_button {
    position: absolute;
    top: 0;
    width: 100%;
  }

  .home_pruduct_container_arrow {
    position: relative;
    top: 70%;
  }

  .home_pruduct_container_button {
    width: 100%;
    height: 80px;
    position: relative;
  }

  .menu_home_pruduct_container {
    top: -40vh;
  }

  .menu_home_pruduct_container .wrapper {
    top: 40%;
  }

  .menu_home_pruduct_container_close {
    top: 90%;
  }

  .home_pruduct_container_button {
    margin-bottom: 20px;
  }

  .menu-btn_home_pruduct_container {
    position: relative;
  }

  .menu-btn_home_pruduct_container p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
  }

  .home_pruduct_container_button a {
    padding-top: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .home_pruduct_container_button p,
  .home_pruduct_container_button_a {
    padding-top: 0;
  }

  .home_pruduct_container_button_shoes {
    font-size: 16px;
  }

  .home_pruduct_container_phone,
  .home_order_container_phone {
    display: none !important;
  }

  .active {
    display: block !important;
  }

  .home_pruduct_container_phone_page {
    z-index: 10;
  }

  .home_pruduct_container_phone_page_longtext {
    font-size: 12px;
  }

  .tab-area .tab1 {
    margin-left: 10vw;
  }

  .tab-area .tab2 {
    margin-left: 35vw;
    margin-right: 10vw;
  }

  .tab-area_product .tab1,
  .tab-area_product .tab2 {
    margin-right: 15vw;
  }


  .tab-area,
  .tab-area_product,
  .tab-area_product {
    position: absolute;
    top: 85%;
    left: 10vw;
    width: 70vw;
    z-index: 1;
    margin: 0 auto;
  }

  .tab-area_product .tab,
  .tab-area .tab,
  .tab-area .tab_order {
    float: left;
    text-align: center;
    color: #fff;
    width: 5vw;
    /*幅*/
    height: 5vw;
    /*高さ*/
    border-radius: 50%;
    /*角丸*/
    border: #fff solid 1px;
  }

  .tab-area label,
  .tab-area_product label {
    cursor: pointer;
  }

  .tab-area input:checked+label,
  .tab-area_product input:checked+label {
    color: #9A8341;
  }

  .tab-area input,
  .tab-area_product input {
    display: none;
  }

  .tab-area .active,
  .tab-area_product .active {
    background-color: #fff;
  }

  .home_pro_container {
    height: 100vh;
    position: relative;
  }

  .sample1 {
    margin: 0;
  }

  .home_pro_imgbox {
    margin-top: 205px;
  }

  .caption_name {
    font-size: 14px;
    font-weight: bold;
  }

  .home_pro_cap {
    text-align: start;
    font-size: 10px;
  }

  .home_shop {
    margin-top: 10%;
  }

  .home_shop_container_button {
    height: 70px;
    padding-top: 20px;
  }

  .home_shop_container_button_q {
    padding-top: 5px !important;
  }

  .home_sns_container {
    flex-direction: column;
  }

  .home_sns_container_box {
    width: 100% !important;
    height: auto !important;
  }

  .home_sns_container_box {
    padding: 10% 0;
    border: 1px solid #ffffff;
    text-align: center;
    margin-bottom: 10%;
  }

  .home_sns_container_box p {
    text-align: center;
    width: 100%;
    font-weight: bold;
  }

  .home_sns_container_box a,
  .home_sns_container_box a:visited {
    color: #fff;
  }

  .about_container01_text {
    width: 100%;
  }

  .about_container01 h3 {
    margin-bottom: 20px;
  }

  .about_container01_text img {
    width: 100%;
  }

  .about_container01_subtitle {
    margin-bottom: 5px !important;
  }

  .about_container02_box {
    width: 100%;
  }

  .about_container03_box {
    height: 230px;
    width: 100%;
    flex-wrap: nowrap;
    overflow-y: scroll !important;
    overflow-x: scroll !important;
    white-space: nowrap;
  }

  .about_container03_box_item {
    width: 200px !important;
    height: auto !important;
    display: inline-block;
    padding-right: 20px;
  }

  .about_container03_box_item img {
    width: 200px;
    height: auto;
  }

  .about_container03_box_arrow {
    display: flex;
    align-items: center;
    text-align: end;
    padding-bottom: 10px;
  }

  .about_container04 {
    width: 100%;
  }

  .about_container04_img {
    width: 100%;
  }

  .tifix_text {
    font-size: 20px !important;
  }

  .about_container05_box,
  .about_container05_box_b {
    flex-direction: column;
  }

  .about_container05_box_item {
    width: 100%;
    margin-bottom: 20px;
  }

  .about_container06_img02_phone {
    text-align: center;
  }

  .about20_phone {
    position: relative;
  }

  .about20_phone b {
    position: absolute;
    bottom: 20px;
    right: 30px;
  }

  .pro-staff_container {
    flex-direction: column;
    text-align: start !important;
  }



  .pro-staff_container img {
    width: 100%;
  }

  .pro-staff_container_text {
    padding-left: 0;
    width: 100%;
  }

  .pro-staff_container h3 {
    font-size: 25px;
    margin: 0;
  }

  .pro-staff_container_model img {
    width: 50%;
    height: auto;
  }

  .promodel {
    margin-top: 10px;
    flex-wrap: wrap;
  }

  .news_container_box01 {
    margin-bottom: 0;
  }

  .news_container_02 {
    margin-top: 50px !important;
    margin-bottom: 50px;
  }

  #catalog_container_phone {
    width: 100vw;
    height: 141vw;
  }

  #catalog_container_phone div {
    width: 100vw;
    height: 141vw;
  }

  #catalog_container_phone div img {
    height: 141vw;
    width: 100vw;
  }

  #pu33020 {
    margin-top: 90px;
  }

  .translation-container {
    right: 80px;
  }

}