@charset "UTF-8";

:root {
  --main-color: #c8a37c;
  --sub-color: #e7161a;
}

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "Oswald","Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #181818;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* 画面端までの余白 */
  --margin-for-device-side: -15px;
}

@media (min-width:768px){
  :root {
    --margin-for-device-side: calc(345px - 50vw);
  }
}
@media (min-width:992px){
  :root {
    --margin-for-device-side: calc(465px - 50vw);
  }
}
@media (min-width:1200px){
  :root {
    --margin-for-device-side: calc(555px - 55vw);
  }
}
/*@media (min-width:1536px){
  :root {
    --margin-for-device-side: calc(668px - 50vw);
  }
}
@media (min-width:1720px){
  :root {
    --margin-for-device-side: calc(760px - 50vw);
  }
}*/


/* 管理画面の余白調整 */
.gjs-dashed #wrapper{
  padding-bottom: 150px;
}

@media (max-width:767px){
  #chatbot-btn {
    bottom: 55px!important;
    z-index: 5;
  }
}

.mincho{
  font-family: 'Noto Serif JP', serif;
}

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  letter-spacing: 0.075em;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  text-decoration: none;
  /*opacity: 0.7;*/
  /*color: inherit;*/
  /*color: #c8a37c;*/
  color: var(--main-color);
}
img{
  max-width: 100%;
  width: auto;
}

ul, ol, li{
  margin: 0;
  padding: 0;
  list-style: none;
}

.img_fit{
  position: relative;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}

a.img_fit{
  display: block;
}
a .img.img_fit img{
  transition: 0.2s all;
}
a:hover .img.img_fit img{
  transform: scale(1.05);
}

/* 動画埋め込みのレスポンシブ対応 */
iframe{
  max-width: 100%;
}
.responsive_video {
  position: relative;
}

.responsive_video:before{
  content: "";
  display: block;
  padding-top:56.25%;
}
.responsive_video video,
.responsive_video iframe,
.responsive_video object,
.responsive_video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gjs-dashed .responsive_video:before{
  display: none;
}
.gjs-dashed .responsive_video [data-gjs-type="video"]:before{
  content: "";
  display: block;
  padding-top:56.25%;
  pointer-events: none;
}


/* 指定デバイスのみで表示するclass */

@media (min-width:1200px){
  .md:not(.pc){
    display: none!important;
  }
  .tb:not(.pc){
    display: none!important;
  }
  .sp:not(.pc){
    display: none!important;
  }
}
@media (min-width:1024px) and (max-width:1199px){
  .pc:not(.md){
    display: none!important;
  }
  .tb:not(.md){
    display: none!important;
  }
  .sp:not(.md){
    display: none!important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none!important;
  }
  .md:not(.tb){
    display: none!important;
  }
  .sp:not(.tb){
    display: none!important;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none!important;
  }
  .md:not(.sp){
    display: none!important;
  }
  .tb:not(.sp){
    display: none!important;
  }
}

/* 指定デバイスで改行を消す */
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}
@media (min-width:1024px) and (max-width:1199px){
  .md_nobr br{
    display: none !important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .tb_nobr br{
    display: none !important;
  }
}
@media (max-width:767px){
  .sp_nobr br{
    display: none !important;
  }
}

/* 指定した行数での切り取り */
.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10{
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.txt_ellipsis_line1{
  -webkit-line-clamp: 1;
}
.txt_ellipsis_line2{
  -webkit-line-clamp: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}

/*******************************
*　ヘッダー
********************************/
.header{
  transition: 0.2s all;
}

.gjs-dashed .header{
  background: var(--main-color);
}

.hdr1{
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: transparent;
  transition: 0.2s all;
}

/* ロゴ */
.hdr_logo{
  font-weight: 900;
  font-size: 30px;
}
.hdr_logo p{
  letter-spacing: 0;
}
.hdr_logo a:hover{
  color: #FFF;
}

.hdr_logo img{
  width: 150px;
}

/* メニュー全般 */
.hdr_menu{
  margin-top: 0;
  /*margin-top: 20px;*/
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: 0.2s all;
}

/* TELボタン */
/*.hdr_tel{
  
}
.hdr_tel_txt1{
  font-size: 20px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
.hdr_tel_link{
  
}
.hdr_tel_link p{
  
}
.hdr_tel_link p:before{
  display: inline-block;
  content:"\f095";
  font-family: "fontAwesome";
  margin-right: 6px;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  color: var(--main-color);
}*/


/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_contact a{
  background: #1b1b1b;
  color: #c8a37c;
  width: 250px;
  padding: 10px 5px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  transition: 0.2s all;
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a:hover{
  background: var(--main-color);
  color: #FFF;
}

/* SNSボタン */
.hdr_sns{
  display: flex;
  align-items: center;
  margin-left: 30px;
}
.hdr_sns a{
  width: 55px;
  transition: 0.2s all;
}
.hdr_sns a:hover{
  filter: brightness(1.1);
}
.hdr_sns a img{
  display: block;
}
.hdr_sns a + a{
  margin-left: 10px;
}


@media (min-width:375px){

}
@media (max-width:767px){

  .hdr1 {
    justify-content: center;
  }

  /* お問い合わせボタン */
  .hdr_contact{
    display: none;
  }
  /* SNSボタン */
  .hdr_sns{
    margin-left: 20px;
  }
  .hdr_sns a img{
    height: 30px;
  }

}
@media (min-width:768px){

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 0px;
  }
  .header{
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
  }

  .hdr1{
    padding: 10px 25px;
  }

  /* ロゴ */
  .hdr_logo{
    font-size: 40px;
    color: #fff;
  }
  .hdr_logo img{
    width: 120px;
  }
  .header.slim .hdr_logo a:hover{
    color: #000;
  }
  /* ヘッダースリム */
  .header.slim{
    background: #fff;
  }
  .header.slim .hdr_logo,
  .header.slim .gnav .gnav_item{
    color: #000;
  }
  
  .header.slim .hdr_menu{
    margin-top: 0;
  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 24px;
  }
  .hdr_tel_link p:before{
    margin-right: 6px;
  }


}
@media (min-width:1024px){

  .hdr1{
    padding: 10px 60px 10px 26px;
  }
  

  /* ロゴ */
  .hdr_logo img{
    width: 200px;
  }
  
  
  /* ヘッダースリム */
  .header.slim{

  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 26.5px;
  }

}
@media (min-width:1200px){

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: 160px;
  }
  .hdr_menu{
    margin-top: 20px;
  }
  
  /* ヘッダースリム */
  .header.slim{

  }

}

@media (min-width:1520px){
  .hdr_contact a{
    width: 200px;
  }
}
@media (min-width:1720px){
  .hdr_contact a{
    width: 250px;
  }
}


/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
  margin-bottom: 100px;
}
.mv_bg_img{
  width: 100%;
  height: 170px;
  background: #c8a37c;
}
/*.mv:before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 780px;
  background: url(https://s-9610732.smooooth.jp/system_panel/uploads/images/20250718145423294620.jpg)no-repeat center center/cover;
}*/
.mv_img_outer{
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  margin-left: auto;
  width: 73.875%;
}
.mv_img.img_fit{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit img{
}
.mv_img.img_fit:before{
  padding-top: 200px;
}

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 1;
  top: 45%;
  left: -11%;
  width: 69.86%;
  height: 14.84%;
  color: #FFF;
  display: block;
  transform: rotate(90deg);
}
.mv_txt_p1{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.04;
}
.mv_txt_p2{
  margin-top: 5px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.5;
}
.mv_title{
  background: #1b1b1b;
  padding: 70px 0 20px;
}
.mv_title_tt{
  width: 79.15%;
  margin-left: auto;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.175;
  color: #c8a37c;
  position: relative;
  z-index: 2;
}

/* スライダーの場合 */
.mv_slider{

}
.mv_slider_item{
  position: relative;
  z-index: 1;
}

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}

@media (min-width:768px){

  /* MV */
  .mv{
    margin-bottom: 150px;
  }
  .mv_bg_img{
    height: 350px;
  }
  .mv_img_outer{
    width: 70.875%;
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 400px;
  }

  /* MVテキスト */
  .mv_txt{
    top: 55%;
    left: -9%;
  }
  .mv_txt_p1{
    font-size: 43px;
  }
  .mv_txt_p2{
    margin-top: 10px;
    font-size: 20px;
  }
  .mv_title{
    padding: 80px 0 34px;
  }
  .mv_title_tt{
    width: 79.15%;
    font-size: 37px;
  }

}
@media (min-width:1024px){

  /* MV */
  .mv{
    margin-bottom: 240px;
  }
  .mv_bg_img{
    height: 400px;
  }
  .mv_img_outer{
    width: 66.875%;
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 68.53%;
  }

  /* MVテキスト */
  .mv_txt{
    top: 54.5%;
    left: -4.7%;
  }
  .mv_txt_p1{
    font-size: 52px;
  }
  .mv_txt_p2{
    margin-top: 22px;
    font-size: 24px;
  }
  .mv_title{
    padding: 100px 0 34px;
  }
  .mv_title_tt{
    width: 79.15%;
    font-size: 50px;
  }

}
@media (min-width:1200px){

  /* MV */
  .mv{
  }
  .mv_bg_img{
    height: 480px;
  }
  .mv_img_outer{
    width: 66.875%;
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 68.53%;
  }

  /* MVテキスト */
  .mv_txt{
    top: 66%;
    left: -4.5%;
  }
  .mv_txt_p1{
    font-size: 55px;
  }
  .mv_txt_p2{
    margin-top: 22px;
    font-size: 25.5px;
  }
  .mv_title{
    padding: 100px 0 30px;
  }
  .mv_title_tt{
    width: 79.15%;
    font-size: 58px;
  }

}
@media (min-width:1440px){

  /* MV */
  .mv{
  }
  .mv_bg_img{
    height: 580px;
  }

  /* MVテキスト */
  .mv_txt{
    top: 60.5%;
    left: -3.7%;
  }
  .mv_txt_p1{
    font-size: 67.5px;
  }
  .mv_txt_p2{
    font-size: 31px;
  }
  .mv_title{
    padding: 157px 0 34px;
  }
  .mv_title_tt{
    width: 79.15%;
    padding-right: 100px;
    font-size: 64px;
  }

}
@media (min-width:1800px){

  /* MV */
  .mv{
  }
  .mv_bg_img{
    height: 780px;
  }

  /* MVテキスト */
  .mv_txt{
    top: 59.7%;
    left: -3.2%;
  }
  .mv_txt_p1{
    font-size: 100px;
  }
  .mv_txt_p2{
    margin-top: 23px;
    font-size: 46px;
  }
  .mv_title{
    padding: 137px 0 33px;
  }
  .mv_title_tt{
    width: 79.15%;
    font-size: 80px;
  }
}


/*******************************
*　サイドバー
********************************/

