@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');
@import url('https://fonts.googleapis.com/earlyaccess/notosansjapanese.css');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap');
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
.font-roboto {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
}
.font-lato {
  font-family: 'Lato', sans-serif;
}
.font-mplus {
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.font-noto {
  font-family: 'Noto Sans Japanese';
}
.font-kosugi {
  font-family: 'Kosugi Maru', sans-serif;
}
html, body {
  height: 100%;
}
*, *::after, *::before {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}
body {
  color: #000000;
  background: #FFFFFF;
  font-family: "Noto Sans Japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Lucida Grande", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, "ＭＳ Ｐゴシック", sans-serif;
  overflow-x: hidden;
  font-size: 1.4em;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}
p {
  line-height: 1.8;
  letter-spacing: 0.05rem;
  text-align: center;
}
main {
  display: block;
  overflow:hidden;
  width:100%;
}

img{
  max-width:100%;
  height:auto;
}
li {
  list-style-type: none;
}
a {
  text-decoration: none;
  color: #fff;
}
.br-pc {
  display: block;
}
.br-sp {
  display: none;
}
sup, sub {
  font-size: 1.2rem;
}


@media only screen and (max-width: 1024px) {
  body {
    font-size: 1.4rem;
  }
  .inner {
    width: 80%;
  }
}
@media only screen and (max-width:750px) {
  .inner {
    width: 90%;
  }
  body {
    font-size: 1.35rem;
  }
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
.wrap {
  background-blend-mode: lighten;
  z-index: 9990;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.wrap:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate(0, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) .6s;
  content: '';
  background: rgba(53, 100, 34, 1);
}
.wrap img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  animation: wrapload 2.6s;
  animation-fill-mode: backwards;
  -webkit-animation: wrapload 2.6s;
  -webkit-animation-fill-mode: backwards;
  max-width: 350px;
  width: 50%;
  height: auto;
}

.wrap.active {
  -webkit-transition: all 5s ease;
  -moz-transition: all 5s ease;
  -o-transition: all 3s ease;
  transition: all 5s ease;
}
.wrap.active:before {
  transform: translate(0, -100%);
}


.wrap.active img {
  display: none;
}




/*-------------------
animation
-------------------*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@-webkit-keyframes fadeInTop {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTop {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInBottom {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottom {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}


/*-------------------
header
-------------------*/



header {
  width:100%;
    
    background-color:#356422;

}

header .mainimg {
  max-width:1000px;
  position: relative;
  margin: 0 auto;
  padding: 0;
  background-image: url(../images/mainimg_pc.webp?=2510);
  background-size:100% auto;
  background-repeat:no-repeat;
  background-position:center top;
}



header img{
  max-width:100%;
  height:auto;
  vertical-align:bottom;
}



header h1 {
}

header .head-lg {
  width:10%;
  max-width:100px;
  margin:0 auto;
  position:absolute;
  top:10vw;
  left:10vw;
  animation: fadeInBottom 1s;
  animation-delay: 2.8s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInBottom 1s;
  -webkit-animation-delay: 2.8s;
  -webkit-animation-fill-mode: backwards;
}

header .head-sub-tl {
  width:15%;
  max-width:150px;
  margin:0 5vw 0 auto;
  animation: fadeInBottom 1s;
  animation-delay: 2.8s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInBottom 1s;
  -webkit-animation-delay: 2.8s;
  -webkit-animation-fill-mode: backwards;
  z-index:3;
  padding-top:10vw;
}

header .head-mn-tl {
  width:80%;
  max-width:800px;
  margin:0 auto;
  animation: fadeInTop 1s;
  animation-delay: 2.8s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInTop 1s;
  -webkit-animation-delay: 2.8s;
  -webkit-animation-fill-mode: backwards;
  text-align: center;
  z-index:5;
  padding-bottom:5vw;
}

header .hdatten{
  background:#FFFFFF;
  color:#000000;
  text-align:right;
  font-size:clamp(.7rem, 1vw, 1.4rem);
  line-height:1.2;
  font-weight:500;
  padding:.5rem 2vw 2vw;
}






header .head_date img {
  height: auto;
  margin: 0 auto;
  
}

header.disable:after{
  content:'';
  display:block;
  background:rgba(0,0,0, .5);
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:30%;
  width:100%;
  margin:auto;
  z-index:10;
  transform:skewY(0deg);
}

header.disable .disablea{
  position:absolute;
  left:50%;
  bottom:5%;
  margin:auto;
  z-index:11;
  width:40%;

  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  text-align:center;
}

header.disable .disablea img{
  max-width:100%;
  height:auto;
}




@media only screen and (min-width:1000px){
  header .head-lg {
    top:3em;
    left:3em;
  }

  header .head-sub-tl {
    margin:0 3em 0 auto;
    padding-top:3em;
  }

  header .head-mn-tl {
    padding-bottom:3em;
  }

  header .hdatten{
    padding:.5rem 1rem 1rem;
  }

}


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



  




  header.disable:after{
    height:35%;
  }

  header.disable .disablea{
    position:absolute;
    left:50%;
    bottom:5%;
    margin:auto;
    z-index:11;
    width:60%;

    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    text-align:center;
  }
}


