@charset "UTF-8";

html {
  user-select: none; /* CSS3 */
  -moz-user-select: none; /* Firefox */
  -webkit-user-select: none; /* Safari、Chromeなど */
  font-size: 100%;
}

ul li{
  text-decoration: none;
  display: block;
}

li{
  list-style: none;
}

a{
  display: block;  
  text-decoration: none;
  color: #333333;
  transition: .3s;
}

a:hover{
  cursor: pointer;
  opacity: .7;
  transition: .3s;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}
@font-face {
  font-family: "myfont";
  src: url("../font/NotoSansCJKjp-Medium.otf");
}
body{
  font-family: "myfont",sans-serif;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: none;
}
h1,h2,h3,h4,h5,h6,p,ul,li{
    margin: 0;
    padding: 0;
}

*,*::before,*::after{
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
/* 共通 */
.bg-gray{
  background-color: #F6F6F6;
}
.br{
  display: none;
}

/* header link */
.top-header-link{
  display: flex;
  justify-content: space-around;
  background-color: #96D4E2;
}
.top-header-link a{
  position: relative;
  width: 32.9%;
  height: 56px;
  background-color: #31ACCB;
  display: flex;
  align-items: center;
  justify-content: center;

}
.header-link{
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-link-img1{
  width: 35px;
}
.header-link-img2{
  width: 50px;
}
.header-link-img3{
  width: 45px;
}
.header-kinktext{
  color: #fff;
  font-size: 16px;
  padding: 0 10px;
}
.header-link-arrow1{
  width: 15px;
  position: absolute;
  right: 20px;

}
.header-link-arrow2{
  width: 15px;
  margin-left: 50px;
  position: absolute;
  right: 20px;
}
.header-link-arrow3{
  width: 15px;
  margin-left: 50px;
  position: absolute;
  right: 20px;
}
@media (max-width: 600px){
  .header-kinktext{
    font-size: 10px;
    padding: 0;
    padding-left: 3px;
  }
  .header-link{
    margin-left: -10px;
  }
  .header-link-img1{
    width: 15px;
  }
  .header-link-img2{
    width: 25px;
  }
  .header-link-img3{
    width: 20px;
  }
}
@media (max-width: 500px){
  .top-header-link a{
    padding-left: 5px;
    height: 40px;
  }
  
  .header-link-arrow1,.header-link-arrow2,.header-link-arrow3{
    display: none;
  }
  
}
/* header link終わり */


/* header */
.header{
  background-image: url("../img/header_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center ;
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
  /* margin-bottom:10px; */
}
.header-title{
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 200px;
  font-size: 60px;
  line-height:1.15;
}
.header-text{
  max-width: 1000px;
  margin: 0 auto;
  font-size: 16px;
  padding-top: 30px;
  line-height: 27px;
  padding-bottom: 30px;
  position: relative;
}
.header img{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 550px;
  overflow: hidden;
}

@media (max-width: 1000px){
  
  .header img{
    width: 450px;
    bottom: 80px;
  }
}
@media (max-width: 769px){
  .header{
    height: 500px;
  }
  .header img{
    bottom: 0;
  }
  .header-title{
    width: 90%;
    padding-top: 100px;
  }
  .header-text{
    max-width: 350px;
    margin-left: 7%;
  }
  .header img{
    width: 300px;
  }
}
@media (max-width: 500px){
  .header{
    height: 330px;
    margin-bottom:0;
  }
  .header-title{
    padding-top: 30px;
    font-size: 36px;
  }
  .header-text{
    padding-top: 10px;
    margin-left: 10px;
    width: 60%;
    text-align: justify;
    line-height: 20px;
  }
  .small-br{
    display: none;
  }
  .header img{
    width: 150px;
  }
}
/* header 終わり*/

/* 20211006 原 junm-link */
.jump-link{
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
.jump-link ul{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.jump-link ul li{
  width: 30%;
  text-align: center;
  font-weight: bold;
  
}
.jump-link ul li a {
  border-radius: 40px;
  display: block;
  position: relative;
  padding: 0.5em 1.4em;
  text-decoration: none;
  background: #fff;/*ボタン色*/
  color: #333;
  border:2px solid #333;
  border-bottom: solid 5px #333;/*ボタン色より暗めに*/
  border-right: solid 4px #333;/*ボタン色より暗めに*/
}

.btn-square-slant:before {  
  content: " ";
  position: absolute;
  bottom: -5px;
  left: -1px;
  width: 0;
  height: 0;
  border-width: 0 6px 6px 0px;
  border-style: solid;
  border-color: transparent;
  border-bottom-color: #FFF;
}

.btn-square-slant:after {  
  content: " ";
  position: absolute;
  top: -1px;
  right: -5px;
  width: 0;
  height: 0;
  border-width: 0px 6px 6px 0px;
  border-style: solid;
  border-color: #FFF;
  border-bottom-color: transparent;
}

.btn-square-slant:active {
  /*ボタンを押したとき*/
  border:none;
  -webkit-transform: translate(6px,6px);
  transform: translate(6px,6px);
}

.btn-square-slant:active:after, .btn-square-slant:active:before {
  content: none;/*ボタンを押すと線が消える*/
}
@media (max-width: 768px){
  .jump-link{
    width: 95%;
  }
}
@media (max-width: 500px){
  .jump-link ul li{
    width: 32%;
  }
  .jump-link ul li a{
    font-size: 15px;
    padding-right: 0.5em;
    padding-left: 0.5em;
  }
}
/* 20211006 原 /junm-link */
/* merit */
.merit{
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
}
.main-title{
  text-align: center;
}
.main-title p{
  font-size: 33px;
  letter-spacing: 1.9px;
  /* margin-top: 40px; */
  margin-bottom: 10px;
  font-weight: bold;
}
.merit-section{
  background-color: #F6F6F6;
  padding: 10px;
  border-radius: 20px;
  padding-left: 50px;
  margin-top: 50px;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.merit-for-example1 .merit-section{
  position: relative;
}
.merit-for-example1 .merit-section .merit-img{
  position: absolute;
  top: -20px;
  right: 50px;
  z-index: 0;
  width: 200px;
}
.merit-for-example1 .merit-section .item-title{
  font-size: 40px;
  letter-spacing: 1.7px;
}
.merit-for-example1 .merit-section .item{
  position: relative;
  display: flex;
  z-index: 1;
  justify-content: space-between;
}
.merit-for-example1 .merit-section .item .merit-text{
  font-size: 15px;
  letter-spacing: 2px;
  margin-top: 10px;
  line-height: 1.5;
  font-weight: bold;
}
.merit-for-example1 .merit-section .item .merit-text span{
  font-size: 13px;
}
.merit-for-example1 .merit-section .item .merit-cost{
  display: flex;
  justify-content: space-between;
}
.merit-for-example1 .merit-section .item .merit-cost .merit-cost-item .merit-cost-text1{
  text-align: center;
  background-color: rgb(0, 0, 0);
  width: 120px;
  padding: 5px 7px;
  line-height: 20px;
  font-weight: bold;
  border-radius: 10px;
  margin: 0 auto;
}
.merit-for-example1 .merit-section .item .merit-cost .merit-cost-item .merit-cost-text1 p{
color: #fff;
font-size: 14px;
}
.merit-for-example1 .merit-section .item .merit-cost .merit-cost-item .merit-cost-text1 p span{
  font-size: 12px;
}
.merit-for-example1 .merit-section .item .merit-cost .merit-cost-item .exam{
  font-size: 10px;
  margin-top: 3px;
  filter: drop-shadow(0px 0px 1px #fff) drop-shadow(0px 0px 1px #fff);
}
.merit-for-example1 .merit-section .item .merit-cost .merit-cost-item .merit-cost-text2{
  text-align: center;
  background-color: #72C7D8;
  width: 120px;
  padding: 5px 10px;
  line-height: 20px;
  font-weight: bold;
  border-radius: 10px;
}
.merit-for-example1 .merit-section .item .merit-cost .merit-cost-item .merit-cost-text2 p{
  color: #fff;
  font-size: 14px;
  }
  .merit-for-example1 .merit-section .item .merit-cost .merit-cost-item .merit-cost-text2 p span{
    font-size: 12px;
  }
  .merit-for-example1 .merit-section .item .merit-cost .merit-cost-item{
    position: relative;
  }
  .costdown{
    position: absolute;
    text-align: center;
    top: -15px;
    right: -10px;
    font-size: 10px;
    color: #308C9E;
    font-weight: bold;
    transform: rotate(15deg);
    letter-spacing: 1px;
    filter: drop-shadow(0px 0px 1px #fff) drop-shadow(0px 0px 1px #fff);
  }

  .cation1{
    max-width: 800px;
    font-size: 10px;
    text-align: right;
    margin: 0 auto;
    margin-top: 10px;
  }
  .cation2{
    max-width: 800px;
    font-size: 10px;
    text-align: right;
    margin: 0 auto;
    margin-top: 10px;
    margin-left: 50px;
  }
  .cation3{
    max-width: 800px;
    font-size: 10px;
    text-align: right;
    margin: 0 auto;
    margin-top: 10px;
    margin-right: 50px;
  }
  .number-m{
    font-size: 122px;
    position: absolute;
    top: -90px;
    left: -80px;
    color: #AFAFAF;
  }
  .merit-for-example2 .merit-section{
    position: relative;
    margin-left: 50px;
  }
  .merit-for-example2 .merit-section .merit-img{
    position: absolute;
    top: -5px;
    right: 5px;
    z-index: 0;
    width: 300px;
  }
  .merit-for-example2 .merit-section .item-title{
    font-size: 40px;
    letter-spacing: 1.7px;
  }
  .merit-for-example2 .merit-section .item{
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  .merit-for-example2 .merit-section .item .merit-text{
    font-size: 15px;
    letter-spacing: 2px;
    margin-top: 10px;
    line-height: 1.5;
    font-weight: bold;
  }
  .merit-for-example2 .merit-section .item .merit-text span{
    font-size: 13px;
  }
  .merit-for-example2 .merit-section .item .merit-cost{
    display: flex;
    justify-content: space-between;
  }
  .merit-for-example3 .merit-section{
    position: relative;
    margin-right: 50px;
    /* overflow: hidden; */
  }
  .merit-for-example3 .merit-section .merit-img{
    position: absolute;
    top: -37px;
    right: 10px;
    z-index: 0;
    width: 210px;
  }
  .merit-for-example3 .merit-section .item-title{
    font-size: 40px;
    letter-spacing: 1.7px;
  }
  .merit-for-example3 .merit-section .item{
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  .merit-for-example3 .merit-section .item .merit-text{
    font-size: 15px;
    letter-spacing: 2px;
    margin-top: 10px;
    line-height: 1.5;
    font-weight: bold;
  }
  .merit-for-example3 .merit-section .item .merit-text span{
    font-size: 13px;
  }
  .merit-for-example3 .merit-section .item .merit-cost{
    display: flex;
    justify-content: space-between;
  }
  @media (max-width: 900px){
    .merit-for-example1 .merit-section{
      margin-left: 50px;
    }
    .merit-for-example3 .merit-section{
      margin-right: 0;
      margin-left: 50px;
    }
  }
  @media (max-width: 769px){
    .merit-section{
      padding-left: 10px;
    }
    .merit-for-example1 .merit-section .item{
      display: block;
    }
    .merit-for-example1 .merit-section .item-title{
      position: relative;
      text-align: center;
      padding-top: 30px;
    }
    .merit-for-example1 .merit-section,.merit-for-example2 .merit-section,.merit-for-example3 .merit-section{
      width: 95%;
      margin: 0 auto;
      margin-top: 80px;
    }
    .merit-for-example1 .merit-section .item .merit-text,.merit-for-example2 .merit-section .item .merit-text,.merit-for-example3 .merit-section .item .merit-text{
      text-align: center;
      font-weight: normal;
    }
    .merit-for-example1 .merit-section .item .merit-cost{
      max-width: 375px;
      margin: 170px auto 10px auto;
    }
    .merit-for-example1 .merit-section .item .merit-cost .merit-cost-item .merit-cost-text1{
      width: 100%;
    }
    .merit-for-example1 .merit-section .item .merit-cost .merit-cost-item .merit-cost-text2{
      width: 100%;
    }
    .merit-for-example1 .merit-section .item .merit-cost .merit-cost-item{
      width: 45%;
    }
    .merit-for-example1 .merit-section .merit-img{
      width: 250px;
      top: 180px;
      left: 30%;
    }
    .cation1,.cation2,.cation3{
      width: 95%;
      margin: 0 auto;
      text-align: left;
    }
    .merit-for-example2 .merit-section .item-title{
      position: relative;
      z-index: 10;
      text-align: center;
      padding-top: 30px;
    }
    .merit-for-example2 .merit-section .item{
      justify-content: center;
      font-weight: normal;
      margin-bottom: 270px;
    }
    .merit-for-example2 .merit-section .merit-img{
      top: 250px;
      left: 20%;
      width: 350px;
    }
    .merit-for-example3 .merit-section .item-title{
      position: relative;
      z-index: 10;
      text-align: center;
      padding-top: 30px;
    }
    .merit-for-example3 .merit-section .item{
      justify-content: center;
      margin-bottom: 280px;
    }
    .merit-for-example3 .merit-section .merit-img{
      top: 185px;
      left: 30%;
      width: 300px;
    }

    .number-m{
      top: -180px;
      left: 0;
      right: 0;
    }
  }
  @media (max-width: 500px){
    .merit-for-example1 .merit-section{
      margin-top: 50px;
    }
    .main-title p{
      font-size: 23px;
    }
    .merit-for-example1 .merit-section .item-title,.merit-for-example2 .merit-section .item-title,.merit-for-example3 .merit-section .item-title{
      padding-top: 20px;
      font-size: 27px;
      position: relative;
      z-index: 10;
  }
  .merit-for-example1 .merit-section .merit-img{
    width: 230px;
    top: 175px;
    left: 50px;
  }
  .merit-for-example2 .merit-section .item,.merit-for-example3 .merit-section .item{
    margin-bottom: 220px;
  }
  .merit-for-example2 .merit-section .merit-img{
    top: 180px;
    width: 320px;
    left: 20px;
  }
  .merit-for-example3 .merit-section .merit-img{
width: 230px;
top: 150px;
left: 70px;
  }

  .number-m{
    font-size: 100px;
    top: -150px;
    z-index: 0;
  }
}
/* merit終わり */

/* special-cost-down */
.special-cost-down{
  margin-top: 100px;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 50px;
}
.special-cost-down h2{
  text-align: center;
  font-size: 42px;
  color: #72C7D8;
}
.special-down-section{
display: flex;
justify-content: space-between;
margin-top: 20px;

}
.special-down1,.special-down2,.special-down3{
  width: 33.3%;
  text-align: center;
}
.special-down1{
  margin-top: 90px;
}
.special-down3{
  margin-top: 130px;
}
.balloon1 {
  position: relative;
  display: block;
  margin: 1.5em 0;
  padding: 15px 13px;
  width: 230px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #72C7D8;

}

.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #72C7D8;
}
.balloon1 p{
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.balloon1 span{
  position: absolute;
  color: #fff;
  font-size: 10px;
  top: 13px;
  left: 150px;
}
.balloon1 .special-more{
  position: absolute;
  font-size: 15px;
  top: -10px;
  left: -30px;
  color: #308C9E;
  transform: rotate(-15deg);
  /* filter: drop-shadow(0px 0px 1px #fff) drop-shadow(0px 0px 1px #fff); */
  text-shadow:2px 2px 0 #FFF, -2px -2px 0 #FFF,
              -2px 2px 0 #FFF, 2px -2px 0 #FFF,
              0px 2px 0 #FFF,  0 -2px 0 #FFF,
              -2px 0 0 #FFF, 2px 0 0 #FFF;

}
.human{
  position: relative;
}
.human img{
  width: 110px;
}
.human .total-img{
  display: flex;
  flex-direction: column;
}
.human .total-img1 span{
  position: absolute;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  color: #72C7D8;
  letter-spacing: 1.7px;
  left: 200px;
  top: 250px;
}
.human .total-img1 img{
  position: absolute;
  left: 210px;
  top: 310px;
width: 90px;
}
.human .total-img2 img{
  position: absolute;
  left: 220px;
  top: 250px;
width: 90px;
}
.human .total-img3 img{
  position: absolute;
  left: 210px;
  top: 240px;
width: 80px;
}
.human-title{
  font-size: 30px;
  font-weight: bold;
  margin: 20px 0;
}
.about-cost{
  background-color: #000;
  margin-left: auto;
  margin-right: auto;
  border-radius: 40px;
  margin-bottom: 10px;
}
.about-cost-text{
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  letter-spacing: 1.9px;
}
.human-cation{
  font-size: 10px;
  text-align: left;
  padding-top: 5px;
  padding-left: 29px;
}
.human-cation2{
  display: none;
}
@media (max-width: 769px){
.br{
  display: block;
}
.special-down-section{
  justify-content: center;
}
.human img{
  width: 60px;
}
.special-down1, .special-down2, .special-down3{
  width: 28%;
}
.special-down2{
  margin-left: 20px;
  margin-right: 20px;
}
.human-title{
  font-size: 20px;
}
.balloon1{
  width: 160px;
  padding-right: 0;
  padding-left: 0;
}
.balloon1 span{
  left: 120px;
  top: 17px;
}
.balloon1 p{
  font-size: 15px;
}
.about-cost-text{
  font-size: 15px;
}
.human-cation{
  padding-left: 0;
}
.human .total-img1 span{
  left: 125px;
  font-size: 13px;
  top: 100px;
}
.human .total-img1 img{
  width: 50px;
  left: 130px;
  top: 130px;
}
.human .total-img2 img{
  width: 50px;
  left: 135px;
  top: 130px;
}
.human .total-img3 img{
  width: 45px;
  left: 125px;
  top: 120px;
}
}
@media (max-width: 500px){
  .special-cost-down{
    margin-top: 50px;
    margin-bottom: 100px;
  }
  .special-cost-down h2{
    font-size: 35px;
  }
  .balloon1{
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100px;
  }
  .balloon1:before {
    margin-left: -6px;
    border: 6px solid transparent;
    border-top: 10px solid #72C7D8;
  }
  .balloon1 p{
    font-size: 10px;
  }
  .balloon1 .special-more{
    font-size: 10px;
    left: -10px;
    top: -13px;
  }
  .human-title{
    font-size: 15px;
    margin-bottom: 5px;
  }

  .about-cost-text{
    font-size: 13px;
    letter-spacing: 0;
  }
  .human .total-img1 span{
    left: 50px;
    font-size: 10px;
  }
  .human .total-img1 img{
    width: 30px;
    left: 70px;
    top: 135px;
  }
  .human .total-img2 img{
    width: 30px;
    left: 80px;
  }
  .human .total-img3 img{
    width: 30px;
    left: 70px;
    top: 140px;
  }
  .human-cation{
    display: none;
  }
  .human-cation2{
    display: block;
    font-size: 10px;
    text-align: left;
    width: 97%;
    margin: 0 auto;
  }
}

/* special-cost-down終わり */

/* 20211006原 howto-post */
.howto-post{
  position: relative;
  max-width: 731px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 88px;
}
.howto-post-flow{
  background-image: url("../img/howto-post.svg");
  background-repeat: no-repeat;
  height: 165px;
  background-position: center;
  margin-left: 50px;
}
.howto-post-title{
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
  position: absolute;
  top: 33px;
  left: 100px;
}
.howto-post-free{
  position: absolute;
  font-size: 19px;
  font-weight: bold;
  background-color: #EA8000;
  width: 115px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transform: rotate(-15deg);
  top: 5px;
  letter-spacing: 0.1em;
}

.howto-post-link{
  margin-top: -35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.howto-post-link a{
  transition: .3s;
  opacity: 1;
  /* background-color: #56cbe2a6; */
}
.howto-post-link a .oneself:hover{
  background-color: #76bd9af8;
  transition: .3s;
}
.howto-post-link .request:hover{
  opacity: 1;
  background-color: #5ec8dd;
  transition: .3s;
}
.howto-post-link a .oneself{
  transition: .3s;
  border-radius: 20.5px;
  width: 350px;
  height: 85px;
  max-width: 350px;
  background-color: #5DB388;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px outset #66c0939d;
}
.howto-post-link .oneself p{
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-shadow: 1px #666;
}
.howto-post-link .request{
  border-radius: 20.5px;
  width: 350px;
  height: 85px;
  max-width: 350px;
  background-color: #4BB3C8;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px outset #56cbe2a6;
  transition: .3s;
}
.howto-post-link .request p{
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-shadow: 1px #666;
}
.howto-post img{
  display: none;
}
@media (max-width: 768px){
  .howto-post{
    max-width: 500px;
  }
  .howto-post img{
    display: block;
    position: absolute;
    width: 100px;
    z-index: 0;
    right: 0px;
    top: -100px;
  }
  .howto-post-flow{
    position: relative;
    margin-left: 0;
    height: auto;
    background: none;
    text-align: center;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
    z-index: 10px;
  }
  .howto-post-title{
    position: initial;
    text-align: center;
    border: 2px solid #000;
    padding: 20px 10px;
    background-color: #fff;
  }
  .howto-post-free{
    top: -10px;
    left: -25px;
  }
  .howto-post-link{
    display: block;
    margin-top: 30px;
  }
  
  .howto-post-link a .oneself{
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
    max-width: 350px;
  }
  .howto-post-link a .request{
    margin-right: auto;
    margin-left: auto;
    max-width: 350px;
  }
}
@media (max-width: 500px){
  .howto-post-free{
    left: 5px;
    font-size: 15px;
    width: 100px;
  }
  .howto-post-title{
    width: 95%;
    margin-right: auto;
    margin-left: auto;
    font-size: 18px;
    padding: 15px 0;
  }
  .howto-post img{
    top: -90px;
    right: 10px;
  }
  /* .howto-post-link a .oneself{
    font-size: 17px;
  } */
}
/* 20211006原 /howto-post */

/* whats-inuki */
.whats-inuki{
  padding-top: 50px;
  padding-bottom: 50px;
  
}
.howto-section{
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.howto-item{
  position: relative;
  width: 47%;
}
.noumal-item .noumal-title{
width: 70%;
margin: 0 auto;
background-color: #000;
border-radius: 40px;
padding: 10px 0;
}
.noumal-item .noumal-title p{
  font-size: 25px;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
}
.step-howto-info{
  margin-left: 120px;
}
.step-howto .step{
  border: 2px solid #000;
  width: 100px;
}
.step-howto .step{
  text-align: center;
  /* padding: 8px 0; */
  font-weight: bold;
  letter-spacing: 1.4px;
  margin-top: 17px;
  width: 76px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.step-howto .step-text{
  font-size: 20px;
  padding-top: 10px;
}
.howto-item img{
  position: absolute;
  top: 48px;
  left: 130px;
  height: 290px;
}



.inuki-item .inuki-title{
  width: 70%;
  margin: 0 auto;
  background-color: #72C7D8;
  border-radius: 40px;
  padding: 10px 0;
  }
  .inuki-item .inuki-title p{
    font-size: 25px;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
  }
  .step-howto-info{
    margin-left: 170px;
  }
  .step{
    border: 2px solid #72C7D8;
    width: 100px;
  }
  .step-howto2 .step{
    text-align: center;
    /* padding: 8px 0; */
    font-weight: bold;
    letter-spacing: 1.4px;
    margin-top: 17px;
    background-color: #72C7D8;
    width: 76px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  }
  .step-howto2 .step p{
    color: #fff;
  }
  .step-howto2 .step-text{
    font-size: 20px;
    padding-top: 10px;
    color: #308C9E;
  }
  .howto-item .arrow-blue img{
    position: absolute;
    top: 45px;
    left: 130px;
    height: 190px;
  }
  .howto-item .finish img{
    position: absolute;
    top: 38px;
    left: 65%;
    /* right: 0; */
    width: 180px;
    height: 260px;
  }
  /* .howto-item .finish img{
    width: 180px;
    height: 260px;
  } */
  @media (max-width: 769px){
    .noumal-item .noumal-title{
      padding: 7px 0;
      width: 96%;
    }
    .howto-item img{
      top: 40px;
      left: 50px;
    }
    .step-howto-info{
      margin-left: 90px;
    }
    .inuki-item .inuki-title{
      padding: 7px 0;
      width: 96%;
    }
    .howto-item .arrow-blue img{
      top: 40px;
      left: 50px;
    }
    .howto-item .finish img{
      width: 100px;
      height: 150px;
    }
  }
@media (max-width: 500px){
  .noumal-item .noumal-title p,.inuki-item .inuki-title p{
    font-size: 17px;
  }
  .howto-item img{
    top: 16px;
    left: 20px;
    height: 190px;
  }
  .howto-item .arrow-blue img{
    left: 16px;
    top: 33px;
    height: 110px;
    z-index: 0;
  }
  .step-howto-info{
    margin-left: 40px;
  }
  .step-howto .step,.step-howto2 .step{
    width: 60px;
    /* padding: 5px 0px; */
    height: 20px;
    margin-top: 10px;
  }
  .step-howto .step p,.step-howto2 .step p{
    font-size: 10px;
  }
  .step-howto .step-text,.step-howto2 .step-text{
    font-size: 11px;
    padding-top: 6px;
  }
  .howto-item .finish img{
    width: 45px;
    height: 70px;
  }
}
/* whats-inuki終わり */

/* howto-matcing */
.howto-matcing{
  padding-top: 50px;
}
.sub-title{
  background-color: #000;
  width: 23%;
  margin: 40px auto;
  border-radius: 40px;
}
.sub-title p{
  color: #fff;
  font-size: 22px;
  text-align: center;
  padding: 10px 0;
  letter-spacing: 1.7px;
  height: 45px;
}
/* 20211006 原 entry */
.entry{
  max-width: 550px;
  margin: 20px auto 40px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.entry p{
  color: #776A3F;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: center;
}
.entry img{
  margin-top: 20px;
}
@media (max-width: 500px){
  .entry p{
    width: 50%;
  }
  .entry img{
    width: 50%;
  }
}
/* 20211006 原 /entry */



.registration{
  /* max-width: 1000px; */
  max-width: 612px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.registration-item{
  /* width: 47%; */
  width: 275px;
  /* margin: 0 auto; */
  
}
.reg-item {
  /* width: 80%; */
  position: relative;
  display: inline-block;
  padding: 7px 10px;
  padding-top: 15px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #72C7D8;
  text-align: center;
  line-height: 25px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.reg-item:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #72C7D8;
}
.reg-item .reg-text{
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 5px;
}
.reg-item .reg-text span{
  font-size: 15px;
  letter-spacing: 1.7px;
}
.total{
  position: relative;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.total .total-img{
  margin-right: 10px;
}
.total .total-img img{
  width: 90px;
}
.total .total-number{
  font-size: 330%;
  font-weight: bold;
  display: flex;
  align-items: flex-end;
  letter-spacing: 1.7px;
}
.total .total-up{
  position: relative;
}
.total .total-up .total-number span{
  font-size: 30px;
  display: flex;
  padding-bottom: 5px;
  padding-left: 5px;
}
.total .total-up img{
  position: absolute;
  width: 25px;
  height: 25px;
  top: -8px;
  right: 0;
}
.matcing-flow{
  /* max-width: 1000px; */
  max-width: 724.86px;
  margin: 0 auto;
  position:relative;
  z-index: 1;
}
.matcing-flow-item{
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 70px;
  margin-bottom: 50px;
}
.matcing-flow-item1 .macing-img img{
  margin-top: -30px;
  width: 277px;
}
.macing-flow-text{
  position: relative;
  /* width: 50%; */
  max-width: 403px;
  z-index: 9999;
}
.macing-flow-text h3{
  position: relative;
  font-size: 34px;
  letter-spacing: 0.06em;
  z-index: 1;
}
.macing-flow-text .text-text{
  font-size: 14px;
  line-height: 30px;
  padding-top: 10px;
  text-align: justify;
  letter-spacing: 0.04em;
}
.macing-flow-text .matching-number{
  position: absolute;
  top: -80px;
  left: -20px;
  font-size: 122px;
  font-weight: bold;
  z-index: 0;
  color: #e6e5e5;
}
.macing-img{
  width: 35%;
  max-width: 250px;
  position: relative;
  margin-top: -20px;
}
.macing-img3{
  background-image: url("../img/bg-macing-img3.svg");
  background-repeat: no-repeat;
  text-align: center;
}
.macing-img3 img{
  width: 150px;
  margin-top: 25px;
  margin-right: auto;
  margin-left: auto;
}
.macing-img4{
  margin-top: 20px;
  background-image: url("../img/bg-macing-img4.svg");
  background-repeat: no-repeat;
  text-align: center;
  background-position: bottom;
}
.macing-img4 img{
  width: 200px;
  /* margin-top: 25px; */
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
}
.macing-img-text{
  display: flex;
  justify-content: space-between;
  margin-top: -10px;
}
.macing-img-text1{
  display: flex;
  justify-content: space-between;
  margin-top: -10px;
}
.macing-img-text p{
  font-size: 16px;
  font-weight: bold;
}
/* .macing-img-text p:first-of-type{
  padding-left: 10px;
} */
.macing-img-text1 .text-sales{
  position: absolute;
  font-size: 16px;
  font-weight: bold;
  bottom: 0;
  left: 0px;
  text-shadow:2px 2px 0 #FFF, -2px -2px 0 #FFF,
              -2px 2px 0 #FFF, 2px -2px 0 #FFF,
              0px 2px 0 #FFF,  0 -2px 0 #FFF,
              -2px 0 0 #FFF, 2px 0 0 #FFF;
}
.macing-img-text1 .text-custmer{
  position: absolute;
  font-size: 16px;
  font-weight: bold;
  bottom: 0;
  right: -24px;
  /* filter: drop-shadow(0px 0px 1px #fff) drop-shadow(0px 0px 1px #fff); */
  text-shadow:2px 2px 0 #FFF, -2px -2px 0 #FFF,
              -2px 2px 0 #FFF, 2px -2px 0 #FFF,
              0px 2px 0 #FFF,  0 -2px 0 #FFF,
              -2px 0 0 #FFF, 2px 0 0 #FFF;
}
@media (max-width: 769px){
  .sub-title{
    width: 40%;
  }

  .matcing-flow{
    width: 95%;
  }
  .matcing-flow-item{
    flex-direction: column;
  }
  .macing-flow-text{
    width: 100%;
  }
  .macing-img{
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .macing-img3{
    background-position: center;
  }
}
@media (max-width: 500px){
  .sub-title{
    width: 70%;
  }
  .sub-title p{
    font-size: 18px;
  }
  .reg-item{
    /* width: 100%; */
    width: 90%;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }
  .reg-item .reg-text{
    font-size: 20px;
    letter-spacing: 1.4px;
    line-height: 17px;
  }
  .reg-item .reg-text span{
    font-size: 10px;
  }
  .total .total-number{
    font-size: 30px;
  }
  .total .total-img img{
    width: 50px;
  }
  .total .total-up .total-number span{
    font-size: 15px;
    padding-bottom: 3px;
  }
  .total .total-up img{
    width: 20px;
    height: 20px;
  }
  .macing-flow-text h3{
    font-size: 27px;
  }
  .macing-img{
    max-width: 300px;
    margin-top: 15px;
  }



  .macing-flow-text .matching-number{
    font-size: 100px;
    left: 0;
  }
  .macing-flow-text .text-text{
    font-size: 14px;
    line-height: 22px;
  }
  .matcing-flow-item{
    margin-bottom: 120px;
  }
}
/* howto-matcing終わり */


/* howto-flow */
.howto-flow{
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 110px;

}
.howto-flow .sub-title{
  width: 30%;
}
.howto-flow .sub-title p{
    background-color: #000;
    margin: 30px auto;
    border-radius: 40px;
}
.flow-img{
  max-width: 550px;
  margin: 0 auto;
}
.flow-img-text{
  background-color:#72C7D8;

}
.flow-img-text .text-inner{
  font-size: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  color: #fff;
  letter-spacing: 1.7px;
}
.flow-img-text .text-inner span{
  font-size: 13px;
}
.flow-cation{
  max-width: 550px;
  margin: 0 auto;
  margin-top: 15px;
  font-size: 10px;
}
.flow-cation p{
  padding-bottom: 2px;
}
@media (max-width: 1000px){
  .howto-flow .sub-title{
    width: 60%;
  }
}
@media (max-width: 500px){
  .flow-img{
    width: 97%;
    height: 110%;
  }
  .howto-flow .sub-title{
    width: 70%;
    margin-bottom: 10px;
  }
  .howto-flow .sub-title p{
    width: 100%;
    font-size: 18px;
  }
  .flow-img-text .text-inner{
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .flow-cation{
    margin-top: 5px;
    width: 95%;
  }
}
/* howto-flow終わり */

/* blog */

/* blog終わり */
.blog-m{
  max-width: 758px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  margin-top: 30px;
  align-items: center;
  justify-content: space-between;
}
.blog-m a{
  width: 31%;
  max-width: 239px;
}
.blog-link .date{
  color: #090909;
  font-size: 14px;
  text-align: right;
  border-bottom: 1px solid #000;
  letter-spacing: 0.05em;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.blog-link img{
  height: 173px;
  /* width: 100%; */
}
.blog-link .blog-title{
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #090909;
  margin-top: 10px;
}
@media (max-width: 500px){
  .blog-m{
    display: block;
  }
  .blog-m a{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
  }
}
/* footer */
footer{
  background-color: #72C7D8;
  color: #fff;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
  padding-top: 40px;
  padding-bottom: 40px;
}
footer .footer-title{
  font-size: 20px;
  padding-bottom: 30px;
  letter-spacing: 2px;
}
.contact{
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
}
.contact .contact-tell{
  text-align: left;
}
.contact .contact-tell .time{
  font-size: 12px;
}
.contact .contact-tell .tell-number-m{
  font-size: 30px;
  letter-spacing: 3px;
}
.contact-link{
  background-color: #fff;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
}
.contact-link a{
  width: 100%;
  height: 100%;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-link a span{
  font-size: 17px;
  color: #72C7D8;
  padding-left: 10px;
}
@media (max-width: 769px){
  .contact{
    display: flex;
    flex-direction: column;
  }
  .contact .contact-tell{
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .contact-link{
    margin: 0 auto;
  }
  .contact .contact-tell{
    margin: 0 auto;
    margin-top: 30px;
  }
}
  @media (max-width: 500px){
    footer .footer-title{
      font-size: 15px;
    }
    .contact-link{
      width: 200px;
    }
    .contact-link a img{
      width: 20px;
    }
    .contact-link a span{
      font-size: 15px;
    }
    .contact .contact-tell .tell-number-m{
      font-size: 20px;
    }
    .contact .contact-tell{
      margin-top: 15px;
    }
  }
/* footer終わり */


#page_top {
  position: fixed;
  z-index: 999;
  bottom: 30px;
  right: 50px; 
  width: 60px;

}
@media (max-width: 500px){
  #page_top{
    right: 10px;
    bottom: 10px;
  }
}

/* 20220926 korenaga header調整 */
header {
  height:70px !important;
  border-bottom:1px solid #ddd;
}
header #fixed_header {
  border-bottom:1px solid #ddd;
}
header nav#indexnav {
  display:none;
}

@media (max-width: 768px){
  #wrap_breadcrumb {
    margin-bottom:30px !important;
  }
}