@charset "UTF-8";
/*
Theme Name: MY-THEME
*/
@import "style-visual.css";
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');



/* 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: "banana";
  src: url(/font/banana.woff) format("woff"),
    url(/font/banana.otf) format("otf");
  font-weight: 400;
  font-style: normal;
}
.banana{
  font-family: "banana";
  margin-left:-5px;
}
.din{
  font-family: "Oswald", serif;
}

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

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

/* 基本フォント: 明朝 */
/**/
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:"Hina Mincho", "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.brown{
  color:#754102;
}

a{
  color: inherit;
  text-decoration: none;
}
a:hover{
  /*text-decoration: underline;*/
}

img{
  max-width: 100%;
}
a:hover img{
  opacity: 0.8;
}

img[class*="wp-image-"],
img[class*="attachment-"]{
  max-width: 100%;
  height: auto;
}

i, em{
  font-style: normal;
}

/* 動画埋め込みのレスポンシブ対応 */
iframe{
  max-width: 100%;
}
.responsive_video {
  position: relative;
}

.responsive_video:before{
  content: "";
  display: block;
  padding-top:56.25%;
}
.responsive_video video,
.responsive_video iframe,
.responsive_video object,
.responsive_video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* テーブル */
table{
  width: 100%;
  table-layout: fixed;
}
table th,
table td{
  padding: 10px 10px;
}

/* テーブル 汎用class */
.tbl{

}
.tbl th,
.tbl td{
  border: 1px solid #b2b2b2;
}
.tbl th{

}
.tbl td{

}


/* スクロール テーブル */
.js-scrollable{
  overflow-x: auto;
}
.js-scrollable table{
  min-width: 748px;
}

/* 指定デバイスのみで表示するclass */
@media (min-width:1024px){
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
}
.container{
  width: 1140px;
  padding: 0 10px;
  margin: 0 auto;
}
.section{
  width: 100%;
  /*margin-bottom: 50px;*/
  /*padding: 30px 0;*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header{
  /*padding: 15px 0;*/
  background-color: #eeede8;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin:0 0 50px 0;
}
.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;
}
*/
a:hover{
  opacity: 0.7;
}


/* **********************************
 *  ヘッダー
 * ********************************* */