/*-------------------
head-intro
-------------------*/

#head-intro{
  text-align:center;
}

#head-intro .head-date {
}

#head-intro .head-date dt{
  width: 100%;
  position: relative;
  background:url(../images/head_date_bg_pc.webp?=2510) repeat-x center center;
  background-size:auto 3vw;
}

#head-intro .head-date dt img{
  width:24%;
  max-width:240px;
  margin:0 auto;
}

#head-intro .head-date dd{
  width:90%;
  max-width:900px;
  margin:0 auto;
}

@media only screen and (min-width:1000px){
  #head-intro .head-date dt{
    background-size:auto 2em;
  }
}


/*-------------------
obbutton
-------------------*/

#obbutton{
  transition-duration: .8s;
  bottom:100px;


}

#obbutton .cpbt{
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}


#obbutton.fixed{
  position:fixed;
  z-index:15;
  bottom:0;
  left:0;
  right:0;
  background:none;
  transition-duration: .8s;
  animation: fadeIn 2s;
  animation-delay: 2.5s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeIn 2s;
  -webkit-animation-delay: 2.5s;
  -webkit-animation-fill-mode: backwards;
}

#obbutton .cpbt a {
  overflow:hidden;
  padding: 0 .3em;
  -webkit-backface-visibility: hidden;
    backface-visibility: hidden;

}

#obbutton .cpbt a:hover {
  
}

#obbutton .cpbt a img{
    vertical-align:bottom;
    -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform: scale(1,1);
  opacity: .9;
  }

  #obbutton .cpbt a img:hover{
   opacity: 1;
  transform: scale(1.05,1.05);
  }

@media only screen and (max-width:640px) {
  #obbutton .cpbt{
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    width:100%;

  }

  #obbutton .cpbt a img {
    transform: none;
    opacity:1;

  }

  #obbutton .cpbt a img:hover {
    opacity: .8;
    transform: none;
  }



}

/*about
--------------*/
#about {
  text-align: center;
  padding: 0;
  position:relative;
}

#about .about-in {
  background-image:linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 7%, rgba(255,255,255,0) 94%, rgba(255,255,255,1) 100%),url(../images/about_h_img_pc.webp);
  background-repeat:no-repeat;
  background-position:center bottom;
  background-size:100% auto;
  text-align: center;
  padding: calc(100% / 1.2) 0 8vw 0;
  position:relative;
  max-width:1200px;
  margin:0 auto;
}

#about .about-in h1{
  width:55%;
  max-width:550px;
  margin:0 auto;
  position:absolute;
  top:6vw;
  left:0;
  right:0;
}

#about .about-in .about-img{
  width:50%;
  max-width:500px;
  margin:0 auto;
}

#about .ab-x{
  background:#003c6b;
  position:relative;
  padding:5vw 0 3vw 0;
}

#about .ab-quiz h2{
  width:80%;
  margin:0 auto;
  position:absolute;
  top:-5vw;
  left:0;
  right:0;
  z-index:3;
}

#about .ab-quiz .qz{
  width:80%;
  margin:0 auto;
}

@media only screen and (min-width:1000px) {
  #about .about-in {

    padding: 900px 0 5em 0;
  }

  #about .about-in h1{
    top:3em;
  }
}




/*howto
--------------*/
#howto {
  text-align: center;
  padding: 0 0 3vw 0;
  background:url(../images/howto_bg_pc.webp?=2510) repeat center top;
  background-size:100% auto;
  position: relative;
}

#howto img{
  max-width:100%;
  height:auto;
}

#howto h2 {
  margin: 0 auto;
  position: relative;
  z-index:2;
  background:#003c6b;
  height:9vw;
}

#howto h2 img{
  width:50%;
  max-width:500px;
  margin:0 auto;
  position:absolute;
  top:-8.5vw;
  left:0;
  right:0;
}

#howto .ht-pres{
  width:90%;
  max-width:1200px;
  margin:0 auto;
  padding-top:5vw;
}

#howto .ht-pres li{
  display:flex;
  justify-content: center;
  padding:1vw 0;
}

#howto .ht-pres li .ht-pr-tl{
  
}

#howto .ht-pres li .ht-pr{
  
}



