@charset "utf-8";

/*------------------------------------
　mainVisual slider
------------------------------------*/ 

#mainVisual.index_mainVisual {
}
#mainVisual.index_mainVisual .wrapper {
    position: relative;
    box-sizing: content-box;
    padding-top: var(--header_height);
}
#mainVisual.index_mainVisual .wrapper > *:not(.background_circles) {
    position: relative;
    z-index: 10;
}
#mainVisual.index_mainVisual .wrapper svg {
    fill:#343434
}
.background_circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.background_circles li{
    position: absolute;
    display: block;
    list-style: none;
    background: rgba(186, 146, 61, 0.08);
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    left:50%;
    top:50%;
}
.background_circles li:nth-child(1){
    max-width: 48rem;
    max-height: 48rem;
    width: 26vw;
    height: 26vw;
    margin: -11vw 0 0 -32vw;
}
.background_circles li:nth-child(2){
    max-width: 22rem;
    max-height: 22rem;
    width: 11vw;
    height: 11vw;
    margin: 14vw 0 0 -26vw;
}
.background_circles li:nth-child(3){
    max-width: 15.5rem;
    max-height: 15.5rem;
    width: 11.5vw;
    height: 11.5vw;
    margin: 3.5vw 0 0 1vw;
}
.background_circles li:nth-child(4){
    max-width: 24rem;
    max-height: 24rem;
    width: 12vw;
    height: 12vw;
    margin: -5.5vw 0 0 38vw;
}





@media only screen and (max-width: 767px) {

#mainVisual.index_mainVisual .wrapper,
#mainVisual.index_mainVisual .wrapper img {
    height: 50vw;
    overflow: hidden;
}
#mainVisual.index_mainVisual .wrapper img {
    position: absolute;
    bottom: -3vw;
    right: -4vw;
    max-width: 60vw;
    width: 100%;
    opacity: 0.5;
}
#mainVisual.index_mainVisual .wrapper svg {
    width: 50vw;
    position: relative;
    z-index: 10;
}
#mainVisual.index_mainVisual .wrapper .d-flex {
    width: 100%;
}
#mainVisual.index_mainVisual .wrapper .d-flex .d-flex {
    padding: 0 1.5rem;
}




}
@media only screen and (max-width: 576px) {

#mainVisual.index_mainVisual .wrapper img {
    height: 70vw;
    bottom: -12vw;
    opacity: 0.25;
}
#mainVisual.index_mainVisual .wrapper svg {
    width: 65vw;
}


}
@media print, screen and (min-width: 768px) {
#mainVisual.index_mainVisual .wrapper,
#mainVisual.index_mainVisual .wrapper img {
    max-height: 50rem;
    height: 60vw;
}
#mainVisual.index_mainVisual .wrapper img {
    padding-top: 2vw;
    padding-bottom: 0;
    max-width: 57vw;
    margin-right: -4vw;
}
#mainVisual.index_mainVisual .wrapper svg {
    width: 44vw;
    padding-left: 15px;
    margin-top: -3em;
}

}
@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
   
}
@media print, screen and (min-width: 992px) {
#mainVisual.index_mainVisual .wrapper,
#mainVisual.index_mainVisual .wrapper img {
    max-height: none;
    height: 50vw;
}
#mainVisual.index_mainVisual .wrapper img {
    padding-top: .5rem;
    padding-bottom: 1.5rem;
    max-width: none;
    margin-right: 0;
}
#mainVisual.index_mainVisual .wrapper svg {
    width: 45vw;
    margin-left: 5em;
    margin-right: .5em;
    padding-left: 0;
}

}
@media print, screen and (min-width: 1200px) {

#mainVisual.index_mainVisual .wrapper,
#mainVisual.index_mainVisual .wrapper img {
    height: 60rem;
}
#mainVisual.index_mainVisual .wrapper img {
    padding-top: .5rem;
    padding-bottom: 1.5rem;
}
#mainVisual.index_mainVisual .wrapper svg {
    width: 39em;
    margin-left: 5em;
    margin-right: .5em;
    margin-top: -3em;
}



}









