@charset "utf-8";
/*********************************************
*
* 共通パーツ、初期設定
*
*********************************************/
/************************
**全体
************************/
*{
  margin: 0;
  padding: 0;
}

body{
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-weight:  500;
  letter-spacing: 0.1rem;
}

p{
  margin:0;
  padding: 0;
}

a{
  text-decoration: none;
}

/*画像サイズを要素のwidthに合わせる*/
img{
  width: 100%;
}


/************************
**背景
************************/
.wrapper{
  background-color: #f1f4f3;
}

.wrapper.background-logo{
  background-image: url(../img/base_logo.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 85vw;
  background-position: right -20vw  top 50vw;
}

/*576px以上 sm*/
@media (min-width:576px) {
  /* width:540px; */
  .wrapper.background-logo{
    background-size: 400px;
    background-position: right 10%  bottom 30%;
  }
}

/*768px以上 md*/
@media (min-width:768px) {
  /* width:720px; */
  .wrapper.background-logo{
    background-size: 500px;
    background-position: right 10%  bottom 5%;
  }
}

/*992px以上 lg*/
@media (min-width:992px) {
  /* width:960px; */
  .wrapper.background-logo{
    background-size: 45%;
    background-position: 85% 120%;
  }
}


/************************
**固定されたheader分の余白
************************/
main{
  padding-top: calc(20vw);
}

/*576px以上 sm*/
@media (min-width:576px) {
  /* width:540px; */
  main{
    padding-top: calc(80px + 60px);
  }
}

/*768px以上 md*/
@media (min-width:768px) {
  /* width:720px; */
}

/*992px以上 lg*/
@media (min-width:992px) {
  /* width:960px; */
}


/************************
**container
************************/
.container{
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

/*576px以上 sm*/
@media (min-width:576px) {
  /* width:540px; */
  .container{
    width: 520px;
  }
}

/*768px以上 md*/
@media (min-width:768px) {
  /* width:720px; */
  .container{
    width: 690px;
  }
}

/*992px以上 lg*/
@media (min-width:992px) {
  /* width:960px; */
  .container{
    width: 920px;
  }
}

/************************
**サイズ別br
************************/
.smartbr{
  display: block;
}

.smbr, .mdbr, .lgbr{
  display: none;
}

/*576px以上 sm*/
@media (min-width:576px) {
  /* width:540px; */
  .smartbr, .mdbr, .lgbr{
    display: none;
  }

  .smbr{
  display: block;
}
}

/*768px以上 md*/
@media (min-width:768px) {
  /* width:720px; */
  .smartbr, .smbr, .lgbr{
    display: none;
  }

  .mdbr{
  display: block;
}
}

/*992px以上 lg*/
@media (min-width:992px) {
  /* width:960px; */
  .smartbr, .smbr, .mdbr{
    display: none;
  }

  .lgbr{
    display: block;
  }
}

/************************
**ヘッダー固定時のページアンカーの調整
************************/
.anchor-wrap{

}

/************************
**ボタンベース
************************/
.linkbtn{
  position: relative;
}

.linkbtn a{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.linkbtn p{
  text-align: center;
}

/************************
**パンくずリスト
************************/
#breadcrumbs .breadcrumbs-wrapper{
  margin: 20px 4vw 0;
}

#breadcrumbs ol li{
  display: inline-block;
  font-size: 9px;
  color: #0085d0;
}

#breadcrumbs ol li::after{
  content: '/';
  display: inline-block;
  padding: 0 1px;
}

#breadcrumbs ol li:last-child:after{
  display: none;
}

#breadcrumbs ol li a{
  text-decoration: none;
  color: #000;
}

/*576px以上 sm*/
@media (min-width:576px) {
  /* width:540px; */
  #breadcrumbs .breadcrumbs-wrapper{
    margin: 20px 0 0;
  }

  #breadcrumbs ol li{
    font-size: 11px;
  }
}

/************************
**見出しラベル
************************/
.chapter-label{
  margin: 0 1.5vw;
}

/*576px以上 sm*/
@media (min-width:576px) {
  /* width:540px; */
  .chapter-label{
    margin: 0;
  }
}

/*********************************************
*
* header
*
*********************************************/
header .hdr-wrapper{
  position: fixed;
  z-index: 999;
  top:0;
  left: 0;
  width: 100vw;
}

/************************
**#hdr-logo
************************/
header #hdr-logo .logo-wrapper{
  background-color: #000;
  height: 20vw;
  position: relative;
  z-index: 999;
}

header #hdr-logo .logo-wrapper .logo-box{
  position: relative;
  height: 100%;
}

header #hdr-logo .logo-box .logo-img,
header #hdr-logo .logo-box .logo-mobile{
  position: absolute;
  width: 78.5vw;
  top: 50%;
  left: 5vw;
  transform: translateY(-50%);
}

header #hdr-logo .logo-box .logo-img{
  display: none;
}
header #hdr-logo .logo-box .logo-mobile{
  display: block;
}

header #hdr-logo .logo-box .logo-text{
  display: none;
  position: absolute;
  bottom: 3vw;
  left:20vw;
  color: #fff;
  font-size: 3vw;
}

header #hdr-logo .logo-box .logo-navbtn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5vw;
}

header #hdr-logo .logo-box .logo-navbtn .button-wrap{
  position: relative;
  width: 30px;
  height: 20px;
}

header #hdr-logo .logo-navbtn .button-wrap span{
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: 0.5s;
}

header #hdr-logo .logo-navbtn .button-wrap span:first-of-type{
  top: 0;
}

