/*
.menu {
    position: relative;
    width: 100%;
    height: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.menu > li {
    float: left;
    width: 25%; 
    height: 50px;
    line-height: 50px;
    background: rgb(29, 33, 19);
}

.menu > li a {
    display: block;
    color: #fff;
}

.menu > li a:hover {
    color: #999;
}*/

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

ul.menu__third-level {
    visibility: hidden;
    opacity: 0;
}

ul.menu__fourth-level {
    visibility: hidden;
    opacity: 0;
}

.menu > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}

.menu__second-level li {
    border-top: 1px solid #111;
}

.menu__third-level li {
    border-top: 1px solid #111;
}

.menu__second-level li a:hover {
    background: #111;
}

.menu__third-level li a:hover {
    background: #2a1f1f;
}

.menu__fourth-level li a:hover {
    background: #1d0f0f;
}

/* 下矢印 */
.init-bottom:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    /*
    カスタマイズ
    */
    border-right: 0px solid #fff;
    border-bottom: 0px solid #fff;
    margin: 0 0 0 0px;
}

/* floatクリア */
.menu:before,
.menu:after {
    content: " ";
    display: table;
}

.menu:after {
    clear: both;
}

.menu {
    *zoom: 1;
}

.menu > li.menu__single {
    position: relative;
}

li.menu__single ul.menu__second-level {
    position: absolute;
    top: 40px;
    width: 10em;
    background: rgba(24,24,24,.89);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

li.menu__single:hover ul.menu__second-level {
    top: 50px;
    visibility: visible;
    opacity: 1;
}

.menu__second-level ul li {
    margin-top: 0px;
    margin-right: 0px!important;
    margin-left: 0px!important;
}
.menu > li.menu__single ul li{
    margin-top: 0px;
    margin-right: 0px!important;
    margin-left: 0px!important;
    padding: 8px;
}
.menu > li.menu__single ul li a::after {
    display: none;
}

.bottom-header-button .button{display: inline-block;width: 33%;}
#contact_menu{
    display: flex;
    width: 100%;
    opacity: 1.0;
    background: linear-gradient(to right, #00DFA4, #0042C7);
}
#contact_menu li a {
    display: block;
    padding: 16px 0;
    text-align: center;
}
#contact_menu li + li {
  border-left: 1px solid white;
}
#contact_menu li img {
    height: 50px;
}
#contact_menu li{width: 33.33333%; display: table-cell;}
#contact_menu li:first-child a {
    background: transparent;
}
#contact_menu li:nth-child(2) a {
    background: transparent;
}
#contact_menu li:last-child a {
    background: trtansparent;
}

.contact_menu{
    display: flex;
    width: 100%;
    opacity: 1.0;
    background: linear-gradient(to right, #00DFA4, #0042C7);
}
.contact_menu li a {
    display: block;
    padding: 7px 0;
    text-align: center;
}
.contact_menu li + li {
  border-left: 1px solid white;
}
.contact_menu li img {
    height: 50px;
}
.contact_menu li{width: 33.33333%; display: table-cell;}
.contact_menu li:first-child a {
    background: transparent;
}
.contact_menu li:nth-child(2) a {
    background: transparent;
}
.contact_menu li:last-child a {
    background: trtansparent;
}
.news-date{
    background: gray;
    padding-left: 1.2em;
    padding-right: 1.2em;
    padding-top: .2em;
    padding-bottom: .2em;
    color: white;
    display: inline-block;
}

.title {
    letter-spacing: .2em;
    font-weight: bold;
    font-size: 5em;
}
.text-center{text-align: center;}
.text-left{text-align: left;}
.text-right{text-align: right;}
.marginTop2{margin-top: 2em;}
.margin1{margin: 1em 0%;}
.margin2{margin: 2em 0%;}
.margin5{margin: 3% 0px;}
.italic{font-style: italic;}
.fontSize2{font-size: 2em;}
.fontSize20{font-size: 20px;line-height: 50px;}
.paddingLeft16{padding-left: 16px;}
/*
.secTtl:before {
    content: "";
    width: 50%;
    height: 2px;
    background: linear-gradient(to right, #00DFA4, #0042C7);
    position: absolute;
    left: 25%;
    bottom: 0;
}*/
.secTtl:before {
    content: "";
    width: 60%;
    height: 8px;
    background: linear-gradient(to right, #00DFA4, #0042C7);
    position: absolute;
    left: 20%;
    bottom: 20%;
}
.secHomeCamp {
    padding: 2em 0;
}

/*VIEWMOREボタン*/
.moreButton {
    /*background: linear-gradient(to right, #00DFA4, #0042C7);*/
    background: linear-gradient(to right, rgba(0,223,164,0.6), rgba(0,66,199,0.6));
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    color: white;
    font-weight: bold;
    text-align: center;
    /* margin: 0 auto; */
    padding-left: 15%;
    padding-top: 2%;
    padding-bottom: 2%;
    padding-right: 15%;
    margin-bottom: 3%;
}
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  .moreButton {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.5);  
  }
  .warning {
    display: none;
  }
}
.moreButton span{
  color: #FFF;
  position: relative;
}
.moreButton span::after{
  content: "";
  position: absolute;
  top: 50%;
  right: -25%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
}