#howto .webbuy{
  background:#da4f42;
  position:relative;
  padding:5vw 0 3vw 0;
  margin:15vw auto 5vw auto;
}

#howto .webbuy .wz{
  width:80%;
  margin:0 auto;
}

#howto .webbuy h3{
  width:70%;
  margin:0 auto;
  position:absolute;
  top:-20vw;
  left:0;
  right:0;
  z-index:3;
}

#howto .htbx-grn{
  margin: 0 auto;
  position: relative;
  padding:10vw 0;
}

@media only screen and (min-width:1000px) {
  #howto {
    padding: 0;
  }

  #howto h2 {
    height:4em;
  }

  #howto h2 img{
    top:-4em;
  }

  #howto .ht-pres{
    padding-top:2em;
  }

  #howto .ht-pres li{
    padding:1em 0;
  }
  
  #howto .htbx-grn{
    margin: 0 auto;
    position: relative;
    padding:5em 0;
  }
}



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

  #howto .ht-pres li{
    flex-wrap: wrap;
  }

  .contens_video .video {
    border:3px solid #003c6b;
  }

  #howto .ht-pres li.bset .ht-pr{
    margin-top:-15vw;
  }
}




#howto .htbx-grn.disable{
  position:relative;
}

#howto .htbx-grn.disable:after{
  content:'';
  display:block;
  background:rgba(0,0,0, .5);
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:100%;
  width:100%;
  margin:auto;
  z-index:10;
}

#howto .htbx-grn.disable .disablea{
  position:absolute;
  left:50%;
  top:50%;
  margin:auto;
  z-index:11;
  width:90%;
  transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-weight:800;
  color:#FFFFFF;
  font-size:4vw;
}

#howto .htbx-grn.disable .disablea img{
  max-width:100%;
  height:auto;
}


#howto .htbx-blu{
  margin: 0 auto;

}


#howto .htbx-blu.disable{
  position:relative;
}

#howto .htbx-blu.disable:after{
  content:'';
  display:block;
  background:rgba(0,0,0, .5);
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:100%;
  width:100%;
  margin:auto;
  z-index:10;
}

#howto .htbx-blu.disable .disablea{
  position:absolute;
  left:50%;
  top:50%;
  margin:auto;
  z-index:11;
  width:90%;
  transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-weight:800;
  color:#FFFFFF;
  font-size:4vw;
}

#howto .htbx-blu.disable .disablea img{
  max-width:100%;
  height:auto;
}


#howto .htbx {
  width: 95%;
  margin: 0 auto;
  max-width: 800px;
  position: relative;
}


.htbx.line.disable{
  position:relative;
}

.htbx.line.disable:after{
  content:'';
  display:block;
  background:rgba(0,0,0, .7);
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:100%;
  width:100%;
  margin:auto;
  border-radius:20px;
}

.htbx.line.disable .disablea{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  top:0;
  margin:auto;
  z-index:100;
  width:60%;
  display:flex;
  align-items: center;
    justify-content: center;
    align-content: center;
}

.htbx.line.disable .disablea img{
  max-width:100%;
  height:auto;
}

#howto .htbx.ist {

}


.htbx.ist.disable{
  position:relative;
}

.htbx.ist.disable:after{
  content:'';
  display:block;
  background:rgba(0,0,0, .7);
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:100%;
  width:100%;
  margin:auto;
  border-radius:20px;
}

.htbx.ist.disable .disablea{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  top:0;
  margin:auto;
  z-index:100;
  width:60%;
  display:flex;
  align-items: center;
    justify-content: center;
    align-content: center;
}

.htbx.ist.disable .disablea img{
  max-width:100%;
  height:auto;
}

#howto .htbx .twbox {
  padding:0;
  position:relative;
  background-color:#FFFFFF;
  background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%205.68%20133.21%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20none%3B%20stroke%3A%20%23003c6b%3B%20stroke-miterlimit%3A%2010%3B%20stroke-width%3A%205.68px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cline%20class%3D%22cls-1%22%20x1%3D%222.84%22%20x2%3D%222.84%22%20y2%3D%22133.21%22%2F%3E%3C%2Fsvg%3E'),url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%205.68%20133.21%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20none%3B%20stroke%3A%20%23003c6b%3B%20stroke-miterlimit%3A%2010%3B%20stroke-width%3A%205.68px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cline%20class%3D%22cls-1%22%20x1%3D%222.84%22%20x2%3D%222.84%22%20y2%3D%22133.21%22%2F%3E%3C%2Fsvg%3E');
  background-size:8px auto;
  background-repeat:repeat-y;
  background-position:left top,right top;
}