header #hdr-logo .logo-navbtn .button-wrap span:nth-of-type(2){
  top: 50%;
}

header #hdr-logo .logo-navbtn .button-wrap span:last-of-type{
  top: 100%;
}

header #hdr-logo .logo-navbtn .button-wrap.nav-mobile span:first-of-type{
  top: 50%;
  transform: rotate(45deg);
}

header #hdr-logo .logo-navbtn .button-wrap.nav-mobile span:nth-of-type(2){
  opacity: 0;
}

header #hdr-logo .logo-navbtn .button-wrap.nav-mobile span:last-of-type{
  top: 50%;
  transform: rotate(-45deg);
}

@media (min-width:576px) {
  /* width:540px; */
  header #hdr-logo .logo-wrapper{
    height: 80px;
  }

  header #hdr-logo .logo-box .logo-img{
    display: block;
    width: 200px;
    left: 0;
  }

  header #hdr-logo .logo-box .logo-mobile{
    display: none;
  }

  header #hdr-logo .logo-box .logo-text{
    display: block;
    bottom: 10px;
    left: 55px;
    color: #fff;
    font-size: 11px;
  }

  header #hdr-logo .logo-box .logo-navbtn{
    display: none;
  }
}

/*768px以上 md*/
@media (min-width:768px) {
  /* width:720px; */
  header #hdr-logo .logo-box .logo-img{
    width: 240px;
  }

  header #hdr-logo .logo-box .logo-text{
    bottom: 15px;
    left: 60px;
    font-size: 13px;
  }
}


/************************
**#hdr-nav
************************/
header #hdr-nav .nav-wrapper{
  position: fixed;
  z-index: 998;
  top: -100vh;
  width: 100vw;
  height: 100vh;
  background-color: #0084cf;
  transition: 0.5s;
}

header #hdr-nav .nav-wrapper.nav-mobile{
  top: 20vw;
  height: calc(100vh - 20vw);
}

header #hdr-nav .nav-wrapper .nav-box ul{
  padding: 10vw 0;
}

header #hdr-nav .nav-wrapper .nav-box ul li{
  list-style: none;
  font-size: 5vw;
  font-weight: 700;
  text-align: center;
  margin: 10vw 0;
}

header #hdr-nav .nav-wrapper .nav-box ul li a{
  color: #fff;
  text-decoration: none;
}

header #hdr-nav .nav-box ul li .nav-icon{
  width: 50px;
  margin: 0 auto;
}

header #hdr-nav .nav-box ul li .nav-button{
  color: #fff;
  min-width: 276px;
  width: 70vw;
  margin: 0 auto;
  position: relative;
}

header #hdr-nav .nav-button .nav-button-text{
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
}

header #hdr-nav .nav-box ul li .nav-button a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media (min-width:576px) {
  /* width:540px; */
  header #hdr-nav .nav-wrapper{
    position: static;
    transition: 0s;
    height: 63px;
    margin-top: -3px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
    background-color: transparent;
    background-image: url(../img/heder_obi.png);
    background-repeat:no-repeat;
    background-size:  cover;
    background-position: right -10%;
  }

  header #hdr-nav .nav-wrapper .nav-box{
    position: relative;
    height: 100%;
  }


  header #hdr-nav .nav-wrapper .nav-box ul{
    padding: 0;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
  }

  header #hdr-nav .nav-wrapper .nav-box ul li{
    font-size: 11px;
    margin: 0 10px;
  }

  header #hdr-nav .nav-box ul li .nav-textlink{
    width: 80px;
    line-height: 30px;
    text-align: center;
  }

  /*safari*/
  _::-webkit-full-page-media, _:future, :root header #hdr-nav .nav-box ul li .nav-textlink{
    line-height: 40px;
  }

  header #hdr-nav .nav-box ul li .nav-icon{
    width: 30px;
    margin: 0 auto;
  }

  header #hdr-nav .nav-box ul li .nav-button{
    color: #fff;
    min-width: auto;
    width: 150px;
    margin-top: 3px;
  }
}

/*768px以上 md*/
@media (min-width:768px) {
  /* width:720px; */
  header #hdr-nav .nav-wrapper .nav-box ul li{
    font-size: 15px;
    margin: 0 10px;
  }

  header #hdr-nav .nav-box ul li .nav-textlink{
    width: 120px;
    line-height: 37px;
  }

  /*safari*/
  _::-webkit-full-page-media, _:future, :root header #hdr-nav .nav-box ul li .nav-textlink{
    line-height: 45px;
  }

  header #hdr-nav .nav-box ul li .nav-icon{
    margin: 2px 10px 0;
  }

  header #hdr-nav .nav-box ul li .nav-button{
    min-width: auto;
    width: 200px;
    margin-top:0;
  }
}

/*992px以上 lg*/
@media (min-width:992px) {
  /* width:960px; */
  header #hdr-nav .nav-wrapper .nav-box ul li{
    font-size: 18px;
    margin: 0 10px;
  }

  header #hdr-nav .nav-box ul li .nav-textlink{
    width: 150px;
    line-height: 40px;
  }

  /*safari*/
  _::-webkit-full-page-media, _:future, :root header #hdr-nav .nav-box ul li .nav-textlink{
    line-height: 48px;
  }

  header #hdr-nav .nav-box ul li .nav-icon{
    margin: 5px 30px 0 0 ;
  }

    header #hdr-nav .nav-box ul li .nav-button{
    width: 240px;
    margin-top:0;
  }
}

