@charset "UTF-8";

/* ******************************
   変数設定など
   ****************************** */
:root {

  /* カラー(ボタン背景色など) */
  --main-color: #2b6796;
  --sub-color: #e7161a;
  --txt-color: #282828;

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  /*--font-en: "Oswald", 'Noto Sans JP',sans-serif;*/
  --font-en: "Cardo", 'Noto Sans JP', sans-serif;
  /*--font-mincho: 'Noto Serif JP', serif;*/
  --font-mincho: 'Shippori Mincho B1', serif;
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: var(--txt-color);

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

#root{
  overflow: hidden;
}


/* ******************************
   コンテナ設定＋画面端までの距離
   ****************************** */
:root {

  /* 画面端までの距離（通常） */
  --margin-for-device-side: -15px;

  /* 画面端までの距離（ワイド） */
  --margin-for-device-side-w: -15px;

}
@media (min-width:768px){
  :root {
    --margin-for-device-side: calc(345px - 50vw);
    --margin-for-device-side-w: calc(345px - 50vw);
  }
}
@media (min-width:992px){
  :root {
    --margin-for-device-side: calc(465px - 50vw);
    --margin-for-device-side-w: calc(465px - 50vw);
  }
}
@media (min-width:1200px){
  :root {
    --margin-for-device-side: calc(555px - 50vw);
    --margin-for-device-side-w: calc(555px - 50vw);
  }
}
@media (min-width:1366px){

  /* コンテナサイズ:1286px */
  .container.wide{
    max-width: calc(1286px + 80px);
    padding-left: 40px;
    padding-right: 40px;
  }

  :root {
    --margin-for-device-side-w: calc(643px - 50vw);
  }

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

  /* コンテナサイズ:1370px */
  .container.wide{
    max-width: calc(1370px + 100px);
    padding-left: 50px;
    padding-right: 50px;
  }
  :root {
    --margin-for-device-side-w: calc(685px - 50vw);
  }

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

  /* コンテナサイズ:1520px */
  .container.wide{
    max-width: calc(1520px + 200px);
    padding-left: 100px;
    padding-right: 100px;
  }
  :root {
    --margin-for-device-side-w: calc(760px - 50vw);
  }
}


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

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

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

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

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  /*letter-spacing: 0.075em;*/
  letter-spacing: inherit;
}
p{

}
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: var(--main-color);
}
img{
  max-width: 100%;
  width: auto;
}

u{
  display: inline-block;
  text-decoration: none;
  font-style: normal;
}

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

