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

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


:root {
  --main-color: #fbb148;
  --sub-color: #488f58;
}

/* ==========================================================================
   サイト毎の独自のスタイル
   ========================================================================== */

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "游明朝体", "Yu Mincho", YuMincho, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.666;
  color: #181818;
}

/* 基本フォント: 明朝 */
/**/
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_fit{
  position: relative;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  left: 0;
  top: 0;
}

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


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

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


.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10{
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.txt_ellipsis_line1{
  -webkit-line-clamp: 1;
}
.txt_ellipsis_line2{
  -webkit-line-clamp: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
}
.container{
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.anchor{
  position: relative;
  top: -30px;
}
@media (min-width: 576px){
  .container {
    width: 540px;
  }
}
@media (min-width: 768px){
  .container {
    width: 720px;
  }
  .anchor{
    top: -100px;
  }
}

@media (min-width: 992px){
  .container {
    width: 960px;
  }
}
@media (min-width: 1200px){
  .container {
    width: 1230px;
  }
}



.section{
  width: 100%;
  /*margin-bottom: 50px;*/
  /*padding: 30px 0;*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header{
  padding-bottom: 13px;
  border-bottom: 1px solid #89c997;
}
.pg_header .container{
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 共通の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{

}


@media (max-width:767px){
  .pg_header .container{
    height: 100px;
  }

}
@media (min-width:768px){
  .pg_header .container{
    height: 200px;
  }


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

}
@media (min-width:1200px){
  .pg_header .container{
    height: 260px;
  }

}



/* ▼サンプル▼ 利用箇所ごとにマージンなど設定 */
/*
.post_content .col1,
.post_content .col2,
.post_content .col3{
  margin-bottom: 20px;
}
*/



/*******************************
*　ヘッダー
********************************/
.header{

}
.hdr1{
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  background: #FFF;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: 200px;
}

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

/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_contact a{
  background: var(--main-color);
  color: #FFF;
  width: 185px;
  padding: 10px 5px;
  text-align: center;
  transition: 0.2s all;
  text-decoration: none;
}
.hdr_contact a.email{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}
.hdr_contact a:hover{
  background: var(--sub-color);
  color: #FFF;
}

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

}
.hdr_sns a + a{
  margin-left: 10px;
}


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
    padding: 15px 15px;
  }

  /* お問い合わせボタン */
  .hdr_tel,
  .hdr_contact{
    display: none;
  }

  /* SNSボタン */
  .hdr_sns{
    margin-left: 20px;
  }
  .hdr_sns a img{
    height: 30px;
  }

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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    /*padding-top: 68px;*/
    padding-top: 165px;

  }
  body.home{
    padding-top: 68px;
  }
  .header{
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
  }

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

  /* ロゴ */
  .hdr_logo img{
    width: 180px;
    transition: 0.2s all;
  }

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

  }
  .header.slim .hdr_logo img{
    width: 150px;
  }
  .header.slim .hdr_contact a.email{
    height: 58px;
  }

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

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

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

  }

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

  .hdr1{
    padding-left: 80px;
  }

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: 271px;
  }

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

  }

}


/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  padding-top: 250px;
}

/* イラスト */
.mv_illust{
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 10px;
}
.mv_illust img{
  width: 150px;
}

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

}
.mv_txt_p2{

}



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

}

@media (min-width:768px){

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

  /* イラスト */
  .mv_illust{
    right: 10px;
  }
  .mv_illust img{
    width: 200px;
  }

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

  }
  .mv_txt_p2{

  }

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


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

  /* イラスト */
  .mv_illust{
    right: 30px;
  }
  .mv_illust img{
    width: 250px;
  }

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

  }
  .mv_txt_p2{

  }

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

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

  /* イラスト */
  .mv_illust{
    right: 100px;
  }
  .mv_illust img{
    width: auto;
  }

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

  }
  .mv_txt_p2{

  }

}