/*********************************************
*
* footer
*
*********************************************/
/************************
**#ftr-instagram
************************/
footer #ftr-instagram .insta-logo{
  width: 50vw;
  max-width: 180px;
  margin: 0.5vw auto 0.2vw;
}

footer #ftr-instagram .insta-image{
  padding: 2vw;
  background-color: #000;
}

footer #ftr-instagram .insta-image .insta-image-box{
  display: flex;
}

footer #ftr-instagram .insta-image .insta-image-img{
  width: calc(100vw / 5);
  padding: 0.5vw 1vw;
}

/*576px以上 sm*/
@media (min-width:576px) {
  /* width:540px; */
  footer #ftr-instagram .insta-logo{
    width: 275px;
    max-width:initial;
    margin: 30px auto 10px;
  }

  footer #ftr-instagram .insta-image{
    padding: 10px;
  }

  footer #ftr-instagram .insta-image .insta-image-img{
    width: calc(100vw / 5);
    padding: 5px 5px;
  }
}

/************************
**#ftr-company
************************/
footer #ftr-company .company-wrapper{
  background-color: #000;
  background-image: url(../img/footer_base.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 90% top;
  padding: 3vw 0;
}

footer #ftr-company .company-wrapper .company-sns{
  display: flex;
  justify-content: flex-end;
}

footer #ftr-company .company-sns .company-sns-icon{
  width: 7.5vw;
  margin: 1.5vw 4vw 0;
}

footer #ftr-company .company-wrapper .company-logo{
  width: 50vw;
  margin: 0 auto 1.5vw;
}

footer #ftr-company .company-wrapper .company-text{
  width:80vw;
  margin: 0 auto 1vw;
}

footer #ftr-company .company-wrapper .company-address{
  color: #fff;
  text-align: center;
  font-size: 3vw;
  margin: 5vw auto 1vw;
}

footer #ftr-company .company-wrapper .company-tel{
  color: #fff;
  text-align: center;
  font-size: 5vw;
  margin: 1vw auto 0;
  padding-bottom: 3vw;
}

footer #ftr-company .company-margin{
  background-color: #000;
  height: 7vw;
}

/*576px以上 sm*/
@media (min-width:576px) {
  /* width:540px; */
  footer #ftr-company .company-wrapper{
    background-position: 90% top;
    padding: 10px 0;
  }

  footer #ftr-company .company-sns .company-sns-icon{
    width: 32px;
    margin: 10px 10px 0;
  }

  footer #ftr-company .company-wrapper .company-logo{
    width: 275px;
    margin: 0 auto 10px;
  }

  footer #ftr-company .company-wrapper .company-text{
    width:400px;
    margin: 0 auto 5px;
  }
  footer #ftr-company .company-wrapper .company-address{
    font-size: 15px;
    margin: 30px auto 5px;
  }

  footer #ftr-company .company-wrapper .company-tel{
    font-size: 24px;
    margin: 10px auto 0;
    padding-bottom: 20px;
  }

  footer #ftr-company .company-margin{
    height: 20px;
  }
}

/*768px以上 md*/
@media (min-width:768px) {
  /* width:720px; */
  footer #ftr-company .company-wrapper{
    background-position: right top;
  }
}

/*********************************************
*
* #tst-topimg index.html
*
*********************************************/
#tst-topimg .topimg-wrapper{
  width: 100vw;
}

#tst-topimg .topimg-wrapper .topimg-pc{
  display: none;
}

/*576px以上 sm*/
@media (min-width:576px) {
  /* width:540px; */
  #tst-topimg .topimg-wrapper{
    width: 100%;
  }

  #tst-topimg .topimg-wrapper .topimg-pc{
    display: block;
  }

  #tst-topimg .topimg-wrapper .topimg-mobile{
    display: none;
  }
}

/*********************************************
*
* #tst-miniimg index.html
*
*********************************************/
#tst-miniimg .miniimg-wrapper{
  margin: 5vw 0;
}

#tst-miniimg .miniimg-box .contents-position{
  width: 90vw;
  margin: 0 auto;
  position: relative;
}

#tst-miniimg .miniimg-box .swiper{
  width: 90vw;
  margin: 0 auto;
}

#tst-miniimg .miniimg-box .swiper .swiper-slide{
  height: auto;/*高さを最大に合わせて調整する*/
}


#tst-miniimg .miniimg-box .contents-item{
  height: 100%;
  position: relative;
}

#tst-miniimg .miniimg-box .contents-item a{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

#tst-miniimg .miniimg-box .contents-position .swiper-button-prev,
#tst-miniimg .miniimg-box .contents-position .swiper-button-next{
  width: 20px;
  height: 40px;
}

#tst-miniimg .miniimg-box .contents-position .swiper-button-prev{
  left: 0;
}

#tst-miniimg .miniimg-box .contents-position .swiper-button-next{
  right: 0;
}

#tst-miniimg .miniimg-box .contents-position .swiper-button-prev::after,
#tst-miniimg .miniimg-box .contents-position .swiper-button-next::after{
  content: none;
}

#tst-miniimg .miniimg-box .button-wrap{
  position: relative;
}

#tst-miniimg .miniimg-box .button-wrap::before{
  position: absolute;
  content: "";
  top: 50%;
	left: 50%;
  transform: translate(-50%, -50%);
	width: 20px;
	height: 30px;
	background: rgba(200, 200, 200, 0.6);
}

#tst-miniimg .miniimg-box .button-wrap .button-tri{
  position: relative;
}

#tst-miniimg .miniimg-box .button-wrap .button-tri::after{
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: -5px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

#tst-miniimg .miniimg-box  .swiper-button-prev .button-wrap .button-tri::after{
	right: -7px;
  transform: rotate(-135deg);
}