.img_fit{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.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:1720px){
  .fw_nobr br{
    display: none !important;
  }
}
@media (min-width:1520px){
  .lg_nobr br{
    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{
  --logo-height: 50px;
  padding: 10px;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;
  height: var(--logo-height);
  transition: 0.2s all;
}

/* メニュー全般 */
.hdr_menu{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* 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: var(--main-color);
  color: #FFF;
  width: 185px;
  padding: 10px 5px;
  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(--sub-color);
  color: #FFF;
}

/* SNSボタン */
.hdr_sns{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_sns a{
  width: 24px;
  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;
  }
  .hdr_tel{
    display: none;
  }
  /* SNSボタン */
  .hdr_sns{
    margin-left: 20px;
  }
  .hdr_sns a img{
    height: 30px;
  }
  
  
  .hdr_logo{
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .hdr_logo img{
    /*width: 250px;*/
    height: 50px;
  }
}
@media (min-width:768px){

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 0;
  }
  .header{
    --logo-height: 48px;

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px 20px 24px;
  }

  .hdr1{
    padding: 0 15px 0;
  }

  /* ロゴ */
  .hdr_logo img{
    /*width: 180px;*/
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
height: calc(var(--logo-height) * 0.5);
  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_sns_box{
    display: flex;
    align-items: center;
  }

  .hdr_sns_item{
    margin-left: 46px;
  }
  .hdr_sns_item p{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cardo", serif;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.075em;
    text-shadow    : 
      2px  2px 1px #ffffff,
      -2px  2px 1px #ffffff,
      2px -2px 1px #ffffff,
      -2px -2px 1px #ffffff,
      2px  0px 1px #ffffff,
      0px  2px 1px #ffffff,
      -2px  0px 1px #ffffff,
      0px -2px 1px #ffffff;
  }
  .hdr_sns_item.insta p:before{
    content: "";
    display: block;
    width: 36px;
    aspect-ratio:36 / 35;
    background-image: url(/system_panel/uploads/images/insta.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 20px;
  }
  .hdr_sns_item.contact p:before{
    content: "";
    display: block;
    width: 36px;
    aspect-ratio:36 / 29;
    background-image: url(/system_panel/uploads/images/contact.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 20px;
  }
}
@media (min-width:1024px){

  .header{
    --logo-height: 105px;
    padding: 20px 30px 20px 24px;
  }

  /* ロゴ */
  .hdr_logo img{
    /*width: 200px;*/
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_sns_item p{
    font-size: 24px;
  }
}
@media (min-width:1200px){

  .header{
    --logo-height: 105px;
  }
  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    /*width: 420px;*/
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
  }

}

.js-page-cover{
  position: fixed;
  z-index: 100;
  background: #FFF;
  /*background-image: url();*/
  inset: 0;
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
  box-shadow: 0 0 10px #EEE;
}
.js-page-cover.is-open {
  clip-path: inset(0 0 100% 0);
}
.js-page-cover-logo{
  opacity: 0;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(/system_panel/uploads/images/cover-logo2.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100px;
  aspect-ratio: 125 / 105;
  transition: 0.4s all;
}
.js-page-cover-logo.is-show{
  opacity: 1;
}

.gjs-dashed .js-page-cover{
  display: none;
}

@media (min-width:768px){
  .js-page-cover-logo{
    width: 200px;
  }
}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
  filter: blur(10px);
  transition: 2.5s all;
}
.mv_img.blur-off,
.gjs-dashed .mv_img{
  filter: blur(0);
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}

.mv_inner{
  width: 100%;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  text-align: center;
}
.mv_catch{
  
}
.mv_catch img{
  width: auto;
  max-width: none;
    height: 90px;
}
.mv_txt{
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-mincho);
  font-style: italic;
  letter-spacing: 0.075em;
  line-height: 1.714;
  text-shadow: 
    0 0 3px #FFF,0 0 3px #FFF,0 0 3px #FFF,0 0 3px #FFF,
    0 0 3px #FFF,0 0 3px #FFF,0 0 3px #FFF,0 0 3px #FFF,
    0 0 3px #FFF,0 0 3px #FFF,0 0 3px #FFF,0 0 3px #FFF,
    0 0 3px #FFF,0 0 3px #FFF,0 0 3px #FFF,0 0 3px #FFF;
  margin-top: 25px;
}


.mv_scrolldown{
  width: 10px;
  aspect-ratio: 15 / 339;
  background-image: url('/system_panel/uploads/images/scrolldown.png');
  background-size: 100% auto;
  background-position: center top;
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: -45px;
}

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

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

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



@media (min-width:414px){
  .mv_scrolldown{
    width: 10px;
    bottom: 0;
  }
}
@media (min-width:768px){

  /* MV */
  .mv{
  }
  .mv_inner{
    padding: 0 100px;
  }
  .mv_img.img_fit:before{
    padding-top: 100vh;
  }
  .mv_catch img{
           height: 120px;
  }
  .mv_txt{
    font-size: 21px;
    margin-top: 25px;
  }

  .mv_scrolldown{
    width: 15px;
    aspect-ratio: 15 / 339;
    left: 50px;
  }
}
@media (min-width:1024px){


  

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

  /* MV */
  .mv{
  }
  .mv_catch img{
    height: 182px;
  }
  .mv_txt{
    font-size: 21px;
    margin-top: 25px;
  }

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

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

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

}


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

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

/* バナー */
.sidebar_bn{

}
.sidebar_bn img{
  width: 40px;
  transition: 0.2s all;
}
.sidebar_bn:hover{

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

/* 飛び出るバナー */
.sidebar_acc_bn{
  --sidebar-tab-w: 25px;
  display: flex;

  position: fixed;
  z-index: 3;
  /*top: 50%;*/
  right: 0;
  transform: translateX(calc(100% - var(--sidebar-tab-w)));
  transition: 0.3s all;
}
.sidebar_acc_bn + .sidebar_acc_bn{
  /*margin-top: 15px;*/
}

.sidebar_acc_bn.pos1{
  bottom: calc(50% + 10px);
  bottom: calc(50% + 120px);
}
.sidebar_acc_bn.pos2{
  top: calc(50% + 10px);
  top: calc(50% - 114px);
}
.sidebar_acc_bn.pos3{
  top: calc(50% + 10px);
  top: calc(50% + 146px);
}

.sidebar_acc_bn a{
  display: block;
  pointer-events: none;
}
.sidebar_acc_bn:hover{
  transform: translateX(0);
}
.sidebar_acc_bn:hover a{
  pointer-events: auto;
}

.sidebar_acc_bn_left{
  width: var(--sidebar-tab-w);
  border-radius: 10px 0 0 10px;
  overflow: hidden;

}
.sidebar_acc_bn_left img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sidebar_acc_bn_right{
  width: 300px;
}
.sidebar_acc_bn_right img{
  width: 100%;
}
@media (max-width:767px){
  .sidebar_acc_bn{
    display: none;
  }

  .hdr_sns_box{
    display: none;
  }
}
@media (min-width:768px){

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

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

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

  /* 飛び出るバナー */
  .sidebar_acc_bn{
    --sidebar-tab-w: 94px;
    top: 328px;
  }
  .sidebar_acc_bn + .sidebar_acc_bn{
    /*margin-top: 25px;*/
  }
  .sidebar_acc_bn_left{
  }
  .sidebar_acc_bn_right{
    width: 281px;
  }
}
@media (min-width:1024px){

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

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

  /* 飛び出るバナー */
  .sidebar_acc_bn{
    --sidebar-tab-w: 39px;
    --sidebar-tab-w: 94px;
  }
  .sidebar_acc_bn.pos1{
    bottom: calc(50% + 10px);
    bottom: calc(50% + 95px);
  }
  .sidebar_acc_bn.pos2{
    top: calc(50% + 10px);
    top: calc(50% - 87px);
  }
  .sidebar_acc_bn.pos3{
    top: calc(50% + 10px);
    top: calc(50% + 143px);
  }
  .sidebar_acc_bn + .sidebar_acc_bn{
    /*margin-top: 25px;*/
  }
  .sidebar_acc_bn_left{
  }
  .sidebar_acc_bn_right{
    width: 281px;
  }
}
@media (min-width:1536px){

}
@media (min-width:1720px){
  .sidebar_acc_bn_right{
    width: 281px;
  }
  .sidebar_acc_bn.pos1{
    bottom: calc(50% + 10px);
    bottom: calc(50% + 120px);
  }
  .sidebar_acc_bn.pos2{
    top: calc(50% + 10px);
    top: calc(50% - 114px);
  }
  .sidebar_acc_bn.pos3{
    top: calc(50% + 10px);
    top: calc(50% + 143px);
  }
}

/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.pg_header.no_space{
  margin-bottom: 0;
}

.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_img.img_fit:before{
  padding-top: 180px;
}
.pg_header_mv_img:after{
  content: "";
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_header_title_txt{
  font-size: 32px;
  font-weight: 700;
  color: #FFF;
}



.pg_header_h1{
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  font-family: "Cardo", serif;
  letter-spacing: 0.075em;
  line-height: 1;
  text-shadow: 0px 0px 19px rgba(9, 33, 121, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  color: #fff;
}
@media (min-width:768px){
  .pg_header{
    margin-bottom: 40px;
  }
  .pg_header_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_h1{
    text-align: center;
    font-size: 32px;
  }

}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_img.img_fit:before{
    padding-top: 450px;
  }

  .pg_header_h1{
    text-align: center;
    font-size: 42px;
  }

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

  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_img.img_fit:before{
    padding-top: 600px;
  }

  .pg_header_h1{
    text-align: center;
    font-size: 60px;
  }

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

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

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

}


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

.footer{
  margin-top: 0;
  padding-top: 50px;
  background-image: url('/system_panel/uploads/images/footer_bg.png');
  background-size: cover;
  background-position: center top;
  min-height: 0;
  
  position: relative;
  z-index: 2;
}

.ftr_mv{
  padding-left: 30px;
  padding-right: 30px;
}
.ftr_mv_catch{
  
  text-align: center;
}
.ftr_mv_txt{
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-mincho);
  font-style: italic;
  letter-spacing: 0.075em;
  line-height: 1.714;
  text-align: center;
  margin-top: 28px;
}

.ftr1{
  margin-top: 50px;
}
.ftr1_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr1_box_w{
  width: 100%;
}
.ftr1_box1{
  width: 100%;
  padding-top: 30px;
}
.ftr1_box2{
  width: 100%;
}


.ftr_head{
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.ftr_head_logo{
  margin-right: 30px;
}
.ftr_head_txt{
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  line-height: 1.666;
}

.ftr_addr{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.875;
  margin-bottom: 10px;
}
.ftr_tels{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.875;
  margin-bottom: 45px;
}


.ftr1_box1 .hdr_sns_box{
  
}
.ftr1_box1 .hdr_sns_item:first-child{
  margin-left: 0;
}

.ftr_links{
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
}
.ftr_links + .ftr_links{
  margin-top: 26px;
}
.ftr_links_item{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.ftr_links_item p:before{
  content: "□ ";
}

.ftr_copy{
  font-size: 14px;
  text-align: center;
  margin-top: 30px;
  padding-bottom: 30px;
}

/* 追尾スマホメニュー */
.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: #cab386;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #ef7f1a;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #cab386;
}
.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: #4682b4;
}
.pagetop a i{
  font-size: 40px;
}



@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }
  
  .ftr_head{
    justify-content: center;
  }
  .ftr_head_logo{
    margin: 0 0 15px;
  }
  
  .ftr_links{
    display: none;
  }
  
  .footer_fix{
    display: flex;
  }

  .footer_fix{
    display: flex;
    transform: translateY(100%);
    transition: 0.2s all;
  }
  .footer_fix.show{
    transform: translateY(0);
  }

  #chatbot-btn{
    transform: translateX(100%);
    transition: 0.2s all;
  }
  #chatbot-btn.show{
    transform: translateX(0);
  }
  
  
  
}
@media (min-width:768px){

  .footer{
    padding-top: 115px;
  }
  .ftr_mv{
    padding-left: 30px;
    padding-right: 30px;
  }
  .ftr_mv_catch{
    text-align: center;
  }
  .ftr_mv_txt{
    font-size: 18px;
    text-align: center;
    margin-top: 28px;
  }

  .ftr1{
    margin-top: 80px;
  }
  .ftr1_inner{
  }
  .ftr1_box_w{
    width: 100%;
  }
  .ftr1_box1{
    /*width: 42.76%;*/
    padding-top: 30px;
  }
  .ftr1_box2{
    /*width: 38.49%;*/
    padding-top: 50px;
  }
  
  
  
  

}
@media (min-width:1024px){
  .footer{
  }
  
  .ftr1{
    margin-top: 120px;
  }
  .ftr1_inner{
  }
  .ftr1_box_w{
    width: 100%;
  }
  .ftr1_box1{
    width: 42.76%;
    padding-top: 30px;
  }
  .ftr1_box2{
    width: 38.49%;
    padding-top: 0;
  }


  .ftr_head{
    margin-bottom: 40px;
  }
  .ftr_head_logo{
    margin-right: 30px;
  }
  .ftr_head_txt{
    font-size: 18px;
  }

  .ftr_addr{
    font-size: 16px;
    margin-bottom: 10px;
  }
  .ftr_tels{
    font-size: 16px;
    margin-bottom: 45px;
  }
  
  .ftr_links{
    gap: 26px 50px;
  }
  .ftr_links + .ftr_links{
    margin-top: 26px;
  }
  .ftr_links_item{
    font-size: 16px;
  }

  .ftr_copy{
    font-size: 14px;
    margin-top: 120px;
  }
}
@media (min-width:1200px){
  
}
@media (min-width:1470px){

  .ftr_mv{
    padding-left: 30px;
    padding-right: 30px;
  }
  .ftr_mv_catch{
    text-align: center;
  }
  .ftr_mv_txt{
    font-size: 21px;
    text-align: center;
    margin-top: 28px;
  }
  
}
@media (min-width:1536px){

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

}

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


/* セクション */
.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{

}


/* テーブル用 */
.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: #FFF;
  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;
  justify-content: center;
  gap: 10px 5px;
  margin-top: 30px;
}
.read_more a{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 270px;
  /*max-width: 100%;*/
  min-height: 55px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid #134386;
  border-radius: 27px;
  color: #282828;
  background: #FFF;
  padding: 10px 40px 10px 28px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "";
  width: 35px;
  height: 1px;
  background: #134386;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  background: #134386;
}
.read_more a:hover:after{
  width: 30px;
  background: #FFF;
}


/* 見出し */
.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;
}

/* 文章 */
.cmn_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}

/* swiper */
.swiper-pagination{
  position: static;
  margin-top: 5px;
}
.swiper-pagination-bullet{
  background-color: var(--main-color);
}
.swiper-pagination-bullet-active{
  background-color: var(--sub-color);
}



@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: 40px;
  }
  .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: 270px;
    min-height: 55px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 27px;
    padding: 10px 40px 10px 28px;
  }
  .read_more a:after{
    width: 35px;
  }
  .read_more a:hover:after{
    width: 30px;
  }
  
  /* 見出し */



  .table_rows_th{
    width: 200px;
  }
  .table_rows_td{

  }

  

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

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


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


  /* 文章 */
  .cmn_txt{
    font-size: 16px;
    line-height: 2.25;
  }


  .table_rows_th{
    width: 285px;
  }
  .table_rows_td{

  }
}


