@charset "utf-8";

/*Mobile First
/*=================*/
/* basic 
/* header
/* footer 
/* contents
/* 
/* tablet
/* PC
/*=================*/

/* :rootのCSS変数の宣言 */
:root {
  --red: #ff0000;
  --blue: #0000ff;
  --pink: #e61673;
	--orange:#ff6900;
  --rightblue:#20B3F7;
  --darkblue:#025894;
  --radius:1.6rem;
  /* style */
  --ctacolor:var(--rightblue);
  --ctacolor-tel:var(--orange);
  --textAccent:var(--pink);
  --bgDarkcolor: var(--darkblue);
}

@media screen and (min-width: 768px) {} /*tablet*/
@media screen and (min-width: 1024px) {} /*PC*/

/*=================*/
/* basic
/*=================*/
html{
  font-size: 16px;
  line-height: 1.7;
}
body{
  color: #333333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Noto Sans Japanese", sans-serif;
}

body::-webkit-scrollbar{
  display:none;
}

main{
  flex-grow: 1;
}

.wrapper{
	width: calc( 100% - 5% );
  margin: 0 auto;
} 


.wrap{
	display: flex;
} 

.wrap.reverse{
	flex-wrap: wrap-reverse;
} 

.wrap > *{
	width: 100%;
}

@media (min-width: 768px) {
  .wrapper{
    max-width: 720px;
  }
}

@media (min-width: 1024px) {
  .wrapper{
    max-width: 1000px;
  }
}

@media (min-width: 1200px) {
  .wrapper{
    max-width: 1140px;
  }
}

h1{
  font-size: 2.4rem;
}

h2{
  font-size: 2.0rem;
}

h3{
  font-size: 1.6rem;
}

h4{
  font-size: 1.2rem;
}

h5, h6, p{
  text-align: justify;
}

.bold{
  font-weight: 700;
}

a{
  color: black;
  text-decoration: none;
}

img{
  display: block;
  width: 100%;
  height: auto;
  line-height: 0;
}

ul , ol , li{
  list-style: none;
  padding: 0;
  margin: 0;
}