#tst-miniimg .miniimg-box  .swiper-button-next .button-wrap .button-tri::after{
  left: -7px;
  transform: rotate(45deg);
}

/*576px以上 sm*/
@media (min-width:576px) {
  /* width:540px; */
  #tst-miniimg .miniimg-wrapper{
    margin: 20px 0;
  }

  #tst-miniimg .miniimg-box .contents-position{
    width: 100%;
  }

  #tst-miniimg .miniimg-box .swiper{
    width: 100%;
  }

  #tst-miniimg .miniimg-box .button-wrap::before{
    height: 40px;
  }

}

/*768px以上 md*/
@media (min-width:768px) {
  /* width:720px; */
  #tst-miniimg .miniimg-wrapper{
    margin: 30px 0;
  }
}

/*992px以上 lg*/
@media (min-width:992px) {
  /* width:960px; */
  #tst-miniimg .miniimg-wrapper{
    margin: 40px 0;
  }
}



/*********************************************
*
* #tst-conts index.html
*
*********************************************/
#tst-conts .conts-wrapper{
  margin: 2vw 0 3vw;
}

#tst-conts .conts-wrapper .conts-box{
  margin-bottom: 7vw;
}

#tst-conts .conts-box .conts-imgbox01{
  display: flex;
  justify-content: space-between;
  margin: 2vw 0;
}

#tst-conts .conts-imgbox01 .conts-imgb-img{
  width: 49.5vw;
}

#tst-conts .conts-box .conts-textbox01,
#tst-conts .conts-box .conts-textbox02,
#tst-conts .conts-box .conts-textbox03{
  margin: 1vw 4vw 2vw;
}

#tst-conts .conts-textbox01 .conts-txtb-title,
#tst-conts .conts-textbox02 .conts-txtb-title,
#tst-conts .conts-textbox03 .conts-txtb-title{
  font-size: 4.2vw;
  font-weight: 700;
  color: #0085d0;
  margin: 2.8vw 0;
}

#tst-conts .conts-textbox01 .conts-txtb-letter,
#tst-conts .conts-textbox02 .conts-txtb-letter,
#tst-conts .conts-textbox03 .conts-txtb-letter{
  font-size: 2.2vw;
  line-height: 2.0em;
  font-feature-settings: "palt";
}

#tst-conts .conts-txtb-letter .txtb{
  display: inline-block;
}

#tst-conts .conts-box .conts-textbox02{
  position: relative;
}

#tst-conts .conts-textbox02 .conts-txtb-img,
#tst-conts .conts-textbox03 .conts-txtb-img{
  display: none;
}

#tst-conts .conts-textbox03 .conts-txtb-letter{
  text-indent: -1.5em;
  padding-left: 1.5em;
}

#tst-conts .conts-textbox03 .conts-txtb-letter .txtb{
  padding-left: 1.5em;
}

#tst-conts .conts-wrapper .conts-contact{
  margin: 10vw 0;
}

#tst-conts .conts-contact .conts-contact-button{
  width: 60vw;
  margin: 0 auto;
  position: relative;
}

#tst-conts .conts-contact .conts-contact-button:hover{
  opacity: 0.8;
}

#tst-conts .conts-contact-button .btn-text{
  font-size: 6.5vw;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

#tst-conts .conts-contact .conts-contact-button a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}



/*576px以上 sm*/
@media (min-width:576px) {
  /* width:540px; */
  #tst-conts .conts-wrapper{
    margin: 10px 0;
  }

  #tst-conts .conts-wrapper .conts-box {
    margin-bottom: 30px;
  }

  #tst-conts .conts-box .conts-imgbox01{
    margin: 10px 0;
  }

  #tst-conts .conts-imgbox01 .conts-imgb-img{
    width: 265px;
  }

  #tst-conts .conts-box .conts-textbox01,
  #tst-conts .conts-box .conts-textbox02,
  #tst-conts .conts-box .conts-textbox03{
    margin: 10px 0 15px;
  }

  #tst-conts .conts-textbox01 .conts-txtb-title,
  #tst-conts .conts-textbox02 .conts-txtb-title,
  #tst-conts .conts-textbox03 .conts-txtb-title{
    font-size: 16px;
    margin: 10px 0;
  }

  #tst-conts .conts-textbox01 .conts-txtb-letter,
  #tst-conts .conts-textbox02 .conts-txtb-letter,
  #tst-conts .conts-textbox03 .conts-txtb-letter{
    font-size: 11px;
  }

  #tst-conts .conts-textbox02 .conts-txtb-img{
    display: block;
    width: 150px;
    position: absolute;
    bottom: -10px;
    right: 0;
  }

  #tst-conts .conts-textbox03 .conts-txtb-wrap{
    display: flex;
    justify-content: space-between;
  }

  #tst-conts .conts-textbox03 .conts-txtb-letter{
    width: 330px;
  }

  #tst-conts .conts-textbox03 .conts-txtb-img{
    display: block;
    width: 200px;
    align-self: center;
  }

  #tst-conts .conts-wrapper .conts-contact{
    margin: 50px 0;
  }

  #tst-conts .conts-contact .conts-contact-button{
    width: 240px;
  }

  #tst-conts .conts-contact-button .btn-text{
    font-size: 20px;
  }
}