/*------------------------------------

------------------------------------*/ 

#news {
    position: relative;
    z-index: 10;
}
#news #ticker {
    position: relative;
    z-index: 1000;
}
.ticker {
    width: 100%;
}
.ticker .list_ticker {
  position: relative;
  list-style: none;
  height: 100%;
  padding: 0;
  margin: 0;
}
.ticker .list_ticker .ticker-item {
  position: absolute;
  
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top:50%;

  left: 0;
  width: 100%;
  padding-right: 0;
  opacity: 0;
}
.ticker .list_ticker .ticker-item a {
  transition: transform 5s linear;
  font-weight: bold;
  letter-spacing: 0.06em;
  position: relative;
  width: 100%;
  line-height: 1.5em;
  display: block;
  padding: 0.5em 2rem 0.5em 0;
}
.ticker .list_ticker .ticker-item a .ticker-title {
  position: relative;
}
.ticker .list_ticker .ticker-item a .ticker-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    display: block;
    -webkit-transition: .5s;
    transition: .5s;
}
.ticker .list_ticker .ticker-item a > svg {
    content: "";
    position: absolute;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top:50%;
    width: 1.2rem;
    height: 1.2rem;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px)  {
    .ticker .list_ticker .ticker-item a:hover .ticker-title:after  {
        width: 100%;
    }
    .ticker .list_ticker .ticker-item a:hover > svg {
        right: -2rem;
    }
}

.fadeIn {
  opacity: 0;
}
.fadeIn.run {
  animation: fadeInDown 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}
.fadeOut {
  opacity: 1;
}
.fadeOut.run {
  animation: fadeOutDown 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


@media only screen and (max-width: 767px) {

#news #ticker {
    width : 110vw;
    height: 6rem;
    margin-bottom: -2.25rem;
    -webkit-border-radius: 5rem;
    border-radius: 5rem;
    padding-left: 15px;
}
#news #ticker > * > svg {
    width: 2.5rem;
    height: 2.5rem;
}
.ticker {
    padding-left: 15px;
}
.ticker .list_ticker .ticker-item {
    max-width : calc( 100vw - 15px - 3rem - 15px - 2.5rem ) ;
    max-width : -webkit-calc( 100vw  - 15px - 3rem - 15px - 2.5rem ) ;
}

}
@media only screen and (max-width: 575px) {

#news #ticker {
    height: 10rem;
}


}
@media print, screen and (min-width: 768px) {

#news #ticker {
    margin-top: .5rem;
    margin-bottom: -10rem;
    left: 0;
    padding-left: 6rem;
    width : 100vw;
    height: 9.5rem;
    top : calc( -9.5rem / 2) ;
    top : -webkit-calc(-9.5rem / 2) ;
    -webkit-border-radius: 5rem ;
    border-radius: 5rem;
}
#news #ticker > * > svg {
    width: 3rem;
    height: 3rem;
}
.ticker {
    padding-left: 2.2rem;
}
.ticker .list_ticker .ticker-item {
    max-width: 75vw;
}


}
@media print, screen and (min-width: 992px) {

#news #ticker {
    left: 10rem;
    padding-left: 8rem;
}
.ticker .list_ticker .ticker-item {
    max-width: 70vw;
}

}
@media print, screen and (min-width: 1200px) {

#news #ticker {
    left: 18rem;
    padding-left: 11rem;
    width : calc(100vw - 18rem) ;
    width : -webkit-calc(100vw - 18rem) ;
}
.ticker .list_ticker .ticker-item {
    max-width: 800px;
}


}










/*------------------------------------
選べるカウンセリング方法
------------------------------------*/ 


#counseling_method {    }