.base{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mr-auto{
  margin-right: auto !important;
}

.ml-auto{
  margin-left: auto !important;
}

.mx-auto{
  margin: 0 auto !important;
}

.qa .wrapper h2, .flow h2{
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1024px) {
  .del{
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .add{
    display: none !important;
  }
}

.mb-2{
  margin-bottom: 2rem;
}
.mb-1{
  margin-bottom: 1rem;
}

.mt-1{
  margin-top: 1rem;
}

.paragraph-size{
  font-size: 1.2rem;
}

.text-white{
  color: #fff;
}

.text-accent{
  color: var(--textAccent);
}

.text-center{
  text-align: center;
}

.bg_white{
  background-color: #FFF;
}

/*=================*/
/* header
/*=================*/
.header{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: .5rem 1.2rem;
  top: 0;
  z-index: 9999;
  min-height: 80px;
}


.header > h1 > a > img{
  max-width: 160px;
  height: auto;
}

.header > a > img{
  max-width: 20px;
  height: auto;
  margin-left: 1.4rem;
}

/** head-btn **/

.button-lp a {
    background: hsl(from var(--ctacolor) h s l);
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: .5rem 2rem .5rem 1.4rem;
    line-height: 1.8;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    border-bottom: solid 5px  hsl(from var(--ctacolor) h 70 l);
    transition: 0.3s ease-in-out;
    font-size: .75rem;
}
.button-lp a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1.4rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button-lp a:hover:after {
  right: 1rem;
}
.button-lp a:hover {
  background: hsl(from var(--ctacolor) h s 60);
  color: #FFF;
  border-bottom: solid 2px hsl(from var(--ctacolor) h s l);
  transform: translateY(3px);
}
.button-lp a:hover:before {
    color: #fff;
}



@media screen and (min-width: 768px) {
  .header{
    max-width: 560px;
  }
}


/*=================*/
/* footer
/*=================*/
.footer{
  text-align: center;
  padding: 4rem;
  background-color: #efefef;
}

.contact .footer{
  border-top: #4D4D4D solid 1px;
}

.footer img{
  max-width: 240px;
  margin: 0 auto 1.6rem;
}

/*=================*/
/* area-mobile
/*=================*/
.grid-2,
.grid-2-3,
.grid-2-4,
.grid-3,
.grid-3-4,
.grid-4{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.bg-slide{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  height: 100vh;
  width: 100vw;
  box-sizing: border-box;
  /*margin-left: calc( 50% - 50vw );*/
  background-image: url(../img/bg-slide.png);
  background-repeat: repeat-x;
  background-size: auto 100vh;
  animation: bg-loop 300s linear infinite;
}

@keyframes bg-loop {
  from {
      background-position: 0 0;
  }
  to {
      background-position: -4922px 0; /* 画像のマイナス幅 */
  }
}

.menu-slide{
  display: block;
  height: 100px;
  width: 100%;
  box-sizing: border-box;
  background-image: url(../img/menu-slide.png);
  background-repeat: repeat-x;
  background-size: auto 100px;
  animation: menu-loop 100s linear infinite;
}

@keyframes menu-loop {
  from {
      background-position: 0 0;
  }
  to {
      background-position: -1720px 0; /* 画像のマイナス幅 */
  }
}

.area-mobile{
  width: 100%;
  min-height: 100vh;
  right: 0;
  top: 0;
  z-index: 999;
  background-color: #fff;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.area-mobile::-webkit-scrollbar{
  display: none;
}


.main{
}

/* ===== cvarea ===== */
.cvarea{
  color: #E3E3E3;
  background-color:  var(--bgDarkcolor);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  padding-top: .5rem;
}
.cv_wrapper{
  padding-left: .5rem;
  padding-right: .5rem;
}
.cv_box{
  background-color: #fff;
  position: relative;
  padding: 1rem;
}

.cv_box::after{/* beforeでもafterでも*/
    content: "";
    position: absolute;
    height: 60px;
    width: 100%;
    clip-path: polygon(50% 75%, 100% 2%, 100% 0, 0 0, 0% 2%);/* ココ */
    background-color: #fff;/* デモは青色の部分 */
    left: 0;
    bottom: -59px; /* bottomにピッタリくっつけたいので三角の高さ分下にずらす */
}

/* ===== cta ===== */
/** contents-btn **/

.button-lp-cta a {
    background: hsl(from var(--ctacolor) h s l);
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: .5rem 2rem;
    line-height: 1.8;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    border-bottom: solid 5px hsl(from var(--ctacolor) h 70 l);
    transition: 0.3s ease-in-out;
    font-size: 1.2rem;
    height: 64px;
}
.button-lp-cta a:before {
    content: "\f15c";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    margin-right: 12px;
    color: #fff;
    transition: 0.3s ease-in-out;
}
.button-lp-cta a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2.4rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 12px;
  height: 12px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button-lp-cta a:hover:after {
  right: 2rem;
}
.button-lp-cta a:hover {
  background: hsl(from var(--ctacolor) h s 60);
  color: #FFF;
  border-bottom: solid 2px hsl(from var(--ctacolor) h s l);
  transform: translateY(3px);
}
.button-lp-cta a:hover:before {
    color: #fff;
}


.button-lp-cta-tel a {
    background: hsl(from var(--ctacolor-tel) h s l);
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: .5rem 2rem;
    line-height: 1.8;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    border-bottom: solid 5px hsl(from var(--ctacolor-tel) h 70 l);
    transition: 0.3s ease-in-out;
    font-size: 1.2rem;
    height: 64px;
}
.button-lp-cta-tel a:before {
    content: "\f87b";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    margin-right: 12px;
    color: #fff;
    transition: 0.3s ease-in-out;
}
.button-lp-cta-tel a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2.4rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 12px;
  height: 12px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button-lp-cta-tel a:hover:after {
  right: 2rem;
}
.button-lp-cta-tel a:hover {
  background: hsl(from var(--ctacolor-tel) h s 60);
  color: #FFF;
  border-bottom: solid 2px hsl(from var(--ctacolor-tel) h s l);
  transform: translateY(3px);
}
.button-lp-cta-tel a:hover:before {
    color: #fff;
}

/* ===== hojyokin ===== */
.hojyokin-text{
  padding: 4rem .5rem;
}

/* ===== onayami ===== */
.onayami{
  background-color: #FFF;
  padding-top: 4rem;
  padding-bottom: .6rem;
}


/* ===== kaiketsu ===== */

.kaiketsu{
  background: hsl(from var(--ctacolor) h s 60);
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.title_3kaiketsu{
  width: 200px;
  height: auto;
  margin: 0 auto;
}

.box_white{
  background-color: #fff;
  padding: 2rem;
  border: 2px solid hsl(from var(--ctacolor) h s 60);
  border-radius: var(--radius);
}

.box_white img{
  max-width: 100%;
  height: auto;
}

/* ===== case ===== */

.case{
  background: hsl(from var(--ctacolor) h s 90);
  padding-top: 4rem;
  padding-bottom: 2rem;
  position: relative;
}


/* ===== qa ===== */
.qa{
  background-color: #fff;
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;

}
.qa::after{/* beforeでもafterでも*/
    content: "";
    position: absolute;
    height: 60px;
    width: 100%;
    clip-path: polygon(50% 75%, 100% 2%, 100% 0, 0 0, 0% 2%);/* ココ */
    background-color: hsl(from var(--ctacolor) h s 90);/* デモは青色の部分 */
    left: 0;
    top: 0px; /* bottomにピッタリくっつけたいので三角の高さ分下にずらす */
    z-index: 100000;
}

/* ====アコーディオン ===*/

.accordion_container {
}
.accordion_title {
  background-color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 1rem 10% 1rem 5%;
  text-align: left;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
  border: 2px solid hsl(from var(--ctacolor) h s l);
  border-radius: var(--radius);
}
/*
.accordion_title::before{
  content: "Q.";
  font-size: 1.5rem;
  color: var(--rightblue);
  margin-right: .2rem;
  display: inline-block;
  transform: translateY(2px);
}*/
.icon_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 1%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}
.icon {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.accordion_title.open 
.icon_wrap {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.icon:before, .icon:after {
  display: flex;
  content: '';
  background-color: hsl(from var(--ctacolor) h s l);
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}
.icon:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}
.accordion_title.open 
.icon_wrap .icon:before {
  content: none;
}
.accordion_title.open 
.icon_wrap .icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.accordion_inner {
  display: none;
  padding-right: 2rem;
  padding-left: 2rem;
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: hsl(from var(--ctacolor) h s 93);
  box-sizing: border-box;
  margin-bottom: 1rem;
  margin-top: -1.6rem;
  z-index: -1;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
p.txt_a_ac {
  margin: 0;
}


/* ===== flow ===== */

.flow{
  background-color: var(--bgDarkcolor);
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.flow_box{
  background-color: #fff;
  padding: 1.6rem;
  border: 2px solid hsl(from var(--ctacolor) h s 60);
  border-radius: var(--radius);

}
.flow h3{
  display: flex;
  align-items: center;
}
.number{
  display: inline-flex;
  background: var(--ctacolor);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: .6rem;
}
.number i{
  font-size: 1.2rem;
  color: #FFF;
}

/* ===== maker ===== */
.maker{
  background-color: #fff;
  position: relative;
  padding-top: 2rem;
  padding-bottom: 4rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.maker h2{
  text-align: center;
  margin-bottom: 1rem;
  color: var(--ctacolor);
}

.maker_list{
  text-align: center;
  font-size: 1.6rem;
}

h2 + span{
  color: #E6BF73;
  font-size: 1rem;
  display: block;
  text-align: center;
  margin-bottom: 2rem;
}

.grid,
.access .grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}

small{
  display: block;
  font-size: 70%;
  margin-bottom: 1rem;
}


/*=================*/
/* area-pc
/*=================*/
.area-pc{
  display: none;
}
.area-pc-inner{
  position: relative;
}
.sidebg_btn{
}
.sidebtn{
  position: absolute;
  bottom: 7%;
  padding: 0 1rem;
  transition: 0.3s ease-in-out;
}
.sidebtn:hover{
  opacity: .8;
}
@media screen and (min-width: 768px){
}

@media screen and (min-width: 1024px) {
  .area-pc{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    padding: 1%;
    width: calc((100vw - 560px) / 2);
  }
  .area-pc img{
    max-width: 380px;
  }

  .area-pc > a img{
    max-width: 320px;
    height: auto;
    margin-bottom: 4rem;
  }
  
  .area-pc > img{
    max-width: 100px;
    height: auto;
    margin-bottom: 4rem;
  }

  .area-pc a{
    color: #E3E3E3;
  }
}

/*=================*/
/* area-pc-2
/*=================*/
.area-pc-2{
  display: none;
}
.area-pc-2-inner{
  position: relative;
}
@media screen and (min-width: 768px){
}

@media screen and (min-width: 1024px) {
  .area-pc-2{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 1%;
    width: calc((100vw - 560px) / 2);
  }
  .area-pc-2 img{
    max-width: 380px;
  }

  .area-pc-2 > a img{
    max-width: 320px;
    height: auto;
    margin-bottom: 4rem;
  }
  
  .area-pc-2 > img{
    max-width: 100px;
    height: auto;
    margin-bottom: 4rem;
  }

  .area-pc-2 a{
    color: #E3E3E3;
  }
}

/*=================*/
/* contact
/*=================*/
.bg-black{
  background-color: #070400;
}

body.contact{
  font-family: inherit !important;
}

.contact h2{
  margin: 8rem 0 1rem !important;
  font-family: "ヒラギノ明朝 ProN", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.contact p.text{
  color: #E3E3E3;
  margin: 1rem 0;
}

.form-label,
.input-label{
  color: #262626;
}

.contact .header a:nth-child(1) > h1 > img{
  max-width: 120px;
  height: auto;
}

.text-black{
  color: #262626;
}

@media screen and (min-width: 768px){
  .contact .header{
    width: 100% !important;
    max-width: none;
  }

  .contact p.text{
    text-align: center;
  }
}

/*=================*/
/* tablet
/*=================*/
@media screen and (min-width: 768px) {
  .grid-2,
  .grid-2-3,
  .grid-2-4{
    grid-template-columns: repeat(2,1fr);
  }

  .grid-3,
  .grid-3-4{
    grid-template-columns: repeat(3,1fr);
  }

  .grid-4{
    grid-template-columns: repeat(4,1fr);
  }

  .area-mobile{
    max-width: 560px;
  }


  .access iframe{
    width: 560px;
    height: 260px;
    margin-left: calc( 50% - 280px );
    margin-bottom: 2rem;
  }

  .cta .btn{
    padding: 1rem 7rem;
  }
}

/*=================*/
/* PC
/*=================*/
@media screen and (min-width: 1024px) {
  .grid-2-3{
    grid-template-columns: repeat(3,1fr);
  }
  
  .grid-2-4,
  .grid-3-4{
    grid-template-columns: repeat(4,1fr);
  }

}