@charset "UTF-8";
/*
Theme Name: MY-THEME
*/
@import "style-visual.css?2";

/* 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;
}
*/
@font-face {
  font-family: "CALIFB";
  src: url(css/fonts/CALIFB.woff2) format("woff2"),
  url(css/fonts/CALIFB.woff) format("woff"),
  url(css/fonts/CALIFB.eot) format("eot");
  font-weight: 700;
  font-style: normal;
}

/* ==========================================================================
   サイト毎の独自のスタイル
   ========================================================================== */

/* 基本フォント: ゴシック */
body{
  /*font-family:  'Noto Sans JP', "游明朝体", "Yu Mincho", YuMincho, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
  font-family: 'Hiragino Gothic Pro', 'ヒラギノ角ゴ Pro', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.666;
  color: #383838;
}

/* 基本フォント: 明朝 */
/**/
body{
  /* 游明朝体 */
  /*font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
  /* ヒラギノ明朝 */
  /*font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'Yu Mincho', '游明朝', 'MS Mincho', 'MS明朝', serif;*/
}

/* admin-barの高さ分の padding 設定 */
body.admin-bar{
  padding-top: 32px;
}
@media (max-width:782px){
  body.admin-bar{
    padding-top: 46px;
  }
} 

.gothic{
  font-family: 'Hiragino Gothic Pro', 'ヒラギノ角ゴ Pro', 'Noto Sans JP', sans-serif;
}
.mincho{
  font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'Noto Serif JP', serif;
}

a{
  color: inherit;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

img{
  max-width: 100%;
}
a:hover img{
  opacity: 0.8;
}

img[class*="wp-image-"],
img[class*="attachment-"]{
  max-width: 100%;
  height: auto;
}

i, em{
  font-style: normal;
}

/* 動画埋め込みのレスポンシブ対応 */
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%;
}

/* テーブル */
table{
  width: 100%;
  table-layout: fixed;
}
table th,
table td{
  padding: 10px 10px;
}

/* テーブル 汎用class */
.tbl{
  
}
.tbl th,
.tbl td{
  border: 1px solid #b2b2b2;
}
.tbl th{
  
}
.tbl td{
  
}


/* スクロール テーブル */
.js-scrollable{
  overflow-x: auto;
}
.js-scrollable table{
  min-width: 748px;
}

/* 指定デバイスのみで表示するclass */
@media (min-width:1024px){
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
}
.container{
  width: 1220px;
  max-width: 100%;
  padding: 0 10px; 
  margin: 0 auto;
}
.section{
  width: 100%;
  /*margin-bottom: 50px;*/
  /*padding: 30px 0;*/ 
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header{
  /*padding: 15px 0;*/
  background-color: #ccc;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header .container{
  display: flex;
  justify-content: center;
  align-items: center;
  /*height: 425px;*/
  height: 300px;
}

/* 共通のfloat ボックスとして定義しておく */
.box_l{
  float: left;
}
.box_r{
  float: right;
}

/* ▼サンプル▼ 利用箇所毎に幅指定だけで済むように */
/*
.post_list .post_box .box_l {
    width: 70%;
}
.post_list .post_box .box_r {
    width: 25%;
}
*/

/* ▼サンプル▼ リストなどでアイキャッチがない場合のclass */
/*
.post_list .post_box .box_w{
  width: 100%;
}
*/

/*
 * 共通クラスとして定義しておく
 * リスト組みのテンプレート
 * 
 */

.listbox{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.listbox .item{
  display: block;
  width: 100%;
}
.listbox .item .img{
  position: relative;
  display: block;
  overflow: hidden;
}
.listbox .item .img:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.listbox .item .img.img2x1:before{
  padding-top: 50%;
}
.listbox .item .img.img1x2:before{
  padding-top: 200%;
}
.listbox .item .img.img2x3:before{
  padding-top: 150%;
}
.listbox .item .img.img3x2:before{
  padding-top: 66.666666%;
}
.listbox .item .img.img3x4:before{
  padding-top: 133.333333%;
}
.listbox .item .img.img4x3:before{
  padding-top: 75%;
}
.listbox .item .img.img16x9:before{
  padding-top: 56.25%;
}
.listbox .item .img img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.listbox .item .title{
  
}
.listbox .item .date{
  
}
.listbox .item .txt{
  
}


/* ▼サンプル▼ 利用箇所ごとにマージンなど設定 */
/*
.post_content .col1,
.post_content .col2,
.post_content .col3{
  margin-bottom: 20px;
}
*/


/* **********************************
 *  ヘッダー
 * ********************************* */
.header{
  background: #ffffff;
}
.header .hdr1{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 105px 5px 25px;
  height: 84px;
  position: relative;
  
}
.header .hdr1 .hdr_logo{
  line-height: 1;
}
.header .hdr1 .hdr_contact{
  display: flex;
}
.header .hdr1 .hdr_contact a{
  
}
.header .hdr1 .hdr_contact a+a{
  margin-left: 20px;
}
.header .hdr1 .hdr_menubtn{
  position: absolute;
  top: 0;
  right: 0;
}

.header .hdr1 .hdr_menubtn.sp{
  position: fixed;
  top: 5px;
  right: 5px;
  z-index: 4;
}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
  display: none;
  background: rgba(35,52,129,0.95);
  color: #FFF;
  padding-top: 60px;
  padding-bottom: 35px;
  
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.gnav .hdr_menubtn{
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
}
.gnav .gnav_logo{
  text-align: center;
  margin-bottom: 50px;
}

.gnav_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -13px;
  margin-right: -13px;
}
.gnav_items > .item{
  width: 25%;
  padding-left: 13px;
  padding-right: 13px;
  position: relative;
}

.gnav_items .links1{
  
}
.gnav_items .links1 li{
  
}
.gnav_items .links1 li:nth-child(n+2){
  margin-top: 10px;
}

.gnav_items .links2{
  padding-top: 20px;
  margin-left: 5px;
  border-left: 1px solid #c9c9c9;
  /*position: relative;*/
}
.gnav_items .links2:before{
  content: "";
  width: 1px;
  background: #FFF;
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
}
.gnav_items .links2 li{
  border-bottom: 1px solid #c9c9c9;
  padding: 7px 0 7px 20px;
}
.gnav_items .links2 li a{
  display: block;
  position: relative;
}
.gnav_items .links2 li a:after{
  /*content: "\f054";*/
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}


.gnav_items .menu_bn{
  display: block;
  position: relative;
  z-index: 1;
}
.gnav_items .menu_bn img{
  width: 100%;
}
.gnav_items .menu_bn em{
  font-size: 24px;
  font-weight: 500;
  /*font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'Noto Serif JP', serif;*/
  font-family: 'Noto Serif JP', serif;
  position: absolute;
  top: 50%;
  left: 13px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 3;
}
.gnav_items .menu_bn:before{
  content: "";
  display: block;
  background: rgba(0,0,0,0.35);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.gnav_items .menu_bn:hover:before{
  display: none;
}

.gnav_items a.menu_bn:after{
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 3;
}

.gnav_sp{
  display: none;
}

/**/
.mv{
  position: relative;
  /*height: 810px;*/
  /*background: #CCC;*/
  /*background-image: url('/img/mv.jpg');*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  
  display: flex;
  justify-content: center;
  align-items: center;
}
.mv .mv_video{
  
}
.mv .mv_video video{
  width: 100%;
  height: auto;
}
.mv .mv_info{
  position: absolute;
  bottom: 66px;
  left: 22px;
}
.mv .mv_info a{
  display: inline-block;
  background: #FFF;
  border: 1px solid #999999;
  min-width: 270px;
  padding: 12px 0;
  text-align: center;
  font-size: 17px;
  
  
}
.mv .mv_info a:after{
  /*content: "\f054";*/
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}


.mv .mv_box{
  position: relative;
}
.mv .mv_box .txt{
  font-size: 32px;
}
.mv .mv_box .img1{
  
}
.mv .mv_box .img2{
  position: absolute;
  /*top: -30px;*/
  right: -65px;
  margin-top: -30px;
}
.mv .mv_box .img img{
  
}

.newsletter_wrap{
  background: rgba(51,51,51,0.75);
  color: #FFF;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.newsletter_wrap .newsletter{
  display: flex;
  padding: 6px 0;
}
.newsletter_wrap .newsletter .box1{
  width: 160px;
  color: #eed110;
  font-weight: 500;
}
.newsletter_wrap .newsletter .box1 em{
  font-size: 12px;
}
.newsletter_wrap .newsletter .box2{
  width: calc(100% - 160px);
}
.newsletter_wrap .newsletter .letters{
  overflow: hidden;
}
.newsletter_wrap .newsletter .letters li{
  white-space: nowrap;
  
  animation-name: marquee;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes marquee {
  from    { transform: translate(0%); } 
  100%,to { transform: translate(-100%); }
}


/* メインメニュー */
.main_menu_wrap{
  display: flex;
  color: #FFF;
  height: 330px;
}

.main_menu_wrap .tab{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 33.333%;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.5s, background 0s;
  position: relative;
}

.main_menu_wrap .tab.tab1{
  background-color: #50b739;
  background-image: url('/img/nav/bg1.png');
}
.main_menu_wrap .tab.tab2{
  background-color: #2f9aee;
  background-image: url('/img/nav/bg2.png');
}
.main_menu_wrap .tab.tab3{
  background-color: #f15050;
  background-image: url('/img/nav/bg3.png');
}
.main_menu_wrap .tab .title{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.3em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.main_menu_wrap .tab.tab2 .title{
  letter-spacing: 0.2em;
}
.main_menu_wrap .tab.on{
  width: 100%;
  background-position: right 10px center;
}
.main_menu_wrap .tab.on .title{
  left: 0;
   -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.main_menu_wrap .tab .links{
  /*display: none;*/
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-end;
  width: calc(100% - 220px);
  height: 100%;
  opacity: 0;
}
.main_menu_wrap .tab.on .links{
  opacity: 1;
}
.main_menu_wrap .tab .links li{
  width: 170px;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.main_menu_wrap .tab .links li span{
  display: block;
}

.main_menu_wrap .tab .links li{
  transition: all 0.5s;
  transform: scale(0);
}
.main_menu_wrap .tab .links li:nth-child(1){
  transition-delay: 100ms;
}
.main_menu_wrap .tab .links li:nth-child(2){
  transition-delay: 200ms;
}
.main_menu_wrap .tab .links li:nth-child(3){
  transition-delay: 300ms;
}
.main_menu_wrap .tab .links li:nth-child(4){
  transition-delay: 400ms;
}
.main_menu_wrap .tab .links li:nth-child(5){
  transition-delay: 500ms;
}
.main_menu_wrap .tab .links li:nth-child(6){
  transition-delay: 600ms;
}
.main_menu_wrap .tab .links li:nth-child(7){
  transition-delay: 700ms;
}
.main_menu_wrap .tab .links li:nth-child(8){
  transition-delay: 800ms;
}
.main_menu_wrap .tab .links li:nth-child(9){
  transition-delay: 900ms;
}
.main_menu_wrap .tab.on .links li{
  transform: scale(1);
}

@media (max-width:1499px){
  
}

@media (max-width:1499px){
  .main_menu_wrap .tab .title{
    width: 100px;
  }
  .main_menu_wrap .tab .links{
    width: calc(100% - 100px);
  }
  .main_menu_wrap .tab .links li{
    width: 130px;
    font-size: 12px;
  }
}
@media (max-width:1023px){
  .main_menu_wrap .tab .title{
    font-size: 30px;
    width: 80px;
  }
  .main_menu_wrap .tab .links{
    width: calc(100% - 80px);
  }
  .main_menu_wrap .tab .links li img{
    height: 60px;
  }
}

@media (max-width:767px){
  .main_menu_wrap {
    flex-wrap: wrap;
    height: auto;
  }
  .main_menu_wrap .tab{
    flex-wrap: wrap;
    width: 100%;
    min-height: 100px;
    height: 150px;
    padding: 100px 10px 30px;
    background-size: auto 50px;
  }
  
  .main_menu_wrap .tab.on{
    background-position: center top 20px;
    height: auto;
  }
  .main_menu_wrap .tab .title{
    width: 100%;
    height: 100px;
    font-size: 23px;
    -ms-writing-mode: initial;
    writing-mode: initial;
    
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .main_menu_wrap .tab.on .title{
    top: 0;
    bottom: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  
  .main_menu_wrap .tab .links{
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
  }
  .main_menu_wrap .tab .links li{
    width: 33.333%;
  }
  
  .main_menu_wrap .tab:after{
    content: "\f107";
    display: block;
    width: 100%;
    background: rgba(0,0,0,0.2);
    text-align: center;
    line-height: 1;
    
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .main_menu_wrap .tab.on:after{
    content: "\f106";
  }
}

/* **********************************
 *  フッター
 * ********************************* */
footer{
  margin-top: 200px;
}

footer .ftr1{
  background: #4169e1;
  color: #FFF;
  padding: 50px 0 25px;
}
footer .ftr2{
  background: #15328a;
  color: #FFF;
  padding: 50px 0 10px;
  text-align: center;
}
footer .ftr2 .box1{
  
}
footer .ftr2 .box2{
  margin-top: 40px;
  line-height: 1.75;
}

.ftr_link_items{
  display: flex;
  flex-wrap: wrap;
}
.ftr_link_items .item{
  width: 25%;
  border-left: 1px solid #8fa6ec;
  padding: 0 10px;
}
.ftr_link_items .item:last-child{
  border-right: 1px solid #8fa6ec;
}
.ftr_link_items .item h5{
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}
.ftr_links{
  
}
.ftr_links li{
  font-size: 15px;
  letter-spacing: 0.2em;
}
.ftr_links li+li{
  margin-top: 10px;
}

footer .copy{
  text-align: center;
  font-size: 12px;
  margin-top: 80px;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #aec4e5;
  z-index: 10;
}
.footer_fix ul{
  /*display: table;*/
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  /*padding: 3px;*/
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 33.333%;
}
.footer_fix ul li.btn2{
  width: 24%;
}
.footer_fix ul li a{
  display: block;
  padding: 15px 5px;
  background: #4072b3;
  color: #FFF;
  text-decoration: none;
}

/* アクセス */
.footer_access_wrap{
  display: flex;
  margin-top: 100px;
}
.footer_access_wrap .box1,
.footer_access_wrap .box2{
  width: 50%;
}
.footer_access_wrap .box1{
  
}
.footer_access_wrap .box1 .map{
  
}
.footer_access_wrap .box1 .map iframe{
  width: 100%;
  height: 350px;
}
.footer_access_wrap .box1 .access{
  width: 100%;
  height: 140px;
  display: flex;
}
.footer_access_wrap .box1 .access dt{
  width: 31.25%;
  background: #4169e1;
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_access_wrap .box1 .access dd{
  width: 68.75%;
  background: #eeeeee;
  font-size: 15px;
  font-weight: 700;
  padding-left: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}
.footer_access_wrap .box1 .access dd span{
  width: 100%;
}

.footer_access_wrap .box2{
  background-image: url('/img/footer_access_bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #FFF;
  font-weight: 700;
  position: relative;
}
.footer_access_wrap .box2 .inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  border: 1px solid #FFF;
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
.footer_access_wrap .box2 .inner .title{
  font-size: 28px;
  width: 100%;
}
.footer_access_wrap .box2 .inner .txt{
  width: 100%;
  margin-top: 40px;
}

@media (max-width:1399px){
  .footer_access_wrap .box1 .access dt{
    width: 120px;
  }
  .footer_access_wrap .box1 .access dd{
    width: calc(100% - 120px);
  }
}
@media (max-width:1279px){
  
  .footer_access_wrap{
    flex-wrap: wrap;
  }
  .footer_access_wrap .box1,
  .footer_access_wrap .box2{
    width: 100%;
  }
  .footer_access_wrap .box1{
    order: 2;
  }
  .footer_access_wrap .box2{
    height: 300px;
    order: 1;
  }
  
  .footer_access_wrap .box1 .access dt{
    width: 30%;
    /*font-size: 18px;*/
  }
  .footer_access_wrap .box1 .access dd{
    width: 70%;
    /*font-size: 14px;*/
  }
}
@media (max-width:767px){
  .footer_access_wrap .box1 .access {
    flex-wrap: wrap;
  }
  .footer_access_wrap .box1 .access dt{
    width: 100%;
    font-size: 14px;
  }
  .footer_access_wrap .box1 .access dd{
    width: 100%;
    font-size: 12px;
    padding: 0 10px;
  }
  
  .footer_access_wrap .box2 .inner{
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
  .footer_access_wrap .box2 .inner .title{
    font-size: 20px;
  }
  .footer_access_wrap .box2 .inner .txt{
    margin-top: 20px;
    padding: 10px;
  }
}
@media (max-width:359px){
  .footer_access_wrap .box1 .access dd{
    font-size: 10px;
  }
}


/* 検索フォーム */
.pg_404{
  text-align: center;
}
.pg_404{
  
}

.search-form{
  padding: 20px 0;
}
.search-form .search-field{
  padding: 5px;
}
.search-form .search-submit{
  padding: 5px 10px;
}

.pg_image{
  
}
.pg_image .attachment{
  padding: 20px;
  background-color: #ececec;
  text-align: center;
}


/* 記事リスト */
.post_items{
  padding: 0 0;
}
.post_items .item{
  /*background: #f0f0f0;*/
  padding: 10px;
  border-top: 1px solid #CCC;
  display: flex;
  align-items: center;
  position: relative;
}
.post_items .item:last-child{
  border-bottom: 1px solid #CCC;
}
.post_items .item .img{
  
}
.post_items .item .date{
  width: 130px;
  font-size: 15px;
  color: #5a5a5a;
}
.post_items .item .category{
  width: 150px;
  padding: 0 10px;
  
}
.post_items .item .category span{
  display: block;
  background: #e5e5e5;
  color: #6c6969;
  padding: 3px;
  margin: 2px;
  text-align: center;
}
.post_items .item .title{
  font-weight: 500;
  width: calc(100% - 130px - 150px);
  /*width: -moz-available;
  width: -webkit-fill-available;
  width: available;*/
}
.post_items .item .title a{
  display: block;
  position: relative;
  padding-right: 1em;
}
.post_items .item:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.post_items .item.single_item{
  display: flex;
  flex-wrap: wrap;
  border-top: 15px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
}
.post_items .item.single_item:after{
  display: none;
}
.post_items .item.single_item .meta{
  display: flex;
  align-items: center;
  width: 100%;
}
.post_items .item.single_item .title{
  width: 100%;
  font-size: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CCC;
}
.post_items .item.single_item .content{
  width: 100%;
  margin-top: 20px;
  padding-bottom: 20px;
}
.post_items .item.single_item .content *{
  margin-bottom: 1em;
}
.post_items .item.single_item .content h1,
.post_items .item.single_item .content h2,
.post_items .item.single_item .content h3,
.post_items .item.single_item .content h4,
.post_items .item.single_item .content h5,
.post_items .item.single_item .content h6{
  margin-bottom: 0.5em;
}
.post_items .item.single_item .content a{
  color: #2196F3;
}

.post_items .post_content{
  margin-top: 30px;
}

/* ページ送り(一覧) */
.pagination{
  text-align: center;
  margin-top: 30px;
}
.pagination .nav-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  
}
.pagination .page-numbers{
  align-self: stretch;
  border: 1px solid #c0c0c0;
  padding: 5px 10px;
  margin: 4px 4px;
  color: #1e1e1e;
  text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background: #e5e5e5;
}
.pagination .page-numbers.next:after{
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
.pagination .page-numbers.prev:before{
  content: "\f100";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

/* ページ送り(詳細) */
.pagination .nav-posts{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagination .nav-posts .page-next,
.pagination .nav-posts .page-prev{
  min-width: 200px;
}
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a{
  display: block;
  border: 1px solid #c0c0c0;
  padding: 10px 50px;
  position: relative;
}
.pagination .nav-posts .page-next a:before,
.pagination .nav-posts .page-prev a:after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pagination .nav-posts .page-next a:before{
  content: "\f053";
  left: 10px;
}
.pagination .nav-posts .page-prev a:after{
  content: "\f054";
  right: 10px;
}
.pagination .nav-posts .page-archive a{
  display: block;
  background: #bcbcbc;
  color: #ffffff;
  padding: 10px 100px;
}

/* 検索 */
.search_list{
  background: #eee;
  padding: 15px;
}
.search_list .item{
  
}
.search_list .item + .item{
  
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 10px;
  bottom: 60px;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
}
.pagetop a i{
  font-size: 40px;
}

/* コンタクトフォーム */
.contact_info{
  background: #f0f0f0;
  text-align: center;
  padding: 20px;
  margin-bottom: 100px;
}
.contact_info .box1{
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.14em;
}
.contact_info .box2{
  margin-top: 20px;
  background: #FFFFFF;
  padding: 20px 5px;
  line-height: 1;
}
.contact_info .box2 .icon{
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  background: #8c8c8c;
  color: #FFFFFF;
  padding: 5px 15px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 5px;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: bold;
  vertical-align: middle;
  font-weight: bold;
  letter-spacing: 0.2em;
}
.contact_info .box2 .tel a{
  display: block;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  margin-left: 10px;
}

.contact_form{
  width: 100%;
  border: 1px solid #b2b2b2;
}
.contact_form tr{
  border-bottom: 1px solid #b2b2b2;
}
.contact_form th,
.contact_form td{
  padding: 10px 15px;
  font-weight: normal;
  text-align: left;
}
.contact_form th{
  background: #f0f0f0;
  width: 300px;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 10px;
  color: #FFF;
  background: #ff0000;
  font-size: 12px;
  font-weight: normal;
  float: right;
  border-radius: 5px;
}
.contact_form dl{
  width: 100%;
  display: flex;
  align-items: center;
}
.contact_form dl + dl{
  margin-top: 10px;
}
.contact_form dl dt,
.contact_form dl dd{
  
}
.contact_form dl + p{
  margin-top: 5px;
  margin-bottom: 5px;
}

.contact_form dl.addr dt{
  width: 90px;
}
.contact_form dl.addr dd{
  width: calc(100% - 90px);
}
.contact_form dl.date {
  align-items: flex-start;
}
.contact_form dl.date dt{
  width: 90px;
}
.contact_form dl.date dt + dt{
  margin-left: 5px;
}
.contact_form dl.date dt select{
  width: 100%;
}
.contact_form dl.date dt.wide{
  width: 200px;
}
.contact_form dl.addr dd{
  
}


.contact_form td .wpcf7-form-control-wrap{
  display: block;
}
.contact_form td .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-top: 5px;
}
.contact_form td .wpcf7-form-control ,
.contact_form td .wpcf7c-conf-hidden {
  padding: 10px;
  max-width: 100%;
  border: 1px solid #CCC;
  border-radius: 0;
}
.contact_form td .wpcf7-checkbox,
.contact_form td .wpcf7-radio{
  border: 0;
}
.contact_form td .wpcf7-text {
  width: 500px;
  max-width: 100%;
}
.contact_form td .wpcf7-textarea {
  width: 100%;
}
.contact_form td .wpcf7-file {
  width: 100%;
  border: 0;
}
.contact_form td .wpcf7-file + .wpcf7c-conf{
  width: 100%;
  border: 1px solid #398f14;
}
.contact_form td [name$="_zipcode"],
.contact_form td [name="zipcode"],
.contact_form td [name="addr1"]{
  width: 150px;
}
.contact_form td [name="addr1"]{
  width: 180px;
}
.contact_form td [name="addr2"]{
}
.contact_form td .wpcf7-form-control-wrap.zipcode,
.contact_form td .wpcf7-form-control-wrap[class$="_zipcode"]{
  display: flex;
  align-items: stretch;
}
.contact_form td .wpcf7-form-control-wrap.zipcode:before,
.contact_form td .wpcf7-form-control-wrap[class$="_zipcode"]:before{
  vertical-align: top;
  content: "〒";
  background: #CCC;
  width: 30px;
  padding: 0;
  margin: 0;
  border: 1px solid #CCC;
  border-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact_form td .addr_auto{
  background: #f0f0f0;
  border: 1px solid #d6d8d8;
  margin-left: 10px;
  padding: 0 5px;
}

.contact_form td .wpcf7-checkbox, 
.contact_form td .wpcf7-radio{
  display: block;
}
.contact_form span.wpcf7-list-item{
  margin: 0 1em 0 0;
}


.contact_form_msg{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* 確認画面用 */
.wpcf7c-conf:not([type="radio"]):not([type="checkbox"]){
  background: #eeffe4;
  -webkit-box-shadow: 0 0 0px 1000px #eeffe4 inset;
  border: 1px solid #398f14;
  opacity: 0.9;
}
.wpcf7c-conf:checked + .wpcf7c-conf-hidden + .wpcf7-list-item-label{
  color: #398f14;
}
/*input:-webkit-autofill,
textarea:-webkit-autofill, 
select:-webkit-autofill {
  background-color: #eeffe4 !important;
  background-image: none !important;
  color: #666 !important;
}*/ 


.contact_form_acceptance{
  text-align: center;
  margin-top: 20px;
}
.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance span.wpcf7-list-item{
  margin: 0;
}

/* コンタクトフォーム - ボタン */
.contact_form_btns{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding: 30px 0;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"],
.contact_form_btns button{
  background: #b80000;
  color: #FFF;
  border: 0;
  padding: 10px;
  width: 300px;
  margin: 0 10px;
}
.contact_form_btns input[type="submit"][disabled],
.contact_form_btns input[type="button"][disabled]{
  background: #CCC;
}
.contact_form_btns button[type="reset"]{
  background: #CCC;
}
.contact_form_btns input.wpcf7-confirm{
  
}
.contact_form_btns input.wpcf7-back{
  background: #CCC;
}
.contact_form_btns input.wpcf7-submit{
  background: #398f14;
}
.contact_form_btns .ajax-loader{
  order: 10;
  width: 100% !important;
  margin-top: 10px !important;
  background-repeat: no-repeat;
  background-position: center;
}


/* サイトマップ */
.sitemap_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.sitemap_items .item{
  width: 25%;
  padding: 0 10px;
  margin-bottom: 20px;
}
.sitemap_items .item h4{
  border: 1px solid #d3d3d3;
  border-bottom: 5px solid #d3d3d3;
}
.sitemap_items .item h4 a{
  display: block;
  padding: 20px 15px;
}
.sitemap_items .item ul{
}
.sitemap_items .item ul li{
  border-bottom: 1px dashed #d3d3d3;
  position: relative;
}
.sitemap_items .item ul li:before{
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sitemap_items .item ul li a{
  display: block;
  padding: 5px 10px 5px 20px;
}


/* プライバシーポリシー */
.privacy_tt{
  text-align: center;
  margin-bottom: 30px;
}
.privacy_tt h3{
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.privacy_tt br{
  display: none;
}
.privacy_tt .dots{
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.privacy_tt .dots i{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c1c1c1;
  margin: 0 8px;
}

.privacy_items{
  
}
.privacy_items .item{
  line-height: 1.6;
}
.privacy_items .item + .item{
  margin-top: 40px;
}
.privacy_items .item h4{
  font-size: 18px;
  
  border-left: 6px solid #bbbbbb;
  padding-left: 15px;
  margin-bottom: 10px;
  line-height: 2.33;
}
.privacy_items .item .txt{
  
}
.privacy_items .item ul{
  list-style: disc;
  margin-left: 2em;
  margin-top: 10px;
}
.privacy_items .item ul.latin{
  list-style: lower-latin;
}

.privacy_items .item ul li{
  
}
.privacy_items .item ol{
  margin-left: 2em;
  margin-top: 10px;
}


.breadcrumb{
  display: flex;
  list-style: none;
  margin-top: 10px;
  margin-bottom: 90px;
  font-size: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  
}
.breadcrumb li{
  display: inline;
  white-space: nowrap;
}
.breadcrumb li + li{
  margin-left: 10px;
}
.breadcrumb li:last-child{
  /*font-weight: 500;*/
}
.breadcrumb li a{
  position: relative;
  padding-right: 15px;
}
.breadcrumb li a:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*.breadcrumb li:first-child a{
  padding-left: 15px;
}
.breadcrumb li:first-child a:before{
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}*/

/* **********************************
 *  メイン
 * ********************************* */
.main{
  padding: 0 0 50px;
}
body.home .main{
  padding-top: 0;
}

.pg_layout_wrap{
  display: flex;
  justify-content: space-between;
  width: 1220px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}
.pg_layout_wrap .sidemenu{
  width: 22.5%;
}
.pg_layout_wrap .main{
  width: 100%;
}
.pg_layout_wrap .sidemenu+.main{
  width: 75%;
}

.sidemenu .widget + .widget1{
  margin-top: 15px;
}
.sidemenu .widget + .widget2{
  margin-top: 40px;
}
.sidemenu .widget + .widget3{
  margin-top: 20px;
}

.sidemenu .pulldown_menu_tt{
  margin-bottom: 5px;
}
.sidemenu .pulldown_menu_tt a{
  display: block;
  background: #4b71e3;
  border-bottom: 5px solid #233481;
  color: #FFF;
  font-size: 18px;
  padding: 10px 20px;
  position: relative;
}
.sidemenu .pulldown_menu_tt a:after{
  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%);
}
.sidemenu .pulldown_menu_tt.on a:after{
  content: "\f106";
}
.sidemenu .pulldown_menu_tt.noArr a:after{
  display: none;
}

.sidemenu .pulldown_menu_list{
  display: none;
  /*height: 0;*/
  /*overflow: hidden;*/
  /*transition: height 0.2s;*/
}

.sidemenu .pulldown_menu_tt.on + .pulldown_menu_list{
  display: block;
  /*height: auto;*/
}

.sidemenu .pulldown_menu_list li{
  
}
.sidemenu .pulldown_menu_list li+li{
  margin-top: 3px;
}
.sidemenu .pulldown_menu_list li a{
  display: block;
  border: 1px solid #233481;
  padding: 10px 20px;
  position: relative;
}
.sidemenu .pulldown_menu_list li.on > a{
  background: #fefac7;
}
.sidemenu .pulldown_menu_list li a.on{
  background: #fefac7;
}
.sidemenu .pulldown_menu_list li a.hasSub:after{
  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%);
}
.sidemenu .pulldown_menu_list li a.hasSub.on:after{
  content: "\f106";
}

/* 小メニュ */
.sidemenu .pulldown_menu_list .sub{
  display: none;
  margin-left: 20px;
  margin-top: 3px;
}
.sidemenu .pulldown_menu_list li .hasSub.on+.sub {
  display: block;
}
.sidemenu .pulldown_menu_list .sub li a{
  background: #448aca;
  color: #FFF;
}
.sidemenu .pulldown_menu_list .sub li.on a{
  background: #004986;
}

/* バナー */
.sidemenu .side_bn_list1{
  
}
.sidemenu .side_bn_list1 li{
  
}
.sidemenu .side_bn_list1 li+li{
  margin-top: 5px;
}

.sidemenu .side_bn_list2{
  
}
.sidemenu .side_bn_list2 li{
  
}
.sidemenu .side_bn_list2 li+li{
  margin-top: 10px;
}

/*
.gothic{
  font-family: 'Hiragino Gothic Pro', 'ヒラギノ角ゴ Pro', 'Noto Sans JP', sans-serif;
}
.mincho{
  font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'Noto Serif JP', serif;
}
*/
/**/
.tt1{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 127px;
  letter-spacing: 0.2em;
  
  background-image: url('/img/tt1_bg.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;/**/
  margin-bottom: 30px;
  position: relative;
  font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'Noto Serif JP', serif;
  color: #383a37;
}
.tt1:after{
  content: "";
  width: calc(100% - 45px);
  height: 1px;
  background: #898989;
  position: absolute;
  bottom: 30px;
  right: 0;
}
.tt1 span{
  font-size: 34px;
}
.tt1 em{
  font-size: 24px;
  font-family: "CALIFB", 'Noto Serif JP', serif;
  color: #b1b1b1;
  letter-spacing: 0.2em;
  margin-bottom: -25px;
}
.tt1 em:first-letter{
  color: #4169e1;
}


.tt2{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 0 15px;
  line-height: 1.2;
  letter-spacing: 0.2em;
  background-color: #00b7ee;
  background-image: url('/img/tt2_bg_r.png');
  background-position: right 14px center;
  background-repeat: no-repeat;
  /*background-image: url('/img/tt2_bg.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;*/
  margin-bottom: 20px;
  color: #FFF;
  font-size: 21px;
  font-family: 'Hiragino Gothic Pro', 'ヒラギノ角ゴ Pro', 'Noto Sans JP', sans-serif;
  text-shadow: 0 0 1px #00b7ee, 0 0 1px #00b7ee, 0 0 1px #00b7ee;
}

.tt3{
  
}
.tt3 span{
  
}
.tt4{
  
}
.tt4 span{
  
}
.tt5{
  
}
.tt5 span{
  
}

.txt_maker,
.txt_marker{
  background: linear-gradient(transparent 50%, #fff100 0%);
}

/* 詳しく見る サンプル */
.read_more{
  margin-top: 30px;
}
.read_more a{
  display: block;
  width: 290px;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px 0;
  border: 1px solid;
  /*border-radius: 10px;*/
  background: #ffffff;
  /*color: #FFF;*/
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}
.read_more a:after{
  /*content: "\f054";*/
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.indoorview_box{
  margin-top: 100px;
}
.indoorview_box .guide{
  margin-top: 5px;
}

/* **********************************
 *  Home
 * ********************************* */
.pg_home{
  
}
.pg_home .section{
  margin-top: 150px;
  padding-bottom: 50px;
}
.pg_home .section#sec1{
  position: relative;
}
.pg_home .section#sec1:after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 620px;
  background: #e3e9f1;
}
.pg_home .section#sec2{
}
.pg_home .section#sec3{
}
.pg_home .section#sec4{
}
.pg_home .section#sec5{
  
}
.pg_home .section#sec6{
  
}
.pg_home .section#sec7{
  background-image: url('/img/home/contents2_bg.jpg');
  padding: 95px 0;
}
.pg_home .section#sec8{
  
}
.pg_home .section#sec9{
  margin-top: 175px;
}

.home_tt1{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 209px;
  background-image: url('/img/home_tt1_bg.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  margin-bottom: 60px;
  position: relative;
}
.home_tt1:after{
  content: "";
  width: calc(100% - 120px);
  height: 1px;
  background: #898989;
  position: absolute;
  bottom: 45px;
  right: 0;
}

.home_tt1 .left{
  font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 24px;
  text-align: right;
}
.home_tt1 .left em{
  display: block;
  font-family: "CALIFB", 'Noto Serif JP', serif;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #b1b1b1;
  line-height: 1;
  /*margin-right: -10px;*/
  margin-right: -0.2em;
}
.home_tt1 .left em:first-letter{
  color: #4169e1;
}
.home_tt1 .left span{
  font-size: 14px;
}

.home_tt1 .right{
  color: #333333;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Hiragino Gothic Pro', 'ヒラギノ角ゴ Pro', 'Noto Sans JP', sans-serif;
  margin-left: 30px;
}
.home_tt1 .right a{
  display: inline-block;
  width: 250px;
  padding: 10px 10px;
  border: 1px solid #383a37;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  
  position: relative;
}
.home_tt1 .right a:after{
  /*content: "\f054";*/
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* お知らせ */
.home_news_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -37.5px;
  margin-right: -37.5px;
}
.home_news_items .item{
  width: 33.333%;
  padding-left: 37.5px;
  padding-right: 37.5px;
}
.home_news_items .item:nth-child(n+4){
  margin-top: 30px;
}
.home_news_items .item .inner{
  height: 100%;
  padding: 10px 15px;
  border-top: 4px solid #4169e1;
  background: #FFF;
  position: relative;
}
.home_news_items .item .img{
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  /*height: 222px;*/
  position: relative;
}
.home_news_items .item .img:before{
  content: "";
  display: block;
  padding-top: 70%;
}
.home_news_items .item .title{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5625;
  letter-spacing: 0.1em;
  padding: 4px 0;
  background: #FFF;
  /*position: absolute;*/
  bottom: 0;
  left: 0;
  /*right: 67px;*/
  /*-webkit-transform: translate(0, -100%);*/
  /*transform: translate(0, -100%);*/
  z-index: 1;
  margin-top: -33px;
  margin-right: 67px;
  position: relative;
}
.home_news_items .item .txt{
  font-size: 14px;
}
.home_news_items .item .link{
  text-align: right;
}


/**/
.home_course_items{
  
}
.home_course_items .item{
  display: flex;
  justify-content: space-between;
  /*background: #e3e9f1;*/
  padding-top: 50px
}
.home_course_items .item+.item{
  margin-top: 50px;
}
.home_course_items .item .box1{
  width: 50%;
  position: relative;
  padding-bottom: 10px;
}
.home_course_items .item .box1:after{
  content: "";
  background: #e3e9f1;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -100%;
  width: 2000px;
  z-index: -1;
}
.home_course_items .item .box2{
  width: 42.5%;
  margin-top: -50px;
  margin-left: 20px;
  margin-right: 20px;
}

.home_course_items .item:nth-child(even) .box1{
  order: 2;
}
.home_course_items .item:nth-child(even) .box2{
  order: 1;
}
.home_course_items .item:nth-child(even) .box1:after{
  left: -100%;
  right: auto;
}


.home_course_items .item .title1{
  margin-top: -50px;
  margin-bottom: 35px;
}
.home_course_items .item .title2{
  font-size: 42px;
  font-weight: 700;
  font-family: 'Hiragino Gothic Std', 'ヒラギノ角ゴ Std', 'Noto Sans JP', sans-serif;
  color: #4b71e3;
  line-height: 1.4;
}
.home_course_items .item .title2 span{
  font-size: 18px;
}
.home_course_items .item .course{
  font-size: 18px;
  font-weight: 700;
  color: #bacae0;
}
.home_course_items .item .support{
  font-size: 15px;
  font-weight: 700;
}
.home_course_items .item .support li{
  position: relative;
  text-indent: -1em;
  padding-left: 1em;
}
.home_course_items .item .support li+li{
  
}
.home_course_items .item .support li:before{
  /*content: "\f054";*/
  content: "\f14a";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ee4410;
  margin-right: 5px;
  /*position: absolute;
  left: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);*/
}
.home_course_items .item .support li span{
  color: #ff0000;
}
.home_course_items .item .link{
  text-align: right;
  padding: 0 30px;
}
.home_course_items .item .link a{
  display: inline-block;
  background: #FFF;
  padding: 6px 15px;
}


/* 合格実績 */
.home_result{
  
}
.home_result .result_all{
  
}
.home_result .result_msg{
  position: relative;
  margin-top: 65px;
}
.home_result .result_msg .box1{
  width: 55.83333%;
}
.home_result .result_msg .box2{
  width: 48.33333%;
  position: absolute;
  bottom: 0;
  right: 0;
}

/**/
.home_contents1_wrap{
  /*width: 100vw;*/
}
.home_contents1_wrap .item{
  display: flex;
}
.home_contents1_wrap .item:nth-child(even) .box1{
  order: 2;
}
.home_contents1_wrap .item:nth-child(even) .box2{
  order: 1;
}
.home_contents1_wrap .item .box1{
  width: 50%;
  height: 396px;
  background: #0a1e58;
  color: #FFF;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.home_contents1_wrap .item .box2{
  width: 50%;
  height: 396px;
  background-position: center;
  background-size: cover;
}

.home_contents1_wrap .item .title{
  width: 100%;
  font-size: 32px;
  text-align: center;
}
.home_contents1_wrap .item .title em{
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 105px;
  line-height: 1;
  color: #0a1e58;
  text-shadow:0 0 2px #FFF;
}
.home_contents1_wrap .item .title span{
  display: block;
  font-size: 16px;
}
.home_contents1_wrap .item .link{
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

/* おすすめコンテンツ */
.home_reco_slider{
  
}
.home_reco_slider .thumb{
  display: block;
  height: 228px;
  background-size: cover;
  background-position: center;
}
.home_reco_slider .title{
  background: #e3e9f1;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3888;
  padding: 16px 25px;
}
.home_reco_slider .title a{
  display: flex;
}

/* Voice */
.home_voice_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
}
.home_voice_items .item{
  width: 50%;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}
.home_voice_items .item .link{
  position: absolute;
  bottom: 50px;
  left: 30px;
}

/**/
.home_contents2_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.home_contents2_items .item{
  width: 33.333%;
  padding-left: 15px;
  padding-right: 15px;
}
.home_contents2_items .item:nth-child(n+4){
  margin-top: 30px;
}

/**/
.home_sns_items{
  display: flex;
  /*flex-wrap: wrap;*/
  justify-content: space-between;
  margin-left: -5px;
  margin-right: -5px;
  margin-top: 100px;
}
.home_sns_items .item{
  /*width: 33.333%;*/
  padding-left: 5px;
  padding-right: 5px;
}
.home_sns_items .item:nth-child(n+4){
  margin-top: 30px;
}

/**/
.home_recruit_wrap{
  height: 300px;
  background-image: url('/img/home/recruit_bg.jpg');
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto 100%;
  position: relative;
}
.home_recruit_wrap .home_tt1{
  width: 360px;
  position: relative;
  top: -25px;
}
.home_recruit_wrap .home_tt1:after{
  right: 85px;
  width: 155px;
}

.home_recruit_wrap .txt{
  position: absolute;
  width: 100%;
  bottom: 90px;
  right: 20px;
  font-size: 18px;
  text-align: right;
  filter:drop-shadow(0px 0px 2px #FFF) drop-shadow(0px 0px 2px #FFF) drop-shadow(0px 0px 2px #FFF) drop-shadow(0px 0px 2px #FFF) drop-shadow(0px 0px 2px #FFF)drop-shadow(0px 0px 2px #FFF);
}
.home_recruit_wrap .link{
  position: absolute;
  right: 20px;
  bottom: 25px;
}
.home_recruit_wrap .link a{
  display: block;
  width: 325px;
  padding: 8px;
  border: 1px solid #FFF;
  background: #4169e1;
  color: #FFF;
  text-align: center;
  position: relative;
}
.home_recruit_wrap .link a:after{
  /*content: "\f054";*/
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}



/* **********************************
 *  代表挨拶
 * ********************************* */
.pg_greeting{
  
}
.pg_greeting .section#sec1{
  
}
.pg_greeting .section#sec2{
  margin-top: 90px;
  padding-top: 50px;
  border-top: 1px dotted;
}



.greeting_prof{
  display: flex;
  /*flex-wrap: wrap;*/
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
}
.greeting_prof .box1{
  
}
.greeting_prof .box2{
  
}

.pg_contents{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pg_contents + .pg_contents{
  margin-top: 60px;
}
.pg_contents .box{
  width: 100%;
}
.pg_contents .box + .box{
  margin-top: 30px;
}
.pg_contents .box1{
  width: 66.5%;
}
.pg_contents .box2{
  width: 28%;
  text-align: right;
}

.pg_contents h2{
  font-size: 21px;
  margin-bottom: 20px;
}
.pg_contents .point_tt{
  display: flex;
  align-items: center;
  width: 100%;
  height: 62px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-left: 170px;
  margin-bottom: 10px;
  position: relative;
}
.pg_contents .point_tt:before{
  content: "";
  width: 145px;
  height: 62px;
  background-image: url('/img/point_tt_icon.png');
  background-position: left bottom;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
}
.pg_contents .point_tt:after{
  content: "";
  height: 3px;
  background: #f6a900;
  position: absolute;
  left: 25px;
  right: 0;
  bottom: 0;
}

.pg_contents .txt{
  line-height: 2;
}
.pg_contents .txt + .txt{
  margin-top: 15px;
}
.pg_contents .txt strong{
  color: #ff0000;
}
.pg_contents .txt strong.blue{
  color: #4f57f5;
}
.pg_contents .txt .marker{
  background: linear-gradient(transparent 50%, #fff100 0%);
}
.pg_contents .txt a{
  color: #4f57f5;
}

.pg_contents .link{
  text-align: right;
  margin-top: 20px;
}
.pg_contents .link a{
  display: inline-block;
  width: 280px;
  max-width: 100%;
  padding: 10px;
  border: 1px solid #233481;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.pg_contents .link a:after{
  /*content: "\f054";*/
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.pg_contents .label{
  margin-bottom: 10px;
}
.pg_contents .label span{
  display: inline-block;
  width: 160px;
  border-radius: 18px;
  background: #e2424e;
  color: #FFF;
  text-align: center;
  padding: 2px;
}

/**/
.pg_menu_wrap{
  margin-top: 130px;
}
.pg_menu_items{
  display: flex;
  flex-wrap: wrap;
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
.pg_menu_items li{
  width: 25%;
  padding: 0 5px;
  font-size: 14px;
  text-align: center;
}
.pg_menu_items li:nth-child(n+5){
  margin-top: 20px;
}
.pg_menu_items li a{
  
}
.pg_menu_items li a span{
  display: block;
}

.pg_menu_about li a{
  color: #50b739;
}
.pg_menu_admission li a{
  color: #f15050;
}
.pg_menu_features li a{
  color: #2f9aee;
}



/* **********************************
 *  指導方針
 * ********************************* */
.pg_line{
  
}
.pg_line .section#sec1{
  
}
.pg_line .section#sec2{
  margin-top: 80px;
}
.pg_line .section#sec3{
  margin-top: 80px;
}

.line_policy{
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px dotted;
  padding: 15px 0;
}
.line_policy dt{
  width: 60px;
  font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 38px;
  letter-spacing: 0.1em;
}
.line_policy dd{
  width: calc(100% - 60px);
  line-height: 1.875;
}
.line_policy dd strong{
  color: #ff0000;
  font-weight: 700;
}

.line_calic{
  border: 1px solid #c9c9c9;
  margin-left: 7px;
  margin-top: 60px;
  padding: 40px 20px 15px;
  position: relative;
}
.line_calic.no_bdr{
  border-left: 0;
  border-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.line_calic .title{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  width: 192px;
  height: 48px;
  position: absolute;
  left: -7px;
  top: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.line_calic .title.color1{
  background-image: url('/img/line/icon_bg1.png');
}
.line_calic .title.color2{
  background-image: url('/img/line/icon_bg2.png');
}
.line_calic .title.color3{
  background-image: url('/img/line/icon_bg3.png');
}
.line_calic .title.color4{
  background-image: url('/img/line/icon_bg4.png');
}
.line_calic .title.color5{
  background-image: url('/img/line/icon_bg5.png');
}
.line_calic .title.color6{
  background-image: url('/img/line/icon_bg6.png');
}
.line_calic .title.color7{
  background-image: url('/img/line/icon_bg7.png');
}
.line_calic .title.color8{
  background-image: url('/img/line/icon_bg8.png');
}
.line_calic .title.color9{
  background-image: url('/img/line/icon_bg9.png');
}
.line_calic .title.color10{
  width: 300px;
  color: #FFF;
  background-image: url('/img/line/icon_bg10.png');
}
.line_calic .title.color11{
  width: 300px;
  color: #FFF;
  background-image: url('/img/line/icon_bg11.png');
}
.line_calic .title.color12{
  width: 300px;
  color: #FFF;
  background-image: url('/img/line/icon_bg12.png');
}

.line_calic .title.staff1{
  background-image: url('/img/staff/icon_bg1.png');
}
.line_calic .title.staff2{
  background-image: url('/img/staff/icon_bg2.png');
}
.line_calic .title.staff3{
  background-image: url('/img/staff/icon_bg3.png');
}
.line_calic .title.staff4{
  background-image: url('/img/staff/icon_bg4.png');
}
.line_calic .title.staff5{
  background-image: url('/img/staff/icon_bg5.png');
}
.line_calic .title.staff6{
  background-image: url('/img/staff/icon_bg6.png');
}
.line_calic .title.staff7{
  background-image: url('/img/staff/icon_bg7.png');
}


.line_calic .title.point{
  text-align: left;
  justify-content: flex-start;
}


.line_calic .title span{
  
}
.line_calic .txt{
  line-height: 2;
}
.line_calic .teacher{
  text-align: right;
  font-weight: 700;
}

.line_calic .sche{
  display: flex;
}
.line_calic .sche li{
  display: flex;
  align-items: center;
  width: 385px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-left: 42px;
}
.line_calic .sche li:before{
  content: "";
  width: 34px;
  height: 21px;
  background-size: contain;
  position: absolute;
  left: 0;
}
.line_calic .sche.color1 li:before{
  background-image: url('/img/curriculum/icon1.png');
}
.line_calic .sche.color2 li:before{
  background-image: url('/img/curriculum/icon2.png');
}
.line_calic .sche.color3 li:before{
  background-image: url('/img/curriculum/icon3.png');
}

@media(min-width:1220px){
  .line_calic .sche li{
    white-space: nowrap;
  }
}

/* **********************************
 *  スケジュール
 * ********************************* */
.pg_schedule{
  
}
.pg_schedule .section#sec1{
  
}
.pg_schedule .section#sec2{
  margin-top: 100px;
}

.schedule_img{
  margin-top: 70px;
}


/* **********************************
 *  
 * ********************************* */
.pg_env{
  
}
.pg_env .section + .section{
  margin-top: 80px;
}
.pg_env .tt2{
  letter-spacing: -1px;
  padding: 0 10px;
}

/* **********************************
 *  
 * ********************************* */
.pg_facility{
  
}
.pg_facility .section{
  margin-top: 100px;
}
.pg_facility .section#sec1{
  margin-top: 0px;
}
.pg_facility .section#sec2{
  margin-top: 50px;
}


.facility_nav{
  display: flex;
  border: 1px solid #233481;
  border-bottom: 3px solid #233481;
  margin-top: 40px;
}
.facility_nav li{
  width: 100%;
}
.facility_nav li+li{
  border-left: 1px solid #233481;
}
.facility_nav li a{
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 12px 5px 12px;
  position: relative;
}
.facility_nav li a:hover{
  padding: 8px 5px 16px;
}
.facility_nav li a:hover:after{
  /*content: "\f054";*/
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #233481;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  height: 9px;
}

/**/
.facility_tt1{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
  position: relative;
}
.facility_tt1:before,
.facility_tt1:after{
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
}
.facility_tt1:before{
  height: 1px;
  bottom: 5px;
}
.facility_tt1:after{
  height: 2px;
  bottom: 0;
}
.facility_tt1 span{
  display: inline-block;
  width: 300px;
  padding: 6px 20px;
  border-radius: 10px 10px 0 0;
  background: #CCC;
  color: #FFF;
}

.facility_tt1.color1:before,
.facility_tt1.color1:after,
.facility_tt1.color1 span{
  background: #f39800;
}
.facility_tt1.color2:before,
.facility_tt1.color2:after,
.facility_tt1.color2 span{
  background: #009e96;
}
.facility_tt1.color3:before,
.facility_tt1.color3:after,
.facility_tt1.color3 span{
  background: #8957a1;
}
.facility_tt1:before,
.facility_tt1:after,
.facility_tt1.color4 span{
  background: #f39800;
}
.facility_tt1:before,
.facility_tt1:after,
.facility_tt1.color5 span{
  background: #f39800;
}

.facility_tt2{
  /*display: flex;*/
  height: 98px;
  padding-left: 105px; 
  background-repeat: no-repeat;
  background-position: left bottom;
  font-size: 18px;
  font-weight: 700;
}
.facility_tt2.bg1{
  background-image: url('/img/facility/facility_tt2_bg1.png');
}
.facility_tt2.bg2{
  background-image: url('/img/facility/facility_tt2_bg2.png');
}
.facility_tt2.bg3{
  background-image: url('/img/facility/facility_tt2_bg3.png');
}
.facility_tt2 .type{
  display: inline-block;
  width: 160px;
  padding: 2px 0;
  margin-bottom: 10px;
  background: #84ccc9;
  border-radius: 14px;
  font-size: 14px;
  text-align: center;
}
.facility_tt2 .dist{
  display: flex;
  align-items: center;
  font-size: 16px;
  float: right;
}
.facility_tt2 .dist:before{
  content: "";
  display: inline-block;
  width: 19px;
  height: 32px;
  background-image: url('/img/facility/facility_tt2_bg_r.png');
  margin-right: 10px;
}


.facility_mv{
  margin-bottom: 25px;
}
.facility_items{
  
}
.facility_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.facility_items .item{
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.facility_items .item:nth-child(n+3){
  margin-top: 20px;
}
.facility_items .item .inner{
  padding: 9px 12px;
  height: 100%;
  border: 1px solid #233481;
}
.facility_items .item .img{
  display: block;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  margin-bottom: 10px;
}

.facility_items .item .img img{
  width: 100%;
}
.facility_items .item .title{
  font-weight: 700;
  letter-spacing: 0.2em;
  border-left: 5px solid #233481;
  border-bottom: 1px solid #898989;
  padding: 9px 15px;
  margin-bottom: 10px;
}
.facility_items .item .txt{
  line-height: 1.875;
}

/* **********************************
 *  
 * ********************************* */
.pg_staff{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}

.staff_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: 30px;
}
.staff_items .item{
  /*width: 50%;*/
  width: 400px;
  padding-left: 10px;
  padding-right: 10px;
}
.staff_items .item:nth-child(n+3){
  margin-top: 80px;
}
.staff_items .item .inner{
  /*height: 100%;*/
  height: 420px;
  background-image: url('/img/staff/staff_bg.png');
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center top;
  position: relative;
}
.staff_items .item .inner.bg2{
  background-image: url('/img/staff/staff_bg2.png');
}
.staff_items .item .inner.bg3{
  background-image: url('/img/staff/staff_bg3.png');
}
.staff_items .item .inner.bg4{
  background-image: url('/img/staff/staff_bg4.png');
}
.staff_items .item .inner.bg5{
  background-image: url('/img/staff/staff_bg5.png');
}
.staff_items .item .inner.bg6{
  background-image: url('/img/staff/staff_bg6.png');
}
.staff_items .item .inner.bg7{
  background-image: url('/img/staff/staff_bg7.png');
}

.staff_items .item .img{
  display: block;
  text-align: right;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.staff_items .item .img img{
  width: 262px;
  max-width: 100%;
}
.staff_items .item .title{
  margin-right: 50px;
}
.staff_items .item .title .post{
  display: block;
  font-size: 18px;
  border-bottom: 1px solid #898989;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.staff_items .item .title .name{
  display: block;
  font-size: 20px;
}
.staff_items .item .name_en{
  font-family: "CALIFB", 'Noto Serif JP', serif;
  font-size: 38px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #b1b1b1;
   -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  position: absolute;
  bottom: 15px;
  left: 5px;
}
.staff_items .item .name_en:first-letter{
  color: #4169e1;
}

/* **********************************
 *  
 * ********************************* */
.pg_album{
  
}
.pg_album .section+.section{
  margin-top: 50px;
}
.pg_album .section#sec1{
  
}
.pg_album .section#sec2{
  
}
.pg_album .section#sec3{
  
}


.album_tt1,
.album_tt2,
.album_tt3,
.album_tt4,
.album_tt5{
  font-family: "Noto Sans JP";
  justify-content: flex-start;
  color: #4b71e3;
}
.album_tt1 span,
.album_tt2 span,
.album_tt3 span,
.album_tt4 span,
.album_tt5 span{
  font-family: "Noto Serif JP";
  font-weight: 500;
}
.album_tt1{
  background-color: #f6d2e2;
  text-shadow: 0 0 1px #f6d2e2, 0 0 1px #f6d2e2, 0 0 1px #f6d2e2;
}
.album_tt2{
  background-color: #bdd2ee;
  text-shadow: 0 0 1px #bdd2ee, 0 0 1px #bdd2ee, 0 0 1px #bdd2ee;
}
.album_tt3{
  background-color: #fadbc5;
  text-shadow: 0 0 1px #fadbc5, 0 0 1px #fadbc5, 0 0 1px #fadbc5;
}
.album_tt4{
  background-color: #bdefed;
  text-shadow: 0 0 1px #bdefed, 0 0 1px #bdefed, 0 0 1px #bdefed;
}
.album_tt5{
  background-color: #eee9a1;
  text-shadow: 0 0 1px #eee9a1, 0 0 1px #eee9a1, 0 0 1px #eee9a1;
}


.album_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.album_items .item{
  width: 33.333%;
  padding-left: 12px;
  padding-right: 12px;
}
.album_items .item:nth-child(n+4){
  margin-top: 15px;
}
.album_items .item .inner{
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.album_items .item .inner:before{
  content: "";
  display: block;
  padding-top: 80.7%;
}

/* **********************************
 *  
 * ********************************* */
.pg_movie{
  
}
.pg_xxxx .section#sec1{
  
}

.movie_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -13px;
  margin-right: -13px;
}
.movie_items .item{
  width: 50%;
  padding-left: 13px;
  padding-right: 13px;
}
.movie_items .item:nth-child(n+3){
  margin-top: 60px;
}
.movie_items .item .inner{
  height: 100%;
}
.movie_items .item .movie{
  margin-bottom: 5px;
}
.movie_items .item .title{
  font-size: 17px;
  font-weight: 700;
  border-bottom: 1px solid #898989;
  padding: 8px 5px 8px 20px;
  margin-bottom: 10px;
  position: relative;
}
.movie_items .item .title:before,
.movie_items .item .title:after{
  content: "";
  background: #233481;
  position: absolute;
  top: 0;
  bottom: 0;
}
.movie_items .item .title:before{
  left: 0;
  width: 5px;
}
.movie_items .item .title:after{
  left: 8px;
  width: 2px;
}
.movie_items .item .txt{
  
}
.movie_items .item .link{
  margin-top: 25px;
}
.movie_items .item .link a{
  display: block;
  border: 1px solid #233481;
  padding: 8px 25px 8px 12px;
  position: relative;
}
.movie_items .item .link a:after{
  content: "\f56d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* **********************************
 *  
 * ********************************* */
.pg_course{
  
}
.pg_course .section#sec1{
  
}
.pg_course .section#sec2{
  margin-top: 80px;
}
.pg_course .section#sec3{
  margin-top: 65px;
}
.pg_course .section#sec4{
  margin-top: 70px;
}
.pg_course .section#sec5{
  margin-top: 130px;
}

.pg_course .tt2{
  background-color: #ae5da1;
      text-shadow: 0 0 1px #ae5da1, 0 0 1px #ae5da1, 0 0 1px #ae5da1;
}

.course_guide{
  margin-top: 30px;
}
.course_imgs{
  margin-top: 120px;
}
.course_imgs li+li{
  margin-top: 30px;
}
.course_imgs li a{
  display: block;
  position: relative;
}
.course_imgs li a:after{
  content: "";
  width: 128px;
  height: 38px;
  background-image: url('/img/course/more_btn.png');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 12px;
  right: 16px;
}


.course_contents{
  
}
.course_contents + .course_contents{
  margin-top: 100px;
}
.course_contents .box{
  
}
.course_contents .title{
  font-size: 18px;
  font-weight: 700;
  border-bottom: 3px solid #bfbfbf;
  padding: 5px 0;
  margin-bottom: 10px;
  color: #ae5da1;
}
.course_contents .txt{
  line-height: 1.875;
}
.course_contents .txt{
  
}
.course_contents .txt_li1,
.course_contents .txt_li2{
  line-height: 2.25;
  letter-spacing: 0.2em;
}
.course_contents * + .txt_li1{
  margin-top: 20px;
}
.course_contents * + .txt_li2{
  margin-top: 30px;
}
.course_contents .txt_li1 li,
.course_contents .txt_li2 li{
  padding-left: 2em;
  position: relative;
}
.course_contents .txt_li1 li:before,
.course_contents .txt_li2 li:before{
  position: absolute;
  margin-left: -2em;
}
.course_contents .txt_li1 li:before{
  content: "■";
  color: #ae5da1;
}
.course_contents .txt_li2 li:before{
  content: "※";
}

.course_contents .txt_li1 li{
  font-weight: 700;
}

.course_contents .txt_li1 li+li,
.course_contents .txt_li2 li+li{
  /*margin-top: 5px;*/
}
.course_contents .txt_li1 li strong{
  color: #f58003;
}
.course_contents .txt_li2 li strong{
  color: #ff0000;
}

.course_contents .txt_li3{
  line-height: 1.875;
}
.course_contents .txt_li3 li{
  
}


.course_sche{
  margin-top: 15px;
  margin-bottom: 20px;
}

/**/
.course_total_price{
  display: flex;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #181818;
  margin-bottom: 40px;
}
.course_total_price dt,
.course_total_price dd{
  width: 50%;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.course_total_price dt{
  background: #c490bf;
}
.course_total_price dd{
  background: #eeeeee;
}

/**/
.course_price_items{
  
}
.course_price_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.course_price_items .item{
  width: 50%;
  padding-left: 10px;
  padding-right: 10px;
}
.course_price_items .item:nth-child(n+3){
  margin-top: 20px;
}
.course_price_items .item .inner{
  height: 100%;
  border-bottom: 1px solid #c9c9c9;
  border-right: 1px solid #c9c9c9;
  padding-bottom: 10px;
  padding-left: 10px;
}
.course_price_items .item .title{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
.course_price_items .item .title span{
  display: inline-block;
  background: #c490bf;
  color: #FFF;
  padding: 2px 20px;
}
.course_price_items .item ul{
  line-height: 2.25;
  letter-spacing: 0.2em;
}
.course_price_items .item ul li{
  padding-left: 2em;
  position: relative;
}
.course_price_items .item ul li+li{
}
.course_price_items .item ul li:before{
  content: "■";
  position: absolute;
  margin-left: -1.8em;
  color: #c490bf;
}
.course_price_items .item .txt{
  font-weight: 700;
  padding-left: 0.2em;
}
.course_price_items .item ul + p{
  margin-top: 5px;
  letter-spacing: 0.2em;
}

.course_price_txt1{
  font-size: 15px;
  text-align: right;
}
.course_price_txt2{
  margin-top: 30px;
}

.course_cert_txt{
  margin-bottom: 30px;
}
.course_cert_txt strong{
  color: #ff0000;
}

/* **********************************
 *  
 * ********************************* */
.pg_curriculum{
  
}
.pg_curriculum .section#sec1{
  
}
.pg_curriculum .section#sec2{
  margin-top: 50px;
}
.pg_curriculum .section#sec3{
  
}

.curriculum_li{
  line-height: 2.25;
}
.curriculum_li li{
  position: relative;
  padding-left: 2.625em;
}
.curriculum_li li+li{
  
}
.curriculum_li li span{
  position: absolute;
  left: 0;
}
.curriculum_li li strong{
  color: #ff0000;
}

/* **********************************
 *  
 * ********************************* */
.pg_tuition{
  
}
.pg_tuition .section#sec1{
  
}
.pg_tuition .section#sec2{
  margin-top: 50px;
}