@media (min-width:1366px){


}

@media (min-width:1470px){

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

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

}



/*******************************
*　HOME
********************************/
.pg_home{
  position: relative;
  z-index: 1;
}
.pg_home .section{
  background: #FFF;
  position: relative;
  z-index: 2;
}
.pg_home .section.sec1{
  z-index: 1;
  padding-bottom: 0;
  
}
.pg_home .section.sec2{
  padding-top: 0;
  padding-bottom: 0;
  background: none;
}
.pg_home .section.sec3{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_home .section.sec4{
  padding-top: 50px;
  padding-bottom: 80px;
}
.pg_home .section.sec5{
  padding-top: 80px;
  padding-bottom: 30px;
  background: #fbf8f5;
  background-image: url('/system_panel/uploads/images/home_lisence_sec_top.jpg');
  background-size: auto 60px;
  background-position: center top;
  background-repeat: no-repeat;
}
.pg_home .section.sec6{
  padding-top: 100px;
  padding-bottom: 50px;
  background: none;
  position: relative;
  z-index: 1;
}
.pg_home .section.sec6:before{
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url('/system_panel/uploads/images/home_lisence_sec_btm.png');
  background-size: auto 60px;
  background-position: center top;
  background-repeat: no-repeat;
}
.pg_home .section.sec7{
  background: none;
  padding-bottom: 100px;
}
.pg_home .section.sec8{

}

.home_ftr_bg{
  min-height: 100vh;
  background-image: url('/system_panel/uploads/images/bg1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.js-bg-to-footer{
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

@media (max-width:767px){

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

  .pg_home .section{
  }
  .pg_home .section.sec1{
    padding-bottom: 0;
  }
  .pg_home .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_home .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_home .section.sec4{
    padding-top: 140px;
    padding-bottom: 150px;
  }
  .pg_home .section.sec5{
    padding-top: 110px;
    padding-bottom: 100px;
    background-size: auto 60px;
  }
  .pg_home .section.sec6{
    padding-top: 170px;
    padding-bottom: 170px;
  }
  .pg_home .section.sec6:before{
    width: 100%;
    height: 60px;
    background-size: auto 60px;
  }
  .pg_home .section.sec7{
    padding-bottom: 100px;
  }
  
  .pg_home .section.sec5 .forbiginners_sec2_item_h2{
    padding-top: 6px;
    padding-bottom: 3px;
  }
  
}
@media (min-width:1024px){


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


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


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


}


/* ========================================
コンセプト
======================================== */
.js-concept-pin-wrap{
  position: relative;
  z-index: 1;
}

.js-concept-sec{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.js-style-sec{
  position: relative;
  z-index: 2;
}

.js-concept-bg-list{
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
}

.js-concept-bg-list .js-concept-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  will-change: clip-path;
  backface-visibility: hidden;
}

.js-concept-bg-list .js-concept-bg.img_fit:before{
  padding-top: 0;
  height: 100%;
}

.js-concept-bg-list .js-concept-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home_concept_wrap{
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  height: 100vh;
  will-change: transform;
}

.home_concept_row{
  position: relative;
  z-index: 1;
  flex: 0 0 150vw;
  width: 150vw;
  height: 100vh;
}

.home_concept_row > .container{
  width: 100vw;
  height: 100%;
  margin: 0;
}

.home_concept_inner{
  display: flex;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.home_concept_box1{
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  width: 49.21%;
  position: relative;
  z-index: 1;
}

.home_concept_box1:before{
  content: "";
  width: 340px;
  aspect-ratio: 340 / 723;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  transform: translate(60%, 0%);
}

.home_concept_box1:after{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: var(--margin-for-device-side-w);
  right: 0;
  background: #ccc;
}

.home_concept_ttl{
  font-size: 48px;
  font-weight: 400;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  line-height: 1.291;
  margin-bottom: 20px;
}

.home_concept_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 2.25;
  text-align: justify;
}

.home_concept_row.color1 .home_concept_box1:before{
  background-image: url('/system_panel/uploads/images/home_concept_illust1.png');
}

.home_concept_row.color1 .home_concept_box1:after{
  background: #afa391;
}

.home_concept_row.color2 .home_concept_box1:before{
  background-image: url('/system_panel/uploads/images/home_concept_illust2.png');
}

.home_concept_row.color2 .home_concept_box1:after{
  background: #db7b35;
}

.home_concept_row.color3 .home_concept_box1:before{
  background-image: url('/system_panel/uploads/images/home_concept_illust3.png');
}

.home_concept_row.color3 .home_concept_box1:after{
  background: #2c7594;
}

.home_concept_box1 .cardo_tt p{
  border-width: 2px;
}

.gjs-dashed .js-concept-sec{
  height: auto;
}
.gjs-dashed .home_concept_wrap{
  flex-wrap: wrap;
  flex-direction: column;
  height: auto;
}
.gjs-dashed .home_concept_row > .container{
  height: auto;
}
.gjs-dashed .home_concept_row{
  flex: 1;
  width: 100vw;
  height: auto;
}
.gjs-dashed .home_concept_bg{
  position: absolute;
  z-index: 0;
  inset: 0;
  right: var(--margin-for-device-side-w);
}




/* ========================================
デジャヴスタイル
======================================== */
.home_style_slides_wrap{
  -webkit-mask-image: url('/system_panel/uploads/images/style_slide_clip.png');
  -webkit-mask-size: 200% auto;
  -webkit-mask-position: center top;
  -webkit-mask-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.home_style_slides{
  display: flex;
}
.home_style_slides_img{
  width: 400px;
}
.home_style_slides_img.img_fit:before{
  padding-top: 67.27%;
}

.home_style_main_wrap{
  margin-top: -110px;
  position: relative;
  z-index: 2;
}
.home_style_main_top{
  height: 140px;
  background-image: url('/system_panel/uploads/images/home_style_main_clip.png');
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center top;
}
.home_style_main_body{
  background: #13335f;
  color: #FFF;
  padding-bottom: 70px;
}
.home_style_main_body .lg_t1_en{
  font-size: 60px;
  -webkit-text-stroke: 1px #fff;
}
.home_style_main_body .lg_t1_h2{
  margin-top: 12px;;
}

.home_style{
  
}
* + .home_style{
  margin-top:30px;
}
.home_style_ttl{
  font-size: 26px;
  font-weight: 400;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 15px;
}
.home_style_ttl.wh{
  color: #FFF;
}
.home_style_txt{
  text-align: center;
}
.home_style_txt.content_desc{
  font-weight: 400;
  text-align: center;
}


/* FEEL */
.home_feel_wrap{
  
  position: relative;
  z-index: 1;
}
.home_feel_slides{
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.home_feel_slides_img{
  height: 100vh;
}
.home_feel_slides_img.img_fit:before{
  padding-top: 0;
  height: 100%;
}

.home_feel_catch{
  font-size: 70px;
  font-weight: 400;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  line-height: 1;
  white-space: nowrap;
  color: #FFF;
  opacity: 0.8;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  margin-bottom: -0.06em;
}
.home_feel_catch p{
  padding: 0 0.2em;
}

/* js用 */
.js-on.home_feel_slides{
  height: 50vh;
}
.js-on .home_feel_slides_img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: inset(0 0 0 100%);
  will-change: clip-path;
}
.js-on .home_feel_slides_img:first-child{
  clip-path: inset(0 0 0 0);
}
.js-on .home_feel_slides_img img{
  width: 110%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

/* コース(head) */
.home_course_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.home_course_head_box1{
  width: 100%;
}
.home_course_head_box2{
  width: 100%;
  margin-top: 18vw;
  position: relative;
  z-index: 1;
}
.home_course_head_ttl{
  
}
.home_course_head_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.875;
  margin-top: 40px;
}
.home_course_head_circle{
  width: 50%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  transform: translate(-6%, -30%);
}
.home_course_head_circle img{
  
}
.home_course_head_img{
  border-radius: 20px;
}
.home_course_head_img.img_fit:before{
  padding-top: 67.391%;
}

.home_course_head_box1 .lg_t1{
  text-align: left;
}
.home_course_head_box1 .lg_t1_h2{
  width: auto;
  display: inline-block;
}
.home_course_head_box1 .lg_t1.sm .lg_t1_en{
  -webkit-text-stroke: 1px #b1a291;
  color: #ffffff;
}


/* コース(list) */
.home_course{
  display: flex;
  flex-wrap: wrap;
  gap: 30px 25px;
}
* + .home_course{
  margin-top: 50px;
}
.home_course_item{
  width: 100%;
  padding-left: 15px;
  position: relative;
  z-index: 1;
}
.home_course_item:after{
  content: "";
  background: none;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
  top: 33px;
  bottom: 30px;
  left: 0;
  width: 83.333%;
}
.home_course_item_head{
  width: 83.333%;
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}
.home_course_item_head_num{
  font-size: 60px;
  font-weight: 500;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  line-height: 1;
}
.home_course_item_head_en{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0.075em;
  line-height: 1;
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 0;
}
.home_course_item_ttl{
  font-size: 25px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  background: #FFF;
  padding: 1px 5px 4px;
  margin-bottom: 15px;
}
.home_course_item_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.875;
  text-align: justify;
  text-shadow    : 
       3px  3px 1px #ffffff,
      -3px  3px 1px #ffffff,
       3px -3px 1px #ffffff,
      -3px -3px 1px #ffffff,
       3px  0px 1px #ffffff,
       0px  3px 1px #ffffff,
      -3px  0px 1px #ffffff,
       0px -3px 1px #ffffff;   
}
.home_course_item_img{
  margin-top: 8px;
}
.home_course_item_img.img_fit:before{
  padding-top: 55.94%;
}
.home_course_item .read_more{
  margin-top: 12px;
}

.home_course_item:nth-child(4n+1):after{
  background-image: url('/system_panel/uploads/images/home_course_bg1.png');
}
.home_course_item:nth-child(4n+1) .home_course_item_head_num{
  color: #d4c4b3;
}
.home_course_item:nth-child(4n+2):after{
  background-image: url('/system_panel/uploads/images/home_course_bg2.png');
}
.home_course_item:nth-child(4n+2) .home_course_item_head_num{
  color: #5f78a5;
}
.home_course_item:nth-child(4n+3):after{
  background-image: url('/system_panel/uploads/images/home_course_bg3.png');
}
.home_course_item:nth-child(4n+3) .home_course_item_head_num{
  color: #edba84;
}
.home_course_item:nth-child(4n):after{
  background-image: url('/system_panel/uploads/images/home_course_bg4.png');
}
.home_course_item:nth-child(4n) .home_course_item_head_num{
  color: #aa8ebb;
}

/* ライセンス */
.home_license_wrap{
  
}
.home_license_wrap .lg_t1{
  margin-bottom: 30px;
}
.home_license_wrap + .forbiginners_sec2_contents1{
  margin-top: 40px;
}

/* アルバム  */
.home_album{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
* + .home_album{
  margin-top: 58px;
}
.home_album_box1{
  width: 100%;
  padding-top: 50px;
  order: 2;
  position: relative;
  z-index: 2;
}
.home_album_box2{
  width: 70%;
  margin: 0 auto;
  order: 1;
  position: relative;
  z-index: 1;
}
.home_album_box2:after{
  content: "";
  width: 773px;
  width: 201.3%;;
  aspect-ratio: 773 / 521;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-image: url('/system_panel/uploads/images/home_album_illust.png');
  position: absolute;
  z-index: -1;
  bottom: -1%;
  left: 52%;
  transform: translate(-50%, 0);
}
.home_album_box3{
  width: 100%;
  padding-top: 50px;
  order: 3;
  position: relative;
  z-index: 2;
}

.home_album_head{
  margin-bottom: 15px;
}
.home_album_head_en{
  font-size: 24px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0.075em;
  line-height: 1;
  margin-bottom: 6px;
}
.home_album_head_en.color1{
  color: #2c7594;
}
.home_album_head_en.color2{
  color: #db7b35;
}
.home_album_head_ja{
  font-size: 26px;
  font-weight: 400;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  line-height: 1.4;
}
.home_album_txt{
  
}
.home_album_txt.content_desc{
  font-weight: 400;
}

/* Insta */
.home_insta_wrap{
  
}
.home_insta_wrap .lg_t1{
  margin-bottom: 40px;
}
.home_insta_wrap .lg_t1.or .lg_t1_en{
  -webkit-text-stroke: 1px #13335f;
  color: #faf8f4;
}

/* NEWS */
.home_news_wrap{
  background: #FFF;
  border-radius: 20px;
  padding: 45px 20px 50px;
}
* + .home_news_wrap{
  margin-top: 50px;
}
.home_news_wrap .lg_t1{
  margin-bottom: 35px;
}
.home_news_wrap .read_more{
  
}

.home_news_wrap .lg_t1.or .lg_t1_en{
  -webkit-text-stroke: 1px #afa391;
  color: #FFF;
}


.news_list.home .webgene-blog{
  margin-inline: -10px;
}
.news_list.home .webgene-item{
  width: 100%;
  padding-inline: 10px;
}
.news_list.home .webgene-item:nth-child(n+2){
  margin-top: 20px;
}
.insta_list video {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  inset: 0;
}
@media (max-width:374px){

}
@media (min-width:414px){
  .home_course_item_ttl{
    font-size: 28px;
  }
}
@media (min-width:430px){
  .home_course_item_ttl{
    /*font-size: 28px;*/
  }
  
}
@media (max-width:1023px){
  
}
@media (max-width:767px){

  .js-concept-sec{
    position:relative;
    height:auto !important;
    overflow:visible !important;
  }


  .js-concept-wrap{
    position:relative;
    z-index:1;

    display:block !important;

    width:100% !important;
    height:auto !important;

    transform:none !important;
    will-change:auto;
  }


  .js-concept-panel{
    position:relative;

    width:100% !important;
    min-width:0 !important;

    height:auto !important;

    flex:none !important;
  }


  .home_concept_row > .container{
    width:100%;
    height:100%;
  }


  .home_concept_inner{
    position:relative;
    z-index:1;

    display:block;

    width:100%;
    height:auto;
  }


  .home_concept_box1{
    position:relative;
    z-index:2;

    width:100%;
    height:auto;

    padding-top:50px;
    padding-bottom:50px;
  }


  .home_concept_row
  .home_concept_box1:before{
    display:none;
  }


  .home_concept_row
  .home_concept_box1:after{
    right:
      var(--margin-for-device-side-w);
  }


  .home_concept_ttl{
    font-size:26px;
  }


  /* ========================================
  SP固定背景
  ======================================== */

  .js-concept-bg-list-sp{
    position:absolute;

    z-index:0;

    top:0;
    left:0;

    width:100%;
    height:100vh;

    overflow:hidden;

    pointer-events:none;
  }


  .js-concept-bg-list-sp
  .js-concept-bg{
    position:absolute;

    inset:0;

    width:100% !important;
    height:100% !important;

    margin:0 !important;

    pointer-events:none;

    will-change:clip-path;
    backface-visibility:hidden;
  }


  .js-concept-bg-list-sp
  .js-concept-bg.img_fit:before{
    padding-top:0;
    height:100%;
  }


  .js-concept-bg-list-sp
  .js-concept-bg img{
    width:100%;
    height:100%;

    object-fit:cover;
  }
  
  .gjs-dashed .js-concept-bg{
    position: static;
    pointer-events: all;
    height:100vh !important;
  }

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

  .js-concept-pin-wrap{
    position:relative;
    width:100%;
    height:auto;
    overflow:visible;
  }

  .js-concept-sec{
    position:relative;
    z-index:1;
    width:100%;
    height:auto !important;
    overflow:visible !important;
  }

  .js-concept-wrap{
    position:relative;
    z-index:1;
    display:block !important;
    width:100% !important;
    height:auto !important;
    transform:none;
  }

  .js-concept-panel{
    position:relative;
    z-index:1;
    width:100% !important;
    min-width:0 !important;
    height:auto !important;
    flex:none !important;
  }

  .js-concept-bg-list-sp{
    position:absolute;
    z-index:0;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    overflow:hidden;
    pointer-events:none;
  }

  .js-concept-bg-list-sp .js-concept-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
  }

  .js-concept-bg-list-sp .js-concept-bg.img_fit:before{
    padding-top:0;
    height:100%;
  }

  .js-concept-bg-list-sp .js-concept-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  /*
   * ScrollTriggerが生成する
   * 背景用pin-spacer
   *
   * 参考サイトでも
   * section直下のpin-spacerがabsolute
   */
  .js-concept-sec > .pin-spacer{
    position:absolute !important;
    z-index:0 !important;
    top:0;
    left:0;
    width:100% !important;
    height:100vh !important;
    overflow:visible !important;
    pointer-events:none;
  }

  .home_concept_box1{
    position:relative;
    z-index:2;
  }

  .js-style-sec{
    position:relative;
    z-index:3;
    margin-top:0 !important;
  }

}


@media (min-width:768px){

  
  
  /* ========================================
  デジャヴスタイル
  ======================================== */
  .home_style_slides_wrap{
    -webkit-mask-size: 100% auto;
    /*-webkit-mask-image: url('/system_panel/uploads/images/style_slide_clip.png');*/
  }
  .home_style_slides_img{
    width: 1033px;
  }
  .home_style_main_wrap{
    margin-top: -540px;
    position: relative;
    z-index: 2;
  }
  .home_style_main_top{
    height: 188px;
  }
  .home_style_main_body{
    padding-bottom: 115px;
  }

  .home_style{

  }
  * + .home_style{
    margin-top: 30px;
  }
  .home_style + .cmn_contents_wrap{
    margin-top: 75px;
  }
  .home_style_ttl{
    font-size: 34px;
    margin-bottom: 15px;
  }
  .home_style_txt{
  }

  /* FEEL */
  .home_feel_wrap{
  }
  .home_feel_slides{
  }
  .home_feel_slides_img{
  }

  .home_feel_catch{
    font-size: 100px;
  }
  /* FEEL(js用) */
  .js-on.home_feel_slides{
    /*height: 100vh;*/
  }
  
  /* コース(head) */
  .home_course_head{
  }
  .home_course_head_box1{
    width: 50%;
  }
  .home_course_head_box2{
    width: 38%;
    margin-top: 0;
  }
  .home_course_head_ttl{

  }
  .home_course_head_txt{
    /*font-size: 17px;*/
    /*line-height: 2.11;*/
  }
  .home_course_head_circle{
    width: 42%;
    transform: translate(-68%, -27%);
  }
  
  .home_course_head_box1 .lg_t1_en{
    text-align: left;
  }
  .home_course_head_box1 .lg_t1_h2{
    margin-left: 0;
  }
  
  
  /* コース(list) */
  .home_course{
    gap: 30px 20px;
  }
  * + .home_course{
    margin-top: 50px;
  }
  .home_course_item{
    width: calc((100% - 20px) / 2);
    padding-left: 15px;
  }
  .home_course_item:after{
    top: 33px;
    bottom: 30px;
  }
  .home_course_item_head{
    width: 83.333%;
    margin-bottom: 15px;
  }
  .home_course_item_head_num{
    font-size: 60px;
  }
  .home_course_item_head_en{
    font-size: 18px;
    top: 16px;
  }
  .home_course_item_ttl{
    font-size: 24px;
    padding: 1px 5px 4px;
    margin-bottom: 15px;
  }
  .home_course_item_txt{
    font-size: 16px;
  }
  .home_course_item_img{
    margin-top: 8px;
  }
  .home_course_item .read_more{
    margin-top: 12px;
  }
  
  /**/
  .home_license_wrap{
    
  }
  .home_license_wrap .lg_t1.bl .lg_t1_h2{
    max-width: 480px;
  }
  .pg_home .section.sec6 .lg_t1.bl .lg_t1_h2{
    max-width: 550px;
  }
  
  /* アルバム  */
  .home_album{
  }
  * + .home_album{
    margin-top: 58px;
  }
  .home_album_box1{
    padding-top: 100px;
  }
  .home_album_box2{
    width: 60%;
  }
  .home_album_box3{
    padding-top: 100px;
  }

  .home_album_head{
    margin-bottom: 20px;
  }
  .home_album_head_en{
    font-size: 30px;
    margin-bottom: 12px;
  }
  .home_album_head_ja{
    font-size: 28px;
  }
  
  /* NEWS */
  .home_news_wrap{
    border-radius: 20px;
    padding: 45px 50px 50px;
  }
  * + .home_news_wrap{
    margin-top: 115px;
  }
  .home_news_wrap .lg_t1{
    margin-bottom: 35px;
  }
  .home_news_wrap .read_more{

  }

  .news_list.home .webgene-blog{
    margin-inline: -10px;
  }
  .news_list.home .webgene-item{
    width: 25%;
    padding-inline: 10px;
  }
  .news_list.home .webgene-item:nth-child(n+2){
    margin-top: 0;
  }
  .news_list.home .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
  
  
  .home_concept_ttl{
    font-size: 24px;
    margin-bottom: 20px;
  }

  .home_concept_txt{
    font-size: 16px;
    line-height: 1.875;
  }
  .home_concept_box1{
    width: 70%;
    padding-right: 20px;
  }
}
@media (min-width:1024px){


  /* FEEL */
  .home_feel_wrap{
  }
  .home_feel_slides{
  }
  .home_feel_slides_img{
  }

  .home_feel_catch{
    font-size: 150px;
  }
  /* FEEL(js用) */
  .js-on.home_feel_slides{
    height: 70vh;
  }
  
  /* アルバム  */
  .home_album{
    align-items: flex-start;
  }
  * + .home_album{
    margin-top: 58px;
  }
  .home_album_box1{
    width: 32.24%;
    padding-top: 0;
    order: 1;
  }
  .home_album_box2{
    width: 25.28%;
    order: 2;
    margin-top: 50px;
  }
  .home_album_box3{
    width: 32.24%;
    padding-top: 0;
    order: 3;
  }

  .home_concept_box1{
    width: 49.21%;
  }
  
}
@media (min-width:1200px){

  /* FEEL */
  .home_feel_wrap{
  }
  .home_feel_slides{
  }
  .home_feel_slides_img{
  }

  .home_feel_catch{
    font-size: 210px;
  }
  /* FEEL(js用) */
  .js-on.home_feel_slides{
    height: 100vh;
  }
  
  /* コース(head) */
  .home_course_head{
  }
  .home_course_head_box1{
    width: 50.99%;
  }
  .home_course_head_box2{
    width: 30.26%;
  }
  .home_course_head_ttl{

  }
  .home_course_head_txt{
    font-size: 17px;
    line-height: 2.11;
  }
  .home_course_head_circle{
    width: 74.78%;
    transform: translate(-68%, -27%);
  }
  
  
  .home_style_main_wrap{
    margin-top: -400px;
  }
  
  .home_concept_box1{
    width: 49.21%;
  }

}
@media (min-width:1336px){
  
  /* コース(list) */
  .home_course{
    gap: 30px 25px;
  }
  * + .home_course{
    margin-top: 20px;
  }
  .home_course_item{
    width: calc((100% - 75px) / 4);
    padding-left: 15px;
  }
  .home_course_item:after{
    top: 30px;
    bottom: 30px;
  }
  .home_course_item_head{
    margin-bottom: 15px;
  }
  .home_course_item_head_num{
    font-size: 80px;
  }
  .home_course_item_head_en{
    font-size: 20px;
    top: 20px;
  }
  

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

  /* コース(list) */
  .home_course_item_ttl{
  }
  .home_course_item_img{
  }
  
  /* アルバム  */
  .home_album{
  }
  * + .home_album{
    margin-top: 58px;
  }
  .home_album_box1{
    width: 32.24%;
    padding-top: 100px;
    order: 1;
  }
  .home_album_box2{
    /*width: 25.28%;*/
    width: 24.5%;
    order: 2;
  }
  .home_album_box3{
    width: 32.24%;
    padding-top: 100px;
    order: 3;
  }

  .home_album_head{
    margin-bottom: 38px;
  }
  .home_album_head_en{
    font-size: 36px;
    margin-bottom: 12px;
  }
  .home_album_head_ja{
    font-size: 32px;
  }
  
  .home_style_main_wrap{
    margin-top: -300px;
  }
  
  .pg_home .section.sec5 .forbiginners_sec2_items{
    padding-bottom: 50px;
  }
  
  .home_course_item:after{
    top: 50px;
    bottom: 30px;
  }
  .home_course_item_head_en{
    top: 24px;
  }
  
  .home_concept_ttl{
    font-size: 40px;
    margin-bottom: 20px;
  }
  .home_concept_txt{
    font-size: 16px;
    line-height: 2.25;
  }
}
@media (min-width:1720px){

  /* コース(list) */
  .home_course_item_ttl{
    font-size: 28px;
  }
  .home_course_item_img{
    margin-top: 8px;
  }
  
  .home_album_box2{
    margin-top: 0;
  }

  .home_style_main_wrap{
    margin-top: -200px;
  }
  
  
  .home_feel_slides_img{
    height: 860px;
  }
}

/*******************************
*　
********************************/
.insta_list{

}
* + .insta_list{

}
.insta_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.insta_list .webgene-item{
  width: calc((100% - 10px) / 2);
}
.insta_list .webgene-item a{
  display: block;
}
.insta_list .webgene-item .img{
  border-radius: 10px;
}
.insta_list .webgene-item .img.img_fit:before{
  padding-top: 132.114%;
}

@media (max-width:767px){
  .insta_list .webgene-item:nth-child(n+5){
    display: none;
  }
}
@media (min-width:768px){
  .insta_list{

  }
  * + .insta_list{

  }
  .insta_list .webgene-blog{
    gap: 10px;
  }
  .insta_list .webgene-item{
    width: calc((100% - 50px) / 6);
  }

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

}


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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@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{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* オーバーレイセクション */
.js-fixed-sec{
  position: relative;
  z-index: 1;
  min-height: 100vh;
}
.js-fixed-overlay{
  position: relative;
  z-index: 2;
}

/* アルバム */
.js-album{
  position: relative;
  z-index: 1;
}
.js-album-frame1{
  z-index: 3;
  background: #FFF;
}
.js-album-frame2{
  z-index: 2;
  background: #FFF;
}
.js-album-frame3{
  z-index: 1;
  background: #FFF;
}

.js-album-nav{
  display: flex;
  justify-content: space-between;
  position: absolute;
  z-index: 5;
  top: 52%;
  left: 3%;
  right: 3%;
  transform: translate(0, -50%);
}
.js-album-prev,
.js-album-next{
  width: 28px;
  aspect-ratio: 1 / 1;
  border: 0;
  background: none;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  font-size: 0;
  transition: 0.2s all;
  outline: none;
}
.js-album-prev{
  background-image: url('/system_panel/uploads/images/js-album-prev.png');
}
.js-album-next{
  background-image: url('/system_panel/uploads/images/js-album-next.png');
}
.js-album-prev:hover,
.js-album-next:hover{
  transform: scale(1.15);
}
.js-album-prev:focus,
.js-album-next:focus{
  outline: none;
}

/* 共通コンテンツ */
.cmn_contents_wrap{
  position: relative;
  z-index: 1;
}
* + .cmn_contents_wrap{
  margin-top: 50px;
}
.cmn_contents_day{
  font-size: 50px;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 0.075em;
  line-height: 1;
  color: #fff8ac;
  margin-bottom: -0.18666em;
  position: relative;
  z-index: 0;
}
.cmn_contents_day_txt{
  
}
.cmn_contents{
  position: relative;
  z-index: 1;
}
* + .cmn_contents{
  
}
.cmn_contents_row{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 1;
  
}
.cmn_contents_row + .cmn_contents_row{
  margin-top: 30px;
}
.cmn_contents_box1{
  width: 100%;
  border-radius: 15px;
  position: relative;
  z-index: 1;
  background-image: -webkit-linear-gradient( 83deg, rgb(209,195,252) 0%, rgb(155,196,252) 100%);
  
  padding-bottom: 15px;
  color: var(--txt-color);
  overflow: hidden;
}
.cmn_contents_box1_inner{
  /*min-height: 480px;*/
  background: #FFF;
}
.cmn_contents_box2{
  width: calc(100% - 60px);
  position: absolute;
  z-index: 2;
  
}
.cmn_contents_box2:after{
  content: "";
  width: 100%;
  aspect-ratio: 570 / 420;
  background-image: url('/system_panel/uploads/images/cmn_contents_img_bdr.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  position: absolute;
  z-index: 0;
  top: 7px;
}
.cmn_contents_head{
  margin-bottom: 20px;
}
.cmn_contents_head:after{
  content: "";
  display: block;
  width: 96px;
  height: 3px;
  background: #f4dac3;
  margin-top: 10px;
}
.cmn_contents_head_en{
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 0.075em;
  line-height: 1;
  color: #f4dac3;
  margin-bottom: 10px;
  text-shadow: 
    0 0 1px #181818, 0 0 1px #181818, 0 0 1px #181818,
    0 0 1px #181818, 0 0 1px #181818, 0 0 1px #181818,
    0 0 1px #181818, 0 0 1px #181818, 0 0 1px #181818,
    0 0 1px #181818, 0 0 1px #181818, 0 0 1px #181818;
}
.cmn_contents_head_ja{
  font-size: 21px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  line-height: 1.473;
}
.cmn_contents_txt{
}
.cmn_contents_txt.content_desc{
  font-weight: 400;
}
.cmn_contents_img{
  border-radius: 20px;
}
.cmn_contents_img.img_fit:before{
  padding-top: 73.684%;
}


/* 入れ替え */
.cmn_contents_box1{
  order: 2;
  /*padding: 0 0 10px 10px;*/
  padding-bottom: 10px;
  margin-top: 0;
  margin-left: auto;
}
.cmn_contents_box1_inner{
  padding: 20px;
  padding-top: 75vw;
  border-radius: 0 0 0 20px;
}
.cmn_contents_box2{
  order: 1;
  top: 30px;
  left: 30px;
}
.cmn_contents_box2:after{
  top: 5px;
  right: -5px;
}

/* カラバリ */
.cmn_contents_row:nth-child(4n+1) .cmn_contents_box1{
  background-image: -webkit-linear-gradient( 83deg, rgb(209,195,252) 0%, rgb(155,196,252) 100%);
}
.cmn_contents_row:nth-child(4n+2) .cmn_contents_box1{
  background-image: -webkit-linear-gradient( 99deg, rgb(248,199,213) 0%, rgb(153,149,239) 100%);
}
.cmn_contents_row:nth-child(4n+3) .cmn_contents_box1{
  background-image: -webkit-linear-gradient( 83deg, rgb(193,191,230) 0%, rgb(234,136,222) 100%);
}
.cmn_contents_row:nth-child(4n) .cmn_contents_box1{
  background-image: -webkit-linear-gradient( 99deg, rgb(208,198,245) 0%, rgb(234,188,170) 100%);
}

.forbiginners_sec2_item_left_txt2,
.forbiginners_sec2_item_desc{
  font-weight: 400!important;
}

@media (max-width:767px){

}
@media (min-width:414px){
  .cmn_contents_head_ja{
    font-size: 24px;
  }
}
@media (min-width:430px){
  .cmn_contents_head_ja{
    font-size: 27px;
  }
  
  
}
@media (min-width:768px){


  /* 共通コンテンツ */
  .cmn_contents_wrap{
  }
  * + .cmn_contents_wrap{
    margin-top: 100px;
  }
  .cmn_contents_day{
    font-size: 80px;
    margin-bottom: -0.18666em;
  }
  
  .cmn_contents_head{
    margin-bottom: 20px;
  }
  .cmn_contents_head:after{
    width: 96px;
    height: 3px;
    margin-top: 22px;
  }
  .cmn_contents_head_en{
    font-size: 26px;
    margin-bottom: 18px;
    text-shadow: 
      0 0 1px #181818, 0 0 1px #181818, 0 0 1px #181818,
      0 0 1px #181818, 0 0 1px #181818, 0 0 1px #181818,
      0 0 1px #181818, 0 0 1px #181818, 0 0 1px #181818,
      0 0 1px #181818, 0 0 1px #181818, 0 0 1px #181818,
      0 0 1px #181818, 0 0 1px #181818, 0 0 1px #181818,
      0 0 1px #181818, 0 0 1px #181818, 0 0 1px #181818,
      0 0 1px #181818, 0 0 1px #181818, 0 0 1px #181818,
      0 0 1px #181818, 0 0 1px #181818, 0 0 1px #181818
      ;
  }
  .cmn_contents_head_ja{
    font-size: 30px;
  }
  
  
  .cmn_contents_box1_inner{
    padding: 70vw 40px 20px;
  }
  .cmn_contents_box2{
    width: calc(100% - 60px);
  }
  
  
  /*
  
  * + .cmn_contents{

  }
  .cmn_contents_row{
    width: 86.51%;
  }
  .cmn_contents_row + .cmn_contents_row{
    margin-top: 30px;
  }
  .cmn_contents_box1{
    width: 78.32%;
    padding-bottom: 15px;
  }
  .cmn_contents_box1_inner{
    min-height: 480px;
  }
  .cmn_contents_box2{
    width: 43.34%;
    position: absolute;
    z-index: 2;
    top: 30px;
    left: auto;
    right: 0;
  }
  .cmn_contents_box2:after{
    top: 7px;
    left: auto;
    right: 0;
  }
  
  .cmn_contents_txt{
    padding-left: 10px;
  }
  .cmn_contents_img{
    border-radius: 20px;
  }*/
  
  /* 入れ替え */
  /*.cmn_contents_row:nth-child(odd){

  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box1{
    margin-left: 0;
    padding-left: 15px;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box1_inner{
    padding: 26px 33.98% 20px 30px;
    border-radius: 0 0 0 20px;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box2{
    right: 0;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box2:after{
    right: -7px;
  }
  .cmn_contents_row:nth-child(even){
    margin-left: auto;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box1{
    margin-left: auto;
    padding-right: 15px;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box1_inner{
    padding: 26px 30px 20px 35.4%;
    border-radius: 0 20px 20px 20px;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box2{
    left: 0;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box2:after{
    left: -7px;
  }*/
  
}
@media (min-width:1024px){

  /* 共通コンテンツ */
  .cmn_contents_wrap{
  }
  * + .cmn_contents_wrap{
    margin-top: 100px;
  }
  .cmn_contents_day{
    font-size: 120px;
    margin-bottom: -0.18666em;
  }
  * + .cmn_contents{

  }
  .cmn_contents_row{
    width: 100%;
  }
  .cmn_contents_row + .cmn_contents_row{
    margin-top: 30px;
  }
  .cmn_contents_box1{
    width: 78.32%;
    padding-bottom: 15px;
  }
  .cmn_contents_box1_inner{
    min-height: 480px;
  }
  .cmn_contents_box2{
    width: 43.34%;
    position: absolute;
    z-index: 2;
    top: 30px;
    left: auto;
    right: 0;
  }
  .cmn_contents_box2:after{
    top: 7px;
    left: auto;
    right: 0;
  }
  /*.cmn_contents_head{
    margin-bottom: 20px;
  }
  .cmn_contents_head:after{
    width: 96px;
    height: 3px;
    margin-top: 22px;
  }
  .cmn_contents_head_en{
    font-size: 30px;
    margin-bottom: 18px;
  }
  .cmn_contents_head_ja{
    font-size: 38px;
  }
  .cmn_contents_txt{
    padding-left: 10px;
  }
  .cmn_contents_img{
    border-radius: 20px;
  }*/
  
  /* 入れ替え */
  .cmn_contents_row:nth-child(odd){

  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box1{
    margin-left: 0;
    padding-left: 15px;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box1_inner{
    padding: 26px 33.98% 20px 30px;
    border-radius: 0 0 0 20px;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box2{
    right: 0;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box2:after{
    right: -7px;
  }
  .cmn_contents_row:nth-child(even){
    margin-left: auto;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box1{
    margin-left: auto;
    padding-right: 15px;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box1_inner{
    padding: 26px 30px 20px 35.4%;
    border-radius: 0 20px 20px 20px;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box2{
    left: 0;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box2:after{
    left: -7px;
  }

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

  

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

  /* 共通コンテンツ */
  .cmn_contents_wrap{
  }
  * + .cmn_contents_wrap{
    margin-top: 100px;
  }
  .cmn_contents_day{
    font-size: 150px;
    margin-bottom: -0.18666em;
  }
  * + .cmn_contents{

  }
  .cmn_contents_row{
    width: 86.51%;
  }

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

  /* 共通コンテンツ */
  .cmn_contents_wrap{
  }
  * + .cmn_contents_wrap{
    margin-top: 100px;
  }
  .cmn_contents_day{
    font-size: 150px;
    margin-bottom: -0.18666em;
  }
  * + .cmn_contents{

  }
  .cmn_contents_row{
    width: 86.51%;
  }

  .cmn_contents_head{
    margin-bottom: 20px;
  }
  .cmn_contents_head:after{
    width: 96px;
    height: 3px;
    margin-top: 22px;
  }
  .cmn_contents_head_en{
    font-size: 30px;
    margin-bottom: 18px;
  }
  .cmn_contents_head_ja{
    font-size: 38px;
  }
  .cmn_contents_txt{
    padding-left: 10px;
  }
  .cmn_contents_img{
    border-radius: 20px;
  }
}




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

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

}
.pg_stepup .section.sec1{

}
.pg_stepup .section.sec2{
  
}

.pg_stepup.pg_forbiginners .section.sec2{
  padding-top: 38px;
}
.pg_stepup.pg_forbiginners .section.sec2:before{
  background-image: url(/system_panel/uploads/images/bv.png);
}
.pg_stepup .section.sec20{
  background: #204477;
  padding-top: 1px;
  padding-bottom: 60px;
}
.pg_stepup .section.sec21{
  background: #13335f;
  padding-top: 1px;
  padding-bottom: 75px;
}
.pg_stepup .section.sec22{
  background: #2c7594;
}
.pg_stepup .section.sec23{
  background: #2c7594;
  padding-bottom: 0;
}


.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}

.pg_stepup .section.sec2 .forbiginners_sec1_wrap .lg_t1{
  margin-bottom: 30px;
}
.pg_stepup .section.sec2 .forbiginners_sec1_wrap .content_desc.center{
  margin-top: 15px;
}
.pg_stepup .section.sec2 .lisense_tbl{
  margin-top: 50px;
}
.pg_stepup .section.sec2 .lg_t1_en,
.pg_stepup .section.sec20 .lg_t1_en{
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}

.pg_stepup .section.sec23 .course_items.stepup{
  margin-top: 20px;
}
.pg_stepup .course_item_head_en{
  letter-spacing: 0.05em;
  text-shadow: 1px  1px 0px #b1a291,
    -1px  1px 0px #b1a291,
    1px -1px 0px #b1a291,
    -1px -1px 0px #b1a291,
    1px  0px 0px #b1a291,
    0px  1px 0px #b1a291,
    -1px  0px 0px #b1a291,
    0px -1px 0px #b1a
    ;
}
.pg_stepup .course_item_head .content_desc{
}

.course_pos21{
  aspect-ratio: 201 /135;
  width: 100px;
  top: 30px;
  top: -65px;
  left: 0;
}
.course_pos22{
  aspect-ratio: 206 / 133;
  width: 100px;
  top: 80px;
  right: 0;
}


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

@media (max-width:374px){

}
@media (min-width:414px){
  .course_pos21{
    /*width: 100px;*/
    /*top: 30px;*/
  }
  .course_pos22{
    /*width: 100px;*/
    /*top: 30px;*/
  }

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

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

  .pg_stepup .section.sec20{
    padding-bottom: 120px;
  }
  .pg_stepup .section.sec21{
    padding-top: 1px;
    padding-bottom: 110px;
  }
  .pg_stepup .section.sec22{
  }
  .pg_stepup .section.sec23{
    padding-bottom: 0;
  }

  
  .pg_stepup .section.sec21{
    
  }
  
  .pg_stepup .section.sec2 .forbiginners_sec1_wrap .lisense_sec2_msg{
    margin-top: 88px;
  }
  .pg_stepup .section.sec2 .lisense_tbl{
    margin-top: 85px;
  }
  .pg_stepup .section.sec20 .course_items{
    margin-top: 80px;
  }
  .pg_stepup .section.sec20 .course_item_head_box2 .content_desc{
    margin-top: 15px;
  }
  .pg_stepup .course_item_head_box2 .content_desc{
    margin-top: 15px;
  }
  .pg_stepup .section.sec20 .course_item_main{
    margin-top: 120px;
  }
  
  .course_pos21{
    /*width: 201px;*/
    top: 100px;
    left: 0;
  }
  .course_pos22{
    /*width: 206px;*/
    top: 100px;
    right: 0;
  }
}
@media (min-width:1024px){

  
  .pg_stepup .section.sec2 .forbiginners_sec1_wrap .lg_t1_h2{
    margin-top: 0;
  }
  .pg_stepup .section.sec2 .course_items{
    margin-top: 140px;
  }

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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

  .course_pos21{
    width: 201px;
    top: 45px;
    left: 0;
  }
  .course_pos22{
    width: 206px;
    top: 65px;
    right: 0;
  }
  
  .pg_stepup .course_item_head .content_desc{
    font-size: 17px;
    line-height: 2.117;
  }
  
}
@media (min-width:1470px){


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

  .pg_stepup .section.sec2 .course_item_main_item_tt{
    /*width: 80%;*/
  }

}

/* メイン部分 */


/**/
.stepup_flow{
  padding: 10px 10px ;
  text-align: center;
  background: #f5f9fd;
  margin-top: 20px;
}
* + .stepup_flow{
  margin-top: 50px;
}
.stepup_flow.color2{
  background: #f7fafc;
}

.course_items.stepup{
  
}
.course_items.stepup .course_item{
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}
.course_items.stepup .course_item:nth-child(n+2){
  margin-top: 0;
}
.course_items.stepup .course_item:nth-child(odd){
  
}
.course_items.stepup .course_item:nth-child(even):after{
  content: "";
  background: #408bab;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
}
.course_items.stepup .course_item_head_box2 .content_desc{
  margin-top: 15px;
}
.course_items.stepup .lg_t1_h2.wide.wide2{
  
}

@media (max-width:767px){

  .pg_stepup .section.sec20 .course_item_main .container{
    padding: 0;
  }
 
  .stepup_flow_inner{
    min-width: 800px;
  }
}
@media (min-width:768px){

  .course_items.stepup .course_item{
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media (min-width:1024px){

  .stepup_flow{
    padding: 70px 120px 75px;
    text-align: center;
    margin-top: 50px;
  }

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


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

  .stepup_flow{
    padding-top: 90px;
  }
  
  .course_items.stepup .lg_t1_h2.wide.wide2{
    max-width: 740px;
  }

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

  

}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@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{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@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{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@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{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@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{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@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{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



/* カテゴリNav */
.cmn_cat_nav{

}
.cmn_cat_nav .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.cmn_cat_nav .webgene-item{
  width: 50%;
  padding: 0 5px;
  margin: 5px 0;
  font-size: 12px;
  line-height: 1.4285;
}
.cmn_cat_nav .webgene-item a{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 50px;
  padding: 2px 10px 3px;
  font-family: var(--font-gothic);
  color: var(--main-color);
  border: 1px solid var(--main-color);
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}

.cmn_cat_nav .webgene-item a:after{
  content: "→";
  font-size: 10px;
  font-family: var(--font-mincho);
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.cmn_cat_nav .webgene-item.on a,
.cmn_cat_nav .webgene-item a:hover{
  background: var(--main-color);
  color: #FFF;
}
.cmn_cat_nav .webgene-item a:hover:after{
  margin-right: -2px;
}

.cmn_cat_nav.color2 .webgene-item a{
  background: #b8d200;
  border-color: #b8d200;
  color: #FFF;
}
.cmn_cat_nav.color2 .webgene-item a:hover{
  background: var(--main-color);
  border-color: var(--main-color);
}
.cmn_cat_nav.color2 .webgene-item a:before{
  content: "";
  position: absolute;
  z-index: 1;
  border: 2px solid #FFF;
  inset: 0;
}

@media (max-width:767px){

  .cmn_cat_nav.col1_sp .webgene-item{
    width: 100%;
  }
  .cmn_cat_nav.col2_sp .webgene-item{
    width: 50%;
  }
  .cmn_cat_nav.col3_sp .webgene-item{
    width: 33.333%;
  }
  .cmn_cat_nav.col4_sp .webgene-item{
    width: 25%;
  }

  .cmn_cat_nav.txt_sm_sp .webgene-item{
    font-size: 10px;
  }

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

  .cmn_cat_nav{
    margin-left: -15px;
    margin-right: -15px;
  }
  .cmn_cat_nav .webgene-item{
    width: 50%;
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav .webgene-item a{

  }

  .cmn_cat_nav .webgene-item a:after{
    font-size: 14px;
    right: 10px;
  }
  .cmn_cat_nav .webgene-item a:hover:after{
    margin-right: -5px;
  }
}
@media (min-width:1024px){

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

  .cmn_cat_nav{
    margin-left: -15px;
    margin-right: -15px;
  }
  .cmn_cat_nav .webgene-item{
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav .webgene-item a{

  }

  .cmn_cat_nav.col2 .webgene-item{
    width: 50%;
  }
  .cmn_cat_nav.col3 .webgene-item{
    width: 33.333%;
  }
  .cmn_cat_nav.col4 .webgene-item{
    width: 25%;
  }
  .cmn_cat_nav.col5 .webgene-item{
    width: 20%;
  }

}




/* セクション設定 */
.body_aftertourDetail .pg_header{
  margin-bottom: 0;
}
.pg_aftertour2{
  
}
.pg_aftertour2 .section.sec1{
  padding-top: 50px;
  padding-bottom: 100px;
  background: #eef5f8;
}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@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{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }
  
  .pg_aftertour2 .section.sec1{
    padding-top: 100px;
    padding-bottom: 150px;
  }
}
@media (min-width:1024px){


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/*******************************
*　ギャラリー（サムネ横ver）
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}

/* スライド */
.gallery_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.gallery_box1{
  width: 100%;
  position: relative
}
.gallery_box2{
  width: 100%;
  margin-top: 15px;
}

.gallery_slide_prev,
.gallery_slide_next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  aspect-ratio:1;
  border-radius: 50%;
  background: #2c7594;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery_slide_prev:before{
  content: "\f104";
  font-family: "FontAwesome";
}
.gallery_slide_next:after{
  content: "\f105";
  font-family: "FontAwesome";
}
.gallery_slide_prev i,
.gallery_slide_next i{
  display: none;
}
.gallery_slide_prev{
  left: -50px;
}
.gallery_slide_next{
  right: -50px;
}

/* メイン */
.gallery_main{

}
.gallery_main .img{
  background: #EEE;
}
.gallery_main .img.img_fit:before{
  padding-top: 67.39%;
}
.gallery_main .img.img_fit img{
  object-fit: cover;
  object-position: center;
}
/* サムネ */
.gallery_thumb{

}
.gallery_thumb .img{
  width: 100%;
  background: #EEE;
  overflow: hidden;
}
.gallery_thumb .img.img_fit:before{
  padding-top: 67.85%;
}
.gallery_thumb .img.img_fit img{

}


/* 詳細 */
.gallery_detail{

}
.gallery_detail .meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 20px;
  margin-bottom: 15px;
  padding-bottom: 10px;

}
.gallery_detail .meta .title{
  font-size: 18px;
  line-height: 1.5;
}
.gallery_detail .meta .price{
  font-size: 18px;
  line-height: 1.5;
  margin-left: auto;
}
.gallery_detail .post_content{
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  word-break: break-all;
}
.gallery_detail .read_more{
  margin-top: 50px;
}

.works_detail{

}
.works_detail .title{
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #181818;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.works_detail .post_content{
  margin-top: 40px;
}
.works_detail .post_content .post_txt{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #121f39;
  padding-bottom: 10px;
}
.works_detail .post_content .post_txt2{
  background: #FFF;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-align: left;
  padding: 12px 15px;
  margin-top: 20px;
  border: 1px solid #ababab;
}
.works_detail .post_content .scd{

}

.works_detail .scd{
  margin-top: 30px;
}
.works_detail .scd table{
  width: 100%;
}
.works_detail .scd th,
.works_detail .scd td{
  border: 1px solid #ababab;
  font-size: 16px;
  letter-spacing: 0.075em;
  font-weight: 500;
  padding: 13px 16px;
}
.works_detail .scd th{
  width: 190px;
  color: #FFF;
  background: #2c7594;
  padding: 13px 16px;
}
.works_detail .scd td{
  background: #fff;
  line-height: 2.11em;

}
.works_detail .read_more{
  margin-top: 40px;
}

.works_detail .imgs{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
}
.works_detail .imgs_item{
  width: 100%;
}
.works_detail .imgs_item_img{

}
.works_detail .imgs_item_img.img_fit:before{
  padding-top: 73.68%;
}
.works_detail .imgs_item_txt{
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.5;
  text-align: center;
  margin-top: 10px;
}
.works_detail .comment{
  font-size: 15px;
  font-weight: 600;
  line-height: 1.875;
}
.works_detail * + .comment{
  margin-top: 20px;
}

/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  .gallery_wrap{
    padding: 0 40px;
  }
  .gallery_slide_prev{
    left: -40px;
  }
  .gallery_slide_next{
    right: -40px;
  }

  .works_detail .scd th,
  .works_detail .scd td{
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .works_detail .scd tr:last-child td{
    border-bottom: 1px solid #ababab;
  }
}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }

  /* 詳細 */
  .gallery_wrap{
    padding: 0 95px;
  }
  .gallery_box1{
    width: 100%;

  }
  .gallery_box2{
    width: 100%;
    margin-top: 8px;

    position: relative;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
  }

  /* サムネ */
  .gallery_thumb{
    width: 100%;
    height: 100%;
  }
  .gallery_thumb .swiper-slide {
    overflow: hidden;
  }
  .gallery_thumb .img{
    height: 100%;
  }
  .gallery_thumb .img.img_fit:before{

  }
  .gallery_slide_prev{
    left: -62px;
  }
  .gallery_slide_next{
    right: -62px;
  }

  /* 詳細 */
  .gallery_detail{
    width: 65.76%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 18px;
  }
  .gallery_detail .meta .price{
    font-size: 18px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;

  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }

  .works_detail{

  }
  .works_detail .title{
    font-size: 28px;
    padding-bottom: 15px;
    margin-bottom: 50px;
  }
  .works_detail .post_content{
    margin-top: 92px;
  }
  .works_detail .post_content .post_txt{
    font-size: 20px;
    padding-bottom: 18px;
  }
  .works_detail .post_content .post_txt2{
    font-size: 18px;
    padding: 16px 30px;
    margin-top: 30px;
  }
  .works_detail .post_content .scd{
    margin-top: 50px;
  }

  .works_detail .scd{
    margin-top: 30px;
  }
  .works_detail .scd th,
  .works_detail .scd td{
    font-size: 18px;
  }
  .works_detail .scd th{
    vertical-align: top;
    border-right: 0;
    width: 190px;
  }
  .works_detail .scd td{
    border-left: 0;
    padding-left: 32px;
  }
  .works_detail .read_more{
    margin-top: 50px;
  }

  .works_detail .imgs.col2{
    gap: 30px 30px;
  }
  .works_detail  .imgs.col2 .imgs_item{
    width: calc((100% - 30px) / 2);
  }

  .works_detail .imgs.col3{
    gap: 30px 20px;
  }
  .works_detail .imgs.col3 .imgs_item{
    width: calc((100% - 40px) / 3);
  }

  .works_detail .imgs.col4{
    gap: 30px 15px;
  }
  .works_detail .imgs.col4 .imgs_item{
    width: calc((100% - 60px) / 4);
  }

  .works_detail .imgs_item_txt{
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
  }
  .works_detail .comment{
    font-size: 18px;
    line-height: 2.111;
  }
}
@media (min-width:1024px){

  /* 詳細 */
  .gallery_detail{
    width: 65.76%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 20px;
  }
  .gallery_detail .meta .price{
    font-size: 20px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }

  .works_detail{

  }
  .works_detail .title{
    font-size: 30px;
  }
  .works_detail .post_content{

  }
  .works_detail .post_content .post_txt{
    font-size: 25px;
  }
  .works_detail .post_content .scd{

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

  .works_detail .scd td{
    padding-top: 40px;
    padding-bottom: 25px;
    padding-left: 60px;
    padding-right: 60px;
  }
  
  .works_detail .comment{
  }
  
  .works_detail .read_more a{
    min-width: 350px;
    justify-content: center;
    text-align: center;
  }
}




/*******************************
*　
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@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{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}

[data-inview-anime="fadeInUpSmall"]{
  opacity: 0;
}

@-webkit-keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUpSmall {
  -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall;
}


@keyframes spin {
  from{
    transform: rotate(0deg);
  }
  
  to{
    transform: rotate(360deg);
  }
}

.js-spin{
  
}
.js-spin img{
  display: block;
  animation: spin 15s linear infinite;
  will-change: transform;
}
