@charset "utf-8";

html {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  color: #1d1d1d;
  font-family: 'Noto Sans JP',sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background: #fff;
  margin: auto;
  display: grid;
  width: 100%;
  font-size: 18px;
}
a{
  text-decoration: none; 
}
header{
  position: relative;
  height: 100vh;
  margin: 0 auto;
}
@media screen and (max-width: 600px){
  header{
    height: 100svh;
  }
}
.pc{
  display: block;
}
.sp{
  display: none;
}
@media screen and (max-width: 600px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
}
/* ------------ FV video キャッチコピー ------------ */
.kv{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 600px){
  .kv{
    height: 100svh;
  }
}
.kv .main-copy{
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: .2em;
}
.main-copy img{
  width: 25%;
}
.sub-copy img{
  width: 70%;
}
@media screen and (max-width: 600px){
  .main-copy img{
    width: 70%;
  }
  .sub-copy img{
    width: 85%;
  }
}
.kv .sub-copy{
  color: #fff;
  font-size: 20px;
  text-align: center;
}
/* ------------ FV video ------------ */
.video{
  width: 100%;
  height: 100vh;
  background: url(../img/kv-alternative.jpg) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}
.video::after{
  content: '';
  width: 100%;
  height: 100%;

  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .3;
}
.video video{
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 600px) {
  .video video{
    left: 100%;
  }
}
@media screen and (min-width: 768px) {
  /* kv */
  .kv{
    min-width: 960px;
  }
  .kv .sub-copy{
    font-size: 30px;
    margin-top: 20px;
  }
  /* video */
  .video{
    min-width: 960px;
  }
}
@media screen and (max-width: 767px) {
  .kv .sub-copy{
    margin-top: 10px;
  }
}
/* ------------ FV video ここまで ------------ */
/* ------------ FV スクロールダウン ------------ */
.p-mv__scroll {
	bottom: 70px;
	color: #fff;
	font-size: 10px;
	position: absolute;
	right: 20px;
	text-transform: uppercase;
	writing-mode: vertical-rl;
  letter-spacing: 4px;
}
.p-mv__scroll::before {
	animation: scroll 2s infinite;
	background-color: #fff;
	bottom: -55px;
	content: "";
	height: 50px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 3px;
	width: 1px;
}
@media screen and (min-width: 768px) {
.p-mv__scroll {
	bottom: 170px;
	font-size: 12px;
	right: 50px;
}
.p-mv__scroll::before {
	bottom: -160px;
	height: 150px;
}
}
@keyframes scroll {

  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
  
  }
  /* ------------ FV スクロールダウン ここまで ------------ */
  /* ------------ FV カウントダウン ------------ */
/* リセットCSS（簡易版） */
*, *::before, *::after {
  padding: 0;
  margin: 0;
}