#howto .htbx .twbox::before {
  content: "";
  position: absolute;
  top: calc(100% / 13.1 * -1);
  left: 0;
  right: 0;
  width:100%;
  height:calc(100% / 13);
  background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20540%2020%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23003c6b%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M540%2C20H0L20%2C0h500l20%2C20h0Z%22%2F%3E%3C%2Fsvg%3E');
  background-size:100% auto;
  background-repeat:no-repeat;
  background-position:center bottom;
}

#howto .htbx .twbox::after {
  content: "";
  position: absolute;
  bottom: calc(100% / 13 * -1);
  left: 0;
  right: 0;
  width:100%;
  height:calc(100% / 13);
  background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20540%2020%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23003c6b%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M0%2C0h540l-20%2C20H20L0%2C0h0Z%22%2F%3E%3C%2Fsvg%3E');
  background-size:100% auto;
  background-repeat:no-repeat;
  background-position:center top;
}

#howto .htbx .twbox h3 {
  background:#003c6b;
  padding-bottom:1vw;
}

#howto .htbx .twbox h3 img{
  width:50%;
  margin:0 auto;
}

#howto .htbx .twbox .announ {
  background:#003c6b;
  padding:5vw 0;
}

#howto .htbx .twbox .announ .sp{
  display:none;
}

#howto .htbx .twbox .announ .pc{
  display:block;
}

#howto .htbx .twbox .announ dt{
  color:#f0c80a;
  font-weight:bold;
  font-size:clamp(1rem, 5vw, 3rem);
}

#howto .htbx .twbox .announ dd.sub{
  color:#f0c80a;
  font-weight:bold;
  font-size:clamp(.8rem, 3vw, 2rem);
  padding:.5em 0;
}

#howto .htbx .twbox .announ dd.sub .sp{
  display:none;
}

#howto .htbx .twbox .announ dd.sub a{
  color:#f0c80a;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#howto .htbx .twbox .announ dd.sub a:hover{
  color:#ffffff;
}

#howto .htbx .twbox .announ dd.mn{
  font-size:clamp(.6rem, 2vw, 1.5rem);
  color:#FFFFFF;
}


#howto .htbx .istbox {
  padding:0;
  position:relative;
  background-color:#FFFFFF;
  background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%205.68%20104.51%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23fff%3B%20stroke%3A%20%23da4f42%3B%20stroke-miterlimit%3A%2010%3B%20stroke-width%3A%205.68px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cline%20class%3D%22cls-1%22%20x1%3D%222.84%22%20x2%3D%222.84%22%20y2%3D%22104.51%22%2F%3E%3C%2Fsvg%3E'),url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%205.68%20104.51%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23da4f42%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Crect%20class%3D%22cls-1%22%20y%3D%220%22%20width%3D%225.68%22%20height%3D%22104.51%22%2F%3E%3C%2Fsvg%3E');
  background-size:6.9px auto;
  background-repeat:repeat-y;
  background-position:left top,right top;
  margin:10vw auto;
}

#howto .htbx .istbox::before {
  content: "";
  position: absolute;
  top: calc(100% / 13.1 * -1);
  left: 0;
  right: 0;
  width:100%;
  height:calc(100% / 13);
  background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20540%2020%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23da4f42%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M540%2C20H0L20%2C0h500l20%2C20h0Z%22%2F%3E%3C%2Fsvg%3E');
  background-size:100% auto;
  background-repeat:no-repeat;
  background-position:center bottom;
}

#howto .htbx .istbox::after {
  content: "";
  position: absolute;
  bottom: calc(100% / 20 * -1);
  left: 0;
  right: 0;
  width:100%;
  height:calc(100% / 20);
  background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20545.68%2046.26%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23fff%3B%20stroke%3A%20%23da4f42%3B%20stroke-miterlimit%3A%2010%3B%20stroke-width%3A%205.68px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M542.84%2C0v23.42c-7.78%2C7.78-12.22%2C12.22-20%2C20H22.84c-7.78-7.78-12.22-12.22-20-20V0%22%2F%3E%3C%2Fsvg%3E');
  background-size:100% auto;
  background-repeat:no-repeat;
  background-position:center top;
}


#howto .htbx .istbox h3 {
  background:#da4f42;
  padding-bottom:1vw;
}

#howto .htbx .istbox h3 img{
  width:70%;
  margin:0 auto;
}

#howto .htstep {
  vertical-align: middle;
  padding: 0 0 5% 0;
  width:80%;
  margin:0 auto;
}

#howto .htstep li {
  margin:0 auto;
  width: 100%;
  vertical-align:bottom;
  position: relative;
  padding-top:5vw;
}




#howto .htstep li p {
  font-size: 1.6em;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 2px;
}

#howto br.sp{
  display:none;
}