header{
  /*padding: 10px 0;*/
  padding:20px 0;
}
header .hdr_wrap{
  /*margin-bottom: 10px;*/
  display: flex;
  justify-content: space-between;
}
header .hdr_wrap .hdr_btn a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 285px;
  background: #e2822c;
  color: #FFF;
  border-radius: 10px;
  border-bottom: 3px solid #b3641d;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  margin-left: 20px;
  padding: 16px 5px;
}
header .hdr_wrap .hdr_btn a i{
  margin-right:10px;
}
header .hdr1 .hdr_logo{
}
header .hdr_btn_2 a{
background: #e2822c;
    border-radius: 9999px;
    position: relative;
    display: flex
;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 400px;
    padding: 15px 51px;
    /* font-family: "Noto Sans Japanese"; */
    line-height: 1.6;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    border-bottom: solid 5px #b65511;
    transition: 0.3s ease-in-out;
    font-size: 16px;
}
header .hdr_btn_2 a span{
      font-size: 22px;
    padding: 0 5px;
    text-decoration: underline;
}
header .hdr_btn_2 a:before{
  content: "\f15c";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    margin-right: 12px;
    color: #fff;
    transition: 0.3s ease-in-out;
}
header .hdr_btn_2 a:after{
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
header .hdr_btn_2 a:hover:after {
  right: 1.4rem;
}
header .hdr_btn_2 a:hover {
  background: #ee8134;
  color: #FFF;
  border-bottom: solid 2px #999;
  transform: translateY(3px);
}
header .hdr_btn_2 a:hover:before {
  color: #fff;
}



/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
  background: #EEE;
  padding: 0 5px;
  display: none;
}
.gnav > ul{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  /*font-size: 18px;*/
}
.gnav > ul > li{
  width: 100%;
  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{
  color: #333;
  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;
}


.mv{
  position: relative;
  height: 500px;

  background: #CCC;
  /*background-image: url('/img/mv.jpg');*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.mv_wrap{
  height: 700px;
  background-image: url('/img/top/mv_bg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.mv .mv_box{

}
.mv .mv_box .txt{
  font-size: 32px;
}
.mv .mv_box .img{

}
.mv .mv_box .img img{

}
.hdr_logo{
  padding:20px 0px;
  text-align: center;
  width:100%;
}
.hdr_logo img{
  width:170px;
}


/* ▼ここからハンバーガーメニュー実装 */
/* Hamburger icon */
/* Hamburger icon */
.hamburger-menu {
  position: fixed; /* 固定表示にする */
  top: 15px;      /* 上からの位置を調整 */
  right: 15px;    /* 右からの位置を調整 */
  z-index: 1000;  /* 他の要素より前面に表示する */
}
.hamburger-icon {
  width: 55px;
  height: 54px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease-in-out;
  background: #46a7bf;
  padding: 17px 10px;
  border-radius: 15px 0;
  top: 0px;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
  z-index:99
}

/* Change hamburger icon to close (when open) */
.hamburger-icon.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-icon.open span:nth-child(2) {
  opacity: 0; /* Hide the middle line */
}

.hamburger-icon.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.hamburger-icon.open{
  height:51px;
}

/* Mobile navigation (initially hidden) */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: #46a7bf;
  color: #fff;
  transition: right 0.3s ease;
  z-index:80;
  padding-top: 90px;
  overflow-y: auto;
}

.mobile-nav ul {
  list-style: none;
  /*padding: 0 20px;*/
  width:90%;
  margin-right:5%;
  margin-left:5%;
}

.mobile-nav ul li {
  /*margin: 20px 0;*/
  border-bottom: 1px dashed #fff;
}

.mobile-nav ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  padding:15px 0;
  letter-spacing: 2px;
}
.mobile-nav ul li a .poppin{
  font-size:15px;
}
.mobile-nav ul li a .poppin:before{
  content:'/';
  margin-left:15px;
  margin-right:15px;
}

/* Show mobile nav when open */
.mobile-nav.open {
  right: 0;
}

/* Change hamburger icon to close (when open) */
.hamburger-icon.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-icon.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hamburger-icon{
  display: none;
}

/* ハンバーガーメニューにアコーディオン実装 */
/* Hide submenu initially */
.mobile-nav .submenu {
  display: none;
  padding-bottom: 15px;
  padding-left: 20px;
}

.mobile-nav .accordion .toggle-icon {
  float: right;
  font-size: 18px;
  cursor: pointer;
}

/* Open submenu */
.mobile-nav .accordion.open .submenu {
  display: block;
}

.mobile-nav .accordion.open .toggle-icon {
  content: "ー"; /* Change icon to minus when open */
}

.mobile-nav .accordion .submenu li{
  border:0!important;
  position: relative;
}
.mobile-nav .accordion .submenu li a{
  padding-left:35px;
  font-size:0.9rem;
}
.mobile-nav .accordion .submenu li:before{
  content:'';
  display: block;
  width:20px;
  height:3px;
  background:#fff;
  position: absolute;
  top:47%;
  left:0;
}

.mobile-nav .tel_num{
  width: 90%;
  margin: 25px auto 0 auto;
  border: 1px solid #fff;
  border-radius: 10px 0;
  text-align: center;
  background:#fff;
  margin-bottom:40px;
}
.mobile-nav .tel_num a{
  display: block;
  padding: 15px 10px;
  color:#e2822c;
}
.mobile-nav .tel_num .num{
  font-size:20px;
}
.hamburger-menu{
  display: none;
}

/* **********************************
 *  フッター
 * ********************************* */
footer{
  background:#f3f3f3;
  padding:80px 0 0 0;
}
footer .logo{
  text-align: center;
}

footer .ftr1{
  margin-bottom: 30px;
}
footer .ftr_links{
  display: flex;
  justify-content: space-around;
}
footer .ftr_links li{
  border-right: 1px solid #c9c9c9;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  padding: 0 25px;
}
footer .ftr_links li:first-child{
  border-left: 1px solid #c9c9c9;
}

