@charset "UTF-8";
/*
Theme Name: MY-THEME
*/
@import "style-visual.css";

/* Webフォント読込サンプル */
/*
@font-face {
  font-family: "Font-Family-NAME";
  src: url(css/fonts/font-file.woff2) format("woff2"),
  url(css/fonts/font-file.woff) format("woff"),
  url(css/fonts/font-file.eot) format("eot");
  font-weight: 400;
  font-style: normal;
}
*/

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

  /* カラー(ボタン背景色など) */
  --main-color: #68beef;
  --sub-color: #69ca82;
  --txt-color: #000;

  /* フォント関連 */
  --font-ja: "M PLUS 1p", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  /*--font-en: "Oswald", 'Noto Sans JP',sans-serif;*/
  --font-en: "Outfit", sans-serif;
  --font-mincho: 'Noto Serif JP', serif;
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family: 'M PLUS 1p', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: var(--txt-color);
  background: #FFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: url(/img/back.png);
  background-repeat: no-repeat;
  background-position: top;
}

#root{
  overflow: hidden;
}


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

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

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

}


.container{
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width:768px){

  /* コンテナサイズ:px */
  .container{
    max-width: 720px;
  }

  :root {
    --margin-for-device-side: calc(345px - 50vw);
    --margin-for-device-side-w: calc(345px - 50vw);
    --resize-rate: 0.6;
  }
}
@media (min-width:992px){

  /* コンテナサイズ:px */
  .container{
    max-width: 960px;
  }

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

  /* コンテナサイズ:px */
  .container{
    max-width: 1140px;
  }

  :root {
    --margin-for-device-side: calc(555px - 50vw);
    --margin-for-device-side-w: calc(555px - 50vw);
    --resize-rate: 0.7;
  }
}
@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);
    --resize-rate: 0.7;
  }

}
@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);
    --resize-rate: 1.0;
  }
}


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

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

@media (max-width:767px){
  body{
    background-size: 100%;
  }

  #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;*/
}
img{
  max-width: 100%;
  width: auto;
}

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: 120px;
  padding: 16px;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: #fff;
  box-shadow: 0px 0px 12.75px 2.25px rgba(0, 0, 0, 0.05);
  border-radius: 30px;
}

/* ロゴ */
.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;
}

.hdr1_outer{
  display: flex;
  align-items: center;
}
.hdr_logo{

}
.logo_txt{
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  background: #68beef;
  color: #fff;
  border-radius: 20px;
  width: 140px;
  text-align: center;
  margin-left: 34px;
  padding: 5px 0;
}
@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;
  }

  .hdr2_outer{
    display: none;
  }
  .hdr_logo img{
    height: auto;
  }
}
@media (min-width:768px){

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

    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    padding: 40px 40px;
  }

  .hdr1{
    padding: 20px 15px 20px 15px;
  }

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

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

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

  /* TELボタン */
  .hdr_tel{

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

  .hdr1_outer{

  }
  .hdr_logo{

  }
  .logo_txt{
    font-size: 14px;
    width: 100px;
    text-align: center;
    margin-left: 16px;
  }
  .hdr2_outer{
    display: flex;
    align-items: center;
  }
  .hdr_btn{
    margin-left: 11px;
  }
  .hdr_btn img{
    transition: all .2s;
  }
  .hdr_btn a:hover img{
    transform: scale(1.05);
  }


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

  .header{
    --logo-height: 50px;
  }



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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr1_outer{
    display: flex;
    align-items: center;
  }
  .hdr_logo{

  }
  .logo_txt{
    font-size: 20px;
    width: 140px;
    text-align: center;
    margin-left: 34px;
  }
  .hdr2_outer{

  }
  .hdr_btn{

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

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

  .hdr1{
    padding: 0 15px 0 34px;
  }

  /* ロゴ */
  .hdr_logo{

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

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

  }
  .header.slim .hdr_logo img{
  }


  .hdr1_outer{

  }
  .hdr_logo{

  }
  .logo_txt{

  }
  .hdr2_outer{

  }
  .hdr_btn{

  }
}
@media (min-width:1470px){
  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 160px;
  }
}
@media (min-width:1720px){
  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 252px;
  }
  body.home{
    padding-top: 223px;
  }
}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
}
.mv_txt_p1{

}
.mv_txt_p2{

}

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

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

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

.mv_outer{
  position: relative;
}
.mv_inner{
  display: flex;
  flex-wrap: wrap;
}
.mv_left{
  width: 100%;
}
.mv_text{

}
.mv_bnr{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
  margin-top: 30px;
}
.mv_bnr_item{

}
.mv_bnr_item a{

}
.mv_bnr_item img{

}
.mv_bnr_item a:hover img{

}
.mv_right{
  width: 100%;
}
.mv_right .swiper-slide .mv_img:before{
  padding-top: 250px;
}
.mv_right .swiper-slide .mv_img{
  border-radius: 50px;
}
.mv_right .swiper-slide .mv_img img{
  border-radius: 50px;
}

@media (min-width:768px){

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 400px;
  }

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

  .mv_inner{
    justify-content: space-between;
  }
  .mv_left{

  }
  .mv_text{

  }
  .mv_bnr{
    margin-top: 80px;
  }
  .mv_bnr_item{

  }
  .mv_bnr_item a{

  }
  .mv_bnr_item img{
    transition: all .2s;
  }
  .mv_bnr_item a:hover img{
    transform: scale(1.05);
  }
  .mv_right{

  }
  .mv_right .swiper-slide{
    width: 500px;
  }
  .mv_right .swiper-slide .mv_img:before{
    padding-top: 400px;
  }
}
@media (min-width:1024px){


  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 500px;
  }

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

  .mv_inner{

  }
  .mv_left{
    width: 33.55%;
    padding-top: 40px;
  }
  .mv_text{

  }
  .mv_bnr{
    justify-content: space-between;
  }
  .mv_bnr_item{
    width: 48%;
  }
  .mv_bnr_item a{

  }
  .mv_bnr_item img{

  }
  .mv_bnr_item a:hover img{

  }
  .mv_right{
    width: 61.51%;

  }
  .mv_right_inner{
    margin-right: var(--margin-for-device-side-w);
  }
  .mv_right .swiper-slide{
    width: 500px;
  }
  .mv_right .swiper-slide .mv_img:before{
    padding-top: 400px;
  }
}
@media (min-width:1200px){

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 820px;
  }

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

  .mv_inner{

  }
  .mv_left{

  }
  .mv_text{

  }
  .mv_bnr{

  }
  .mv_bnr_item{
    width: 48%;
  }
  .mv_bnr_item a{

  }
  .mv_bnr_item img{

  }
  .mv_bnr_item a:hover img{

  }
  .mv_right{

  }
  .mv_right .swiper-slide{
    width: 900px;
  }
  .mv_right .swiper-slide .mv_img:before{
    padding-top: 600px;
  }
}

@media (min-width:1440px){
  .mv_bnr_item{
    width: 48%;
  }
}
@media (min-width:1536px){

}
@media (min-width:1720px){
  .mv_bnr_item{
    width: auto;
  }
}
/*******************************
*　サイドバー
********************************/

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

/* バナー */
.sidebar_bn{
  display: block;
  margin-top: 10px;
}
.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: 60px;
  position: relative;
  z-index: 1;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}
.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: left;
  /*  -webkit-transform: translate(0, -50%);*/
  /*  transform: translate(0%, -50%);*/
  margin-left: 25px;
  margin-right: 25px;
}
.pg_header_title_txt{
  font-size: 28px;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-family: "M PLUS 1p", sans-serif;
  color: #000;
}
.pg_header_title_txt_en{
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 600;
  font-family: "Outfit";
  text-transform: uppercase;
  color: var(--sub-color);
  border-bottom: 2px dotted #000;
  padding-bottom: 20px;
}


@media (min-width:768px){
  .pg_header{
    margin-bottom: 40px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }
  .pg_header_title_txt{

  }
  .pg_header_title_txt_en{

  }

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

  }
  .pg_header_title_txt_en{

  }

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

  .pg_header{
    margin-bottom: 70px;
    margin-top: 168px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }
  .pg_header_title{
    max-width: calc(1520px + 400px);
    padding-left: 40px;
    padding-right: 40px;
    margin-left: 0;
    margin-right: 0;
  }
  .pg_header_title_txt{
    font-size: 50px;
  }
  .pg_header_title_txt_en{
    font-size: 22px;
    letter-spacing: 0;
    font-weight: 600;
    border-bottom: 2px dotted #000;
    padding-bottom: 20px;
  }
}
@media (min-width:1470px){
  .pg_header {
    margin-bottom: 70px;
    margin-top: 120px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }
  .pg_header_title{
    max-width: calc(1520px + 200px);
    padding-left: 100px;
    padding-right: 100px;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width:1720px){
  .pg_header{
    margin-bottom: 70px;
    margin-top: 0px;
  }
  .pg_header_title{
    max-width: calc(1520px + 200px);
    padding-left: 200px;
    padding-right: 0;
  }
  .pg_header_title_txt{
    font-size: 60px;
  }
  .pg_header_title_txt_en{
    font-size: 30px;
    letter-spacing: 0;
    font-weight: 600;
    border-bottom: 2px dotted #000;
    padding-bottom: 21px;
  }
}


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

footer{
  background: #68beef;
  margin-top: 50px;
}

.ftr1{
  padding: 30px 0;
  margin-bottom: 25px;
  background: #f7f6ee;
  border-radius: 50px 50px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ftr1>.container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr1 .box1{

}
.ftr_addr{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2.25em;
}
.ftr1 .box2{

}

.ftr_logo{
  margin-bottom: 19px;
}
.ftr_name{
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
}
.ftr_addr{
  margin-bottom: 10px;
}


.ftr_contact{
  display: block;
  background: #ef7f1a;
  border-radius: 10px;
  color: #FFF;
  width: 255px;
  padding: 13px 5px;
  text-align: center;
}

.ftr_contact p:before{
  content:"\f0e0";
  font-family: "FontAwesome";
  margin-right: 10px;
}

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  width: 100%;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.025em;
  border-top: 1px solid #000000;
  padding-top: 9px;
  margin-top: 40px;
}

/* 追尾スマホメニュー */
.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 ul{
  width: 100%;
  display: flex;
  z-index: 5;
  flex-wrap: wrap;
  padding: 3px;
}
.footer_fix ul li a{
  display: block;
  padding: 14px 10px;
  background: #4baf0c;
  color: #FFF;
  text-decoration: none;
}
.footer_fix li > a{
  font-size: 14px;
  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 #fff;
}
.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;
}