#howto .htfpc {
  display: block;
}
#howto .htfsp {
  display: none;
}

#howto .htimg {
  vertical-align: middle;
  padding-top: 3%;
  width:80%;
  margin:0 auto;
}

#howto .htbutton {
  vertical-align: middle;
  padding-top: 3%;
  width:90%;
  margin:0 auto;
}

#howto .htbutton.hush {
  padding-top: 0;
}

#howto .htbutton a {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
#howto .htbutton a:hover {
  opacity: .7;
}


#howto .htbx.ist .htbutton li button {
  font-size: 0.7em;
  font-weight: bold;
  background: #ff96d2;
  color: #fff;
  border: 2px solid #ff6ebf;
  padding: 0.3em 1em;
  border-radius: 5px;
  margin-bottom: 10px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
#howto .htbx.ist .htbutton li button:hover {
  background: #6ebeff;
}
#howto .htbttl {
  line-height:1;
}
#howto .htbttl img {
  max-width: 478px;
  margin: 0 auto;
  width: 70%;
  height: auto;
}

#howto .htbx.ist .htbutton #cplnd{
  display:none;
}

#howto .htbx.ist .htbutton #cplndbt{
  width:80%;
  margin:0 auto;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  opacity:1;
  position:relative;
}

#howto .htbx.ist .htbutton #cplndbt .cplndbt_over{
  position:absolute;
  top:0;
  left:0;
  right:0;
}

#howto .htbx.ist .htbutton #cplndbt:hover{
  opacity:.6;
}

#howto .htbx.ist .htbutton #cplndbt img{
  width:100%;
  max-width:591px;
  height:auto;
}

#howto .CopyClickboard {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 80%;
    max-width:500px;
    padding: 2em 1em;
    transform:translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    border: 3px solid #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 1em;
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity .8s;
    -o-transition: opacity .8s;
    -moz-transition: opacity .8s;
    transition: opacity .8s;
    z-index: -1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#howto .CopyClickboard__num {
    margin: 0 10px;
    font-size:80%;
}

#howto .htbutton li a {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity:1;
}

#howto .htbutton li a:hover {
  opacity:.7;
}


#howto .htstep li p.atten {
  font-size: 90%;
  color:#000000;
  font-weight:normal;
}

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


  #howto .htbx .twbox::before {
    top: -79px;
    height:80px;
  }

  #howto .htbx .twbox::after {
    bottom: -79px;
    height:80px;
  }
  #howto .htbx .istbox {
    margin:5em auto;
  }

  #howto .htbx .istbox::before {
    top: -79px;
    height:80px;
  }

  #howto .htbx .istbox::after {
    bottom: -79px;
    height:80px;
  }

}

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

  

}



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

}

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

  #howto .htbx .istbox::after {
    content: "";
    position: absolute;
    bottom: calc(100% / 20 * -1);
    left: 0;
    right: 0;
    width:100%;
    height:calc(100% / 20);
    background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20545.68%2046.26%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23fff%3B%20stroke%3A%20%23da4f42%3B%20stroke-miterlimit%3A%2010%3B%20stroke-width%3A%2014.68px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M542.84%2C0v23.42c-7.78%2C7.78-12.22%2C12.22-20%2C20H22.84c-7.78-7.78-12.22-12.22-20-20V0%22%2F%3E%3C%2Fsvg%3E');
    background-size:100% auto;
    background-repeat:no-repeat;
    background-position:center top;
  }

  #howto .htbx .twbox .announ dd.sub .sp{
    display:block;
  }
 
}

.howtocom{
  text-align:center;
  width:90%;
  margin:0 auto;
  padding:0;
  font-family: 'Kosugi Maru', sans-serif;
}


.howtocom .howcmw{

  padding:1em 2em 2em 2em;
  font-size:1.2em;
  color:#e53675;
  font-weight:500;
  max-width:800px;
  margin:0 auto 200px auto;
}

.howtocom .howcmw h2{
  font-size:120%;
  padding-bottom:0.5em;
}

.howtocom .howcmw .cracount{
  color:#000000;
  border-top:1px solid #605d5c;
  border-bottom:1px solid #605d5c;
  line-height:1;
  padding-top:0.5em;
  text-align:left;
  margin:1em auto 0.5em auto;
}

.howtocom .howcmw .cracount dl{
  padding-bottom:0.3em;
  padding-left:0.5em;
  display:flex;
  align-items: center;
}

.howtocom .howcmw .cracount dl dt img{
  max-width:100%;
  height:auto;
}

.howtocom .howcmw .cracount dl dt,.howtocom .howcmw .cracount dl dd{

}

.howtocom .howcmw .cracount dl dt{
  margin-right:1em;
  min-width:65px;
}