.counseling_method-item {
    overflow: hidden;
}
.counseling_method-item .thumbnail {
    padding-bottom: 70%;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}



@media only screen and (max-width: 767px) {
#counseling_method .container {
}

}
@media only screen and (max-width: 575px) {

#counseling_method .container .headline br.hidden-xs {
    display: none;
}


}
@media print, screen and (min-width: 768px) {

#counseling_method .container {
}



}
@media print, screen and (min-width: 992px) {
#counseling_method .container {

}


}
@media print, screen and (min-width: 1200px) {
}








/*------------------------------------
はじめてのカウンセリング。
------------------------------------*/ 

#counseling {    }

@media only screen and (max-width: 767px) {

#counseling .container {
}

}
@media only screen and (max-width: 575px) {

}
@media print, screen and (min-width: 768px) {

#counseling .container {
}



}
@media print, screen and (min-width: 992px) {
#counseling .container {
}
}
@media print, screen and (min-width: 1200px) {
}







/*------------------------------------
当センターの６つの特徴
------------------------------------*/ 

#feature {}

.feature-item {
    overflow: hidden;
}
.feature-item .thumbnail {
    padding-bottom: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
}
.feature-item .thumbnail > * {
    position: absolute;
    left: .45em;
    letter-spacing: 0.1em;
    z-index: 10;
}
.feature-item .thumbnail:before {
    content: "";
    position: absolute;
    width: 15rem;
    height: 15rem;
    background-color: #fff;
    left: -7.5rem;
    top: -7.5rem;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}
.feature-item .headline .title {
    text-align: justify;
}

@media only screen and (max-width: 767px) {
.feature-item {
    padding-bottom: 3rem;
}
.feature-item .headline {
    padding: 1.5rem 0 1rem;
}
.feature-item .thumbnail:before {
    width: 15rem;
    height: 15rem;
    left: -7.5rem;
    top: -8.5rem;
}

}
@media only screen and (max-width: 575px) {
.feature-item {
    padding-bottom: 2rem;
}




}
@media print, screen and (min-width: 768px) {

.feature-item {
    padding-bottom: 4.6rem;
}
.feature-item .headline {
    padding: 2.25rem 0 2rem;
}
.feature-item .detail_block {
    letter-spacing: 0.05em;
    line-height: 1.9em;
}
.feature-item .thumbnail:before {
    width: 15rem;
    height: 15rem;
    left: -7.5rem;
    top: -8.5rem;
}

}
@media print, screen and (min-width: 992px) {

#feature .container {
    padding-top: 1.5rem;
}
.feature-item {
    width: 28.5rem;
}
.feature-item .thumbnail:before {
    top: -7.5rem;
}

}
@media print, screen and (min-width: 1200px) {
}
















/*------------------------------------

------------------------------------*/ 

.list-banner {
    margin-left: -15px;
    margin-right: -15px;
}
.banner-item {
    padding: 0 15px;
    width: 100%;
}
.banner-item a {
    border: 1px solid #d0d0d0;
    -webkit-border-radius: 4rem;
    border-radius: 4rem;
    overflow: hidden;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    letter-spacing: .1em;
    height: 100%;
    display: flex;
    display: -moz-flex;
    display:-webkit-flex;
    align-items:center;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    flex-direction: row;
    -webkit-user-select: none;
    user-select: none;
}
.banner-item a img {
    display: block;
}
.banner-item a > span {
    font-size: clamp(14px, 2vw, 2.2rem);
}


@media (hover: hover) and (pointer: fine) and (min-width: 768px) {

    .banner-item a:hover > * {
        filter:  alpha(opacity=45%);  opacity:.45;
    }

    
}