/* 全体を囲うコンテナー＆背景 */
.container {
  background-image: url('bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 背景画像と文字を区別させるためのオーバーレイ */
.countainer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

/* カウントダウンタイマー本体 */
.countdown {
  position: absolute;
  bottom: 15%;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .countdown{
    bottom: 20%;
  }
}

/* タイトル */
.countdown-title {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 100;
  letter-spacing: 3px;
}

/* 年のテキスト */
.new-year {
  display: block;
  font-size: 200px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* タイマー部分を囲うコンテナー */
.time-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* hours, minutes, secondsの共通スタイル */
.time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
  font-size: 20px;
}

/* hours, minutes, secondsの数値のスタイル */
.time-num {
  font-size: 40px;
  line-height: 1;
}

/* 小さいデバイス用に文字サイズ & margin調整 */
@media screen and (max-width: 600px) {
  .countdown-title {
    font-size: 20px;
  }

  .new-year {
    font-size: 100px;
  }

  .time-wrap {
    margin-top: 10px;
  }

  .time {
    font-size: 12px;
    margin: 0 10px;
  }

  .time-num {
    font-size: 25px;
  }

  .time-container{
    margin-top: 10px;
  }

}   
  /* ------------ FV カウントダウン ここまで ------------ */
  
  .message{
    background-image: url(../img/message_bg.webp?20250423);
    text-align: center;
    width: 100%;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 215px 0;
  }

  h2{
    font-size: 35px;
    margin-bottom: 50px;
    letter-spacing: 10px;
  }

  .message h2{
    line-height: 1;
  }

  .h2_jp{
    font-size: 15px;
  }

  .message p{
    line-height: 2.5;
    letter-spacing: 5px;
    opacity: 0.9;
  }

  @media screen and (max-width: 600px){

    .message{
      padding: 100px 0;
    }

    h2{
      font-size: 25px;
    }

    .message h2{
      line-height: 1.2;
    }

    .message p{
      font-size: 14px;
      padding: 0 10px;
    }

    .h2_jp{
      font-size: 10px;
    }

  }

  .product{
    background-image: url(../img/product.webp?20250423-2);
    text-align: center;
    width: 100%;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 215px 0;
  }

  .product h2{
    line-height: 1;
  }

  .product p{
    line-height: 2.5;
    letter-spacing: 5px;
    opacity: 0.9;
  }

  @media screen and (max-width: 600px){

    .product{
      padding: 100px 0;
    }

    .product h2{
      line-height: 1.2;
    }

    .product p{
      font-size: 14px;
      padding: 0 10px;
    }

  }

  .recruit{
    background-image: url(../img/recruit_bg.webp);
    text-align: left;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0px 215px;
  }

  .flex h2{
    letter-spacing: 5px;
    font-size: 30px;
    margin-bottom: 40px;
  }

  .single h2{
    letter-spacing: 2px;
    font-size: 30px;
    margin-bottom: 0;
  }

  .recruit p{
    line-height: 2;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 40px;
  }

  @media screen and (max-width: 600px){

    .recruit{
      padding: 100px 0 100px;
    }
    
    .flex h2{
      font-size: 20px;
      letter-spacing: 3px;
    }

    .single h2{
      font-size: 20px;
      letter-spacing: 3px;
    }

    .recruit p{
      font-size: 14px;
      letter-spacing: 1px;
    }

  }
  .flex{
    display: flex;
    max-width:  1000px;
    margin: auto;
  }
  .left{
    width: 55%;
  }
  .right{
    position: relative;
    width: 45%;
  }
  .right p{
    position: absolute;
    letter-spacing: 15px;
    right: -20%;
    top: -40%;
    font-size: 130px;
    opacity: 0.15;
    color: #fff;
  }
  @media screen and (max-width: 1190px){
    .right p{
      font-size: 90px;
      right: 10%;
      top: -20%;
    }
  }
  @media screen and (max-width: 600px){
    .flex{
      display: block;
      position: relative;
    }
    .left{
      width: 90%;
      margin: auto;
    }
    .right{
      width: 100%;
      position: static;
    }

    .right p{
      font-size: 50px;
      top:  -50%;
      left: 5%;
      right: 0;
      opacity: 0.4;
      letter-spacing: 15px;
    }
  }

 /*================ ボタン共通設定 ====================*/
.btn{
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
overflow: hidden;
  /*ボタンの形状*/
text-decoration: none;
display: inline-block;
  border-bottom: 0.5px solid #555;/* ボーダーの色と太さ */
  padding: 10px 30px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/   
  transition: ease .2s;
}

@media screen and (max-width: 600px){
  .btn{
    padding: 10px 20px;
  }
}

.btn::after{
  content: '>';
  margin-left: 30px;
  color: #1d1d1d;
}

.btn:hover::after{
  color: #fff;
  z-index: 10;
}

/*ボタン内spanの形状*/
.bgleft span {
position: relative;
z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
color:#333;
}

@media screen and (max-width: 600px){
  .bgleft span{
    font-size: 15px;
  }
}

.bgleft:hover span{
color:#fff;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
content: '';
  /*絶対配置で位置を指定*/
position: absolute;
top: 0;
left: 0;
z-index: 2;
  /*色や形状*/
background:rgba(29, 29, 29, 0.1);/*背景色*/
width: 100%;
height: 100%;
  /*アニメーション*/
transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
transform: scale(0, 1);
transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before{
transform-origin:left top;
transform:scale(1, 1);
}
 /*================ ボタンここまで ====================*/
 /*================ ボタンrecruit ====================*/
/*== 線の上を別の線が伸びる */

.btnlinestretches4{
  /*線の基点とするためrelativeを指定*/
position:relative;
  /*リンクの形状*/ 
color:#1d1d1d;
  padding: 10px 50px 10px 30px;
display:inline-block;
  text-decoration: none;
  outline: none;
  letter-spacing: 1px;
}
@media screen and (max-width: 600px){
  .btnlinestretches4{
    font-size: 12px;
    letter-spacing: 1px; 
  }
}
/*線の設定*/
.btnlinestretches4::before,
.btnlinestretches4::after{
content:'';
  /*絶対配置で線の位置を決める*/
position:absolute;
z-index:1;
bottom:0;
left:0;
   /*線の形状*/   
background:rgba(29, 29, 29, 0.5);
width:100%;
height:1px;
  /*アニメーションの指定*/
transition:all 0.3s ease-in-out;
}

/*hover時に伸びる線の形状*/   
.btnlinestretches4::after{
width:0;
background:#ccc;
}

/*hover時に100%に伸びる*/   
.btnlinestretches4:hover::after {
width:100%;
}

/*矢印の設定*/   
.btnlinestretches4 span::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 1.3em;
  right: 20px;
  /*矢印の形状*/   
  width: 5px;
  height: 5px;
  border-top: 1px solid #1d1d1d;
  border-right: 1px solid #1d1d1d;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all .3s;
}

/*hover時に矢印が移動*/   
.btnlinestretches4:hover span::after {
right:15px;
}
 /*================ ボタンrecruitここまで ====================*/
 .contact{
  background-image: url(../img/form_bg.webp);
    text-align: left;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 215px 0;
 }

 .contact h2{
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  line-height: 1;
 }

 @media screen and (max-width: 600px){

  .contact{
    padding: 100px 0;
  }
  
  .contact h2{
    font-size: 25px;
    letter-spacing: 10px;
    line-height: 1.2;
  }

}
 /*================ フォーム ====================*/
form {
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 600px){
  form{
    width: 90%;
  }
}
.form-row {
  display: block;
  align-items: center;
  padding: 20px;
}
@media only screen and (max-width: 600px){
  .form-row {
    padding: 10px 15px;
  }
}
.form-row:last-child {
  border-bottom: none;
}
.form-label {
  display: flex;
  align-items: center;
  width: 250px;
  padding-bottom: 5px;
}
@media only screen and (max-width: 600px){
  .form-label {
    font-size: 14px;
  }
}
.form-label span  {
  padding: 0 0 6px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: bold;
  color: #C51412;
}
@media only screen and (max-width: 600px){
  .form-label span{
    font-size: 7px;
  }
}
/* フォームパーツのデザイン */
input, textarea {
  background-color: rgba(229, 229, 229, 0.05);
  border: solid 0.5px rgba(112, 112, 112, 0.35);
  padding: 10px 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1.5px;
  flex-grow: 1;
  width: 100%;
}
@media only screen and (max-width: 600px){
  input, textarea{
    width: 87%;
    font-size: 15px;
    border-radius: 0;
  }
}
input::placeholder,
textarea::placeholder {
  color: #999;
  font-size: 12px;
  opacity: 0.5;
}
button {
  border: none;
  background: none;
  width: 200px;
  height: 50px;
  display: block;
  margin: 30px auto;
}
.button_arrows{
  vertical-align: middle;
}
.form_text{
  padding-left: 40px;
}
button.btn02 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  background: transparent;
  padding: 10px 20px;
  border: solid 0.5px rgba(112, 112, 112, 0.7);
  position: relative;
  z-index: 1;
  transition: .3s;
}
@media only screen and (max-width: 600px){
  button.btn02{
    border: solid 0.7px rgba(112, 112, 112, 0.7);
  }
}
button.btn02::after{
  content: "";
  color: rgba(255, 255, 255, 0.7);
  position: absolute;
  right: 8%;
  top: 45%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: all .3s;
}
button.btn02:hover::after{
  color: #fff;
}
button.btn02 ::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.7);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
button.btn02 :hover {
  color: #fff;
}
button.btn02 :hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.cta_text_02{
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
}
@media only screen and (max-width: 600px){
  .cta_text_02{
    font-weight: lighter;
    padding-left: 0;
    vertical-align: -webkit-baseline-middle;
  }
}
 /*================ フォーム ====================*/
 .privacy {
  font-size: 12px;
  padding-top: 30px;
  text-align: center;
}
.privacy a{
  color: #fff;
  border-bottom: solid 0.2px rgba(255, 255, 255, 0.7);;
}
.privacy a:hover{
  opacity: 0.8;
}