.howtocom .howcmw .cracount dl dd{
  padding: 0 0.3em;
  background: linear-gradient(transparent 50%, #f7ebeb 0%);
  font-family: 'arial', sans-serif;
  font-size:110%;
  letter-spacing:1px;
  margin:0 0.5em;
  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
}

.howtocom .howcmw .cracount dl dd:hover{
  background: #f7ebeb;
}

.howtocom .howcmw .cracount dl dd a{
  color:#000;
}




.howtocom .hcmatten{
  padding:0 0.5em;
  font-size:0.7em;
  color:#605d5c;
  text-align:left;
}


@media only screen and (max-width:830px) {
  .howtocom .howcmw{
    padding:1em 2em 2em 2em;
    font-size:3vw;
    margin:0 auto 20% auto;
  }

  .howtocom .howcmw .cracount dl dt{
    min-width:auto;
    width:40px;
  }
}

@media only screen and (max-width:600px) {
  .howtocom .howcmw{
      padding:1em 0 2em 0;
      font-size:3.5vw;
      margin:0 auto 15% auto;
  }
  .howtocom .howcmw .cracount dl dd{
      font-size:3.3vw;
  }
}

@media only screen and (max-width:450px) {
  .howtocom .howcmw .cracount dl dt{
    width:30px;
  }
}




/*-------------------
products
-------------------*/
#products {
  text-align: center;
  padding:5vw 0;
  position: relative;
  width:90%;
  max-width:1200px;
  margin:0 auto;
}

#products h2{
  width:45%;
  max-width:450px;
  margin:0 auto;
}

#products .cts.sc01{
  background:url(../images/section05/bg02_pc.webp?=2510) no-repeat center top;
  background-size:100% auto;
  display:flex;
  justify-content: center;
  padding:5vw 0 3vw 0;
}

#products .cts.sc02{
  background:url(../images/section05/bg01_pc.webp?=2510) no-repeat center top;
  background-size:100% auto;
  display:flex;
  justify-content: center;
  padding:5vw 0 calc(100% / 2.6) 0;
}

#products .cts .cp{
  width:90%;
  margin:0 auto;
}

#products .cts.sc01 .cp{
  width:95%;
  margin:0 auto;
}

#products h3{
  padding:0 0 5vw 0;
  width:90%;
  max-width:900px;
  margin:0 auto;
}

#products .products{
  width:90%;
  max-width:750px;
  margin:0 auto;
}

#products .products img{
  vertical-align:bottom;
}

#products .products li{
  display:flex;
  position:relative;
  align-items: flex-end;
  padding:2vw 0;

}

#products .products li.prlis .package{
  width:30%;
  
}

#products .products li.prlis .productsin{
  width:67%;
  padding-left:3%;
  padding-bottom:3vw;
  
}



#products .products li.prlis:nth-child(2){
  align-items: bottom;

}

#products .products li.prlis:nth-child(3){
  padding-top:0;
}

#products .products li.prlis:nth-child(4){
  padding-top:0;
}

#products .products li.prlis:nth-child(5){
  padding-top:0;
}

#products .products li.prlis .pick{
  position:absolute;
  top:-12%;
  right:0;
  left:70%;
}

#products .products li.prlis .pick2{
  position:absolute;
  top:0;
  right:0;
  left:74%;
}

#products .products li.prlis .pick4{
  position:absolute;
  top:5%;
  right:0;
  left:70%;
}

#products .products li.prlis .lab{
  position:absolute;
  bottom:65%;
  left:35%;
  right:35%;
}

#products .products li.prlis .lab2{
  position:absolute;
  bottom:50%;
  left:35%;
  right:35%;
}

#products .products li.prlis .lab3{
  position:absolute;
  bottom:67%;
  left:35%;
  right:33%;
}

#products .products li.prlis .lab4{
  position:absolute;
  bottom:61%;
  left:35%;
  right:33%;
}

#products .products li.prlis .pr-bt a{
    width:60%;
    height:50px;
    margin:0 auto;
    display:flex;
    justify-content: center;
    align-items: center;
    background: #baa249;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    cursor:pointer;
    line-height:1;
}

#products .products li.prlis .pr-bt a:hover{
    background: #000000;
}

#products .products li.prlis .pr-bt a > img{
    width:50%;
    height:auto;
}


#products .prbutton {
  margin: 0 auto;
  width:100%;
  max-width:800px;
  position: relative;
  z-index: 10;
  padding:1vw 0;
}
#products .prbutton .prproducs {
}
#products .prbutton .prproducs .btg {
  display:flex;
  justify-content: center;
}

#products .prbutton .prproducs .btg > div{
  padding:0 1%;
}