.tuition_tt1{
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #FFF;
  background: #4b71e3;
  padding: 10px;
  margin-bottom: 10px;
}
.tuition_table_box{
  
}
.tuition_table_box + .tuition_table_box{
  margin-top: 20px;
}
.tuition_table_box .txt1{
  font-size: 15px;
  text-align: right;
}
.tuition_table_box .img{
  margin-bottom: 10px;
}


.tuition_li1{
  
}
.tuition_li1 li{
  text-indent: -1.0em;
  padding-left: 1.2em;
}
.tuition_li1 li+li{
  margin-top: 5px;
}
.tuition_li1 li:before{
  content: "■";
  color: #4b71e3;
  margin-left: -0.2em;
  margin-right: 0.2em;
}
.tuition_li2{
  margin-bottom: 15px;
}
.tuition_li2 li{
  text-indent: -1.0em;
  padding-left: 1.2em;
}
.tuition_li2 li+li{
  margin-top: 5px;
}
.tuition_li2 li:before{
  content: "●";
  color: #f77c7c;
  margin-left: -0.2em;
  margin-right: 0.2em;
}

/**/
.tuition_contents{
  border: 1px solid #4b71e3;
  border-top: 0;
}
.tuition_contents + .tuition_contents{
  margin-top: 20px;
}
.tuition_contents .tuition_tt1{
  font-size: 16px;
  margin-bottom: 0;
}
.tuition_contents .box{
  padding: 15px 10px;
  line-height: 1.75;
}
.tuition_contents .box ul{
  margin-top: 5px;
}
.tuition_contents .box ul li+li{
  margin-top: 2px;
}
.tuition_contents .box a{
  color: #4b71e3;
}
.tuition_contents .box_wrap{
  display: flex;
  flex-wrap: wrap;
  padding: 10px 10px;
}
.tuition_contents .box_wrap .box1{
  width: 50%;
}
.tuition_contents .box_wrap .box2{
  width: 50%;
  border-left: 2px solid #4b71e3;
  padding-left: 15px;
}
.tuition_contents .box_wrap dl{
  display: flex;
  line-height: 1.875;
}
.tuition_contents .box_wrap dl dt{
  /*width: 70px;*/
  white-space: nowrap;
  margin-right: 20px;
}


