@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;
}
*/

@font-face {
  font-family: 'maru';
  src: url('/font/maru.eot?') format('oldIE'),
    url('/font/maru.woff') format('woff'),
    url('/font/maru.ttf') format('truetype');
}
.maru{
  font-family: 'maru', 'Noto Sans JP', sans-serif;
}

@font-face {
  font-family: 'petita';
  src: url('/font/petita.eot?') format('oldIE'),
    url('/font/petita.woff') format('woff'),
    url('/font/petita.ttf') format('truetype');
}
.petita{
  font-family: 'petita';
}

@font-face {
  font-family: 'coves';
  src: url('/font/coves.eot?') format('oldIE'),
    url('/font/coves.woff') format('woff'),
    url('/font/coves.ttf') format('truetype');
}
.coves{
  font-family: 'coves';
}

/* ==========================================================================
   サイト毎の独自のスタイル
   ========================================================================== */

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #715a42;
  background: #f6f3ea;
  letter-spacing: 0.075em;
}

/* 基本フォント: 明朝 */
/**/
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: '游ゴシック体','Yu Gothic', 'YuGothic', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mincho{
  font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", 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;
}



/* スクロール テーブル */
.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;
  }
}


.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;
}

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
}
.container{
  width: 1130px;
  max-width: 100%;
  padding: 0 10px; 
  margin: 0 auto;
}

.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: 330px;
}

/* 共通の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: #f6f3ea;
}
.hdr1{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.hdr1_box1{
}
.hdr1_box2{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.hdr_logo{
  padding: 10px 0;
}
.hdr_logo img{
  display: block;
}

/* お問い合わせ */
.hdr_contact{
  display: flex;
  margin-right: 50px;
}
.hdr_contact a{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  /*background: #faebd7;*/
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
}
.hdr_contact a:hover{
  opacity: 0.8;
}
.hdr_contact a + a{
  margin-left: 12px;
}
.hdr_contact a.btn1{
  background-color: #de0506;
  color: #FFF;
}
.hdr_contact a.btn2{
  background-color: #f8921d;
  color: #FFF;
}
.hdr_contact a.btn3{
  background-color: #00a8a8;
  color: #FFF;
}

.hdr_contact a.tel{
  background: #fb940f;
  color: #FFF;
}
.hdr_contact a.email{
  background: #0f9152;
  color: #FFF;
}

.hdr_contact a.tel:before{
  
}
.hdr_contact a.email:before{
  
}

.hdr_tel{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  color: #f8921d;
  line-height: 1;
}
.hdr_tel span{
  display: block;
  font-size: 0.4666em;
  font-weight: 500;
  line-height: 1;
  margin-top: 5px;
}


/* メニュー */
.hdr_menu_btn{
  
}
.hdr_menu_btn button{
  background: #89d980;
  color: #FFF;
  border: 0;
  font-size: 13px;
  text-align: center;
  line-height: 1;
  width: 80px;
  height: 80px;
}
.hdr_menu_btn button:hover{
  opacity: 0.8;
}
.hdr_menu_btn button span{
  display: block;
}
.hdr_menu_btn button .fas{
  font-size: 2.615em;;
}

/* MV */
.mv{
  display: flex;
  height: 350px;
  position: relative;
  /*background-image: url('/img/mv1.jpg');*/
  background-image: url('/img/mv2.jpg');
  background-size: cover;
  background-position: center;
}
.mv{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 350px;
  position: relative;
}
.mv .mv_box{
  text-align: center;
}
.mv .catch{
  margin-top: 140px;
}
.mv .link{
  margin-top: 30px;
}

@media (max-width:374px){
  
}
@media (max-width:767px){
  
  .hdr1_box1{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    text-align: center;
  }
  .hdr_logo img{
    height: 36px;
    margin: 0 auto;
  }
  
  /* お問い合わせ */
  .hdr_contact{
    display: none;
  }
  
  /* メニュー */
  .hdr_menu_btn{
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
  }
  
  .hdr_menu_btn button{
    font-size: 12px;
    width: 50px;
    height: 50px;
  }
  .hdr_menu_btn button .fas{
    font-size: 2em;;
  }
  
  .pg_header .container{
    height: 250px;
  }
  
  .mv_box{
    padding: 0 15px;
  }
  
}
@media (min-width:768px){
  
  .header{

  }
  .header.fixed{
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    padding-bottom: 5px;
  }
  body{
    padding-top: 145px;
  }
  
  .hdr1{
    flex-wrap: nowrap;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .hdr1_box1{
    padding: 0;
    padding-left: 20px;
  }
  
  .hdr_contact{
    margin-left: auto;
    margin-right: 0;
  }
  .hdr_tel{
    font-size: 20px;
    margin-top: 10px;
    margin-left: auto;
  }
  
  /* お問い合わせ */
  .hdr_contact{
    margin-right: 10px;
  }
  .hdr_contact a{
    width: 120px;
    height: 35px;
    padding-bottom: 2px;
  }
  
  /* メニュー */
  .hdr_menu_btn{

  }
  .hdr_menu_btn button{
    font-size: 12px;
    width: 60px;
    height: 60px;
  }
  
  /* MV */
  .mv{
    height: 550px;
  }
  .mv .catch{
    margin-top: 190px;
    padding: 0 50px;
  }
  .mv .btn{
    
  }

}
@media (min-width:1024px){
  
  body{
    padding-top: 128px;
  }
  
  .hdr1_box1{
    padding-left: 50px;
  }
  .hdr1_box2{
    flex-wrap: nowrap;
  }
  
  .hdr_logo img{
    height: 40px;
  }
  
  /* お問い合わせ */
  .hdr_contact{
    margin-right: 15px;
  }
  .hdr_contact a{
    width: 120px;
    height: 35px;
  }
  .hdr_tel{
    font-size: 30px;
    
  }
  
  /* メニュー */
  .hdr_menu_btn{

  }
  .hdr_menu_btn button{
    font-size: 13px;
    width: 80px;
    height: 80px;
  }
  
  /* MV */
  .mv{
    height: 700px;
  }
  .mv .catch{
    
  }
  .mv .btn{
    
  }
  
}
@media (min-width:1200px){
  
  .hdr_logo img{
    height: 56px;
  }
  
  /* MV */
  .mv{
    height: 850px;
  }
  .mv .catch{
    margin-top: 220px;
    padding: 0;
  }
  .mv .btn{
    
  }
  
}



/* コピー用 */
@media (max-width:374px){
  
}
@media (max-width:767px){
  
}
@media (min-width:768px){
  
}
@media (min-width:1024px){
  
}
@media (min-width:1200px){
  
}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
  /*background: #EEE;*/
  /*padding: 0 5px;*/
}
.gnav > ul{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  /*font-size: 18px;*/
}
.gnav > ul > li{
  width: auto;
  position: relative;
  flex-grow: 1;
}
.gnav > ul > li.menu-item-has-children:after{
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #FFF;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.gnav li a{
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #715a42;
  text-decoration: none;
  display: block;
  padding: 5px;
}
.gnav li a:hover{
  /*background: #333;*/
  /*color: #FFF;*/
}

