
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
  margin:0;
  padding:0;
  list-style: none;
  box-sizing: border-box;
  text-decoration: none;
  background-size: cover;
  background-position: center;
}

*::before,
*::after{
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  font-family: 'Noto Sans JP' , 'Noto Sans CJK JP' , sans-serif;
}

html {
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

body{
  color:#282828;
  font-size: 16px;
  font-family: 'Noto Sans JP' , 'Noto Sans CJK JP' , sans-serif;
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}


a{
  color:#282828;
}


img{
  display: block;
  object-position: center;
}


.common_hover_opa{
  transition: 0.4s;
}

@media(min-width:769px){
  .common_hover_opa:hover{
    opacity: 0.8;
  }
}


main{
  overflow: hidden;
}

.container{
  max-width: 980px;
  margin: 0 auto;
}


/*
------------------------------------
共通アニメーション関係
------------------------------------
*/

.anime_fade_show{
  opacity:0;
  transform: translate3d(0, 200px, 0);
}

.anime_fade_show.anime_active,
.anime_active .anime_fade_show{
  opacity:1;
  transition-duration: 1s;
  transform: translate3d(0, 0, 0);
}


/*
------------------------------------
ヘッダー
------------------------------------
*/

header{
  position: fixed;
  top:0;
  left:0;
  z-index: 30;
  pointer-events: none;
  width:100%;
}


header .header_inner{
  /* padding:40px 160px 0; */
  padding:20px 160px;
  transition-duration: 0.4s; 
}
header.bg_show .header_inner{
  background-color: rgba(255,255,255,0.7);
}

header .header_flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .header_logo{
  display: block;
  pointer-events: auto;
  transition-duration: 0.4s;
} 

header .header_logo.vanish{
  opacity: 0;
  pointer-events: none;
}

header .header_logo img{
  width:148px;
}

/* KOLORS ブランドロゴ（PNG） */
header .header_logo img.kolors_logo {
  width: auto;
  max-height: 44px;
}
footer .footer_logo img.kolors_logo--footer {
  width: auto;
  max-width: min(100%, 280px);
  max-height: 48px;
}
#l-footer .footer_logo img.kolors_logo--footer-corporate {
  width: auto;
  max-height: 40px;
}

header .drawer_open{
  cursor: pointer;
  pointer-events: auto;
  transition-duration: 0.4s;
  transition-delay: 1s;
}

header .drawer_open.active{
  opacity: 0;
  transition-delay: 0s;
}

header .drawer_open img{
  width:50px;
}

#drawer_menu_bg{
  position: fixed;
  width:100%;
  height:100vh;
  top:0;
  left:0;
  z-index: 39;
  pointer-events: none;
}

#drawer_menu_bg.show{
  pointer-events: auto;
}

#drawer_menu{
  position: fixed;
  top:0;
  right:-100px;
  z-index: 40;
  width:400px;
  height: calc(100vh );
  height: calc(var(--vh2, 1vh) * 100);
  background: linear-gradient(to left, rgba(99,54,169,0.9) 0%, rgba(241,8,170,0.9) 78%, rgba(241,8,170,0.9) 100%);
  pointer-events: none;
  opacity: 0;
  transition-duration: 0.7s;
  transition-delay:0.4s;
}

#drawer_menu.show{
  opacity: 1;
  pointer-events: auto;
  right:0;
  transition-delay:0s;
}

#drawer_menu .drawer_frame{
  height:100%;
  overflow-y: scroll;
}

#drawer_menu .drawer_inner{
  position: relative;
  padding:80px 64px;
}

#drawer_menu .drawer_close{
  cursor: pointer;
  position: absolute;
  top:50px;
  right:50px;
  opacity: 0;
  transition-duration: 0.4s;
  transform: translateX(10px);
}

#drawer_menu.show .drawer_close{
  transition-delay: 0.7s;
  opacity: 1;
  transform: translateX(0);
}

#drawer_menu .drawer_close_inner{
  width:40px;
  height:40px;
  position: relative;
}

#drawer_menu .drawer_close_inner::before{
  content:"";
  width:55px;
  height:2px;
  background-color: #fff;
  position: absolute;
  top:0;
  left:0;
  transform: rotate(45deg);
  transform-origin: left;
}


#drawer_menu .drawer_list li{
  margin-top: 12px;
  font-size: 18px;
  color:#fff;
}

#drawer_menu .drawer_list li a{
  color:#fff;
  position: relative;
}

#drawer_menu .drawer_list li a::after{
  content:"";
  width:100%;
  height:2px;
  background-color: #fff;
  position: absolute;
  bottom:-7px;
  left:0;
  transition-duration: 0.4s;
  opacity: 0;
  transform: translateY(5px);
}

@media(min-width:769px){
  #drawer_menu .drawer_list li a:hover::after{
    opacity: 1;
    transform: translateY(0);
  }
}