/* サイドバー */
.sidebar{
  position: fixed;
  z-index: 2;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* バナー */
.sidebar_bn{
  display: block;
}
.sidebar_bn img{
  width: 40px;
  transition: 0.2s all;
}
.sidebar_bn:hover{

}
.sidebar_bn:hover img{
  transform: scale(1.05);
  filter: brightness(1.05);
}


@media (min-width:768px){

  /* サイドバー */
  .sidebar{
    top: 50%;
  }

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: 60px;
  }


}
@media (min-width:1024px){

}
@media (min-width:1200px){

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: auto;
  }

}


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  background: #c8a37c;
  height: 200px;
}
.pg_header:before{
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 70px;
  bottom: 0;
  background: #1b1b1b;
}
.pg_header_mv{
  /*  position: absolute;
    z-index: 1;
    top: 0;
    right: 0;*/
  width: 66.875%;
}
.pg_header_mv_img.img_fit{

}
.pg_header_mv_img.img_fit:before{
  padding-top: 165px;
}
.pg_header_mv_img.img_fit:after{
  display: none;
  /*content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgb(0, 0, 0);
  opacity: 0.102;
  pointer-events: none;*/
}
.pg_header_txt{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  position: absolute;
  z-index: 1;
  top: 23%;
  left: 2%;
}
.pg_header_txt p{
  letter-spacing: 0;
}


@media (min-width:768px){
  .pg_header{
    margin-bottom: 70px;
    height: 400px;
  }
  .pg_header:before{
    height: 100px;
  }
  .pg_header_mv{
    /*height: 350px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }
  .pg_header_txt{
    font-size: 70px;
    top: 35%;
    left: 20.9%;
  }

}
@media (min-width:1024px){
  .pg_header{
    /*margin-bottom: 65px;*/
    /*height: 700px;*/
  }
  .pg_header:before{
    /*height: 200px;*/
  }
  .pg_header_mv{
    /*height: 550px;*/
  }
  .pg_header_mv_img.img_fit:before{
    /*padding-top: 600px;*/
  }
  .pg_header_txt{
    /*    font-size: 100px;*/
  }

}
@media (min-width:1200px){
  .pg_header{
    height: 700px;
  }
  .pg_header:before{
    height: 200px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 600px;
  }
  .pg_header_txt{
    font-size: 100px;
  }


}
@media (min-width:1440px){
  .pg_header{
    height: 700px;
  }
  .pg_header:before{
    height: 200px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 600px;
  }
  .pg_header_txt{
    font-size: 100px;
    top: 35%;
    left: 20.9%;
  }


}
@media (min-width:1800px){
  .pg_header{
    height: 700px;
  }
  .pg_header:before{
    height: 200px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 600px;
  }
  .pg_header_txt{
    /*font-size: 100px;*/
    /*top: 0%;*/
    /*left: 0%;*/
  }


}



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

.footer{
  margin-top: 100px;
  position: relative;
  z-index: 1;
}
.footer:before{
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 930px;
  bottom: 0%;
  /*background: url(https://s-9610732.smooooth.jp/system_panel/uploads/images/20250722144637596957.jpg)no-repeat center center/cover;*/
  background: #c8a37c;
}

.ftr1{

}
.ftr1_inner{
  padding: 0 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #fff;
  border: 1px solid #a6a6a6;
}
.ftr1_box{
  padding: 30px 20px;
  width: 100%;
}
.ftr1_box + .ftr1_box{
  border-top: 1px solid #a6a6a6;
}
.ftr1_title_en{
  margin-top: 0px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-content: center;
  align-items: center;
}
.ftr1_title_en:after{
  content: "";
  width: 100%;
  height: 1px;
  background: #a6a6a6;
  margin-left: 19px;
}
.ftr1_title_ja{
  margin-top: 10px;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
}
.ftr1_text{
  margin-top: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}
.ftr1_btn{
  margin-top: 20px;
}
.ftr1_btn a{

}
.ftr1_btn_title_ja{
  font-weight: 900;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  color: #c8a37c;
}
.ftr1_btn_title_en{
  margin-top: 10px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}
.ftr1_btn_title_en:after{
  content: "➡";
  font-weight: 500;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  top: 55%;
  right: 9px;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  border: 1px solid #c8a37c;
  border-radius: 50%;
  transition: all 0.2s;
}
.ftr1_btn a:hover {
  color: var(--main-color);
}
.ftr1_btn a:hover .ftr1_btn_title_en:after{
  margin-right: -15px;
}