@media only screen and (max-width: 767px) {

.banner-item {
    max-width: 50%;
    height: 8rem;
}
.banner-item a img {
    max-height: 35%;
    width: auto;
}
.banner-item a > span {
    font-size: clamp(12px, 4.5vw, 1.4rem);
}


}
@media only screen and (max-width: 575px) {

.banner-item {
    max-width: 100%;
    height: 8rem;
}
.banner-item a > span {
    font-size: clamp(16px, 4.5vw, 3rem);
}

}
@media print, screen and (min-width: 768px) {


.banner-item {
    max-width: 50%;
    height: 8rem;
}
.banner-item a {
    font-size: 2.2rem;
}
.banner-item a img {
    max-height: 40%;
    width: auto;
}

}
@media print, screen and (min-width: 992px) {

}
@media print, screen and (min-width: 1200px) {

.list-banner {
    margin-left: 0;
    margin-right: 0;
}

.banner-item {
    max-width: 48rem;
    padding: 0;
}
.banner-item a img {
    max-height: 50%;
}

}











/*------------------------------------
カウンセラーのご紹介
------------------------------------*/ 


#counselor .container .btn_block {
    margin-top: -3.25rem;
}


@media only screen and (max-width: 767px) {

#counselor .container {
    padding-top: 2rem;
    padding-bottom: 4rem;
}
#counselor .container > * {
    padding-top: 5rem;
    padding-bottom: 5rem;
    -webkit-border-radius: 5rem;
    border-radius: 5rem;
}
#counselor .container .counselor_block {
    padding-left: 30px;
}
#counselor .container .headline br {
    display: block !important;
}





}
@media only screen and (max-width: 575px) {

#counselor .container {
    padding-left: 0;
    padding-right: 0;
}
#counselor .container > * {
    padding-top: 3rem;
    padding-bottom: 3rem;
    -webkit-border-radius: 0;
    border-radius: 0;
}
#counselor .container .counselor_block {
    padding-left: 15px;
    padding-right: 15px;
}
#counselor .container .headline {
    text-align: center;
}
#counselor .container .headline br {
    display: none!important;
}




}
@media print, screen and (min-width: 768px) {

#counselor .container {
    padding-top: 5rem;
    padding-bottom: 8rem;
}
#counselor .container > * {
    padding-top: 5rem;
    padding-bottom: 5rem;
    -webkit-border-radius: 5rem;
    border-radius: 5rem;
}
#counselor .container .counselor_block {
    padding-left: 30px;
}

}
@media print, screen and (min-width: 992px) {

#counselor .container > * {
    padding-top: 11rem;
    padding-bottom: 9.5rem;
    -webkit-border-radius: 10rem;
    border-radius: 10rem;
}

#counselor .container .counselor_block {
    width: 36.5rem;
    padding: 0;
}

}
@media print, screen and (min-width: 1200px) {

#counselor .container {
    padding-top: 7rem;
    padding-bottom: 10rem;
}

}













/*------------------------------------

------------------------------------*/ 

#guidance {}
#guidance .guidance-item,
#guidance .guidance-item iframe {
    width: 100%;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px)  {

}

@media only screen and (max-width: 767px) {


#guidance .guidance-item iframe {
    height: 50vh;
    min-height: 25rem;
}


}
@media only screen and (max-width: 575px) {

#guidance .guidance-item hr {
    display: block !important;
    margin: 0 0 3rem;
    border-color: #d0d0d0;
}








}
@media print, screen and (min-width: 768px) {

#guidance .wrapper .container {
    padding-bottom: 6rem;
}
#guidance .guidance-item {
    max-width: 47rem;
    width: 100%;
}
#guidance .guidance-item iframe {
    height: 24rem;
}


}
@media print, screen and (min-width: 992px) {

}
@media print, screen and (min-width: 1200px) {




}






















/*------------------------------------

------------------------------------*/ 

@media only screen and (max-width: 767px) {

}
@media only screen and (max-width: 575px) {

}
@media print, screen and (min-width: 768px) {


}
@media print, screen and (min-width: 992px) {
}
@media print, screen and (min-width: 1200px) {
}