/*768px以上 md*/
@media (min-width:768px) {
  /* width:720px; */
  #tst-conts .conts-wrapper .conts-box {
    margin-bottom: 50px;
  }

  #tst-conts .conts-imgbox01 .conts-imgb-img{
    width: 355px;
  }

  #tst-conts .conts-textbox01 .conts-txtb-title,
  #tst-conts .conts-textbox02 .conts-txtb-title,
  #tst-conts .conts-textbox03 .conts-txtb-title{
    font-size: 18.5px;
  }


  #tst-conts .conts-textbox01 .conts-txtb-letter,
  #tst-conts .conts-textbox02 .conts-txtb-letter,
  #tst-conts .conts-textbox03 .conts-txtb-letter{
    font-size: 14px;
  }

  #tst-conts .conts-textbox02 .conts-txtb-img{
    width: 200px;
    bottom: -30px;
    right: 0;
  }

  #tst-conts .conts-textbox03 .conts-txtb-letter{
    width: 510px;
  }

  #tst-conts .conts-textbox03 .conts-txtb-letter{
    text-indent: -1.2em;
    padding-left: 1.2em;
  }

  #tst-conts .conts-textbox03 .conts-txtb-letter .txtb{
    padding-left: 1.2em;
  }

  #tst-conts .conts-textbox03 .conts-txtb-img{
    width: 220px;
  }

  #tst-conts .conts-wrapper .conts-contact{
    margin: 75px 0;
  }

  #tst-conts .conts-contact .conts-contact-button{
    width: 280px;
  }

  #tst-conts .conts-contact-button .btn-text{
    font-size: 24px;
  }
}

/*992px以上 lg*/
@media (min-width:992px) {
  /* width:960px; */
  #tst-conts .conts-wrapper .conts-box {
    margin-bottom: 75px;
  }

  #tst-conts .conts-box .conts-imgbox01{
    margin: 20px 0;
  }

  #tst-conts .conts-imgbox01 .conts-imgb-img{
    width: 475px;
  }

  #tst-conts .conts-box .conts-textbox01,
  #tst-conts .conts-box .conts-textbox02,
  #tst-conts .conts-box .conts-textbox03{
    margin: 10px 0 20px;
  }

  #tst-conts .conts-textbox01 .conts-txtb-title,
  #tst-conts .conts-textbox02 .conts-txtb-title,
  #tst-conts .conts-textbox03 .conts-txtb-title{
    font-size: 24px;
  }

  #tst-conts .conts-textbox01 .conts-txtb-letter,
  #tst-conts .conts-textbox02 .conts-txtb-letter,
  #tst-conts .conts-textbox03 .conts-txtb-letter{
    font-size: 16px;
  }

  #tst-conts .conts-textbox02 .conts-txtb-img{
    width: 280px;
    bottom: -50px;
  }

  #tst-conts .conts-textbox03 .conts-txtb-letter{
    width: 640px;
  }

  #tst-conts .conts-textbox03 .conts-txtb-img{
    width: 320px;
  }

  #tst-conts .conts-contact .conts-contact-button{
    width: 320px;
  }

  #tst-conts .conts-contact-button .btn-text{
    font-size: 28px;
  }
}

/*********************************************
*
* #tst-contact contact.html
*
*********************************************/
#tst-contact .contact-wrapper{
  margin: 3px 0 10vw;
}

#tst-contact .contact-wrapper .contact-form{
  margin: 5vw 4vw;
}

#tst-contact .contact-form .contact-form-itembox{
  margin: 2.5vw 0;
}

#tst-contact .contact-form-itembox .form-label{
  font-size: 3.8vw;
  display: flex;
  align-items: center;
  margin: 1vw 0 2vw;
}

#tst-contact .contact-form-itembox .form-label .label-must{
  font-size: 0.75em;
  color: #f00;
  padding-left: 3vw;
}

#tst-contact .contact-form-itembox .form-input{
  width: 92vw;
  margin: 0 auto;
}

#tst-contact .contact-form-itembox .form-input input,
#tst-contact .contact-form-itembox .form-input textarea{
  width: calc(100% - 10px) ;
  height: 10vw;
  font-size: 5.0vw;
  font-family: inherit;
  font-weight: inherit;
  border: 1px solid #c8c8c8;
  border-radius: 3px;
  padding: 0 5px ;
}

#tst-contact .contact-form-itembox .form-input input:focus,
#tst-contact .contact-form-itembox .form-input textarea:focus{
  border: 1px solid #0085d0;
  outline: none;
  box-shadow: 0 0 1px 2px rgba(0, 133, 208, .2);
}

#tst-contact .contact-form-itembox.inquiry .form-input textarea{
  height: 30vw;
}

#tst-contact .contact-form .contact-form-memo{
  margin: 4vw 0;
  font-size: 3.5vw;
  line-height: 1.2em;
  color: #f00;
  text-indent: -1.2em;
  padding-left: 1.2em;
}

#tst-contact .contact-form .contact-form-check{
  width: 92vw;
  margin: 4vw auto;
  font-size: 3.5vw;
  display: flex;
  align-items: center;
}

#tst-contact .contact-form .contact-form-check input{
  width: 15px;
  height: 15px;
}

#tst-contact .contact-form .contact-form-check label{
  margin-left: 10px;
}

#tst-contact .contact-form .contact-form-button{
  margin: 6.5vw 0;
}

#tst-contact .contact-form-button .form-btn{
  width: 65vw;
  margin: 0 auto;
  position: relative
}

#tst-contact .contact-form-button .form-btn .form-btn-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 7.5vw;
  color: #fff;
  letter-spacing: 2vw;
}