.ftr2{
  margin-top: 50px;
  padding: 50px 0;
  padding-bottom: 50px;
  border-top: 1px solid #ffff;
  color: #fff;
  position: relative;
  z-index: 1;
}
.ftr2_inner{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.ftr2_box1,
.ftr2_box2{
  width: 100%;
}
.ftr2_box1{

}
.ftr2_box2{

}
.ftr2_inner a:hover{
  color: #FFF;
  opacity: 0.8;
}
.ftr2_box{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ftr_logo{
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
}
.ftr_logo a:hover{
  color: #FFF;
  
}
.ftr_logo img{
  width: 130px;
}
.ftr_logo p{
  letter-spacing: 0;
}
ftr_sns{

}
.ftr_addr{
  margin-top: 35px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
.ftr_link_content{
  display: none;
}
.ftr_links{

}
.ftr_links + .ftr_links{
  margin-left: 5%;
}
.ftr_link{

}
.ftr_link + .ftr_link{
  margin-top: 4px;
}
.ftr_link a{
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
.ftr_link a{

}
.ftr_link a p{
  padding-left: 30px;
}
.ftr_link a:before{
  content: "□";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.ftr_copy{
  margin-top: 30px;
  padding: 5px 0 7px;
  width: 100%;
  font-size: 14px;
  text-align: center;
  background: #fff;
  color: #181818
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #181818;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #fff;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  z-index: 5;
  right: 10px;
  bottom: 60px;
  z-index: 3;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: #e5b98b;
}
.pagetop a i{
  font-size: 40px;
}



@media (min-width:375px){

}
@media (max-width:767px){

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }
  .footer:before{
    height: 800px;
  }

  .ftr1{

  }
  .ftr1_inner{
    padding: 20px 0;
  }
  .ftr1_box{
    padding: 0 25px;
    width: 50%;
  }
  .ftr1_box + .ftr1_box{
    border-top: none;
    border-left: 1px solid #a6a6a6;
  }
  .ftr1_title_en{
    margin-top: 17px;
  }
  .ftr1_title_ja{
    margin-top: 15px;
    font-size: 18px;
  }
  .ftr1_text{
    font-size: 16px;
    margin-top: 10px;
    line-height: 2.125;
  }
  .ftr1_btn{
    margin-top: 20px;
  }
  .ftr1_btn a{

  }
  .ftr1_btn_title_ja{
    font-size: 14px;
  }
  .ftr1_btn_title_en{
    margin-top: 7px;
    font-size: 45px;
  }
  .ftr1_btn_title_en:after{
    font-size: 14px;
    width: 50px;
    height: 50px;
  }

  .ftr2{
    margin-top: 100px;
    padding: 100px 0 50px;
  }
  .ftr2_box1{
    width: 350px;
  }
  .ftr2_box2{
    width: 300px;
  }
  .ftr2_inner{

  }
  .ftr2_box{

  }
  .ftr_logo{

  }
  ftr_sns{

  }
  .ftr_addr{
    margin-top: 35px;
    line-height: 2.125;
  }
  .ftr_link_content{
    margin-top: 50px;
    display: flex;
  }
  .ftr_links{
  }
  .ftr_link{

  }
  .ftr_link a{

  }
  .ftr_link a p{
    padding-left: 23px;
  }
  .ftr_copy{
    margin-top: 50px;
    padding: 5px 0 7px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 192px;
  }
  .footer:before{
    height: 855px;
  }

  .ftr1{

  }
  .ftr1_inner{
    padding: 20px 0 30px;
  }
  .ftr1_box{
    padding: 0 30px;
    width: 50%;
  }
  .ftr1_title_en{
    margin-top: 17px;
  }
  .ftr1_title_ja{
    margin-top: 17px;
    font-size: 24px;
  }
  .ftr1_text{
    margin-top: 19px;
  }
  .ftr1_btn{
    margin-top: 37px;
  }
  .ftr1_btn a{

  }
  .ftr1_btn_title_ja{
    font-size: 16px;
  }
  .ftr1_btn_title_en{
    margin-top: 7px;
    font-size: 79px;
  }
  .ftr1_btn_title_en:after{
    font-size: 16px;
    width: 66px;
    height: 66px;
  }

  .ftr2{
    margin-top: 122px;
    padding: 107px 0 50px;
  }
  .ftr2_box1{
    width: 350px;
  }
  .ftr2_box2{
    width: 380px;
  }
  .ftr2_inner{

  }
  .ftr2_box{

  }
  .ftr_logo{

  }
  ftr_sns{

  }
  .ftr_addr{
    margin-top: 35px;
  }
  .ftr_link_content{
    margin-top: 87px;
  }
  .ftr_links{
  }
  .ftr_links + .ftr_links{
    margin-left: 25.5%;
  }
  .ftr_link{

  }
  .ftr_link a{

  }
  .ftr_link a p{
    padding-left: 23px;
  }
  .ftr_copy{
    margin-top: 97px;
    padding: 5px 0 7px;
  }

}
@media (min-width:1200px){
  .ftr1_title_ja{
    margin-top: 17px;
    font-size: 28px;
  }

}


/*******************************
*　共通パーツ
********************************/


/* テーブル用 */
.table_rows{
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.table_rows_tr{
  display: table-row;
}
.table_rows_th,
.table_rows_td{
  display: table-cell;
  border: 1px solid #dcdcdc;
  vertical-align: middle;
  padding: 10px 15px;
  letter-spacing: 0.075em;
}
.table_rows_th{
  background-color: #eeeeee;
  vertical-align: top;
  border-right: 0;
}
.table_rows_td{
  background-color: #eeeeee;
  vertical-align: top;
  border-left: 0;
}
.table_rows_td_pad0{
  padding: 0 !important;
}

/* テーブル入れ子 */
.table_rows .table_rows{

}
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_td{
  border-top:0;
}
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_td{
  border-bottom:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:first-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:first-child{
  border-left:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:last-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:last-child{
  border-right:0;
}


/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}
.webgene-pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination li{
  padding: 4px 13px;
  margin: 0 4px;
  border: 1px solid #c0c0c0;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #e5e5e5;
}
.webgene-pagination li.next a:after{
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

/* アンカー */
.anchor{
  position: relative;
  top: -30px;
}

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more.center{
  justify-content: center;
}
.read_more a{
  width: auto;
  min-width: 200px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  color: #FFF;
  padding: 14px 20px 14px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  /*background-image: url(https://s-9610732.smooooth.jp/system_panel/uploads/images/20250718145423294620.jpg);*/
  background: #c8a37c;
}
.read_more a p{
  letter-spacing: 0;
  transition: 0.2s all;
}
.read_more a:hover{
  color: #c8a37c;
  background: #000;
}
.read_more a:hover p{
  transform: scale(1.05);
}
/*.read_more a:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover:after{
  margin-right: -5px;
}*/


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 32px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #565656;
}
.tt2_ja{
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}
.tt2_ja2{
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}


/* セクション */
.section{
  padding-top: 50px;
  padding-bottom: 50px;
}
.section.sec1{
  padding-top: 0;
}
.section:last-child{
  padding-bottom: 0;
}

.section.beige{
  background-color: #c3b9a9;
}

/* コンテナ */
.container.wide{

}

/*ゴールド文字*/
.gold{
  background-image: url(https://s-9610732.smooooth.jp/system_panel/uploads/images/20250718145423294620.jpg);
  background-clip: text;/*画像を切り抜く指定*/
  -webkit-background-clip: text;/*画像の位置を決める　ベンダープレフィックスもいれておきます*/
  color: transparent;/*テキスト透過*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;/*画像の位置を決める*/
}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

  /* スマホ用テーブル */
  .table_rows.resp{

  }
  .table_rows.resp,
  .table_rows.resp .table_rows_tr,
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    display: block;
    width: 100%;
    border: 0;
  }

  .table_rows.resp{
    border: 1px solid #dcdcdc;
    border-top: 0;
  }
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    border-top: 1px solid #dcdcdc;
  }

}
@media (min-width:768px){

  .anchor{
    top: -100px;
  }

  /* ページネーション */
  .webgene-pagination {
    margin-top: 50px;
  }

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    min-width: 200px;
    font-size: 16px;
    padding: 12px 10px;
    margin: 5px 5px;
  }
  /*  .read_more a:after{
      content: "→";
      top: 50%;
      right: 18px;
    }
    .read_more a:hover:after{
      margin-right: -5px;
    }*/

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }

  .tt2_ja2{
    font-size: 24px;
    margin-top: 30px;
  }
  .tt2_ja2 strong{
    font-size: 18px;
  }


}
@media (min-width:1024px){

  /* ページネーション */
  .webgene-pagination{
    margin-top: 120px;
  }
  .posts_list .webgene-pagination{
    margin-top: 80px;
  }

  /* 見出し */
  /*.tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }*/

}
@media (min-width:1200px){

  .read_more a.large{
    padding-left: 45px;
    padding-right: 45px;
  }
  
  .read_more a{
    min-width: 255px;
  }

}



/*******************************
*　HOME
********************************/
.pg_home{

}
.pg_home .section.sec1{
  padding-bottom: 100px;
}
.pg_home .section.sec2{
  padding-top: 50px;
  padding-bottom: 150px;
  background: #f7f0e9;
  position: relative;
  z-index: 1;
}
.pg_home .section.sec3{
  padding-top: 100px;
}

/*すべての輝きの裏に、プロの手仕事を。*/
.home_main_title{
  text-align: center;
}
.home_main_title,
.home_main_title > *{
  position: relative;
  z-index: 1;
}
.home_main_title_en{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0;
  line-height: 1;
  color: #f8f8f8;
  position: absolute;
  z-index: 1;
  bottom: 70%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
}
.home_main_title_ja{
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.5;
  color: #c8a37c;
}
.home_main_sub_title{
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  margin-top: 15px;
}
.home_main_box_content{
  margin-top: 30px;
}
.home_main_box{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home_main_box1,
.home_main_box2{
  width: 100%;
}
.home_main_box1{
  order: 2;
}
.home_main_box2{
  order: 1;
}
.home_main_box_en{
  margin-top: 15px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  color: rgba(198, 168, 137, 0.149);
}
.home_main_box_en p{
  letter-spacing: 0;
}
.home_main_box_text{
  margin-top: -15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}
.home_main_box .read_more{

}
.home_main_box_img.img_fit{

}
.home_main_box_img.img_fit:before{
  padding-top: 83.14%;
}

/*メイクの技術を、未来へつなぐ。*/
.home_future_title{
  margin-top: 70px;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}
.home_future_sub_title{
  margin-top: 19px;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #c8a37c;
}
.home_future_sub_title:before,
.home_future_sub_title:after{
  content: "—";
  font-weight: 900;
}
.home_future_box_content{

}
.home_future_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_future_box1,
.home_future_box2{
  width: 100%;
}
.home_future_box1{

}
.home_future_box2{

}
.home_future_box_img.img_fit{
  margin-top: 15px;
}
.home_future_box_img.img_fit:before{
  padding-top: 53.85%;
}
.home_future_box_text{
  margin-top: 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  writing-mode: vertical-rl;
  margin-left: auto;
}

/*企業様向け｜印象アップメイク研修・講師派遣*/
.home_make_content{

}
.home_make{

}
.home_make + .home_make{
  margin-top: 50px;
}
.home_make_en1{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  letter-spacing: 0;
  text-align: center;
  position: absolute;
  z-index: 1;
  top: -1.5%;
  width: 100%;
  color: #f8f8f8;
}
.home_make_en1 p{
  letter-spacing: 0;
}
.home_make_title{
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.5;
  color: #c8a37c;
}
.home_make_sub_title_outer{
  margin-top: 10px;
}
.home_make_sub_title{
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.5;
}
.home_make_box{
  margin-top: 17px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_make_box1,
.home_make_box2{
  width: 100%;
}
.home_make_box1{
  order: 2;
}
.home_make_box2{
  order: 1;
}
.home_make_en2{
  margin-top: 15px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  color: rgba(198, 168, 137, 0.149);
}
.home_make_en2 p{
  letter-spacing: 0;
}
.home_make_ja{
  margin-top: -20px;
  font-weight: 900;
  font-size: 17px;
  line-height: 1.426;
  border-bottom: 1px solid #959595;
  padding-bottom: 15px;
}
.home_make_ja strong{
  font-weight: 900;
  font-size: 20px;
}
.home_make_text{
  margin-top: 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
}
.home_make .read_more{

}
.home_make:nth-child(even) .read_more{
  justify-content: flex-end;
}
.home_make_img.img_fit{
  margin-top: 0px;
}
.home_make_img.img_fit:before{
  padding-top: 154.73%;
}

/*子役養成所｜未来を生き抜く力を、表現から。*/
.home_kids{
  margin-top: -150px;
}
.home_kids_img.img_fit{
  width: 89.58%;
  margin: 0 auto;
}
.home_kids_img.img_fit:before{
  padding-top: 26.9%;
}
.home_kids_title{
  margin-top: -30px;
  padding-top: 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.home_kids_title_en{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  z-index: 1;
  width: 100vw;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}
.home_kids_title_ja{
  position: relative;
  z-index: 1;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0;
  color: #c8a37c;
}

/*選ばれる子へ、“人間力を磨く”育成スクール*/
.home_kids1_content{
  margin-top: 50px;
}
.home_kids1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_kids1_box1{
  width: 17.11%;
}
.home_kids1_box2{
  width: 77.02%;
  display: flex;
  flex-wrap: wrap;
}
.home_kids1_title{
  font-weight: 900;
  font-size: 30px;
  line-height: 1.2;
  writing-mode: vertical-rl;
}
.home_kids1_title p{
  letter-spacing: 0;
}
.home_kids1_sub_title{
  margin-top: 15px;
  order: 2;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.3375;
}
.home_kids1_inner{
  display: contents;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_kids1_text,
.home_kids1_img_outer{
  width: 100%;
}
.home_kids1_text{
  margin-top: 15px;
  order: 3;
  font-weight: 500;
  font-size: 16px;
  line-height: 2.7;
  writing-mode: vertical-rl;
}
.home_kids1_img_outer{
  margin-top: 15px;
  order: 1;
}
.home_kids1_img.img_fit{
}
.home_kids1_img.img_fit:before{
  padding-top: 62.96%;
}
.home_kids1_content .read_more{

}

/*athleeが誇るタレントたち*/
.home_kids2_content{
  margin-top: 50px;
}
.home_kids2_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_kids2_box1,
.home_kids2_box2{
  width: 100%;
}
.home_kids2_box1{

}
.home_kids2_box2{

}
.home_kids2_imgs{
  display: flex;
  justify-content: space-between;
}
.home_kids2_img1.img_fit{

}
.home_kids2_img2.img_fit{

}
.home_kids2_img1.img_fit,
.home_kids2_img2.img_fit{
  width: 49%;
}
.home_kids2_img1.img_fit:before,
.home_kids2_img2.img_fit:before{
  padding-top: 144.83%;
}
.home_kids2_title_ja{
  margin-top: 15px;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  color: #c8a37c;
}
.home_kids2_title_en{
  margin-top: 15px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 0.89;
}
.home_kids2_title_en p{
  letter-spacing: 0;
}
.home_kids2_text{
  margin-top: 15px;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.888;
}
.home_kids2_box .read_more{

}

/*athleeの“今”を、ここからお届けします。*/
.home_news_content{
  margin-top: 50px;
}
.home_news_title{

}
.home_news_title,
.home_news_title > *{
  position: relative;
  z-index: 1;
}
.home_news_title_en{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #f8f8f8;
  position: absolute;
  z-index: 1;
  width: 100vw;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
}
.home_news_title_ja{
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.home_news_sub_title{
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: #c8a37c;
}
.home_news_list{
  margin-top: 30px;
}
.home_news_list .webgene-blog{
  margin: 0 -5px;
  display: flex;
  flex-wrap: wrap;
}
.home_news_list .webgene-item{
  width: 50%;
  padding: 0 5px;
}
.home_news_list .webgene-item:nth-child(n+3){
  margin-top: 30px;
}
.home_news_list .webgene-item .img_fit{
  overflow: hidden;
}
.home_news_list .webgene-item .img_fit:before{
  padding-top: 79.6%;
}
.home_news_list .webgene-item .meta{
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
}
.home_news_list .webgene-item .meta:after{
  content: "";
  display: block;
  width: 65px;
  height: 1px;
  background: #959595;
  margin-top: 5px;
}
.home_news_list .webgene-item .date,
.home_news_list .webgene-item .category{
  font-size: 12px;
  letter-spacing: 0.075em;
}
.home_news_list .webgene-item .date{
  padding-right: 7px;
  margin-right: 7px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  line-height: 1;
  border-right: 1px solid;
}
.home_news_list .webgene-item .category{
  width: 50%;
  font-weight: 500;
  line-height: 1;
}
.home_news_list .webgene-item .title{
  margin-top: 5px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0em;
  line-height: 1.75;
}


@media (max-width:767px){

  .home_future_box_text{
    margin-left: auto;
    margin-right: auto;
  }
  .home_kids1_img_outer{
    margin-top: 0;
  }
  .home_make_img.img_fit:before{
    padding-top: 120%;
  }
}
@media (min-width:768px){

  .pg_home .section.sec1{
    padding-bottom: 100px;
  }
  .pg_home .section.sec2{
    padding-top: 100px;
    padding-bottom: 200px;
  }
  .pg_home .section.sec3{
    padding-top: 200px;
  }

  /*すべての輝きの裏に、プロの手仕事を。*/
  .home_main_title{

  }
  .home_main_title_en{
    font-size: 54px;
    bottom: 50%;
  }
  .home_main_title_ja{
    font-size: 20px;
  }
  .home_main_sub_title{
    font-size: 26px;
  }
  .home_main_box_content{
    margin-top: 50px;
  }
  .home_main_box{

  }
  .home_main_box1{
    order: 1;
  }
  .home_main_box2{
    order: 2;
  }
  .home_main_box1{
    width: 57.2%;
  }
  .home_main_box2{
    width: 40.09%;
  }
  .home_main_box_en{
    font-size: 60px;
    margin-top: -25px;
  }
  .home_main_box_text{
    line-height: 2.125;
  }
  .home_main_box .read_more{

  }
  .home_main_box_img.img_fit{

  }

  /*メイクの技術を、未来へつなぐ。*/
  .home_future_title{
    margin-top: 100px;
    font-size: 46px;
  }
  .home_future_sub_title{
    margin-top: 19px;
    font-size: 24px;
  }
  .home_future_box_content{
    margin-top: 50px;
  }
  .home_future_box{

  }
  .home_future_box1{
    width: 57.2%;
  }
  .home_future_box2{
    width: 36.03%;
  }
  .home_future_box_img.img_fit{
    margin-top: 0px;
  }
  .home_future_box_text{
    margin-top: 0px;
    line-height: 2.125;
    line-height: 1.5;
    margin-left: -15%;
  }

  /*企業様向け｜印象アップメイク研修・講師派遣*/
  .home_make_content{

  }
  .home_make{

  }
  .home_make + .home_make{
    margin-top: 100px;
  }
  .home_make_title{
    font-size: 18px;
  }
  .home_make_en1{
    font-size: 100px;
    top: -3.7%;
  }
  .home_make_sub_title_outer{
    margin-top: 5px;
  }
  .home_make_sub_title{
    font-size: 26px;
    width: 91.5%;
  }
  .home_make:nth-child(even) .home_make_title,
  .home_make:nth-child(even) .home_make_sub_title_outer{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .home_make_box{
    margin-top: 17px;
  }
  .home_make:nth-child(odd) .home_make_box1,
  .home_make:nth-child(even) .home_make_box2{
    order: 1;
  }
  .home_make:nth-child(odd) .home_make_box2,
  .home_make:nth-child(even) .home_make_box1{
    order: 2;
  }
  .home_make_box1{
    width: 57.20%;
  }
  .home_make_box2{
    width: 34.23%;
  }
  .home_make_en2{
    margin-top: 0;
    font-size: 100px;
  }
  .home_make_ja{
    margin-top: -25px;
    padding-bottom: 25px;
    font-size: 18px;
    margin-right: -16px;
  }
  .home_make_ja strong{
    font-size: 24px;
  }
  .home_make_text{
    margin-top: 15px;
    line-height: 2.125;
  }
  .home_make .read_more{

  }
  .home_make_img.img_fit{
    margin-top: 0;
  }

  /*子役養成所｜未来を生き抜く力を、表現から。*/
  .home_kids{
    margin-top: -300px;
  }
  .home_kids_img.img_fit{

  }
  .home_kids_title{
    margin-top: -65px;
    padding-top: 90px;
  }
  .home_kids_title_en{
    font-size: 70px;
  }
  .home_kids_title_ja{
    font-size: 18px;
  }

  /*選ばれる子へ、“人間力を磨く”育成スクール*/
  .home_kids1_content{

  }
  .home_kids1_box{

  }
  .home_kids1_box1{
    width: 17.11%;
  }
  .home_kids1_box2{
    width: 77.02%;
    display: block;
  }
  .home_kids1_title{
    font-size: 50px;
  }
  .home_kids1_sub_title{
    order: 1;
    margin-top: 0;
    font-size: 24px;
    width: 100%;
  }
  .home_kids1_inner{
    display: flex;
    margin-top: 15px;
  }
  .home_kids1_text{
    order: 2;
    margin-top: 0;
    order: 1;
    line-height: 1.7;
    width: 35%;
  }
  .home_kids1_img_outer{
    order: 3;
    margin-top: 0;
    width: 63.15%;
    order: 2;
  }
  .home_kids1_img.img_fit{
  }
  .home_kids1_content .read_more{

  }

  /*athleeが誇るタレントたち*/
  .home_kids2_content{
    margin-top: 100px;
  }
  .home_kids2_box{

  }
  .home_kids2_box1{
    width: 57.2%;
  }
  .home_kids2_box2{
    width: 35.58%;
  }
  .home_kids2_imgs{

  }
  .home_kids2_img1.img_fit{

  }
  .home_kids2_img2.img_fit{

  }
  .home_kids2_title_ja{
    margin-top: 0;
    font-size: 18px;
  }
  .home_kids2_title_en{
    margin-top: 15px;
    font-size: 70px;
  }
  .home_kids2_text{
    margin-top: 15px;
    font-size: 14px;
  }
  .home_kids2_box .read_more{

  }

  /*athleeの“今”を、ここからお届けします。*/
  .home_news_content{
    margin-top: 100px;
  }
  .home_news_title{

  }
  .home_news_title_en{
    font-size: 120px;
    top: -60%;
  }
  .home_news_title_ja{
    font-size: 24px;
  }
  .home_news_sub_title{
    margin-top: 15px;
    font-size: 18px;
  }
  .home_news_list{

  }
  .home_news_list .webgene-blog{
    margin: 0 -10px;
  }
  .home_news_list .webgene-item{
    width: 25%;
    padding: 0 10px;
  }
  .home_news_list .webgene-item:nth-child(n+3){
    margin-top: 0px;
  }
  .home_news_list .webgene-item .img_fit{

  }
  .home_news_list .webgene-item .meta{
    margin-top: 15px;
  }
  .home_news_list .webgene-item .meta:after{
    margin-top: 10px;
  }
  .home_news_list .webgene-item .date,
  .home_news_list .webgene-item .category{
    font-size: 12px;
    letter-spacing: 0em;
  }
  .home_news_list .webgene-item .date{
    padding-right: 7px;
    margin-right: 7px;
  }
  .home_news_list .webgene-item .category{

  }
  .home_news_list .webgene-item .title{
    margin-top: 10px;
  }


}
@media (min-width:1024px){

  .pg_home .section.sec1{
    padding-bottom: 135px;
  }
  .pg_home .section.sec2{
    padding-top: 123px;
    padding-bottom: 300px;
  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

  /*すべての輝きの裏に、プロの手仕事を。*/
  .home_main_title{

  }
  .home_main_title_en{
    font-size: 70px;
    bottom: 37%;
  }
  .home_main_title_ja{
    font-size: 27px;
  }
  .home_main_sub_title{
    font-size: 38px;
    margin-top: 15px;
  }
  .home_main_box_content{
    margin-top: 50px;
  }
  .home_main_box{

  }
  .home_main_box1{

  }
  .home_main_box2{

  }
  .home_main_box_en{
    font-size: 100px;
  }
  .home_main_box_text{
    margin-top: -31px;
  }
  .home_main_box .read_more{

  }
  .home_main_box_img.img_fit{

  }

  /*メイクの技術を、未来へつなぐ。*/
  .home_future_title{
    margin-top: 136px;
    font-size: 46px;
  }
  .home_future_sub_title{
    margin-top: 19px;
    font-size: 24px;
  }
  .home_future_box_content{
    margin-top: 44px;
  }
  .home_future_box{

  }
  .home_future_box1{

  }
  .home_future_box2{

  }
  .home_future_box_img{

  }
  .home_future_box_text{
    line-height: 1.5;
    margin-left: 0;
  }

  /*企業様向け｜印象アップメイク研修・講師派遣*/
  .home_make_content{

  }
  .home_make{

  }
  .home_make + .home_make{
    margin-top: 91px;
  }
  .home_make_title{
    font-size: 18px;
  }
  .home_make_en1{
    font-size: 150px;
    top: -6.5%;
  }
  .home_make_sub_title_outer{
    margin-top: 7px;
  }
  .home_make_sub_title{
    font-size: 36px;
  }
  .home_make_box{
    margin-top: 43px;
  }
  .home_make_box1{

  }
  .home_make_box2{

  }
  .home_make_en2{
    font-size: 100px;
  }
  .home_make_ja{
    margin-top: -55px;
    padding-bottom: 27px;
    font-size: 18px;
  }
  .home_make_ja strong{
    font-size: 20px;
  }
  .home_make_text{
    margin-top: 15px;
  }
  .home_make .read_more{
    margin-top: 65px;
  }
  .home_make:nth-child(even) .read_more{
    margin-top: 46px;
  }
  .home_make_img.img_fit{
    margin-top: 6px;
  }

  /*子役養成所｜未来を生き抜く力を、表現から。*/
  .home_kids{
    margin-top: -320px;
  }
  .home_kids_img.img_fit{

  }
  .home_kids_title{
    margin-top: -90px;
    padding-top: 140px;
  }
  .home_kids_title_en{
    font-size: 100px;
  }
  .home_kids_title_ja{
    font-size: 18px;
  }

  /*選ばれる子へ、“人間力を磨く”育成スクール*/
  .home_kids1_content{
    margin-top: 73px;
  }
  .home_kids1_box{

  }
  .home_kids1_box1{

  }
  .home_kids1_box2{

  }
  .home_kids1_title{
    font-size: 70px;
  }
  .home_kids1_sub_title{
    font-size: 30px;
  }
  .home_kids1_inner{
    margin-top: 40px;
  }
  .home_kids1_text{
    line-height: 2;
    width: 220px;
  }
  .home_kids1_img.img_fit{

  }
  .home_kids1_content .read_more{
    margin-top: 7px;
  }

  /*athleeが誇るタレントたち*/
  .home_kids2_content{
    margin-top: 107px;
  }
  .home_kids2_box{

  }
  .home_kids2_box1{

  }
  .home_kids2_box2{

  }
  .home_kids2_imgs{
    margin-top: 5px;
  }
  .home_kids2_img1.img_fit{

  }
  .home_kids2_img2.img_fit{

  }
  .home_kids2_title_ja{
    font-size: 20px;
  }
  .home_kids2_title_en{
    margin-top: 26px;
    font-size: 100px;
  }
  .home_kids2_text{
    font-size: 14px;
  }
  .home_kids2_box .read_more{
    margin-top: 47px;
  }

  /*athleeの“今”を、ここからお届けします。*/
  .home_news_content{
    margin-top: 252px;
  }
  .home_news_title{

  }
  .home_news_title_en{
    font-size: 150px;
    top: -60%;
  }
  .home_news_title_ja{
    font-size: 32px;
  }
  .home_news_sub_title{
    margin-top: 27px;
    font-size: 24px;
  }
  .home_news_list{
    margin-top: 55px;
  }
  .home_news_list .webgene-blog{
    margin: 0 -15px;
  }
  .home_news_list .webgene-item{
    width: 25%;
    padding: 0 15px;
  }
  .home_news_list .webgene-item .img_fit{

  }
  .home_news_list .webgene-item .meta{
    margin-top: 20px;
  }
  .home_news_list .webgene-item .meta:after{
    margin-top: 15px;
  }
  .home_news_list .webgene-item .date,
  .home_news_list .webgene-item .category{
    font-size: 14px;
    letter-spacing: 0.075em;
  }
  .home_news_list .webgene-item .date{
    padding-right: 15px;
    margin-right: 7px;
  }
  .home_news_list .webgene-item .category{
    width: 50%;
  }
  .home_news_list .webgene-item .title{
    margin-top: 13px;
  }
  .home_news_list .read_more{
    margin-top: 65px;
  }


}
@media (min-width:1200px){
  .pg_home .section.sec2{
    padding-top: 123px;
    padding-bottom: 450px;
  }
  /*企業様向け｜印象アップメイク研修・講師派遣*/
  .home_make_en1{
    font-size: 170px;
    top: -7.7%;
  }
  .home_make_sub_title{
    font-size: 43px;
  }
  .home_make_ja{
    margin-top: -32px;
    padding-bottom: 27px;
    font-size: 18px;
  }
  .home_make_ja strong{
    font-size: 24px;
  }

  /*子役養成所｜未来を生き抜く力を、表現から。*/
  .home_kids{
    margin-top: -350px;
  }
  .home_kids_title{
    margin-top: -110px;
    padding-top: 170px;
  }
  .home_kids_title_en{
    font-size: 120px;
  }

  /*選ばれる子へ、“人間力を磨く”育成スクール*/
  .home_kids1_title{
    font-size: 80px;
  }
  .home_kids1_sub_title{
    font-size: 38px;
  }

  /*athleeが誇るタレントたち*/
  .home_kids2_text{
    font-size: 16px;
  }

  /*athleeの“今”を、ここからお届けします。*/
  .home_news_title_en{
    font-size: 170px;
    top: -60%;
  }

}
@media (min-width:1440px){

  /*すべての輝きの裏に、プロの手仕事を。*/
  .home_main_title{

  }
  .home_main_title_en{
    font-size: 100px;
    bottom: 37%;
  }
  .home_main_title_ja{
    font-size: 30px;
  }
  .home_main_sub_title{
    font-size: 46px;
    margin: 29px -20px 0;
  }
  .home_main_box_en{
    font-size: 100px;
  }

  /*メイクの技術を、未来へつなぐ。*/
  .home_future_box_text{
    line-height: 2.125;
  }

  /*企業様向け｜印象アップメイク研修・講師派遣*/
  .home_make_sub_title{
    font-size: 46px;
  }

  /*子役養成所｜未来を生き抜く力を、表現から。*/
  .home_kids{
    margin-top: -370px;
  }
  .home_kids_title{
    margin-top: -105px;
    padding-top: 181px;
  }

  /*athleeが誇るタレントたち*/
  .home_kids2_text{
    margin-top: 53px;
    margin-right: -15px;
    font-size: 18px;
  }

}
@media (min-width:1800px){

  /*企業様向け｜印象アップメイク研修・講師派遣*/
  .home_make_en1{
    top: -6%;
  }

  /*子役養成所｜未来を生き抜く力を、表現から。*/
  .home_kids{
    margin-top: -450px;
  }

  /*選ばれる子へ、“人間力を磨く”育成スクール*/
  .home_kids1_text{
    line-height: 2.125;
    width: 230px;
  }

}


/*******************************
*　About us
********************************/

.pg_about .section.sec1{

}
.pg_about .section.sec2{
  background: #f7f0e9;
}
.pg_about .section.sec3{
  padding-bottom: 75px;
}
.pg_about .section.sec4{
  padding-top: 20px;
  padding-bottom: 100px;
  background: #f7f0e9;
}

.pg_about + .footer{
  margin-top: 0;
  background: #f7f0e9;
}

/*飾りすぎず、でも印象に残る、自然体で魅せるあなただけのメイク*/
.about{

}
.about_title,
.about_title_ja,
.about_title_ja2{
  position: relative;
  z-index: 1;
}
.about_title{
  padding-top: 85px;
}
.about_title_en{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  letter-spacing: 0;
  line-height: 1.02;
  text-align: center;
  color: #f8f8f8;
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
}
.about_title_ja{
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  color: #c8a37c;
}
.about_title_ja2{
  font-size: 20px;
  font-weight: 900;
  line-height: 1.39;
  letter-spacing: 0;
  text-align: center;
  color: #c8a37c;
}
.about_sub_title{
  margin-top: 5px;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.5;
  text-align: center;
}
.about_sub_title p{
  letter-spacing: 0;
}
.about_sub_title2{
  font-size: 0.8695em;
  color: var(--main-color);
  margin-top: 15px;

}

.about_sub_title3{
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0;
  margin-top: 30px;
}
.about_sub_title3 p{
  letter-spacing: 0;
}

.about_box{
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_box1,
.about_box2{
  width: 100%;
}
.about_box1{

}
.about_box2{

}
.about_img.img_fit{

}
.about_img.img_fit:before{
  padding-top: 83.14%;
}
.about_text{
  margin-top: 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}

/*本当のあなたを、ナチュラルメイクで引き出す。 — つくり込まず、でも印象に残る、あなたらしさを引き立てるathleeのメイク—*/
.about_natural{

}
.about_natural_title{
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}
.about_natural_sub_title{
  margin-top: 5px;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: #c8a37c;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about_natural_sub_title:before,
.about_natural_sub_title:after{
  content: "—";
  font-weight: 900;
}
.about_natural_box{
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_natural_box1,
.about_natural_box2{
  width: 100%;
}
.about_natural_box1{

}
.about_natural_box2{

}
.about_natural_box_img.img_fit{

}
.about_natural_box_img.img_fit:before{
  padding-top: 53.85%;
}
.about_natural_box_text{
  margin-top: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  writing-mode: vertical-rl;
  margin-left: auto;
}

/*athleeが大切にする、メイクの本質あなたらしさを引き出すための“そぎ落とす美しさ”を、プロの感性で。*/
.about_essence{

}
.about_essence_title{
  margin-top: 50px;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}
.about_essence_sub_title{
  margin-top: 5px;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: #c8a37c;
}
.about_essence_box_content{
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.about_essence_box{
  width: 100%;
}
.about_essence_box:nth-child(n+2){
  margin-top: 50px;
}
.about_essence_box_img.img_fit{

}
.about_essence_box_img.img_fit:before{
  padding-top: 71.42%;
}

.about_essence_box_img_text{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 55px;
  line-height: 1;
  letter-spacing: 0;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.6);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.about_essence_box_title{
  margin-top: 15px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.about_essence_box_text{
  margin-top: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
}

/*  */
.about_essence_box_content.type2{
  
}
.about_essence_box_content.type2 .about_essence_box_img.img_fit:before{
  padding-top: 80%;
}
.about_essence_box_content.type2 .about_essence_box_title{
  margin-top: 25px;
}
.about_essence_box_content.type2 .read_more{
  margin-top: 10px;
}

/*メイクアップアーティストの想い*/
.about_makeup{

}
.about_makeup_title{
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
  color: #c8a37c;
}
.about_makeup_sub_title{
  margin-top: 0px;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
}
.about_makeup_sub_title p{
  letter-spacing: 0;
}
.about_makeup_box{
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_makeup_box1,
.about_makeup_box2{
  width: 100%;
}
.about_makeup_box1{
  order: 2;
}
.about_makeup_box2{
  order: 1;
}
.about_makeup_title_en{
  margin-top: 15px;
  margin-right: -5%;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  color: rgba(198, 168, 137, 0.149);
}
.about_makeup_title_en p{
  letter-spacing: 0;
}
.about_makeup_title_ja{
  margin-top: -20px;
  padding-bottom: 15px;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.416;
  border-bottom: 1px solid;
}
.about_makeup_text{
  margin-top: 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}
.about_makeup_img.img_fit{
  margin-top: 10px;
}
.about_makeup_img.img_fit:before{
  padding-top: 154.73%;
}

/*個人でも、企業でも。athleeのメイクは“らしさ”に寄り添います。*/
.about_our{

}
.about_our_title{
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.about_our_title_en{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  color: #f8f8f8;
  position: absolute;
  z-index: 1;
  top: auto;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  width: 100%;
}
.about_our_title_ja{
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.478;
  text-align: center;
  padding-top: 0;
}
.about_our_title_ja + .about_our_title_ja{
  padding-top: 0;
}
.about_our_item_content{
  margin-top: 40px;
}
.about_our_item{

}
.about_our_item:nth-child(n+2){
  margin-top: 50px;
}
.about_our_item_title{
  font-weight: 900;
  font-size: 18px;
  line-height: 1.478;
  letter-spacing: 0;
  color: #c8a37c;
  position: relative;
  z-index: 1;
  padding-left: 24px;
}
.about_our_item_title p{
  letter-spacing: 0;
}
.about_our_item_title:before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 35px;
  width: 5px;
  background: #c8a37c;
}
.about_our_item_box{
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_our_item_box1,
.about_our_item_box2{
  width: 100%;
}
.about_our_item_box1{

}
.about_our_item_box2{
  margin-top: 20px;
}
.about_our_item_box_img.img_fit{

}
.about_our_item_box_img.img_fit:before{
  padding-top: 154.73%;
}
.about_our_item_box_en{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 55px;
  letter-spacing: 0;
  line-height: 1;
  color: rgba(198, 168, 137, 0.149);
  margin-top: -7px;
  margin-left: -5px;
}
.about_our_item_box_en p{
  letter-spacing: 0;
  
}
.about_our_item_box_ja{
  margin-top: -15px;
  padding-bottom: 10px;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.416;
  border-bottom: 1px solid;
}

.about_our_item_box_ja + .about_our_item_box_ja{
  margin-top: 0;
}
.about_our_item_box_ja:not(:last-child){
  /*padding-bottom: 0;*/
  /*border-bottom: 0;*/
}
.about_our_item_box_ja.noBdr{
  padding-bottom: 0;
  border-bottom: 0;
}

.about_our_item_box_text{
  margin-top: 14px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}
.about_our_item_box .read_more{

}

.about_our_item_content.type2{
  
}
.about_our_item_content.type2 .about_our_item_box_img.img_fit:before{
  padding-top: 131.57%;
}
.about_our_item_content.type2 .about_our_item_box_ja{
  font-size: 19px;
}
  
@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){
  
  .about_box1{
    order: 1;
  }
  .about_box2{
    order: 2;
  }
  .about_our_item_box1{
    order: 1;
  }
  .about_our_item_box2{
    order: 2;
  }
  
  .about_makeup_title_en{
    margin-right: 0;
  }
  
  .about_natural_box_text{
    margin-left: auto;
    margin-right: auto;
  }
  
  .about_our_item_box_img.img_fit:before{
    padding-top: 120%;
  }
  .about_our_item_content.type2 .about_our_item_box_img.img_fit:before{
    padding-top: 115%;
  }
}
@media (min-width:768px){

  .pg_about .section.sec1{
    padding-bottom: 100px;
  }
  .pg_about .section.sec2{
    padding-top: 67px;
    padding-bottom: 73px;
  }
  .pg_about .section.sec3{
    padding-top: 95px;
    padding-bottom: 125px;
  }
  .pg_about .section.sec4{
    padding-top: 35px;
    padding-bottom: 100px;
    margin-bottom: 0;
  }


  /*飾りすぎず、でも印象に残る、自然体で魅せるあなただけのメイク*/
  .about{

  }
  .about_title{
    padding-top: 115px;
  }
  .about_title_en{
    font-size: 70px;
  }
  .about_title_ja{
    
    font-size: 22px;
  }
  .about_title_ja2{
    font-size: 36px;
  }
  .about_sub_title{
    margin-top: 10px;
    font-size: 30px;
  }
  
  .about_sub_title3{
    font-size: 30px;
    margin-top: 1.56em;
  }
  
  .about_box{
    margin-top: 40px;
  }
  .about_box1{
    width: 40.19%;
    /*padding-top: 10px;*/
  }
  .about_box2{
    width: 54.7%;
  }
  .about_img.img_fit{

  }
  .about_text{
    margin-top: -10px;
    line-height: 2.125;
  }

  /*本当のあなたを、ナチュラルメイクで引き出す。 — つくり込まず、でも印象に残る、あなたらしさを引き立てるathleeのメイク—*/
  .about_natural{

  }
  .about_natural_title{
    font-size: 30px;
  }
  .about_natural_sub_title{
    margin-top: 5px;
    font-size: 17px;
  }
  .about_natural_box{
    margin-top: 45px;
  }
  .about_natural_box1{
    width: 57.2%;
  }
  .about_natural_box2{
    width: 40%;
  }
  .about_natural_box_img.img_fit{

  }
  .about_natural_box_text{
    margin-top: 5px;
    line-height: 1.45;
  }

  /*athleeが大切にする、メイクの本質あなたらしさを引き出すための“そぎ落とす美しさ”を、プロの感性で。*/
  .about_essence{

  }
  .about_essence_title{
    margin-top: 82px;
    font-size: 30px;
  }
  .about_essence_sub_title{
    margin-top: 5px;
    font-size: 18px;
  }
  .about_essence_box_content{
    margin: 40px -10px 0;
  }
  .about_essence_box{
    width: 33.33%;
    padding: 0 10px;
  }
  .about_essence_box:nth-child(n+2){
    margin-top: 0px;
  }
  .about_essence_box:nth-child(n+4){
    margin-top: 30px;
  }
  .about_essence_box_img.img_fit{

  }
  .about_essence_box_img_text{
    font-size: 34px;
    top: 0;
    left: 0;
  }
  .about_essence_box_title{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    font-size: 18px;
  }
  .about_essence_box_text{
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.875;
  }

  /*メイクアップアーティストの想い*/
  .about_makeup{

  }
  .about_makeup_title{
    font-size: 18px;
  }
  .about_makeup_sub_title{
    margin-top: 3px;
    font-size: 32px;
  }
  .about_makeup_box{
    margin-top: 30px;
  }
  .about_makeup_box1{
    order: 1;
    width: 57.2%;
  }
  .about_makeup_box2{
    order: 2;
    width: 34.23%;
  }
  .about_makeup_title_en{
    margin-top: 0;
    font-size: 62px;
  }
  .about_makeup_title_ja{
    margin-top: -20px;
    padding-bottom: 15px;
    font-size: 20px;
  }
  .about_makeup_text{
    margin-top: 15px;
    line-height: 2.125;
  }
  .about_makeup_img.img_fit{
    margin-top: 10px;
  }

  /*個人でも、企業でも。athleeのメイクは“らしさ”に寄り添います。*/
  .about_our{

  }
  .about_our_title{
    padding-top: 30px;
  }
  .about_our_title_en{
    top: auto;
    bottom: 100%;
    font-size: 90px;
  }
  .about_our_title_ja{
    font-size: 28px;
    
  }
  .about_our_item_content{
    margin-top: 68px;
  }
  .about_our_item{

  }
  .about_our_item:nth-child(n+2){
    margin-top: 50px;
  }
  .about_our_item_title{
    font-size: 28px;
  }
  .about_our_item_box{
    margin-top: 30px;
  }
  .about_our_item_box1{
    width: 34.23%;
  }
  .about_our_item_box2{
    width: 57.5%;
    width: 62%;
    margin-top: 0;
  }
  .about_our_item_box_img.img_fit{

  }
  .about_our_item_box_en{
    font-size: 70px;
    margin-top: -7px;
  }
  .about_our_item_box_ja{
    margin-top: -31px;
    padding-bottom: 19px;
    font-size: 18px;
     letter-spacing:0em;
    margin-right: -16px;
  }
  .about_our_item_box_text{
    margin-top: 14px;
    line-height: 2.125;
  }
  .about_our_item_box .read_more{

  }
  
  .about_our_item_content.each .about_our_item:nth-child(odd) .about_our_item_box1{
    
  }
  .about_our_item_content.each .about_our_item:nth-child(odd) .about_our_item_box2{
    
  }
  .about_our_item_content.each .about_our_item:nth-child(even) .about_our_item_box1{
    order: 2;
  }
  .about_our_item_content.each .about_our_item:nth-child(even) .about_our_item_box2{
    order: 1;
  }
  
  .about_our_item_content.type2{
    
  }
  .about_our_item_content.type2 .about_our_item_box_ja{
    font-size: 19px;
  }
}
@media (min-width:1024px){

  
  /*飾りすぎず、でも印象に残る、自然体で魅せるあなただけのメイク*/
  .about{

  }
  .about_title{
    padding-top: 176px;
  }
  .about_title_en{
    font-size: 100px;
  }
  .about_title_ja{
    
    font-size: 30px;
  }
  .about_title_ja2{
    font-size: 48px;
  }
  .about_sub_title{
    margin-top: 28px;
    font-size: 40px;
  }
  .about_sub_title3{
    /*font-size: 46px;*/
    /*margin-top: 72px;*/
  }
  
  .about_box{
    margin-top: 49px;
  }
  .about_box1{

  }
  .about_box2{

  }
  .about_img.img_fit{

  }
  .about_text{
    margin-top: -10px;
  }

  /*本当のあなたを、ナチュラルメイクで引き出す。 — つくり込まず、でも印象に残る、あなたらしさを引き立てるathleeのメイク—*/
  .about_natural{

  }
  .about_natural_title{
    font-size: 40px;
  }
  .about_natural_sub_title{
    margin-top: 5px;
    font-size: 24px;
  }
  .about_natural_box{
    margin-top: 45px;
  }
  .about_natural_box1{

  }
  .about_natural_box2{
    width: 35.9%;
    width: 42%;
  }
  .about_natural_box_img.img_fit{

  }
  .about_natural_box_text{
    margin-top: 5px;
  }

  /*athleeが大切にする、メイクの本質あなたらしさを引き出すための“そぎ落とす美しさ”を、プロの感性で。*/
  .about_essence{

  }
  .about_essence_title{
    margin-top: 82px;
    font-size: 40px;
  }
  .about_essence_sub_title{
    margin-top: 6px;
    font-size: 24px;
  }
  .about_essence_box_content{
    margin: 50px -15px 0;
  }
  .about_essence_box{
    padding: 0 15px;
  }
  .about_essence_box_img.img_fit{

  }
  .about_essence_box_img_text{
    font-size: 45px;
    top: 0;
    left: 0;
  }
  .about_essence_box_title{
    margin-top: 15px;
    font-size: 18px;
  }
  .about_essence_box_text{
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.875;
  }

  /*メイクアップアーティストの想い*/
  .about_makeup{

  }
  .about_makeup_title{
    font-size: 18px;
  }
  .about_makeup_sub_title{
    margin-top: 3px;
    font-size: 40px;
  }
  .about_makeup_box{
    margin-top: 60px;
  }
  .about_makeup_box1{

  }
  .about_makeup_box2{

  }
  .about_makeup_title_en{
    font-size: 84px;
  }
  .about_makeup_title_ja{
    margin-top: -28px;
    padding-bottom: 19px;
    font-size: 20px;
  }
  .about_makeup_text{
    margin-top: 15px;
  }
  .about_makeup_img.img_fit{
    margin-top: 10px;
  }

  /*個人でも、企業でも。athleeのメイクは“らしさ”に寄り添います。*/
  .about_our{

  }
  .about_our_title{

  }
  .about_our_title_en{
    /*top: -170%;*/
    /*font-size: 170px;*/
  }
  .about_our_title_ja{
    /*font-size: 46px;*/
  }
  .about_our_item_content{
    /*margin-top: 68px;*/
  }
  .about_our_item{

  }
  .about_our_item:nth-child(n+2){
    margin-top: 70px;
  }
  .about_our_item_title{
    /*font-size: 35px;*/
  }
  .about_our_item_box{
    /*margin-top: 54px;*/
  }
  .about_our_item_box1{

  }
  .about_our_item_box2{

  }
  .about_our_item_box_img.img_fit{

  }
  .about_our_item_box_en{
    margin-top: -7px;
  }
  .about_our_item_box_ja{
    /*margin-top: -31px;*/
    /*padding-bottom: 19px;*/
    /*font-size: 24px;*/
    letter-spacing:0.075em;
  }
  .about_our_item_box_text{
    margin-top: 14px;
  }
  .about_our_item_box .read_more{
    margin-top: 37px;
  }

}
@media (min-width:1200px){

  .pg_about .section.sec1{
    padding-bottom: 100px;
  }
  .pg_about .section.sec2{
    padding-top: 67px;
    padding-bottom: 73px;
  }
  .pg_about .section.sec3{
    padding-top: 95px;
    padding-bottom: 215px;
  }
  .pg_about .section.sec4{
    padding-top: 72px;
    padding-bottom: 200px;
    margin-bottom: 0;
  }
  
  /*飾りすぎず、でも印象に残る、自然体で魅せるあなただけのメイク*/
  .about_sub_title{
    margin-top: 28px;
    font-size: 46px;
  }
  .about_sub_title3{
    font-size: 46px;
    /*margin-top: 72px;*/
  }
  
  /*本当のあなたを、ナチュラルメイクで引き出す。 — つくり込まず、でも印象に残る、あなたらしさを引き立てるathleeのメイク—*/
  .about_natural_title{
    font-size: 46px;
  }
  .about_natural_box_text{
    line-height: 2.125;
  }

  /*athleeが大切にする、メイクの本質あなたらしさを引き出すための“そぎ落とす美しさ”を、プロの感性で。*/
  
  .about_essence_box:nth-child(n+4){
    margin-top: 60px;
  }
  .about_essence_title{
    margin-top: 82px;
    font-size: 46px;
  }
  .about_essence_box_img_text{
    font-size: 55px;
    top: 0;
    left: 0;
  }
  .about_essence_box_title{
    margin-top: 15px;
    font-size: 20px;
  }
  
  /*メイクアップアーティストの想い*/
  .about_makeup_sub_title{
    margin-top: 3px;
    font-size: 46px;
  }
  .about_makeup_title_en{
    font-size: 100px;
  }
  .about_makeup_title_ja{
    margin-top: -28px;
    padding-bottom: 19px;
    font-size: 24px;
  }

  
  .about_our_item_box1{
    width: 34.23%;
  }
  .about_our_item_box2{
    width: 57.5%;
    margin-top: 0;
  }
  
  .about_our_title{
    padding-top: 60px;
  }
  .about_our_title_en{
    /*top: -170%;*/
    font-size: 170px;
  }
  .about_our_title_ja{
    font-size: 46px;
    /*padding-top: 60px;*/
  }
  .about_our_item_content{
    margin-top: 68px;
  }
  .about_our_item_title{
    font-size: 35px;
  }

  .about_our_item_box{
    margin-top: 54px;
  }
  .about_our_item_box_ja{
    margin-top: -31px;
    padding-bottom: 19px;
    font-size: 24px;
  }
  .about_our_item_box_en{
    font-size: 100px;
    margin-top: -7px;
  }
  
  .about_our_item_content.type2 .about_our_item_box_ja{
    font-size: 28px;
  }
  
  .about_title_ja2{
    font-size: 69px;
  }
  
}






/*******************************
*　
********************************/

/* セクション設定 */
.pg_business{

}
.pg_business .section.sec1{
  
}
.pg_business .section.sec2{
  background: #f7f0e9;
  padding-bottom: 70px;
}
.pg_business .section.sec3{
  padding-top: 23px;
  padding-bottom: 70px;
}
.pg_business .section.sec4{
  background: #f7f0e9;
  padding-top: 23px;
  padding-bottom: 100px;
}

.pg_business .section.sec1 .about_title{
  padding-top: 70px;
}
  
.pg_business + .footer{
  margin-top: 0;
  background: #f7f0e9;
}

@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_business{

  }
  .pg_business .section.sec1{
    padding-bottom: 50px;
  }
  .pg_business .section.sec2{
    padding-top: 42px;
    padding-bottom: 100px;
  }
  .pg_business .section.sec3{
    padding-top: 42px;
    padding-bottom: 100px;
  }
  .pg_business .section.sec4{
    padding-top: 42px;
    padding-bottom: 100px;
  }
  
  .pg_business .section.sec1 .about_title{
    padding-top: 90px;
  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){

  .pg_business .section.sec1{
    padding-bottom: 80px;
  }
  .pg_business .section.sec2{
    padding-top: 85px;
    padding-bottom: 125px;
  }
  .pg_business .section.sec3{
    padding-top: 75px;
    padding-bottom: 125px;
  }
  .pg_business .section.sec4{
    padding-top: 75px;
    padding-bottom: 190px;
  }
  
  .pg_business .section.sec1 .about_title{
    padding-top: 115px;
  }

}

/* メイン部分 */

/* ポイント */
.business_point_wrap{
  
}
* + .business_point_wrap{
  margin-top: 30px;
}
.business_point{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #FFF;
}
.business_point{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #FFF;
}
.business_point.type2{
  background: #f7f0e9;
}
.business_point_box1{
  width: 100%;
}
.business_point_box2{
  width: 100%;
  padding: 25px 20px;
}
.business_point_img{
  /*height: 100%;*/
}
.business_point_img.img_fit:before{
  padding-top: 126.05%;
  /*height: 100%;*/
}
.business_point_list{
  
}
.business_point_list_item{
  position: relative;
  z-index: 1;
  font-size: 15px;
  padding-left: 25px;
}
.business_point_list_item + .business_point_list_item{
  margin-top: 15px;
}
.business_point_list_item:before{
  content: "\f058";
  font-size: 1.111em;
  font-family: "FontAwesome";
  color: #c8a37c;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.business_point_list_item p{
  font-size: 1em;
  font-weight: 700;
  line-height: 1.6;
  text-align: justify;
}
.business_point_list_item strong{
  color: #c8a37c;
  font-weight: 900;
}


.business_point_msg{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  text-align: justify;
  word-break: break-all;
  margin-top: 30px;
}


@media (max-width:767px){

  .business_point_img.img_fit:before{
    padding-top: 100%;
  }
  
}
@media (min-width:768px){


  /* ポイント */
  .business_point_wrap{

  }
  * + .business_point_wrap{
    margin-top: 45px;
  }
  .business_point{
  }
  .business_point_box1{
    width: 45%;
  }
  .business_point_box2{
    width: 55%;
    padding: 20px;
  }
  .business_point_img{
    height: 100%;
  }
  .business_point_img.img_fit:before{
    padding-top: 0;
    height: 100%;
  }
  .business_point_list_item{
    font-size: 16px;
    padding-left: 30px;
  }
  .business_point_list_item + .business_point_list_item{
    margin-top: 15px;
  }
  .business_point_list_item:before{
    font-size: 1.111em;
  }
  .business_point_list_item p{
    line-height: 1.6;
  }

  .business_point_msg{
    font-size: 16px;
    line-height: 2.125;
    text-align: center;
    margin-top: 30px;
  }
  
}
@media (min-width:1024px){

  /* ポイント */
  .business_point_wrap{

  }
  * + .business_point_wrap{
    margin-top: 45px;
  }
  .business_point{
  }
  .business_point_box1{
    width: 25.67%;
  }
  .business_point_box2{
    width: 74.33%;
    padding: 25px 25px;
  }
  
  .business_point_msg{
    text-align: center;
    margin-top: 50px;
    margin-inline: -16px;
  }

}
@media (min-width:1200px){

  /* ポイント */
  .business_point_box1{
    width: 25.67%;
    min-height: 358px;
  }
  .business_point_box2{
    width: 74.33%;
    padding: 45px 65px;
  }
  .business_point_list_item{
    font-size: 18px;
  }
  
}




/*******************************
*　
********************************/

/* セクション設定 */
.pg_business2{

}
.pg_business2 .section.sec1{
  padding-top: 50px;
  padding-bottom: 100px;
  background: #f7f0e9;
}
.pg_business2 .section.sec2{

}

.body_businessDetail .pg_header{
  margin-bottom: 0;
}

.pg_business2 + .footer{
  margin-top: 0;
  background: #f7f0e9;
}

@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_business2{

  }
  .pg_business2 .section.sec1{
    padding-top: 60px;
    padding-bottom: 100px;
  }
  .pg_business2 .section.sec2{

  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){

  .pg_business2{

  }
  .pg_business2 .section.sec1{
    padding-top: 60px;
    padding-bottom: 190px;
  }

}

/* メイン部分 */

.about_our_title_en.noUp{
  position: static;
  transform: none;
}
.about_our_title_en.noUp + .about_our_title_ja{
  padding-top: 0;
  margin-top: -25px;
  position: relative;
  z-index: 2;
}

@media (max-width:767px){

}
@media (min-width:768px){
  .about_our_title_en.noUp + .about_our_title_ja{
    margin-top: -45px;
  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){

  .about_our_title_en.noUp + .about_our_title_ja{
    margin-top: -65px;
  }

}







/*******************************
*　
********************************/

/* セクション設定 */
.pg_private{

}
.pg_private .section.sec1{
  
}
.pg_private .section.sec2{
  background: #f7f0e9;
  padding-bottom: 70px;
}
.pg_private .section.sec3{
  padding-top: 23px;
  padding-bottom: 70px;
}
.pg_private .section.sec4{
  background: #f7f0e9;
  padding-top: 23px;
  padding-bottom: 100px;
}

.pg_private .section.sec1 .about_title{
  padding-top: 70px;
}

.pg_private + .footer{
  margin-top: 0;
  background: #f7f0e9;
}

@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_private{

  }
  .pg_private .section.sec1{
    padding-bottom: 50px;
  }
  .pg_private .section.sec2{
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .pg_private .section.sec3{
    padding-top: 42px;
    padding-bottom: 100px;
  }
  .pg_private .section.sec4{
    padding-top: 42px;
    padding-bottom: 100px;
  }
  
  .pg_private .section.sec1 .about_title{
    padding-top: 95px;
  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){

  .pg_private .section.sec1{
    padding-bottom: 75px;
  }
  .pg_private .section.sec2{
    padding-top: 90px;
    padding-bottom: 160px;
  }
  .pg_private .section.sec3{
    padding-top: 75px;
    padding-bottom: 145px;
  }
  .pg_private .section.sec4{
    padding-top: 75px;
    padding-bottom: 190px;
  }
  
  .pg_private .section.sec1 .about_title{
    padding-top: 120px;
  }
  

}

/* メイン部分 */
.private_lesson{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
* + .private_lesson{
  margin-top: 30px;
}
.private_lesson_item{
  width: 100%;
  padding: 0 5px;
}
.private_lesson_item:nth-child(n+2){
  margin-top: 20px;
}
.private_lesson_item_img{
  
}
.private_lesson_item_img.img_fit:before{
  padding-top: 64.81%;
}
.private_lesson_item_title{
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  margin-top: 15px;
}
.private_lesson_item_txt{
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
  line-height: 1.875;
  margin-top: 10px;
}


/* リンク */
.private_link{
  
}
* + .private_link{
  margin-top: 30px;
}
.private_link_tt{
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}
.private_link .read_more{
  margin-top: 15px;
}

/* 見出し専用カスタム */
.about_title.private{
  padding-top: 120px;
}

.about_our_title.private{
  padding-top: 0;
}
.about_our_title.private .about_our_title_en{
  bottom: 58%;
}
.about_our_title.private .about_our_title_ja{
  position: relative;
  z-index: 2;
}
.about_our_title.private .about_our_title_en + .about_our_title_ja{
  
}

@media (max-width:767px){

}
@media (min-width:768px){

  /* メイン部分 */
  .private_lesson{
    margin: 0 -10px;
  }
  * + .private_lesson{
    margin-top: 30px;
  }
  .private_lesson_item{
    width: 50%;
    padding: 0 10px;
  }
  .private_lesson_item:nth-child(n+2){
    margin-top: 0;
  }
  .private_lesson_item:nth-child(n+3){
    margin-top: 20px;
  }
  .private_lesson_item_title{
    font-size: 18px;
  }
  .private_lesson_item_txt{
    font-size: 16px;
    line-height: 2.125;
    margin-top: 10px;
  }
  
  /* リンク */
  .private_link{

  }
  * + .private_link{
    margin-top: 50px;
  }
  .private_link_tt{
    font-size: 28px;
  }
  .private_link .read_more{
    margin-top: 15px;
  }
  
}
@media (min-width:1024px){

  /* メイン部分 */
  .private_lesson{
    margin: 0 -15px;
  }
  * + .private_lesson{
    margin-top: 55px;
  }
  .private_lesson_item{
    width: 50%;
    padding: 0 15px;
  }
  .private_lesson_item:nth-child(n+3){
    margin-top: 50px;
  }
  .private_lesson_item_title{
    font-size: 20px;
  }
  
  /* 見出し専用カスタム */
  .about_title.private{
    padding-top: 120px;
  }
  
  

}
@media (min-width:1200px){

  /* リンク */
  .private_link{

  }
  * + .private_link{
    margin-top: 50px;
  }
  .private_link_tt{
    font-size: 28px;
  }

}




/*******************************
*　
********************************/

/* セクション設定 */
.pg_academy{

}
.pg_academy .section.sec1{
  
}
.pg_academy .section.sec2{
  background: #f7f0e9;
  padding-top: 10px;
  padding-bottom: 70px;
}
.pg_academy .section.sec3{
  padding-top: 23px;
  padding-bottom: 70px;
}
.pg_academy .section.sec4{
  background: #f7f0e9;
  padding-top: 10px;
  padding-bottom: 100px;
}


.pg_academy .section.sec2 .about_our{
  margin-top: -60px;
}
.pg_academy .section.sec4 .about_our{
  margin-top: -60px;
}
.pg_academy .section.sec4 .about_our_title_en.noUp + .about_our_title_ja{
  margin-top: -25px;
}

.pg_academy + .footer{
  margin-top: 0;
  background: #f7f0e9;
}

@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_academy{

  }
  .pg_academy .section.sec1{
    padding-bottom: 130px;
  }
  .pg_academy .section.sec2{
    padding-top: 10px;
    padding-bottom: 100px;
  }
  .pg_academy .section.sec3{
    padding-top: 42px;
    padding-bottom: 100px;
  }
  .pg_academy .section.sec4{
    padding-top: 10px;
    padding-bottom: 100px;
  }
  
  .pg_academy .section.sec2 .about_our{
    margin-top: -95px;
  }
  
  .pg_academy .section.sec4 .about_our{
    margin-top: -95px;
  }
  .pg_academy .section.sec4 .about_our_title_en.noUp + .about_our_title_ja{
    margin-top: -50px;
  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){

  .pg_academy .section.sec1{
    padding-bottom: 130px;
  }
  .pg_academy .section.sec2{
    padding-top: 10px;
    padding-bottom: 160px;
  }
  .pg_academy .section.sec3{
    padding-top: 75px;
    padding-bottom: 180px;
  }
  .pg_academy .section.sec4{
    padding-top: 10px;
    padding-bottom: 130px;
  }
  
  .pg_academy .section.sec2 .about_our_title{
    padding-top: 0;
  }
  
  .pg_academy .section.sec4 .about_our{
    margin-top: -165px;
  }
  .pg_academy .section.sec4 .about_our_title_en.noUp + .about_our_title_ja{
    margin-top: -115px;
  }
}

/* メイン部分 */

@media (max-width:767px){

}
@media (min-width:768px){

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}





/*******************************
*　
********************************/

/* セクション設定 */
.pg_talent{

}
.pg_talent .section.sec1{

}
.pg_talent .section.sec2{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_talent{

  }
  .pg_talent .section.sec1{

  }
  .pg_talent .section.sec2{

  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}

/* メイン部分 */


/* レイアウト */
.talent_list{
  
}
* + .talent_list{
  margin-top: 30px;
}
.talent_list .webgene-item{
  
}
.talent_list .webgene-item + .webgene-item{
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #424242;
}

.talent_details{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.talent_details_box1{
  width: 100%;
}
.talent_details_box2{
  width: 100%;
}
.talent_details_box3{
  width: 100%;
  margin-top: 20px;
}


/* 名前 */
.talent_details_head{
  margin-bottom: 10px;
}
.talent_details_head_name{
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.5;
  margin-bottom: 5px;
}
.talent_details_head_kana{
  font-size: 14px;
  font-weight: 500;
}
.talent_details_head_en{
  font-size: 14px;
  font-weight: 500;
}
.talent_details_head p + p{
  margin-top: 5px;
}

/* SNS */
.talent_details_sns{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 10px;
}
.talent_details_sns_item{
  width: 26px;
  margin: 5px 5px;
}
.talent_details_sns_item img{
  display: block;
}

/* プロフ */
.talent_details_prof{

}  
.talent_details_prof_tt{
  font-size: 18px;
  font-weight: 900;
  color: var(--main-color);
  margin-bottom: 15px;
}
.talent_details_prof_tbl{
  width: 100%;
  
}
.talent_details_prof_tbl th,
.talent_details_prof_tbl td{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.5;
  border: 1px solid #8d8d8d;
  padding: 10px 10px;
}
.talent_details_prof_tbl th{
  width: 100px;
  background: #f7f0e9;
  text-align: center;
}
.talent_details_prof_tbl td{
  background: #FFF;
}

/* 出演歴 */
.talent_details_history{
  font-size: 15px;
  font-weight: 500;
  line-height: 1.875;
  background: #f7f0e9;
  margin-top: 20px;
  padding: 15px 15px;
}
.talent_details_history{
  
}

/* ギャラリー */
.gallery_wrap{
  
}
.gallery_box1{
  
}
.gallery_box2{
  padding: 0 65px;
  margin-top: 35px;
  position: relative;
  z-index: 1;
}

.gallery_main{
  
}
.gallery_main .img{
  cursor: pointer;
}
.gallery_main .img.img_fit:before{
  padding-top: 134.83%;
}
.gallery_thumb{
  
}
.gallery_thumb .img{
  cursor: pointer;
}
.gallery_thumb .img.img_fit:before{
  padding-top: 137.93%;
}

.gallery_slide_prev.swiper-button-disabled,
.gallery_slide_next.swiper-button-disabled{
  opacity: 0.4;
  filter: grayscale(1);
  cursor: initial;
}
.gallery_slide_prev,
.gallery_slide_next{
  width: 20px;
  cursor: pointer;
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.gallery_slide_prev{
  left: 0;
}
.gallery_slide_next{
  right: 0;
}
.gallery_slide_prev:not(.swiper-button-disabled):hover,
.gallery_slide_next:not(.swiper-button-disabled):hover{
  scale: 1.1;
}


.gallery_wrap .swiper-pagination{
  position: static;
  margin-top: 20px;
}

.swiper-pagination-bullet{
  width: 14px;
  height: 14px;
  background: #e5e5e5;
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background: var(--main-color);
}

.talent_details_history {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.talent_details_history a{
  color: #03a9f4;
}

.history_overlay {
  position: absolute;
  bottom: 2.2em;
  left: 0;
  width: 100%;
  height: 3em;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  pointer-events: none;
  display: none;
}

.talent_details_history.folded .history_overlay {
  display: block;
}

.toggleTxtBtn button{
  display: block;
  margin: 1em auto 0;
  background: none;
  border: none;
  padding: 0.5em 1em;
  font-size: 0.9em;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width:767px){

  .talent_details_box1{
    order: 3;
    margin-bottom: 20px;
  }
  .talent_details_box2{
    display: contents;
  }
  .talent_details_box3{
    order: 10;
  }
  
  .talent_details_head{
    width: 100%;
    order: 1;
  }
  .talent_details_sns{
    /*width: 100%;*/
    order: 2;
  }
  .talent_details_prof{
    width: 100%;
    order: 4;
  }
  .talent_details_history{
    width: 100%;
    order: 5;
  }
  .post_pdf{
    order: 9;
  }
}
@media (min-width:768px){


  /* レイアウト */
  .talent_list{

  }
  .talent_list .webgene-item{

  }
  .talent_list .webgene-item + .webgene-item{
    margin-top: 60px;
    padding-top: 60px;
  }
  
  .talent_details{
  }
  .talent_details_box1{
    width: 40.09%;
    width: 45%;
    padding-top: 10px;
  }
  .talent_details_box2{
    width: 51.35%;
    width: 50%;
  }
  .talent_details_box3{
    width: 100%;
    margin-top: 30px;
  }


  /* 名前 */
  .talent_details_head{
    margin-bottom: 20px;
  }
  .talent_details_head_name{
    font-size: 30px;
    margin-bottom: 5px;
  }
  .talent_details_head_kana{
    font-size: 16px;
  }
  .talent_details_head_en{
    font-size: 16px;
  }
  .talent_details_head p + p{
    margin-top: 10px;
  }

  /* SNS */
  .talent_details_sns{
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: 20px;
  }
  .talent_details_sns_item{
    width: 26px;
    margin: 5px 5px;
  }
  
  
  /* プロフ */
  .talent_details_prof{

  }  
  .talent_details_prof_tt{
    font-size: 20px;
    margin-bottom: 15px;
  }
  .talent_details_prof_tbl{
  }
  .talent_details_prof_tbl th,
  .talent_details_prof_tbl td{
    font-size: 16px;
    padding: 10px 10px;
  }
  .talent_details_prof_tbl th{
    width: 100px;
  }
  .talent_details_prof_tbl td{
    padding-left: 20px;
  }

  /* 出演歴 */
  .talent_details_history{
    font-size: 15px;
    line-height: 2;
    margin-top: 20px;
    padding: 15px 15px;
  }
  
  /* ギャラリー */
  .gallery_wrap{

  }
  .gallery_box1{

  }
  .gallery_box2{
    padding: 0 35px;
    margin-top: 35px;
  }

  
}
@media (min-width:1024px){

  /* レイアウト */
  .talent_details{
  }
  .talent_details_box1{
    width: 40.09%;
  }
  .talent_details_box2{
    width: 51.35%;
  }
  .talent_details_box3{
    width: 100%;
    margin-top: 30px;
  }

}
@media (min-width:1200px){

  /* レイアウト */
  .talent_list{

  }
  .talent_list .webgene-item{

  }
  .talent_list .webgene-item + .webgene-item{
    margin-top: 150px;
    padding-top: 150px;
  }
  .talent_details{
  }
  .talent_details_box1{
    width: 40.09%;
  }
  .talent_details_box2{
    width: 51.35%;
  }
  .talent_details_box3{
    width: 100%;
    margin-top: 50px;
  }


  /* 名前 */
  .talent_details_head{
    margin-bottom: 30px;
  }
  .talent_details_head_name{
    font-size: 46px;
  }
  .talent_details_head_kana{
    font-size: 16px;
  }
  .talent_details_head_en{
    font-size: 16px;
  }
  .talent_details_head p + p{
    margin-top: 10px;
  }

  /* SNS */
  .talent_details_sns{
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: 80px;
  }
  .talent_details_sns_item{
    width: 26px;
    margin: 5px 5px;
  }
  
  
  /* プロフ */
  .talent_details_prof{

  }  
  .talent_details_prof_tt{
    font-size: 25px;
    margin-bottom: 25px;
  }
  .talent_details_prof_tbl{
  }
  .talent_details_prof_tbl th,
  .talent_details_prof_tbl td{
    font-size: 16px;
    padding: 21px 5px;
  }
  .talent_details_prof_tbl th{
    width: 220px;
  }
  .talent_details_prof_tbl td{
    padding-left: 40px;
  }

  /* 出演歴 */
  .talent_details_history{
    font-size: 15px;
    line-height: 2;
    margin-top: 80px;
    padding: 23px 30px;
  }
  
  /* ギャラリー */
  .gallery_wrap{

  }
  .gallery_box1{

  }
  .gallery_box2{
    padding: 0 65px;
    margin-top: 35px;
  }

}






/*******************************
*　
********************************/

/* セクション設定 */
.pg_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}

/* メイン部分 */

@media (max-width:767px){
  .read_more,
  .home_make .read_more{
    justify-content:center!important;
  }
}
@media (min-width:768px){

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}