footer .ftr2{

}
footer .ftr2 .container{
  display: flex;
  justify-content: space-between;
}
footer .ftr2 .box1{

}
footer .ftr2 .box2{
  text-align: right;
}

footer .copy{
  text-align: center;
  font-size: 12px;
  padding: 40px 0 20px 0;
}
footer .copy a{
  /*color: #111;*/
}
footer .pro{
  text-align: center;
  color: #754102;
  margin: 15px 0 0 0;
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #aec4e5;
  z-index: 999999999;
}
.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: 100%;
  border-right:1px solid #fff;

}
.footer_fix ul li.btn2{
  width: 28%;
}
.footer_fix ul li a{
  display: block;
  padding: 15px 10px;
  background: #b0a59c;
  color: #FFF;
  text-decoration: none;
}
.footer_fix ul li.btn1 a{
    color: #ffffff;
    background: #e2822c;
    letter-spacing: 1px;
}
.footer_fix ul li.btn1 a:before{
  content: "\f15c";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    margin-right: 12px;
    color: #fff;
    transition: 0.3s ease-in-out;
}
footer .logo{
  text-align: center;
  margin-top: -20px;
}
footer .page_top{
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  color: #754102;
  font-size: 39px;
  top: -56px;
  position: relative;
  margin: 0 auto;
}
footer .page_top i{
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
}
footer .ftr_cat{
  display: flex;
  margin: 40px 0;
  justify-content: center;
}
footer .ftr_cat li{
  margin:0 25px;
  font-weight: 500;
}
footer .ftr_sml_cat{
  display: flex;
  justify-content: center;
  font-size:14px;
}
footer .ftr_sml_cat li{
  margin:0 20px;
}

/* 検索フォーム */
.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: 80px;
}
.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: #fff;
  /* color: #ffffff; */
  padding: 10px 100px;
  border: 1px solid #dedede;
}

/* 検索 */
.search_list{
  background: #eee;
  padding: 15px;
}
.search_list .item{

}
.search_list .item + .item{

}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 10px;
  bottom: 60px;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
}
.pagetop a i{
  font-size: 40px;
}

/* コンタクトフォーム */
.contact_info{
  background: #f0f0f0;
  text-align: center;
  padding: 20px;
  margin-bottom: 100px;
}
.contact_info .box1{
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.14em;
}
.contact_info .box2{
  margin-top: 20px;
  background: #FFFFFF;
  padding: 20px 5px;
  line-height: 1;
}
.contact_info .box2 .icon{
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  background: #8c8c8c;
  color: #FFFFFF;
  padding: 5px 15px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 5px;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: bold;
  vertical-align: middle;
  font-weight: bold;
  letter-spacing: 0.2em;
}
.contact_info .box2 .tel a{
  display: block;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  margin-left: 10px;
}

.contact_form{
  width: 100%;
  border: 1px solid #b2b2b2;
}
.contact_form tr{
  border-bottom: 1px solid #b2b2b2;
}
.contact_form th,
.contact_form td{
  padding: 15px;
  font-weight: normal;
  text-align: left;
}
.contact_form th{
  background: #f0f0f0;
  width: 300px;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 5px;
  color: #FFF;
  background: #b80000;
  font-size: 14px;
  font-weight: normal;
  float: right;
}
.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.addr dt{
  width: 90px;
}
.contact_form dl.addr dd{
  width: calc(100% - 90px);
}
.contact_form dl.date {
  align-items: flex-start;
}
.contact_form dl.date dt{
  width: 90px;
}
.contact_form dl.date dt + dt{
  margin-left: 5px;
}
.contact_form dl.date dt select{
  width: 100%;
}
.contact_form dl.date dt.wide{
  width: 200px;
}
.contact_form dl.addr dd{

}