#tst-contact .contact-form-button .form-btn a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*576px以上 sm*/
@media (min-width:576px) {
  /* width:540px; */
  #tst-contact .contact-wrapper{
    margin: 5px 0 80px;
  }

  #tst-contact .contact-wrapper .contact-form{
    margin: 15px 0;
  }

  #tst-contact .contact-form .contact-form-itembox{
    margin: 20px 0;
    display: flex;
    justify-content: center;
  }

  #tst-contact .contact-form-itembox .form-label{
    font-size: 13px;
    width: 30%;
    margin: 0;
  }

  #tst-contact .contact-form-itembox.inquiry .form-label{
    align-self: self-start;
    padding-top: 10px;
  }

  #tst-contact .contact-form-itembox .form-label .label-must{
    padding-left: 10px;
  }

  #tst-contact .contact-form-itembox .form-input {
    width: 68%;
    margin: 0;
  }

  #tst-contact .contact-form-itembox .form-input input,
  #tst-contact .contact-form-itembox .form-input textarea{
    width: calc(100% - 10px);
    height: 40px;
    font-size: 18px;
  }

  #tst-contact .contact-form-itembox.inquiry .form-input textarea{
    height: 120px;
  }

  #tst-contact .contact-form .contact-form-memo{
    margin: 10px 0;
    font-size: 10px;
    text-indent:inherit;
    padding-left: 0;
    white-space: nowrap;
  }

  #tst-contact .contact-form .contact-form-check{
    width: 100%;
    margin: 30px 0;
    font-size: 15px;
  }

  #tst-contact .contact-form .contact-form-button{
    margin: 50px 0;
  }

  #tst-contact .contact-form-button .form-btn{
    width: 240px;
  }

  #tst-contact .contact-form-button .form-btn .form-btn-text{
    font-size: 22px;
    text-indent: 1em;
    letter-spacing: 1em;
  }
}

/*768px以上 md*/
@media (min-width:768px) {
  /* width:720px; */
  #tst-contact .contact-wrapper{
    margin: 5px 0 100px;
  }

  #tst-contact .contact-form .contact-form-itembox{
    margin: 35px 0;
  }

  #tst-contact .contact-form-itembox .form-label{
    font-size: 16px;
  }

  #tst-contact .contact-form-itembox .form-input input,
  #tst-contact .contact-form-itembox .form-input textarea{
    height: 50px;
    font-size: 22px;
  }

  #tst-contact .contact-form-itembox.inquiry .form-input textarea{
    height: 175px;
  }

  #tst-contact .contact-form .contact-form-memo{
    margin: 20px 0;
    font-size: 14px;
  }

  #tst-contact .contact-form .contact-form-check{
    margin: 40px 0;
    font-size: 20px;
  }

  #tst-contact .contact-form .contact-form-button{
    margin: 60px 0;
  }

  #tst-contact .contact-form-button .form-btn{
    width: 280px;
  }

  #tst-contact .contact-form-button .form-btn .form-btn-text{
    font-size: 25px;
  }
}

/*********************************************
*
* .textdeco company.html
*
*********************************************/
.company-deco .deco-position{
  position: relative;
}

.company-deco .deco-position .deco-line{
  width: 1px;
  height: 100%;
  background-color: #828588;
  position: absolute;
  display: none;
}

.company-deco .deco-position .deco-text{
  position: absolute;
  display: none;
}

/*576px以上 sm*/
@media (min-width:576px) {
  /* width:540px; */
  .company-deco .deco-position .deco-line{
    display: block;
    top: 70px;
    right: -5px;
  }

  .company-deco .deco-position .deco-text{
    display: block;
    color: #828588;
    top: 70px;
    right: calc( -5px - 1.8em);
    writing-mode: vertical-rl;
    line-height: 1.5em;
    font-size: 11px;
    font-weight: 700;
  }
}

/*768px以上 md*/
@media (min-width:768px) {
  /* width:720px; */
  .company-deco .deco-position .deco-line{
    top: 100px;
    right: -10px;
  }

  .company-deco .deco-position .deco-text{
    top: 100px;
    right: calc( -10px - 1.8em);
    font-size: 13px;
  }
}

/*992px以上 lg*/
@media (min-width:992px) {
  /* width:960px; */
  .company-deco .deco-position .deco-line{
    display: block;
    top: 130px;
  }

  .company-deco .deco-position .deco-text{
    display: block;
    top: 130px;
    font-size: 15px;
  }
}

/*********************************************
*
* #tst-company company.html
*
*********************************************/
#tst-company .company-wrapper{
  margin: 3px 0 5vw;
}

#tst-company .company-wrapper .company-table{
  margin: 5vw 0;
}

#tst-company .company-table .table-item{
  margin: 2vw 4vw;
  font-feature-settings: "palt";
  display: flex;
  align-items: flex-start;
}

#tst-company .table-item .table-item-label{
  margin: 1.5vw 0;
  font-size: max(10.5px, 2.5vw);
  width: 24vw;
  line-height: 2.0em;
  flex-shrink: 0;
}

#tst-company .table-item .table-item-data{
  font-size: max(10.5px, 2.5vw);
  margin: 1.5vw 0;
}

#tst-company .table-item .table-item-data .data-one{
  line-height: 2.0em;
}

#tst-company .table-item .table-item-data .data-one .txtb{
  display: inline-block;
}

#tst-company .table-item .table-item-data .mobile-cut{
  display: none;
}