#products .prbutton .prproducs .btg .js-img-switch {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
#products .prbutton .prproducs .btg .js-img-switch:hover {
  opacity: .7;
}


#products .pr_eshop .js-dropdown {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  cursor: pointer;
  pointer-events: auto;
  color: #fff;
}

#products .pr_eshop .js-dropdown .pr_eshop_hv:before {
  content:'';
  display:block;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #00933e;
  border-left: 20px solid transparent;
  width:20px;
  margin:0 auto;
  position:absolute;
  top:-20px;
  left:0;
  right:0;
  z-index:105;

}
#products .pr_eshop .js-dropdown .pr_eshop_hv {
  line-height: 1;
  position: absolute;
  z-index: 100;
  top: 20px;
  left: 0;
  display: none;
  width: 100%;
  padding: 15px;
  background: #00933e;
  border-radius:20px;
}
#products .pr_eshop .js-dropdown .pr_eshop_hv li.pdn {
  margin-bottom: 10px;
  position: relative;
}

#products .pr_eshop .js-dropdown .pr_eshop_hv li.pdn:last-child {
  margin-bottom: 0;
}
#products .pr_eshop .js-dropdown .pr_eshop_hv li.pdn a {
  display: block;
  background: #FFFFFF;
  padding: 0.5em;
  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
  opacity: .9;
}
#products .pr_eshop .js-dropdown .pr_eshop_hv li.pdn::after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-weight: bold;
  color: #000;
  position: absolute;
  top: 35%;
  right: 10px;
  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
}
#products .pr_eshop .js-dropdown .pr_eshop_hv li.pdn a:hover {
  opacity: 1;
}
#products .pr_eshop .js-dropdown .pr_eshop_hv li.pdn:hover::after {
  right: 5px;
}


#products .attenwp{
  width:90%;
  max-width:900px;
  text-align:left;
  margin:0 auto;
  padding:0;
  display:flex;
  flex-wrap: wrap;
}

#products .attenwp .atten{
  text-align:left;
  font-size:clamp(.5rem, 1.2vw, 1rem);
  padding:0;
  margin:0;
  display:block;
}



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

  #products {
    padding:3em 0;
  }
  #products h3{
    padding:2em 0 3em 0;
  }

  #products .products li .pick{
    top:-3em;
    right:0;
  }

  #products .products li:nth-child(3){
    padding-top:0;
  }

  #products .products li:nth-child(4){
    padding-top:10em;
  }

  #products .products li .lab3{
    position:absolute;
    bottom:21em;
  }

  #products .products li .lab4{
    position:absolute;
    bottom:16.5em;
  }
}

@media only screen and (max-width:640px) {
  #products .cts.sc01{
    background:url(../images/section05/bg02_sp.webp) no-repeat center top;
    background-size:100% auto;
  }

  #products .cts.sc02{
    background:url(../images/section05/bg01_sp.webp) no-repeat center top;
    background-size:100% auto;
  }

  #products .products li.prlis .pr-bt a{
    width:70%;
    height:30px;
  }





  #products ul.attenwp li.prlis.atten{
    display:inline;
    text-indent:0;
    padding-left:0;
  }

  #products .pr_eshop .js-dropdown .pr_eshop_hv {
    top: 35px;
    padding: 2vw;
    border-radius:10px;
  }

}

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

  #products .products li.prlis .pick{
    position:absolute;
    top:-5%;
  }
  #products .products li.prlis .pr-bt a{
    width:100%;
  }

  #products .products li.prlis .pr-bt a > img{
    width:60%;
    height:auto;
  }
  #products .pr_eshop .js-dropdown .pr_eshop_hv li.pdn a {
    padding-right: 5vw;
  }


}






