@charset "UTF-8";

/* reset css
==============================================================*/
body {
  display: none;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
dl,
dt,
dd,
form,
figure {
  margin: 0;
  padding: 0;
  font-family: "shippori-mincho-b1", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #333;
  text-align: justify;
}

.en_body h1,
.en_body h2,
.en_body h3,
.en_body h4,
.en_body h5,
.en_body h6,
.en_body p,
.en_body ol,
.en_body ul,
.en_body dl,
.en_body dt,
.en_body dd,
.en_body form,
.en_body figure {
  text-align: start;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

table,
td,
th,
tr,
thead,
tbody {
  border: none;
}

table th {
  text-align: left;
  font-weight: normal;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover {
  transition: 0.5s;
}

a img {
  border: none;
}

img {
  vertical-align: bottom;
}

textarea {
  font-size: 1em;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

select {
  font-size: 1em;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

select::-ms-expand {
  display: none;
}

header,
footer,
section,
nav,
main,
figure,
figcaption,
time,
small {
  display: block;
}

input[type=submit],
input[type=image] {
  border: none;
  padding: 0;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password] {
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

button {
  border: none;
  margin: 0;
  cursor: pointer;
  outline: none;
}

input[type=submit],
input[type=image],
input[type=reset] {
  cursor: pointer;
  font-family: 游ゴシック Medium, YuGothic, YuGothicM, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, sans-serif;
}

address {
  font-style: normal;
}

/*=====================================*/
/*=ページサイズ全体設定=*/
html {
  /* scroll-behavior: smooth; */
  /* font-size: 16px; */
  font-size: 18px;
}

.wrap90 {
  width: 90%;
  margin: auto;
}

/* flex指定 */
.flexbox {
  display: flex;
  flex-wrap: wrap;
}

.flexbox_column {
  flex-direction: column;
}

.flexbox_right {
  justify-content: flex-end;
}

.flexbox_reverse {
  flex-direction: row-reverse;
}

.flexbox_center {
  justify-content: center;
}

.flexbox_between {
  justify-content: space-between;
}

.flexbox_around {
  justify-content: space-around;
}

.flexbox_aligncenter {
  align-items: center;
}

.flexbox_alignend {
  align-items: flex-end;
}

.flexbox_alignbetween {
  align-content: space-between;
}

.flexbox_wrap {
  flex-wrap: wrap;
}

.flexbox_flex1 {
  flex: 1;
}

/*=フォント設定=*/

.red {
  color: #C60101;
}

.bold {
  font-weight: bold;
  font-weight: 700;
}

.center {
  text-align: center !important;
}

.right {
  text-align: right;
}

.font_12,
.small {
  font-size: 0.75rem !important;
}

.font_14 {
  font-size: 0.875rem;
}

.font_18 {
  font-size: 1.125rem;
}

/*=幅設定=*/

.width_10 {
  width: 10%;
}

.width_19 {
  width: 19%;
}

.width_25 {
  width: 25%;
}

.width_100 {
  width: 100%;
}

/* ＝＝ */
.width_p80 {
  width: 80px;
}

.width_p100 {
  width: 100px;
}

.width_p130 {
  width: 130px;
}

.width_p170 {
  width: 170px;
}

.width_p240 {
  width: 240px;
}

.width_p400 {
  width: 400px;
}

/*=共通ボタンデザイン=*/
/* moreボタン */
.button_more {
  font-family: "garamond-premier-pro", serif !important;
  padding: 8px 18px;
  box-sizing: border-box;
  display: block;
  border-radius: 30px;
  min-width: 100px;
  position: relative;
  float: right;
}

.button_more:hover {
  transition: 0.5s;
}

.button_more::after {
  content: "";
  width: 15px;
  height: 5px;
  display: block;
  background-repeat: no-repeat;
  position: absolute;
  right: 12px;
  top: 40%;
}

.button_more_b {
  border: 1px solid #333;
  color: #333;
}

.button_more_b::after {
  background-image: url(../img/arrow_link.png);
}

.button_more_b:hover {
  background-color: #EADFCD;
}

.button_more_w {
  border: 1px solid #fff;
  color: #fff;
}

.button_more_w::after {
  background-image: url(../img/arrow_link_w.png);
}

.button_more_w:hover {
  background-color: #3B5158;
}

/* moreボタン調整 */
.parts_lineup .button_more,
.link_order .button_more {
  float: none;
  width: 100px;
  margin: 30px auto 0 auto;
}

.link_footer .button_more {
  float: none;
  width: 160px;
  /* margin: 30px auto 0 auto; */
  margin: 0 auto 0 auto;
}

.link_header .button_more {
  float: none;
  width: 130px;
  padding: 6px 18px;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  background-color: #b7282e;
  border: none;
  color: #fff;
}

.link_header .button_more:hover {
  background-color: #640125;
  transition: 0.5s;
}

.link_preface .button_more {
  float: none;
  width: 100px;
  /* padding: 4px 18px; */
}

.modal_footer .button_more {
  float: none;
}

/*=共通入力デザイン=*/
.parts_text {
  border: #ccc solid 1px;
  padding: 3px;
  border-radius: 4px;
}

/*=共通見出しデザイン=*/
.head_small {
  font-size: 1.625rem;
}

/*=====================================*/
/* PC版　コンテンツ幅調整 */
.wrap_contentSize {
  width: 60%;
  position: relative;
  left: 40%;
  box-sizing: border-box;
  /* padding-left: 5%;
  padding-right: 5%; */
}

.wrap_preface,
.wrap_story {
  padding-left: 10%;
  padding-right: 10%;
}

/* ヘッダー、メインメニュー */
#fixed-header {
  width: 60%;
  height: 60px;
  position: fixed;
  top: -60px;
  color: #fff;
  background: rgba(255, 255, 255, 0.9);
  box-sizing: border-box;
  transition: .5s;
  /* アニメーションタイミング */
  z-index: 997;
  /* padding: 12px 65px 12px 16px; */
  padding: 10px 65px 0 16px;
}

#fixed-nav {
  z-index: 999;
  width: 50px;
  height: 60px;
  top: -60px;
  right: 0;
  position: fixed;
  transition: .5s;
  /* アニメーションタイミング */
  box-sizing: border-box;

  /* background: rgba(93, 34, 34, 0.9); */

}

#fixed-header.is-show,
#fixed-nav.is-show {
  top: 0;
}

.head_header {
  width: 110px;
}

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

/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0;
  /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: #999;
  /*動き*/
  transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 998;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  display: none;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
  display: block;
}

/*リストのレイアウト設定*/

#g-nav li {
  list-style: none;
  text-align: center !important;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  /* position:fixed; */
  position: absolute;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 3px;
  right: 8px;
  cursor: pointer;
  width: 50px;
  height: 60px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}





/* メインビジュアル */
.wrap_first {
  height: 100vh;
}

/* .cont_slide{
  position: fixed !important;
  height: 100vh;
} */
.slide_top {
  width: 40%;
  position: fixed !important;
}

.cont_top {

  flex-direction: column;
  justify-content: center;
  align-content: center;
}

.title_top {
  font-size: 3.4375rem;
  text-align: center !important;
}

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

.title_top .kv_pc {
  display: block;
}

.title_top .kv_tb {
  display: none;
}

.button_scroll {
  text-align: center !important;
  width: 60px;
  height: 60px;
  position: relative;
  margin: 0 auto;
  bottom: -20%;
}

.button_scroll a {
  color: #333 !important;
}

.button_scroll::before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 30px;
  border: 1px solid #333;
}

