@charset "UTF-8";
/* CSS Document */

html{
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body{
  margin: 0;
  padding: 0;
  max-width: 100%;
  margin: auto;
  background-color: #fffcf8;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

h1,h2,h3,h4,h5,h6,a{
  margin-top: 0;
  margin-bottom: 0;
}

::selection {
  background: #e95504;
  color: #fff;
}

img {
  margin: 0;
  padding: 0;
	height: auto;
  vertical-align:top;
}

.orange{
  color: #e95504;
}


/*デザイン用CSS*/

@media (max-width: 849px) {

  .none__mb{
  display: none;
}


  #g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 800;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#ffc6a7;
    opacity: 0.8;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

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

#g-nav-list{
    display: flex;
}

.g-nav-l{
    width: 30%;
    margin: auto;
    text-align: center;
}

.g-nav-l img{
    display: none;
}

.g-nav-r{
    width: 70%;
    display: flex;
    margin: auto;
}

.g-nav-r a{
    color: #111;
    text-decoration: none;
    font-weight: 500;
}

.header__content__r{
    width: 70%;
}

.header__content__r__top{
    display: flex;
}

.header__content__r__gp{
    margin-right: 100px;
}

.header__content__r__gp ul {
    list-style: none;
}

.header__content__r__gp li{
    margin-bottom: 13px;
}

.header__content__r__gp a{
    font-size: 17px;
    letter-spacing: 2px;
    transition: 0.3s;
    font-weight: 500;
}

.header__content__r__gp a:hover{
    color: #666;
    transition: 0.3s;
}

  .openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: relative;
	background:#e95504;
	cursor: pointer;
  width: 50px;
  height:50px;
	border-radius: 50px;
  z-index: 999;
  margin: 0 0 0 auto;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
  	width: 45%;
  }


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

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

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

.openbtn span:nth-of-type(3)::after {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:5px;
	left:-2px;
	color: #fff;
	font-size: 1rem;
	text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
    top: 14px;
    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: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(3)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
	top:5px;
	left:4px;
}

    /* header */

  .header__marker{
    background-color: #e95504;
    color: #fff;
    letter-spacing: 2px;
    height: 40px;
    font-size: 1.6rem;
    font-weight: 600;
    width: 100%;
  }

  .header__marker p{
    margin: auto;
  }

  .pc__header__main{
    width: 95%;
    margin: auto;
    margin-top: 20px;
    display: flex;
    align-items: center;
    z-index: 999;
    position: relative;
  }

  .header__logo img{
    width: 100px;
    z-index: 999;
    margin-top: 0px;
  }

  .pc__nav{
    display: none;
  }

  .header__btn{
    display: none;
  }

  .header__btn a{
    text-decoration: none;
  }

  .header__btn__mb{
    margin: 0 10px 0 auto;
  }

  .header__btn__mb a{
    text-decoration: none;
  }

  .button-01 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 230px;
    height: 50px;
    margin:0 auto;
    padding: .9em 2em;
    overflow: hidden;
    border: 1px solid #e95504;
    border-radius: 30px;
    background-color: #e95504;
    color: #fff;
    font-size: 1em;
    transition: 0.7s;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .button-01:hover {
    background-color: transparent;
    color: #e95504;
    transition: 0.7s;
  }

  .button-02 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 230px;
    height: 50px;
    margin:0 auto;
    padding: .9em 2em;
    overflow: hidden;
    border: 1px solid #39b54a;
    border-radius: 30px;
    background-color: #39b54a;
    color: #fff;
    font-size: 1em;
    transition: 0.7s;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-left: 20px;

  }

  .button-02:hover {
    background-color: transparent;
    color: #39b54a;
    transition: 0.7s;
  }

  .button-02-mb {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 180px;
    height: 50px;
    margin:0 auto;
    padding: .9em 2em;
    overflow: hidden;
    border: 1px solid #39b54a;
    border-radius: 30px;
    background-color: #39b54a;
    color: #fff;
    font-size: 1rem;
    transition: 0.7s;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-left: 20px;

  }

  .button-02-mb:hover {
    background-color: transparent;
    color: #39b54a;
    transition: 0.7s;
  }

  .header__background{
    display: none;
  }


  .header__background__mb{
    width: 100%;
    margin-top: -75px;
    z-index: 100;
  }

  .header__background__mb img{
    width: 100%;
  }

  .index__top{
    height: 200px;
  }

  /* footer */

  .footer__banner{
    width: 80%;
    margin: auto;
    max-width: 1200px;
    padding-bottom: 50px;
  }

  .footer__banner__gp{
    width: 100%;
    text-align: center;
    margin: auto;
  }

  .footer__banner__gp a{
    width: 95%;
    margin: auto;
  }

  .footer__banner__gp img{
    width: 95%;
    transition: 0.5s;
    margin-bottom: 20px;
  }

  .footer__banner__gp img:hover{
    scale: 1.05;
    transition: 0.5s;
    opacity: 0.65;
  }

  .footer__contact{
    width: 100%;
  }

  .footer__contact__l{
    width: 100%;
    background-color: #e95504;
    border-radius: 80px 80px  0 0 ;
    color: #fff;
  }

  .footer__contact__l__box{
    width: 100%;
    margin: auto;
    text-align: center;
  }

  .footer__contact__l h4{
    padding-top: 50px;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
  }

  .footer__contact__l h5{
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 2px;
  }

  .footer__contact__l__btn{
    margin-top: 50px;
  }

  .footer__contact__l__btn a{
    text-decoration: none;
    display: flex;
    justify-content: center;
  }

  .button-03 {
    display: flex;
    justify-content: center;
    width: 80vw;
    margin: 20px 0;
    padding:1.5rem 2rem;
    border: none;
    background-color: #39b54a;
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .button-03:hover {
    animation: anima-button-03 2s linear infinite;
  }

  .button-04 {
    display: flex;
    justify-content: center;
    width: 80vw;
    margin: 20px 0;
    padding:1.5rem 2rem;
    border: none;
    background-color: #231815;
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .button-04:hover {
    animation: anima-button-03 2s linear infinite;
  }

  @keyframes anima-button-03 {
    7% {
        transform: translateY(-15px);
    }
    15% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-7px);
    }
    25% {
        transform: translateY(0);
    }
  }

  .footer__contact__l p{
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-align: center;
    padding-bottom: 50px;
  }

  .footer__contact__r{
    width: 100%;
    background-color: #231815;
    border-radius: 0 0 80px 80px;
    color: #fff;
    margin-top: -12px;
  }

  .footer__contact__r__box{
    width: 100%;
    margin: auto;
    text-align: center;
  }

  .footer__contact__r h4{
    padding-top: 50px;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
  }

  .footer__contact__r h5{
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 2px;
  }

  .footer__contact__r__btn{
    width: 100%;
    margin-top: 50px;
    padding-bottom: 50px;
  }

  .footer__contact__r__btn a{
    text-decoration: none;
    display: flex;
    justify-content: center;
  }

  .button-05 {
    display: flex;
    justify-content: center;
    width: 80vw;
    margin: 20px 0;
    padding:1.5rem 2rem;
    border: none;
    background-color: #fff;
    color: #231815;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .button-05::after {
    width: 1.25em;
    height: 1.25em;
    margin-left: 30px;
    margin-top: 2px;
    background-image: url("../img/footer_recruit_blank.png ");
    background-size: 1.3em;
    background-repeat: no-repeat;
    content: '';
  }

  .button-05:hover {
    animation: anima-button-03 2s linear infinite;
  }

  .footer__main{
    width: 100%;
  }

  .footer__main__l{
    width: 100%;
    border-radius: 80px 0 0 80px;
    padding: 100px 0 0 0px;
  }

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

  .footer__main__l h4{
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
  }

  .footer__main__l h5{
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 2px;
  }

  .footer__main__l img{
    margin-top: 50px;
    width: 90%;
  }

  .footer__main__l p{
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
  }

  .footer__map__pc{
    display: none;
  }

  .footer__main__r{
    width: 100%;
    padding:100px 0 0 0;
    z-index: 999;
    position: relative;
  }

  .footer__main__r__box{
    display: flex;
  }

  .footer__main__r__box__l{
    width: 40%;
    margin: auto;
  }

  .footer__main__r__box__l__ul{
    display: flex;
    align-items: center;
    transition: 0.5s;
  }

  .footer__main__r__box__l__ul:hover{
    margin-left: 20px;
    transition: 0.5s;
  }

  .footer__main__r__box__l__ul img{
    width: 30px;
  }

  .footer__main__r__box__l a{
    text-decoration: none;
    color: #111;
  }

  .footer__main__r__box__l__ul p{
    margin-left: 10px;
    font-size: 1.5rem;
    align-items: center;
    color: #111;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 500;
  }

  .footer__main__r__box__r{
    width: 20%;
    margin:0 auto;
  }

  .footer__main__r__box__r img{
    width: 50px;
    transition: 0.5s;
  }

  .footer__main__r__box__r img:hover{
    transition: 0.5s;
    scale: 1.1;
    margin-top: -20px;
  }

  .footer__main__r__box__l__sns{
    padding-top: 50px;
    margin: auto;
    width: 50%;
    text-align: center;
    z-index: 100;
    position: relative;
    z-index: 999;
  }

  .footer__main__r__box__l__sns__img{
    display: flex;
    margin: auto;
  }

  .footer__main__r__box__l__sns__img img{
    width: 35px;
    padding:10px;
    transition: 0.5s;
  }

  .footer__main__r__box__l__sns__img img:hover{
    scale: 1.1;
    transition: 0.5s;
  }

  .footer__main__r__background{
    width: 100%;
    margin-top: -100px;
    z-index: 100;
    position: relative;
  }

  .footer__main__r__background img{
    width: 100%;
    z-index: 100;
    position: relative;
  }

  .copy{
    background-color: #e95504;
    color: #fff;
    align-items: center;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .copy small{
    letter-spacing: 1px;
    font-size: 1.2rem;
  }


      /* mb_index.php css */

  .title__big{
    font-size: 5.0rem;
  }

  .title__section{
    font-size: 3.5rem;
  }


  .index__top{
    margin-top: -155%;
    position: relative;
  }

  .index__top img{
    width: 100%
  }

  .index__top__main{
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .index__top__main img{
    width: 80vw;
    transform-origin: center bottom;
    animation: yurayura 4s linear infinite;
  }

@keyframes yurayura {
  0% , 100%{
      transform: rotate(10deg);
  }
  50%{
      transform: rotate(-10deg);
  }
}

  .index__top__text{
    position: absolute;
    top: 5vh;
    left: 5vh;
  }

  .index__top__text img{
    width: 70vw;
  }

  .index__top__news{
    margin: auto;
    position: absolute;
    top: 55vh;
    left: 3vw;
    background-color: #fff;
    width: 90vw;
    padding: 0px;
    border-radius: 10px;
    border:5px solid #e95504;
  }

  .index__top__news h3{
    color: #e95504;
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-top: 20px;
  }

  .index__top__news__gp a{
    text-decoration: none;
    width: 90%;
    margin: auto;
  }

  .index__top__news__box{
    width: 80%;
    margin: auto;
    background-color: #e95504;
    color: #fff;
    display: flex;
    padding: 15px 10px;
    margin-bottom: 10px;
    border-radius: 5px;
  }

  .index__top__news__box h5{
    font-size: 1.2rem;
    letter-spacing: 0.5px;
  }

  .index__top__news__box h6{
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-left: 10px;
  }

  .index__top__news__btn{
    margin: 0 0 0 auto;
  }

  .button-13 a {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #e95504;
  font-weight:600;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 150px;
  text-align: center; 
  padding: 4px 16px 4px 0;
  margin: 24px;
  margin-inline: auto;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.button-13 a::before {
  content: "";
  display: block;
  position: absolute;
  width: 150px;
  height: 1px;
  background: #e95504;
  bottom: 0;
  transition: all 0.3s;
}

.button-13 a::after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  background: #e95504;
  rotate: 40deg;
  right: -3px;
  bottom: 10px;
  transition: all 0.3s;
}

.button-13 a:hover::after,
.button-13 a:hover::before {
  translate: 20px 0;
  transition: all 0.3s;
}

.index__top__banner{
  margin-top: 70vh;
}

.index__banner{
  width: 100%;
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.index__banner img{
  width: 90%;
  transition: 0.5s;
  margin-bottom: 20px;
}

.index__banner img:hover{
  scale: 1.05;
  transition: 0.5s;
  opacity: 0.65;
}

.index__service{
  width: 90%;
  margin: auto;
  margin-top: 50px;
}

.index__title{
  text-align: center;
}

.index__title h2{
  font-size: 2.0rem;
  letter-spacing: 3px;
}

.index__title h3{
  margin-top: 10px;
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-weight: 700;
}

.index__service__gp{
  width: 100%;
  margin:50px auto;
}

.index__service__gp__l{
  width: 100%;
  margin: auto;
  
}

.index__service__gp__l__title{
  display: flex;
  align-items: baseline;
}

.index__service__gp__l__title img{
  width: 20px;
  margin-right: 10px;
}

.index__service__gp__l__title h2{
  font-size: 1.2rem;
  letter-spacing: 1px;
  font-weight: 600;
}

.index__service__gp__l__content{
  margin-top: 30px;
}

.index__service__gp__l__content h3{
  display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
  padding: 3px;
  font-size: 1.6rem;
  letter-spacing: 2px;
  line-height: 200%;
  font-weight: 800;
  color: #fff;
  background: #e95504;
}

.index__service__gp__l__content p{
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  font-weight: 500;
  line-height: 190%;
  width: 90%;
}

.index__service__gp__l__btn{
  text-decoration: none;
  margin: auto;
  margin-top: 30px;
}

.index__service__gp__l__btn a{
  text-decoration: none;
  color: #000;
  transition: 0.5s;
}

.index__service__gp__l__btn a:hover{
  margin-top: -10px;
  transition: 0.5s;
}

.index__service__gp__l__btn__1{
  width: 250px;
  align-items: center;
  margin-right: 30px;
}

.index__service__gp__l__btn__1__box{
  display: flex;
  align-items: center;
}

.index__service__gp__l__btn__1__box p{
  font-size: 1.5rem;
  letter-spacing: 1px;
  font-weight: 600;
  margin: auto;
}

.index__service__gp__l__btn__1__box img{
  width: 50px;
  height: 100%;
  margin-left: 10px;
  margin: auto;
}

.index__service__gp__l__btn__2{
  margin-top: 10px;
  width: 200px;
}

.index__service__gp__l__btn__2__box{
  display: flex;
  align-items: center;
}

.index__service__gp__l__btn__2__box p{
  font-size: 1.5rem;
  letter-spacing: 1px;
  font-weight: 600;
  margin: auto;
}

.index__service__gp__l__btn__2__box img{
  width: 50px;
  height: 100%;
  margin-left: 10px;
  margin: auto;
}

.index__service__gp__r{
  width: 105.5%;
  text-align: right;
  margin-top: 50px;
  overflow: hidden;
}

.index__service__gp__r img{
  width: 90%;
}

.index__jirei{
  align-items: center;
  margin-top: 10px;
  background-color: #fdf6e6;
  border-radius: 40px;
  height: 45vh;
}

.index__jirei__box{
}

.index__jirei__box__l{
  display: flex;
  width: 100%;
  margin: auto;
  align-items: center;
  
}


.index__jirei__box__l__title{
  writing-mode: vertical-rl;
  margin: auto;
  margin-left: 0%;
  display: flex;
  text-align: center;
  align-items: center;
}

.index__jirei__box__l__title img{
  width: 30px;
  padding-top: 50px;
  padding-bottom: 10px;
}

.index__jirei__box__l__title h3{
  font-size: 2.4rem;
  letter-spacing: 1.5px;
}

.index__jirei__box__l__content{
  font-size: 1.5rem;
  font-weight: 600;
  margin: auto;
}

.index__jirei__box__r{
  width: 80%;
  margin: -40px 0 0 auto;
}

.slide-container {
    width: 100%;
    margin: -3.5vh auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.slide-wrapper {
  display: flex;
  animation: slide-flow 15s infinite linear 1s both;
}
.slide{
  height: 40vh;
  object-fit:cover;
  margin: 10px;
}
@keyframes slide-flow {
     0% {transform: translateX(0);}
 100% {transform: translateX(-100%);}
}

 .slide-paused:hover .slide-wrapper {
   animation-play-state: paused;
 }
 .slide-paused:hover .slide-wrapper img:hover {
   opacity: .99;
   cursor: grabbing;
 }

.index__service__img{
  width: 90%;
  margin: auto;
  margin-top: 30vh;
  text-align: center;
}

.index__service__img img{
  width: 100%;
  max-width: 1200px;
}

.index__service__2{
  width: 90%;
  margin: auto;
  margin-top: -50px;
}

.index__company{
  margin: 100px auto 0;
  padding: 5vh 0;
  background-color: #fdf6e6;
  border-radius: 50px;
}

.index__company__box{
  background-color: #fffcf8;
  border-radius: 100px;
  padding: 5vh 0 10vh 0;
}

.index__company__gp{
  margin-top: 20px;
}

.index__company__gp__l{
  width: 100%;
  margin: auto;
  text-align: center;
}

.index__company__gp__l h3{
  text-align: center;
  font-size: 3.0rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.index__company__gp__l h4{
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin: 20px auto;
}

.index__company__gp__l img{
  width: 90%;
}

.index__company__gp__r{
  width: 50%;
  display: none;
}

.index__company__gp__r img{
  width: 100%;
}

.index__company__btn{
  text-decoration: none;
  margin: auto;
  margin-top: 40px;
  width: 100%;
}

.index__company__btn a{
  text-decoration: none;
  color: #000;
  transition: 0.5s;
}

.index__company__btn a:hover{
  margin-top: -10px;
  transition: 0.5s;
  opacity: 0.5;
}

.index__service__gp__l__btn__3{
  width: 70vw;
  align-items: center;
}

.index__service__gp__l__btn__3__box{
  display: flex;
  align-items: center;
}

.index__service__gp__l__btn__3__box p{
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 0 10px 0 auto;
}

.index__service__gp__l__btn__3__box img{
  width: 50px;
  height: 100%;
  margin-left: 10px;
  margin:0 60px 0 0;
}

.index__column{
  width: 100%;
  padding: 50px 0;
}

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

.index__column__content a{
  text-decoration: none;
  color: #111;
  margin: auto;
  width: 100%;
}

.index__column__content__gp{
  width: 100%;
  margin-top: 50px;
}

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

.index__column__box__img{
  width: 100%;
}

.index__column__box__img img{
  width: 100%;
}

.index__column__box__title{
  font-size: 1.5rem;
  margin-top: 10px;
}

.index__column__box__tag{
  display: flex;
}

.index__column__tag__box{
  background-color: #e95504;
  color: #fff;
  padding:5px 20px;
  margin: 5px;
  border-radius: 20px;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.index__column__tag__box p{
  margin: 0;
}


/*mb_about用CSS*/

.about{
  width: 90%;
  margin: auto;margin-top: -140%;
  padding-bottom: 100px;
}

.about__title{
  display: flex;
  align-items: baseline;
}

.about__title h2{
  border-left: 5px solid #e95504;
  font-size: 2.5rem;
  letter-spacing: 5px;
}

.about__title h3{
  margin-left: 10px;
  font-size: 2.0rem;
  letter-spacing: 2px;
}

.about__taiyaki{
  display: none;
}

.about__taiyaki img{
  width: 70%;
}

.about__l{
  width: 100%;
}

.about__r{
  width: 100%;
  position: relative;
  z-index: 999;
}

.about__table tr {
  width: 100%;
}

.about__table th{
  padding: 50px 0;
  border: none;
  font-size: 1.6rem;
  border-bottom:3px solid #e95504;
  color: #e95504;
}

.about__table td {
  padding: 50px 20px 50px 20px;
  border: none;
  font-size: 1.5rem;
  border-bottom:2px solid #111;
}
.about__table th {
  width: 30%;
}


/* mb_service用css */

.service{
  width: 90%;
  margin: auto;
  margin-top: -140%;
  padding-bottom: 100px;
}

.service__title{
  display: flex;
  align-items: baseline;
}

.service__title h2{
  border-left: 5px solid #e95504;
  font-size: 2.5rem;
  letter-spacing: 5px;
}

.service__title h3{
  margin-left: 10px;
  font-size: 2.0rem;
  letter-spacing: 2px;
}

.service__content{
  width: 100%;
  max-width: 1400px;
  margin:50px auto;
  position: relative;
}

.service__content__title{
  width: 100%;
  background-color: #e95504;
  display: flex;
  align-items: center;
  padding:5px 0px 5px 5px;
}

.service__content__title img{
  width: 30px;
}

.service__content__title h3{
  font-size: 2.0rem;
  letter-spacing: 2px;
  color: #fff;
  margin-left: 10px;
}

.service__content__box{
  width: 95%;
  margin: auto;
  margin-top: 50px;
}

.service__content__box__l{
  width: 100%;
  margin: auto;
}

.service__content__box__l h4{
  font-size: 2.0rem;
  letter-spacing: 2px;
  display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
  padding: 3px;
  line-height: 210%;
  font-weight: 800;
  color: #fff;
  background: #e95504;
}

.service__content__box__l p{
  width: 100%;
  font-size: 1.5rem;
  letter-spacing: 1px;
  letter-spacing: 150%;
  font-weight: 500;
}

.service__content__box__r{
  width: 100%;
  margin: auto;
}

.service__content__box__r__img{
  text-align: center;
}

.service__content__box__r__img__2{
  text-align: center;
}

.service__content__box__r__img__2 img{
  width: 250px;
}

.service__content__box__r__img img{
  width: 200px;
}

.service__content__box__r__box__gp{
  display: flex;
}

.service__content__box__r__box__gp__div{
  width: 250px;
  margin: 2px;
  text-align: center;
  padding-top:5px;
  padding-bottom: 5px;
  border-radius: 10px;
  background-color: #fff;
  border:3px solid #e95504;
}

.service__content__box__r__box__gp__div h5{
  font-size: 1.1rem;
  font-weight: 500;
  color: #e95504;
}

.service__content__box__btn{
  margin-top: 40px;
  margin-left: auto;
  margin-right: 0;
  width: 200px;
  transition: 0.5s;
}

.service__content__box__btn:hover{
  opacity: 0.5;
  transition: 0.5s;
}

.service__content__box__btn  a{
  text-decoration: none;
  width: 200px;
  color: #111;
}

.service__gp__l__btn__2{
  width: 200px;
}

.service__gp__l__btn__2__box{
  display: flex;
  align-items: center;
}

.service__gp__l__btn__2__box p{
  font-size: 1.6rem;
  font-weight: 600;
  margin: auto;
}

.service__gp__l__btn__2__box img{
  width: 50px;
  height: 100%;
  margin-left: 10px;
  margin: auto;
}

.service__content__box__r__table table{
  border: 1px solid #e95504;
}

.service__table th{
  background-color: #fff4de;
  padding: 50px 0;
  border: none;
  font-size: 1.6rem;
  color: #e95504;
  width: 20%;
  border: 1px solid #e95504;
}

.service__table td {
  background-color: #fcf7ed;
  padding: 50px 10px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 150%;
  border: 1px solid #e95504;
}

/* tb_買取条件用css*/

.purchase{
  margin: auto;
  margin-top: -135%;
  width: 90%;
}

.purchase__title{
  text-align: center;
  padding-bottom: 100px;
}

.purchase__title h2{
  font-size: 2.0rem;
  letter-spacing: 2px;
  margin-bottom: 50px;
}

.purchase__title h3{
  font-size: 1.5rem;
  letter-spacing: 1px;
  line-height: 170%;
  margin-bottom: 30px;
}

.purchase__title img{
  margin-top: 50px;
  width: 100%;
}

.purchase__box{
  padding-top: 30px;
}

.purchase__box__title{
  font-size: 1.7rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.purchase__box__gp{
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.purchase__box__gp img{
  width: 16px;
}

.purchase__box__gp p{
  font-size: 1.5rem;
  letter-spacing: .5px;
  margin-left: 10px;
  font-weight: 500;
}

.kome{
  margin-left: 26px;
  font-size: 1.5rem;
}

/*アニメーション用CSS*/




.header__marker {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__text {
  display: inline-block;
  padding-right: 0.5em;
  animation: marquee 7s linear infinite;
}

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

}

@media (min-width: 850px) and (max-width: 1399px) {



.none__pc{
  display: none;
}

.none__tb{
  display: none;
}


#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 800;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#ffc6a7;
    opacity: 0.8;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

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

#g-nav-list{
    display: flex;
}

.g-nav-l{
    width: 30%;
    margin: auto;
    text-align: center;
}

.g-nav-l img{
    width: 200px;
}

.g-nav-r{
    width: 70%;
    display: flex;
    margin: auto;
}

.g-nav-r a{
    color: #111;
    text-decoration: none;
    font-weight: 500;
}

.header__content__r{
    width: 70%;
}

.header__content__r__top{
    display: flex;
}

.header__content__r__gp{
    margin-right: 100px;
}

.header__content__r__gp ul {
    list-style: none;
}

.header__content__r__gp li{
    margin-bottom: 13px;
}

.header__content__r__gp a{
    font-size: 17px;
    letter-spacing: 2px;
    transition: 0.3s;
    font-weight: 500;
}

.header__content__r__gp a:hover{
    color: #666;
    transition: 0.3s;
}

  .openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: relative;
	background:#e95504;
	cursor: pointer;
  width: 50px;
  height:50px;
	border-radius: 50px;
  z-index: 999;
  margin: 0 0 0 auto;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
  	width: 45%;
  }


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

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

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

.openbtn span:nth-of-type(3)::after {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:5px;
	left:-2px;
	color: #fff;
	font-size: 1rem;
	text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
    top: 14px;
    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: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(3)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
	top:5px;
	left:4px;
}

    /* header */

  .header__marker{
    background-color: #e95504;
    color: #fff;
    letter-spacing: 2px;
    height: 40px;
    font-size: 1.6rem;
    font-weight: 600;
    width: 100%;
  }

  .header__marker p{
    margin: auto;
  }

  .pc__header__main{
    width: 95%;
    margin: auto;
    margin-top: 20px;
    display: flex;
    align-items: center;
    z-index: 999;
    position: relative;
  }

  .header__logo img{
    width: 200px;
    z-index: 999;
    margin-top: 30px;
  }

  .pc__nav{
    display: none;
  }

  .header__btn{
    display: none;
  }

  .header__btn a{
    text-decoration: none;
  }

  .header__btn__mb{
    margin: 0 30px 0 auto;
  }

  .header__btn__mb a{
    text-decoration: none;
  }

  .button-01 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 230px;
    height: 50px;
    margin:0 auto;
    padding: .9em 2em;
    overflow: hidden;
    border: 1px solid #e95504;
    border-radius: 30px;
    background-color: #e95504;
    color: #fff;
    font-size: 1em;
    transition: 0.7s;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .button-01:hover {
    background-color: transparent;
    color: #e95504;
    transition: 0.7s;
  }

  .button-02-mb {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 230px;
    height: 50px;
    margin:0 auto;
    padding: .9em 2em;
    overflow: hidden;
    border: 1px solid #39b54a;
    border-radius: 30px;
    background-color: #39b54a;
    color: #fff;
    font-size: 1em;
    transition: 0.7s;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-left: 20px;

  }

  .button-02-mb:hover {
    background-color: transparent;
    color: #39b54a;
    transition: 0.7s;
  }

  .header__background__mb{
    display: none;
  }

  .header__background{
    width: 100%;
    margin-top: -160px;
    z-index: 100;
  }

  .header__background img{
    width: 100%;
  }

  .index__top{
    height: 200px;
  }

  /* footer */

  .footer__banner{
    width: 80%;
    margin: auto;
    max-width: 1200px;
  }

  .footer__banner__gp{
    display: flex;
    width: 100%;
    text-align: center;
    margin: auto;
    margin-bottom: 30px;
  }

  .footer__banner__gp a{
    width: 95%;
    margin: auto;
  }

  .footer__banner__gp img{
    width: 95%;
    transition: 0.5s;
  }

  .footer__banner__gp img:hover{
    scale: 1.05;
    transition: 0.5s;
    opacity: 0.65;
  }

  .footer__contact{
    width: 100%;
  }

  .footer__contact__l{
    width: 100%;
    background-color: #e95504;
    border-radius: 80px 80px  0 0 ;
    color: #fff;
  }

  .footer__contact__l__box{
    width: 100%;
    margin: auto;
    text-align: center;
  }

  .footer__contact__l h4{
    padding-top: 50px;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
  }

  .footer__contact__l h5{
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 2px;
  }

  .footer__contact__l__btn{
    margin-top: 50px;
  }

  .footer__contact__l__btn a{
    text-decoration: none;
    display: flex;
    justify-content: center;
  }

  .button-03 {
    display: flex;
    justify-content: center;
    width: 400px;
    margin: 20px 0;
    padding:1.5rem 2rem;
    border: none;
    background-color: #39b54a;
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .button-03:hover {
    animation: anima-button-03 2s linear infinite;
  }

  .button-04 {
    display: flex;
    justify-content: center;
    width: 400px;
    margin: 20px 0;
    padding:1.5rem 2rem;
    border: none;
    background-color: #231815;
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .button-04:hover {
    animation: anima-button-03 2s linear infinite;
  }

  @keyframes anima-button-03 {
    7% {
        transform: translateY(-15px);
    }
    15% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-7px);
    }
    25% {
        transform: translateY(0);
    }
  }

  .footer__contact__l p{
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-align: center;
    padding-bottom: 50px;
  }

  .footer__contact__r{
    width: 100%;
    background-color: #231815;
    border-radius: 0 0 80px 80px;
    color: #fff;
    margin-top: -12px;
  }

  .footer__contact__r__box{
    width: 100%;
    margin: auto;
    text-align: center;
  }

  .footer__contact__r h4{
    padding-top: 50px;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
  }

  .footer__contact__r h5{
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 2px;
  }

  .footer__contact__r__btn{
    margin-top: 50px;
    padding-bottom: 50px;
  }

  .footer__contact__r__btn a{
    text-decoration: none;
    display: flex;
    justify-content: center;
  }

  .button-05 {
    display: flex;
    justify-content: center;
    width: 400px;
    margin: 20px 0;
    padding:1.5rem 2rem;
    border: none;
    background-color: #fff;
    color: #231815;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .button-05::after {
    width: 1.25em;
    height: 1.25em;
    margin-left: 30px;
    margin-top: 2px;
    background-image: url("../img/footer_recruit_blank.png ");
    background-size: 1.3em;
    background-repeat: no-repeat;
    content: '';
  }

  .button-05:hover {
    animation: anima-button-03 2s linear infinite;
  }

  .footer__main{
    display: flex;
  }

  .footer__main__l{
    width: 50%;
    border-radius: 80px 0 0 80px;
    padding: 100px 0 0 10px;
  }

  .footer__main__l__box{
    width: 70%;
    margin: auto;
  }

  .footer__main__l h4{
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
  }

  .footer__main__l h5{
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 2px;
  }

  .footer__main__l img{
    margin-top: 50px;
    width: 90%;
  }

  .footer__main__l p{
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
  }

  .footer__map__pc{
    display: none;
  }

  .footer__main__r{
    width: 50%;
    padding:100px 0 0 0;
    z-index: 999;
    position: relative;
  }

  .footer__main__r__box{
    display: flex;
  }

  .footer__main__r__box__l{
    width: 40%;
    margin: auto;
  }

  .footer__main__r__box__l__ul{
    display: flex;
    align-items: center;
    transition: 0.5s;
  }

  .footer__main__r__box__l__ul:hover{
    margin-left: 20px;
    transition: 0.5s;
  }

  .footer__main__r__box__l__ul img{
    width: 30px;
  }

  .footer__main__r__box__l a{
    text-decoration: none;
    color: #111;
  }

  .footer__main__r__box__l__ul p{
    margin-left: 10px;
    font-size: 1.5rem;
    align-items: center;
    color: #111;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 500;
  }

  .footer__main__r__box__r{
    width: 20%;
    margin:0 auto;
  }

  .footer__main__r__box__r img{
    width: 50px;
    transition: 0.5s;
  }

  .footer__main__r__box__r img:hover{
    transition: 0.5s;
    scale: 1.1;
    margin-top: -20px;
  }

  .footer__main__r__box__l__sns{
    padding-top: 50px;
    margin: auto;
    width: 50%;
    text-align: center;
    z-index: 100;
    position: relative;
    z-index: 999;
  }

  .footer__main__r__box__l__sns__img{
    display: flex;
    margin: auto;
  }

  .footer__main__r__box__l__sns__img img{
    width: 35px;
    padding:10px;
    transition: 0.5s;
  }

  .footer__main__r__box__l__sns__img img:hover{
    scale: 1.1;
    transition: 0.5s;
  }

  .footer__main__r__background{
    width: 100%;
    margin-top: -10px;
    z-index: 100;
    position: relative;
  }

  .footer__main__r__background img{
    width: 100%;
    z-index: 100;
    position: relative;
  }

  .copy{
    background-color: #e95504;
    color: #fff;
    align-items: center;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .copy small{
    letter-spacing: 1px;
    font-size: 1.2rem;
  }

    /* tb_index.php css */

  .title__big{
    font-size: 5.0rem;
  }

  .title__section{
    font-size: 3.5rem;
  }


  .index__top{
    margin-top: -45%;
    position: relative;
  }

  .index__top img{
    width: 100%;
  }

  .index__top__main{
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .index__top__main img{
    width: 50vw;
    transform-origin: center bottom;
    animation: yurayura 4s linear infinite;
  }

@keyframes yurayura {
  0% , 100%{
      transform: rotate(10deg);
  }
  50%{
      transform: rotate(-10deg);
  }
}

  .index__top__text{
    position: absolute;
    top: 25vh;
    left: 10vh;
  }

  .index__top__text img{
    width: 35vw;
  }

  .index__top__news{
    position: absolute;
    top: 25vh;
    left: 55%;
    background-color: #fff;
    width: 30vw;
    padding: 20px;
    border-radius: 10px;
  }

  .index__top__news h3{
    color: #e95504;
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .index__top__news__gp a{
    text-decoration: none;
    width: 90%;
    margin: auto;
  }

  .index__top__news__box{
    width: 80%;
    margin: auto;
    background-color: #e95504;
    color: #fff;
    display: flex;
    padding: 15px 10px;
    margin-bottom: 10px;
    border-radius: 5px;
  }

  .index__top__news__box h5{
    font-size: 1.2rem;
    letter-spacing: 0.5px;
  }

  .index__top__news__box h6{
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-left: 10px;
  }

  .index__top__news__btn{
    margin: 0 0 0 auto;
  }

  .button-13 a {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #e95504;
  font-weight:600;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 150px;
  text-align: center; 
  padding: 4px 16px 4px 0;
  margin: 24px;
  margin-inline: auto;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.button-13 a::before {
  content: "";
  display: block;
  position: absolute;
  width: 150px;
  height: 1px;
  background: #e95504;
  bottom: 0;
  transition: all 0.3s;
}

.button-13 a::after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  background: #e95504;
  rotate: 40deg;
  right: -3px;
  bottom: 10px;
  transition: all 0.3s;
}

.button-13 a:hover::after,
.button-13 a:hover::before {
  translate: 20px 0;
  transition: all 0.3s;
}

.index__top__banner{
  margin-top: 40vh;
}

.index__banner{
  display: flex;
  width: 100%;
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.index__banner img{
  width: 90%;
  transition: 0.5s;
}

.index__banner img:hover{
  scale: 1.05;
  transition: 0.5s;
  opacity: 0.65;
}

.index__service{
  width: 80%;
  margin: auto;
  margin-top: 50px;
}

.index__title{
  text-align: center;
}

.index__title h2{
  font-size: 3.0rem;
  letter-spacing: 5px;
}

.index__title h3{
  margin-top: 10px;
  font-size: 1.8rem;
  letter-spacing: 2px;
  font-weight: 700;
}

.index__service__gp{
  display: flex;
  width: 100%;
  margin:50px auto;
}

.index__service__gp__l{
  width: 55%;
  margin: auto;
  
}

.index__service__gp__l__title{
  display: flex;
  align-items: baseline;
}

.index__service__gp__l__title img{
  width: 30px;
  margin-right: 10px;
}

.index__service__gp__l__title h2{
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-weight: 600;
}

.index__service__gp__l__content{
  margin-top: 30px;
}

.index__service__gp__l__content h3{
  display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
  padding: 3px;

  font-size: 2.3rem;
  letter-spacing: 2px;
  line-height: 200%;
  font-weight: 800;
  color: #fff;
  background: #e95504;
}

.index__service__gp__l__content p{
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  line-height: 190%;
  width: 90%;
}

.index__service__gp__l__btn{
  display: flex;
  text-decoration: none;
  margin: auto;
  margin-top: 40px;
}

.index__service__gp__l__btn a{
  text-decoration: none;
  color: #000;
  transition: 0.5s;
}

.index__service__gp__l__btn a:hover{
  margin-top: -10px;
  transition: 0.5s;
}

.index__service__gp__l__btn__1{
  width: 250px;
  align-items: center;
  margin-right: 30px;
}

.index__service__gp__l__btn__1__box{
  display: flex;
  align-items: center;
}

.index__service__gp__l__btn__1__box p{
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-weight: 600;
  margin: auto;
}

.index__service__gp__l__btn__1__box img{
  width: 50px;
  height: 100%;
  margin-left: 10px;
  margin: auto;
}

.index__service__gp__l__btn__2{
  width: 200px;
}

.index__service__gp__l__btn__2__box{
  display: flex;
  align-items: center;
}

.index__service__gp__l__btn__2__box p{
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-weight: 600;
  margin: auto;
}

.index__service__gp__l__btn__2__box img{
  width: 50px;
  height: 100%;
  margin-left: 10px;
  margin: auto;
}

.index__service__gp__r{
  width: 40%;
   margin: auto;
  
}

.index__service__gp__r img{
  width: 100%;
}

.index__jirei{
  align-items: center;
  margin-top: 150px;
  background-color: #fdf6e6;
  border-radius: 70px;
  height: 35vh;
}

.index__jirei__box{
  display: flex;
}

.index__jirei__box__l{
  display: flex;
  width: 40%;
  margin: auto;
  align-items: center;
}


.index__jirei__box__l__title{
  writing-mode: vertical-rl;
  margin: auto;
  margin-left: 0%;
  display: flex;
  text-align: center;
  align-items: center;
}

.index__jirei__box__l__title img{
  width: 30px;
  padding-bottom: 10px;
}

.index__jirei__box__l__title h3{
  font-size: 2.4rem;
  letter-spacing: 1.5px;
}

.index__jirei__box__l__content{
  font-size: 1.5rem;
  font-weight: 600;
  margin: auto;
}

.index__jirei__box__r{
  width: 60%;
}

.slide-container {
    width: 100%;
    margin: -3.5vh auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.slide-wrapper {
  display: flex;
  animation: slide-flow 15s infinite linear 1s both;
}
.slide{
  height: 40vh;
  object-fit:cover;
  margin: 10px;
}
@keyframes slide-flow {
     0% {transform: translateX(0);}
 100% {transform: translateX(-100%);}
}

 .slide-paused:hover .slide-wrapper {
   animation-play-state: paused;
 }
 .slide-paused:hover .slide-wrapper img:hover {
   opacity: .99;
   cursor: grabbing;
 }

.index__service__img{
  width: 90%;
  margin: auto;
  text-align: center;
}

.index__service__img img{
  width: 100%;
  max-width: 1200px;
}

.index__service__2{
  width: 80%;
  margin: auto;
  margin-top: -50px;
}

.index__company{
  margin: 100px auto 0;
  padding: 5vh 0;
  background-color: #fdf6e6;
  border-radius: 100px;
}

.index__company__box{
  background-color: #fffcf8;
  border-radius: 150px;
  padding: 10vh 0 10vh 0;
}

.index__company__gp{
  display: flex;
  margin-top: 50px;
}

.index__company__gp__l{
  width: 50%;
  margin: auto;
}

.index__company__gp__l h3{
  text-align: center;
  font-size: 4.0rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.index__company__gp__l h4{
  text-align: center;
  font-size: 1.7rem;
  letter-spacing: 1px;
  margin: 20px auto;
}

.index__company__gp__r{
  width: 50%;
}

.index__company__gp__r img{
  width: 100%;
}

.index__company__btn{
  text-decoration: none;
  margin: auto;
  margin-top: 90px;
  width: 100%;
}

.index__company__btn a{
  text-decoration: none;
  color: #000;
  transition: 0.5s;
}

.index__company__btn a:hover{
  margin-top: -10px;
  transition: 0.5s;
  opacity: 0.5;
}

.index__service__gp__l__btn__3{
  width: 45vw;
  align-items: center;
}

.index__service__gp__l__btn__3__box{
  display: flex;
  align-items: center;
}

.index__service__gp__l__btn__3__box p{
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 0 10px 0 auto;
}

.index__service__gp__l__btn__3__box img{
  width: 50px;
  height: 100%;
  margin-left: 10px;
  margin:0 60px 0 0;
}

.index__column{
  width: 100%;
  padding: 100px 0;
}

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

.index__column__content a{
  text-decoration: none;
  color: #111;
  margin: auto;
  width: 100%;
}

.index__column__content__gp{
  display: flex;
  width: 100%;
  margin-top: 50px;
}

.index__column__box{
  margin: auto;
  width: 95%;
}

.index__column__box__img{
  width: 100%;
}

.index__column__box__img img{
  width: 100%;
}

.index__column__box__title{
  font-size: 1.5rem;
  margin-top: 10px;
}

.index__column__box__tag{
  display: flex;
}

.index__column__tag__box{
  background-color: #e95504;
  color: #fff;
  padding:5px 20px;
  margin: 5px;
  border-radius: 20px;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.index__column__tag__box p{
  margin: 0;
}


/*tb_about用CSS*/

.about{
  width: 90%;
  margin: auto;margin-top: -40%;
  display: flex;
  padding-bottom: 100px;
}

.about__title{
  display: flex;
  align-items: baseline;
}

.about__title h2{
  border-left: 5px solid #e95504;
  font-size: 2.5rem;
  letter-spacing: 5px;
}

.about__title h3{
  margin-left: 10px;
  font-size: 2.0rem;
  letter-spacing: 2px;
}

.about__taiyaki{
  width: 100%;
  margin-top: 60vh;
}

.about__taiyaki img{
  width: 70%;
}

.about__l{
  width: 35%;
}

.about__r{
  width: 70%;
}

.about__table tr {
  width: 100%;
}

.about__table th{
  padding: 50px 0;
  border: none;
  font-size: 1.6rem;
  border-bottom:3px solid #e95504;
  color: #e95504;
}

.about__table td {
  padding: 50px 150px 50px 20px;
  border: none;
  font-size: 1.5rem;
  border-bottom:2px solid #111;
}
.about__table th {
  width: 30%;
}


/* tb_service用css */

.service{
  width: 90%;
  margin: auto;
  margin-top: -40%;
  padding-bottom: 100px;
}

.service__title{
  display: flex;
  align-items: baseline;
}

.service__title h2{
  border-left: 5px solid #e95504;
  font-size: 2.5rem;
  letter-spacing: 5px;
}

.service__title h3{
  margin-left: 10px;
  font-size: 2.0rem;
  letter-spacing: 2px;
}

.service__content{
  width: 100%;
  max-width: 1400px;
  margin:50px auto;
  position: relative;
}

.service__content__title{
  width: 100%;
  background-color: #e95504;
  display: flex;
  align-items: center;
  padding:5px 0px 5px 20px;
}

.service__content__title img{
  width: 30px;
}

.service__content__title h3{
  font-size: 2.3rem;
  letter-spacing: 2px;
  color: #fff;
  margin-left: 10px;
}

.service__content__box{
  display: flex;
  width: 95%;
  margin: auto;
  margin-top: 50px;
}

.service__content__box__l{
  width: 48%;
  margin: auto;
}

.service__content__box__l h4{
  font-size: 2.5rem;
  letter-spacing: 2px;
  display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
  padding: 3px;
  line-height: 210%;
  font-weight: 800;
  color: #fff;
  background: #e95504;
}

.service__content__box__l p{
  width: 80%;
  font-size: 1.6rem;
  letter-spacing: 1px;
  letter-spacing: 150%;
  font-weight: 500;
}

.service__content__box__r{
  width: 48%;
  margin: auto;
}

.service__content__box__r__img{
  text-align: center;
}

.service__content__box__r__img__2{
  text-align: center;
}

.service__content__box__r__img__2 img{
  width: 250px;
}

.service__content__box__r__img img{
  width: 200px;
}

.service__content__box__r__box__gp{
  display: flex;
}

.service__content__box__r__box__gp__div{
  width: 200px;
  margin: 3px;
  text-align: center;
  padding-top:5px;
  padding-bottom: 5px;
  border-radius: 10px;
  background-color: #fff;
  border:3px solid #e95504;
}

.service__content__box__r__box__gp__div h5{
  font-size: 1.3rem;
  font-weight: 500;
  color: #e95504;
}

.service__content__box__btn{
  margin-top: 40px;
  margin-left: auto;
  margin-right: 0;
  width: 200px;
  transition: 0.5s;
}

.service__content__box__btn:hover{
  opacity: 0.5;
  transition: 0.5s;
}

.service__content__box__btn  a{
  text-decoration: none;
  width: 200px;
  color: #111;
}

.service__gp__l__btn__2{
  width: 200px;
}

.service__gp__l__btn__2__box{
  display: flex;
  align-items: center;
}

.service__gp__l__btn__2__box p{
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-weight: 600;
  margin: auto;
}

.service__gp__l__btn__2__box img{
  width: 50px;
  height: 100%;
  margin-left: 10px;
  margin: auto;
}

.service__content__box__r__table table{
  border: 1px solid #e95504;
}

.service__table th{
  background-color: #fff4de;
  padding: 50px 0;
  border: none;
  font-size: 1.6rem;
  color: #e95504;
  width: 20%;
  border: 1px solid #e95504;
}

.service__table td {
  background-color: #fcf7ed;
  padding: 50px 10px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 150%;
  border: 1px solid #e95504;
}

/* tb_買取条件用css*/

.purchase{
  margin: auto;
  margin-top: -45%;
  width: 80%;
}

.purchase__title{
  text-align: center;
  padding-bottom: 100px;
}

.purchase__title h2{
  font-size: 3.0rem;
  letter-spacing: 2px;
  margin-bottom: 50px;
}

.purchase__title h3{
  font-size: 1.6rem;
  letter-spacing: 2px;
  line-height: 170%;
  margin-bottom: 30px;
}

.purchase__title img{
  margin-top: 50px;
  width: 550px;
}

.purchase__box{
  margin-left: 20px;
  padding-top: 50px;
}

.purchase__box__title{
  font-size: 1.7rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.purchase__box__gp{
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.purchase__box__gp img{
  width: 16px;
}

.purchase__box__gp p{
  font-size: 1.5rem;
  letter-spacing: .5px;
  margin-left: 10px;
  font-weight: 500;
}

.kome{
  margin-left: 26px;
  font-size: 1.5rem;
}



/*アニメーション用CSS*/




.header__marker {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__text {
  display: inline-block;
  padding-right: 0.5em;
  animation: marquee 7s linear infinite;
}

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



}



@media screen and (min-width: 1400px) {

.none__pc{
  display: none;
}
  /* header */

  .header__marker{
    background-color: #e95504;
    color: #fff;
    letter-spacing: 2px;
    height: 40px;
    font-size: 1.6rem;
    font-weight: 600;
    width: 100%;
  }

  .header__marker p{
    margin: auto;
  }

  .pc__header__main{
    width: 95%;
    margin: auto;
    margin-top: 20px;
    display: flex;
    align-items: center;
    z-index: 999;
    position: relative;
  }

  .header__logo img{
    width: 200px;
    z-index: 999;
    margin-top: 30px;
  }

  .pc__nav{
    text-decoration: none;
    margin: auto 0 auto auto;
  }

  .pc__nav a{
    margin-left: 20px;
    margin-right: 20px;
    text-decoration: none;
    color: #111;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
  }

  .pc__nav a::after {
    content: '';
    display: block;
    height: 2px;
    width: 40%;
    background: #e95504;
    position: absolute;
    bottom: 0;
    left: 30%;
    transform: scale(0, 1);
    transition: .3s;
  }
      
  .pc__nav a:hover::after {
    transform: scale(1, 1);
  }

  .pc__nav a:hover{
    color: #e95504;
  }

  .pc__nav ul{
    list-style: none;
    display: flex;
    margin-right: 50px;
  }

  .pc__nav li{
    display: inline;
    position: relative;
    align-items: center;
  }

  .header__gnav{
    display: none;
  }

  .header__btn__mb{
    display: none;
  }

  .header__btn{
    display: flex;
  }

  .header__btn a{
    text-decoration: none;
  }

  .button-01 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 230px;
    height: 50px;
    margin:0 auto;
    padding: .9em 2em;
    overflow: hidden;
    border: 1px solid #e95504;
    border-radius: 30px;
    background-color: #e95504;
    color: #fff;
    font-size: 1em;
    transition: 0.7s;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .button-01:hover {
    background-color: transparent;
    color: #e95504;
    transition: 0.7s;
  }

  .button-02 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 230px;
    height: 50px;
    margin:0 auto;
    padding: .9em 2em;
    overflow: hidden;
    border: 1px solid #39b54a;
    border-radius: 30px;
    background-color: #39b54a;
    color: #fff;
    font-size: 1em;
    transition: 0.7s;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-left: 20px;

  }

  .button-02:hover {
    background-color: transparent;
    color: #39b54a;
    transition: 0.7s;
  }

  .header__background__mb{
    display: none;
  }

  .header__background{
    width: 100%;
    margin-top: -160px;
    z-index: 100;
  }

  .header__background img{
    width: 100%;
  }


  /* footer */

  .footer__banner{
    width: 80%;
    margin: auto;
    max-width: 1200px;
  }

  .footer__banner__gp{
    display: flex;
    width: 100%;
    text-align: center;
    margin: auto;
    margin-bottom: 30px;
  }

  .footer__banner__gp a{
    width: 95%;
    margin: auto;
  }

  .footer__banner__gp img{
    width: 95%;
    transition: 0.5s;
  }

  .footer__banner__gp img:hover{
    scale: 1.05;
    transition: 0.5s;
    opacity: 0.65;
  }

  .footer__contact{
    width: 100%;
    display: flex;
  }

  .footer__contact__l{
    width: 50%;
    background-color: #e95504;
    border-radius: 80px 0 0 80px;
    padding: 100px;
    color: #fff;
  }

  .footer__contact__l__box{
    width: 50%;
    margin: auto;
  }

  .footer__contact__l h4{
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
  }

  .footer__contact__l h5{
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 2px;
  }

  .footer__contact__l__btn{
    margin-top: 50px;
  }

  .footer__contact__l__btn a{
    text-decoration: none;
  }

  .button-03 {
    display: flex;
    justify-content: center;
    width: 400px;
    margin: 20px 0;
    padding:1.5rem 2rem;
    border: none;
    background-color: #39b54a;
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .button-03:hover {
    animation: anima-button-03 2s linear infinite;
  }

  .button-04 {
    display: flex;
    justify-content: center;
    width: 400px;
    margin: 20px 0;
    padding:1.5rem 2rem;
    border: none;
    background-color: #231815;
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .button-04:hover {
    animation: anima-button-03 2s linear infinite;
  }

  @keyframes anima-button-03 {
    7% {
        transform: translateY(-15px);
    }
    15% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-7px);
    }
    25% {
        transform: translateY(0);
    }
  }

  .footer__contact__l p{
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-align: center;
  }

  .footer__contact__r{
    width: 50%;
    background-color: #231815;
    border-radius: 0 80px 80px 0;
    padding: 100px;
    color: #fff;
  }

  .footer__contact__r__box{
    width: 50%;
    margin: auto;
  }

  .footer__contact__r h4{
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
  }

  .footer__contact__r h5{
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 2px;
  }

  .footer__contact__r__btn{
    margin-top: 50px;
  }

  .footer__contact__r__btn a{
    text-decoration: none;
  }

  .button-05 {
    display: flex;
    justify-content: center;
    width: 400px;
    margin: 20px 0;
    padding:1.5rem 2rem;
    border: none;
    background-color: #fff;
    color: #231815;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .button-05::after {
    width: 1.25em;
    height: 1.25em;
    margin-left: 30px;
    margin-top: 2px;
    background-image: url("../img/footer_recruit_blank.png ");
    background-size: 1.3em;
    background-repeat: no-repeat;
    content: '';
  }

  .button-05:hover {
    animation: anima-button-03 2s linear infinite;
  }

  .footer__main{
    display: flex;
  }

  .footer__main__l{
    width: 50%;
    border-radius: 80px 0 0 80px;
    padding: 100px 0 0 100px;
  }

  .footer__main__l__box{
    width: 70%;
    margin: auto;
  }

  .footer__main__l h4{
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
  }

  .footer__main__l h5{
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 2px;
  }

  .footer__main__l img{
    margin-top: 50px;
    width: 90%;
  }

  .footer__main__l p{
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
  }

  .footer__map__tab{
    display: none;
  }

  .footer__main__r{
    width: 50%;
    padding:100px 0 0 0;
    z-index: 999;
    position: relative;
  }

  .footer__main__r__box{
    display: flex;
  }

  .footer__main__r__box__l{
    width: 40%;
    margin: auto;
  }

  .footer__main__r__box__l__ul{
    display: flex;
    align-items: center;
    transition: 0.5s;
  }

  .footer__main__r__box__l__ul:hover{
    margin-left: 20px;
    transition: 0.5s;
  }

  .footer__main__r__box__l__ul img{
    width: 30px;
  }

  .footer__main__r__box__l a{
    text-decoration: none;
    color: #111;
  }

  .footer__main__r__box__l__ul p{
    margin-left: 10px;
    font-size: 1.5rem;
    align-items: center;
    color: #111;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 500;
  }

  .footer__main__r__box__r{
    width: 20%;
    margin:0 auto;
  }

  .footer__main__r__box__r img{
    width: 50px;
    transition: 0.5s;
  }

  .footer__main__r__box__r img:hover{
    transition: 0.5s;
    scale: 1.1;
    margin-top: -20px;
  }

  .footer__main__r__box__l__sns{
    padding-top: 50px;
    margin: auto;
    width: 50%;
    text-align: center;
    z-index: 100;
    position: relative;
    z-index: 999;
  }

  .footer__main__r__box__l__sns__img{
    display: flex;
    margin: auto;
  }

  .footer__main__r__box__l__sns__img img{
    width: 40px;
    padding:10px;
    transition: 0.5s;
  }

  .footer__main__r__box__l__sns__img img:hover{
    scale: 1.1;
    transition: 0.5s;
  }

  .footer__main__r__background{
    width: 100%;
    margin-top: -100px;
    z-index: 100;
    position: relative;
  }

  .footer__main__r__background img{
    width: 100%;
    z-index: 100;
    position: relative;
  }

  .copy{
    background-color: #e95504;
    color: #fff;
    align-items: center;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .copy small{
    letter-spacing: 1px;
    font-size: 1.2rem;
  }







  /* pc_index.php css */

  .title__big{
    font-size: 5.0rem;
  }

  .title__section{
    font-size: 3.5rem;
  }


  .index__top{
    margin-top: -55%;
    position: relative;
  }

  .index__top img{
    width: 100%;
  }

  .index__top__main{
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .index__top__main img{
    width: 45vw;
    transform-origin: center bottom;
    animation: yurayura 4s linear infinite;
  }

@keyframes yurayura {
  0% , 100%{
      transform: rotate(10deg);
  }
  50%{
      transform: rotate(-10deg);
  }
}

  .index__top__text{
    position: absolute;
    top: 45vh;
    left: 20vh;
  }

  .index__top__text img{
    width: 30vw;
  }

  .index__top__news{
    position: absolute;
    top: 45vh;
    left: 60%;
    background-color: #fff;
    width: 25vw;
    padding: 30px;
    border-radius: 10px;
  }

  .index__top__news h3{
    color: #e95504;
    text-align: center;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .index__top__news__gp a{
    text-decoration: none;
    width: 60%;
    margin: auto;
  }

  .index__top__news__box{
    width: 80%;
    margin: auto;
    background-color: #e95504;
    color: #fff;
    display: flex;
    padding: 15px 10px;
    margin-bottom: 10px;
    border-radius: 5px;
  }

  .index__top__news__box h5{
    font-size: 1.2rem;
    letter-spacing: 0.5px;
  }

  .index__top__news__box h6{
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-left: 10px;
  }

  .index__top__news__btn{
    margin: 0 0 0 auto;
  }

  .button-13 a {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: #e95504;
  font-weight:600;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 180px;
  text-align: center; 
  padding: 4px 16px 4px 0;
  margin: 24px;
  margin-inline: auto;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.button-13 a::before {
  content: "";
  display: block;
  position: absolute;
  width: 180px;
  height: 1px;
  background: #e95504;
  bottom: 0;
  transition: all 0.3s;
}

.button-13 a::after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  background: #e95504;
  rotate: 40deg;
  right: -3px;
  bottom: 10px;
  transition: all 0.3s;
}

.button-13 a:hover::after,
.button-13 a:hover::before {
  translate: 20px 0;
  transition: all 0.3s;
}

.index__top__banner{
  margin-top: 10vh;
}

.index__banner{
  display: flex;
  width: 100%;
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.index__banner img{
  width: 90%;
  transition: 0.5s;
}

.index__banner img:hover{
  scale: 1.05;
  transition: 0.5s;
  opacity: 0.65;
}

.index__service{
  width: 80%;
  margin: auto;
  margin-top: 150px;
}

.index__title{
  text-align: center;
}

.index__title h2{
  font-size: 3.5rem;
  letter-spacing: 5px;
}

.index__title h3{
  margin-top: 20px;
  font-size: 1.8rem;
  letter-spacing: 2px;
  font-weight: 700;
}

.index__service__gp{
  display: flex;
  width: 80%;
  margin:50px auto;
}

.index__service__gp__l{
  width: 55%;
  margin: auto;
  
}

.index__service__gp__l__title{
  display: flex;
  align-items: baseline;
}

.index__service__gp__l__title img{
  width: 30px;
  margin-right: 10px;
}

.index__service__gp__l__title h2{
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-weight: 600;
}

.index__service__gp__l__content{
  margin-top: 30px;
}

.index__service__gp__l__content h3{
  display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
  padding: 3px;
  font-size: 2.3rem;
  letter-spacing: 2px;
  line-height: 200%;
  font-weight: 800;
  color: #fff;
  background: #e95504;
}

.index__service__gp__l__content p{
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  line-height: 190%;
  width: 90%;
}

.index__service__gp__l__btn{
  display: flex;
  text-decoration: none;
  margin: auto;
  margin-top: 40px;
}

.index__service__gp__l__btn a{
  text-decoration: none;
  color: #000;
  transition: 0.5s;
}

.index__service__gp__l__btn a:hover{
  margin-top: -10px;
  transition: 0.5s;
}

.index__service__gp__l__btn__1{
  width: 250px;
  align-items: center;
  margin-right: 30px;
}

.index__service__gp__l__btn__1__box{
  display: flex;
  align-items: center;
}

.index__service__gp__l__btn__1__box p{
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-weight: 600;
  margin: auto;
}

.index__service__gp__l__btn__1__box img{
  width: 50px;
  height: 100%;
  margin-left: 10px;
  margin: auto;
}

.index__service__gp__l__btn__2{
  width: 200px;
}

.index__service__gp__l__btn__2__box{
  display: flex;
  align-items: center;
}

.index__service__gp__l__btn__2__box p{
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-weight: 600;
  margin: auto;
}

.index__service__gp__l__btn__2__box img{
  width: 50px;
  height: 100%;
  margin-left: 10px;
  margin: auto;
}

.index__service__gp__r{
  width: 40%;
  margin: auto;
  
}

.index__service__gp__r img{
  width: 100%;
}

.index__jirei{
  align-items: center;
  margin-top: 300px;
  background-color: #fdf6e6;
  border-radius: 100px;
  height: 40vh;
}

.index__jirei__box{
  display: flex;
}

.index__jirei__box__l{
  display: flex;
  width: 30%;
  margin: auto;
  align-items: center;
}


.index__jirei__box__l__title{
  writing-mode: vertical-rl;
  margin: auto;
  margin-left: 20%;
  display: flex;
  text-align: center;
  align-items: center;
}

.index__jirei__box__l__title img{
  width: 30px;
  padding-bottom: 10px;
}

.index__jirei__box__l__title h3{
  font-size: 2.4rem;
  letter-spacing: 1.5px;
}

.index__jirei__box__l__content{
  font-size: 1.6rem;
  font-weight: 600;
  margin: auto;
}

.index__jirei__box__r{
  width: 70%;
}

.slide-container {
    width: 100%;
    margin: -6vh auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.slide-wrapper {
  display: flex;
  animation: slide-flow 15s infinite linear 1s both;
}
.slide{
  height: 50vh;
  object-fit:cover;
  margin: 10px;
}
@keyframes slide-flow {
     0% {transform: translateX(0);}
 100% {transform: translateX(-100%);}
}

 .slide-paused:hover .slide-wrapper {
   animation-play-state: paused;
 }
 .slide-paused:hover .slide-wrapper img:hover {
   opacity: .99;
   cursor: grabbing;
 }

.index__service__img{
  width: 80%;
  margin: auto;
  text-align: center;
}

.index__service__img img{
  width: 100%;
  max-width: 1200px;
}

.index__service__2{
  width: 80%;
  margin: auto;
  margin-top: -50px;
}

.index__company{
  margin: 200px auto 0;
  padding: 8vh 0;
  background-color: #fdf6e6;
  border-radius: 200px;
}

.index__company__box{
  background-color: #fffcf8;
  border-radius: 300px;
  padding: 15vh 0 27vh 0;
}

.index__company__gp{
  display: flex;
  margin-top: 50px;
}

.index__company__gp__l{
  width: 50%;
  margin: auto;
}

.index__company__gp__l h3{
  text-align: center;
  font-size: 4.3rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.index__company__gp__l h4{
  text-align: center;
  font-size: 1.7rem;
  letter-spacing: 1px;
  margin: 20px auto;
}

.index__company__gp__r{
  width: 50%;
}

.index__company__gp__r img{
  width: 100%;
}

.index__company__btn{
  text-decoration: none;
  margin: auto;
  margin-top: 90px;
  width: 100%;
}

.index__company__btn a{
  text-decoration: none;
  color: #000;
  transition: 0.5s;
}

.index__company__btn a:hover{
  margin-top: -10px;
  transition: 0.5s;
  opacity: 0.5;
}

.index__service__gp__l__btn__3{
  width: 45vw;
  align-items: center;
}

.index__service__gp__l__btn__3__box{
  display: flex;
  align-items: center;
}

.index__service__gp__l__btn__3__box p{
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 0 10px 0 auto;
}

.index__service__gp__l__btn__3__box img{
  width: 50px;
  height: 100%;
  margin-left: 10px;
  margin:0 60px 0 0;
}

.index__column{
  width: 100%;
  padding: 150px 0;
}

.index__column__content{
  width: 80%;
  margin: auto;
}

.index__column__content a{
  text-decoration: none;
  color: #111;
  margin: auto;
  width: 100%;
}

.index__column__content__gp{
  display: flex;
  width: 100%;
  margin-top: 50px;
}

.index__column__box{
  margin: auto;
  width: 95%;
}

.index__column__box__img{
  width: 100%;
}

.index__column__box__img img{
  width: 100%;
}

.index__column__box__title{
  font-size: 1.5rem;
  margin-top: 10px;
}

.index__column__box__tag{
  display: flex;
}

.index__column__tag__box{
  background-color: #e95504;
  color: #fff;
  padding:5px 20px;
  margin: 5px;
  border-radius: 20px;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.index__column__tag__box p{
  margin: 0;
}



/*pc_about用CSS*/

.about{
  width: 80%;
  margin: auto;margin-top: -45%;
  display: flex;
  padding-bottom: 100px;
}

.about__title{
  display: flex;
  align-items: baseline;
}

.about__title h2{
  border-left: 5px solid #e95504;
  font-size: 2.5rem;
  letter-spacing: 5px;
}

.about__title h3{
  margin-left: 10px;
  font-size: 2.0rem;
  letter-spacing: 2px;
}

.about__taiyaki{
  width: 100%;
  margin-top: 60vh;
}

.about__taiyaki img{
  width: 70%;
}

.about__l{
  width: 30%;
}

.about__r{
  width: 70%;
}

.about__table tr {
  width: 100%;
}

.about__table th{
  padding: 50px 0;
  border: none;
  font-size: 1.6rem;
  border-bottom:3px solid #e95504;
  color: #e95504;
}

.about__table td {
  padding: 50px 150px 50px 20px;
  border: none;
  font-size: 1.5rem;
  border-bottom:2px solid #111;
}
.about__table th {
  width: 30%;
}

/* pc_service用css */

.service{
  width: 80%;
  margin: auto;margin-top: -45%;
  padding-bottom: 100px;
}

.service__title{
  display: flex;
  align-items: baseline;
}

.service__title h2{
  border-left: 5px solid #e95504;
  font-size: 2.5rem;
  letter-spacing: 5px;
}

.service__title h3{
  margin-left: 10px;
  font-size: 2.0rem;
  letter-spacing: 2px;
}

.service__content{
  width: 100%;
  max-width: 1400px;
  margin:50px auto;
  position: relative;
}

.service__content__title{
  width: 100%;
  background-color: #e95504;
  display: flex;
  align-items: center;
  padding:5px 20px;
}

.service__content__title img{
  width: 30px;
}

.service__content__title h3{
  font-size: 2.3rem;
  letter-spacing: 2px;
  color: #fff;
  margin-left: 10px;
}

.service__content__box{
  display: flex;
  width: 95%;
  margin: auto;
  margin-top: 50px;
}

.service__content__box__l{
  width: 48%;
  margin: auto;
}

.service__content__box__l h4{
  font-size: 2.5rem;
  letter-spacing: 2px;
  display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
  padding: 3px;
  line-height: 210%;
  font-weight: 800;
  color: #fff;
  background: #e95504;
}

.service__content__box__l p{
  width: 80%;
  font-size: 1.6rem;
  letter-spacing: 1px;
  letter-spacing: 150%;
  font-weight: 500;
}

.service__content__box__r{
  width: 48%;
  margin: auto;
}

.service__content__box__r__img{
  text-align: center;
}

.service__content__box__r__img__2{
  text-align: center;
}

.service__content__box__r__img__2 img{
  width: 250px;
}

.service__content__box__r__img img{
  width: 200px;
}

.service__content__box__r__box__gp{
  display: flex;
}

.service__content__box__r__box__gp__div{
  width: 150px;
  margin: 5px;
  text-align: center;
  padding-top:5px;
  padding-bottom: 5px;
  border-radius: 10px;
  background-color: #fff;
  border:3px solid #e95504;
}

.service__content__box__r__box__gp__div h5{
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-weight: 500;
  color: #e95504;
}

.service__content__box__btn{
  margin-top: 40px;
  margin-left: auto;
  margin-right: 0;
  width: 200px;
  transition: 0.5s;
}

.service__content__box__btn:hover{
  opacity: 0.5;
  transition: 0.5s;
}

.service__content__box__btn  a{
  text-decoration: none;
  width: 200px;
  color: #111;
}

.service__gp__l__btn__2{
  width: 200px;
}

.service__gp__l__btn__2__box{
  display: flex;
  align-items: center;
}

.service__gp__l__btn__2__box p{
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-weight: 600;
  margin: auto;
}

.service__gp__l__btn__2__box img{
  width: 50px;
  height: 100%;
  margin-left: 10px;
  margin: auto;
}

.service__content__box__r__table table{
  border: 1px solid #e95504;
}

.service__table th{
  background-color: #fff4de;
  padding: 50px 0;
  border: none;
  font-size: 1.6rem;
  color: #e95504;
  width: 20%;
  border: 1px solid #e95504;
}

.service__table td {
  background-color: #fcf7ed;
  padding: 50px 10px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 150%;
  border: 1px solid #e95504;
}


/* pc_買取条件用css*/

.purchase{
  margin: auto;
  margin-top: -45%;
  width: 80%;
}

.purchase__title{
  text-align: center;
  padding-bottom: 100px;
}

.purchase__title h2{
  font-size: 3.0rem;
  letter-spacing: 2px;
  margin-bottom: 50px;
}

.purchase__title h3{
  font-size: 1.6rem;
  letter-spacing: 2px;
  line-height: 170%;
  margin-bottom: 30px;
}

.purchase__title img{
  margin-top: 50px;
  width: 550px;
}

.purchase__box{
  margin-left: 20px;
  padding-top: 50px;
}

.purchase__box__title{
  font-size: 2.0rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.purchase__box__gp{
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.purchase__box__gp img{
  width: 16px;
}

.purchase__box__gp p{
  font-size: 1.6rem;
  letter-spacing: .5px;
  margin-left: 10px;
  font-weight: 500;
}

.kome{
  margin-left: 26px;
  font-size: 1.5rem;
}

/*アニメーション用CSS*/




.header__marker {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__text {
  display: inline-block;
  padding-right: 0.5em;
  animation: marquee 7s linear infinite;
}

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


}



    white-space: nowrap;
  }

  .marquee__text {
    display: inline-block;
    padding-right: 0.5em;
    animation: marquee 7s linear infinite;
  }

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