/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


/*--------------------テンプレのための-----------------------*/ 

/*スマホ余計な余白解除*/
.container,.container-fluid,.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto,
.col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto,
.col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto,
.col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto,
.col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto{
  padding-left: 6px;
  padding-right: 6px;
}
.custom {
    padding-left: var(--bs-gutter-x,.0rem);
    padding-right: var(--bs-gutter-x,.0rem);
}
/*テンプレのヘッダー・フッター非表示*/
header {
  display:none;
}
footer{
  display:none;
}

/*-------------------------------PC版-------------------------------*/
html {
    font-size: 16px;
}
body {
  font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}
p{
  color: #3B4043;
  font-size: 20px;
  /*line-height: 1.4em;*/
  /*margin: 0;*/
}

h1{
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
h2{
  font-weight: bold;
}

/*PC文字の強調したいところ*/
strong {
  background: linear-gradient(transparent 30%, #FFF100 30%);
}


/*スマホのみ改行*/
.sp{
  display: none;
}
.pc{
  display: block;
}
.note{
  display: none;
}


.hhs-img-text-mod {
  padding-top: 70px  !important;
  padding-bottom: 0px  !important;
}

/*動画埋め込みページ用*/
.movie-text h1{
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 47px;
  line-height: 1.4;
}
.movie-text h2{
text-align: center;
}
/*-------------------------------モバイル版-------------------------------*/


@media screen and (max-width:480px) {
.header_top img{
  margin: auto;
  display: block;  
  width:150px;
  max-width:100%;
  margin-top:5px;
  }
p {
  font-size:16px ;
}
  
.sp{
  display: block ;
}

.pc{
  display: none ;
}
.note{
  display: none;
}
.hhs-img-text-mod {
  padding-top: 40px  !important;
}

.hhs-hero-mod .hhs-col-inner-con {
  margin-bottom: 0px !important;
    }
  
.wj-form .register-button{
  font-size: 1em !important;
  }
  
/*動画埋め込みページ用*/
.movie-text h1{
  margin-top: 7px;
  margin-bottom: 13px;
  font-size: 27px;
  line-height: 1.3;
}
.movie-text h2{
  font-size: 19px;
}
}





/*-------------------------------------

　　　　　　▼▼▼　ポップアップ　　▼▼▼

-------------------------------------*/

  div#POPUP {
    z-index: 9999 !important;
}

.popup_wrap input#trigger,.popup_wrap input#trigger-2 {
    display: none;
}
  .popup_overlay {
display: flex;
justify-content: center;
overflow: auto;
position: fixed;
top: 0;
left: 0;
z-index: 999;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
opacity: 0;
transition: opacity 0.5s, transform 0s 0.5s;
transform: scale(0);
}

  .popup_overlay-2 {
display: flex;
justify-content: center;
overflow: auto;
position: fixed;
top: 0;
left: 0;
z-index: 9998;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
opacity: 0;
transition: opacity 0.5s, transform 0s 0.5s;
transform: scale(0);
}

.popup_trigger {
position: absolute;
width: 100%;
height: 100%;
}



.popup_content {
position: relative;
align-self: center;
width: 90%;
max-width: 800px;
padding: 30px 40px;
box-sizing: border-box;
background: #fff;
line-height: 1.4em;
transition: 0.5s;
text-align: left;
border: solid 4px #04BF8E;
}
.close_btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
    padding: 14px;
    background: #eaf0f6;
    color: #333;
    border-radius: 15px;
    line-height: 14px;
    font-weight: 400;
}
.popup_wrap input:checked ~ .popup_overlay {
opacity: 1;
transform: scale(1);
transition: opacity 0.5s;
}
.popup_wrap input:checked ~ .popup_overlay-2 {
opacity: 1;
transform: scale(1);
transition: opacity 0.5s;
}

.popup_wrap input:checked ~ .popup_overlay .popup_content{
transform: translateY(50px);
}
.open_btn {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 324px;
    height: auto;
    margin: 13px auto;
    color: #fff;
    font-size: 22px;
    background: #04BF8E;
    padding: 0.5em 1em;
    border: solid 0px #333;
    font-weight: bold;
    border-radius: 0px;
    cursor: pointer;
    transition: .3s ease;
}
.open_btn-2 {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 324px;
    height: auto;
    margin: 13px auto;
    color: #fff;
    font-size: 22px;
    background: #000;
    padding: 0.5em 1em;
    border: solid 0px #333;
    font-weight: bold;
    border-radius: 0px;
    cursor: pointer;
    transition: .3s ease;
}
.open_btn:hover {
    background: #018C68;
    border: solid 0px #333;
    color: #fff;
    transition: .3s ease;
}

.open_btn:after {
 content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  margin: 6px 0 0 5px;
  background: url("https://www.busoken.com/hubfs/77.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;
}

  /*ポップアップのフォームデザイン*/
 p.nittei {
    font-size: 24px !important;
    text-align: center;
    font-weight: bold;
    margin: 0rem auto 1rem !important;
    line-height: 1.4 !important;
}
 p.text02 {
    font-size: 13px !important;
    margin: 1em 0 0 0 !important;
    line-height: 1.4 !important;
    text-align: left !important;
}
  
#POPUP .wj-form {
    font-size: 90%;
    max-width: 700px;
    margin: 1rem auto;
}


  .validation-error-message {
    font-size: 14px;
}


/*----- ▼▼▼ POPUP スマホ ▼▼▼ -----*/

@media only screen and (max-width: 767px){
.popup_content {
    position: relative;
    align-self: center;
    width: 94%;
    max-width: 800px;
    padding: 16px 10px;
    box-sizing: border-box;
    background: #fff;
    line-height: 1em;
    transition: 0.5s;
        border: solid 4px #04BF8E;
  　　　
}
  
.open_btn {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 320px;
    height: auto;
    margin: 10px auto 16px;
    color: #fff;
    font-size: 22px;
    background: #04BF8E;
    padding: 0.5em 1em;
    border: solid 0px #333;
  
  
    font-weight: bold;
    border-radius: 0px;
    cursor: pointer;
    transition: .3s ease;
}
  
    .validation-error-message {
    font-size: 3vw;
}
  }