@media (min-width:1366px){

  /* イラスト */
  .mv_illust{
    right: 195px;
  }
  .mv_illust img{
    width: auto;
  }

}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
  /*background: #EEE;*/
  /*padding: 0 5px;*/
}
.gnav > ul{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;

}
.gnav > ul > li{
  width: auto;
  position: relative;
}
.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-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  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:767px){

  .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){
  .gnav_wrap{
    background: #FFF;
    background-image: url('/img/gnav_bg.png');
    margin-top: 25px;
    border: 3px solid #f9d8a9;
    border-radius: 10px;
    transition: 0.2s all;
  }
  .gnav li a{
    font-size: 15px;
  }
  .gnav > ul > li a{
    padding: 16px 0 17px;
    transition: 0.2s all;
  }
  .gnav > ul > li a:hover{
    color: var(--main-color);
  }

  .header.slim .gnav_wrap{
    margin-top: 5px;
  }
  .header.slim .gnav > ul > li a{
    padding-top: 10px;
    padding-bottom: 11px;
  }

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

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

  .gnav_wrap{
    margin-top: 35px;
    padding-left: 58px;
    padding-right: 52px;
  }

  body.home .gnav_wrap{
    margin-top: 50px;
  }
  .gnav li a{
    font-size: 15px;
  }

}



/* 検索フォーム */
.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;
  z-index: 1;
  right: 0px;
  bottom: 60px;
}
.pagetop a{
  display: block;
  font-size: 0;
  text-align: center;
}
.pagetop a i{
  font-size: 30px;
}


.breadcrumb{
  display: flex;
  list-style: none;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.075em;
  line-height: 3.166;
  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: 400;
}
.breadcrumb li a{
  position: relative;
}
.breadcrumb li a:after{
  content: "＞";
  padding-left: 15px;
}
/*.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%);
}*/

@media (max-width:767px){
  .breadcrumb{
    margin: 5px 0 30px;
  }
  .breadcrumb li{
    white-space: nowrap;
  }

  /* ページTOPに戻る */
  .pagetop a{
    width: 30px;
    height: 30px;
  }
}
@media (min-width:768px){
  .breadcrumb{
    margin: 5px 0 70px;
  }

  /* ページTOPに戻る */
  .pagetop a{
    width: 42px;
    height: 42px;
  }

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

}
@media (min-width:1200px){
  .breadcrumb{
    margin: 5px 0 107px;
  }

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

  /* ページTOPに戻る */
  .pagetop{
    right: 10px;
  }
  .pagetop a i{
    font-size: 40px;
  }

}

/* **********************************
 *  メイン
 * ********************************* */
.main{
  padding: 0 0 50px;
}
body.home .main{
  padding-top: 0;
}

.tt1{
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1;
  text-align: center;
}
.tt1 span{
  font-weight: 500;
  margin-top: 17px;
  display: block;
  font-size: 18px;
  letter-spacing: 0.07em;
}


@media (max-width:767px){

  .tt1{
    font-size: 35px;
  }

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

  .tt1{
    font-size: 48px;
  }

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

}
@media (min-width:1200px){
  .tt1{
    font-weight: 400;
  }

}

.tt2{

}
.tt2 span{

}
.tt3{

}
.tt3 span{

}
.tt4{

}
.tt4 span{

}
.tt5{

}
.tt5 span{

}


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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  width: 250px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.075em;
  text-align: center;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  text-decoration: none;
}
.read_more a p{
  border-radius: 10px;
  padding: 13px 20px 14px;
  border: 1px solid currentColor;
  background: var(--sub-color);
  color: #FFF;
}
.read_more a p{

}