/* **********************************
 *  
 * ********************************* */
.pg_flow{
  
}
.pg_flow .section#sec1{
  
}
.pg_flow .section#sec2{
  margin-top: 100px;
}


.flow_step_items{
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
}
.flow_step_items .item{
  width: 28.88%;
}
.flow_step_items .item .inner{
  height: 100%;
  min-height: 170px;
  border: 1px solid #06d3c9;
  position: relative;
}
.flow_step_items .item .num{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  background: #06d3c9;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.flow_step_items .item .num em{
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffff00;
  color: #06d3c9;
  line-height: 34px;
  margin-left: 12px;
}

.flow_step_items .item .txt{
  line-height: 2.5;
  text-align: center;
}
.flow_step_items .item .txt strong{
  color: #e70505;
}
.flow_step_items .item .link{
  text-align: center;
  margin-top: 15px;
}
.flow_step_items .item .link a{
  display: block;
  width: 200px;
  max-width: 90%;
  margin: 0 auto;
  padding: 5px;
  background: #e03636;
  color: #FFF;
  text-align: center;
  border-radius: 5px;
}

.flow_step_items .arrow{
  display: flex;
  justify-content: center;
  align-items: center;
}
.flow_step_items .arrow.r{
  width: 6.66%;
  padding: 2px;
}
.flow_step_items .arrow.d{
  width: 100%;
  padding: 5px;
}