.button_scroll::after {
  content: "";
  background-image: url(../img/arrow_scroll.svg);
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 54px;
  height: 54px;
  position: absolute;
  top: 0;
  right: 2px;
  z-index: 995;
}

.button_scroll:hover::before {
  background-color: #667A8B;
  border: 1px solid #667A8B;
  transition: 0.5s;
}

.button_scroll:hover::after {
  background-image: url(../img/arrow_scroll_w.svg);
}


/* 使用想定スライダー　試し */
.wrap_preface .swiper {
  width: 100%;
  height: 100%;
}

.wrap_preface .swiper-slide {
  /* text-align: center !important; */
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.wrap_preface .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- */
.wrap_preface .swiper-cont {
  position: absolute;
  top: 0;
  left: 1%;
  /* width: 300px; */
  height: 100%;

  box-sizing: border-box;
  padding: 0 40px;
}

.wrap_preface .cont_slide {
  gap: 40px 40px;
  height: 100%;
  padding: 20px 40px;
  box-sizing: border-box;
  background: rgba(36, 22, 16, 0.7);
}

.head_preface {
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-align: center !important;
}


/* まえがき */
.wrap_preface {
  padding-top: 120px;
  padding-bottom: 160px;
}

.wrap_preface .head_small {
  text-align: center !important;
  padding-bottom: 50px;
  margin-top: 120px;
  margin-bottom: 40px;
  background-image: url(../img/img_separator.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  line-height: 1.8em;
}

.cont_preface p+p {
  margin-top: 16px;
}

/* お知らせ */
.wrap_news{
  background-color: #f5f5f5;
  padding: 20px 10px 40px 10px;
  box-sizing: border-box;
  /* margin-top: 60px; */
  margin-bottom: 60px;
}
.head_news{
  margin-bottom: 10px;
}
.wrap_news .head_small{
  margin-top: 0;
  padding-bottom: 30px;
}
.list_news{
  width: 80%;
  margin: 0 auto;
  border-top: 1px solid #999;
}
.listparts_news{
  border-bottom: 1px solid #999;
  line-height: 1.8em;
}
.listparts_news a{
  display: block;
  padding: 10px;
  box-sizing: border-box;
  color: #333;
}
.list_news .hovItem::before {
  background-color: #EADFCD;
}

/* ストーリー */
/* 共通 */
.wrap_story {
  padding-top: 100px;
  padding-bottom: 160px;
}

.head_story {
  font-size: 3.625rem;
  line-height: 0.6em;
  position: relative;
  padding-top: 100px;
  text-align: center !important;
  margin-bottom: 60px;
}

.head_storySub {
  font-family: "garamond-premier-pro", serif;
  font-weight: 400;
  font-style: normal;
}

.head_story::before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
}

.head_story::after {
  content: "";
  background-image: url(../img/img_storySep.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 30px;
  position: absolute;
  top: 50px;
  left: 0;
}

.cont_slide_story {
  position: relative;
  width: 100%;
  height: 300px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.cont_slide_story::before {
  content: "";
  background-image: url(../img/img_story_shadow.png);
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
  width: 100%;
  height: 40px;
  bottom: 0;
  opacity: 0.8;
}

.wrap_urushi .cont_slide_story::before {
  opacity: 0.4;
}

.slide_story {
  width: 100%;
  height: 300px;
}

/* セパレート */

.wrap_separate_story {
  padding-bottom: calc(9vw);
  /* 高さ*/
  position: relative;
  overflow: hidden;
  background-color: #354246;
}

.wrap_separate_story::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 15vw solid #F4F0E9;
  /* 高さ */
  border-left: 100vw solid transparent;
}

/* リンクリスト */
.link_list li a {
  font-size: 1.375rem;
  display: block;
  color: #333;
  padding-top: 20px;
  padding-bottom: 13px;
  padding-right: 30px;
  border-bottom: 1px solid #888;
  position: relative;
}

.link_list li a::after {
  content: "";
  width: 15px;
  height: 5px;
  display: block;

  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 52%;
}

.hovItem {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.hovItem::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 0%;
  height: 100%;
  -webkit-transition: .8s;
  transition: .8s;
}

.hovItem:hover::before {
  width: 100%;
}

/* 職人 */
.link_list+.cont_craftsman {
  margin-top: 120px;
}

.cont_craftsman+.cont_craftsman {
  margin-top: 80px;
}

.box_craftsman {
  gap: 0 40px;
}

.img_craftsman,
.parts_craftsman {
  align-self: center;
}

.parts_craftsman {
  background-repeat: no-repeat;
  padding-left: 40px;
  box-sizing: border-box;
  flex-grow: 2;
}
.en_body .parts_craftsman{
  flex-direction:column;
}

.img_craftsman {
  width: 280px;
}

.img_craftsman img {
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  width: 100%;
  height: auto;
}

.head_craftsman {
  font-family: "ab-shinyubipenjigyosyotai", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.375rem;
  position: relative;
  letter-spacing: -0.1em;
  width: 120px;
}
.en_body .head_craftsman{
  font-family: "milonguita", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 3rem;
}

.head_craftsman span {
  font-size: 2.875rem;
  position: absolute;
  top: 30px;
}

.name_craftsman {
  flex-grow: 2;
}

.parts_craft_name {
  font-size: 2.375rem;
  margin-bottom: 20px;
}

/* 鋏 */
.wrap_scissors {
  background-color: #354246;
}

.wrap_scissors .head_story::before {
  background-image: url(../img/img_scissors.png);
}

.wrap_scissors .head_story::after {
  background-image: url(../img/img_storySep.png);
}

.wrap_scissors .link_list li a::after {
  background-image: url(../img/arrow_link_w.png);
}

.wrap_scissors .hovItem::before {
  background-color: #3B5158;
}

.wrap_scissors .parts_craftsman {
  background-image: url(../img/back_craftsman.jpg);
}

.wrap_scissors .head_story,
.wrap_scissors .head_storySub,
.wrap_scissors .link_list li a,
.wrap_scissors .head_craftsman,
.wrap_scissors .name_craftsman p {
  color: #fff;
}

/* 漆 */
.wrap_urushi {
  background-color: #F4F0E9;
}

.wrap_urushi .head_story::before {
  background-image: url(../img/img_urushi.png);
}

.wrap_urushi .head_story::after {
  background-image: url(../img/img_storySep_b.png);
}

.wrap_urushi .link_list li a::after {
  background-image: url(../img/arrow_link.png);
}

.wrap_urushi .hovItem::before {
  background-color: #EADFCD;
}

.wrap_urushi .parts_craftsman {
  background-image: url(../img/back_craftsman_w.jpg);
}

/* 交互スライダー */
.wrap_imageslide {
  overflow: hidden;
}

.wrap_imageslide .slide-wrap {
  display: flex;
}

.wrap_imageslide .slide-wrap.bottom {
  justify-content: flex-end;
}

.wrap_imageslide .slide-wrap ul {
  display: flex;
}

.wrap_imageslide .slide-wrap.top_slide ul:first-child {
  animation: slideTop 50s -25s linear infinite;
}

.wrap_imageslide .slide-wrap.top_slide ul:last-child {
  animation: slideTop2 50s linear infinite;
}

.wrap_imageslide .slide-wrap.bottom ul:first-child {
  animation: slideBottom 50s linear infinite;
}

.wrap_imageslide .slide-wrap.bottom ul:last-child {
  animation: slideBottom2 50s -25s linear infinite;
}

.wrap_imageslide .slide-wrap li {
  width: 270px;
}

.wrap_imageslide .slide-wrap li img {
  width: 100%;
  height: auto;
}

@keyframes slideTop {
  0% {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes slideTop2 {
  0% {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-200%);
  }
}

@keyframes slideBottom {
  0% {
    transform: translateX(0%);
  }

  to {
    transform: translateX(200%);
  }
}

@keyframes slideBottom2 {
  0% {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

/* 特別なパッケージ */
.wrap_package {
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 160px;
  padding-bottom: 160px;
  background-color: #F8F6F2;
}

.head_package {
  font-size: 3.5625rem;
  color: #6C350D;
  padding-bottom: 60px;
  margin-bottom: 40px;
  background-image: url(../img/img_separator.png);
  background-repeat: no-repeat;
  background-position: bottom left;
}

.wrap_package .link_list li a::after {
  background-image: url(../img/arrow_link.png);
}

.wrap_package p {
  line-height: 2.1em;
}

.cont_package{
  width: 48%;
}

.cont_package .link_list{
  margin-top: 80px;
}

.img_package img {
  width: 100%;
}

.wrap_package .hovItem::before {
  background-color: #F8F6F2;
}

/* 持続可能な社会のために */
.wrap_sustainable {
  background-color: #F8F6F2;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 160px;
  padding-bottom: 160px;
}

.head_sustainable {
  font-size: 2.5rem;
  text-align: center !important;
  background-image: url(../img/img_storySep_b.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  padding-bottom: 60px;
  margin-bottom: 40px;
}

.list_sust {
  gap: 60px 60px;
  padding-bottom: 90px;
  margin-bottom: 40px;
  background-image: url(../img/arrow_sust.png);
  background-repeat: no-repeat;
  background-position: bottom center;
}

.parts_sust {
  text-align: center !important;
  width: 160px;
  height: 160px;
  background-color: #fff;
  border-radius: 200px;
  font-size: 1.25rem;
  border: 1px solid;
}

.parts_su_urushi {
  position: relative;
}

.parts_su_urushi::before,
.parts_su_urushi::after {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  background-image: url(../img/back_sp_sust.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;

}

.parts_su_urushi::before {
  left: -45px;
}

.parts_su_urushi::after {
  right: -45px;
}

.parts_sust_message {
  text-align: center !important;
  font-size: 2.625rem;
  letter-spacing: 0.1em;
  background-image: url(../img/back_sust_border.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  padding-bottom: 16px;
}

.parts_su_scissors {
  border-color: #123984;
}

.parts_su_urushi {
  border-color: #A2641C;
}

.parts_su_akamatsu {
  border-color: #129F22;
}

/* ラインナップ */
.wrap_lineup {
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 160px;
  padding-bottom: 160px;
}

.head_lineup {
  font-size: 2.5rem;
  text-align: center !important;
  padding-bottom: 60px;
  margin-bottom: 80px;
  background-image: url(../img/img_separator.png);
  background-repeat: no-repeat;
  background-position: bottom center;
}

.head_lineupcategory{
  text-align: center !important;
  margin-bottom: 80px;
  font-size: 1.5rem;
  font-weight: bold;
  background-color: #f7f7f7;
  padding: 5px 0;
  /* font-family: "ab-shinyubipenjigyosyotai", sans-serif;
  font-weight: 400;
  font-style: normal; */
}

.list_lineup + .head_lineupcategory{
  margin-top: 160px;
}

.list_lineup {
  gap: 120px 2%;
}

.parts_lineup {
  width: 32%;
}

.img_lineup {
  margin-bottom: 30px;
}

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


/* ご注文 */
.wrap_order {
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 160px;
  padding-bottom: 160px;
  background-color: #F5F5F5;
}

.head_order {
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  text-align: center !important;
  margin-bottom: 30px;
}

.head_order+p {
  letter-spacing: 0.1em;
  line-height: 1.8em;
}

.img_order {
  width: 70%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

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

/* フッター */
.wrap_footer {
  background: linear-gradient(to bottom, #77898e 0%, #3b464b 100%);
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 100px;
  padding-bottom: 24px;
}

.head_footer {
  width: 210px;
  margin: 0 auto;
}

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

.link_footersns {
  margin-top: 50px;
  margin-bottom: 50px;
  /* gap: 0 40px; */
  gap: 0 20px;
}

.list_sns {
  gap: 0 16px;
  /* margin-bottom: 60px; */
}

.list_sns li {
  width: 40px;
}

.list_sns a {
  color: #fff;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: block;
  text-align: center !important;
  border: 1px solid #fff;
  border-radius: 40px;
  line-height: 37px;
}

.list_sns a:hover {
  transition: 0.5s;
  background-color: #3B5158;
}

.text_sns {
  display: none;
}

.link_inst_global,
.link_inst_japan {
  position: relative;
}

.link_inst_global::after,
.link_inst_japan::after {
  position: absolute;
  font-family: "garamond-premier-pro", serif !important;
  font-size: 0.625rem;
  font-weight: bold;
  bottom: -30px;
  left: 0;
  width: 100%;
  text-align: center !important;
}

.link_inst_global::after {
  content: "GLOBAL";
}

.link_inst_japan::after {
  content: "JAPAN";
}

.cont_address {
  text-align: center !important;
  letter-spacing: 0.1em;
}

.head_co {
  margin-bottom: 10px;
  font-size: 1.375rem;
}

.head_co,
.cont_address p,
.cont_address a {
  color: #fff;
}

.cont_tel {
  gap: 0 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.text_copy {
  color: #fff;
  margin-top: 60px;
}


/* ===== エフェクト ===== */
.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
}

.fadein.fadein-left {
  transform: translate(-30px, 0);
}

.fadein.fadein-right {
  transform: translate(30px, 0);
}

.fadein.fadein-up {
  transform: translate(0, -30px);
}

.fadein.fadein-bottom {
  transform: translate(0, 30px);
}

.fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* 問い合わせ 中心 */
.wrap_story+.wrap_order {
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 80px;
}

.wrap_story+.wrap_order .head_order {
  color: #b7282e;
  margin-bottom: 60px;
}

.wrap_story+.wrap_order .head_order::after {
  content: "";
  background-image: url(../img/img_storySep_b.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 30px;
  position: absolute;
  top: 170px;
  left: 0;
}

.wrap_story+.wrap_order .button_more {
  width: 160px;
}


/* ===== お問い合わせフォーム ===== */
/* テキストボックス */
.c-form-text {
  height: 2.4em;
  width: 100%;
  padding: 0 16px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  margin-top: 8px;
}

.c-form-text:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}
/* ラジオボタン */
 /* .c-form-radio{
 display: flex;
  flex-direction: column;
  align-items: flex-start;
} */

.c-form-radio input {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.c-form-radio-name {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  display: block;
  padding: 20px 20px 20px 40px;
  box-sizing: border-box;
  position: relative;
}

.c-form-radio-name:before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border: 1px solid #ccc;
  border-radius: 50%;
  margin-right: 6px;
  flex-shrink: 0;
  box-sizing: border-box;
  position: absolute;
  left: 12px;
  top: 35%;
}

.c-form-radio input:checked + .c-form-radio-name {
  color: rgb(33, 150, 243);
  font-weight: bold;
  background-color: #fff;

}

.c-form-radio input:checked + .c-form-radio-name:before {
  border: 0.35em solid rgb(33, 150, 243);
  box-sizing: border-box;
}

.c-form-radio input:focus-visible + .c-form-radio-name .c-form-radio-text {
  background: linear-gradient(transparent 90%, rgba(33, 150, 243, 0.3) 90%);
}
/* テキストエリア */
.c-form-textarea {
  display: block;
  width: 100%;
  height: 100%;
  padding: 4px 16px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  resize: vertical;
  box-sizing: border-box;
  margin-top: 8px;
}

.c-form-textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}

/* お問い合わせforms　表示調整 */
.wrap_form{
  width: 60%;
  margin: 80px auto 60px auto;
}
.cont_form + .cont_form,
#cont_corp + .cont_form{
  margin-top: 40px;
}
#cont_corp{
  background-color: #ececec;
  margin-top: 10px;
  margin-bottom: 40px;
  box-sizing: border-box;
  padding: 20px 20px 40px 20px;
}
.parts_radio{
  width: 50%;

}
.c-form-radio label{
  width: 100%;
  display: block;
  cursor: pointer;


  /* background-color: #129F22; */
}
/* 送信ボタン */
.cont_form .button_more{
  padding: 6px 18px;
  background-color: #b7282e;
}
.cont_form .button_more:hover {
  background-color: #640125;
  transition: 0.5s;
}


/*=====================================*/
/* ページネーション */
.parts_pagenation .page-numbers {
  padding: 8px;
  background-color: #E6EAE3;
  color: #999;
}

.parts_pagenation .page-numbers.dots {
  background-color: #fff;
  border: 1px solid #ccc;
}

.parts_pagenation a.page-numbers {
  border: 1px solid #00a497;
  box-sizing: border-box;
  background-color: #fff;
  text-decoration: none;
  color: #00a497;
}

/*=====================================*/
/* モーダル共通css */

/* これが無いとモーダルウィンドウ表示の際に余白が出る */
* {
  margin: 0;
  padding: 0;
}

/* モーダル全体(背景＋本体) */
.modal {
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 9999;
}

/* モーダル背景 */
.modal-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}

/* モーダル本体 */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: scroll;
  /* はみ出た部分はスクロールさせる */
  height: 80%;
  /* これが無いと「overflow:scroll」が利かない */
  width: 60%;
  /* これが無いと「overflow:scroll」が利かない */
  background: white;
  padding: 40px;
}

.modal_completion .modal-content {
  width: 70%;
  height: 80%;
}

/* モーダルウィンドウ表示中に記事本体を固定 */
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

/* モーダル内のデザイン */
.head_modal {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center !important;
  background-image: url(../img/img_storySep_b.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 50px;
}

.img_modal,
.modal_footer {
  margin-top: 60px;
}

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

.flexbox .img_modal {
  width: 48%;
  margin-top: 40px;
}

.modal-content p {
  line-height: 1.8em;
}

.modal-content p+p {
  margin-top: 20px;
}

/* モーダル内　南部氏 */
.cont_nanbushi {
  gap: 40px 2%;
  margin: 40px 0;
}

.parts_nanbushi {
  width: 20%;
}

.parts_nanbushi p {
  line-height: 1.4em;
  margin-top: 16px;
}

.parts_nanbushi p+p {
  margin-top: 8px;
}

.img_nanbushi img {
  width: 100%;
  height: auto;
  border-radius: 100px;
}

/* .modal-content a{
  text-decoration: underline;
  color: #123984;
}
.modal-content a:hover{
  text-decoration: none;
}
.button_more{
  color: #333;
  text-decoration: none !important;
} */

/*=====================================*/
.minSize {
  display: none !important;
}

@media screen and (min-width:310px) and (max-width:1336px) {
  .cont_package .minSize{
    display: block !important;
  }
}

@media screen and (min-width:310px) and (max-width:1262px) {

  /* サイズ調整 サスティナブル */
  .list_sust {
    gap: 60px 38px;
  }

  .parts_su_urushi::before,
  .parts_su_urushi::after {
    width: 20px;
    height: 20px;
  }

  .parts_su_urushi::before {
    left: -29px;
  }

  .parts_su_urushi::after {
    right: -29px;
  }

  .wrap_sustainable {
    padding-left: 3%;
    padding-right: 3%;
  }


}

@media screen and (min-width:310px) and (max-width:1250px) {

  /* サイズ調整 用途スライド */
  .wrap_preface .cont_slide {
    gap: 10px 40px;
  }

  .wrap_preface .swiper-cont {
    left: 0;
  }

}

@media screen and (min-width:310px) and (max-width:1342px) {

  /* サイズ調整 職人 */
  .box_craftsman {
    gap: 0 20px;
  }

  .img_craftsman {
    width: 40%;
  }
}

@media screen and (min-width:310px) and (max-width:1190px) {

  /* サイズ調整 職人 */
  .parts_craftsman {
    flex-direction: column;
    gap: 40px 0;
  }

  .head_craftsman {
    font-size: 2.6rem;
  }

  .head_craftsman span {
    font-size: 2.3rem;
  }

  .wrap_scissors .parts_craftsman,
  .wrap_urushi .parts_craftsman {
    background-size: 50%;
  }

  /* サイズ調整 問い合わせフォーム */
  .wrap_form{
    width: 80%;
  }

}

/* ==レスポンシブ調整 端末== */

@media screen and (min-width:310px) and (max-width:100000px) {
  /* タブレット */

  /* 全体サイズ */
  .slide_top {
    width: 100%;
    position: absolute !important;
  }

  .wrap_contentSize {
    width: 100%;
    left: 0;
  }

  #fixed-header {
    width: 100%;
  }

  /* セパレート */
  .wrap_separate_story {
    padding-bottom: calc(15vw);
    /* 高さ*/
  }

  .wrap_separate_story::before {
    border-bottom: 15vw solid #F4F0E9;
    /* 高さ */
  }

  /* .wrap_scissors .parts_craftsman,
  .wrap_urushi .parts_craftsman {
    background-size: 36%;
  } */

  /* メインビジュアル */
  .title_top .kv_pc {
    display: none;
  }

  .title_top .kv_tb {
    display: block;
  }

  .title_top,
  .button_scroll {
    color: #fff;
  }

  .button_scroll::before {
    border: 1px solid #fff;
  }

  .button_scroll::after {
    background-image: url(../img/arrow_scroll_w.svg);
  }

  /* モーダル内　南部氏 */
  .cont_nanbushi {
    gap: 40px 5%;
  }

  .parts_nanbushi {
    width: 40%;
  }

  .img_nanbushi img {
    border-radius: 300px;
  }

}

@media screen and (min-width:310px) and (max-width:840px) {

  .wrap_package .flexbox{
    flex-direction:column;
  }
  .cont_package{
    width: 100%;
  }
  .cont_package + .cont_package{
    margin-top: 120px;
  }
  .img_package{
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}


@media screen and (min-width:310px) and (max-width:800px) {
  .parts_lineup {
    width: 48%;
  }
    /* サイズ調整 問い合わせフォーム */
    .wrap_form{
      width: 90%;
    }
}

@media screen and (min-width:310px) and (max-width:666px) {
  /* スマホサイズ */

  /* br調整 */
  .minSize {
    display: block !important;
  }

  .maxSize {
    display: none !important;
  }

  /* メインビジュアル */
  .title_top {
    font-size: 2.9rem;
  }

  /* スライド　使用用途 */
  .wrap_preface .swiper {
    height: 610px;
  }

  .wrap_preface .swiper-slide {
    width: 100%;
  }

  .wrap_preface .swiper-cont {
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding: 0 0;
  }

  .wrap_preface .cont_slide {
    width: 100%;
    height: 200px;
  }

  .head_preface {
    font-size: 1.3rem;
  }

  .wrap_preface .cont_slide {
    padding: 20px 10px;
    gap: 20px 40px;
  }

  /* 職人 */
  .box_craftsman {
    flex-direction: column;
    gap: 60px 20px;
  }

  .img_craftsman,
  .parts_craftsman {
    width: 100%;
  }

  .parts_craftsman {
    margin-left: -36px;
    width: 108%;
  }

  /* package */
  .head_package {
    font-size: 2.8rem;
  }

  /* モーダル */
  .head_modal {
    font-size: 1.5rem;
    font-weight: 600;
  }

  /* .flexbox .img_modal{
      width: 100%;
    } */
  /* モーダル内　南部氏 */
  .parts_nanbushi {
    width: 80%;
  }

    /* サイズ調整 問い合わせフォーム */
    .wrap_form{
      width: 100%;
    }


    .img_package{
      width: 90%;
    }


}

@media screen and (min-width:310px) and (max-width:620px) {


  /* サイズ調整 サスティナブル */
  .list_sust {
    flex-direction: column;
    align-items: center;
  }

  .parts_sust {
    width: 240px;
    height: 240px;
    font-size: 1.65rem;
    line-height: 1.8em;
  }
  .en_body .parts_sust{
    line-height: 1.1em;
  }
  .en_body .parts_sust .font_14{
    font-size: 1.2rem;
  }

  .parts_su_urushi::before,
  .parts_su_urushi::after {
    width: 40px;
    height: 40px;
  }

  .parts_su_urushi::before {
    left: 98px;
    top: -62px;
  }

  .parts_su_urushi::after {
    right: 98px;
    bottom: -62px;
  }

  .list_sust {
    gap: 80px 38px;
  }

  /* ラインナップ */
  .parts_lineup {
    width: 100%;
  }
}