/*6つの特徴*/
.main {
  background: transparent;

}
.side {
  background: transparent;
}
.main,
.side {
    width: 50%;
}

.flexboxLeft .side{
    z-index: 2;
    padding-right: 16px;
}

.text-inner-box{
    padding: 16px;
    background: linear-gradient(to right, rgba(0,223,164,0.6), rgba(0,66,199,0.6));
    color: white;
}
.flexboxRight .main{
    z-index: 2;
    padding-left: 16px;
}
.flexboxRight .side{
    z-index: 1;
    padding-right: 16px;
}

.bottom-box{margin-top: 15%;}


/*料金プラン*/
.flexboxPrice {
    display: -webkit-flex;
    margin: 5% 0px;
    justify-content: space-around;
      display: flex;}

.flexboxPrice section {
    text-align: center;

}
/*
.flexboxPrice a{
    background: linear-gradient(to right, rgba(0,223,164,1.0), rgba(0,66,199,1.0));
    padding: 8px;
    padding-left: 24px;
    padding-right: 24px;
    font-weight: bold;
    color: white;}*/

/*流れ*/
.secHomeFlow .innerWrap{padding-left: 0px; padding-right: 0px;}
/*事例*/




/*FAQ*/
.accordion-box {
    position: relative;
}
.accordion-box label {
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    position: absolute;
    top: calc((100% - 24px)/2);
    right: 5%;
    width: 24px;
    height: 24px;
    background: url(https://haloss.jp/wp/wp-content/themes/haloss_org/lib/images/new2107/open.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.faq-row li:nth-child(1) {
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 48px;
    background-image: url(https://haloss.jp/wp/wp-content/themes/haloss_org/lib/images/new2107/q1.png);
}
.faq-title{font-size: 32px; margin-left: 64px;}
.faq-row li:nth-child(2) {
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 48px;
    background-image: url(https://haloss.jp/wp/wp-content/themes/haloss_org/lib/images/new2107/answer.png);
}
.faq-row li:nth-child(3) {
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 48px;
    background-image: url(https://haloss.jp/wp/wp-content/themes/haloss_org/lib/images/new2107/q2.png);
}
.faq-row li:nth-child(4) {
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 48px;
    background-image: url(https://haloss.jp/wp/wp-content/themes/haloss_org/lib/images/new2107/answer.png);
}
.faq-row li:nth-child(5) {
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 48px;
    background-image: url(https://haloss.jp/wp/wp-content/themes/haloss_org/lib/images/new2107/q3.png);
}
.faq-row li:nth-child(6) {
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 48px;
    background-image: url(https://haloss.jp/wp/wp-content/themes/haloss_org/lib/images/new2107/answer.png);
}
.faq-row li:nth-child(7) {
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 48px;
    background-image: url(https://haloss.jp/wp/wp-content/themes/haloss_org/lib/images/new2107/q4.png);
}
.faq-row li:nth-child(8) {
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 48px;
    background-image: url(https://haloss.jp/wp/wp-content/themes/haloss_org/lib/images/new2107/answer.png);
}
.faq-row li:nth-child(9) {
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 48px;
    background-image: url(https://haloss.jp/wp/wp-content/themes/haloss_org/lib/images/new2107/q5.png);
}
.faq-row li:nth-child(10) {
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 48px;
    background-image: url(https://haloss.jp/wp/wp-content/themes/haloss_org/lib/images/new2107/answer.png);
}
.accordion-box .accordion-container {
    overflow: hidden;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    height: 48px;
    position: relative;
    margin-left: 60px;
    background: white;
    padding: 8px;
    padding-right: 50px;
    color: black;
    border-radius: 8px;
    font-size: 15px;
}
.accordion-box {
    height: auto;
}
.accordion-box input{
    opacity: 0.0;

}

.accordion-box input:checked + label {

}
.accordion-box input:checked + li:nth-child(1) {
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(https://haloss.jp/wp/wp-content/themes/haloss_org/lib/images/new2107/answer.png);
}
.accordion-box input:checked ~ .accordion-container {
    height: auto;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}
.tempo_select{display: flex;}
.readmore{
    cursor: initial!important;
    text-align: initial!important;
    font-size: initial!important;
    position: initial!important;
    top: initial!important;
    right: initial!important;
    width: initial!important;
    height: initial!important;
    padding-left: 8px;
    background: initial!important;
    background-size: initial!important;
    background-repeat: initial!important;
    position: absolute!important; bottom: 0px!important; right: 60px!important; background: white!important; width: auto!important;color: black!important;
}
.accordion-box input:checked ~ .readmore {
    display: none!important;
}




 #contact_menu {display: none;}
 .contact_menu {display: none;}

.secHomeCamp .contents {
    margin-top: 0px;
    margin-left: 0px;
}
.sub-title-inner{text-align: center; font-family: sans-serif;margin: 3% 0px;}
.sub-title-font{font-style: italic;font-size: 1.5em;
    line-height: 2.0em;}
.sub-title-strength-text {font-weight: bold; font-size: 1.5em;}
.description-text{font-size: .5em;line-height: 2.0em;}
.secHomeRsn .flexboxLeft {
    width: 70%;
    margin: 0 auto;
}
.secHomeRsn .flexboxLeft {
      display: -webkit-flex;
      display: flex;
      padding-top: 5%;
      padding-bottom: 5%;
}
.secHomeRsn .flexboxRight .side img{
    width: 40%;
    z-index: 1;
    position: absolute;
    overflow: visible;
    margin-left: -10%;
}
.secHomeRsn .flexboxLeft .main img{
    width: 40%;
    z-index: 1;
    position: absolute;
    overflow: visible;
}
.secHomeRsn h4{font-size: 2em;}
.text-inner-box{font-size: 1.2em;
    line-height: 2.0em;}
.secHomeRsn .flexboxRight {
    width: 70%;
    margin:0 auto;
}
.secHomeRsn .flexboxRight {
      display: -webkit-flex;
      display: flex;
      padding-top: 5%;
      padding-bottom: 5%;
}
.secHomePrice .flexboxPrice a {
    /*
    background: linear-gradient(to right, rgba(0,223,164,1.0), rgba(0,66,199,1.0));
    padding: 24px;
    padding-left: 120px;
    font-size: 1.2em;
    padding-right: 120px;
    font-weight: bold;
    color: white;*/
}
.button{
    background: linear-gradient(to right, rgba(0,223,164,1.0), rgba(0,66,199,1.0));
    padding: 8px;
    padding-left: 24px;
    padding-right: 24px;
    font-weight: bold;
    color: white;
}


.secHomeVoice .moreButton {
    padding-left: 16%;
    padding-right: 16%;
}
.secHomeVoice .moreButton span::after{
  right: -15%;
}

.secHomeVoice .flexboxLeft{
    display: -webkit-flex;
    display: flex;
    padding-top: 5%;
    justify-content: space-around;
    padding-bottom: 5%;
}
.secHomeVoice .flexboxRight{
    display: -webkit-flex;
    display: flex;
    justify-content: space-around;
    padding-top: 5%;
    padding-bottom: 5%;
}

.secHomeVoice .flexboxRight .main{width: 40%;}
.secHomeVoice .flexboxRight .side{width: 50%;}
.secHomeVoice .flexboxLeft .main{width: 50%;}
.secHomeVoice .flexboxLeft .side{width: 40%;}
.secHomeVoice h4 {font-size: 2em;}


.secHomeFlow .pc-flex-flow{
    display: -webkit-flex;
    justify-content: space-around;
    display: flex;
    padding-top: 5%;
    padding-bottom: 5%;
}
.secHomeFlow .item{
    width: 250px;
    display: inline-block;
}
.store-dec{background: rgba(24,24,24,.89); border: 1px solid #96928E;padding: 30px 35px;width: 100%; display: flex;
    justify-content: center;}


.secHomeVoice .bottom-box{
    padding: 2em;
    background: rgba(46,46,46, 0.6);
    color: white;
}


.contact-button-inner{ display: flex; justify-content: space-between; }

.marginTopBottom2 {
    text-align: center;
    margin: 0 auto;
    margin-top: 2em;
    margin-bottom: 2em;
    width: 40%;

}



.faq-text{line-height: 1.5em;
    font-weight: bold;}




    

    .accordion-box .accordion-container {
    overflow: hidden;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    height: 50px;
    position: relative;
    margin-left: 60px;
    background: white;
    padding: .3em;
    padding-left: 25px;
    padding-right: 100px;
    color: black;
    border-radius: 8px;
    font-size: 15px;
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  .contact_menu {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.5);  
  }
  .warning {
    display: none;
  }
}

.faq-position{width: 80%;
    margin: 0 auto;}




.openButton{
    background:url(https://haloss.jp/wp/wp-content/themes/haloss_org/lib/images/new2107/open.png)!important;
    background-size: contain!important;
    background-repeat: no-repeat!important;
}
.closeButton{
    background:url(https://haloss.jp/wp/wp-content/themes/haloss_org/lib/images/common/icon/icon-arrow-t-green2.png)!important;
    background-size: contain!important;
    background-repeat: no-repeat!important;
}



.tempo_select span {
    border: 1px solid #808080;
    background: rgba(51,51,51,.74);
    display: block;
    width: 380px;
    height: auto;
    line-height: 1.8em;
    letter-spacing: 0.05em;
    font-size: 20px;
    margin: 0 40px 24px;
    transition: 0s;
    cursor: pointer;
    text-align: center;
}
.tempo_select .text{font-size: 36px;}
.tempo_select span.on {
    color: white;
    background: rgba(128,128,128,.74);
    /*border-bottom: 1px solid linear-gradient(#00DFA4, #0042C7);*/
    /*
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, #00DFA4 0%, #0042C7 100%);
    border-image-slice: 1;*/
    background: /* gradient can be an image */
    linear-gradient(
      to left, #00DFA4 0%, #0042C7 100%
    )
    left 
    bottom
    #777
    no-repeat; 
    background-size:100% 2px ;
}
.on{
    position: relative;
}
.on:after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  /*border-color: #fde7d1 transparent transparent transparent;*/
  border-color: #00DFA4 transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}


#title01 {
    width: 50%;
    margin: 0 auto;
}

/*reason*/
/*FAQマージン*/
/*タイトル*/
/*accessタブ*/
/*contact*/
/*内部リンク*/
/*アニメーション*/



@media screen and (max-width:835px) {
    #contact_menu {display: flex;}
    .contact_menu{display: flex;}
    .news-item .news-title{color: white;}
.news-item + .news-item {
  border-bottom : 0px solid gray;
}
.moreButton{
    padding-top: 5%;
    padding-bottom: 5%;
    margin-bottom: initial;
}
.margin5{margin: 5% 0px;}
.flexboxRight .side img{
    width: 60%;
    z-index: 1;
    position: absolute;
    overflow: visible;
    margin-left: -10%;
}
.flexboxLeft .main img{
    width: 60%;
    z-index: 1;
    position: absolute;
    overflow: visible;
}

.flexboxPrice a{ padding: 8px; padding-left: 24px; padding-right: 24px;}
.store-dec{background: rgba(24,24,24,.89); border: 1px solid #96928E;padding: 30px 35px;width: 100%;}


.accordion-box .accordion-container {
    overflow: hidden;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    height: 48px;
    position: relative;
    margin-left: 60px;
    background: white;
    padding: 8px;
    padding-right: 50px;
    color: black;
    border-radius: 8px;
    font-size: 15px;
}
.secHomeVoice .bottom-box{
    padding: 8px;
    background: rgba(46,46,46, 0.6);
    color: white;
}

/*グラデーションボタン*/
.margin5 {
    margin: 10% 0px;
}

/*質問*/
.faq-position {
    width: 95%;
}
.accordion-box .accordion-container {
    height: 56px;
}
.fontSize20 {
    font-size: 18px;
    line-height: 32px;
}

/*アクセス*/
.store-dec {
    display: block;
}

/*お問い合わせ*/
.contact-button-inner{ display: block; }

.marginTopBottom2 {
    text-align: center;
    margin: 0 auto;
    margin-top: 2em;
    margin-bottom: 2em;
    width: 100%;

}

/*タイトル*/
.title {
    letter-spacing: .1em;
    font-weight: bold;
    font-size: 3em;
}
.tempo_select span {
    width: 50%;
    margin: 0px;
}
.tempo_select .text {
    font-size: 1em;
}


/*事例紹介*/
.secHomeVoice .flexboxRight {
    justify-content: space-around;
}
.secHomeVoice .flexboxLeft {
    justify-content: space-around;
}
.flexboxRight .main img {
    position: initial;
    width: 100%;
}
.flexboxRight .side img {
    position: initial;
    width: 100%;
}
.flexboxLeft .main img {
    position: initial;
    width: 100%;
}
.flexboxLeft .side img {
    position: initial;
    width: 100%;
}
.flexboxRight .side {
    padding-right: 0px!important;
}
.flexboxRight .main {
    padding-left: 0px!important;
}
.secHomeVoice h4 {
    font-size: 1.5em;
}
.flexboxRight .main  {
    width: 40%!important;
}

.flexboxRight .side  {
    width: 60%!important;
}
.flexboxLeft .main  {
    width: 60%!important;
}

.flexboxLeft .side  {
    width: 40%!important;
}
.flexboxRight .side img {
    margin-left: 0%;
}
.flexboxLeft .main img {
    overflow: visible;
}
.secHomeVoice .bottom-box {
    width: 150%;
}
.secHomeVoice .flexboxLeft .bottom-box {
    margin-left: -35%;
    width: 150%;
}


/*値段*/
.secHomePrice .innerWrap {
    padding:0px;
}
.flexboxPrice .item{
    width: 90%;
    margin: 0 auto;
}
.margin1 {
    margin: 0em 0%;
    padding: .2em;
    font-size: .8em;
}

/*理由*/
.secHomeRsn .flexboxLeft {
    width: 90%;
    margin: 0 auto;
}
.secHomeRsn .flexboxLeft .main img {
    width: 60%;
}
.secHomeRsn .flexboxLeft .bottom-box {
    margin-top: 0%;
    width: 180%;
    margin-left: -60%;
}
.secHomeRsn .flexboxLeft h4 {
    font-size: 1.5em;
    text-align: right;
}

.secHomeRsn .flexboxRight {
    width: 90%;
    margin: 0 auto;
}
.secHomeRsn .flexboxRight .side img {
    width: 60%;
}
.secHomeRsn .flexboxRight .bottom-box {
    margin-top: 0%;
    width: 180%;
    margin-left: 0%;
}
.secHomeRsn .flexboxRight h4 {
    font-size: 1.5em;
    text-align: left;
}
.secHomeRsn .flexboxRight .side img {
    width: 55%;
    margin-left: 0%;
}
.tempo_select {
    margin-bottom: 3em;
}
.secTtl:before {
    content: "";
    width: 88%;
    height: 8px;
    background: linear-gradient(to right, #00DFA4, #0042C7);
    position: absolute;
    left: 6%;
    bottom: 15%;
}


#title01{width: 90%; margin:0 auto;}


}