.gnav .children,
.gnav .sub-menu{
  display: none;
  background: #aaa;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
}
.gnav li:hover > .children,
.gnav li:hover > .sub-menu{
  display: block;
}


@media (max-width:374px){
  
}
@media (max-width:767px){
  
  
  .hdr1_box2{
    display: none;
  }
  
  .gnav{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFF;
    padding: 0;
    z-index: 99999;
    overflow-y: scroll;

    /*transition: all 0.2s;*/
    transform: translateX(100%);
    padding: 15px;
  }
  .gnav.active{
    transform: translateX(0%);
  }
  .gnav > ul{
    display: block;
  }
  .gnav > ul > li{
    width: 100%;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px dashed #CCC;
  }
  .gnav > ul > li + li,
  .gnav > ul > li:first-child,
  .gnav > ul > li:last-child{
    border-left: 0;
    border-right: 0;
  }
  .gnav > ul > li a{
    padding: 10px 0;
  }
  .gnav .children, .gnav .sub-menu{
    display: block;
    position: static;
    background: #EEE;
  }
}
@media (min-width:768px){
  
}
@media (min-width:1024px){
  
  .gnav > ul > li{
    border-left: 2px solid #f9cf9f;
  }
  .gnav > ul > li:last-child{
    border-right: 2px solid #f9cf9f;
  }
  .gnav li a{
    font-size: 14px;
    padding: 3px 0;
  }
}
@media (min-width:1200px){
  
}




/* **********************************
 *  フッター
 * ********************************* */
footer{
  padding: 60px 0 10px;
  margin-top: 200px;
}

footer .ftr1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .box1{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
footer .box2{
  width: 100%;
}
footer .box3{
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 15px;
}
footer .it{
  background: #FF9800;
  color: #FFF;
  padding: 5px 10px 6px;
}

footer .ftr_logo{
  margin-bottom: 45px;
}
footer .ftr_addr{
  line-height: 1.875;
}

footer .ftr_contact{
  background: #FFF;
  color: #111;
  padding: 5px;
}
footer .ftr_contact .inner{
  border: 2px solid #84ccad;
  padding: 10px;
  font-weight: 500;
  text-align: center;
}
footer .ftr_contact .title{
  
  letter-spacing: 0.05em;
}
footer .ftr_contact .title span{
  display: inline-block;
  padding: 5px 30px;
  border-bottom: 1px solid;
}
footer .ftr_contact .btn1{
  letter-spacing: 0.05em;
}
footer .ftr_contact .btn1 span{
  display: inline-block;
  font-size: 31px;
}
footer .ftr_contact .btn1 span:first-letter{
  font-size: 38px;
}
footer .ftr_contact .btn1 a{
  font-size: 36px;
}
footer .ftr_contact .btn2{
  margin-top: 6px;
}
footer .ftr_contact .btn2 a{
  display: inline-block;
  width: 220px;
  max-width: 100%;
  background: #f29b76;
  padding: 5px;
}
footer .ftr_contact .btn2 i{
  margin-right: 5px;
}

footer .ftr_links{
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
footer .ftr_links li{
  padding: 0 25px;
  line-height: 1.1;
}
footer .ftr_links li+li{
  border-left: 1px solid;
}
footer .copy{
  background: #FFF;
  color: #111;
  text-align: center;
  font-size: 14px;
  padding: 10px 0;
  margin-top: 30px;
}
footer .copy a{
  /*color: #111;*/
}


.ftr1 .hdr_contact{
  
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #715a42;
  z-index: 10;
}
.footer_fix ul{
  /*display: table;*/
  width: 100%;
  font-size: 14px;
  
  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: 36%;
}
.footer_fix ul li.btn2{
  width: 24%;
}
.footer_fix ul li a{
  display: block;
  padding: 10px;
  background: #f8921d;
  color: #FFF;
  text-decoration: none;
}

@media (max-width:767px){
  body{
    padding-bottom: 40px;
  }
  
  footer{
    margin-top: 50px;
  }
  footer .ftr_logo{
    margin-bottom: 0;
    text-align: center;
  }
  footer .box1{
    justify-content: center;
  }
  footer .box2{
    display: 
      none;
  }
  
  .footer_fix{
    display: block;
  }
  
  /* クッキー同意 */
  #cookie-notice{
    min-width: 0;
    top: 50%;
    bottom: auto;
    transform: translate(0, -50%);
    left: 10px;
    right: 10px;
  }
  #cookie-notice:before{
    content: "";
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: rgba(0,0,0,0.9);
    z-index: -1;
  }
  #cn-close-notice{
    top: 5px;
    right: 5px;
    margin-top: 0;
  }
  #cn-notice-text{
    text-align: justify;
  }
  
  .cookie-notice-container{
    padding: 50px 20px 50px;
    background: rgba(50,50,58,1);
  }
  .cn-text-container{
    margin-bottom: 10px;
  }
  .cookie-notice-hidden{
    display: none;
  }
}

/* 検索フォーム */
.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;
}

.paging-nav .pagination{
  display: flex;
  justify-content: center;
}
.paging-nav .pagination li{
  margin: 0 6px;
}
.paging-nav .pagination li a{
  display: inline-block;
  border: 1px solid #CCC;
  min-width: 2em;
  padding: 2px 5px 3px;
}
.paging-nav .pagination li.active a{
  background: orange;
  color: #FFF;
}
.paging-nav .pagination li.first,
.paging-nav .pagination li.last{
  display: none;
}
.paging-nav .pagination li.disabled{
  display: none;
}

/* ページ送り(詳細) */
.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;
  z-index: 5;
  right: 10px;
  bottom: 60px;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
}
.pagetop a i{
  font-size: 40px;
}