/**/
.flow_contents{
  
}
.flow_contents + .flow_contents{
  margin-top: 45px;
}
.flow_contents .title{
  position: relative;
  margin-bottom: 20px;
}
.flow_contents .title:after{
  content: "";
  width: 100%;
  height: 2px;
  background: #4b71e3;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: -1;
}
.flow_contents .title span{
  display: block;
  width: 240px;
  padding: 12px 25px;
  background: #4b71e3;
  color: #FFF;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.flow_contents .txt{
  padding-left: 25px;
}
.flow_contents .txt dl{
  display: flex;
}
.flow_contents .txt dl dt{
  margin-right: 30px;
  white-space: nowrap;
}
.flow_contents .txt dl dd{
  
}

/* **********************************
 *  
 * ********************************* */
.pg_pickup{
  
}
.pg_pickup .section#sec1{
  
}
.pg_pickup .section#sec2{
  margin-top: 150px;
}

.pg_pickup .post_items .item.single_item{
  border: 0;
}
.pg_pickup .post_items .item.single_item .title{
  background: #009e96;
  color: #FFF;
  font-size: 20px;
  padding: 8px 5px;
  margin-bottom: 0;
  border: 0;
  position: relative;
}
.pg_pickup .post_items .item.single_item .title:before{
  content: "";
  height: 2px;
  background: #FFF;
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 5px;
}
.pg_pickup .post_items .post_content{
}