.ftr_contact_outer{
  padding-top: 50px;
}
.ftr_contact_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_contact_box1 {
  width: 100%;
}
.ftr_contact_en {
  color: #fff;
  font-size: 50px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.03em;
  line-height: 1;
}
.ftr_contact_box2 {
  width: 100%;
  margin-top: 30px;
}
.ftr_contact_box2_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.ftr_contact_box2_item {
  width: 100%;
  text-align: center;
}
.ftr_contact_box2_item_tel{
  color: #fff;
}
.ftr_contact_box2_item_tel1{
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  position: relative;
}
.ftr_contact_box2_item_tel1:before {
  content: "\f095";
  content: "tel";
  display: block;
  margin-right: 10px;
  font-size: 29px;
}
.ftr_contact_box2_item_tel2{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  margin-top: 10px;
}
.ftr_contact_box2_item .link_1 {
  display: block;
  width: 100%;
  max-width: 380px;
  border: 1px solid #fff;
  border-radius: 30px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 15px 0;
}
.ftr_contact_box2_item .link_1:hover{
  background: #69ca82
}
.ftr_contact_box2_item .link_1 p{
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}
.ftr_contact_box2_item .link_1 p:before{
  content: "\f0e0";
  display: block;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 21px;
  transition: all .2s;
  margin-right: 7px;
  margin-right: 15px;
}
@media (min-width:375px){

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

  body{
    padding-bottom: 0;
  }

  .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);
  }

  .ftr_contact_box1 {
    text-align: center;
  }
  .ftr_contact_box2_item {
    border-top: 1px solid #fff;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .ftr1 .box1{
    text-align: center;
  }
  .ftr1 .box2{
    display: none; 
  }
  .ftr_addr{
    text-align: center;
  }
}
@media (min-width:768px){
  footer{
    margin-top: 100px;
  }


  .ftr_contact_outer{
    padding-top: 120px;
  }
  .ftr_contact_en {
    color: #fff;
    font-size: 70px;
  }
  .ftr_contact_box2 {
    margin-top: 40px;
  }
  .ftr_contact_box2_item {
    width: 55.37%;
    position: relative;
  }
  .ftr_contact_box2_item:before {
    content: "";
    display: block;
    width: 1px;
    height: 160px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .ftr_contact_box2_item:before, .ftr_contact_box2_item:last-child:after {
    height: 80px;
  }
  .ftr_contact_box2_item:first-child {
    width: 44.18%;
  }
  .ftr_contact_box2_item:last-child:after {
    content: "";
    display: block;
    width: 1px;
    height: 80px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .ftr_contact_box2_item .link_1 {
    font-size: 15px;
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
    margin-top: 0;
  }

  .ftr1{
    padding: 60px 20px 10px;
    margin-top: 50px;
  }
  .ftr1 .box1{
    width: 35.5%;
  }
  .ftr_addr{

  }
  .ftr1 .box2{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 55.78%;
    padding-top: 14px;
  }
  .ftr1 .box2 .ftr_links{
    width: 100%;
  }
  .ftr1 .box2 .ftr_links li{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
    position: relative;
    margin-top: 16px;
  }
  .ftr1 .box2 .ftr_links li:hover:after{
    right: -5px;
  }
  .ftr1 .box2 .ftr_links li:after{
    content: "\f105";
    display: block;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 41%;
    right: 0;
    transform: translateY(-50%);
    font-size: 18px;
    transition: all .2s;
  }
}
@media (min-width:1024px){
  footer{
    margin-top: 160px;
  }


  .ftr_contact_box2 {
    width: 100%;
    margin-top: 50px;
  }
  .ftr_contact_box2_item:before, .ftr_contact_box2_item:last-child:after {
    height: 100px;
  }
  .ftr_contact_box2_item:before, .ftr_contact_box2_item:last-child:after {
    height: 100px;
  }
  .ftr_contact_box2_item .link_1 {
    font-size: 15px;
    display: block;
    width: 100%;
    max-width: 320px;
  }

  .ftr1{
    padding: 62px 60px 10px;
    margin-top: 80px;
  }
  .ftr1 .box1{
    width: 50.5%;
  }
  .ftr1 .box2{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 44.78%;
  }
}
@media (min-width:1200px){
  .ftr_copy{
    margin-top: 16px;
  }

  .ftr_contact_box1 {
    width: 40.31%;
  }
  .ftr_contact_en {
    color: #fff;
    font-size: 60px;
    margin-top: -20px;
  }
  .ftr_contact_box2 {
    width: 58.81%;
    margin-top: 0;
  }
  .ftr_contact_box2_item_tel1 {
    font-size: 36px;
  }
  .ftr_contact_box2_item .link_1 {
    font-size: 18px;
  }

  .ftr_contact_box2_item:before, .ftr_contact_box2_item:last-child:after {
    height: 160px;
  }
  .ftr_contact_box2_item:before, .ftr_contact_box2_item:last-child:after {
    height: 160px;
  }

  .ftr1{
    margin-top: 106px;
  }
  .ftr1 .box1{
    width: 35.5%;
  }
  .ftr1 .box2{
    width: 63.78%;
    justify-content: space-between;
  }
  .ftr1 .box2 .ftr_links{
    width: 27.67%;
  }
  .ftr1 .box2 .ftr_links li{
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 0;
  }
  .ftr1 .box2 .ftr_links li:nth-child(n+2){
    margin-top: 20px;
  }
}
@media (min-width:1440px){
  .ftr_contact_en {
    color: #fff;
    font-size: 100px;
  }
  .ftr_contact_box2_item .link_1 {
    font-size: 18px;
    display: block;
    width: 100%;
    max-width: 380px;
  }

  .ftr1 .box2{
    width: 55.78%;
  }

  .ftr1 .box2 .ftr_links li{
    font-size: 14px;
  }
}
@media (min-width:1720px){
  .ftr1 .box2 .ftr_links li{
    font-size: 16px;
  }
}
/*******************************
*　共通パーツ
********************************/


/* テーブル用 */
.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;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  display: flex;
  align-items: center;
  min-width: inherit;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  background: none;
  /*border-radius: 27px;*/
  color: #000000;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a span{
  border-bottom: 1px solid #000000;
  padding-bottom: 6px;
  white-space: nowrap;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "";
  display: block;
  position: absolute;
  width: 61px;
  aspect-ratio:1;
  background-image: url(/img/circle.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  position: relative;
  right: 0;
  transition: 0.2s all;
  margin-left: 16px;
}
.read_more.insta a:after{
  background-image: url(/img/other_link_circle.png);
}
.read_more a:hover{
  color: #000;
  background: none;
}
.read_more a:hover:after{
  margin-right: -5px;
  right: -10px;
}


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

}


@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: inherit;
    font-size: 20px;
    padding: 0;
    margin: 5px 5px;
  }
  .read_more a:after{
  }
  .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){


}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 100px;
  }
  .tt2_en{
    font-size: 15px;
  }
  .tt2_en.mid{
    font-size: 20px;
  }
  .tt2_ja{
    font-size: 45px;
  }

}

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