.breadcrumb{
  display: flex;
  list-style: none;
  margin-bottom: 20px;
  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{
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
body.home .main{
  padding-top: 0;
}

.section{
  width: 100%;
  /*margin-bottom: 50px;*/
  /*padding: 30px 0;*/ 
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.section + .section{
  margin-top: 50px;
}

@media (max-width:374px){
  
}
@media (max-width:767px){
  
}
@media (min-width:768px){
  .main{
    margin-top: 50px;
  }
  
  .section + .section{
    margin-top: 70px;
  }

}
@media (min-width:1024px){
  
}
@media (min-width:1200px){
  .main{
    margin-top: 100px;
  }
  
  .section + .section{
    margin-top: 120px;
  }
}

/* **********************************
 *  共通パーツ
 * ********************************* */

/* ページ概要 */
.pg_about_wrap{
  margin-bottom: 50px;
}
.pg_about_wrap:after{
  content: "";
  display: block;
  height: 15px;
  background-image: url('/img/pg_about_ftr.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  margin-top: 20px;
}
.pg_about_wrap .title{
  font-size: 20px;
  font-weight: 500;
  font-family: 'maru', 'Noto Sans JP', sans-serif;
  letter-spacing: 0.075em;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
}
.pg_about_wrap .title .sub{
  display: block;
  font-size: 0.8em;
  margin-top: 5px;
}
.pg_about_wrap .txt{
  letter-spacing: 0.075em;
  line-height: 2;
  text-align: justify;
}

/* ページナビ */
.pg_nav_wrap{
  padding: 5px 0;
  background: #f6f3ea;
}
.pg_nav_wrap.fixed{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.pg_nav_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.pg_nav_items .item{
  width: 33.333%;
  padding: 0 5px;
}
.pg_nav_items .item:nth-child(n+4){
  margin-top: 10px;
}
.pg_nav_items .item a{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  font-family: 'maru', 'Noto Sans JP', sans-serif;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  background: #00a8a8;
  color: #FFF;
  position: relative;
  height: 45px;
}
.pg_nav_items .item a:before{
  content: "";
  background-image: url('/img/nav_icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  bottom: -5px;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.pg_nav_items .item a:hover{
  opacity: 0.8;
}

/**/
.pg_contents1_wrap{
  
}

/* アンカー */
.anchor{
  position: relative;
  top: -80px;
}

/**/
.tt1{
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
    background: #FFF;
  border-radius: 20px;
  padding: 20px 0;
  width: 250px;
  text-align: center;
}
.tt1 span{
  display: block;
  text-align: center;
  font-size: 14px;
  margin-top: 5px;
}


/* 見出し(tt2) */
.tt2{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  font-family: "maru";
  letter-spacing: 0.075em;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
}
.tt2 em,
.tt2 span{
  width: 100%;
}
.tt2 em{
  font-size: 2.5em;
  font-family: "coves";
  font-weight: 700;
  line-height: 1;
  color: #f8921d;
}
.tt2 span{
  margin-top: 5px;
}
.tt2:after{
  content: "";
  display: block;
  background-image: url('/img/tt2_bdr.png');
  background-repeat: no-repeat;
  background-position: center;
  margin: 10px auto 0;
  width: 158px;
  height: 11px;
}

/* 見出し(tt3) */
.tt3{
  font-size: 18px;
  font-weight: 500;
  font-family: "maru";
  letter-spacing: 0.075em;
  text-align: center;
  margin-bottom: 20px;
}


/* 見出し(tt4) */
.tt4_box{
  position: relative;
}
.tt4{
  display: inline-block;
  width: auto;
  color: #59bb4f;
  background: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  position: relative;
  z-index: 1;
  padding-right: 20px;
}
.tt4_box:after{
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #59bb4f;
  position: absolute;
  right: 0;
  bottom: 50%;
}
/* 詳しく見る サンプル */
.read_more{
  margin-top: 30px;
}
.read_more a{
  display: block;
  width: 200px;
  max-width: 100%;
  padding: 10px 0;
  border-radius: 5px;
  background: #00a8a8;
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}
.read_more a.red{
  background: red;
}
.read_more a.orange{
  background: #f8921d;
}
.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%);
}
.read_more.center a{
  margin-left: auto;
  margin-right: auto;
}


.form_btns{
  text-align: center;
  margin-top: 30px;
}
.submit_btn{
  width: 290px;
  max-width: 100%;
  border: 0;
  padding: 15px 0;
  border-radius: 5px;
  background: #f8921d;
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}
.submit_btn.confirm{
  background-color: #03A9F4;
}
.submit_btn.send{
  background-color: #de0506;
}

.msg_success{
  color: #4CAF50;
  margin: 10px 0;
}
.msg_errors{
  color: #F00;
  margin: 10px 0;
}
/*[type="submit"]{
  padding: 0 10px 2px;
}*/

.btn{
  display: inline-block;
  background: #f8921d;
  color: #FFF;
  border-radius: 5px;
  font-size: 14px;
  padding: 1px 10px 2px;
  margin: 2px;
  border: 0;
}
.btn.btn1{
  background: #f8921d;
}
.btn.btn2{
  background: #9E9E9E;
}

/**/
.apply_btn{
  text-align: center;
  margin-top: 30px;
}

/**/
.pg_contents1_wrap .box1 .txt{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 2;
}
.pg_contents1_wrap .box2 .img img{
  border-radius: 10px;
}
.pg_contents1_wrap .box_w .txt{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 2;
  margin-top: 16px;
}
.section_border_wrap .txt{
   font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 2;
}


/**/
.txt_c a{
  color: #2196F3;
}

/* テーブル 汎用class */
.tbl{
  
}
.tbl th,
.tbl td{
  border: 1px solid #656261;
  padding: 10px;
  word-break: break-all
}
.tbl th{
  width: 160px;;
  background: #f8921d;
  color: #FFF;
  text-align: left;
}
.tbl td{
  background: #faebd7;
}

.contact_tbl{
  
}
.contact_tbl th{
  width: auto;
}
.contact_tbl .th1{
  width: 7em;
}
.contact_tbl .th2{
  
}
.contact_tbl .title{
  text-decoration: underline;
}
.contact_tbl .icons{
  
}
.contact_tbl .icons span{
  display: inline-block;
  padding: 1px 1px 2px 4px;
  border-radius: 3px;
  font-size: 12px;
}
.contact_tbl .icons .read{
  background: red;
  color: #FFF;
  
}

.unread_notice{
  background: #FFF;
  box-shadow: 0 0 6px 1px #DDD;
  padding: 10px;
  margin-bottom: 15px;
}
.unread_notice p{
  display: flex;
  align-items: center;
}
.unread_notice .icon{
  display: inline-block;
  margin-right: 15px;
  
  padding: 1px 1px 2px 4px;
  border-radius: 3px;
  font-size: 12px;
  
  background: red;
  color: #FFF;
}

@media (max-width:374px){
  
}
@media (max-width:767px){
  
  
  .tt1 {
    font-size: 16px;
  }
  .tt1 span{
    
  }
  .tt2{
    font-size: 14px;
  }
  
  .read_more{
    
  }
  .read_more a{
    margin-left: auto;
    margin-right: auto;
  }
  
  
  .tbl.tbl_resp{
    display: block;
    width: 100%;
  }
  .tbl.tbl_resp tbody{
    display: block;
    width: 100%;
  }
  .tbl.tbl_resp tr{
    display: block;
    width: 100%;
  }
  .tbl.tbl_resp th,
  .tbl.tbl_resp td{
    display: block;
    width: 100%;
    font-size: 14px;
  }
  .tbl.tbl_resp th,
  .tbl.tbl_resp td{
    border-bottom: 0;
  }
  .tbl.tbl_resp{
    border-bottom: 1px solid;
  }
  
  
  
}
@media (min-width:768px){
  
  /* ページ概要 */
  .pg_about_wrap{
    margin-bottom: 60px;
  }
  .pg_about_wrap:after{
    height: 22px;
    margin-top: 35px;
  }
  .pg_about_wrap .title{
    font-size: 24px;
    margin-bottom: 25px;
  }
  .pg_about_wrap .title .sub{
    margin-top: 5px;
  }
  .pg_about_wrap .txt{
    text-align: center;
  }
  
  /* ページナビ */
  .pg_nav_wrap{
    padding: 10px 0;
  }
  .pg_nav_items{
    margin: 0 -10px;
  }
  .pg_nav_items .item{
    width: 33.333%;
    padding: 0 10px;
  }
  .pg_nav_items .item:nth-child(n+2){
    margin-top: 0;
  }
  .pg_nav_items .item:nth-child(n+4){
    margin-top: 20px;
  }
  .pg_nav_items .item a{
    font-size: 16px;
    height: 50px;
  }
  .pg_nav_items .item a:after{
    width: 30px;
    height: 30px;
    bottom: -10px;
  }

  /* アンカー */
  .anchor{
    top: -180px;
  }

  
  .tt1{
    width: 350px;
  }
  
  /* 見出し(tt2) */
  .tt2{
    font-size: 20px;
    min-height: 50px;
    margin-bottom: 50px;
  }
  .tt2:before{
    width: 41px;
    height: 35px;
    left: 20px;
  }
  .tt2 span{

  }


  /* 見出し(tt3) */
  .tt3{
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .read_more a{
    width: 290px;
    padding: 15px 0;
  }
  
  .pg_contents1_wrap{
    display: flex;
    justify-content: space-between;
  }
  .pg_contents1_wrap .box1{
    width: 57.20%;
  }
  .pg_contents1_wrap .box2{
    width: 40.09%;
  }
  .pg_contents1_wrap .box_w .txt{
    margin-top: 20px;
  }
  
    /* 見出し(tt4) */
  .tt4{
    font-size: 20px;
  }
  
  /**/
  .apply_btn{
    margin-top: 60px;
  }
  
  /* テーブル 汎用class */
  .tbl{

  }
  .tbl th,
  .tbl td{
    padding: 10px;
  }
  .tbl th{
    width: 200px;;
  }
  .tbl td{
  }
  
  .tbl_s{
    width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .tbl_m{
    width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact_tbl{

  }
  .contact_tbl th{
    width: auto;
  }
  .contact_tbl .th1{
    width: 10em;
  }
  .contact_tbl .th2{

  }
  
}
@media (min-width:1024px){
  
  
}
@media (min-width:1200px){
  
  .tt1{
    width: 650px;
  }
  
  /* ページ概要 */
  .pg_about_wrap{
    margin-bottom: 100px;
  }
  .pg_about_wrap .title{
    font-size: 30px;
  }
  .pg_about_wrap .title .sub{
  }
  .pg_about_wrap .txt{
    text-align: center;
  }
  
  /* ページナビ */
  .pg_nav_items{
    margin: 0 -32px;
  }
  .pg_nav_items .item{
    width: 33.333%;
    padding: 0 32px;
  }
  .pg_nav_items .item:nth-child(n+4){
    margin-top: 20px;
  }
  .pg_nav_items .item a{
    height: 56px;
  }
  
  /* アンカー */
  .anchor{
    top: -220px;
  }
  
  /**/
  .apply_btn{
    margin-top: 105px;
  }
}




/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}

/* ポイント */
.home_point_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.home_point_items li{
  width: 50%;
  padding: 0 5px;
}

/* About */
.home_about_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_about_wrap .box1{
  width: 100%;
}
.home_about_wrap .box2{
  width: 100%;
}
.home_about_wrap .title{
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
.home_about_wrap .txt{
  line-height: 2;
  text-align: justify;
}

/* プラン */
.home_plan_wrap{
  margin-bottom: 30px;
}
.home_plan_wrap .title{
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 10px;
}
.home_plan_wrap .txt{
  line-height: 2;
  text-align: center;
}

.home_plan_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.home_plan_items .item{
  width: 100%;
  padding: 0 5px;
}
.home_plan_items .item .inner{
  background: #FFF;
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 15px;
  box-shadow: 0px 0px 10px 0px rgba(162, 162, 162, 0.5);
}
.home_plan_items .item .img{
  margin-bottom: 12px;
}
.home_plan_items .item .img img{
  width: 100%;
}
.home_plan_items .item .title{
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}
.home_plan_items .item .title_t1{
  font-weight: 700;
  margin-bottom: 3px;
}
.home_plan_items .item .title_t2{
  font-size: 1.333em;
  font-weight: 700;
}
.home_plan_items .item .title_t2.color1{
  color: #00a8a8;
}
.home_plan_items .item .title_t2.color2{
  color: #f89627;
}
.home_plan_items .item .title_t2.color3{
  color: #31a7de;
}
.home_plan_items .item .txt{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.714;
  text-align: justify;
  padding: 0 10px;
}
.home_plan_items .item .link{
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.home_plan_items .item .link a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  border-radius: 5px;
}
.home_plan_items .item .link a em{
  font-size: 1.714em;
}
.home_plan_items .item .link a.btn1{
  background-color: #00a8a8;
}
.home_plan_items .item .link a.btn2{
  background-color: #f89627;
}
.home_plan_items .item .link a.btn3{
  background-color: #31a7de;
}

@media (max-width:374px){
  
}
@media (max-width:767px){
  
  .home_point_items{
    justify-content: space-around;
  }
  .home_point_items li{
    width: 40%;
  }
  .home_point_items li:nth-child(n+3){
    margin-top: 10px;
  }
  
  .home_about_wrap .box1{
    order: 2;
    margin-top: 30px;
  }
  .home_about_wrap .box2{
    order: 1;
  }
  .home_about_wrap .box2 .img{
    width: 60%;
    margin: 0 auto;
  }
  
  .home_plan_items .item + .item{
    margin-top: 20px;
  }
}
@media (min-width:768px){

  /* ポイント */
  .home_point_items{
    margin: 0 -10px;
  }
  .home_point_items li{
    width: 25%;
    padding: 0 10px;
  }


  /* About */
  .home_about_wrap{
  }
  .home_about_wrap .box1{
    width: 49%;
  }
  .home_about_wrap .box2{
    width: 49%;
  }
  .home_about_wrap .title{
  }
  .home_about_wrap .txt{
  }
  

  /* プラン */
  .home_plan_wrap{
    margin-bottom: 30px;
  }
  .home_plan_wrap .title{
    margin-bottom: 10px;
  }
  .home_plan_wrap .txt{
  }
  
  .home_plan_items{
    margin: 0 -10px;
  }
  .home_plan_items .item{
    width: 33.333%;
    padding: 0 10px;
  }
  .home_plan_items .item .inner{
  }
  .home_plan_items .item .img{

  }
  .home_plan_items .item .title{
    font-size: 18px;
  }
  .home_plan_items .item .title_t1{

  }
  .home_plan_items .item .title_t2{

  }
  .home_plan_items .item .txt{
    padding: 0 15px;
  }
  .home_plan_items .item .link{
    margin-top: 20px;
  }
  .home_plan_items .item .link a{
    color: #FFF;
    text-align: center;
  }
  .home_plan_items .item .link a.btn1{
    background-color: #00a8a8;
  }
  .home_plan_items .item .link a.btn2{
    background-color: #f89627;
  }
  .home_plan_items .item .link a.btn3{
    background-color: #31a7de;
  }
}
@media (min-width:1024px){
  
}
@media (min-width:1200px){
  /* ポイント */
  .home_point_items{
    justify-content: center;
    margin: 0 -10px;
  }
  .home_point_items li{
    width: auto;
    padding: 0 20px;
  }
  
  /* プラン */
  .home_plan_wrap{
    margin-bottom: 30px;
  }
  .home_plan_wrap .title{
    margin-bottom: 10px;
  }
  .home_plan_wrap .txt{
  }
  
  .home_plan_items{
    margin: 0 -15px;
  }
  .home_plan_items .item{
    width: 33.333%;
    padding: 0 15px;
  }
  .home_plan_items .item .inner{
  }
  .home_plan_items .item .img{

  }
  .home_plan_items .item .title{

  }
  .home_plan_items .item .title_t1{

  }
  .home_plan_items .item .title_t2{

  }
  .home_plan_items .item .txt{

  }
  .home_plan_items .item .link{

  }
  .home_plan_items .item .link a{
    color: #FFF;
    text-align: center;
  }
  .home_plan_items .item .link a.btn1{
    background-color: #00a8a8;
  }
  .home_plan_items .item .link a.btn2{
    background-color: #f89627;
  }
  .home_plan_items .item .link a.btn3{
    background-color: #31a7de;
  }
}

/* **********************************
 *  サービス案内
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}

.service_flow_wrap{
  
}
.service_flow_wrap + .service_flow_wrap{
  margin-top: 50px;
}
.service_flow_title{
  text-align: center;
  margin-bottom: 30px;
}

/* できること */
.service_available_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.service_available_items .item{
  width: 100%;
  padding: 0 5px;
}
.service_available_items .item .inner{
  
}
.service_available_items .item .img{
  background: #FFF;
  padding: 10px;
  border-radius: 13px;
  margin-bottom: 20px;
  box-shadow: 0px 0px 10px 0px rgba(162, 162, 162, 0.5);
}
.service_available_items .item .img img{
  border-radius: 13px;
}
.service_available_items .item .title{
  font-size: 18px;
  font-weight: 500;
  font-family: 'maru', 'Noto Sans JP', sans-serif;
  margin-bottom: 10px;
  text-align: center;
}
.service_available_items .item .title:after{
  content: "";
  display: block;
  height: 6px;
  margin-top: 10px;
  background-image: url('/img/service/dot.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.service_available_items .item .txt{
  line-height: 2;
}

/* 特徴 */
.service_features_items{
  
}
.service_features_items .item{
  
}
.service_features_items .item+.item{
  margin-top: 30px;
}
.service_features_items .item .inner{
  background: #FFF;
  border-radius: 10px;
  overflow: hidden;
}
.service_features_items .item .title{
  font-size: 18px;
  font-weight: 700;
  font-family: 'maru', 'Noto Sans JP', sans-serif;
  letter-spacing: 0.075em;
  background: #715a42;
  color: #FFF;
  padding: 10px 15px;
}
.service_features_items .item .title em{
  margin-right: 5px;
}
.service_features_items .item .txt{
  line-height: 2.375;
  padding: 15px;
}


@media (max-width:374px){
  
}
@media (max-width:767px){
  
  .service_available_items .item + .item{
    margin-top: 50px;
  }
}
@media (min-width:768px){
  

  /* できること */
  .service_available_items{
    margin: 0 -10px;
  }
  .service_available_items .item{
    width: 50%;
    padding: 0 10px;
  }
  .service_available_items .item:nth-child(n+3){
    margin-top: 50px;
  }
  .service_available_items .item .inner{

  }
  .service_available_items .item .img{
    margin-bottom: 20px;
  }
  .service_available_items .item .img img{
  }
  .service_available_items .item .title{
    font-size: 24px;
    margin-bottom: 10px;
  }
  .service_available_items .item .title:after{
    height: 11px;
    margin-top: 8px;
  }
  .service_available_items .item .txt{
  }
  

  /* 特徴 */
  .service_features_items{

  }
  .service_features_items .item{

  }
  .service_features_items .item+.item{
    margin-top: 30px;
  }
  .service_features_items .item .inner{
  }
  .service_features_items .item .title{
    font-size: 20px;
    padding: 15px 30px;
  }
  .service_features_items .item .txt{
    padding: 30px 30px;
  }
  
}
@media (min-width:1024px){
  
  /* できること */
  .service_available_items{
    margin: 0 -15px;
  }
  .service_available_items .item{
    width: 33.333%;
    padding: 0 15px;
  }
  .service_available_items .item:nth-child(n+3){
    margin-top: 0;
  }
  .service_available_items .item:nth-child(n+4){
    margin-top: 80px;
  }
  .service_available_items .item .inner{

  }
  .service_available_items .item .img{
  }
  .service_available_items .item .img img{
  }
  .service_available_items .item .title{
    font-size: 24px;
  }
  
  .service_available_items .item .txt{
  }
  
  /* 特徴 */
  .service_features_items{

  }
  .service_features_items .item{

  }
  .service_features_items .item+.item{
  }
  .service_features_items .item .inner{
  }
  .service_features_items .item .title{
  }
  .service_features_items .item .txt{
  }
  
}
@media (min-width:1200px){
  
}

/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}

/**/
.faq_search{
  text-align: center;
}
.faq_search input[type="text"]{
  padding: 10px;
  border-radius: 10px;
  border: 2px solid;
  margin-top: 50px;
}

/* よくある質問 */
.faq_wrap{
  
}
.faq_wrap + .faq_wrap{
  margin-top: 50px;
}

.faq_items{
  
}
.faq_items .item{
  border-bottom: 1px solid #715a42;
}
.faq_items .item:first-child{
  border-top: 1px solid #715a42;
}
.faq_items .item .title{
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding: 10px 30px 10px 30px;
  cursor: pointer;
}
.faq_items .item .title:before{
  content: "Q";
  color: #f8921d;
  font-size: 20px;
  font-weight: 700;
  font-family: 'coves', sans-serif;
  line-height: 1;
  position: absolute;
  top: 14px;
  left: 10px;
}
.faq_items .item .title:after{
  content: "\f055";
  
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.faq_items .item .title.on:after{
  content: "\f056";
}

.faq_items .item .inner{
  display: none;
  background: #FFF;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
}
.faq_items .item .txt{
  font-size: 15px;
  line-height: 2.375;
}

@media (max-width:374px){
  
}
@media (max-width:767px){
  
}
@media (min-width:768px){
  
  /* よくある質問 */
  .faq_wrap{

  }
  .faq_wrap + .faq_wrap{
    margin-top: 50px;
  }

  .faq_items{

  }
  .faq_items .item{

  }
  .faq_items .item+.item{

  }
  .faq_items .item .title{
    font-size: 18px;
    padding: 30px 50px 30px 65px;
  }
  .faq_items .item .title:before{
    font-size: 30px;
    top: 30px;
    left: 30px;
  }
  .faq_items .item .title:after{
    font-size: 30px;
  }
  .faq_items .item .inner{
    padding: 25px 30px;
    margin-bottom: 30px;
    margin-left: 65px;
    margin-right: 65px;
  }
  .faq_items .item .txt{
    font-size: 16px;
  }
  
}
@media (min-width:1024px){
  
}
@media (min-width:1200px){
  
}

/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}

form input[type="text"],
form input[type="email"],
form input[type="date"],
form input[type="password"],
form select{
  max-width: 100%;
  padding: 6px 5px 7px;
}
form textarea{
  width: 100%;
  max-width: 100%;
  padding: 6px 5px 7px;
  height: 300px;
}

.form_memo{
  font-size: 14px;
}

/**/
.apply_form{
}  
.apply_form + .apply_form{
  margin-top: 10px;
}
.apply_form form{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.apply_form form .form_box1{
  width: 120px;
}
.apply_form form .form_box2{
  width: 80px;
}
.apply_form form .form_box3{
  margin-left: 10px;
}

/* 預かりアイテム一覧 */
.bag_in_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.bag_in_items .item{
  width: 50%;
  padding: 0 5px;
  margin-bottom: 10px;
}
.bag_in_items .item .inner{
  
}
.bag_in_items .item .img{
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #CCC;
}
.bag_in_items .item .img:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.bag_in_items .item .name{
  
}
.bag_in_items .item .title{
  text-align: center;
}

.takeout_all_box{
  width: 290px;
  max-width: 100%;
  text-align: center;
  background: #de0506;
  color: #FFF;
  padding: 15px;
  margin: 0 auto 20px;
  border-radius: 5px;
}

@media (max-width:374px){
  
}
@media (max-width:767px){
  
  form input[type="text"],
  form input[type="email"],
  form input[type="date"],
  form input[type="password"],
  form select{
    width: 100%;
    padding: 6px 5px 7px;
  }
  form select{
    padding: 6px 5px 7px;
  }
  
}
@media (min-width:768px){
  
  /* 預かりアイテム一覧 */
  .bag_in_items{
    margin: 0 -10px;
  }
  .bag_in_items .item{
    width: 33.333%;
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .bag_in_items .item .inner{

  }
  .bag_in_items .item .img{
  }
  .bag_in_items .item .name{

  }
  .bag_in_items .item .img{

  }
}
@media (min-width:1024px){
  
  /* 預かりアイテム一覧 */
  .bag_in_items{
    margin: 0 -10px;
  }
  .bag_in_items .item{
    width: 25%;
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .bag_in_items .item .inner{

  }
  .bag_in_items .item .img{
  }
  .bag_in_items .item .name{

  }
  .bag_in_items .item .img{

  }
  
}
@media (min-width:1200px){
  /* 預かりアイテム一覧 */
  .bag_in_items{
    margin: 0 -10px;
  }
  .bag_in_items .item{
    width: 20%;
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .bag_in_items .item .inner{

  }
  .bag_in_items .item .img{
  }
  .bag_in_items .item .name{

  }
  .bag_in_items .item .img{

  }
}

/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}

.plan_desc_wrap{
  
}
.plan_desc_wrap + .plan_desc_wrap{
  margin-top: 50px;
}

/* はこプラン */
.plan1_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.plan1_items .item{
  width: 80%;
  padding: 0 5px;
}
.plan1_items .item .inner{
  
}

/* 配送料 */
.plan_shipping_box{
  
}
.plan_shipping_box dt{
  font-size: 18px;
  font-weight: 500;
  background: #f2dabd;
  text-align: center;
  padding: 11px 10px;
}
.plan_shipping_box dd{
  font-size: 16px;
  font-weight: 500;
  background: #FFF;
  text-align: center;
  padding: 13px 10px;
}

.plan_shipping_box2{
  display: flex;
  flex-wrap: wrap;
}
.plan_shipping_box2 dt{
  font-size: 16px;
  font-weight: 500;
  background: #f2dabd;
  text-align: center;
  padding: 11px 10px;
  border-bottom: 1px solid #FFF;
  width: 100%;
}
.plan_shipping_box2 dd{
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  background: #FFF;
  text-align: center;
  padding: 13px 10px;
  border-bottom: 1px solid #715a42;
  text-align: center;
}

/* 注意点 */
.plan_notice_box{
  background: #d6eded;
  padding: 15px;
}
.plan_notice_box .title{
  margin-bottom: 15px;
}
.plan_notice_box .txt{
  
}
.plan_notice_box .txt ul{
  
}
.plan_notice_box .txt ul li{
  text-indent: -1em;
  padding-left: 1em;
}


/* スペースプラン */
.plan2_desc_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.plan2_desc_wrap .box1{
  width: 100%;
}
.plan2_desc_wrap .box2{
  width: 100%;
  margin-top: 30px;
}

/* お預けいただけるもの */
.plan_items_box{
  background: #FFF;
  border: 5px solid #00a8a8;
  border-radius: 10px;
  padding: 15px;
}
.plan_items_box .tt3{
  margin-bottom: 10px;
}
.plan_items_box .title{
  text-align: center;
  margin-bottom: 20px;
}
.plan_items_box .txt{
  text-align: center;
}

/* おまかせプラン */
.plan3_desc_wrap{
  border-radius: 10px;
  overflow: hidden;
}
.plan3_desc_wrap .title{
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  background: #f2dabd;
  padding: 15px 0;
}
.plan3_desc_wrap .inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #FFF;
  padding: 15px;
}
.plan3_desc_wrap .box1{
  width: 100%;
}
.plan3_desc_wrap .box2{
  width: 100%;
  margin-top: 15px;
}
.plan3_desc_wrap .txt{
  line-height: 1.8;
}
.plan3_desc_wrap .service{
  background: #f9f4f4;
  padding: 15px;
  margin-top: 15px;
}

@media (max-width:374px){
  
}
@media (max-width:767px){
  
  .plan1_items .item{
    width: 50%;
    text-align: center;
    margin: 0 auto;
  }
  .plan1_items .item:nth-child(n+3){
    margin-top: 10px;
  }
  
}
@media (min-width:768px){
  
  /* はこプラン */
  .plan1_items{
    margin: 0 -10px;
  }
  .plan1_items .item{
    width: 33.333%;
    padding: 0 10px;
  }
  .plan1_items .item .inner{

  }

  .plan1_items.wide .item{
    width: 100%;
    text-align: center;
  }
  .plan1_items.wide .item + .item{
    margin-top: 15px;
  }

  /* 配送料 */
  .plan_shipping_box{

  }
  .plan_shipping_box dt{
    font-size: 22px;
  }
  .plan_shipping_box dd{
    font-size: 22px;
  }
  

  .plan_shipping_box2{
  }
  .plan_shipping_box2 dt{
    font-size: 18px;
    width: 250px;
  }
  .plan_shipping_box2 dd{
    width: calc(100% - 250px);
    font-size: 18px;
  }
  
  /* 注意点 */
  .plan_notice_box{
    padding: 30px;
  }
  .plan_notice_box .title{
    margin-bottom: 15px;
  }
  .plan_notice_box .txt{

  }
  .plan_notice_box .txt ul{

  }
  .plan_notice_box .txt ul li{
  }
  
  /* スペースプラン */
  .plan2_desc_wrap{
    align-items: center;
  }
  .plan2_desc_wrap .box1{
    width: 49%;
  }
  .plan2_desc_wrap .box2{
    width: 49%;
    margin-top: 0;
  }


  /* お預けいただけるもの */
  .plan_items_box{
    padding: 30px;
  }
  .plan_items_box .tt3{
    margin-bottom: 10px;
  }
  .plan_items_box .title{
    text-align: center;
    margin-bottom: 20px;
  }
  .plan_items_box .txt{
    text-align: center;
  }

  /* おまかせプラン */
  .plan3_desc_wrap{

  }
  .plan3_desc_wrap .title{
    font-size: 20px;
  }
  .plan3_desc_wrap .inner{
    padding: 30px;
  }
  .plan3_desc_wrap .box1{
    width: 49%;
  }
  .plan3_desc_wrap .box2{
    width: 49%;
    margin-top: 0;
  }
  .plan3_desc_wrap .txt{
  }
  
}
@media (min-width:1024px){
  
  .plan_shipping_box2{
  }
  .plan_shipping_box2 dt{
    font-size: 18px;
    width: 350px;
  }
  .plan_shipping_box2 dd{
    width: calc(100% - 350px);
    font-size: 18px;
  }
  
}
@media (min-width:1200px){
  
   /* おまかせプラン */
  .plan3_desc_wrap{

  }
  .plan3_desc_wrap .title{
    font-size: 20px;
  }
  .plan3_desc_wrap .inner{
    padding: 50px 65px;
  }
  .plan3_desc_wrap .box1{
    width: 40%;
  }
  .plan3_desc_wrap .box2{
    width: 55%;
  }
  .plan3_desc_wrap .txt{
  }
}

/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}

@media (max-width:374px){
  
}
@media (max-width:767px){
  
}
@media (min-width:768px){
  
}
@media (min-width:1024px){
  
}
@media (min-width:1200px){
  
}


/* **********************************
 *  
 * ********************************* */
.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;
  margin-bottom: 30px;
}



/* 連絡先 */
.contact_info{
  background: #ff2700;
  text-align: center;
  padding: 28px 20px 25px;
  margin-bottom: 65px;
}
.contact_info .box1{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #FFF;
}
.contact_info .box2{
  margin-top: 20px;
  background: #FFFFFF;
  padding: 22px 5px;
  line-height: 1;
}
.contact_info .box2 .icon{
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  background: #ff2700;
  color: #FFFFFF;
  padding: 5px 18px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 5px;
  letter-spacing: 0.08em;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: 500;
  vertical-align: middle;
  font-weight: bold;
}
.contact_info .box2 .tel a{
  display: block;
  letter-spacing: 0.02em;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  font-weight: 700;
  letter-spacing: 0.16em;
}

/* コンタクトフォーム */
.contact_form{
  width: 100%;
  background: #FFF;
  border: 1px solid #b2b2b2;
}
.contact_form tr{
  border-bottom: 1px solid #b2b2b2;
}
.contact_form th,
.contact_form td{
  padding: 10px 15px 10px 20px;
  font-weight: normal;
  text-align: left;
}
.contact_form th{
  background: #f0f0f0;
  width: 310px;
  letter-spacing: 0.08em;
}
.contact_form td{
  font-size: 15px;
  letter-spacing: 0.16em;
}
.contact_form th.vtop{
  vertical-align: top;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 12px;
  color: #FFF;
  background: #b80000;
  font-size: 14px;
  font-weight: normal;
  float: right;
}

/* MW WP Formの規定クラス */
/* checkbox, radio */
.mwform_check_box_wrap{
  padding: 6px 0;
}
.mw_wp_form .mwform-radio-field.horizontal-item,
.mw_wp_form .mwform-checkbox-field.horizontal-item{
  display: inline-block;
  margin-left: 0;
  margin-right: 10px;
}

/**/
.mw_wp_form_confirm .addr_auto{
  display: none;
}
.mw_wp_form_confirm .addr_auto_box .zipcode i{
  background: none;
  padding: 0;
  font-size: inherit;
}

.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.date dt.m,
.contact_form dl.date dt.d{
  width: 120px;
}
.contact_form dl.date dt.m select,
.contact_form dl.date dt.d select{
  width: calc(100% - 2em);
}
.contact_form dl.date dt.t{
  width: 150px;
}
.contact_form dl.date dt.t select{
  width: calc(100% - 5em);
}


.contact_form dl.addr dd{
  
}


.contact_form_addr{
  display: flex;
  align-items: center;
  margin: 0;
}
.contact_form_addr + .contact_form_addr{
  margin-top: 8px;
}
.contact_form_addr dt,
.contact_form_addr dd{
  margin: 0;
}
.contact_form_addr dt{
  width: 80px;
}
.contact_form_addr dd{
  width: calc(100% - 80px);
}

.contact_form_addr dd [name$="zipcode"]{
  width: 210px;
}
.contact_form_addr dd [name$="addr1"]{
  width: 210px;
}




.addr_auto_box{
  display: flex;
  align-items: center;
}
.addr_auto_box .zipcode{
  display: flex;
  flex-wrap: wrap;
}
.addr_auto_box .zipcode i{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  background: #cccccc;
  padding: 0 5px;
}
.addr_auto_box .zipcode input{
  
}

.addr_auto_box button{
  margin-left: 20px;
}


.contact_form td input ,
.contact_form td textarea ,
.contact_form td select {
  padding: 7px 10px;
  max-width: 100%;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.contact_form td textarea{
  height: 280px;
}
.contact_form td [name$="_zipcode"],
.contact_form td [name="zipcode"],
.contact_form td [name="addr1"]{
  width: 160px;
}
.contact_form td [name="addr1"]{
  width: 220px;
}
.contact_form td [name="addr2"]{
}


.contact_form td .addr_auto{
  background: #f0f0f0;
  border: 1px solid #d6d8d8;
  margin-left: 10px;
  padding: 5px 5px;
}


.contact_form_msg{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* 確認画面用 */



.contact_form_acceptance{
  font-size: 17px;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 40px;
}
.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance .mwform-checkbox-field.horizontal-item{
  margin-right: 0;
}


/* コンタクトフォーム - ボタン */
.contact_form_btns{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding: 35px 0;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"],
.contact_form_btns button{
  background: #b80000;
  color: #FFF;
  border: 0;
  padding: 12px 10px;
  width: 315px;
  margin: 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.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 .ajax-loader{
  order: 10;
  width: 100% !important;
  margin-top: 10px !important;
  background-repeat: no-repeat;
  background-position: center;
}


@media only screen and (max-width:1023px){
  
  /* **********************************
   *  
   * ********************************* */
  
  
  /* **********************************
   *  お問い合わせ
   * ********************************* */
  .contact_form th {
    width: 250px;
  }
  .contact_form td .wpcf7-text{
    width: 100%;
  }
  .contact_form td [name="zipcode"]{
    width: 90px;
  }
}
@media only screen and (max-width:1023px){
  
  
  
  /* **********************************
   *  お問い合わせ
   * ********************************* */
  .contact_info{
    padding: 10px;
  }
  .contact_info .box1{
    font-size: 13px;
  }
  .contact_info .box2{
    margin-top: 10px;
  }
  .contact_info .box2 .icon{
    font-size: 15px;
  }
  .contact_info .box2 .tel{
    font-size: 24px;
  }
  .contact_info .box2 .txt{
    width: 100%;
    margin: 10px 0 0 0;
  }
  
  .contact_form th,
  .contact_form td{
    display: block;
    width: 100%;
    padding: 10px 10px;
  }
  .contact_form th{
  }
  .contact_form td{
  }
  .contact_form td [name="zipcode"]{
    width: 100px;
  }
  .contact_form dl.date dt{
    width: 100%;
  }
  .contact_form dl.date dt.wide{
    width: 100%;
  }
  
  .contact_form dl.date dt.m,
  .contact_form dl.date dt.d{
    width: 90px;
  }
  .contact_form dl.date dt.m select,
  .contact_form dl.date dt.d select{
    width: calc(100% - 2em);
  }
  .contact_form dl.date dt.t{
    width: calc(100% - 180px - 10px);
  }
  .contact_form dl.date dt.t select{
    width: calc(100% - 3.5em);
  }
  
  .contact_form_btns input[type="submit"], 
  .contact_form_btns input[type="button"],
  .contact_form_btns button  {
    width: 48%;
    margin: 0 1%;
    font-size: 12px;
  }
  .contact_form_btns input[type="submit"]{
    
  }
  .contact_form_btns button {
    width: 30%;
  }
  
}

/* **********************************
 *  プライバシーポリシー
 * ********************************* */
.pg_contact .privacy{
  margin-top: 105px;
}

.privacy_tt{
  text-align: center;
  margin-bottom: 55px;
}
.privacy_tt h3{
  font-size: 23px;
  font-weight: 700;
  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;
  letter-spacing: 0.04em;
}
.privacy_items .item + .item{
  margin-top: 40px;
}
.privacy_items .item h3{
  font-size: 16px;
  font-weight: 500;
  border-left: 6px solid #f8921d;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 2.33;
}
.privacy_items .item h4{
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 2.33;
}
.privacy_items .item .txt{
  line-height: 1.875;
}
.privacy_items .item .txt + .txt{
  margin-top: 1.5em;
}
.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{
  /*text-indent: -0.75em;*/
  /*padding-left: 0.75em;*/
}
.privacy_items .item ul *+li{
  margin-top: 10px;
}
.privacy_items .item ol{
  margin-left: 2em;
  margin-top: 10px;
}


@media (max-width:374px){
  
}
@media (max-width:767px){
  
}
@media (min-width:768px){
  
  .privacy_items .item + .item{
    margin-top: 40px;
  }
  
  .privacy_items .item h3{
    font-size: 20px;
  }
  .privacy_items .item h4{
    font-size: 18px;
  }
  
}
@media (min-width:1024px){
  
}
@media (min-width:1200px){
  
}



/* クッキー同意(PC/スマホ共通) */
#cookie-notice{
  background-color: rgba(237,237,237,0.9) !important;
  border-top: 1px solid #CCC;
}
.cookie-notice-container{
  color: #000000 !important;
}
#cn-notice-buttons a{
  color: #FFF !important;
  background-color: #181818 !important;
}
.cn-close-icon:before, .cn-close-icon:after{
  background-color: rgb(0,0,0);
}


/* クッキー同意(スマホ用) */
@media only screen and (max-width:767px){
  
  #cookie-notice{
    z-index: 999;
  }
  .cn-position-bottom{
    bottom: 52px !important;
  }
  .cookie-notice-container #cn-notice-text{
    font-size: 12px;
  }
  
  
  /* クッキー同意 */
  #cookie-notice{
    min-width: 0;
    top: 50%;
    bottom: auto;
    transform: translate(0, -50%);
    left: 10px;
    right: 10px;
  }
  #cookie-notice:before{
    content: "";
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: rgba(0,0,0,0.9);
    z-index: -1;
  }
  #cn-close-notice{
    top: 5px;
    right: 5px;
    margin-top: 0;
  }
  #cn-notice-text{
    text-align: justify;
  }
  
  .cookie-notice-container{
    padding: 50px 20px 50px;
    background: rgba(50,50,58,1);
  }
  .cn-text-container{
    margin-bottom: 10px;
  }
  .cookie-notice-hidden{
    display: none;
  }
  
}



/* **********************************
 *  会員登録フォーム
 * ********************************* */
/**/

.tt2

[class*="um-col-"]{
  /*margin-bottom: 30px;*/
}
.um-col-121{
  
}

@media (max-width:374px){
  
}
@media (max-width:767px){
  
}
@media (min-width:768px){
  
  
}
@media (min-width:1024px){
  
}
@media (min-width:1200px){
  
}



/**/
@media (max-width:374px){
  
}
@media (max-width:767px){
  
}
@media (min-width:768px){
  
  
}
@media (min-width:1024px){
  
}
@media (min-width:1200px){
  
}


.status_memo{
  font-weight: 500;
  font-size: 0.8em;;
  margin-top: 4px;
  display: block;
  color: red;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
}