.contact_form td .wpcf7-form-control-wrap{
  display: block;
}
.contact_form td .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-top: 5px;
}
.contact_form td .wpcf7-form-control ,
.contact_form td .wpcf7c-conf-hidden {
  padding: 10px;
  max-width: 100%;
  border: 1px solid #CCC;
  border-radius: 0;
}
.contact_form td .wpcf7-checkbox,
.contact_form td .wpcf7-radio{
  border: 0;
}
.contact_form td .wpcf7-text {
  width: 500px;
  max-width: 100%;
}
.contact_form td .wpcf7-textarea {
  width: 100%;
}
.contact_form td .wpcf7-file {
  width: 100%;
  border: 0;
}
.contact_form td .wpcf7-file + .wpcf7c-conf{
  width: 100%;
  border: 1px solid #398f14;
}
.contact_form td [name="zipcode"],
.contact_form td [name="addr1"]{
  width: 150px;
}
.contact_form td [name="addr1"]{
  width: 180px;
}
.contact_form td [name="addr2"]{
}
.contact_form td .wpcf7-form-control-wrap.zipcode{
  display: flex;
  align-items: stretch;
}
.contact_form td .wpcf7-form-control-wrap.zipcode:before{
  vertical-align: top;
  content: "〒";
  background: #CCC;
  width: 30px;
  padding: 0;
  margin: 0;
  border: 1px solid #CCC;
  border-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact_form td .addr_auto{
  background: #f0f0f0;
  border: 1px solid #d6d8d8;
  margin-left: 10px;
  padding: 0 5px;
}

.contact_form td .wpcf7-checkbox,
.contact_form td .wpcf7-radio{
  display: block;
}
.contact_form span.wpcf7-list-item{
  margin: 0 1em 0 0;
}


.contact_form_msg{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* 確認画面用 */
.wpcf7c-conf:not([type="radio"]):not([type="checkbox"]){
  background: #eeffe4;
  -webkit-box-shadow: 0 0 0px 1000px #eeffe4 inset;
  border: 1px solid #398f14;
  opacity: 0.9;
}
.wpcf7c-conf:checked + .wpcf7c-conf-hidden + .wpcf7-list-item-label{
  color: #398f14;
}
/*input:-webkit-autofill,
textarea:-webkit-autofill, 
select:-webkit-autofill {
  background-color: #eeffe4 !important;
  background-image: none !important;
  color: #666 !important;
}*/


.contact_form_acceptance{
  text-align: center;
  margin-top: 20px;
}
.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance span.wpcf7-list-item{
  margin: 0;
}

/* コンタクトフォーム - ボタン */
.contact_form_btns{
  text-align: center;
  padding: 30px 0;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"]{
  background: #b80000;
  color: #FFF;
  border: 0;
  padding: 10px;
  width: 300px;
  margin: 0 10px;
}
.contact_form_btns input[type="submit"][disabled],
.contact_form_btns input[type="button"][disabled]{
  background: #CCC;
}
.contact_form_btns input.wpcf7-confirm{

}
.contact_form_btns input.wpcf7-back{
  background: #CCC;
}
.contact_form_btns input.wpcf7-submit{
  background: #398f14;
}


/* サイトマップ */
.sitemap_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.sitemap_items .item{
  width: 25%;
  padding: 0 10px;
  margin-bottom: 20px;
}
.sitemap_items .item h4{
  border: 1px solid #d3d3d3;
  border-bottom: 5px solid #d3d3d3;
}
.sitemap_items .item h4 a{
  display: block;
  padding: 20px 15px;
}
.sitemap_items .item ul{
}
.sitemap_items .item ul li{
  border-bottom: 1px dashed #d3d3d3;
  position: relative;
}
.sitemap_items .item ul li:before{
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sitemap_items .item ul li a{
  display: block;
  padding: 5px 10px 5px 20px;
}


/* プライバシーポリシー */
.privacy_tt{
  text-align: center;
  margin-bottom: 30px;
}
.privacy_tt h3{
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.privacy_tt br{
  display: none;
}
.privacy_tt .dots{
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.privacy_tt .dots i{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c1c1c1;
  margin: 0 8px;
}

.privacy_items{

}
.privacy_items .item{
  line-height: 1.6;
}
.privacy_items .item + .item{
  margin-top: 40px;
}
.privacy_items .item h4{
  font-size: 18px;

  border-left: 6px solid #bbbbbb;
  padding-left: 15px;
  margin-bottom: 10px;
  line-height: 2.33;
}
.privacy_items .item .txt{

}
.privacy_items .item ul{
  list-style: disc;
  margin-left: 2em;
  margin-top: 10px;
}
.privacy_items .item ul.latin{
  list-style: lower-latin;
}

.privacy_items .item ul li{

}
.privacy_items .item ol{
  margin-left: 2em;
  margin-top: 10px;
}


.breadcrumb{
  display: flex;
  list-style: none;
  margin-bottom: 20px;
  font-size: 14px;
  overflow-x: auto;
}
.breadcrumb li{
  display: inline;
  white-space: normal;
}
.breadcrumb li + li{
  margin-left: 10px;
}
.breadcrumb li:last-child{
  font-weight: 500;
}
.breadcrumb li a{
  position: relative;
  padding-right: 15px;
}
.breadcrumb li a:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.breadcrumb li:first-child a{
  padding-left: 15px;
}
.breadcrumb li:first-child a:before{
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* **********************************
 *  メイン
 * ********************************* */
.main{
  padding: 0 0 50px;
}

.chatbox_card_wrap2 a .txt{
  font-family:  'Noto Sans JP', "游明朝体", "Yu Mincho", YuMincho, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.tt1{
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
}
.tt1 span{
  display: block;
  text-align: center;
  font-size: 14px;
}

.tt2{

}
.tt2 span{

}
.tt3{

}
.tt3 span{

}
.tt4{

}
.tt4 span{

}
.tt5{

}
.tt5 span{

}

/* 詳しく見る サンプル */
.read_more{

}
.read_more a{
  display: block;
  width: 290px;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px 0;
  border-radius: 10px;
  background: #00a7c6;
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}
.read_more a:after{
  /*content: "\f054";*/
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

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

}
.pg_home .section#sec1{

}
.pg_home .section#sec2{

}
.pg_home .section#sec3{

}

.pg_home .top_total{
  margin:100px 0 80px 0;
}
.pg_home .top_total .main_ttl{
  text-align: center;
}
.pg_home .top_total .main_ttl img{
  width:470px;
}
.pg_home .top_total .point_area{
  background: linear-gradient(0deg, #fff8f2 0%, #fff8f2 85%, #fff 15%, #fff 100%);
  margin:50px 0 0 0;
  padding-bottom:40px;

}
.pg_home .top_total .box_wrap,
.pg_home .top_tro .box_wrap{
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.pg_home .top_total .box_wrap .deco{
  position: absolute;
  right:0;
  top:-172px;
}
.pg_home .top_total .box_wrap .box{
  width:49%;
  margin:0 2% 30px 0;
  border-radius: 25px;
  background: #fff;
  overflow: hidden;
  display: flex;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  align-items: center;
}
.pg_home .top_total .box_wrap .box:nth-of-type(2n){
  margin:0 0 30px 0;
  flex-direction: row-reverse;
}
.pg_home .top_total .box_wrap .box .img{
  width:35%;
}
.pg_home .top_total .box_wrap .box .detail{
  width:65%;
  padding:0 20px;
  position: relative;
}
.pg_home .top_total .box_wrap .box .number{
  position: absolute;
  font-size: 40px;
  border-bottom: 3px solid #5b5b5b;
  line-height: 1;
  right: 20px;
  top: -15px;
}
.pg_home .top_total .box_wrap .box .catch{
  letter-spacing: 1px;
  font-weight: 700;
}
.pg_home .top_total .box_wrap .box .ttl{
  font-size: 40px;
  line-height: 45px;
  color: #e2822c;
  margin:10px 0;
}
.pg_home .top_total .box_wrap .box .txt{
  letter-spacing: 1.5px;
}

.pg_home .top_tro{
  position: relative;
}
.pg_home .top_tro:after{
  content: '';
  width: 132px;
  height: 63px;
  display: block;
  background: url(/img/top/arrow.png) no-repeat center top;
  position: absolute;
  left: 46%;
  bottom: -36px;
}
.pg_home .top_tro .main_ttl{
  text-align: center;
}
.pg_home .top_tro .main_ttl img{
  width:440px;
}

.pg_home .top_tro .point_area{
  background: #ebf5f8;
  padding: 100px 0 50px 0;
  margin-top: -50px;
}
.pg_home .top_tro .box_wrap{
  justify-content: space-between;
}
.pg_home .top_tro .box_wrap li{
  width:31%;
  background:#fff;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding:20px 15px;
  font-weight: bold;
  margin-bottom:30px;
}
.pg_home .top_tro .box_wrap li .catch{
}
.pg_home .top_tro .box_wrap li .ttl{
  color: #46a7bf;
  letter-spacing: 0.5px;
  font-size: 23px;
  background: linear-gradient(transparent 70%, #fff0ab 70%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 2px;
  display: inline;
  line-height: 1.6;
}
.pg_home .middle_ttl{
  text-align: center;
  margin:80px 0;
}
.pg_home .middle_ttl img{
  width:800px;
}
.pg_home .top_ser .ttl_area{
  text-align: center;
}
.pg_home .top_ser .ttl_area .en_ttl{
  font-size:80px;
  line-height: 1;
  letter-spacing: 4px;
  color:#faede5;
}
.pg_home .top_ser .ttl_area .main_ttl img{
  width:190px;
}
.pg_home .top_ser .ttl_area .main_ttl{
  margin-top:-28px;
}
.pg_home .top_ser .box_area{
  background:#fff8f2;
  padding:100px 0 50px 0;
  margin-top:-29px;
}
.pg_home .top_ser .box_wrap{
  display: flex;
  flex-wrap: wrap;
}
.pg_home .top_ser .box_wrap .box{
  background:#fff;
}
.pg_home .top_ser .box_wrap_half{
  justify-content:space-between;
  margin-bottom:30px;
}
.pg_home .top_ser .box_wrap_half .box{
  width:48%;
}
.pg_home .top_ser .box_wrap_3 .box{
  width:32%;
  margin:0 2% 30px 0;
}
.pg_home .top_ser .box_wrap_3 .box:nth-of-type(3n){
  margin:0 0 30px 0;
}
.pg_home .top_ser .box_wrap .box .detail{
  padding:20px 15px;
}
.pg_home .top_ser .box_wrap .box .detail .catch,
.pg_home .top_ser .box_wrap .box .detail .ttl{
  text-align: center;
  letter-spacing: 1px;
}
.pg_home .top_ser .box_wrap .box .detail .catch{
  font-weight: 500;
}
.pg_home .top_ser .box_wrap .box .detail .ttl{
  font-size:20px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-style: dotted; /* 点線 */
  color:#e2822c;
  text-underline-offset: 10px;
  margin:10px 0;
}
.pg_home .top_ser .box_wrap .box .btn a{
  width:280px;
  line-height: 56px;
  background:#e2822c;
  display: block;
  letter-spacing: 2px;
  font-size:15px;
  text-align: center;
  color:#fff;
  margin:25px auto 0 auto;
}



.to_contact{
  margin-top:30px;
}
.to_contact a {
  background: #e2822c;
  border-radius: 9999px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 400px;
  padding: 20px 30px;
  /*font-family: "Noto Sans Japanese";*/
  line-height: 1.8;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  border-bottom: solid 5px #b65511;
  transition: 0.3s ease-in-out;
  font-size:20px;
}
.to_contact span{
  font-size:24px;
  padding:0 5px;
  text-decoration: underline;
}
.to_contact a:before {
  content: "\f15c";
  position: relative;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  margin-right: 12px;
  color: #fff;
  transition: 0.3s ease-in-out;
}
.to_contact a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.to_contact a:hover:after {
  right: 1.4rem;
}
.to_contact a:hover {
  background: #ee8134;
  color: #FFF;
  border-bottom: solid 2px #999;
  transform: translateY(3px);
}
.to_contact a:hover:before {
  color: #fff;
}

.pg_home .top_flow{
  margin:100px 0;
}
.pg_home .top_flow .ttl_area{
  text-align: center;
}
.pg_home .top_flow .ttl_area .en_ttl{
  font-size:70px;
  line-height: 1;
  letter-spacing: 10px;
  color:#faede5;
}
.pg_home .top_flow .ttl_area .main_ttl{
  color:#e2822c;
  margin:14px 0 0 0;
  font-size:24px;
  padding:0 0 10px 0;
  border-bottom:3px solid #e2822c;
  display: inline-block;
}
.pg_home .top_flow .box_wrap{
  display: flex;
  justify-content:space-between;
  text-align: center;
  margin:70px 0 0 0;
}
.pg_home .top_flow .box_wrap .box{
  width: 24%;
  background: #f7f7f7;
  position: relative;
  padding: 50px 15px 25px 15px;
}
.pg_home .top_flow .box_wrap .box .ttl{
  font-size:18px;
  font-weight: 600;
  letter-spacing: 2px;
  color:#e2822c;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 10px;
  margin:10px 0 0 0;
}
.pg_home .top_flow .box_wrap .box .txt{
  font-size:14px;
  letter-spacing: 0.5px;
  text-align: left;
  margin:25px 0 0 0;
  line-height: 1.8;
}
.pg_home .top_flow .box_wrap .step{
  width: 70px;
  height: 70px;
  background: #e2822c;
  color: #fff;
  border-radius: 50%;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column; /* 縦方向の配置 */
  justify-content: center; /* 縦中央揃え */
  align-items: center; /* 横中央揃え */
  position: absolute;
  top: -34px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.pg_home .top_flow .box_wrap .step span{
  display: block;
  line-height: 1;
  font-size:25px;
}

.pg_home .top_faq{
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
    linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  padding:70px 0;
}
.pg_home .top_faq .ttl_area{
  text-align: center;
  margin:0 0 40px 0;
}
.pg_home .top_faq .ttl_area .main_ttl{
  font-size:40px;
  color:#46a7bf;
  font-weight: normal;
  margin:15px 0 20px 0;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 15px;
}

.pg_home .top_faq .accordion-content {
  display: none;
}

.pg_home .top_faq .accordion-header {
    background-color: #fff;
    border: 1px solid #000;
  color: #000;
  font-weight: 500;
  /*padding: 18px 40px;*/
  padding: 18px 66px 18px 40px;
  margin: 25px 0 0;
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
  letter-spacing: 3px;
  font-size: 17px;

}

.pg_home .top_faq .accordion-header::before,
.pg_home .top_faq .accordion-header::after{
  position:absolute;
  content:'';
  top:1px;
  right:40px;
  bottom:0;
  width:12px;
  height:2px;
  margin:auto;
  background:#000;
}
.pg_home .top_faq .accordion-header::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
  color:#fff;
}
.pg_home .top_faq .accordion-header.active::after{
  transform:rotate(0deg);
}

.pg_home .top_faq .accordion-content {
  background-color: #f4f4f4;
  padding: 40px 40px 50px 40px;
  letter-spacing: 2px;
}

.pg_home .top_faq .accordion-header .ttl,
.pg_home .top_faq .accordion-content .txt{
  padding-left: 60px;
  position: relative;
}

.pg_home .top_faq .accordion-header span::before,
.pg_home .top_faq .accordion-header .ttl::before{
  position: absolute;
  content: "Q";
  top: 0px;
  left: 0;
  line-height: 1;
  color: #000;
  font-size: 27px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}


.pg_home .top_faq .accordion-content span::before,
.pg_home .top_faq .accordion-content .txt::before{
  background: #46a7bf;
  position: absolute;
  content: "A";
  top: 3px;
  left: -10px;
  color: #fff;
  font-size: 27px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1;
  border-radius: 10px 0;
  padding: 8px 11px;
}

/* hover */
.pg_home .top_faq .accordion-header:hover {
  /*background-color: #F2F2F2;*/
}

.pg_home .top_contact{
  margin:100px 0 0 0;
}
.pg_home .top_contact .ttl_area{
  text-align: center;
  margin:0 0 50px 0;
}
.pg_home .top_contact .ttl_area img{
  width:400px;
}
.pg_home .top_contact .form_area dl{
  width:700px;
  margin:0 auto 30px auto;
}
.pg_home .top_contact .form_area dl dt{
  font-size:16px;
  font-weight: 500;
  letter-spacing: 1px;
  margin:0 0 10px 0;
}
.pg_home .top_contact .form_area dl dt span{
  display: inline-block;
      border-radius: 18px;
    background-color: #e2822c;
        margin-left: 5px;
    padding: 3px 11px;
    /*font-size: 1rem;*/
    font-size:14px;
    color: #fff;
}
.pg_home .top_contact .form_area .form_shopname,
.pg_home .top_contact .form_area .form_username,
.pg_home .top_contact .form_area .form_email,
.pg_home .top_contact .form_area .form_tel,
.pg_home .top_contact .form_area .form_message{
  width:100%;
      border-radius: 6px;
          padding: 12px;
    background-color: #f9fafc;
        border: solid 1px #d4d7e0;
}
.pg_home .top_contact .form_area .form_submit_btn{
      background: #e2822c;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 400px;
    padding: 20px 30px;
    /* font-family: "Noto Sans Japanese"; */
    line-height: 1.8;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    /*border-bottom: solid 5px #b65511;*/
    transition: 0.3s ease-in-out;
    font-size: 17px;
    border:0;
    width:300px;
}


/* **********************************
 *  グルメ情報
 * ********************************* */
.pg_gourmet .pg_home .top_food .food_wrap{
  margin:0 0 0 0;
}
.pg_gourmet .pg_home .top_food .food_wrap .box{
  margin-bottom:30px;
}
.pg_spot .attention{
  text-align: center;
  font-size:13px;
}

/* **********************************
 *  スポット
 * ********************************* */
.pg_spot_single .sub_ttl,
.pg_event_single .box .sub_ttl{
  font-size:28px;
  padding:0 0 25px 0;
  border-bottom:1px solid #d0d0d0;
  text-align: center;
  margin:0 0 30px 0;
}
.pg_spot_single .img,
.pg_event_single .box .img{
  text-align: center;
}
.pg_spot .main_ttl,
.pg_event_single .box .main_ttl{
  margin:50px 0 20px 0;
}
.pg_spot_single .txt,
.pg_event_single .box .txt{
  font-size:16px;
  line-height: 30px;
  letter-spacing: 1px;
  width:700px;
  margin:0 auto;
}
.pg_spot_single table,
.pg_event_single .box table{
  width:700px;
  margin:0 auto 50px auto;
}
.pg_spot_single table th,
.pg_spot_single table td,
.pg_event_single .box table th,
.pg_event_single .box table td{
  border-bottom:1px solid #d0d0d0;
  padding:15px 0;

}
.pg_spot_single table th,
.pg_event_single .box table th{
  font-weight: normal;
  text-align: left;
  width:30%;
}
.pg_spot_single table td,
.pg_event_single .box table td{
  width:70%;
}
footer{
  margin:50px 0 0 0;
}


/* **********************************
 *  ふるさと納税
 * ********************************* */
.pg_town .detail{
  margin:0 0 100px 0;
}
.pg_town .detail .catch{
  text-align: center;
  font-size: 26px;
  line-height: 33px;
  font-weight: normal;
  margin: 50px 0 11px 0;
}
.pg_town .detail .sub_ttl{
  text-align: center;
  font-size: 40px;
}
.pg_town .detail .txt{
  text-align: center;
  line-height: 34px;
  margin:20px 0 0 0;
}
.pg_town .lists .block1{
  display: flex;
  justify-content:space-around;
  flex-wrap: wrap;
}
.pg_town .lists .block1 .box{
  width:30%;
  margin-bottom:40px;
}
.pg_town .lists .block2 .box{
  width:23%;
}
.pg_town .lists .sub_ttl{
  text-align: center;
  font-weight: bold;
  padding:10px 0;
  font-size:20px;
}


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

.pg_contact .privacy{
  margin-top: 80px;
}
