/*
@media screen and (max-width:700px){
    body{
        height: 100px;
    }
}
*/
/*
@media screen and (max-width:700px){
    body{
        font-size: 1.5em;
    }
}
*/



@media screen and (max-width:700px){
    header{
        width: 100%;
        height: auto;
        position: relative;
    }
}






























@media screen and (min-width:700px){
    .globalMenuSp  {
        display: none;
    }
    .navToggle {
    display: none;
    }
}
nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: transparent;
    color: #000;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    z-index: 9999;
}
 
nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
nav.globalMenuSp ul li:nth-child(2) {
    background-color: #65cde8;
}
nav.globalMenuSp ul li:nth-child(3) {
    background-color: #65cde8;
}
nav.globalMenuSp ul li:nth-child(4) {
    background-color: #65cde8;
}
nav.globalMenuSp ul li:nth-child(5) {
    background-color: #65cde8;
} 
nav.globalMenuSp ul li:nth-child(6) {
    background-color: #65cde8;
} 


nav.globalMenuSp ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #fff;
}
nav.globalMenuSp ul li:nth-child(1) {
    background-color: transparent;
    height: 84px;
}
 
/* 最後はラインを描かない */
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
}
 
nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration: none;
}
 
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateX(0%);
}



@media screen and (max-width:700px){
.navToggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    right: 12px;
    top: 20px;
    width:50px;
    height: 44px;
    cursor: pointer;
    z-index: 9999;
    text-align: center;
    }
}
 @media screen and (max-width:700px){
.navToggle span {
/*
    display: block;
    position: absolute;     .navToggleに対して 
    width: 35px;
    border-bottom: solid 3px #ffffff;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
    以下、実験。（https://www.nxworld.net/tips/12-css-hamburger-menu-active-effect.htmlの共通CSS）
*/
    position: absolute;
    left: 0;
    width: 80%;
    margin-left: 10%;
    height: 4px;
    background-color: #65cde8;
    border-radius: 4px;
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
     }
}
 
.navToggle span:nth-child(1) {
    top: 0px;
}
 
.navToggle span:nth-child(2) {
    top: 20px;
}
 
.navToggle span:nth-child(3) {
    bottom: 0px;
}
 
.navToggle span:nth-child(4) {
    border: none;
    color: #eee;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
}


/*ここから実験*/
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
/*
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
*/

/*　回転のやつ
    -webkit-transform: translateY(20px) rotate(-315deg);
    transform: translateY(20px) rotate(-315deg);
*/
    
    -webkit-transform: translateY(20px) rotate(-45deg);
    transform: translateY(20px) rotate(-45deg);
}


.navToggle.active span:nth-child(2) {
/*   回転のやつ 
    opacity: 0;
*/
    left: 60%;
    opacity: 0;
    -webkit-animation: active-menu-bar02 .8s forwards;
    animation: active-menu-bar02 .8s forwards;
}
/*一番やりたいやつ*/
@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.navToggle.active span:nth-child(3) {
/*
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
*/
/*　回転のやつ。
    -webkit-transform: translateY(-20px) rotate(315deg);
    transform: translateY(-20px) rotate(315deg);
*/
    -webkit-transform: translateY(-20px) rotate(45deg);
    transform: translateY(-20px) rotate(45deg);
}

/*
.navToggle.active span:nth-child(3){
    display: none;
}
*/

/*一番やりたいやつ*/
.navToggle::after {
  position: absolute;
  top: 65%;
  left: 64%;
  display: block;
  content: '';
  width: 40px;
  height: 40px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  border: 3px solid transparent;
  transition: all .75s;
}

.navToggle.active::after {
  -webkit-animation: circle .4s .25s forwards;
  animation: circle .4s .25s forwards;
}
@-webkit-keyframes circle {
  0% {
    border-color: transparent;
    -webkit-transform: rotate(0);
  }
  25% {
    border-color: transparent #65cde8 transparent transparent;
  }
  50% {
    border-color: transparent #65cde8 #65cde8 transparent;
  }
  75% {
    border-color: transparent #65cde8 #65cde8 #65cde8;
  }
  100% {
    border-color: #65cde8;
    -webkit-transform: rotate(-680deg);
  }
}
@keyframes circle {
  0% {
    border-color: transparent;
    transform: rotate(0);
  }
  25% {
    border-color: transparent #65cde8 transparent transparent;
  }
  50% {
    border-color: transparent #65cde8 #65cde8 transparent;
  }
  75% {
    border-color: transparent #65cde8 #65cde8 #65cde8;
  }
  100% {
    border-color: #65cde8;
    transform: rotate(-680deg);
  }
}































@media screen and (max-width:700px){
    .FI{
        width: 200px;
        margin-top: 25px;
    }
}