/*******************************
*　丸い装飾
********************************/
.pos{
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

/*MV*/
.mv_pos1{
  width: 5.8%;
  aspect-ratio:113 / 276;
  background-image: url(/img/home/mv_pos1.png);
  bottom: 0;
  left: 0;
}
.mv_pos2{
  width:18.75%;
  aspect-ratio:1;
  background-image: url(/img/home/mv_pos2.png);
  top: -28%;
  left: 39%;
  transform:translateX(-50%);
}
.mv_pos3{
  width:20.72%;
  aspect-ratio:398 / 460;
  background-image: url(/img/home/mv_pos3.png);
  right: 0;
  bottom: 0;
  bottom: -34%;
  z-index: 3;
}

/*home 放課後留学とは*/
.home1{
  width:42.71%;
  aspect-ratio:299 / 292;
  background-image: url(/img/home/home1.png);
  bottom: 4.5rem;
  left: -5.5rem;
}
.home2{
  width:39.42%;
  aspect-ratio:276 / 276;
  background-image: url(/img/home/home2.png);
  top: -3.5rem;
  right: 1rem;
}
.home3{
  width:18.59%;
  aspect-ratio:357 / 348;
  background-image: url(/img/home/home3.png);
  bottom: -8rem;
  right: 12rem;
}
.home4{
  width:14.06%;
  aspect-ratio:270 / 460;
  background-image: url(/img/home/home4.png);
  top: -9rem;
  left: 0;
}
.home5{
  width:24.89%;
  aspect-ratio:478 / 476;
  background-image: url(/img/home/home5.png);
  bottom: -14rem;
  left: 38%;
  transform:translateX(-50%);
  z-index: -1;
}
.home6{
  width:39.42%;
  aspect-ratio:1;
  background-image: url(/img/home/home6.png);
  top: 6rem;
  left: -6rem;
}
.home7{
  width:44.85%;
  aspect-ratio:314 / 360;
  background-image: url(/img/home/home7.png);
  bottom: 4rem;
  right: -7rem;
}

/*about*/
.about1{
  width:24%;
  aspect-ratio:168 / 164;
  background-image: url(/img/about/about1.png);
  top: 6rem;
  left: -2rem;
}
.about2{
  width:39.42%;
  aspect-ratio:1;
  background-image: url(/img/about/about2.png);
  top: 9.5rem;
  right: 0.5rem;
}
.about3{
  width:28.57%;
  aspect-ratio:1;
  background-image: url(/img/about/about3.png);
top: 4.5rem;
    left: 3.5rem;
}
.about4{
  width:51%;
  aspect-ratio:357 / 348;
  background-image: url(/img/about/about4.png);
    bottom: -11rem;
    right: -4.5rem;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  /*about*/
  .about3{
    top: -1.5rem;
  }
}
@media (min-width:768px){


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


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


}

/*******************************
*　HOME
********************************/
.pg_home{
  overflow: hidden;
}
.pg_home .section.sec1{
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
}
.pg_home .section.sec2{
  position: relative;
  padding-top: 60px;
  padding-bottom: 0;
}
.pg_home .section.sec2:before{
  content: "";
  display: block;
  width: 95.83%;
  height:100%;
  background-image: url(/img/home/bg1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
}
.pg_home .section.sec3{
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
}
.pg_home .section.sec3:before{
  content: "";
  display: block;
  width: 1740px;
  aspect-ratio:1740 / 1253;
  background-image: url(/img/home/bg2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -11%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.pg_home .section.sec4{
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  z-index: 2;
}
.pg_home .section.sec4:before{
  content: "";
  display: block;
  width: 95.83%;
  height:100%;
  background-image: url(/img/home/bg3.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
}
.pg_home .section.sec5{
  position:relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec6{
  position: relative;
  padding-top: 40px;
  padding-bottom: 30px;
}
.pg_home .section.sec6:before{
  content: "";
  display: block;
  width: 95.83%;
  height:100%;
  background-image: url(/img/home/bg3.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
}
.pg_home .section.sec7{
  padding-top: 80px;
  padding-bottom: 40px;
}
.pg_home .section.sec8{
  position: relative;
  padding-top: 50px;
  padding-bottom: 40px;
}
.pg_home .section.sec8:before{
  content: "";
  display: block;
  width: 95.83%;
  height:100%;
  background-image: url(/img/home/bg4.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
}
@media (max-width:767px){

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

  .pg_home .section.sec1{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec2{
    padding-top: 80px;
  }
   .pg_home .section.sec2:before{
    height: 95%;
  }
  .pg_home .section.sec3{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec4{
    padding-top: 100px;
    padding-bottom: 70px;
  }
  .pg_home .section.sec5{
    padding-top: 83px;
    padding-bottom: 80px;
  }
  .pg_home .section.sec6{
    padding-bottom: 80px;
  }
  .pg_home .section.sec7{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec8{
    padding-top:80px;
    padding-bottom: 100px;
  }

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


}
@media (min-width:1200px){
  .pg_home .section.sec1{
    padding-top: 157px;
    padding-bottom: 90px;
  }
  .pg_home .section.sec2{
    padding-top: 106px;
  }
  .pg_home .section.sec2:before{
    height: 95%;
  }
  .pg_home .section.sec3{
    padding-top: 130px;
    padding-bottom: 150px;
  }
  .pg_home .section.sec4{
    padding-top: 140px;
    padding-bottom: 90px;
  }
  .pg_home .section.sec5{
    padding-top: 83px;
    padding-bottom: 81px;
  }
  .pg_home .section.sec6{
    padding-bottom: 100px;
  }
  .pg_home .section.sec7{
    padding-top: 157px;
    padding-bottom: 160px;
  }
  .pg_home .section.sec8{
    padding-top: 113px;
    padding-bottom: 150px;
  }

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

  .pg_home .section.sec2:before{
height: 97%;
  }
}
@media (min-width:1720px){


}

/*メイン*/

/*「放課後留学とは？」*/
.home_sec1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec1_box1{
  width: 100%;
  position: relative;
  order: 2;
  margin-top: 60px;
}
.home_sec1_box1 .img.top{

}
.home_sec1_box1 .img.top img{
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}
.home_sec1_box1 .img.btm{
  width: 60%;
  margin-top: -6.5rem;
  margin-left: auto;
}
.home_sec1_box1 .img.btm img{
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}
.home_sec1_box2{
  width: 100%;
  order: 1;
}
.sec_tt{

}
.sec_tt.center{
  text-align: center;
}
.sec_en{
  font-size: 18px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: #69ca82;
}
.sec_tt_ja{
  font-size:24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 16px;
}
.sec_sub{
  margin-top: 20px;
}
.sec_sub.multi{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sec_sub_txt{
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: #f7f6ee;
  padding: 0 20px;
}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2.25em;
  text-align: justify;
  margin-top: 20px;
}

/*活動内容*/
.tt2{
  position: relative;
  z-index: 1;
}
.tt2_ja{
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.tt2_en{
  font-size: 18px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  color:#69ca82; 
  margin-top: 5px;
}
.curriculum_items{
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.curriculum_items .item{
  width: 100%;
}
.curriculum_items .item:nth-child(n+2){
  margin-top: 30px;
}
.curriculum_items .item a{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff;
  border-radius: 20px;
  padding: 16px 16px 30px;
  position: relative;
}
.curriculum_items .item a:hover{
  background: #e1e1e1
}
.curriculum_items .item a:hover:after{
  transform: scale(1.05)
}
.curriculum_items .item a:after{
  content: "";
  display: block;
  width: 40px;
  aspect-ratio:1;
  background-image: url(/img/home/kado.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all .2s;
}
.curriculum_items .item .box1{
  width: 100%;
}
.curriculum_items .item .img_outer{
  text-align: center;
}
.curriculum_items .item .img{

}
.curriculum_items .item .box2{
  width: 100%;
  margin-top: 20px;
}
.curriculum_items .item .box2 .flex{
  display: flex;
  align-items: center;
  justify-content: center;
}
.curriculum_items .item .box2 .flex .curriculum_tt{
  margin-right: 10px;
}
.curriculum_items .item .box2 .opt{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #fec02c;
  border-radius: 15px;
  width: 110px;
  text-align: center;
  padding: 4px 5px;
}
.curriculum_tt{
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.curriculum_items .content_desc{
  margin-top: 16px;
}

.home_sec2_bnr{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-top: 50px;
}
.home_sec2_bnr .item{
  width: 100%;
}
.home_sec2_bnr .item a{

}
.home_sec2_bnr .item a:hover img{
  transform: scale(1.05);
}
.home_sec2_bnr .item a img{
  transition: all .2s;
}

/*スタッフ紹介*/
.stf_items{
  overflow: visible;
}
.stf_items .swiper-slide{
  width: 250px;;
  transition: all .4s;
}
.stf_items .swiper-slide{

}
.stf_items .webgene-item .inner{
  display: block;
  text-align: center;

  border-radius: 20px;
  box-shadow: 4.974px 3.355px 11.96px 1.04px rgba(42, 57, 38, 0.11);
  padding: 30px 20px 45px;
  position: relative;
  border: 1px solid #f59999;
  transition: all .2s;
}
.stf_items .webgene-item .inner:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fefff5;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.stf_items .webgene-item .inner:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #f59999;
  border-radius: 20px;
  position: absolute;
  top: 23px;
  left: 17px;
  z-index: -1;
}
.stf_items .webgene-item .img{
  width: 80%;
  margin-inline:auto;
}
.stf_items .webgene-item.swiper-slide-active{
  /*  transform: scale(1.2);*/
  position: relative;
  z-index: 2;
}
.stf_items .webgene-item:nth-child(odd) {
  transform: rotate(5deg);
}
.stf_items .webgene-item:nth-child(odd) .inner{
  transform:scale(0.80);;
}
.stf_items .webgene-item.swiper-slide-active:nth-child(odd){
  transform: rotate(5deg) 
}
.stf_items .webgene-item.swiper-slide-active:nth-child(odd) .inner{
  transform: scale(1);
}
.stf_items .webgene-item:nth-child(even) {
  transform: rotate(-5deg)
}
.stf_items .webgene-item:nth-child(even) .inner{
  transform:scale(0.80);;;
}
.stf_items .webgene-item.swiper-slide-active:nth-child(even) {
  transform: rotate(-5deg);
}
.stf_items .webgene-item.swiper-slide-active:nth-child(even) .inner{
  transform: scale(1);
}

.stf_items .webgene-item .img img{
  border-radius: 50%;
}
.stf_items .webgene-item .img:before{
  padding-top: 100%;
}
.stf_items .webgene-item .title{
  font-size: 18px;
  font-weight: 900;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0;
  color: #f59999;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}
.stf_items .webgene-item .link_1{

}
.stf_items .webgene-item .link_1 div{
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.05em;
  width: 108px;
  border-bottom: 1px solid #000000;
  margin-inline: auto;
  position: relative;
  padding-bottom: 8px;
}
.link_1 div:after{
  content: "\f061";
  font-size: 11px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all .2s;
}

/*その他サービス*/
.home_other_wrap{
  display:flex;
  flex-wrap: wrap;
}
.home_other_item{
  width: 100%;
}
.home_other_item:nth-child(n+2){
  margin-top: 40px;;
}
.home_other_item a{

}
.home_other_item .img{
  overflow: hidden;
  border-radius: 30px;
}
.home_other_item .img:before{
  padding-top: 32.91%;
}
.home_other_item .img img{
  border-radius: 30px;
}
.home_other_item .box1{
  padding: 16px;
  position: relative;
  z-index: 2;
}
.home_other_item .title{
  border-bottom: 1px solid #000000;
  padding-bottom: 10px;
  position: relative;
}

.home_other_item .txt{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
}
.home_other_item .txt:after{
  content: "";
  display: block;
  width: 61px;
  aspect-ratio:1;
  background-image: url(/img/circle.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position:absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all .2s;
}
.home_other_item a:hover .txt:after{
  right: -5px;
}
.home_other_item .content_desc{
  margin-top: 25px;
}

/*instagram*/
.lg_en{
  text-align: center;
  font-size: clamp(2.5rem, 1.125rem + 6.88vw, 9.375rem);
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #fff;
  position: relative;
  z-index: 0;
}
.insta_box{
  margin-top: -1.4rem;
}
.pg_home .section.sec6 #sb_instagram{
  padding-bottom: 0!important;
  z-index: 2!important;
}
.pg_home .section.sec6 .read_more{
  margin-top: 0; 
}

/*その他コンテンツ*/
.other_contents_wrap{
  display: flex;
  flex-wrap: wrap;
}
.other_contents_wrap .item{
  width: 100%;
}
.other_contents_wrap .item:nth-child(n+2){
  margin-top: 40px;;
}
.other_contents_wrap .item a{
  position: relative;
  display: block;
  border-radius: 30px;
}
.other_contents_wrap .item .img{
  border-radius: 30px;
  overflow: hidden;
}
.other_contents_wrap .item .img img{
  transition: all .2s;
}
.other_contents_wrap .item a:hover img{
  transform: scale(1.05);
}
.other_contents_wrap .item .img:before{
  padding-top: 237px;
}
.other_contents_wrap .item .img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  z-index: 1;
}
.other_contents_wrap .item .inner{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  padding-inline: 20px;
}
.other_contents_wrap .item .left{
  position: relative;
}
.other_contents_wrap .item .left:after{
  content: "";
  display: block;
  width: 61px;
  aspect-ratio: 1;
  background-image: url(/img/circle.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all .2s;
}
.other_contents_wrap .item a:hover .left:after{
  right: -5px;
}
.other_contents_wrap .item .left .txt{
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
}
.other_contents_wrap .item .left .en{
  font-size: 16px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0em;
  line-height: 1;
  color: #69ca82;
  margin-top: 12px;
}


.mv_bnr.ftr_bnr{
  position: relative;
  z-index: 2;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .swiper.stf_items{
    margin-top: 60px;
  }
  .pg_home .section.sec3 .read_more{
    margin-top: 60px;
  }

  /*その他サービス*/
  .home_other_item .txt:after{
    width: 40px;
  }
  
  .in_box .title{
    flex-wrap: wrap;
  }
  .in_box .title .read_more a{
    padding: 0px 20px;
  }
  .in_box .title .read_more{
    width: 100%;
    justify-content: center;
  }
}
@media (min-width:768px){
  /*「放課後留学とは？」*/
  .home_sec1_wrap{

  }
  .home_sec1_box1{
    margin-top: 40px;
  }
  .home_sec1_box1 .img.top{

  }
  .home_sec1_box1 .img.top img{

  }
  .home_sec1_box1 .img.btm{
    width: 60%;
    margin-top: -16.5rem;
  }
  .home_sec1_box1 .img.btm img{

  }
  .home_sec1_box2{

  }
  .sec_tt{

  }
  .sec_en{
    font-size: 20px;
  }
  .sec_tt_ja{
    font-size: 50px;
  }
  .sec_sub{

  }
  .sec_sub_txt{
    font-size: 28px;
  }
  .content_desc{
    margin-top: 30px;
  }

  /*活動内容*/
  .tt2{

  }
  .tt2_ja{
    font-size: 50px;
  }
  .tt2_en{
    font-size: 20px;
  }
  .curriculum_items{
    margin-inline:-10px;
  }
  .curriculum_items .item{
    width: 50%;
    padding-inline:10px;
  }
  .curriculum_items .item:nth-child(n+2){
    margin-top: 0;
  }
  .curriculum_items .item:nth-child(n+3){
    margin-top: 20px;
  }
  .curriculum_items .item a{
    height: 100%;
    padding: 16px 16px 40px;
  }
  .curriculum_items .item .box1{

  }
  .curriculum_items .item .img_outer{

  }
  .curriculum_items .item .img{

  }
  .curriculum_items .item .box2{
    margin-top: 30px;
  }
  .curriculum_tt{
    font-size: 28px;
  }
  .curriculum_items .content_desc{

  }
  .home_sec2_bnr{
margin-top: 125px;
  }
  .home_sec2_bnr .item{
    width: auto;
    margin-inline:16px;
  }
  .home_sec2_bnr .item a{

  }
  .home_sec2_bnr .item a img{

  }

  /*スタッフ紹介*/
  .stf_items{

  }
  .stf_items .swiper-slide{
    width: 500px;
  }
  .stf_items .webgene-item .inner{
    padding: 50px 20px 45px;
  }
  .stf_items .webgene-item .img{
    width: 55.81%;
  }
  .stf_items .webgene-item .img img{
    border-radius: 50%;
  }
  .stf_items .webgene-item .img:before{
    padding-top: 100%;
  }
  .stf_items .webgene-item .title{
    font-size: 30px;
  }
  .stf_items .webgene-item .link_1{

  }
  .pg_home .section.sec3 .read_more{
    margin-top: 130px;
  }

  /*その他サービス*/
  .home_other_wrap{
  }
  .home_other_item{

  }
  .home_other_item:nth-child(n+2){
    margin-top: 50px;;
  }
  .home_other_item a{

  }
  .home_other_item .img_before{

  }
  .home_other_item .box1{
    padding: 45px 40px;
  }
  .home_other_item .title{
    padding-bottom: 24px;
  }
  .home_other_item .title:after{

  }
  .home_other_item .txt{
    font-size: 28px;
  }
  .home_other_item .content_desc{

  }

  /*instagram*/
  .lg_en{

  }
  .insta_box{
    margin-top: -1.8rem;
  }

  /*その他コンテンツ*/
  .other_contents_wrap{

  }
  .other_contents_wrap .item{

  }
  .other_contents_wrap .item:nth-child(n+2){
    margin-top: 50px;;
  }
  .other_contents_wrap .item a{

  }
  .other_contents_wrap .item .img:before{

  }
  .other_contents_wrap .item .img:after{

  }
  .other_contents_wrap .item .inner{
    padding-inline: 77px;
  }
  .other_contents_wrap .item .left{

  }
  .other_contents_wrap .item .left .txt{
    font-size: 28px;
  }
  .other_contents_wrap .item .left .en{
    font-size: 18px;
  }

  /*新着*/
  .home_news_wrap .tt2{
    margin-bottom: 40px;
  }
}
@media (min-width:1024px){
  /*instagram*/
  .lg_en{

  }
  .insta_box{
    margin-top: -1.8rem;
  }

}
@media (min-width:1200px){
  /*「放課後留学とは？」*/
  .home_sec1_wrap{

  }
  .home_sec1_box1{
    width: 46.05%;
    order: 1;
    margin-top: 0;
  }
  .home_sec1_box1 .img.top{
    margin-left: -6rem;
  }
  .home_sec1_box1 .img.top img{

  }
  .home_sec1_box1 .img.btm{
    width: 60%;
  }
  .home_sec1_box1 .img.btm img{

  }
  .home_sec1_box2{
    width: 46.71%;
    padding-top: 42px;
    order: 2;
  }
  .sec_tt{

  }
  .sec_en{
    font-size: 30px;
  }
  .sec_tt_ja{
    font-size: 40px;
  }
  .sec_sub{
margin-top: 27px;
  }
  .sec_sub_txt{
    font-size: 24px;
  }
  .content_desc{
    margin-top: 52px;
  }
  .home_sec1_box2 .read_more{
    margin-top: 55px;
  }

  /*活動内容*/
  .tt2{

  }
  .tt2_ja{
    font-size: 60px;
  }
  .tt2_en{
    font-size: 30px;
  }
  .curriculum_items{

  }
  .curriculum_items .item{

  }
  .curriculum_items .item a{
    flex-direction: row;
    justify-content: space-between;
    padding: 30px 30px 64px;
  }
  .curriculum_items .item .box1{
    width: 31.88%;
  }
  .curriculum_items .item .img_outer{
    text-align: left; 
  }
  .curriculum_items .item .img{

  }
  .curriculum_items .item .box2{
    width: 62.31%;
padding-top: 48px;
    margin-top: 0;
  }
  .curriculum_tt{
    text-align: left;
    font-size: 30px;
  }
  .curriculum_items .item .box2 .flex {
    justify-content: flex-start;
  }
  .curriculum_items .content_desc{

  }
  .pg_home .section.sec2 .read_more{
    margin-top: 55px;
  }
  .home_sec2_bnr{

  }
  .home_sec2_bnr .item{

  }
  .home_sec2_bnr .item a{

  }
  .home_sec2_bnr .item a img{

  }

  /*その他サービス*/
  .home_other_wrap{
    margin-inline:-40px;
  }
  .home_other_item{
    width: 50%;
    padding-inline:40px;
  }
  .home_other_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_other_item a{

  }
  .home_other_item .img_before{

  }
  .home_other_item .box1{

  }
  .home_other_item .title{

  }
  .home_other_item .title:after{

  }
  .home_other_item .txt{
    font-size: 36px;
  }
  .home_other_item .content_desc{

  }

  /*イベント・スケジュール*/
  .home_sec1_wrap.home_event{

  }
  .home_sec1_wrap.home_event .home_sec1_box1{
    order: 2;
  }
  .home_sec1_wrap.home_event .home_sec1_box2{
    width: 47.71%;
    order: 1;
  }
  .home_sec1_wrap.home_event .home_sec1_box1{
    margin-right: -6rem;
  }
  .home_sec1_wrap.home_event .home_sec1_box1 .img.top{
    margin-left: 0;
  }
  .home_sec1_wrap.home_event .home_sec1_box1 .img.btm{
    margin-left: -6rem;
    margin-top: -18.5rem;
  }
  .home_sec1_wrap.home_event .home_sec1_box2 .sec_tt{
    margin-right: -48px;
  }
  .home_sec1_wrap.home_event .home_sec1_box2 .mv_bnr{
    margin-top: 70px;
  }
  .home_sec1_wrap.home_event .home_sec1_box2 .mv_bnr_item{
    max-width: 350px;
  }

  /*instagram*/
  .lg_en{

  }
  .insta_box{
    margin-top: -1.8rem;
  }

  /*その他コンテンツ*/
  .other_contents_wrap{
    margin-inline:-40px;
  }
  .other_contents_wrap .item{
    width: 50%;
    padding-inline:40px;
  }
  .other_contents_wrap .item:nth-child(n+2){
    margin-top: 0;
  }
  .other_contents_wrap .item a{

  }
  .other_contents_wrap .item .img:before{

  }
  .other_contents_wrap .item .img:after{

  }
  .other_contents_wrap .item .inner{

  }
  .other_contents_wrap .item .left{

  }
  .other_contents_wrap .item .left .txt{
    font-size: 36px;
  }
  .other_contents_wrap .item .left .en{

  }

  /*新着*/
  .news_list.home{

  }
  .news_list.home .item{
    width: 25%;
  }
  .news_list.home .item:nth-child(n+4){
    margin-top: 0;
  }
  .news_list.home .item:nth-child(n+5){
    margin-top: 30px;;
  }
  .home_news_wrap .tt2{
    margin-bottom: 54px;
  }

  /*フッターバナー*/
  .mv_bnr.ftr_bnr{
    margin-top: 95px;
  }
  .mv_bnr.ftr_bnr .mv_bnr_item{
    width: 31%;;
  }
  
  
}
@media (min-width:1470px){
  .sec_tt_ja{
    font-size: 50px;
  }
  .sec_sub_txt{
    font-size: 30px;
  }

  /*活動内容*/
  .curriculum_tt{
    font-size: 36px;
  }

  /*instagram*/
  .lg_en{

  }
  .insta_box{
    margin-top: -2.8rem;
  }
}
@media (min-width:1720px){
  .sec_tt_ja{
    font-size: 48px;
  }

  /*instagram*/
  .lg_en{

  }
  .insta_box{
    margin-top: -3.8rem;
  }

  .mv_bnr.ftr_bnr .mv_bnr_item{
    width: auto;
  }

}




/*******************************
*　about
********************************/

/* セクション設定 */
.pg_about{
  overflow: hidden;
}
.pg_about .section.sec1{
  position: relative;
  padding-bottom: 0;
}
.pg_about .section.sec2{
position: relative;
padding: 30px 0;
margin-top: 80px;
}
.pg_about .section.sec2:before{
  content: "";
  display: block;
  width: 95.83%;
  height:100%;
  background-image: url(/img/about/a_bg1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
}
.pg_about .section.sec3{
  
}
.pg_about .section.sec4{
  position: relative;
      padding-top: 41px;
      padding-bottom: 50px;
      margin-top: 50px;
}
.pg_about .section.sec4:before{
  content: "";
  display: block;
  width: 95.83%;
  height:100%;
  background-image: url(/img/about/a_bg2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
}
.pg_about .section.sec5{
    padding-top: 50px;
    padding-bottom: 40px;
  }
  .pg_about .section.sec6{
    position: relative;
    padding-bottom: 40px;
  }
  .pg_about .section.sec6:before{
    content: "";
  display: block;
  width: 95.83%;
  height:100%;
  background-image: url(/img/about/a_bg3.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
  }
  
  .section.add1{
    padding-bottom: 50px;
  }
@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_about .section.sec2:before{
    width: 100%;
  }
}
@media (min-width:768px){
  /* セクション設定 */
  .pg_about{

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{
padding: 70px 0;
margin-top: 30px;
  }
  .pg_about .section.sec4{
    padding-bottom: 100px;
    margin-top: 70px;
  }
  .pg_about .section.sec5{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_about .section.sec6{
    padding-bottom: 58px;
  }

  .section.add1{
    padding-bottom: 100px;
  }
}
@media (min-width:1024px){


}
@media (min-width:1200px){
  /* セクション設定 */
  .pg_about{

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{
padding: 143px 0;
margin-top: 30px;
  }
  .pg_about .section.sec3{
    
  }
  .pg_about .section.sec4{
    padding-bottom: 137px;
    margin-top: 100px;
  }
  .pg_about .section.sec5{
    padding-top: 162px;
    padding-bottom: 157px;
  }
  
.section.add1{
    padding-bottom: 160px;
  }
}
@media (min-width:1470px){
 .pg_about .section.sec2{
padding: 143px 0;
margin-top: -41px;
  }

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


}

/* メイン部分 */

/*見出し*/
.home_sec1_wrap.about{

}
.home_sec1_wrap.about .home_sec1_box1{

}
.home_sec1_wrap.about .home_sec1_box2{

}
.home_sec1_wrap.about .home_sec1_box1 .img.top{
  width: 72.85%;
}
.home_sec1_wrap.about .home_sec1_box1 .img.btm{
  width: 42.85%;
  margin-left: auto;
  margin-top: -11.5rem;
}
.sec_sub.lg .sec_sub_txt:nth-child(n+2){
  margin-top: 10px;
}

.lg_txt.var2{
  width: 100%;
  text-align: center;
  font-size: clamp(1.75rem, 0.225rem + 7.63vw, 9.375rem);
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: #68beef;
  position: absolute;
  bottom: -6rem;
  left: 50%;
  transform:translateX(-50%);
  z-index: 2;
}
.sec_sub.bg_wh .sec_sub_txt{
  background: #fff;
}

/*できた！がふえていく。*/
.row_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.row_items .box1{
  order: 2;
  width: 100%;
  margin-top: 30px;;
}
.row_items .box1 .img:before{
  padding-top: 70.4%;
}
.row_items .box2{
  order: 1;
   width: 100%;
}
.row_items .content_desc{
  
}

/*想い*/
.home_sec1_wrap.no2{
  
}
.home_sec1_wrap.no2 .home_sec1_box1{
  
}
.home_sec1_wrap.no2 .home_sec1_box2{
  
}
.home_sec1_wrap.no2 .home_sec1_box1 .img.top{
  width: 78.57%;
  margin-left: auto;
}
.home_sec1_wrap.no2 .home_sec1_box1 .img.btm{
  width: 48.85%;
  margin-left: 0;
margin-top: -15.5rem;
}
.home_sec1_wrap.no2{
  
}
.home_sec1_wrap.no2{
  
}
.home_sec1_wrap.no2{
  
}

/*メリット*/
.tt2.a_center{
  position: relative;
  z-index: 1;
}
.tt2.a_center .en{
  
}
.tt2.a_center .ja{
  width: 100%;
   font-size: 28px;
   font-weight: 700;
   letter-spacing: 0.05em;
   position: absolute;
top: 58%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.merit_items{
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.merit_items .item{
  width: 100%;
}
.merit_items .item:nth-child(n+2){
  margin-top: 30px;
}
.merit_items .item .inner{
  background: #fff;
  border-radius: 20px;
  border: 1px solid #f59999;
  position: relative;
  padding: 30px 16px;
}
.merit_items .item .num{
  width: 74px;
  aspect-ratio:74 / 84;
  position: absolute;
top: 28px;
    left: 28px;
}
.merit_items .item .img{
 text-align: center; 
}
.merit_items .item .box1{
  margin-top: 20px;
}
.merit_items .item .tt{
   font-size: 22px;
   font-weight: 700;
   letter-spacing: 0.05em;
   text-align: center;
}
.merit_items .item .content_desc{
  margin-top: 19px;
}

/*スライド*/
.about_slide{
  
}
.about_slide .item{
  width: 250px;
}
.about_slide .item .img:before{
  padding-top: 91.66%;
}
.about_slide .item img{
  border-radius: 50px;
}

/*バナー*/
.mv_bnr.about{
  margin-top: 0;
}

.add1_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 10px solid #fec02c;
  border-radius: 20px;
   box-shadow: 0px 0px 9px 1px rgba(24, 24, 24, 0.1);
   padding: 20px 16px;
}
.add1_item .box1{
  width: 100%;
}
.add1_item .box1 .sec_tt_ja{
  
}

.add1_item .box1 .sec_sub_txt{
   font-size: 18px;
}
.curriculum_items .item .box2 .sec_sub_txt{
  font-size: 16px;
}
.add1_item .box1 .content_desc{
  
}
.add1_item .box2{
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
.add1_item .box2 .img{
  
}

.add1_item.next{
  background: #f7f6ee;
  border: 1px solid #000000;
  margin-top: 30px;
}

/*場所*/
.home_sec1_wrap.basho{
  padding-top:0;
}
.home_sec1_wrap.basho .home_sec1_box1{
  
}
.home_sec1_wrap.basho .home_sec1_box2{
  position: relative;
  z-index: 1;
}

.in_box{
   border-top: 10px solid #fec02c;
  border-radius: 20px;
   box-shadow: 0px 0px 9px 1px rgba(24, 24, 24, 0.1);
   padding: 20px 16px;
   background: #fff;
   margin-top: 39px;
}
.in_box .title{
  display:flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
}
.in_box .title .curriculum_tt{
  
}
.in_box .title .read_more{
  
}
.in_box .title .read_more a{
  
}
.in_box .content_desc{
  margin-top: 24px;
}
.home_sec1_wrap.basho .home_sec1_box1 img{
  border-radius: 20px;
}

.home_sec1_wrap.basho .home_sec1_box1{
  text-align: center;
  margin-right: 0;
  order: 1;
}
.home_sec1_wrap.basho .home_sec1_box2{
  order: 2;
  margin-top: 30px;
}

.curriculum_items .item a .content_desc{
  width: 100%;
}
@media (max-width:767px){
  .home_sec1_wrap.about .home_sec1_box1,
  .home_sec1_wrap.no2 .home_sec1_box1{
    margin-top: 30px;
  }
  
  .merit_items .item .num{
    width: 60px;
    top: 10px;
    left: 10px;
  }
  
  .add1_item .box1 .sec_sub_txt{
        font-size: 16px;
        padding: 0 10px;
  }
}
@media (min-width:768px){
  /*見出し*/
  .home_sec1_wrap.about{

  }
  .home_sec1_wrap.about .home_sec1_box1{

  }
  .home_sec1_wrap.about .home_sec1_box2{

  }
  .sec_sub.lg .sec_sub_txt:nth-child(n+2) {
    margin-top: 20px;
  }

  .lg_txt.var2{
    bottom: -3rem;
  }
  
  /*できた！がふえていく。*/
.row_items{
  
}
.row_items .box1{
  margin-top: 40px;;
}
.row_items .box1 .img:before{
  
}
.row_items .box2{
  
}
.row_items .content_desc{
  
}

/*想い*/
.home_sec1_wrap.no2{
  
}
.home_sec1_wrap.no2 .home_sec1_box1{
  
}

.home_sec1_wrap.no2 .home_sec1_box2{
  
}
.home_sec1_wrap.no2{
  
}
.home_sec1_wrap.no2{
  
}
.home_sec1_wrap.no2{
  
}

/*メリット*/
.tt2.a_center{
  
}
.tt2.a_center .en{
  
}
.lg_txt{

}
.tt2.a_center .ja{
   font-size: 32px;
}

.merit_items{
  
}
.merit_items .item{
  
}
.merit_items .item:nth-child(n+2){
  margin-top: 50px;
}
.merit_items .item .inner{
          height: 100%;
  padding: 59px 47px 80px;
}
.merit_items .item .num{
  
}
.merit_items .item .img{
  
}
.merit_items .item .box1{
  
}
.merit_items .item .tt{
   font-size: 24px;
}
.merit_items .item .content_desc{
  
}

/*スライド*/
.about_slide{
  
}
.about_slide .item{
  width: 400px;
}
.about_slide .item img:before{
  padding-top: 91.66%;
}

.add1_item{
  
}
.add1_item .box1{
  
}
.add1_item .box1 .sec_tt_ja{
  
}
.curriculum_items .item .box2 .sec_sub_txt{
  font-size: 18px;
}
.add1_item .box1 .sec_sub_txt{
   font-size: 20px;
}
.add1_item .box1 .content_desc{
  
}
.add1_item .box2{
  margin-top: 40px;
}
.add1_item .box2 .img{
  
}

.add1_item .box1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.add1_item .box1 .left{
  width: 65.05%;
}
.add1_item .box1 .right{
  width: 24.5%;
}

.add1_item.next{
  margin-top: 40px;
}
.add1_item.next .box1{
  align-items: center;
}
.add1_item.next .box1 .sec_tt_ja {
  font-size: 20px;
}
.add1_item.next .box1 .sec_en{
  font-size: 18px;
  margin-top: 10px;
}
.add1_item.next .box1 .content_desc{
  letter-spacing: 0;
}
.add1_item.next .box1 .read_more{
  margin-top: 0;
}

/*場所*/
.home_sec1_wrap.basho{
  padding-top: 60px;
}
.home_sec1_wrap.basho .home_sec1_box1{
  
}
.home_sec1_wrap.basho .home_sec1_box2{
  
}

.in_box{
 
}
.in_box .title{
   align-items: center;
   padding-bottom: 23px;
}
.in_box .title .curriculum_tt{
  
}
.pg_home .section.sec2 .in_box .title .read_more{
  margin-top: 0;
}
.in_box .title .read_more a{
  
}
.in_box .content_desc{
  
}
}
@media (min-width:1024px){


}
@media (min-width:1200px){
  /*見出し*/
  .home_sec1_wrap.about{

  }
  .home_sec1_wrap.about .home_sec1_box1{
width: 45.73%;
    margin-right: 0;
    margin-left: 0;
   padding-top: 83px;
  }
  .home_sec1_wrap.about .home_sec1_box2{
    width: 46.05%;
  }
  .home_sec1_wrap.about .content_desc{
    margin-top: 67px;
  }
  
   .lg_txt.var2{
    bottom: -5rem;
  }
  
  /*できた！がふえていく。*/
.row_items{
  
}
.row_items .box1{
  width: 49.34%;
  order: 1;
  margin-top: 0;
}
.row_items .box1 .img:before{
  
}
.row_items .box2{
  width: 45.39%;
  order: 2;
}
.row_items .content_desc{
  
}
.row_items .sec_sub{
  margin-top: 0;
    padding-top: 20px;
}

/*想い*/
.home_sec1_wrap.no2 .home_sec1_box2 .sec_tt_ja{
  font-size: 48px;
}
.home_sec1_wrap.no2 .home_sec1_box2 .sec_en{
  margin-top: 14px;
}
.home_sec1_wrap.no2 .home_sec1_box2 .content_desc{
  margin-top: 39px;
}

.home_sec1_wrap.no2{
  
}
.home_sec1_wrap.no2 .home_sec1_box1{
  width: 46.05%;
  margin-right: 0;
  padding-top: 75px;
}
.home_sec1_wrap.no2 .home_sec1_box2{
  width: 44.73%;
}
.home_sec1_wrap.no2{
  
}
.home_sec1_wrap.no2{
  
}
.home_sec1_wrap.no2{
  
}

/*メリット*/
.pg_about .section.sec4 .tt2{
  margin-bottom: 61px;
}
.tt2.a_center{
  
}
.tt2.a_center .en{

}
.tt2.a_center .ja{
  font-size: 48px;
}

.merit_items{
  margin-inline:-5px;
}
.merit_items .item{
  width: 33.33%;
  padding-inline:5px;
}
.merit_items .item:nth-child(n+2){
  margin-top: 0;
}
.merit_items .item .inner{
  padding: 59px 47px 80px;
}
.merit_items .item .num{
  
}
.merit_items .item .img{
  
}
.merit_items .item .box1{
  margin-top: 30px;
}
.merit_items .item .tt{
  font-size: 22px;
}
.merit_items .item .content_desc{
  
}

/*スライド*/
.about_slide{
  
}
.about_slide .item{
  width: 600px;
}
.about_slide .item img:before{
  padding-top: 91.66%;
}

/*バナー*/
.mv_bnr.about{
  margin-top: -28px;
}

.add1_item{
padding: 23px 85px 60px;
}
.add1_item .box1{
  width: 51.61%;
}
.add1_item .box1 .sec_tt_ja{
  
}
.add1_item .box1 .sec_sub{
  margin-top: 27px;
}
.curriculum_items .item .box2 .sec_sub_txt{
  font-size: 20px;
}
.add1_item .box1 .sec_sub_txt{
  font-size: 24px;
}
.add1_item .box1 .content_desc{
  margin-top: 26px;
}
.add1_item .box2{
   width: 44.11%;
   padding-top: 20px;
   text-align: left;
   margin-top: 0;
}
.add1_item .box2 .img{
  
}

.add1_item.next{
        padding: 24px 16px 34px 20px;
}
.add1_item.next .box1{
  width: 66.91%;
  order: 2;
}
.add1_item.next .box1 .sec_tt_ja {
  font-size: 30px;
}
.add1_item.next .box2{
  width: 29.41%;
    order: 1;
}
.add1_item .box1 .left{
  width: 65.05%;
}

/*場所*/
.home_sec1_wrap.basho{
  padding-top: 82px;
}
.home_sec1_wrap.basho .home_sec1_box1{
  width: 39.47%;
  padding-top: 20px;
}
.home_sec1_wrap.basho .home_sec1_box2{
  width: 56.5%;
  padding-top: 0;
}

.in_box{
  padding: 38px 47px;
}
.in_box .title{
  
}
.in_box .title .curriculum_tt{
  
}
.in_box .title .read_more{
  
}
.in_box .title .read_more a{
  font-size: 18px;
}
.in_box .title .read_more a:after{
  width: 36px;
}
.in_box .content_desc{
  
}

.home_sec1_wrap.basho .home_sec1_box1{
  margin-right: 0;
  order: 2;
}
.home_sec1_wrap.basho .home_sec1_box2{
  order: 1;
    margin-top: 0;
}
}
@media (min-width:1470px){
  .sec_sub.lg .sec_sub_txt{
    font-size: 32px;
  }

  .lg_txt.var2{
    bottom: -2rem;
  }
  
  
  .merit_items .item .tt{
  font-size: 30px;
}
.add1_item .box1 .left{
  width: 75.05%;
}
}
@media (min-width:1720px){
  .sec_sub.lg .sec_sub_txt{
    font-size: 40px;
  }
  
  .add1_item.next{
        padding: 24px 69px 34px 85px;
}

}

/*******************************
*　1日の流れ
********************************/

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

}
.pg_trial .section.sec1{
  position: relative;
  padding: 37px 0;
}
.pg_trial .section.sec1:before{
  content: "";
  display: block;
  width: 95.83%;
  height: 100%;
  background: #f7f6ee;
  background-image: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.05) 0px, rgba(0, 0, 0, 0.05) 2px, transparent 2px, transparent 8px);
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.pg_trial .section.sec2{
padding-top: 50px;
padding-bottom: 40px;
}
.pg_trial .section.sec3{
  position: relative;
  padding-bottom: 40px;
}
.pg_trial .section.sec3:before{
  content: "";
  display: block;
  width: 95.83%;
  height: 100%;
  background: #f7f6ee;
  background-image: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.05) 0px, rgba(0, 0, 0, 0.05) 2px, transparent 2px, transparent 8px);
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width:374px){

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

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

}
@media (min-width:768px){
/* セクション設定 */
.pg_trial{

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

}
@media (min-width:1024px){
/* セクション設定 */
.pg_trial{

}
.pg_trial .section.sec1{
padding-bottom: 135px;
}
.pg_trial .section.sec2{
padding-top: 148px;
padding-bottom: 160px;
}

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


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


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


}

/* メイン部分 */
.trial1_wrap{
  position: relative;
  z-index: 1;
}
.flow_items{
  
}
.flow_items .item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flow_items .item:nth-child(n+2){
  margin-top: 50px;
}
.flow_items .box1{
  width: 100%;
}
.flow_items .img:before{
  padding-top: 75%;
}
.flow_items .img img{
  border-radius: 50px;
}
.flow_items .item .content_desc{
  margin-top: 20px;
}
.flow_items .box2{
  width: 100%;
  background: #fff;
  border-radius: 50px;
  padding: 30px 16px;
}
.flow_tt{

}
.flow_text{
    display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.flow_text:before{
  content: "";
  display: block;
  width: 10px;
  aspect-ratio:1;
  background: #68beef;
  border-radius: 50%;
  margin-right: 10px;
}
.flow_items .box2 .tbl{
  font-size: 16px;
  margin-top: 24px;
}
.flow_items .box2 .tbl table{
  width: 100%;
}
.flow_items th,
.flow_items td{
  font-weight: 700;
  padding: 15px 16px;
}
.flow_items th{
  background: #f7f6ee;
}
.flow_items td{
  text-align: center;
  background: #fff;
  line-height: 1.875em;
}
.flow_items td.mid{
  text-align: left;
  font-weight: 500;
}
.hosok{
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14em;
  margin-top: 30px;
}
.hosok div{
  text-indent: -1em;
  padding-left: 1em;
}

.flow_text.no_dot{
  margin-top: 16px;
}
.flow_text.no_dot:before{
 display: none 
}

/*イベント*/
.tt2.nocover{
  
}
.tt2.nocover .ja{
  position: inherit;
  top: auto;
  left: auto;
  transform: none;
}
.tt2.nocover .lg_en{
  color: #68beef;
}

  /*イベント*/
.event_items{
  
}
.event_items .item{
   border-radius: 20px;
    box-shadow: 0px 0px 12.75px 2.25px rgba(0, 0, 0, 0.05);
}
.event_items .item:nth-child(n+2){
margin-top: 21px;
}
.event_items .val_tt{
  font-size: 20px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
  border-radius: 20px 20px 0 0;
  padding: 16px 26px;
}
.event_items .item:nth-child(1) .val_tt{
  background: #f16ea7;
}
.event_items .item:nth-child(2) .val_tt{
  background: #f068e8;
}
.event_items .item:nth-child(3) .val_tt{
  background: #bf48d4;
}
.event_items .item:nth-child(4) .val_tt{
  background: #7d53f0;
}
.event_items .item:nth-child(5) .val_tt{
  background: #5595f9;
}
.event_items .item:nth-child(6) .val_tt{
  background: #54cafc;
}
.event_items .item:nth-child(7) .val_tt{
  background: #58ddbe;
}
.event_items .item:nth-child(8) .val_tt{
  background: #70dc79;
}
.event_items .item:nth-child(9) .val_tt{
  background: #7fc926;
}
.event_items .item:nth-child(10) .val_tt{
  background: #fac330;
}
.event_items .item:nth-child(11) .val_tt{
  background: #f58a23;
}
.event_items .item:nth-child(12) .val_tt{
  background: #f75054;
}
.event_items .inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
   border-radius: 0 0 20px 20px;
   padding: 30px 16px;;
}
.event_items .inner.wide{
  display: block;
}
.event_items .content_desc{
  width: 100%;
  margin-top: 0;
  font-weight: 500;
  line-height: 2.25em;
}
.event_items .right{
    width: 100%;
}
@media (max-width:767px){
  .flow_items .box2 .tbl table{
    min-width: 1000px;
  }
  .flow_items th{
    width: 160px;
  }
  .flow_items .box2{
    margin-top: 30px;
  }
  
  .event_items .inner.wide .img{
    min-width: 600px;
  }
  .event_items .right{
    text-align: center;
    margin-top: 30px;
  }
}
@media (min-width:768px){
/* メイン部分 */
.trial1_wrap{
  
}
.trial1_wrap .tt2{
  margin-bottom: 40px;
}
.flow_items{
  
}
.flow_items .item{
  align-items: flex-start;
}
.flow_items .item:nth-child(n+2){
  margin-top: 60px;
}
.flow_items .box1{
  
}
.flow_items .img:before{
  
}
.flow_items .item .content_desc{
  
}
.flow_items .box2{
  padding: 51px 24px;
  margin-top: 40px;
}
.flow_tt{
  
}
.flow_text{
  font-size: 22px;
}
.flow_items .box2 .tbl{

}
.flow_items th,
.flow_items td{
 padding: 20px 0;
  border-top: 1px solid #000000;
}
.flow_items th{
    font-size: 18px;
      width: 160px;
}
.flow_items td{
  text-align: center;
    font-size: 16px;
     width: 230px;
}
.flow_items td.mid{
  text-align: left;
    width: calc(100% - 160px - 230px);
}

.flow_items tr:last-child th,
.flow_items tr:last-child td{
   border-bottom: 1px solid #000000;
}
.flow_text.no_dot{
  margin-top: 24px;
}

.flow_items .item:nth-child(even) .content_desc{
  margin-top: 10px;
}
.flow_items .box2 .tbl table{
    max-width: 1000px;
    min-width: inherit;
  }
  
  /*イベント*/
  .pg_trial .section.sec2 .tt2{
    margin-bottom:65px;
  }
  .event_items{
  
}
.event_items .item{
  
}
.event_items .val_tt{
  font-size: 28px;
}
.event_items .inner{
padding: 19px 30px;
}
.event_items .content_desc{
  width: 79.04%;
}
.event_items .right{
  width: 19.04%;
  padding-top: 16px;
}
.event_items .inner.wide .right{
  width: 100%;
}
}
@media (min-width:1024px){


}
@media (min-width:1200px){
/* メイン部分 */
.trial1_wrap{
  
}
.flow_items{
  
}
.flow_items .item{
  
}
.flow_items .item:nth-child(n+2){
  margin-top: 100px;
}
.flow_items .item:nth-child(odd) .box1{
  order: 1;
}
.flow_items .item:nth-child(odd) .box2{
  order: 2;
}
.flow_items .item:nth-child(even) .box1{
   order: 2;
}
.flow_items .item:nth-child(even) .box2{
  order: 1;
}
.flow_items .box1{
  width: 31.57%;
}
.flow_items .img:before{
  
}
.flow_items .item .content_desc{
  
}
.flow_items .box2{
   width: 65.78%;
     margin-top: 0;
      padding: 51px 60px;
}
.flow_tt{
  
}
.flow_text{
  font-size: 24px;
}
.flow_items .box2 .tbl{
  
}
.flow_items th,
.flow_items td{
  
}
.flow_items th{
  width: 160px;
}
.flow_items td{
  width: 230px;
}
.flow_items td.mid{
  width: calc(100% - 160px - 230px);
}

  /*イベント*/
  .event_items{
  
}
.event_items .item{
  
}
.event_items .val_tt{
  font-size: 36px;
}
.event_items .inner{
  
}
.event_items .content_desc{
  
}
.event_items .right{
  
}
}
@media (min-width:1470px){

.flow_items th{
  width: 180px;
}
.flow_items td{
  width: 270px;
}
.flow_items td.mid{
  width: calc(100% - 180px - 270px);
}
}
@media (min-width:1720px){


}

/*******************************
*　防犯　スライド対応
********************************/



.pg_security .gallery_thumb{
  height: auto;
  margin-top: 16px;
}
.pg_security .gallery_thumb .img:before{
  padding-top: 75%;
}
.pg_security .shuttle_service_inner{
  position: relative;
  z-index: 0;
}
.pg_security .security_item_boxs{
  position: relative;
  z-index: 5;
}
.swiper-button-next:after, .swiper-button-prev:after{
  display: none;
}
.swiper-button-next,
.swiper-button-prev{
  width: 40px;
  aspect-ratio:40 / 50;
  background: #f59999;
  color: #fff;
}
.swiper-button-next{
  right: 0;
  border-radius: 10px 0 0 10px;
}
.swiper-button-next:before{
    content: "\f061";

  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}
.swiper-button-prev{
  left: 0;
  border-radius: 0 10px 10px 0;
}

.swiper-button-prev:before{
  content: "\f060";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}

.pg_security .security_item_boxs .gallery_thumb .img.img_fit,
.pg_security .security_item_boxs .gallery_thumb .img.img_fit img{
  border-radius:20px;
} 
@media (max-width:374px){

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

}
@media (max-width:767px){
 .pg_security .security_item_boxs .gallery_thumb .img.img_fit,
.pg_security .security_item_boxs .gallery_thumb .img.img_fit img{
  border-radius:10px;
} 
}
@media (min-width:768px){


  .pg_security .gallery_thumb{
  height: auto;
  margin-top: 16px;
}
}
@media (min-width:1024px){


}
@media (min-width:1200px){
 .pg_security .gallery_thumb{
  height: auto;
  margin-top: 24px;
}

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

}
.pg_program .section.sec1{
padding-bottom: 60px;
}
.pg_program .section.sec1:before{
  display: none;
}
.pg_program .section.sec2{
position: relative;
}
.pg_program .section.sec2:before{
   content: "";
  display: block;
  width: 95.83%;
  height: 100%;
  background: #f7f6ee;
  background-image: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.05) 0px, rgba(0, 0, 0, 0.05) 2px, transparent 2px, transparent 8px);
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width:374px){

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

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

}
@media (min-width:768px){
/* セクション設定 */
.pg_program{

}
.pg_program .section.sec1{
padding-bottom: 60px;
}
.pg_program .section.sec2{
padding-top: 112px;
}

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


}
@media (min-width:1200px){
/* セクション設定 */
.pg_program{

}
.pg_program .section.sec1{
padding-bottom: 60px;
}
.pg_program .section.sec2{
padding-top: 112px;
padding-bottom: 137px;
}

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


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


}

/* メイン部分 */
/*丸の装飾*/
.trial_pos1{
    width:61.66%;
  aspect-ratio:222 / 217;
  background-image: url(/img/trial/trial_pos1.png);
    top: -5rem;
  right: 0;
}
.trial_pos2{
    width:30.26%;
  aspect-ratio:1;
  background-image: url(/img/trial/trial_pos2.png);
bottom: -16rem;
    left: -12rem;
}
.trial_pos3{
    width:23.48%;
  aspect-ratio:357 / 348;
  background-image: url(/img/trial/trial_pos3.png);
bottom: -8rem;
    right: 4rem;
}

.trial_hdr{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.trial_hdr .box1{
  order: 2;
   width: 50%;
   position: relative;
}
.trial_hdr .img{
  
}
.trial_hdr .box2{
  order: 1;
  width: 100%;
  margin-bottom: 30px;
}
.trial_hdr_txt{
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.trial_hdr .box2 .content_desc{
  
}
.trial_hdr .box3{
  width: 50%;
   order: 3;
}
.trial_hdr .box3 .img.top{
width: 60.6%;
}
.trial_hdr .box3 .img.btm{
  width: 78.78%;
  margin-left: auto;
  margin-top: -6rem;
}

/*コース*/
 .pg_program .section.sec2 .lg_txt.var2{
    top: -5.5rem;
    bottom: auto;
    color: #fec02c;
  }
.course_wrap{
  margin-top: 40px;
}

.sec_tt.center{
  position: relative;
  z-index: 2;
}
.course_box1{
  background: #fff;
  border-radius: 50px;
  position: relative;
  z-index: 2;
   padding: 30px 16px;
}
.course_box1_item{
  
}
.course_box1_item:nth-child(n+2){
  margin-top: 40px;
}
.course_box1_item table{
  width: 100%;
}
.flow_tt{
  
}
.course_box1_item .tbl.flow_items{
  margin-top: 20px;
}
.course_box1_item .flow_items th,
.course_box1_item .flow_items td{
  
}
.course_box1_item .flow_items th{
  
}
.course_box1_item .flow_items td{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  
}
.course_box1_item .flow_items td p{
  letter-spacing: 0.05em;
}
.course_box1_item .flow_items td .price{
  font-size: 16px;
  text-align: right;
  margin-left: auto;
}
.course_box1_item .flow_items td .price span{
  font-size: 14px;
}
.hosok_box{
  
}
.hosok_box .content_desc{
  
}
.hosok_box .content_block{
  
}
.hosok_box .content_block:nth-child(n+2){
  margin-top: 30px;
}
.course_btn_box{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content:center;
  margin-top: 31px;
}
.course_btn_box .link_1{
  width: 100%;
  display: block; 
    max-width: 380px;
    border: 1px solid #68beef;
    background: #68beef;
    border-radius: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
padding: 14px 0;
    transition: all .2s;
}
.course_btn_box .link_1 p{
      display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
}
.course_btn_box .link_1 p:before{
content: "\f0e0";
    display: block;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    font-size: 21px;
    transition: all .2s;
    margin-right: 7px;
    margin-right: 15px;
}
.course_btn_box .link_1:hover{
  background: #fff;
  color: #68beef;
}
.course_btn_right{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
   margin-top: 30px;;
}
.course_btn_right .ftr_contact_box2_item_tel1{
  width: 100%;
  white-space: nowrap;
}
.course_btn_right .ftr_contact_box2_item_tel2{
  width: 100%;  
}

.course_box1.bg_gr{
  background: #f7f6ee;
  border: 1px solid #000000;
}

.course_box1.bg_gr .course_box1_item .flow_items th{
  background: #fff;
}
.course_box1.bg_gr .course_box1_item .flow_items td{
  background: #f7f6ee;
}
@media (max-width:767px){
.course_box1_item .flow_items th,
.course_box1_item .flow_items td{
  display: block;
  width: 100%;
 
}
.course_box1_item .flow_items th{
  
}
.course_box1_item .flow_items td{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: left;
   border-bottom: 1px solid #000;
}
.course_btn_right .ftr_contact_box2_item_tel2{
  text-align: center;
}
}
@media (min-width:768px){
/* メイン部分 */
.trial_hdr{
  
}
.trial_hdr .box1{

}
.trial_hdr .img{
  
}
.trial_hdr .box2{
    margin-bottom: 120px;
}
.trial_hdr_txt{
    font-size: 30px;
}
.trial_hdr .box2 .content_desc{
  
}
.trial_hdr .box3{

}
.trial_hdr .box3 .img.top{
  
}
.trial_hdr .box3 .img.btm{
  
}

/*コース*/
 .pg_program .section.sec2 .lg_txt.var2{
    top: -2.5rem;
  }
.course_wrap{
  margin-top: 57px;
}

.course_box1{
  padding: 50px 20px;
}
.course_box1_item{
  
}
.course_box1_item:nth-child(n+2){
  margin-top: 51px;
}
.flow_tt{
  
}
.course_box1_item .flow_items th,
.course_box1_item .flow_items td{
          padding: 14px 0;
}
.course_box1_item .flow_items tr:last-child th,
.course_box1_item .flow_items tr:last-child td{
  border-bottom: 0;
}
.course_box1_item .flow_items tr:last-child{
  border-bottom: 1px solid #000;
}
.course_box1_item .flow_items th{
  width: 200px;
}
.course_box1_item .flow_items td{
  font-size: 18px;
  width: auto;
  padding-left: 25px;
          padding-right: 7px;
}
.course_box1_item .flow_items td .price{
  font-size: 18px;
}
.hosok_box{
  
}
.hosok_box .content_desc{
  margin-top: 48px;
}
.hosok_box .content_block{
  
}
.hosok_box .content_block:nth-child(n+2){
  margin-top: 40px;
}
.course_btn_box{
  
}
.course_btn_box .link_1{
  
}
.course_btn_right{
   width: 70%;;
  align-items: center;
  padding-right: 0;
}
.course_btn_right .ftr_contact_box2_item_tel1{
  width: auto;
}
.course_btn_right .ftr_contact_box2_item_tel2{
    width: auto;
    margin-top: 0;
}

.pg_program .section.sec2 .course_wrap .sec_tt_ja{
  font-size: 24px;
}
.pg_program .section.sec2 .course_wrap .sec_en{
  font-size: 18px;
  margin-top: 10px;
}

.course_box1.bg_gr .content_desc.hdr{
  margin-top: 25px;
}
.course_box1.bg_gr .course_box1_item:nth-child(n+2){
  margin-top: 30px;
}

.course_box1.bg_gr .hosok_box .content_desc{
  margin-top: 30px;
}
}
@media (min-width:1024px){
  /*コース*/
  .pg_program .section.sec2 .lg_txt.var2{
    top: -3.5rem;
  }
  .course_btn_box{
    justify-content: space-between;
  }
.course_btn_right{
   width: 52.5%;
  align-items: center;
  padding-right: 30px;
  margin-top: 0;
}
}
@media (min-width:1200px){
/* メイン部分 */
.trial_hdr{
  
}
.trial_hdr .box1{
  width: 23.68%;
  order: 1;
}
.trial_hdr .img{
  
}
.trial_hdr .box2{
  width: 48.02%;
    order: 2;
    margin-bottom: 0;
        padding-top: 32px;
    margin-left: -22px;
}
.trial_hdr_txt{
  font-size: 30px;
}
.trial_hdr .box2 .content_desc{
  text-align: center;
}
.trial_hdr .box3{
  width: 21.57%;
    order: 3;
}
.trial_hdr .box3 .img.top{

}
  .trial_hdr .box3 .img.btm{
    margin-top: -3rem;
  }

  /*コース*/
  .pg_program .section.sec2 .lg_txt.var2{
    top: -3.5rem;
  }
  .pg_program .section.sec2 .sec_tt_ja{
    font-size: 48px;
  }
.course_wrap{
  padding-inline:55px;
}
.course_box1{
padding: 50px 63px 62px 56px;
}

.course_box1_item{
  
}
.flow_tt{
  
}
.course_box1_item .flow_items th,
.course_box1_item .flow_items td{
  
}
.course_box1_item .flow_items th{
  
}
.course_box1_item .flow_items td{
  
}
.hosok_box{
  
}
.hosok_box .content_desc{
  
}
.hosok_box .content_block{
  
}
.course_btn_box{
  
}
.course_btn_box .link_1{
  
}
.course_btn_right{
  width: 52.5%;
  align-items: center;
  padding-right: 30px;
}
.course_btn_right .ftr_contact_box2_item_tel1{
    width: auto;
}
.course_btn_right .ftr_contact_box2_item_tel2{
  width: auto;
  margin-top: 0;
}

.pg_program .section.sec2 .course_wrap .sec_tt_ja{
  font-size: 30px;
  margin-top: 0;
}
.pg_program .section.sec2 .course_wrap .sec_en{
  
}
}
@media (min-width:1470px){
  .trial_hdr .box3 .img.btm{
    margin-top: -6rem;
  }
 .pg_program .section.sec2 .lg_txt.var2{
    top: -5.5rem;
  }
}
@media (min-width:1720px){
.trial_hdr_txt{
  font-size: 40px;
}

}




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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #808080;
  padding: 10px 10px;
}
.company_tbl .table_rows_th{
  background: #e6e6e6;
  font-weight: 500;
}
.company_tbl .table_rows_td{
  background: #FFF;
}

/* マップ */
.company_map{

}
* + .company_map{
  margin-top: 50px;
}
.company_map iframe{
  border: 0;
  width: 100%;
  height: 250px;
}

/* ギャラリー */
.company_gallery_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
* + .company_gallery_items{
  margin-top: 30px;
}
.company_gallery_item{
  width: 50%;
  padding: 0 5px;
}
.company_gallery_item:nth-child(n+3){
  margin-top: 10px;
}
.company_gallery_item_img{

}
.company_gallery_item_img.img_fit:before{
  padding-top: 71.400%;
}

@media (max-width:767px){

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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
  }
  .company_tbl .table_rows_td{
  }

  /* マップ */
  .company_map{

  }
  * + .company_map{
    margin-top: 50px;
  }
  .company_map iframe{
    height: 400px;
  }


  /* ギャラリー */
  .company_gallery_items{
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .company_gallery_items{
    margin-top: 40px;
  }
  .company_gallery_item{
    width: 33.333%;
    padding: 0 10px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 20px;
  }

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


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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 300px;
  }
  .company_tbl .table_rows_td{
  }

  /* ギャラリー */
  .company_gallery_items{
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .company_gallery_items{
    margin-top: 60px;
  }
  .company_gallery_item{
    width: 33.333%;
    padding: 0 15px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 30px;
  }

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


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


}


/* カテゴリNav */
.cmn_cat_nav{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.cmn_cat_nav li{
  width: 50%;
  padding: 0 5px;
  margin: 5px 0;
  font-size: 12px;
  line-height: 1.4285;
}
.cmn_cat_nav li 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 li 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 li.on a,
.cmn_cat_nav li a:hover{
  background: var(--main-color);
  color: #FFF;
}
.cmn_cat_nav li a:hover:after{
  margin-right: -2px;
}

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

@media (max-width:767px){

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

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

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

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

  }

  .cmn_cat_nav li a:after{
    font-size: 14px;
    right: 10px;
  }
  .cmn_cat_nav li 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 li{
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav li a{

  }

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

}


/*******************************
*　記事一覧
********************************/

/* 一覧（サムネあり） */
.news_list_thumb{

}
* + .news_list_thumb{
  margin-top: 50px;
}
.posts_category_sp + .news_list_thumb{
  margin-top: 0;
}
.news_list_thumb .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.news_list_thumb .webgene-item{
  width: 50%;
  padding: 0 5px;
}
.news_list_thumb .webgene-item:nth-child(n+3){
  margin-top: 15px;
}
.news_list_thumb .webgene-item{

}
.news_list_thumb .webgene-item .inner{
  display: block;
  position: relative;
  z-index: 1;
  color: #000;
  background: #e6e6e6;
}
.news_list_thumb .webgene-item .box1{

}
.news_list_thumb .webgene-item .box2{
  padding: 10px 10px;
}
.news_list_thumb .webgene-item .img{
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.news_list_thumb .webgene-item .img.img_fit:before{
  padding-top: 75%;
  padding-top: 67.92%;
}
.news_list_thumb .webgene-item .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
}
.news_list_thumb .webgene-item .meta .category{
  font-size: 13px;
  font-weight: 500;
  background: #2850a1;
  color: #FFF;
  padding: 3px 8px;
  margin: 5px 0;
  margin-right: 10px;
}
.news_list_thumb .webgene-item .meta .date{
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-en);
  margin: 5px 0;
  /*margin-right: 10px;*/
}
.news_list_thumb .webgene-item .title{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}


@media (max-width:767px){

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

  /* 一覧（サムネあり） */
  .news_list_thumb{

  }
  * + .news_list_thumb{
    margin-top: 50px;
  }
  .news_list_thumb .webgene-blog{
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .news_list_thumb .webgene-item{
    width: 50%;
    padding: 0 7.5px;
  }
  .news_list_thumb .webgene-item:nth-child(n+3){
    margin-top: 15px;
  }
  .news_list_thumb .webgene-item{

  }
  .news_list_thumb .webgene-item .inner{
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{
    padding: 20px 10px;
  }
  .news_list_thumb .webgene-item .meta{
    margin-bottom: 5px;
  }
  .news_list_thumb .webgene-item .meta .category{
    font-size: 13px;
    /*margin-right: 10px;*/
  }
  .news_list_thumb .webgene-item .meta .date{
    font-size: 15px;
    /*margin-right: 10px;*/
  }
  .news_list_thumb .webgene-item .title{

  }

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

  /* 一覧（サムネあり） */


  /* 3カラム */
  .news_list_thumb.col3 .webgene-item{
    width: 33.333%;
  }
  .news_list_thumb.col3 .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list_thumb.col3 .webgene-item:nth-child(n+4){
    margin-top: 15px;
  }

  /* 4カラム */
  .news_list_thumb.col4 .webgene-item{
    width: 25%;
  }
  .news_list_thumb.col4 .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list_thumb.col4 .webgene-item:nth-child(n+5){
    margin-top: 15px;
  }

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

  /* 一覧（サムネあり） */
  .news_list_thumb{

  }
  * + .news_list_thumb{
    margin-top: 50px;
  }
  .news_list_thumb .webgene-blog{
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .news_list_thumb .webgene-item{
    padding: 0 7.5px;
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{
    padding: 20px 25px;
  }

  .news_list_thumb .webgene-item .title{
    font-size: 16px;
    line-height: 1.875;
  }



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


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


}


/*******************************
*　記事一覧(2カラム)
********************************/
.pg_news{
  padding-top: 30px;
}
.posts_layout{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}
.posts_layout_box1{
  width: 100%;
}
.posts_layout_box2{
  width: 100%;
  margin-top: 50px;
}

.select_wrap{
  position: relative;
  z-index: 1;
}
.select_wrap:after{
  content: "\f078";
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.select_wrap select{
  width: 100%;
  padding: 10px 10px;
  /*height: 40px;*/
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.posts_category_sp{
  margin-bottom: 30px;
}

/* リスト */
.posts_list{

}
.posts_list .webgene-item{
  display: flex;
  align-items: center;
  border-bottom: 1px dotted;
  padding-bottom: 10px;
}
.posts_list .webgene-item + .webgene-item{
  margin-top: 10px;
}
.posts_list .webgene-item .date{
  width: 95px;
  letter-spacing: 0.1em;
}
.posts_list .webgene-item .category{
  width: auto;
  font-size: 0.75em;
}
.posts_list .webgene-item .category span{
  display: block;
  background: #0069ba;
  color: #FFF;
  padding: 3px 5px;
  text-align: center;
}
.posts_list .webgene-item .title{
  width: 100%;
  letter-spacing: 0.075em;
}
.posts_list .webgene-item .title a{

}

.news_list{
  margin: 0 -5px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.news_list .item {
  width: 50%;
  padding: 0 5px;
}
.news_list .item:nth-child(n+3){
  margin-top: 20px;
  ;
}
.news_list .item .img_fit:before{
  padding-top: 70.58%;
}
.news_list .item .img_fit,
.news_list .item .img_fit img{
  border-radius: 20px;
}
.img_fit{
  position: relative;
}
.img_fit:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.news_list .item .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 26px;
}
.news_list .item .category{
  font-size: 15px;
  font-weight: 500;
  font-family: "M PLUS 1p", sans-serif;
  letter-spacing: 0.05em;
  background: #7fd0f2;
  color: #fff;
  width: 120px;
  text-align: center;
  border-radius: 5px;
}
.news_list .item .date{
  font-size: 15px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  margin-right: 40px;
}
.news_list .item .title{
  font-size: 16px;
  font-weight: 700;
  font-family: "M PLUS 1p", sans-serif;
  line-height: 2.25em;
  margin-top: 16px;
}



/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background: #7fd0f2;
  color: #FFF;
  padding: 12px 10px;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left: 8px;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 18px;
}
.news_side_wrap a{
  display: block;
  position: relative;
  padding-left: 30px;
  line-height: 1.25;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.025em;
}
.news_side_wrap a:before{
  content: "■";
  position: absolute;
  left: 0;
}
.news_side_wrap li + li{
  margin-top: 10px;
}
.news_side_wrap + .news_side_wrap{
  margin-top: 35px;
}
/*.news_side_wrap .dates li:before{
  content: "■";
    position: absolute;
    left: 0;
    color: #000;
}*/

/* 詳細 */
.posts_detail{
  border: 1px solid #d3d3d3;
  border-top: 15px solid #0069ba;
  padding: 15px 10px;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  margin-bottom: 2px;
}
.posts_detail .meta .category span{
  display: inline-block;
  background: #0069ba;
  border-radius: 5px;
  color: #FFF;
  min-width: 150px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 2px 5px;
  line-height: 1.2;
}
.posts_detail .meta .date{

}
.posts_detail .meta .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.065em;

}
.posts_detail .post_content{
  line-height: 1.875;
  letter-spacing: 0.065em;
  text-align: justify;
  word-break: break-all;
}
.posts_detail .thumb{
  margin-bottom: 10px;
}

.post_items{
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: 30px;
}
.post_items .single_item{

}
.post_items .single_item .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.post_items .single_item .date{
  font-size: 15px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  margin-right: 40px;
}
.post_items .single_item .category{
  font-size: 15px;
  font-weight: 500;
  font-family: "M PLUS 1p", sans-serif;
  letter-spacing: 0.05em;
  background: #7fd0f2;
  color: #fff;
  width: 120px;
  text-align: center;
  border-radius: 5px;
}
.post_items .single_item .title{
  font-size: 16px;
  font-weight: 700;
  font-family: "M PLUS 1p", sans-serif;
  line-height: 2.25em;
  border-bottom: 1px solid #bfbfbf;
  margin-top: 10px;
  padding-bottom: 7px;
}
.post_items .single_item .post_content{
  font-size: 14px;
  font-weight: 500;
  line-height: 2.57em;
  padding-top: 33px;
}
.post_items .single_item .post_content p{
  letter-spacing: 0.05em;
}


.posts_back_list{

}
.posts_back_list a{
  display: block;
  width: 255px;
  max-width: 100%;
  margin: 30px auto 0;
  background: #f3f2f2;
  padding: 4px;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
.posts_back_list a p{
  border: 2px dashed #0069b6;
  border-radius: 10px;
  padding: 10px 6px;
}
.posts_back_list a p:after{
  content: "\f105";
  font-family: "FontAwesome";
  margin-left: 18px;
}

.pg_news .pagination{
  margin-top: 42px;
}
.page-archive{

}
.page-archive a{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-archive a span{
  border-bottom: 1px solid #000;
  padding-bottom: 8px;
}
.page-archive a:after{
  content: "";
  display: block;
  width: 60px;
  aspect-ratio:1;
  background-image: url(/img/arr.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 20px;
  position: relative;
  right: 0;
  transition: all .2s;
}
.page-archive a:hover:after{
  right: -5px;
  ;
}

/* PDFリンク */
.post_pdf{
  text-align: left;
}
.post_pdf a{
  display: inline-block;
  margin-top: 30px;
  border-bottom: 1px solid;
  transition: 0.2s all;
}
.post_pdf a[href=""]{
  display: none;
}
.post_pdf a:hover{
  border-bottom: 0;
}
.post_pdf a:before{
  /*
  * f054 > (大)
  * f105 > (小)
  */
  content: "\f105";
  font-family: "FontAwesome";
  margin-right: 5px;
}


/* 動画 */
.post_video{

}
.post_video .responsive_video{
  margin-top: 15px;
}
.post_video .responsive_video:empty{
  display: none;
}

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

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

}
@media (max-width:767px){
  .posts_list .webgene-item{
    flex-wrap: wrap;
  }
  .posts_list .webgene-item .title{
    margin-top: 5px;
  }
  .posts_list .webgene-item .category{
    max-width: calc(100% - 95px);
    line-height: 1.2;
  }

  .news_list .item .meta{
    margin-top: 12px;
  }
  .news_list .item .category{
    margin-top: 5px;
  }
}
@media (min-width:768px){

  .pg_news{
    padding-top: 50px;
  }
  .posts_layout_box1{
    width: 74.32%;
  }
  .posts_layout_box2{
    width: 22.97%;
    margin-top: 0;
  }

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-item{
    padding-bottom: 20px;
  }
  .posts_list .webgene-item + .webgene-item{
    margin-top: 20px;
  }
  .posts_list .webgene-item .date{
    width: 90px;
    font-size: 14px;
    letter-spacing: 0.075em;
  }
  .posts_list .webgene-item .category{
    width: 160px;
  }
  .posts_list .webgene-item .category span{
  }
  .posts_list .webgene-item .title{
    width: calc(100% - 100px - 150px - 15px);
    margin-left: 15px;
  }
  .posts_list .webgene-item .title a{

  }

  .posts_side_wrap + .posts_side_wrap{
    margin-top: 55px;
  }

  .news_list{
    margin: 0 -10px;
  }
  .news_list .item {
    width: 50%;
    padding: 0 10px;
  }
  .news_list .item:nth-child(n+3){
    margin-top: 30px;
    ;
  }
  .news_list .item .meta{

  }
  .news_list .item .category{

  }
  .news_list .item .date{
    margin-right: 12px;
  }


  /* 詳細 */
  .posts_detail{
    padding: 20px 30px;
  }
  .posts_detail .webgene-item{

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px 5px;
    margin-bottom: 25px;
  }
  .posts_detail .meta .category{
    width: 100%;
  }
  .posts_detail .meta .category span{
    font-size: 13px;
    padding: 2px 5px;
  }
  .posts_detail .meta .date{
    width: 105px;
  }
  .posts_detail .meta .title{
    width: calc(100% - 105px);
    font-size: 20px;
  }
  .posts_detail .post_content{
    padding: 0 10px;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }

  .post_items{
    border-bottom: 1px solid #bfbfbf;

  }
  .post_items .single_item{

  }
  .post_items .single_item .meta{

  }
  .post_items .single_item .date{
    margin-right: 23px;
  }
  .post_items .single_item .category{

  }
  .post_items .single_item .title{
    font-size: 18px;
  }
  .post_items .single_item .post_content{

  }

  .page-archive a{
    font-size: 20px;
  }
}
@media (min-width:1024px){

  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-item{
  }
  .posts_list .webgene-item + .webgene-item{
  }
  .posts_list .webgene-item .date{
    width: 120px;
    font-size: 16px;
  }
  .posts_list .webgene-item .category{
    width: 160px;
  }
  .posts_list .webgene-item .category span{
  }
  .posts_list .webgene-item .title{
    width: calc(100% - 120px - 160px - 25px);
    margin-left: 25px;
  }
  .posts_list .webgene-item .title a{

  }

  .news_list {
    margin: 0 -15px;
  }
  .news_list .item {
    width: 33.33%;
    padding: 0 15px;
  }
  .news_list .item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list .item:nth-child(n+4){
    margin-top: 51px;
  }

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

  .pg_news{
    padding-top: 100px;
  }

  .news_list .item .date{
    margin-right: 40px;
  }

}

/*******************************
*　スタッフ
********************************/

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

}
.pg_staff .section.sec1{

}
.pg_staff .section.sec2{

}


@media (max-width:374px){

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

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

}
@media (min-width:768px){
  /* セクション設定 */
  .pg_staff{

  }
  .pg_staff .section.sec1{

  }
  .pg_staff .section.sec2{

  }

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


}
@media (min-width:1200px){
  /* セクション設定 */
  .pg_staff{

  }
  .pg_staff .section.sec1{

  }
  .pg_staff .section.sec2{

  }

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


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


}


/* メイン部分 */
.post_items.staff{
  display: flex;
  flex-wrap: wrap;
}
.post_items.staff .item{
  width: 100%;
}
.post_items.staff .item:nth-child(n+2){
  margin-top: 10px;
}
.post_items.staff .item .inner{
  text-align: center;
  background: #fefff5;
  border-radius: 20px;
  box-shadow: 4.974px 3.355px 11.96px 1.04px rgba(42, 57, 38, 0.11);
  padding: 50px 20px 45px;
}
.post_items.staff .item .title,
.staff_popup_box .title{
  font-size: 20px;
  font-weight: 900;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0;
  color: #47916c;
  margin-top: 16px;
}
.staff_img{
  border-radius: 50%;
  overflow: hidden;
}
.staff_img img{
  border-radius: 50%;
  transition: all .2s;
}
.post_items.staff .item .inner:hover .staff_img img{
  transform: scale(1.05);
}
.link_1{
  display: flex;
  justify-content: center;
  margin-top: 0;
}
.link_1 a{
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.05em;
  width: 108px;
  border-bottom: 1px solid #000000;
  margin-inline: auto;
  position: relative;
  padding-bottom: 8px;
}
.link_1 a:after{
  content: "\f061";
  font-size: 11px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all .2s;
}
.post_items.staff .item .inner:hover .link_1 a:after{
  right: -5px;
}

/*学童保育用*/
.post_items.hoiku{

}
.post_items.hoiku .item .inner {
  background: #f7f6ee;
  border: 1px solid #f59999;
}
.post_items.hoiku{

}
.post_items.hoiku .item .title,
.staff_popup_box .title{
  color: #f59999;
}
.post_items.hoiku{

}

/*poppup内*/
.staff_popup_box{
  width: 80%;
}
.staff_popup_box .inner{
  background: #fefff5;
  border-radius: 20px;
  padding: 30px 16px;
}
.staff_popup_box .staff_img{

}
.staff_popup_box .title{
  text-align: center;
}
.staff_popup_box .meta{
  margin-top: 20px;
}
.staff_popup_box .block{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.staff_popup_box .block:nth-child(n+2){
  margin-top: 12px;
}
.staff_popup_box .left{
  background: #47916c;
  color: #fff;
  padding: 2px 16px;
}
.staff_popup_box .right{
  background: #fff;
  padding-left: 12px;
}
.staff_popup_box .content{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #000000;
  padding-bottom: 20px;
  margin-top: 20px;
}

.close_btn.lity-close{
  width: auto;
  height: auto;
  position: inherit;
  inset:0;
  transform: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.close_btn.lity-close:hover{
  transform: none;
}
.close_btn.lity-close:hover, .close_btn.lity-close:focus, .close_btn.lity-close:active, .close_btn.lity-close:visited{
  font-size: 14px;
  color: #000;
}
.close_btn.lity-close:after{
  content: "";
  display: block;
  width: 30px;
  aspect-ratio:1;
  background-image: url(/img/staff/batsu.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
}

/*学童保育ポップアップ*/
.staff_popup_box.hoiku .inner{
  border: 1px solid #f59999;
  background: #f7f6ee;
  overflow: auto;
  max-height: 900px;
}
.staff_popup_box.hoiku .left{
  background: #f59999;
}
@media (max-width:767px){
  /*poppup内*/
  .staff_popup_box{
    width: 95%;
    margin-inline:auto;
  }
  .staff_popup_box .left,
  .staff_popup_box .right{
    width: 100%;
  }
  .staff_popup_box .staff_img{
    width: 200px;
    margin-inline:auto;
  }
  .staff_popup_box.hoiku .inner{
    max-height: 600px;
    overflow: auto;
  }
}
@media (min-width:768px){
  /* メイン部分 */
  .post_items.staff{
    margin-inline:-5px;
  }
  .post_items.staff .item{
    width: 50%;
    padding-inline:5px;
  }
  .post_items.staff .item:nth-child(n+2){
    margin-top: 0;
  }
  .post_items.staff .item:nth-child(n+3){
    margin-top: 10px;
  }
  .post_items.staff .item .inner{
    padding: 50px 20px 45px;
  }
  .post_items.staff .item .title,
  .staff_popup_box .title{
    font-size: 22px;
    margin-top: 20px;
  }
  .link_1{

  }
  .link_1 a{

  }

  /*poppup内*/
  .staff_popup_box{
    width: 600px;
  }
  .staff_popup_box .inner{
    padding: 59px 60px;
  }
  .staff_popup_box .staff_img{
    width: 250px;
    margin-inline:auto;
  }
  .staff_popup_box .title{

  }
  .staff_popup_box .meta{
    margin-top: 33px;
  }
  .staff_popup_box .block{

  }
  .staff_popup_box .left{
    width: 200px;
  }
  .staff_popup_box .right{
    width: calc(100% - 200px);
  }
  .staff_popup_box .content{
    padding-bottom: 40px;
  }

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


}
@media (min-width:1200px){
  /* メイン部分 */
  .post_items.staff{

  }
  .post_items.staff .item{
    width: 33.333%;
  }
  .post_items.staff .item:nth-child(n+3){
    margin-top: 0;
    ;
  }
  .post_items.staff .item:nth-child(n+4){
    margin-top: 10px;
  }
  .post_items.staff .item .inner{
    padding: 50px 0 45px;
  }
  .post_items.staff .item .title,
  .staff_popup_box .title{
    font-size: 30px;
  }
  .staff_img{
    width: 48%;
    margin-inline:auto;
  }
  .link_1{

  }
  .link_1 a{

  }

  /*poppup内*/
  .staff_popup_box{
    width: 800px;
  }
  .staff_popup_box .inner{
    padding: 59px 60px;
  }
  .staff_popup_box .staff_img{
    width: 300px;
  }
  .staff_popup_box .title{

  }
  .staff_popup_box .meta{

  }
  .staff_popup_box .block{

  }
  .staff_popup_box .left{

  }
  .staff_popup_box .right{

  }
}
@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%;
}
.gallery_box2{
  width: 100%;
  margin-top: 15px;
}

/* メイン */
.gallery_main{

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

}
.gallery_thumb .img{
  width: 100%;
  background: #EEE;
  overflow: hidden;
}
.gallery_thumb .img.img_fit:before{
  padding-top: 76.47%;
}
.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;
}


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

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

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

}
@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{
  }
  .gallery_box1{
    width: 65.76%;
  }
  .gallery_box2{
    width: 31.53%;
    margin-top: 0;

    position: absolute;
    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_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;
  }
}
@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;
  }

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


}



/*******************************
*　お問い合わせ
********************************/

.contact_info_wrap{
  background: #EEE;
  color: #FFF;
  padding: 30px 25px 20px;
  margin-bottom: 45px;
}
.contact_info_tt{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 15px;
  color: #111;
}
.contact_info_box{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #FFF;
  color: #181818;
  padding: 25px 10px 25px 30px;
}
.contact_info_tel{
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_info_tel_icon{
  background: #b1c274;
  color: #FFF;
  border-radius: 5px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 16px;
  margin-right: 20px;
}
.contact_info_tel_link{
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}
.contact_info_txt{
  font-weight: 700;
  margin-left: 0;
  letter-spacing: 0.16em;
}

@media (max-width:1023px){

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
  .contact_info_tt {
    font-size: 18px;
  }
  .contact_info_tel_link{
    font-size: 30px;
  }
}
@media (max-width:767px){

  .contact_info_wrap{
    margin-bottom: 50px;
    padding: 15px 10px;
  }
  .contact_info_box{
    padding: 20px 10px;
  }
  .contact_info_tt {
    font-size: 16px;
  }
  .contact_info_tel_icon{
    font-size: 14px;
    margin-right:5px;
  }
  .contact_info_tel_link{
    font-size: 24px;
  }
  .contact_info_txt{
    margin-left:0;
    margin-top: 5px;
    font-size: 10px;
  }

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
}


.contact_tt {
  font-size: 26px;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.16em;
}
.contact_tt.privacy{
  font-family: "Noto Sans JP";
  font-size: 21px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 12px 15px 16px 20px;
  background: #eeeeee;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 0 12px;
  margin-top: 3px;
  float: right;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.18em;
}
.pg_contact .formTd select{
  border-radius: 0;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 75px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.pg_contact .formWrap .text-center{
  padding-top: 40px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: #1a3e9b;
}
.pg_contact .formBtn.formSend {
  max-width: 314px;
  width: 100%;
  font-size: 18px;
  padding: 10px;
  margin: 32px auto 0;
  border: 0;
  background: #b80000;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  font-weight: 500;
  cursor: pointer;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0 15px;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
}
.radioArea .d-inline-block{
  margin-right: 40px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
}
.pg_contact .section.sec1 {
  padding: 237px 0 0;
}

@media only screen and (min-width: 1024px){
  .pg_contact .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .pg_contact .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }
}


/* プライバシー */
.pg_contact .section.sec2{
  padding: 150px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 35px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 0;
  margin-bottom: 12px;
  border-left: 6px solid #c3d194;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}

.privacy_txt_type1{
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.privacy_txt_type1_b{
  text-indent: -1em;
  padding-left: 1em;
}
.privacy_txt_type1_c{
  text-indent: -3em;
  padding-left: 3em;
}
.privacy_txt_type2{

}
.privacy_txt_type2 p{
  text-indent: -1em;
  padding-left: 1em;
}

.privacy_txt ol li{
  padding-left: 1.6em;
  text-indent: -1.6em;
}
.privacy_txt ul li{
  padding-left: 1em;
  text-indent: -1em;
}

.contact_tt.privacy {
  margin-bottom: 45px;
}
.contact_tt.privacy br{
  display: none;
}
.pg_contact .d-inline{
  display: inline-block!important;
}
.pg_contact .d-inline-block {
  vertical-align: middle;
}


@media only screen and (max-width: 1023px){
  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl{
    font-size: 18px;
  }

}

@media only screen and (max-width: 767px){
  .contact_info {
    padding: 18px 15px 10px;
  }
  .contact_info_txt_1 br{
    display: block;
  }
  .contact_info_txt_2 {
    padding: 0 6px 0 10px;
    margin-right: 10px;
  }
  .contact_tt {
    margin-bottom: 25px;
    font-size:18px;
  }
  .pg_contact .formTh {
    padding: 5px 10px;
  }
  .pg_contact .formTd {
    font-size: 13px;
    padding: 10px;
  }
  .pg_contact .formTd input[name="zip1"] {
    width: 80px;
  }
  .pg_contact .formTd input[name="zip2"] {
    width: 100px;
  }
  .pg_contact .formTd select[name="pref"] {
    width: 155px;
  }
  .pg_contact .formTd input[type="text"]::placeholder,
  .pg_contact .formTd input[type="tel"]::placeholder,
  .pg_contact .formTd input[type="email"]::placeholder{
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .pg_contact .formWrap .text-center {
    padding-top: 25px;
  }
  .pg_contact .privacyLabel {
    font-size: 15px;
  }

  .privacyformError{
    margin-top:-40px !important;
  }

  .contact_tt.privacy br{
    display: block;
  }
  .contact_tt.privacy {
    margin-bottom: 0;
  }
  .privacy_item {
    margin-top: 26px;
  }
  .contact_info_txt_1 {
    margin-bottom: 10px;
    padding-left: 0;
  }
  .pg_contact .d-inline {
    display: block!important;
  }
  .pg_contact .formTd .addArea .labelText02 {
    display: block;
  }
  label.label.zipcode_i {
    padding: 7px 4px;
  }
  a.contact_info_txt_3 {
    width: 200px;
    margin: 10px 0;
  }

  .radioArea .d-inline-block {
    margin-right: 10px;
  }
  .pg_contact .section.sec2 .contact_tt {
    margin-bottom: 20px;
  }


  .pg_contact .section.sec1 {
    padding: 0 0 25px;
  }
  .contact_info_bg {
    padding: 18px 10px;
  }

  .pg_contact .section.sec2{
    padding: 65px 0 30px;
  }

  .privacy_ttl {
    font-size: 15px;
    padding-left: 10px;
  }
}

/*******************************
*　お問い合わせ送信完了
********************************/
.pg_thanks .link_3{
  margin-top: 50px;
}
.thanks_text{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media only screen and (max-width: 767px){
  .thanks_text{
    /*display: block;*/
    letter-spacing: -0.08em;
  }
}


/*******************************
*　
********************************/
.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){


}