#drawer_menu .drawer_list .menu_head_text{
  margin-top: 32px;
  font-weight: 700;
  font-size: 18px;
}

#drawer_menu .drawer_list .menu_head_text:first-child{
  margin-top: 0;
}

#drawer_menu .drawer_list .menu_head_text a{
  font-weight: 700;
}

#drawer_menu .drawer_button_link{
  width:215px;
  height:40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border:1px solid #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color:#fff;
}

#drawer_menu .drawer_button_link.document{
  margin-top: 36px;
}

#drawer_menu .drawer_button_link.contact{
  margin-top: 20px;
}
/*
------------------------------------------------------------------------
フッター
------------------------------------------------------------------------
*/

#page_top{
  position: fixed;
  z-index: 10;
  bottom:32px;
  right:32px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition-duration: 0.4s;
  cursor: pointer;
}

#page_top.show{
  opacity: 1;
  pointer-events: auto;
}

@media(min-width:769px){
  #page_top:hover{
    transform: translateY(-5px);
  }
}

#page_top img{
  width:54px;
  border-radius: 50%;
}

footer{
  padding:72px 0;
}

footer .footer_inner{
  max-width:1130px;
  margin:0 auto;
  padding:0 20px;
}

footer .footer_flex{
  display: flex;
  justify-content: space-between;
}

footer .footer_logo{
  display: block;
  width:316px;
}

footer .footer_logo img{
  width:100%;
}

footer .footer_copy{
  margin-top: 12px;
  text-align: right;
  line-height: 1;
}

footer .footer_nav{
  display: flex;
  align-items: flex-start;
  gap:0 40px;
}

footer .footer_menu li{
  margin-top: 16px;
}

footer .footer_menu li:first-child{
  margin-top: 0;
}

footer .footer_menu a{
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  position: relative;
}

footer .footer_menu a::after{
  content:"";
  width:100%;
  height:2px;
  background-color: #282828;
  position: absolute;
  bottom:-7px;
  left:0;
  transition-duration: 0.4s;
  opacity: 0;
  transform: translateY(5px);
}

@media(min-width:769px){
  footer .footer_menu a:hover::after{
    opacity: 1;
    transform: translateY(0);
  }
}

footer .footer_menu a.bold{
  font-weight: 700;
}

footer .footer_menu .menu_head_text{
  font-size: 18px;
  line-height: 1;
  font-weight: bold;
  display: inline-block;
}

footer .footer_menu .menu_head_text.company,
footer .footer_menu .menu_head_text.company a{
  color:#f9002b;
}
footer .footer_menu .menu_head_text.service,
footer .footer_menu .menu_head_text.service a{
  color:#6336a9;
}
footer .footer_menu .menu_head_text.recruit,
footer .footer_menu .menu_head_text.recruit a{
  color:#0053f0;
}

footer .footer_menu .menu_head_text.company a::after{
  background-color: #f9002b;
}
footer .footer_menu .menu_head_text.service a::after{
  background-color: #6336a9;
}
footer .footer_menu .menu_head_text.recruit a::after{
  background-color: #0053f0;
}

footer .footer_menu .privacy_line{
  margin-top: 54px;
}

/*
------------------------------------------------------------------------
ページ下部のお問い合わせや資料請求のセクション
------------------------------------------------------------------------
*/