.read_more a p:after{
  /*
  * f054 > (大)
  * f105 > (小)
  */
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a p:hover{
  color: #FFF;
  background: var(--main-color);
}
.read_more a p:hover:after{
  margin-right: -5px;
}

.read_more a:before{
  content: "";
  height: 48px;
  background-image: url(/img/read_more_bg.png);
  background-size: cover;
  border-radius: 10px;
  position: absolute;
  z-index: -1;
  top: 5px;
  left: -5px;
  right: -5px;
}

/* ボタンメッセージ */
.read_more_wrap{
  margin-top: 50px;
}
.read_more_msg{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
}
.read_more_msg:before,
.read_more_msg:after{

}
.read_more_msg:before{
  content: "\\　";
}
.read_more_msg:after{
  content: "　/";
}

@media (min-width:768px){

  .anchor{
    top: -100px;
  }


  /* ボタン */
  .read_more{
    margin-top: 0;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    width: 330px;
    font-size: 16px;
    /*padding: 16px 20px;*/
    margin: 5px 5px;
  }
  .read_more a p:after{
    top: 50%;
    right: 15px;
  }
  .read_more a:hover p:after{
    margin-right: -5px;
  }

  /* ボタンメッセージ */
  .read_more_wrap{
    margin-top: 50px;
  }
  .read_more_msg{
    font-size: 21px;
    margin-bottom: 13px;
  }

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



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


}


/* **********************************
 *  Home
 * ********************************* */
.pg_home{

}
.pg_home .section{
  position: relative;
  z-index: 1;
}
.pg_home .section > .container{
  position: relative;
  z-index: 1;
}
.pg_home .section.sec1{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec2{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec3{
  background: #f4fff6;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec4{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec5{
  padding-top: 50px;
  padding-bottom: 50px;
  background: url(/img/home/flow_bg.png) no-repeat center center;
}

/* 背景イラスト */
.home_bg_illust{
  width: 100%;
  /*max-width: 1200px;*/
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.home_bg_illust .img{
  position: absolute;
  z-index: 1;
}
.home_bg_illust .img.pos1{
  width: 180px;
  aspect-ratio: 576 / 839;
  top: 30px;
  left: calc(100% - 100px);
}
.home_bg_illust .img.pos2{
  width: 120px;
  aspect-ratio: 415 / 718;
  top: 85%;
  right: calc(100% - 100px);
}
.home_bg_illust .img.pos3{
  width: 150px;
  aspect-ratio: 454 / 486;
  top: -30px;
  left: calc(100% - 80px);
}
.home_bg_illust .img.pos4{
  width: 180px;
  aspect-ratio: 551 / 608;
  bottom: -45px;
  right: calc(100% - 75px);
}
.home_bg_illust .img.pos5{
  width: 80px;
  aspect-ratio: 230 / 235;
  bottom: -40px;
  left: calc(100% - 60px);
}
.home_bg_illust .img.pos6{
  width: 160px;
  aspect-ratio: 495 / 434;
  bottom: 100px;
  left: calc(100% - 135px);
}


.pg_home .price_box{
  margin-top: 0;
}
.pg_home .works_items{
  margin-top: 0;
}

/* 見出し */
.home_tt1{
  font-size: 20px;
  text-align: center;
  margin-bottom: 50px;
  /*margin-bottom: 110px;*/
}
.home_tt1,
.home_tt1 em,
.home_tt1 strong{
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.2;
}
.home_tt1 strong{
  font-size: 1.555em;
  background:linear-gradient(transparent 75%, #89c997 60%);
  display: inline-block;
}
.home_tt1 em{
  font-size: 2.555em;
}


/* 見出し2 */
.home_tt2{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-align: center;
  margin-bottom: 50px;
  /*margin-bottom: 110px;*/
}
.home_tt2 span{
  display: inline-block;
  /*min-width: 270px;*/
}
.home_tt2:before,
.home_tt2:after{
  content: "";
  background: #488f58;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 6px;
}
.home_tt2:before{
  margin-right: 20px;
}
.home_tt2:after{
  margin-left: 20px;
}

.home_tt2,
.home_tt2 em,
.home_tt2 strong{
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.2;
}
.home_tt2 strong{
  font-size: 1.2777em;
  position: relative;
  z-index: 1;
  /*top: -4px;*/
}
.home_tt2 em{
  /*font-size: 2.555em;*/
  color: #89c997;
}

/* 強み */
.home_strong_list{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.home_strong_list_item{
  width: 100%;
  padding: 0 5px;
}
.home_strong_list_item:nth-child(n+2){
  margin-top: 50px;
}
.home_strong_list_item_inner{
  height: 100%;
  background: #fff7eb;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  padding: 1px 15px 25px;
}
.home_strong_list_item_img{

}
.home_strong_list_item_img.img_fit:before{
  padding-top: 75.00%;
}
.home_strong_list_item_title{
  font-size: 20px;
  /*margin-top: 10px;*/
  text-align: center;
  /*margin-top: -27px;*/
  position: relative;
  z-index: 1;
  /*top: -27px;*/
  margin-top: -28px;
}
.home_strong_list_item_title img{
  height: 120px;
}
.home_strong_list_item_txt{
  margin-top: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}

/* サービス内容 */
.home_service{

}
.home_service_row{
  display: flex;
  flex-wrap: wrap;
  background: #fff7eb;
  border-radius: 20px;
  box-shadow: 3px 3px 0 0 #f4d3a1;
  overflow: hidden;
}
.home_service_row + .home_service_row{
  margin-top: 30px;
}
.home_service_box1{
  width: 100%;
  padding: 15px 15px;
  background-image: url('/img/home/service_box_bg.png');
  background-repeat: repeat;
}
.home_service_box2{
  width: 100%;
  padding: 15px 15px;
}
.home_service_title{
  text-align: center;
}
.home_service_title img{
  height: 120px;
}
.home_service_txt1{
  letter-spacing: 0.075em;
  margin-bottom: 15px;
}
.home_service_txt2{
  display: flex;
  flex-wrap: wrap;
}
.home_service_txt2 li{
  font-weight: 600;
  letter-spacing: 0.075em;
  position: relative;
  z-index: 1;
  padding-left: 30px;
}
.home_service_txt2 li:before{
  content: "";
  background: url(/img/service/check.png) no-repeat center center;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 3px;
}

/* 料金 */
.price_text2{
  font-size: 14px;
  text-align: right;
  letter-spacing: 0.075em;
  margin-top: 21px;
  text-indent: -1em;
  padding-left: 1em;
}

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

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

}
@media (max-width:767px){
  .pg_home .section.sec5{
    margin-bottom: -70px;
  }

  .home_service_txt2 li{
    line-height: 1.5;
  }
  .home_service_txt2.col1 li{
    width: 100%;
  }
  .home_service_txt2.col1 li:nth-child(n+2){
    margin-top: 15px;
  }

  .home_service_txt2.col2 li,
  .home_service_txt2.col3 li{
    width: 50%;
  }
  .home_service_txt2.col2 li:nth-child(n+3),
  .home_service_txt2.col3 li:nth-child(n+3){
    margin-top: 15px;
  }

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

  }
  .pg_home .section.sec1{
    padding-top: 90px;
    padding-bottom: 50px;
  }
  .pg_home .section.sec2{
    padding-top: 50px;
    padding-bottom: 145px;
  }
  .pg_home .section.sec3{
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .pg_home .section.sec4{
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .pg_home .section.sec5{
    margin-bottom: -100px;
    padding-top: 70px;
    padding-bottom: 70px;
  }


  /* 背景イラスト */
  .home_bg_illust{
    max-width: 720px;
  }
  .home_bg_illust .img.pos1{
    /*width: 576px;
    top: 30px;
    left: calc(100% - 0px);*/
    width: 290px;
    top: 100px;
    left: calc(100% - 80px);
  }
  .home_bg_illust .img.pos2{
    /*width: 415px;
    top: 240px;
    right: calc(100% - 55px);*/

    width: 205px;
    top: 300px;
    right: calc(100% - 110px);
  }
  .home_bg_illust .img.pos3{
    /*width: 454px;
    top: -115px;
    left: calc(100% - 40px);*/
    width: 220px;
    top: -115px;
    left: calc(100% - 155px);
  }
  .home_bg_illust .img.pos4{
    /*width: 551px;
    bottom: -92px;
    right: calc(100% - 60px);*/
    width: 270px;
    bottom: -92px;
    right: calc(100% - 120px);
  }
  .home_bg_illust .img.pos5{
    /*width: 230px;
    bottom: -125px;
    left: calc(100% - 45px);*/
    width: 115px;
    bottom: -60px;
    left: calc(100% - 110px);
  }
  .home_bg_illust .img.pos6{
    /*width: 495px;
    bottom: 105px;
    left: calc(100% - 235px);*/
    width: 240px;
    bottom: 105px;
    left: calc(100% - 235px);
  }

  /* 見出し */
  .home_tt1{
    font-size: 30px;
    margin-bottom: 70px;
  }

  /* 見出し2 */
  .home_tt2{
    font-size: 30px;
    margin-bottom: 50px;
  }
  .home_tt2:before,
  .home_tt2:after{
    width: 20px;
    height: 20px;
    margin-top: 9px;
  }
  .home_tt2:before{
    margin-right: 35px;
  }
  .home_tt2:after{
    margin-left: 33px;
  }

  /* 強み */
  .home_strong_list{
    margin: 0 -10px;
  }
  .home_strong_list_item{
    width: 33.333%;
    padding: 0 10px;
  }
  .home_strong_list_item_inner{
    padding-bottom: 15px;
  }
  .home_strong_list_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_strong_list_item:nth-child(n+4){
    margin-top: 30px;
  }
  .home_strong_list_item_title{
    font-size: 24px;
    /*margin-top: 10px;*/
  }
  .home_strong_list_item_txt{
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.875;
  }



  /* サービス内容 */
  .home_service{

  }
  .home_service_row{
    border-radius: 20px;
  }
  .home_service_row + .home_service_row{
    margin-top: 30px;
  }
  .home_service_box1{
    display: flex;
    justify-content: center;
    align-items: center;
    /*width: 28.333%;*/
    width: 35%;
    padding: 15px 15px 15px 15px;
  }
  .home_service_box2{
    /*width: 71.667%;*/
    width: 65%;
    padding: 26px 20px;
    /*padding-right: 0px;*/
  }
  .home_service_title{
    text-align: center;
  }
  .home_service_title img{
    height: auto;
  }
  .home_service_txt1{
    margin-bottom: 22px;
  }
  .home_service_txt2{

  }
  .home_service_txt2 li{
    width: 100%;
    font-size: 16px;
    padding-left: 38px;
  }
  .home_service_txt2 li:before{
    width: 24px;
    height: 24px;
    top: 3px;
    left: 0;
  }

  .home_service_txt2.col1 li{
    width: 100%;
  }
  .home_service_txt2.col1 li:nth-child(n+2){
    margin-top: 15px;
  }

  .home_service_txt2.col2{
    max-width: 460px;
  }
  .home_service_txt2.col2 li{
    width: 50%;
  }
  .home_service_txt2.col2 li:nth-child(n+3){
    margin-top: 15px;
  }
  .home_service_txt2.col3{

  }
  .home_service_txt2.col3 li{
    width: 33.333%;
  }
  .home_service_txt2.col3 li:nth-child(n+4){
    margin-top: 15px;
  }


  /* 料金 */
  .price_text2{
    font-size: 15px;
    text-align: right;
    margin-top: 21px;
  }

  .price_text2 + .read_more{
    margin-top: 40px;
  }
  .works_items + .read_more{
    margin-top: 72px;
  }
  .home_flow_wrap + .read_more{
    margin-top: 75px;
  }

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

  /* 背景イラスト */
  .home_bg_illust{
    max-width: 960px;
  }

}

@media (min-width:1024px){

  .pg_home{

  }
  .pg_home .section.sec1{
    padding-top: 90px;
    padding-bottom: 85px;
  }
  .pg_home .section.sec2{
    padding-top: 80px;
    padding-bottom: 145px;
  }
  .pg_home .section.sec3{
    padding-top: 87px;
    padding-bottom: 90px;
  }
  .pg_home .section.sec4{
    padding-top: 135px;
    padding-bottom: 142px;
  }
  .pg_home .section.sec5{
    padding-top: 90px;
    padding-bottom: 90px;
  }


  /* 強み */
  .home_strong_list{
    margin: 0 -15px;
  }
  .home_strong_list_item{
    width: 33.333%;
    padding: 0 15px;
  }
  .home_strong_list_item:nth-child(n+4){
    margin-top: 30px;
  }
  .home_strong_list_item_title{
    font-size: 30px;
    /*margin-top: 10px;*/
  }
  .home_strong_list_item_title img{
    height: 160px;
  }
  .home_strong_list_item_txt{
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.875;
  }


}
@media (min-width:1200px){
  .pg_home .section.sec5{
    margin-bottom: -197px;
  }

  /* 背景イラスト */
  .home_bg_illust{
    max-width: 1200px;
  }
  .home_bg_illust .img.pos1{
    width: 576px;
    top: 30px;
    left: calc(100% - 0px);
  }
  .home_bg_illust .img.pos2{
    width: 415px;
    top: 240px;
    right: calc(100% - 55px);
  }
  .home_bg_illust .img.pos3{
    width: 454px;
    top: -115px;
    left: calc(100% - 40px);
  }
  .home_bg_illust .img.pos4{
    width: 551px;
    bottom: -92px;
    right: calc(100% - 60px);
  }
  .home_bg_illust .img.pos5{
    width: 230px;
    bottom: -125px;
    left: calc(100% - 45px);
  }
  .home_bg_illust .img.pos6{
    width: 495px;
    bottom: 6.5%;
    left: calc(100% - 34.5%);
  }

  /* 見出し */
  .home_tt1{
    font-size: 36px;
    margin-bottom: 110px;
  }
  /* 見出し2 */
  .home_tt2{
    font-size: 36px;
    margin-bottom: 50px;
  }

  /* 強み */
  .home_strong_list_item_inner{
    padding-left: 35px;
    padding-right: 35px;
  }
  .home_strong_list_item_title{
    /*top: -45px;*/
    margin-top: -46px;
  }
  .home_strong_list_item_title img{
    height: 199px;
  }
  .home_strong_list_item_txt{
    padding: 0 4px;
  }

  /* 流れ */
  .home_flow_wrap{
    padding-top: 22px;
    margin-right: -4px;
  }

  .home_service_box1{
    width: 28.333%;
    padding: 15px 15px 15px 0;
  }
  .home_service_box2{
    width: 71.667%;
    padding: 26px 58px;
    padding-right: 110px;
  }
  .home_service_txt2 li{
    font-size: 18px;
    padding-left: 38px;
  }
  .home_service_txt2 li:before{
    width: 24px;
    height: 24px;
    top: 3px;
  }

}
@media (min-width:1920px){
  .home_bg_illust .img.pos6{
    width: 495px;
    bottom: 128px;
    left: calc(100% - 235px);
  }
}





/* **********************************
 *  
 * ********************************* */
.pg_xxxx{

}
.pg_xxxx .section#sec1{

}
.pg_xxxx .section#sec2{

}
.pg_xxxx .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;
  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%;
  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;
}


/* **********************************
 *  プライバシーポリシー
 * ********************************* */
.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 h4{
  font-size: 18px;
  font-weight: 500;
  border-left: 6px solid #f0f0f0;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 2.33;
}
.privacy_items .item .txt{
  line-height: 1.875;
}
.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;
}

@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:767px){






  /* **********************************
   *  お問い合わせ
   * ********************************* */
  .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%;
  }


  /* **********************************
   *  プライバシーポリシー
   * ********************************* */
  .privacy_tt{
    font-size: 18px;
  }
  .privacy_tt br{
    display: inline;
  }
  .privacy_items .item h4{
    font-size: 15px;
  }


  /* クッキー同意 */
  #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;
  }
}


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


@media (max-width:767px){

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


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

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

}