/*kiyaku
--------------*/
#kiyaku {
  text-align: center;
  padding: 0 0 2em 0;
  position: relative;
  background:#d3e496;
}
#kiyaku h2 {
  background: #00933e;
  color: #FFFFFF;
  font-size: 1.6em;
  padding: 0.3em 0;
  font-family: 'Kosugi Maru', sans-serif;
  letter-spacing: 10px;
  font-weight: normal;
}
#kiyaku .kiyaku_wp {
  width: 90%;
  max-width: 950px;
  margin: 20px auto;
  text-align: left;
  padding: 0.5em 1.5em;
  overflow: auto;
  height: 40em;
  box-sizing: border-box;
  font-size: 0.8em;
  background:#FFFFFF;
}
#kiyaku .kiyaku_wp dt.ky_tl {
  font-size: 110%;
  font-weight: bold;
  padding-top: 1em;
}
#kiyaku .kiyaku_wp dd.ky_mn {
  border-top: 2px solid #000;
  padding: 0.5em 0;
}
#kiyaku .kiyaku_wp dd.ky_mn dl.ky_eac {}
#kiyaku .kiyaku_wp dd.ky_mn dl.ky_eac dt {
  font-weight: bold;
}
#kiyaku .kiyaku_wp dd.ky_mn dl.ky_eac dd {
  padding-bottom: 1em;
}
#kiyaku .kiyaku_wp dd.ky_mn dl.ky_eac dd:last-child {
  padding-bottom: 0;
}
#kiyaku .kiyaku_wp dd.ky_mn dl.ky_eac dd .tx_nl {
  margin: 0.5em 0;
}
#kiyaku .kiyaku_wp dd.ky_mn dl.ky_eac dd .tx_nl.tl {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0 1em;
}
#kiyaku .kiyaku_wp dd.ky_mn dl.ky_eac dd .tx_sl {
  padding-left: 1em;
  font-size: 90%;
  line-height: 1.4;
}
#kiyaku .kiyaku_wp ul {}
#kiyaku .kiyaku_wp ul li, #kiyaku .kiyaku_wp ol li {
  text-indent: -1em;
  padding-left: 1em;
}
#kiyaku .kiyaku_wp dd .ky_atten {
  font-size: 90%;
}
#kiyaku .kiyaku_wp a {
  color: #1272e9;
  text-decoration: underline;
}
#kiyaku .kiyaku_wp dd p {
  text-align: left;
}
@media only screen and (max-width:768px) {
  #kiyaku {
    font-size: 80%;
  }
}
@media only screen and (max-width:480px) {
  #kiyaku h2 {
    font-size: 5vw;
  }
  #kiyaku .kiyaku_wp {
    font-size: 0.8em;
  }
}
/*-----------------
footer
-----------------*/
.copyright {
  font-size: 0.9rem;
  letter-spacing: 0;
}
footer {
  padding:0 0 1em 0;
  text-align: center;
  position: relative;
  background:#FFFFFF;
}
footer .footer_wp {
  background: #00933e;
  padding: 1em;
  font-size: 0.8em;
  color: #FFFFFF;
  letter-spacing: 1px;
  margin-bottom: 1em;
}
footer .footer_wp dt {
  font-size: 110%;
  font-weight: bold;
}
footer .footer_wp dd.ftml a {
  font-size:clamp(1rem, 4vw, 2rem);
  font-weight:600;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  letter-spacing:0;
}
footer .footer_wp dd.ftml a:hover {
  opacity: .7;
}
footer .footer_wp dd.ftml img {
  max-width: 100%;
  margin: 0 auto;
  height: auto;
}
footer .footer_wp dd.ftatten {
  font-size: 90%;
  line-height: 1.3;
}
footer .footer_wp dd.ftatten2 {
  width: 90%;
  margin: 0 auto;
  max-width: 650px;
  font-size: 80%;
  line-height: 1.3;
  text-indent: -1em;
  padding-left: 1em;
  padding-top: 0.5em;
}
/* back to top */
#go-top {
  position: fixed;
  bottom: 10%;
  right: 10%;
  z-index: 10;
  width: 100%;
  text-align: center;
  display: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#go-top .totop {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  padding: 0;
}

#go-top .totop img{
  max-width:100%;
  height:auto;
}
#go-top .totop a {
  display: block;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#go-top .totop a:hover {
  opacity: 0.5;
}
@media only screen and (max-width:1380px) {
  #go-top {
    right: 1%;
    bottom: 13%;
  }
}
@media only screen and (max-width:768px) {
  footer {
    font-size: 80%;
    padding:0 0 5vw 0;
  }
  .copyright {
    font-size: 1.8vw;
    padding: 0 0.5em;
  }
  footer .footer_wp dd.ftatten2 {
    text-align: left;
  }
  #go-top {
    right: 1%;
    bottom: 10%;
  }

  #go-top .totop {
    width: 40px;

  }
}
@media only screen and (max-width:480px) {
  footer .footer_wp {
    font-size: 3.2vw;
    letter-spacing: 0;
  }

  #go-top .totop {
    width: 40px;
  }

  #go-top {
    right: 1%;
    bottom: 20vw;
  }


}
/*------------
animetion
------------*/
.fadein {
  opacity: 0;
  transform: translate(0, 30px);
  -webkit-transform: translate(0, 30px);
  -moz-transform: translate(0, 30px);
  transition: all 1000ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
}

.fadeinp {
  opacity: 0;
  transform: scale(1.1);
  -webkit-transform: scale(1.21);
  -moz-transform: scale(1.1);
  transition: all 1000ms;
}
.fadeinp.scrollin {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
}

.brc {
  display: block;
}
@media only screen and (max-width:750px) {
  .brc {
    display: none;
  }
}