.pickup_nav{
  
}

.pickup_nav{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
}
.pickup_nav li{
  width: 14.2857%;
  padding-left: 5px;
  padding-right: 5px;
}
.pickup_nav li:nth-child(n+8){
  margin-top: 10px;
}
.pickup_nav li a{
  display: block;
  background: #e1edf9;
  border: 1px solid #233481;
  border-radius: 19px;
  padding: 9px 2px;
}
.pickup_nav li.on a{
  background: #448aca;
  color: #FFF;
}

/**/
.pickup_items{
  
}
.pickup_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}
.pickup_items .item{
  width: 33.333%;
  padding-left: 8px;
  padding-right: 8px;
}
.pickup_items .item:nth-child(n+4){
  margin-top: 80px;
}
.pickup_items .item .inner{
  background: #e3e9f1;
  height: 100%;
  padding-bottom: 10px;
}
.pickup_items .item .img{
  display: block;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.pickup_items .item .img:before{
  content: "";
  display: block;
  padding-top: 68%;
}

.pickup_items .item .title{
  padding: 0 10px;
  margin-top: 10px;
}
.pickup_items .item .link{
  text-align: center;
  margin-top: 5px;
  padding: 0 10px;
}
.pickup_items .item .link a{
  display: inline-block;
  width: 160px;
  max-width: 100%;
  background: #FFF;
  border-radius: 15px;
  font-size: 14px;
  padding: 3px 0;
}


/* **********************************
 *  
 * ********************************* */
.pg_faq{
  
}
.pg_faq .section#sec1{
  
}
.pg_faq .section#sec2{
  
}
.pg_faq .section#sec3{
  
}