/*576px以上 sm*/
@media (min-width:576px) {
  /* width:540px; */
  #tst-company .company-wrapper{
    margin: 5px 0 10px;
  }

  #tst-company .company-wrapper .company-table{
    margin: 25px 0 30px;
  }

  #tst-company .company-table .table-item{
    margin: 20px 0;
    display: flex;
  }

  #tst-company .table-item .table-item-label{
    margin: 0;
    width: 25%;
    font-size: 12px;
  }

  #tst-company .table-item .table-item-data{
    width: 75%;
    font-size: 12px;
    margin: 0;
  }

  #tst-company .table-item .table-item-data .data-one{
    line-height: inherit;
    margin: 0 0 10px;
  }

  #tst-company .table-item .table-item-data .data-one a{
    text-decoration: underline;
    color: #0085d0;
  }

  #tst-company .table-item .table-item-data .mobile-cut{
    display: inline-block;
  }
}

/*768px以上 md*/
@media (min-width:768px) {
  /* width:720px; */
  #tst-company .company-wrapper{
    margin: 5px 0 20px;
  }

  #tst-company .company-wrapper .company-table{
    margin: 40px 0 50px;
  }

  #tst-company .company-table .table-item{
    margin: 30px 0;
  }

  #tst-company .table-item .table-item-label{
    font-size: 15px;
  }

  #tst-company .table-item .table-item-data{
    font-size: 15px;
  }
}

/*992px以上 lg*/
@media (min-width:992px) {
  /* width:960px; */
  #tst-company .company-wrapper .company-table{
    margin: 50px 0 80px;
  }

  #tst-company .table-item .table-item-label{
    font-size: 18px;
  }

  #tst-company .table-item .table-item-data{
    font-size: 18px;
  }
}

/*********************************************
*
* #tst-vision company.html
*
*********************************************/
#tst-vision .vision-wrapper{
  margin: 5vw 0 10vw;
}

#tst-vision .vision-wrapper .vision-sentence{
  margin: 5vw 4vw;
  font-size: max( 14px, 3vw);
  line-height: 1.5em;
  text-align: center;
  color: #0085d0;
}

#tst-vision .vision-wrapper .vision-sentence .txtb{
  display: inline-block;
}

#tst-vision .vision-wrapper .vision-image{
  width: 90vw;
  margin: 5vw auto;
}

/*576px以上 sm*/
@media (min-width:576px) {
  /* width:540px; */
  #tst-vision .vision-wrapper{
    margin: 10px 0 80px;
  }

  #tst-vision .vision-wrapper .vision-sentence{
    margin: 25px 0 30px;
    font-size: 18px;
  }

  #tst-vision .vision-wrapper .vision-image{
    width: 90%;
    margin: 10px auto;
  }
}

/*768px以上 md*/
@media (min-width:768px) {
  /* width:720px; */
  #tst-vision .vision-wrapper{
    margin: 20px 0 100px;
  }

  #tst-vision .vision-wrapper .vision-sentence{
    margin: 40px 0 50px;
    font-size: 24px;
  }

  #tst-vision .vision-wrapper .vision-image{
    width: 80%;
    margin: 20px auto;
  }
}

/*992px以上 lg*/
@media (min-width:992px) {
  /* width:960px; */
  #tst-vision .vision-wrapper .vision-sentence{
    margin: 50px 0 80px;
    font-size: 28px;
  }

  #tst-vision .vision-wrapper .vision-image{
    margin: 30px auto;
  }
}

/*********************************************
*
* #tst-access company.html
*
*********************************************/
#tst-access .access-wrapper{
  margin: 5vw 0 10vw;
}

#tst-access .access-wrapper .chapter-line{
  height: 1px;
  width: 95vw;
  background-color: #0085d0;
  margin: 5vw auto 10vw;
}

#tst-access .access-wrapper .access-title{
  font-size: 5vw;
  color: #0085d0;
  width: 92vw;
  margin: 0 auto;
}

#tst-access .access-wrapper .access-googlemap{
  margin: 2vw auto 5vw;
  width: 92vw;
}

#tst-access .access-wrapper .access-googlemap iframe{
  width: 100%;
  aspect-ratio: 16/9;
}


/*576px以上 sm*/
@media (min-width:576px) {
  /* width:540px; */
  #tst-access .access-wrapper{
    margin: 10px 0 80px;
  }

  #tst-access .access-wrapper .chapter-line{
    width: 90%;
    margin: 10px auto 30px;
  }

  #tst-access .access-wrapper .access-title{
    font-size: 14px;
    width: 90%;
  }

  #tst-access .access-wrapper .access-googlemap{
    margin: 5px auto 30px;
    width: 90%;
  }

}

/*768px以上 md*/
@media (min-width:768px) {
  /* width:720px; */
  #tst-access .access-wrapper{
    margin: 20px 0 100px;
  }

  #tst-access .access-wrapper .chapter-line{
    width: 90%;
    margin: 10px auto 50px;
  }

  #tst-access .access-wrapper .access-title{
    font-size: 18px;
    width: 90%;
  }

  #tst-access .access-wrapper .access-googlemap{
    margin: 10px auto 50px;
  }
}

/*992px以上 lg*/
@media (min-width:992px) {
  /* width:960px; */
  #tst-access .access-wrapper .access-title{
    font-size: 22px;
  }

  #tst-access .access-wrapper .access-googlemap{
    margin: 15px auto 80px;
  }
}

/*********************************************
*
* #tst-product item.html
*
*********************************************/
#tst-product .product-wrapper{
  margin: 5vw 0 10vw;
}

#tst-product .product-wrapper .product-box{
  margin: 5vw 2vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#tst-product .product-box .product-item{
  width: calc(97% / 2);
  padding-bottom: 2vw;
  margin-bottom: 4vw;
  background-color: #fff;
  border-radius: 5%;
  box-shadow: 0 3px 5px 1px rgba(0, 0, 0, .4);
  position: relative;
}