@media only screen and (max-width: 600px){
  .privacy {
    font-size: 10px;
    text-align: left;
  }
}
 /*================ フッター ====================*/
 footer{
  background: #060805;
  padding: 30px 0 20px;
  width: 100%;
  color: #fff;
  letter-spacing: 2px;
 }
 footer a{
  color: #fff;
 }
 footer a:hover{
  opacity: 0.8;
 }
 footer h1{
  font-size: 20px;
 }
 @media only screen and (max-width: 600px){
  footer h1{
    margin-bottom: 10px;
    font-size: 15px;
  }
 }
 footer p{
  font-size: 15px;
  padding: 5px 15px;
 }
 @media only screen and (max-width: 600px){
  footer p{
    font-size: 12px;
  }
 }
 .flex02{
  max-width: 1200px;
  display: flex;
  margin: auto;
  align-items: center;
 }
 @media only screen and (max-width: 600px){
  .flex02{
    display: block;
    text-align: center;
  }
 }
 .f_left{
  width: 70%;
  display: flex;
  align-items: center;
 }
 @media only screen and (max-width: 600px){
  .f_left{
    display: block;
    width: 90%;
    margin: auto;
  }
 }
.f_right{
  width: 30%;
  text-align: right;
}
@media only screen and (max-width: 600px){
  .f_right{
    display: none;
  }
}
.pr70{
  padding-right: 70px;
  width: 30%;
}
.pr70 img{
  width: 100%;
}

