@charset "utf-8";



/* normal */
@font-face {
    font-family: "senobi";
    src: url("../fonts/Senobi-Gothic-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
  }
  /* bold */
  @font-face {
    font-family: "senobi";
    src: url("../fonts/Senobi-Gothic-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
  }
  /* italic */
  @font-face {
    font-family: "senobi";
    src: url("../fonts/Senobi-Gothic-Medium.ttf") format("truetype");
    font-weight: medium;
    font-style: normal;
  }

  @import url('https://fonts.googleapis.com/css2?family=Sarpanch:wght@400;500;600;700;800;900&display=swap');

:root{
    --main-bg-color:rgb(0,17,36);
    --title-bg-color:rgb(16,16,13);
    --sub-color:rgb(237,180,24);
}

body,html{
    font-family: "Noto Sans JP", sans-serif;
    overflow-x: hidden;
}

ul,li{
    list-style: none;
    padding: 0;
}


.title{
    height: 50px;
    width: 100%;
    background-color: var(--title-bg-color);
    text-align: center;
    color: white;
}

.title p{
    height: 100%;
    line-height: 50px;
    font-size: 2rem;
    font-family: "Sarpanch";
    font-style: italic;
}

.phirosophy,
.three_points,
.online_coaching,
.goal_setting,
.ceo,
.contact,
.three_challenge,
.customer_voice{
    height: 95vh;
}

/* fade in フェードイン*/
.scroll-up {
    opacity: 0; 
    visibility: hidden;
    transform: translateY(50px);
    transition: all 1s;
  }
  .scroll-up.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.scroll-up2 {
    opacity: 0; 
    visibility: hidden;
    transform: translateY(50px);
    transition: all 1s;
  }
  .scroll-up2.is-show2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.scroll-up3 {
    opacity: 0; 
    visibility: hidden;
    transform: translateY(50px);
    transition: all 1s;
  }
  .scroll-up3.is-show3 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.slide-right {
    opacity: 0; 
    visibility: hidden;
    transform: translateX(100px);
    transition: all 1s;
  }
.slide-right.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}

.slide-right2 {
    opacity: 0; 
    visibility: hidden;
    transform: translateX(100px);
    transition: all 1.5s;
  }
.slide-right2.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}

.slide-right3 {
    opacity: 0; 
    visibility: hidden;
    transform: translateX(100px);
    transition: all 2s;
  }
.slide-right3.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}

.slide-right4 {
    opacity: 0; 
    visibility: hidden;
    transform: translateX(100px);
    transition: all 2.5s;
  }
.slide-right4.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}



/* じわっと表示 */

.blur{
    animation-name:blurAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
  }
  
  @keyframes blurAnime{
    from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
    }
  
    to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
    }
  }
   
  .blurTrigger{
      opacity: 0;
  }

/* hamburger */
  .l-header {
    display: block;
    z-index: 999;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background-color: var(--main-bg-color);
  }
  
    .c-hamburger {
    position: relative;
    width: inherit;
    height: inherit;
    margin: 0;
    border: none;
    background-color: var(--main-bg-color);
    cursor: pointer;
  }
  
  
  .c-hamburger span {
    display: block;
    position: relative;
    left: 50%;
    width: 30px;
    height: 2px;
    transform: translateX(-50%);
    background: #fff;
    transition: all 0.4s;
  }
  
  
  .c-hamburger span:nth-of-type(1) {
    top: -4px;
  }
  
  .c-hamburger span:nth-of-type(2) {
    top: 1px;
  }
  
  
  .c-hamburger span:nth-of-type(3) {
    top: 6px;
  }
  
  
  .c-hamburger .c-hamburger__text {
    display: block;
    top: 12px;
    background: transparent;
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
  }
  
  
  .c-hamburger.is-active span:nth-of-type(1) {
    top: 0;
    transform: translateX(-50%) rotate(225deg);
  }
  
  
  .c-hamburger.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  
  
  .c-hamburger.is-active span:nth-of-type(3) {
    top: -4px;
    transform: translateX(-50%) rotate(-225deg);
  }
  
  .p-header__nav {
    display: flex;
    z-index: 10;
    position: absolute;
    top: 0;
    right: -100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: transparent;
    font-weight: 700;
    opacity: 0;
    transition: 0.6s;
  }
  
  
  @media screen and (min-width:1024px) {
    .p-header__nav {
      position: static;
      height: 100%;
      opacity: initial;
      /* align-items: flex-end; */
    }
  }
  
  .p-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
    /* padding: 13px 20px; */
  }
  
  .p-header__title {
    width: 100%;
    max-width: 250px;
    height: 65px;
    background-color: var(--main-bg-color);
}
  