#tst-product .product-item .item-image{
  width: 90%;
  margin: 5% auto;
}

#tst-product .product-item .item-image img{
  border-radius: 5%;
}

#tst-product .product-item .item-info{
  font-size: 3.8vw;
  width: 90%;
  margin: 5% auto;
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 0;
  font-feature-settings: "palt";
}

#tst-product .item-info .info-label01,
#tst-product .item-info .info-label02{
  font-weight: 700;
  flex-shrink: 0;
}

#tst-product .item-info .info-colon{
  width: 2vw;
  text-align: center;
}

#tst-product .item-info .info-data{
  width: 100%;
  margin: 3%;
}

#tst-product .product-item .item-soldout{
  position: absolute;
  width: 20vw;
  top: -3%;
  left: -3%;
  display: none;
}

#tst-product .product-item .item-soldout.icon-on{
  display: block;
}

#tst-product .product-wrapper .product-pagenation{
  margin: 5vw 2vw 10vw;
}

#tst-product .product-pagenation .page-pc{
  display: none;
}

#tst-product .product-pagenation ul{
  width: 90vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

#tst-product .product-pagenation ul li{
  width: 10vw;
  height: 10vw;
  line-height: 10vw;
  font-size: 4vw;
  color: #666;
  background-color: #e5e5e5;
  border: 1px solid #666;
  border-radius: 15%;
  text-align: center;
}

#tst-product .product-pagenation ul li:hover,
#tst-product .product-pagenation ul li.active{
  color: #fff;
  background-color: #0085d0;
  border: 1px solid #0085d0;
}

#tst-product .product-pagenation ul li:hover a{
  color: #fff;
}

#tst-product .product-pagenation ul li.prenex{
  width: 15.5vw;
}

/*576px以上 sm*/
@media (min-width:576px) {
  /* width:540px; */
  #tst-product .product-wrapper{
    margin: 10px 0 80px;
  }

  #tst-product .product-wrapper .product-box{
    margin: 25px 0;
  }

  #tst-product .product-box .product-item{
    width: 160px;
    padding-bottom: 10px;
    margin-bottom: 25px;
  }

  #tst-product .product-item .item-image{
    width: 93%;
    margin: 4% auto;
  }

  #tst-product .product-item .item-info{
    font-size: 10px;
    width: 93%;
    margin: 10px auto;
  }

  #tst-product .item-info .info-label01,
  #tst-product .item-info .info-label02{
    width: 46px;
    text-align: justify;
    text-align-last: justify;
    text-justify: inter-character;
  }

  #tst-product .item-info .info-colon{
    width: 7px;
  }

  #tst-product .item-info .info-data{
    width: auto;
    margin: 0;
  }

  #tst-product .product-item .item-soldout{
    width: 60px;
    top: -2%;
    left: -2%;
  }

  #tst-product .product-wrapper .product-pagenation{
    margin: 25px 0 40px;
  }

  #tst-product .product-pagenation .page-pc{
    display: block;
  }

  #tst-product .product-pagenation .page-mobile{
    display: none;
  }

  #tst-product .product-pagenation ul{
    width: 80%;
    margin: 0 auto;
    justify-content: space-around;
  }

  #tst-product .product-pagenation ul li{
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 13px;
    border-radius: 10%;
  }

  #tst-product .product-pagenation ul li.active{
    color: #fff;
    background-color: #0085d0;
    border: 1px solid #0085d0;
  }

  #tst-product .product-pagenation ul li.prenex{
    width: 60px;
  }
}

/*768px以上 md*/
@media (min-width:768px) {
  /* width:720px; */
  #tst-product .product-wrapper{
    margin: 20px 0 100px;
  }

  #tst-product .product-wrapper .product-box{
    margin: 40px 0 50px;
  }

  #tst-product .product-box .product-item{
    width: 215px;
    margin-bottom: 40px;
  }

  #tst-product .product-item .item-image{
    width: 195px;
    margin: 7.5px auto;
  }

  #tst-product .product-item .item-info{
    font-size: 13px;
    width: 195px;
    margin: 15px auto;
  }

  #tst-product .item-info .info-label01,
  #tst-product .item-info .info-label02{
    width: 60px;
  }

  #tst-product .item-info .info-colon{
    width: 10px;
  }

  #tst-product .product-item .item-soldout{
    width: 85px;
  }

  #tst-product .product-wrapper .product-pagenation{
    margin: 40px 0 50px;
  }

  #tst-product .product-pagenation ul{
    width: 55%;
  }

  #tst-product .product-pagenation ul li{
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 15px;
  }

  #tst-product .product-pagenation ul li.prenex{
    width: 60px;
  }
}

/*992px以上 lg*/
@media (min-width:992px) {
  /* width:960px; */
  #tst-product .product-box .product-item{
    width: 285px;
    padding-bottom: 15px;
  }

  #tst-product .product-item .item-image{
    width: 260px;
    margin: 12.5px auto;
  }

  #tst-product .product-item .item-info{
    font-size: 18px;
    width: 260px;
    margin: 15px auto;
  }
  #tst-product .item-info .info-label01,
  #tst-product .item-info .info-label02{
    width: 72px;
  }

  #tst-product .item-info .info-colon{
    width: 15px;
  }

  #tst-product .product-item .item-soldout{
    width: 100px;
  }

  #tst-product .product-wrapper .product-pagenation{
    margin: 40px 0 50px;
  }

  #tst-product .product-pagenation ul{
    width: 40%;
  }
}