.faq_wrap{
  
}
.faq_wrap + .faq_wrap{
  margin-top: 100px;
}
.faq_wrap .tt2{
  background-color: #233481;
  text-shadow: 0 0 1px #233481, 0 0 1px #233481, 0 0 1px #233481;
}

.faq_item{
  padding-top: 30px;
}
.faq_item + .faq_item{
  margin-top: 35px;
}
.faq_item dl{
  border: 1px solid #c9c9c9;
}
.faq_item dl dt{
  display: block;
  background: #eeeeee;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 20px 12px 95px;
  position: relative;
  cursor: pointer;
}
.faq_item dl dd{
  display: block;
  line-height: 1.875;
  padding: 45px 30px 40px 95px;
  position: relative;
  
}
.faq_item dl dd a{
  color: #3d61e8;
  font-weight: 700;
}

.faq_item dl dt:before{
  content: "";
  width: 70px;
  height: 70px;
  background-image: url('/img/faq/icon_q.png');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -31px;
  left: 9px;
}
.faq_item dl dt:after{
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  color: #233481;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.faq_item dl.open dt:after{
  content: "\f106";
}

.faq_item dl dd:before{
  content: "";
  width: 59px;
  height: 58px;
  background-image: url('/img/faq/icon_a.png');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 30px;
  left: 13px;
}