.p-header__title a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}
  
  
  .p-header__title a img {
    width: 100%;
    display: block;
    height: auto;
}
  
  
  .p-header__hamburger {
    z-index: 100;
    position: absolute;
    top: 0;
    right: 0;
    width: 95px;
    height: 100%;
  }
  
  @media screen and (min-width:1024px) {
    .p-header__hamburger {
      display: none;
    }
  }
  
  .p-header__nav.is-active {
    position: fixed;
    top: 0;
    right: 0;
    background: var(--main-bg-color);
    opacity: 1;
    transition: 0.6s;
  }
  
  .p-nav {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  
  
  @media screen and (min-width:1024px) {
    /* .p-nav {
      padding-top: 16px;
      padding-bottom: 16px;
      width: 60%;
    } */

    .p-nav {
        padding-top: 16px;
        padding-bottom: 16px;
        /* margin-right: 35px; */
        width: 75%;
    }

    .p-nav__inner {
        width: 90%;
    }
  }
  
  
  .p-nav__list {
    display: block;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    background: var(--main-bg-color);
  }
  
  @media screen and (min-width:1024px) {
    .p-nav__list {
      display: flex;
      /* background: #fff; */
      padding-right: 0;
    }
  }
  
  .p-nav__item {
    position: relative;
    width: 100%;
  }
  
  .p-nav__link {
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px;
    text-align: center;
    color: white;
  }

/* header end */

/* top */
.top{
    height: 95vh;
    width: 100%;
    background-image: url(../img/top.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.top_title {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;

}

.top_title_area{
    height: 100%;
    width: 60%;
    display: flex;
    background-color: black;
    flex-direction: column;
    justify-content: center;
    line-height: 2rem;
    padding-left: 2%;
    padding-top: 2vh;
    padding-bottom: 2vh;
}

.top_title_area h1{
    width: 100%;
    font-size: 1.5rem;
}

.top_title_area .title_ja{
    color: var(--sub-color) ;
}

.title_en{
    color: white;
    font-family: "Sarpanch", sans-serif;
}

.top_title_area .title span{
    font-size: 1.2rem;
}

img.logo{
    width: 15%;
    padding-left: 2%;
}

/* top end */

/* phirosophy */
.phirosophy{
    background: no-repeat center url("../img/phirosophy_bg.png");
    background-size: cover;
    /* position: relative; */
    display: flex;
    position: relative;
    height: 95vh;
}

.phirosophy img{
    width: 100%;
}

.phirosophy_text{
    position: absolute;
    width: 50%;
    text-align: center;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    font-size: 28px;
    line-height: 4rem;
}

.phirosophy_text h2 span{
    color: var(--sub-color);
}

/* phirosophy end */

/* three points */

.three_points{
    margin: auto;
}

.three_points h3 {
    line-height: 50px;
    font-size: 3rem;
    font-family: "Sarpanch";
    color: var(--sub-color);
    margin: 10px;
}

.three_points ul{
    display: flex;
    justify-content: space-around;
}

.three_points ul li{
    width: 33%;
    text-align: right;
    margin-top: 50px;
}

.three_points ul li img{
    width: 100%;
    /* box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35); */
}

.three_points ul li p:nth-of-type(1){
    text-align: right;
    font-size: 24px;
    font-weight: bold;
    font-family: "sarpanch";
    padding-right: 25px;
}

.three_points ul li p::before{
    content: '';
    background-color: var(--sub-color);
    height: 5px; 
    margin-top: 6px;
    margin-bottom: 6px;
    margin-right: 10px;
    width: calc((100% - 132px)/2);
    display: inline-block;
  
  }

/* .three_points ul li p:nth-of-type(2){
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    background-color: var(--main-bg-color);
    color: white;
    font-family: "senobi";
    display: inline-block;
    padding: 15px 10px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
    margin-top: -1px;
} */

/* three points end */

/* online coaching */
section.online_coaching {
    height: auto;
}

.online_coaching ul{
    width: 100%;
    display: flex;
    background-color: var(--main-bg-color);
}

.online_coaching ul li{
    width: 33.3%;
    position: relative;
}

.online_c_up_area{
    background-color: var(--main-bg-color);
    position: relative;
}

.online_c_up_area img{
    width: 100%;
}

.online_c_up_area p {
    background-color: white;
    position: absolute;
    bottom: 10px;
    text-align: center;
    width: 95%;
    font-size: 24px;
    padding: 10px 0;
    line-height: 35px;
    font-family: "senobi";
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.online_c_tex{
    background-color: var(--main-bg-color);
    color: white;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.online_c_tex p{
    line-height: 1.5em;
}

/* online coaching end */

/* goal setting */
.goal_setting{
    background: no-repeat center url("../img/goal_bg.jpg");
    background-size: cover;
    display: flex;
    align-items: center;
}

.goal_l{
    width: 30%;
}

.goal_l img{
    width: 100%;
}

.goal_r{
    width: 70%;
    position: relative;
    height: 100%;
}

.goal_r img{
    width: auto;
    height: 30%;
    position: absolute;
    right: 5%;
}

.goal_r img:nth-of-type(1){

    top: 70%;
}
.goal_r img:nth-of-type(2){
    top: 50%;
}
.goal_r img:nth-of-type(3){
    top: 30%;
 
}
.goal_r img:nth-of-type(4){
    top: 10%;

}


/* goal setting end */

/* ceo */
.ceo{
    background: no-repeat center url("../img/ceo_bg.jpeg");
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ceo_img{
    height: 90%;
}

#phone_ceo{
    display: none;
}
/* ceo end */

/* contact */
/* contact end */

/* three challenge */
.three_challenge_ttl p span{
    color: var(--sub-color);
    position: absolute;
    left: 10%;
}

.three_challenge h3{
    text-align: center;
    line-height: 50px;
    font-size: 2rem;
    font-family: "senobi";
    margin: 50px auto 00px;
    letter-spacing: 1px;
}

.three_challenge h3 span{
    color: var(--sub-color);
}

.three_m_challenge ul{  
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 100px auto 0;
}

.three_m_challenge ul li{
    width: 33%;
}


.three_m_challenge ul li img{
    width: 100%;
}

.three_m_challenge ul li p{
    text-align: right;
    font-size: 24px;
    font-weight: bold;
    font-family: "sarpanch";
    padding-right: 25px;

}

.three_m_challenge ul li p::before{
  content: '';
  background-color: var(--sub-color);
  height: 5px; 
  margin-top: 6px;
  margin-bottom: 6px;
  margin-right: 10px;
  width: calc((100% - 132px)/2);
  display: inline-block;

}



/* three challenge end */

/* customer voice */
.customer_voice ul{
    display: flex;
    flex-wrap:wrap ;
    justify-content: space-around;
    margin-top: 100px;
}

.customer_voice ul li{
    margin: 0;
    width: 32%;
}

.customer_voice ul li p{
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    font-family: "sarpanch";
    padding-right: 25px;
    margin-top: 20px;
}

 .customer_voice {
    height: 50vh;
}

/* customer voice end */

/* footer */
footer{
    overflow: hidden;
    height: 50px;
    background: var(--main-bg-color);
    text-align: center;
}

footer p{
    color: white;
    line-height: 50px;
} 

.kyosan{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    text-align: center;
    
}

.kyosan img {
    width: 16%;
    height: auto;
    margin: 2%;
  }

/* footer end*/



/* service.html */

/* service_top */
.service_top{
    height: 95vh;
    width: 100%;
    background-image: url(../img/service_top.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.service_top_title {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;

}

.service_top_title_area{
    height: 100%;
    width: 60%;
    display: flex;
    background-color: black;
    flex-direction: column;
    justify-content: center;
    line-height: 2rem;
    padding-left: 2%;
    padding-top: 2vh;
    padding-bottom: 2vh;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);

}

.service_top_title_area h1{
    width: 100%;
    font-size: 1.5rem;
}

.service_top_title_area .title_ja{
    color: var(--sub-color) ;
}

.service_title_en{
    color: white;
    font-family: "Sarpanch", sans-serif;
    text-align: center;
}

.service_top_title_area .title span{
    font-size: 1.2rem;
}
/* service_end */

/* concept */
.concept{
    width: 100%;
    height: 95vh;
    background-image: url(../img/concept.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.concept_text{
    text-align: center;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-color: black;
}

.concept_text h2{
    color:white;
    font-size: 30px;
    line-height: 2em;
    padding: 10px 30px;
}

.concept_text h2 span{
    color: var(--sub-color);
}


/* concept end*/



/* service_menu */
.service_menu ul{
    display: flex;
    justify-content: space-between;
}

.service_menu ul li{
    width: 34%;
}


.service_menu ul li img{
    width: 100%;
    height: 100%;
}
/* service_menu end*/

/* customer_voice2 */
.customer_voice2{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.customer_v_l{
    width: 50%;
    text-align: center;
}

.customer_v_l img{
    width: 90%;
}

.customer_v_r{
    text-align: center;
    width: 50%;
}

.customer_v_r img {
    width: 75%;
    margin: 10px auto;
}

/* customer_voice end*/


/* paln */
.customer_voice2{
    display: flex;
    justify-content: center;
    margin: auto;
    padding:20px;
}



.plan{
    height: 95vh;

    background-image: url(../img/plan_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.plan img{
    width:60%;
    margin: 10px auto;    
}

/* paln end*/

/* DELIVERY FOOD SERVICE */
.delivery{
    height: 95vh;
    font-size: 36px;
    font-weight: bold;
    font-family: "sarpanch";
    background-image: url(../img/delivery.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 2em;
    text-align: center;
    color: white;
}

.delivery span{
    margin-top: 20px;
    color: var(--sub-color);
}


.food_delivery ul li{
    width: 28%;
}
/* DELIVERY FOOD SERVICE end*/

/* SNS CONSULTING */
.delivery2{
    height: 95vh;
    font-size: 36px;
    font-weight: bold;
    font-family: "sarpanch";
    background-image: url(../img/sns_consul.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 2em;
    text-align: center;
    color: white;
}

.delivery2 span{
    margin-top: 20px;
    color: var(--sub-color);
}


.consulting_graph{
    display: flex;
    height: 95vh;
    justify-content: center;
    align-items: center;
}

.consul_g{
    width: 45%;
}

.consul_text{
    width: 45%;
}


.consulting_graph img{
    width: 80%;
}


/* SNS CONSULTING end*/


/* info page */
.info_top{
    height: 95vh;
    width: 100%;
    background-image: url(../img/info_top.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.company_info{
    width: 100%;
    /* height: 200vh; */
    /* height: auto; */
    background-image: url(../img/company_info_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /* position: relative; */
}

.company_info_text{
    /* text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform:  translate(-50%,-50%); */

    max-width: 1200px;
    margin: auto;
    padding-top: 80px;
}

.company_info_text table{
    font-family: "senobi";
    font-style: italic;
    font-size: 30px;
    line-height: 2em;
    padding-top: 50px;
    margin-left: auto;
    margin-right: auto;
}


.company_info_text h2{
    margin-top: 50px;
    font-size: 30px;
    line-height: 2em;
}

.conpany_info_text{
    width: 80%;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
    font-family: "senobi";
}


.conpany_info_text ol{
    width: 100%;
}

.company_info_text ol li{
    list-style-position: inside;
    list-style-type: decimal;
    margin: 20px auto;
    line-height: 2em;
    font-size: 20px;
}

.company_info_text h3{
    font-size: 18px;
    line-height: 2em;
}

.company_info_text table a{
    color: black;
}

/* info page end*/

/* blog page */
.blog_top{
    height: 95vh;
    width: 100%;
    background-image: url(../img/blog_top.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.blog_text{
    height: 95vh;
    font-size: 36px;
    font-weight: bold;
    font-family: "sarpanch";
    background-image: url(../img/blog_text_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 2em;
    text-align: center;
    color: white;
}

/* monthly event*/
.monthly_event{
    height: 95vh;
    display: flex;
    margin: auto;
    justify-content: space-between;
    flex-wrap: wrap;
    font-weight: bold;
    font-family: "sarpanch";
    background-image: url(../img/monthly_event_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}

.sns{
    background-color: #c3bfb7;
    width: 30%;
    padding: 20px;
    display: block;
    margin: 20px;
}

.sns a{
    color: black;
}

.sns_check{
    width: 80%;
    margin: 100px auto 50px;
    display: block;
}

.sns_area{
    width: 80%;
    margin: 10px auto;
    background-color: white;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    align-items: center;
}

.sns_area img{
    height: 50%;
    padding: 20px;
}

.monthly_e_cont{
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    font-family: "sarpanch";
}

.event img{
    width: 100%;
}

.event{
    width: 45%;

    text-align: center;
}

.event h3{
    font-size: 24px;
    margin: 20px auto;
}

.event p{
    font-size: 16px;
    line-height: 2em;
}

/* monthly event end */
/* blog page end */


/* privacy */
.privacy{
    width: 100%;
    height: 95vh;
    background-image: url(../img/privacy_top.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.privacy_policy_content{
    width: 100%;
    background-image: url(../img/privacy_policy_bg.png);
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.privacy_policy_text{
    max-width: 1200px;
    margin: auto;
    font-family: "senobi";
    font-style: italic;
}

.privacy_policy_text h2{
    font-size: 30px;
    line-height: 2em;
    margin: 0px auto 20px;
    padding-top: 20px;
}

.privacy_policy_text p{
font-size: 18px;
line-height: 2em;
}

/* privacy end*/

/* contact */

.contact_top{
    height: 95vh;
    width: 100%;
    background-image: url(../img/contact_top.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.contact_text{
    height: 95vh;
    font-size: 36px;
    font-weight: bold;
    font-family: "sarpanch";
    background-image: url(../img/contact_text_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 2em;
    text-align: center;
    color: white;
}


.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    color: white;
    justify-content: center;
    margin: auto;
    padding-top:20px
}

.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 20px;
    margin-top: 20px;
}

.form-row label {
    margin-right: 10px;
}

.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="email"],
.form-row textarea {
    flex-grow: 1;
}

.form-row input[type="radio"] {
    margin-right: 5px;
}

.form-row textarea {
    height: 100px;
}

button[type="submit"] {
    width: 200px;
    padding: 10px;
    background-color: var(--sub-color);
    color: var(--main-bg-color);
    border: none;
    cursor: pointer;
    border-radius: 50px;
}

button[type="submit"]:hover {
    background-color: white;
    
}


.contact_corm_area{
    background: var(--main-bg-color);

}

.form_btn{
justify-content: center;
}


/* contact end*/

/* susanoo japan */
.susanoo_cont h3{
    text-align: center;
}

.susanoo_cont h3 img{
    width: 15%;
}

.susanoo_area p{
    line-height: 2em;
    text-align: center;
}

.slideshow-container {
    margin-top: 50px;
    width: 100%;
    overflow: hidden;
    height: 250px; /* 高さを固定 */
}

.slideshow {
    display: flex;
    width: calc(250px * 12); /* 画像の数に応じて幅を調整 */
    animation: slide 30s linear infinite;
}

.slideshow img {
    width: 20%; /* 5枚表示されるように */
    height: 250px;
    object-fit: cover;
}

.susanoo_area2{
    position: relative;
    display: flex;
    justify-content: center; /* 左右中央揃え */
    align-items: center; /* 上下中央揃え */
    margin-bottom: 50px;
}

.banner {
    position: absolute;
    right: -160px; /* 初期状態で画面外に隠れる */
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 500px;
    background-color: black;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 1s ease-in-out; /* アニメーションの準備（JavaScriptで制御） */
}

.banner-text {
    font-size: 12px;
    font-weight: bold;
    /* transform: rotate(-5deg); */
    margin-bottom: 20px;
}
@keyframes slideIn {
    from {
        right: -160px; /* 画面の外から */
    }
    to {
        right: 0; /* 画面の右端に表示される */
    }
}

.instagram-links a {
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:30px 0 ;
}

.instagram-links img {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
}

.instagram-links p {
    margin: 5px 0;
}

.instagram-links p:nth-child(3) {
    font-size: 14px;
    font-weight: bold;
}

/* スライドアニメーション */
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* 画面幅が768px以下の場合のレスポンシブ対応 */
@media screen and (max-width: 768px) {
    .slideshow img {
        width: 33.33%; /* 3枚表示に切り替え */
    }
    
    .slideshow {
        animation: slide-small 40s linear infinite; /* スライド速度を調整 */
    }

}

/* 画面幅が480px以下の場合のレスポンシブ対応 */
@media screen and (max-width: 480px) {
    .slideshow img {
        width: 50%; /* 2枚表示に切り替え */
        object-fit: contain;
        height: 200px;
    }

    .slideshow {
        animation: slide-small 50s linear infinite; /* スライド速度をさらに遅く */
    }
}

@keyframes slide-small {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%); /* 2枚表示や3枚表示のアニメーションを調整 */
    }
}

.susanoo_cont h3 img.kokancho{
    width: 50%;
    margin-top: 30px;
}

h4.parallelogram {
    display: inline-block;
    color: white;
    padding: 10px 20px;
    font-size: 24px;
    margin: 30px auto;
    position: relative;

}

.susanoo_kokancho{
    display: flex;
    justify-content: center; /* 左右中央揃え */
    align-items: center; /* 上下中央揃え */
}

.parallelogram {
    background-color: black;
    transform: skew(-20deg); /* 平行四辺形を右に傾ける */
    display: inline-block;
    padding: 10px 30px; /* 文字の左右に十分な余白を設定 */
    color: white;
    position: relative;
}

.parallelogram::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: -1; /* 背景をテキストの後ろに配置 */
    transform: skew(20deg); /* 元の傾きを相殺してテキストが傾かないようにする */
}
/* susanoo japan end*/

/* -------------max 1024px------------ */
@media screen and (max-width:1024px) {
    .p-header__title {
        max-width: 170px;
        padding-left: 10px;
    }

    .p-nav__list {
        display: block;
        width: 100%;
        padding-right: 20px;
        padding-left: 20px;
        background: var(--main-bg-color);
        box-sizing: border-box;
    }

    .phirosophy {
        height: 75vh;
    }

    .phirosophy_text {
        position: absolute;
        width: 50%;
        text-align: center;
        right: 0;
        top: 44%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-30%);
        -ms-transform: translateY(-50%);
        font-size: 20px;
        line-height: 4rem;
    }

    .three_points{
        height: 75vh;
    }

    .goal_setting{
        height: 75vh;
    }

    .goal_r img {
        width: auto;
        height: 19%;
        position: absolute;
        right: 3%;
    }

    .ceo img {
        height: auto;
        width: 100%;
    }

    .three_challenge{
        height: 75vh;
    }

    .three_challenge_ttl p span {
        position: initial;
    }

    .three_challenge h3 {
        text-align: center;
        line-height: 50px;
        font-size: 24px;
        font-family: "senobi";
        margin: 50px auto 0px;
        letter-spacing: 1px;
    }
    .three_m_challenge ul {
        width: 98%;
    }

    .customer_voice ul {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 100px;
    }

    .customer_voice ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .customer_voice ul li p {
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        font-family: "sarpanch";
        padding-right: 0;
        margin-top: 5px;
        margin-bottom: 20px;
    }

    .customer_voice {
        height: auto;
    }

    .concept {
        height: 75vh;
    }

    .concept_text {
        text-align: center;
        position: absolute;
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        background-color: black;
        width: 77%;
    }

    .concept_text h2 {
        color: white;
        font-size: 20px;
        line-height: 2em;
        padding: 10px 30px;
    }

    .plan {
        height: 75vh;
    }
    
    .plan img {
        width: 70%;
    }


    .delivery {
        height: 75vh;
        font-size: 24px;
    }

    .delivery2 {
        height: 75vh;
        font-size: 24px;
    }
    
    .consulting_graph {
        height: 50vh;
    }

    .consul_g {
        width: 50%;
        text-align: center;
    }

    .consul_text {
        width: 50%;
    }

    .company_info_text {
        max-width: 1200px;
        margin: auto;
        padding-top: 80px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .company_info_text table {
        font-family: "senobi";
        font-style: italic;
        font-size: 20px;
        line-height: 2em;
        padding-top: 50px;
        margin-left: auto;
        margin-right: auto;
    }

    .company_info_text h2 {
        max-width: 1200px;
        margin-top: 50px;
        font-size: 20px;
        line-height: 2em;
    }
    .company_info_text ol li {
        list-style-position: inside;
        list-style-type: decimal;
        margin: 20px auto;
        line-height: 2em;
        font-size: 13px;
    }

    .company_info_text h3 {
        font-size: 14px;
        line-height: 2em;
    }

    .blog_text {
        height: 75vh;
        font-size: 24px;
    }

    .monthly_event {
        height: 75vh;
    }

    .sns_area {
        width: 100%;
    }

    .sns_area img {
        /* height: 50%; */
        padding: 20px;
        width: 25px;
        height: auto;
    }

    .sns {
        background-color: #c3bfb7;
        width: 30%;
        padding: 20px;
        display: block;
        margin: 0px;
    }


    .event h3 {
        font-size: 14px;
        margin: 20px auto;
    }

    .event p {
        font-size: 10px;
        line-height: 2em;
    }
    .privacy_policy_text h2 {
        font-size: 20px;
        line-height: 2em;
        margin: 0px auto 20px;
        padding-top: 20px;
    }
    .privacy_policy_text {
        max-width: 1200px;
        margin: auto;
        font-family: "senobi";
        font-style: italic;
        padding: 10px 20px;
    }

    .privacy_policy_text p {
        font-size: 14px;
        line-height: 2em;
    }

}

/* -------------max 1024px end------------ */

/* -------------max 767px------------ */
@media screen and (max-width:767px) {
    .ceo{
        height: auto;
        background-image: none;
    }
    
    #ceo_img{
        display: none;
    }
    
    #phone_ceo{
        display: block;
    }

    .banner {
        position: absolute;
        right: -160px;
        top: 50%;
        transform: translateY(-50%);
        width: 100px;
        height: 480px;
        background-color: black;
        color: white;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 10px;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
        transition: right 1s ease-in-out;
      }

      h4.parallelogram {
        display: inline-block;
        color: white;
        padding: 10px 20px;
        font-size: 20px;
        margin: 30px auto;
        position: relative;
      }

      .susanoo_area2 {
        position: relative;
        display: flex;
        justify-content: left;
        align-items: center;
        margin-bottom: 50px;
      }

      iframe {
        width: 80%;
        height: 500px;
      }

      .phone{
        display: none;
      }

}
/* -------------max 767px end------------ */






/* -------------max 428px------------ */
@media screen and (max-width:430px) {
    img.logo {
        width: 50%;
        padding-left: 25%;
        padding-bottom: 20px;
    }
    .top_title_area {
        height: 100%;
        width: 100%;
        display: flex;
        background-color: black;
        flex-direction: column;
        justify-content: center;
        line-height: 2rem;
        padding-left: 2%;
        padding-top: 2vh;
        padding-bottom: 2vh;
    }
    .top_title {
        position: absolute;
        bottom: 140px;
        left: 0;
        width: 100%;
    }

    .top_title_area h1 {
        width: 100%;
        font-size: 20px;
    }
    .phirosophy {
    height: 60vh;
    background-size: cover;
    display: flex;
    position: relative;
    justify-content: center;
    }

    .phirosophy img {
        width: auto;
        height: 100%;
    }

    .phirosophy_text {
        position: absolute;
        text-align: center;
        right: 0;
        top: 44%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-30%);
        -ms-transform: translateY(-50%);
        font-size: 12px;
        line-height: 2em;
    }

    .three_points {
        height: auto;
    }

    .three_points ul {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .three_points ul li {
        width: 85%;
        text-align: right;
        margin-top: 50px;
    }

    .online_coaching ul {
        width: 100%;
        display: flex;
        background-color: var(--main-bg-color);
        flex-direction: column;
        align-items: center;
    }

    .online_coaching ul li {
        width: 85%;
        position: relative;
        margin-top: 20px;
    }


    .goal_setting {
        height: auto;
        flex-direction: column;
        align-items: center;
    }

    .goal_l {
        width: 50%;
    }

    .goal_l img {
        width: 100%;
        padding-top: 20px;
    }

    .goal_r {
        width: 95%;
        position: relative;
        height: 39vh;
    }
    
    .goal_r img {
        width: 100%;
        height: auto;
        position: absolute;
        right: 0%;
        
    }

    .ceo{
        height: 95vh;
        background-image: none;
    }
    
    #ceo_img{
        display: none;
    }
    
    #phone_ceo{
        display: block;
    }

    .three_challenge {
        height: auto;
    }

    .three_challenge h3 {
        text-align: center;
        line-height: 50px;
        font-size: 20px;
        font-family: "senobi";
        margin: 50px auto 0px;
        letter-spacing: 1px;
    }

    .three_m_challenge ul {
        width: 98%;
        flex-direction: column;
        align-items: center;
    }

    .three_m_challenge ul li {
        width: 85%;
        margin: 20px auto;
    }

    .company_info_text table {
        font-family: "senobi";
        font-style: italic;
        font-size: 15px;
        line-height: 2em;
        padding-top: 50px;
        margin-left: auto;
        margin-right: auto;
    }

    .company_info_text ol li {
        list-style-position: inside;
        list-style-type: decimal;
        margin: 20px auto;
        line-height: 2em;
        font-size: 11px;
    }

    .company_info_text h3 {
        font-size: 11px;
        line-height: 2em;
    }

    .blog_top {
        height: 95vh;
        width: 100%;
        background-image: url(../img/blog_top_phone.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }

    .monthly_event {
        height: auto;
        display: flex;
        margin: auto;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        font-weight: bold;
        font-family: "sarpanch";
        background-image: url(../img/monthly_event_bg.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
    }

    .monthly_e_cont {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        align-items: center;
        font-family: "sarpanch";
        flex-direction: column;
    }
    .event {
        width: 95%;
        text-align: center;
        margin-top: 20px;
    }


    .sns {
        background-color: #c3bfb7;
        width: 95%;
        padding: 5px;
        display: block;
        margin: 50px auto;
    }

    .sns_check {
        width: 40%;
        margin: 40px auto 25px;
        display: block;
    }
    .privacy_policy_text h2 {
        font-size: 16px;
        line-height: 2em;
        margin: 0px auto 20px;
        padding-top: 20px;
    }
    .privacy_policy_text p {
        font-size: 12px;
        line-height: 2em;
    }

    .form-row {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
        font-size: 20px;
        margin-top: 20px;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        color: white;
        justify-content: center;
        margin: auto;
        /* padding-top: 20px; */
        padding: 30px;
    }

    .service_menu ul {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        background: var(--main-bg-color);
    }

    .service_menu ul li {
        width: 95%;
        margin: 10px auto;
    }
    .plan img {
        width: 95%;
    }

    .delivery h2,
    .delivery2 h2{
        font-size: 20px;
    }

    .three_m_challenge ul {
        width: 90%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin: 45px auto 0;
    }

    .consulting_graph {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .consul_g {
        width: 95%;
        text-align: center;
    }

    .consul_text {
        width: 95%;
        text-align: center;
        margin: 20px auto;
    }

    .consulting_graph {
        height: auto;
        margin: 20px;
    }

    .customer_voice2 {
        display: flex;
        justify-content: center;
        margin: auto;
        padding: 20px;
        flex-direction: column;
    }
    .customer_v_l {
        width: 95%;
        text-align: center;
    }
    .customer_v_r {
        text-align: center;
        width: 95%;
    }

    .service_top {
        height: 95vh;
        width: 100%;
        background-image: url(../img/service_top_phone.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .concept {
        width: 100%;
        height: 75vh;
        background-image: url(../img/concept_phone.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .consulting_graph img {
        width: 100%;
    }
    .blog_text {
        height: 75vh;
        font-size: 20px;
    }

    .contact_text {
        height: 95vh;
        font-size: 24px;
        color: var(--main-bg-color);
        background-image: url(../img/contact_text_bg_phone.png);

    }
    .contact_top {
        height: 95vh;
        width: 100%;
        background-image: url(../img/contact_top_phone.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }

    .susanoo_area p {
        line-height: 2em;
        text-align: center;
        font-size: 14px;
    }
    .susanoo_cont h3 img {
        width: 40%;
    }

    .phone{
        display: none;
    }

    h4.parallelogram {
        display: inline-block;
        color: white;
        padding: 10px 20px;
        font-size: 9px;
        margin: 30px auto;
        position: relative;
      }

      .susanoo_cont h3 img.kokancho {
        width: 90%;
        margin-top: 30px;
      }

      iframe {
        width: 50%;
        height: 200px;
      }
      .banner {
        position: absolute;
        right: -160px;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 180px;
        background-color: black;
        color: white;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 10px;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
        transition: right 1s ease-in-out;
      }
      .banner-text {
        font-size: 8px;
        font-weight: bold;
        transform: rotate(-5deg);
        margin-bottom: 0px;
      }
      .instagram-links img {
        width: 25px;
        height: 25px;
        margin-bottom: 0px;
      }
      .instagram-links p {
        margin: 3px 0;
        font-size: 10px;
        }

        .instagram-links p:nth-child(3) {
            font-size: 7px;
            font-weight: bold;
          }
          .instagram-links a {
            text-decoration: none;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 5px 0;
          }

          iframe {
            width: 78%;
            height: 200px;
          }
          .susanoo_area2 {
            position: relative;
            display: flex;
            justify-content: start;
            align-items: center;
            margin-bottom: 50px;
            margin-left: 2px;
          }

}
/* -------------max 428px end------------ */