@media screen and (max-width:700px){
    .new{
        display: none;
    }
}

@media screen and (max-width:700px){
    #watashi
    {
        display: none;
    }
}

@media screen and (max-width:860px){
    #watashi li a
    {
        font-size: 12px;
    }
}
@media screen and (max-width:860px){
    #watashi li a
    {
        font-size: 12px;
    }
}@media screen and (max-width:740px){
    #watashi li a
    {
        font-size: 9px;
    }
}


@media screen and (max-width:700px){
    .neu{
        display: none;
    }
}


.fes_3ul {
    width: 100%;
    line-height: 40px;
    overflow: hidden;
    position: fixed;
    display: block;
    list-style: none;
    padding: 0;
    margin-top: 84.2px;
    }

.fes_3ul li {
    position: relative;
    float: left;
    display: block;
    text-align: center;
    font-weight: 600;
    width: 33.333333333333333%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

.fes_3ul li a {
    height: 41px;
    line-height: 41px;
    display: block;
    margin: 0;
    padding: 0;
    background-color: #65cde8;
    color: #fff;
    font-size: 3.1vw;
    text-decoration: none;
    }

.fes1{
    border-right: solid 2px #fff;
}
.fes2{
    border-right: solid 2px #fff;
}

@media screen and (min-width:701px){
    .fes_3ul li {
        display: none;
    }
}

/*
.par_2ul {
    width: 100%;
    line-height: 40px;
    overflow: hidden;
    position: fixed;
    display: block;
    list-style: none;
    padding: 0;
    margin-top: 84.2px;
}
.par_2ul li {
    position: relative;
    float: left;
    text-align: center;
    font-weight: 600;
    width: 50%;
    box-sizing: border-box;
    background-color: #e61d5e;
    font-size: 3.1vw;
    }
*/

.par_2ul {
    width: 100%;
    line-height: 40px;
    overflow: hidden;
    position: fixed;
    display: block;
    list-style: none;
    padding: 0;
    margin-top: 84.2px;
    }

.par_2ul li {
    position: relative;
    float: left;
    text-align: center;
    font-weight: 600;
    width: 50%;
    box-sizing: border-box;
    display: block;
    margin: 0;
    padding: 0;
    }

.par_2ul li a {
    height: 41px;
    line-height: 41px;
    display: block;
    margin: 0;
    padding: 0;
    background-color: #65cde8;
    color: #fff;
    font-size: 3.1vw;
    text-decoration: none;
    }

.par1 {
    border-right: solid 2px #fff;
    
}

@media screen and (min-width:701px){
    .par_2ul li {
        display: none;
    }
}


.theme_2ul {
    width: 100%;
    line-height: 40px;
    overflow: hidden;
    position: fixed;
    display: block;
    list-style: none;
    padding: 0;
    margin-top: 84.2px;
}
.theme_2ul li {
    position: relative;
    float: left;
    text-align: center;
    font-weight: 600;
    width: 33.333333333333333333333333%;
    box-sizing: border-box;
    display: block;
    margin: 0;
    padding: 0;
}
.theme_2ul li a {
    height: 41px;
    line-height: 41px;
    display: block;
    margin: 0;
    padding: 0;
    background-color: #65cde8;
    color: #fff;
    font-size: 3.1vw;
    text-decoration: none;
}

.the1 {
    border-right: solid 2px #fff;
}

@media screen and (min-width:701px){
    .theme_2ul{
        display: none;
    }
}



.com_2ul {
    width: 100%;
    line-height: 40px;
    overflow: hidden;
    position: fixed;
    display: block;
    list-style: none;
    padding: 0;
    margin-top: 84.2px;
    }

.com_2ul li {
    position: relative;
    float: left;
    text-align: center;
    font-weight: 600;
    width: 50%;
    box-sizing: border-box;
    display: block;
    margin: 0;
    padding: 0;
    }

.com_2ul li a {
    height: 41px;
    line-height: 41px;
    display: block;
    margin: 0;
    padding: 0;
    background-color: #65cde8;
    color: #fff;
    font-size: 3.1vw;
    text-decoration: none;
    }

.com1 {
    border-right: solid 2px #fff;
    
}

@media screen and (min-width:701px){
    .com_2ul li {
        display: none;
    }
}

@media screen and (max-width:700px){
    .kousinbox{
        margin-top: -40px;
    }
}
@media screen and (min-width:700px){
    .kousinbox {
        display: none;
    }
}


@media screen and (max-width:700px){
.kousinsp{
    width: 100%;
    height: 30px;
    line-height: 30px;
    background-color: #fff;
    text-align: center;
    border-top: solid 2px #65cde8;
    border-bottom: solid 2px #65cde8;
    text-decoration: none;
    color: #65cde8;
    font-size: 1.5em;
    }
}


@media screen and (max-width:700px){
    .new_text
    {
        font-size: 1em;
    }
}



@media screen and (max-width:700px){
    .topban_4pic
    {
        width: 90%;
        margin-top:130px;
        margin-left: 5%;
    }
}

@media screen and (max-width:700px){
    .alone{
        margin-top: 200px;
    }
}



@media screen and (max-width:700px){
    .title{
/*
        top: -40px;
        font-size: 2vw;
        width: 94%;
        margin-left: 3%;
        position: relative;
*/
        
        background-color: #65cde8;
        border: solid 3px #fff;
        color: #fff;
        margin-left: calc(3% + 3px);
        letter-spacing: 0.3em;
        position: relative;
        padding: 0.5em 0;/*上下の余白*/
        text-align: center;
        width: calc(94% - 6px);
        top: -40px;
/*
        box-sizing: border-box;
        box-shadow: 0px 0px 0px 3px #65cde8;
*/
        font-size: 2vw;
    }
}

@media screen and (max-width:700px){
    .text_box{
        width: 94%;
        margin-left: 3%;
        padding: 10px;
        font-size: 3.4vw;
        margin-top: -10px;
    }
}

@media screen and (max-width:700px){
    .title_da{
/*
        top: -40px;
        font-size: 2vw;
        width: 94%;
        margin-left: 3%;
        position: relative;
*/
        
        background-color: #65cde8;
        border: solid 3px #ffffff;
        color: #fff;
        margin-left: calc(3% + 3px);
        letter-spacing: 0.3em;
        position: relative;
        padding: 0.5em 0;/*上下の余白*/
        text-align: center;
        width: calc(94% - 6px);
        top: -80px;
        box-sizing: border-box;
        box-shadow: 0px 0px 0px 3px #65cde8;
        font-size: 2vw;
    }
}
/*
@media screen and (max-width:700px){
.title_da {
        top: -80px;
        font-size: 2vw;
        width: 94%;
        margin-left: 3%;
        position: relative;
    }
}
*/

@media screen and (max-width:700px){
    .text_box_da{
        width: 94%;
        margin-left: 3%;
        padding: 10px;
        font-size: 3.4vw;
        margin-top: -40px;
    }
}


@media screen and (max-width:700px){
    .par_table_res{
        border: solid 3px #65cde8;
        border-collapse: separate;
        border-collapse: collapse;
        width: 94%;
        margin-left: 3%;
        font-size: 0.9em;
    }
    .par_pdf_table {
        border: solid 3px #65cde8;
        border-collapse: collapse;
        margin-left: 3%;
        font-size: 0.8em;
        width: 94%;       
}
}
@media screen and (max-width:700px){
    .par_table {
        display: none;
    }
}

@media screen and (min-width:700px){
    .par_table_res {
        display: none;
    }
}



.text_box_da_res {
    width:70%;
    height: auto;
    margin-left: 15%;
    margin-top: 5%;
    margin-bottom: 5%;
    border: double #65cde8 9px;
    position: relative;
    background-color: #fff;
    font-size: 1.3vw;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
    box-sizing: border-box;  
}




@media screen and (max-width:700px){
    .text_box_da_res {
        width: 94%;
        margin-left: 3%;
        padding: 10px;
        font-size: 3.4vw;
        margin-top: -40px;
    }
}


@media screen and (max-width:700px){
    .com_plan_pc{
        display: none;
    }
}














@media screen and (max-width:700px){
.ggmap {
    position: relative;
    padding-top: 30px;
    height:170px;
    overflow: hidden;
    }
}

@media screen and (max-width:700px){
    .next{
        margin-top: 0px;
    }
}
@media screen and (max-width:700px){
    .jousetu {
        width: 100%;
        height: 220px;
        margin-top: 0%;
    }
}


@media screen and (min-width:701px){
.tw_ti
    {
        padding-left: 16%;
        padding-top: 35px;
        height: 1px;
        position: relative;
    }
}
@media screen and (max-width:700px){
    .tw_ti{
        display: none;
    }
}


@media screen and (max-width:700px){
    .oalp{
        width: 90%;
        height:110px;
        margin-left: 5%;
    }
}
@media screen and (max-width:700px){
    .oalp a {
        font-size: 16px;
    }
}



@media screen and (max-width:700px){
    .sns_ban
    {
        width: 60%;
        margin-left: -2%;
        margin-top: 40px;
    }
}
@media screen and (max-width:700px){
.sns style_ban div {
    width: calc(100%/4);
    }
}
@media screen and (max-width:700px){
.otoiawase {
    font-size: 2.4vw;
    }
}



@media screen and (max-width:700px){
    .blank{
        margin-top: -170px;
    }
}





.theme1 {
    border-right: solid 2px #fff;
    overflow: visible;
}
.theme2 {
    border-right: solid 2px #fff;
    overflow: visible;
}
@media screen and (min-width:701px){
    .par_4ul li{
        display: none;
    }
}

.par_4ul{
        width: 100%;
        line-height: 40px;
        overflow: hidden;
        position: fixed;
        display: block;
        list-style: none;
        padding: 0;
        margin-top: 84.2px;
    z-index: 100;
}
.par_4ul li{
        position: relative;
        float: left;
        text-align: center;
        font-weight: 600;
        width: 50%;
        box-sizing: border-box;
        display: inline;
        margin: 0;
        padding: 0;
}
.par_4ul li a {
    height: 31px;
    line-height: 31px;
    display: block;
    margin: 0;
    padding: 0;
    background-color: #65cde8;
    color: #fff;
    font-size: 3.1vw;
    text-decoration: none; 
}
.par_4ul li:nth-child(1){
    border-right: solid 0.5px #fff;
    border-bottom: solid 0.5px #fff;
}
.par_4ul li:nth-child(2){
    border-left: solid 0.5px #fff;
    border-bottom: solid 0.5px #fff;
}
.par_4ul li:nth-child(3){
    border-right: solid 0.5px #fff;
    border-top: solid 0.5px #fff;
}
.par_4ul li:nth-child(4){
    border-left: solid 0.5px #fff;
    border-top: solid 0.5px #fff;
}

/*
.left_li {
    float: left;
}
*/

@media screen and (min-width:700px){
    .blank_par{
        display: none;
    }
}
.blank_par {
    height: 40px;
}

@media screen and (min-width:700px){
    .par_4ul {
        display: none;
    }
}


@media screen and (max-width:700px){
    .blank_com_plan 
    {
/*        height: 110px;*/
        width: 100%;
    }
}
.blank_com_plan {
    height: 70px;
}
.com_plan_sp {
    margin-top: 50px;
}

@media screen and (min-width:700px){
    .com_plan_sp{
        display:none;
    }
}



@media screen and (min-width:701px){
    .par_4ul li{
        display: none;
    }
}

.parpro_4ul{
        width: 100%;
        line-height: 20px;
        overflow: hidden;
        position: fixed;
        display: block;
        list-style: none;
        padding: 0;
        margin-top: 84.2px;
    z-index: 100;
}
.parpro_4ul li{
        position: relative;
        float: left;
        text-align: center;
        font-weight: 600;
        width: 50%;
        box-sizing: border-box;
        display: inline;
        margin: 0;
        padding: 0;
}
.parpro_4ul li a {
    height: 31px;
    line-height: 31px;
    display: block;
    margin: 0;
    padding: 0;
    background-color: #65cde8;
    color: #fff;
    font-size: 3.1vw;
    text-decoration: none; 
}
.parpro_4ul li:nth-child(1){
    border-right: solid 0.5px #fff;
    border-bottom: solid 0.5px #fff;
}
.parpro_4ul li:nth-child(2){
    border-left: solid 0.5px #fff;
    border-bottom: solid 0.5px #fff;
}
.parpro_4ul li:nth-child(3){
    border-right: solid 0.5px #fff;
    border-top: solid 0.5px #fff;
}
.parpro_4ul li:nth-child(4){
    border-left: solid 0.5px #fff;
    border-top: solid 0.5px #fff;
}

@media screen and (min-width:700px){
    .parpro_4ul {
        display: none;
    }
}

.all_media {
    background-image: url(../images/bg_all_color.jpg);
    margin-top: 90px;
    padding-top: 0px;
    padding-bottom: 20px;
    background-attachment: fixed;
}

@media screen and (min-width:700px){
    .all_media {
        margin-top: 125px;
    }
}

.haba {
    width: 200%;
}


/*
@media screen and (max-width:700px){
    .youtube iframe {
        width: 80%;
    }
}
*/

/*width="560" height="315"*/
.youtube iframe {
    width: 40vw;
    height: 22.7vw;
    position: relative;
    margin-left: 0em;
    border: solid 1px #fff;
}

.soundcloud iframe {
    width: 40vw;
    height: auto;
    position: relative;
    margin-left: 0em;
    border: solid 1px #fff;
    position: relative;
}

/*
.youtube iframe {
    width: 60%;
    }
*/
@media screen and (max-width:700px) {
    .youtube iframe {
        width: 83vw;
        height: 49vw;
        margin-left: 0em;
        border: solid 1px #fff;
    }

    .soundcloud iframe {
        width: 83vw;
        height: 49vw;
        margin-left: 0em;
        border: solid 1px #fff;
    }

}