.common_contact_section{
  padding:132px 0 124px;
  background: linear-gradient(to left, #6336a9 0%, #f10846 78%, #f10846 78%, #f10846 100%);
}

.common_contact_section .link_flex{
  max-width: 890px;
  margin:0 auto;
  display: flex;
  justify-content: space-between;
}

.common_contact_section .link_block{
  width:428px;
  height:154px;
  border-radius: 10px;
  border:3px solid #fff;
  position: relative;
  display: flex;
  justify-content: center;
  color:#fff;
  padding-top: 36px;
}

.common_contact_section .link_block::after{
  content:"";
  width:32px;
  height:32px;
  border-radius: 50%;
  background-image: url(/../images/common/white_radi.svg);
  position: absolute;
  right:10px;
  bottom:10px;
  z-index: 2;
  transition-duration: 0.4s;
  transform: translateX(-5px);
}

@media(min-width:769px){
  .common_contact_section .link_block:hover::after{
    transform: translateX(0);
  }
}

.common_contact_section .link_block .en_text{
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.common_contact_section .link_block .ja_text{
  font-size: 20px;
  line-height: 1;
  text-align: center;
  margin-top: 16px;
}


/*
------------------------------------
以下、pad時
------------------------------------
*/
@media(min-width:1025px){
  .pc_hide{
    display: none!important;
  }
}

@media(max-width:1024px){
  .pad_hide{
    display: none!important;
  }

  .container{
    max-width: 680px;
    margin: 0 auto;
  }


  /*
  ------------------------------------
  ヘッダー
  ------------------------------------
  */

  header{

  }


  header .header_inner{
    padding:20px 32px;
    transition-duration: 0.4s; 
  }
  header.bg_show .header_inner{
    background-color: rgba(255,255,255,0.7);
  }

  header .header_flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  header .header_logo{
    display: block;
    pointer-events: auto;
  } 

  header .header_logo img{
    width:112px;
  }

  header .drawer_open{
    cursor: pointer;
    pointer-events: auto;
    transition-duration: 0.4s;
    transition-delay: 1s;
  }

  header .drawer_open.active{
    opacity: 0;
    transition-delay: 0s;
  }

  header .drawer_open img{
    width:40px;
  }

  /*
  ------------------------------------------------------------------------
  フッター
  ------------------------------------------------------------------------
  */

  #page_top{
    bottom:32px;
    right:32px;
  }


  #page_top img{
    width:72px;
    border-radius: 50%;
  }

  footer{
    padding:40px 0 72px;
  }

  footer .footer_inner{
    max-width:680px;
    margin:0 auto;
    padding:0;
  }

  footer .footer_flex{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  footer .footer_flex .footer_left{
    width:242px;
  }

  footer .footer_logo{
    display: block;
    width:100%;
  }

  footer .footer_copy{
    margin-top: 12px;
    font-size: 12px;
    text-align: right;
    line-height: 1;
  }

  footer .footer_right{
    margin-top: 48px;
  }

  footer .footer_nav{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap:0;
  }

  /*
  ------------------------------------------------------------------------
  ページ下部のお問い合わせや資料請求のセクション
  ------------------------------------------------------------------------
  */


  .common_contact_section{
    padding:96px 0;
    background: linear-gradient(to left, #6336a9 0%, #f10846 85%, #f10846 85%, #f10846 100%);
  }

  .common_contact_section .link_flex{
    max-width: 890px;
    margin:0 auto;
    display: flex;
    justify-content: space-between;
  }

  .common_contact_section .link_block{
    width:328px;
    height:118px;
    padding-top: 28px;
  }

  .common_contact_section .link_block::after{

    width:24px;
    height:24px;
    right:10px;
    bottom:10px;
    z-index: 2;
    transition-duration: 0.4s;
    transform: translateX(0);
  }


  .common_contact_section .link_block .en_text{
    font-size: 18px;
  }

  .common_contact_section .link_block .ja_text{
    font-size: 14px;
    margin-top: 12px;
  }


}/*@media(max-width:1024px){*/



/*
------------------------------------
以下、スマホ時
------------------------------------
*/

@media(min-width:701px){
  .sp_only{
    display: none!important;
  }
}/*@media(min-width:701px){*/

@media(max-width:700px){
  .sp_hide{
    display: none!important;
  }

  .container{
    max-width: 350px;
    margin: 0 auto;
  }


  /*
  ------------------------------------
  ヘッダー
  ------------------------------------
  */

  header{

  }


  header .header_inner{
    padding:16px 24px;
    transition-duration: 0.4s; 
  }
  header.bg_show .header_inner{
    background-color: rgba(255,255,255,0.7);
  }

  header .header_flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  header .header_logo{
    display: block;
    pointer-events: auto;
    margin-bottom: 6px;
  } 

  header .header_logo img{
    width:80px;
  }


  header .drawer_open img{
    width:32px;
  }


  #drawer_menu {
    width: 100%;
    max-width: 500px;
  }

  /*
  ------------------------------------------------------------------------
  フッター
  ------------------------------------------------------------------------
  */

  #page_top{
    bottom:20px;
    right:20px;
  }


  #page_top img{
    width:40px;
    border-radius: 50%;
  }

  footer{
    padding:40px 0 72px;
  }

  footer .footer_inner{
    max-width:350px;
    margin:0 auto;
    padding:0;
  }

  footer .footer_flex{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  footer .footer_flex .footer_left{
    width:242px;
  }

  footer .footer_logo{
    display: block;
    width:100%;
  }

  footer .footer_copy{
    margin-top: 12px;
    font-size: 12px;
    text-align: right;
    line-height: 1;
  }

  footer .footer_right{
    margin-top: 48px;
  }

  footer .footer_nav{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:40px 0;
  }

  footer .footer_nav .footer_menu{
    width:50%;
  }

  /*
  ------------------------------------------------------------------------
  ページ下部のお問い合わせや資料請求のセクション
  ------------------------------------------------------------------------
  */


  .common_contact_section{
    padding:64px 0;
    background: linear-gradient(to left, #6336a9 0%, #f10846 85%, #f10846 85%, #f10846 100%);
  }

  .common_contact_section .link_flex{
    max-width: 350px;
    margin:0 auto;
    display: flex;
    padding:0;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    gap:24px 0;
  }



}/*@media(max-width:700px){*/
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any styles
 * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
 * file per style scope.
 *

 */
/* line 17, app/assets/stylesheets/front/application.css.scss */
.font-s {
  font-size: 14px;
}