@media only screen and (max-width: 600px){
  .pr70{
    padding: 0;
    width: 70%;
    margin: 0 auto 20px;
  }
}
.copy{
  max-width: 1200px;
  text-align: center;
  font-size: 15px;
  margin: 30px auto 0; 
}
@media only screen and (max-width: 600px){
  .copy{
    font-size: 10px;
  }
}
 /*================ フッター ここまで ====================*/
  /*================ thanks ====================*/
  .thanks{
    width: 100%;
    text-align: center;
    background: #1d1d1d;
    color: #fff;
  }
  .t_k{
    max-width: 960px;
    margin: 215px auto;
  }
  @media only screen and (max-width: 600px){
    .t_k{
      width: 90%;
    }
    .t_k p{
      font-size: 15px;
      line-height: 2;
      margin-bottom: 60px;
    }
  }
  /*================ アニメーション　下からフェードイン ====================*/
  .fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:1.3s;
    animation-fill-mode:forwards;
    opacity:0;
    animation-iteration-count: 1;
    }
    
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
      transform: translateY(100px);
      }
    
      to {
        opacity: 1;
      transform: translateY(0);
      }
    }

    /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
     
    .fadeUpTrigger{
        opacity: 0;
    }
    
/*================ アニメーション　下からフェードイン　ここまで ====================*/
/*================ アニメーション　下からウェーブ ====================*/
.js-text span {
  display: inline-block;
}
/*================ アニメーション　下からウェーブ　ここまで ====================*/
/*================ お知らせ ====================*/
.news{
  max-width: 800px;
  margin: 0 auto 300px;
}
@media only screen and (max-width: 600px){
  .news{
    width: 90%;
  }
  .news h2{
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 1.2;
  }
}
.news a{
  color: #1d1d1d;
}
.news a:hover{
  opacity: 0.8;
}
.news p{
  margin-bottom: 0;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* ここからがニュース記事のCSS */
.news_list_item {
padding: 25px 0;
border-bottom: 0.5px solid #BCBCBC;
}
@media only screen and (max-width: 600px){
  .news_list_item {
    padding: 20px 0;
    }
}
/*.news_list_item:first-child {
border-top: 0.5px solid #BCBCBC;
}*/
.news_list_item a {
position: relative;
display: flex;
padding-right: 30px;
}
.news_list_date {
font-size: 15px;
display: flex;
margin-right: 15px;
align-items: center;
}
@media only screen and (max-width: 600px){
  .news_list_date {
    padding-bottom: 10px;
  }
}
.news_list_date time{
background: #bcbcbc;
border-radius: 60px;
width: 6em;
text-align: center;
padding: 5px 10px;
color: #fff;
letter-spacing: 1px;
}
@media only screen and (max-width: 600px){
  .news_list_date time{
    font-size: 12px;
  }
}
.news_list p{
  padding-left: 30px;
}
@media only screen and (max-width: 600px){
  .news_list p{
    padding-left: 0;
  }
}
/*.news_item {
background: #F6C6A2;
border-radius: 14px;
width: 6em;
text-align: center;
margin-left: 20px;
}*/
.arrow {
width: 25px;
height: 1px;
background: #707070;
position: absolute;
top: 50%;
right: 0;
}
.arrow::after {
content: "";
display: block;
width: 6px;
height: 1px;
background: #707070;
transform: rotate(45deg);
position: absolute;
right: 0px;
bottom: 2px;
}
.news_next{
  float: right;
  margin-top: 10px;
  font-size: 12px;
}
.news_next a.btnlinestretches4{
  padding: 10px 40px 10px 20px;
}
@media screen and (max-width: 1024px) {
  .news_list_item a {
      display: block;
  }
}
@media screen and (max-width: 769px) {
  .news_list_item a  {
      font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .arrow {
      display: none;
  }
  .news_list_item a {
      padding-right: 0;
  }
}
.single{
  max-width: 650px;
  width: 90%;
  margin: 50px auto;
}
.single_h2{
  margin: 10px 0 50px;
  font-size: 25px;
  letter-spacing: 2px;
  border-bottom: solid 1.5px #bcbcbc;
}
.single p{
  font-size: 16px;
  letter-spacing: 1px;
}
.single img{
  max-width: 600px;
  width: 100%;
  display: block;
  margin: 30px auto;
}
@media screen and (max-width: 600px){
  .single_h2{
    font-size: 20px;
  }
}
.single_btn{
  margin: 150px auto;
  text-align: center;
}
.single_btn a{
  color: #1d1d1d;
}
.page-link.prev a{
  color: #fff;
}
.page-link.next a{
  color: #fff;
}
.page-links{
  display: flex;
  justify-content: center;
  font-size: 15px;
}
.page-link.prev,
.page-link.next{
  padding: 5px 20px;
  background-color: #707070;
  border-radius: 60px;
  margin: 0 10px;
}
.page-link.archive{
  padding: 5px 20px;
  border: solid 1px #707070;
  border-radius: 60px;
  margin: 0 10px;
}
.page-link.prev a:hover,
.page-link.next a:hover,
.page-link.archive a:hover{
  opacity: 0.8;
}
.blog__pagination{
  text-align: center;
}
.page-numbers{
  background-color: #bcbcbc;
  color: #fff;
  padding: 5px 10px;
  margin: 0 5px;
}
.pagination span{
  background-color: #707070;
}
.pagination a:hover{
  opacity: 0.8;
}
.mb0{
  margin-bottom: 0;
}
a.btn_03 {
	display: block;
	text-align: center;
	/*vertical-align: middle;*/
	text-decoration: none;
	width: 100px;
	margin: 0 auto 50px;
	padding: 1rem 4rem;
	font-weight: bold;
	border: 1px solid #1d1d1d;
	color: #1d1d1d;
	transition: 0.5s;
	letter-spacing: 2px;
	font-size: 15px;
}
a.btn_03:hover {
	color: #fff;
	background: #1d1d1d;
}

/*================ お知らせ ここまで ====================*/
/*================ 追加CSS ====================*/
.mt150{
  margin-top: 150px;
}
@media only screen and (max-width: 600px){
  .mt150{
    margin-top: 100px;
  }
}
.btn03{
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  background: transparent;
  padding: 15px 20px;
  border: solid 0.5px rgba(112, 112, 112, 0.7);
  position: relative;
  z-index: 1;
  transition: .3s;
  width: 200px;
  margin: 30px auto;
}
@media only screen and (max-width: 600px){
.btn03{
    border: solid 0.7px rgba(112, 112, 112, 0.7);
  }
}
.btn03::after{
  content: "";
  color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 48%;
  right: 10%;
  font-size: 18px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: all .3s;
}
.btn03:hover::after{
  color: #fff;
}
.btn03::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.7);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
.btn03:hover {
  transition: .3s;
  color: #fff;
}
.btn03:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.btn03 a{
  text-decoration: none;
  color: #fff;
}
/*取り扱い商品追加*/
.product_title{
  font-size: 22px;
  text-align: center;
  letter-spacing: 5px;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px){
  .product_title{
    font-size: 20px;
  }
}
.instagram{
  width: 30px;
  margin: 30px auto;
}
.instagram img{
  width: 30px;
  display: block;
  margin: 30px auto;
}
.instagram a:hover{
  opacity: 0.8;
  transition : 0.5s;
}
.mt70{
  margin-top: 70px;
}