/* **********************************
 *  卒業生の声
 * ********************************* */
.pg_voice1{
  
}
.pg_voice1 .section#sec1{
  
}
.pg_voice1 .section#voice1{
  margin-top: 80px;
}
.pg_voice1 .section#voice2{
  margin-top: 150px;
}

/**/
.vocie_nav{
  display: flex;
  margin-top: 25px;
}
.vocie_nav li{
  width: 50%;
  background: #e5e5e5;
  border-bottom: 3px solid #233481;
  padding-bottom: 15px;
  position: relative;
}
.vocie_nav li:after{
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  position: absolute;
  bottom: -7px;
  right: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.vocie_nav li a{
  display: block;
  font-weight: bold;
  text-align: center;
  padding: 14px 10px;
}
.vocie_nav li.color1 a{
  background: #6b8ae6;
  color: #FFF;
}
.vocie_nav li.color2 a{
  background: #bfd5f2;
}

/**/
.voice_student_items{
  
}
.voice_student_items .item{
  
}
.voice_student_items .item .inner{
  display: flex;
  justify-content: space-between;
  padding: 40px 0 80px;
  margin-right: 10px;
  position: relative;
  
}
.voice_student_items .item .inner:after{
  content: "";
  width: 265px;
  height: 325px;
  background: #dae7fa;
  position: absolute;
  /*top: 50%;
  right: 160px;
  -webkit-transform: skew(-20deg, 0deg) translate(0, -50%);
  transform: skew(-20deg, 0deg) translate(0, -50%);*/
  
  top: 50px;
  right: 90px;
  -webkit-transform: skew(-20deg, 0deg) ;
  transform: skew(-20deg, 0deg) ;
  
}
.voice_student_items .item .inner .box1,
.voice_student_items .item .inner .box2{
  position: relative;
  z-index: 1;
}
.voice_student_items .item .inner .box1{
  width: 62.77%;
  padding-left: 10px;
  padding-right: 10px;
}
.voice_student_items .item .inner .box2{
  width: 31.11%;
  position: absolute;
  right: 0;
  top: 63px;
  /*top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);*/
}
.voice_student_items .item + .item{
  margin-top: 10px;
}
.voice_student_items .item:nth-child(even){
  background: #dae7fa;
  /*margin-top: 50px;*/
}
.voice_student_items .item:nth-child(even) .inner:after{
  background: #FFF;
}
.voice_student_items .item .title{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #898989;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
.voice_student_items .item .title strong{
  color: #f93939;
}
.voice_student_items .item .name{
  text-align: right;
}
.voice_student_items .item .txt{
  margin-top: 20px;
  line-height: 1.875;
}
.voice_student_items .item .more{
  text-align: right;
  margin-top: 5px;
}
.voice_student_items .item .more a{
  display: inline-block;
  width: 190px;
  padding: 5px;
  text-align: center;
  border: 1px solid #c9c9c9;
  border-radius: 16px;
  background: #FFF;
  font-size: 14px;
}

.voice_student_items.reverse{
  
}
.voice_student_items.reverse .item .inner{
  justify-content: flex-end;
  margin-right: 0;
  margin-left: 10px;
}
.voice_student_items.reverse .item .inner .box1{
}
.voice_student_items.reverse .item .inner .box2{
  left: 0;
  right: auto;
}
.voice_student_items.reverse .item .inner:after{
  left: 60px;
  right: auto;
}

/* **********************************
 *  保護者の声
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}

.voice_parent_items{
  
}
.voice_parent_items .item{
  
}
.voice_parent_items .item+.item{
  margin-top: 50px;
}
.voice_parent_items .inner{
  background: #f1f8df;
  border: 1px solid #233481;
  padding: 20px 10px 15px;
  
}
.voice_parent_items .title{
  font-size: 21px;
  font-weight: 700;
  border-bottom: 1px solid #898989;
  padding: 5px 3px;
  margin-bottom: 20px;
}
.voice_parent_items .meta{
  display: flex;
  justify-content: space-between;
  background: #FFF;
  padding: 6px 10px;
  font-size: 18px;
}
.voice_parent_items .meta .txt1{
  color: #4b71e3;
  margin-right: 30px;
  white-space: nowrap;
  padding-left: 35px;
  position: relative
}
.voice_parent_items .meta .txt2{
  color: #f4449b;
  padding-left: 35px;
  position: relative
}
.voice_parent_items .meta .txt1:before,
.voice_parent_items .meta .txt2:before{
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  /*margin-right: 15px;*/
  position: absolute;
  left: 0;
}
.voice_parent_items .meta .txt1:before{
  content: "\f4ad";
}
.voice_parent_items .meta .txt2:before{
  content: "\f5a2";
}


.voice_parent_items .comment{
  margin-top: 15px;
}
.voice_parent_items .more{
  margin-top: 15px;
}
.voice_parent_items .more a{
  display: block;
  font-size: 14px;
  background: #FFF;
  text-align: center;
  padding: 6px;
}


/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}

.question_wrap{
  
}
.question_wrap + .question_wrap{
  margin-top: 75px;
}
.question_wrap .tt2{
  letter-spacing: 0;
  font-size: 19px;
}

/* **********************************
 *  
 * ********************************* */
.pg_dormitory{
  
}
.pg_dormitory .section#sec1{
  
}
.pg_dormitory .section#sec2{
  margin-top: 100px;
}

/* **********************************
 *  
 * ********************************* */
.pg_few{
  
}
.pg_few .section#sec1{
  
}
.pg_few .section#sec2{
  margin-top: 100px;
}


/* **********************************
 *  
 * ********************************* */
.pg_support{
  
}
.pg_support .section#sec1{
  
}
.pg_support .section#sec2{
  margin-top: 100px;
}


.support_imgs{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.support_imgs li{
  width: 50%;
  padding-left: 10px;
  padding-right: 10px;
}
.support_imgs li:nth-child(n+3){
  margin-top: 20px;
}

/* **********************************
 *  
 * ********************************* */
.pg_results{
  
}

.results_nav{
  background: #233481;
  padding: 15px 10px 10px;
}
.results_nav ul{
  display: flex;
  flex-wrap: wrap;
  margin-left: -4px;
  margin-right: -4px;
}
.results_nav ul li{
  width: 16.666%;
  padding-left: 4px;
  padding-right: 4px;
}
.results_nav:not(.interview_nav) ul li:nth-child(n+7){
  display: none;
  margin-top: 8px;
}
.results_nav.open ul li:nth-child(n+7){
  display: block;
}

.results_nav ul li a{
  display: block;
  background: #FFF;
  padding: 7px 5px;
  border-radius: 5px;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.results_nav ul li a:after{
  /*content: "\f054";*/
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.results_nav ul li.on a{
  background: #4b71e3;
  color: #FFF;
}

.results_nav .more{
  margin-top: 10px;
}
.results_nav .more a{
  display: block;
  background: #eeeeee;
  padding: 4px;
  font-size: 12px;
  text-align: center;
}

/**/
.results_hdr{
  margin-top: 80px;
  margin-bottom: 35px;
}

/**/
.results_row{
  
}
.results_row + .results_row{
  margin-top: 80px;
}
.results_row .box1{
  display: flex;
  align-items: center;
  border: 3px solid #233481;
  border-radius: 10px;
  position: relative;
  padding: 20px 60px 20px 35px;
  margin-bottom: 25px;
}
.results_row .box1:before{
  content: "";
  border: 1px solid #233481;
  border-radius: 10px;
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 7px;
  right: 7px;
  z-index: -1;
}
.results_row .box1 .title{
  display: flex;
  align-items: center;
  width: 66.25%;
  min-height: 86px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  border-right: 3px solid #233481;
  /*padding: 25px 0;*/
}
.results_row .box1 .total{
  width: 33.75%;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  text-align: right;
  padding: 0 15px;
  margin-left: 50px;
  background: linear-gradient(transparent 80%, #fff100 0%);
}
.results_row .box1 .total span{
  font-size: 60px;
  font-family: 'Hiragino Gothic Std', "ヒラギノ角ゴ Std", 'Hiragino Gothic Pro', 'ヒラギノ角ゴ Pro', 'Noto Sans JP', sans-serif;
  color: #4b71e3;
}
.results_row .box2{
  
}
.results_row .university{
  display: flex;
  flex-wrap: wrap;
  /*justify-content: space-between;*/
  margin-left: -20px;
  margin-right: -20px;
}
.results_row .university .item{
  width: 50%;
  padding-left: 20px;
  padding-right: 20px;
}
.results_row .university .item:nth-child(n+3){
  margin-top: 10px;
}
.results_row .university dl{
  display: flex;
  justify-content: space-between;
  background: #d6daf0;
  border-radius: 5px;
  padding: 5px 20px;
  line-height: 1;
}
.results_row .university dl dt{
  display: flex;
  align-items: center;
  width: 69%;
  font-size: 18px;
  font-weight: 700;
  border-right: 2px solid #233481;
  
}
.results_row .university dl dd{
  font-size: 20px;
  font-weight: 700;
  padding: 8px 0;
}
.results_row .university dl dd span{
  font-size: 34px;
  font-family: 'Hiragino Gothic Std', "ヒラギノ角ゴ Std", 'Hiragino Gothic Pro', 'ヒラギノ角ゴ Pro', 'Noto Sans JP', sans-serif;;
  color: #4b71e3;
}

/* **********************************
 *  
 * ********************************* */


.pamphlet_wrap{
  
}
.pamphlet_wrap + .pamphlet_wrap{
  margin-top: 90px;
}

.pamphlet_wrap h2{
  font-size: 21px;
  border-left: 5px solid #233481;
  border-bottom: 1px solid #c4c4c4;
  padding: 5px 15px;
  margin-bottom: 20px;
}

.fpamphlet_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
}
.fpamphlet_items .item{
  width: 33.333%;
  padding-left: 30px;
  padding-right: 30px;
}
.fpamphlet_items .item:nth-child(n+4){
  margin-top: 100px;
}
.fpamphlet_items .item .inner{
  height: 100%;
}
.fpamphlet_items .item .img{
  display: block;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #CCC;
  border: 1px solid #CCC;
}
.fpamphlet_items .item .img:before{
  content: "";
  display: block;
  padding-top: 120%;
}
.fpamphlet_items .item .title{
  text-align: center;
  margin-top: 10px;
}





/* **********************************
 *  
 * ********************************* */
.pg_company{
  
}
.pg_company .section#sec1{
  
}
.pg_company .section#sec2{
  
}
.pg_company .section#sec3{
  
}

/* **********************************
 *  会社概要
 * ********************************* */
.pg_company{
  
}
.pg_company .section#sec1{
  
}
.pg_company .section#sec2{
  
}
.pg_company .section#sec3{
  
}


/* **********************************
 *  お問い合わせ
 * ********************************* */
.pg_contact{
  
}
.pg_contact .section#sec1{
  
}
.pg_contact .section#sec2{
  
}
.pg_contact .section#sec3{
  
}

.contact_tt{
  text-align: center;
  font-weight: bold;
  font-size: 23px;
  letter-spacing: 0.2em;
}

.pg_contact .privacy{
  margin-top: 80px;
}
