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

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

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

/* 基本フォント: 明朝 */
/**/
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: 'Noto Serif JP', serif;
}
.lato{
  font-family: 'Lato', sans-serif;
}

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

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

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

i, em{
  font-style: normal;
}

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

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

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

/* テーブル 汎用class */
.tbl{
  
}
.tbl th,
.tbl td{
  border: 1px solid #b2b2b2;
}
.tbl th{
  
}
.tbl td{
  
}


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

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

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
}
.container{
  width: 1160px;
  padding: 0 10px; 
  margin: 0 auto;
}
.section{
  width: 100%;
  /*margin-bottom: 50px;*/
  padding: 80px 0; 
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header{
  margin: 0 89px;
  height: 407px;
  /*padding: 15px 0;*/
  background-color: #ccc;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pg_header .ttl{
  font-size: 22px;
  line-height: 1.65;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.pg_header .ttl span{
  font-size: 38px;
  display: block;
  font-weight: 600;
}

/* 共通の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{
  padding: 25px 89px 80px;
}
header .hdr0{
  text-align: right;
}
header .hdr0 p{
  letter-spacing: -0.09em;
}
header .hdr0 .tel{
  font-size: 32px;
  margin: 12px 0 16px;
  font-weight: 700;
  color: #98cf36;
  letter-spacing: 0.04em;
}
header .hdr0 .tel span{
  font-size: 21px;
}
header .hdr1{  
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
header .hdr1 .hdr_logo {
  width: 20%;
}
header .hdr1 .hdr_contact{
}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
  width: 80%;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.gnav > ul{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.gnav > ul > li{
  padding: 0 39px;
  /*width: 100%;*/
  position: relative;
  letter-spacing: 0.05em;
}
.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{
  text-decoration: none;
  display: block;
  font-weight: 500;
}
.gnav li a:hover{
  text-decoration: underline;
}

.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;
}
.gnav .icon + .icon{
  margin-left: 10px;
}


.mv{
  height: 639px;
  margin: 0 89px;
  padding: 0 50px;
  position: relative;
  background-image: url('/img/top/mv.jpg?1');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.mv .mv_box{
  
}
.mv .mv_box .txt{
  font-size: 47px;
  font-weight: 700;
  color: #98cf36;
  text-align: right;
  line-height: 1.5;
  text-shadow: 0 0 6px #ffffff,
    0 0 6px #ffffff,
    0 0 6px #ffffff,
    0 0 6px #ffffff,
    0 0 6px #ffffff,
    0 0 6px #ffffff,
    0 0 6px #ffffff;
  letter-spacing: 0.03em;
}
.mv .mv_box .txt .en{
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.home_bnr{
  margin: 0 89px;
}
.home_bnr a{
  width: 50%;
  display: block;
}
.home_bnr a img{
  width: 100%;
}
.flex{
  display: flex;
  flex-wrap: wrap;
}

/* **********************************
 *  フッター
 * ********************************* */
footer{
  padding: 72px 0 0;
  border-top: 5px solid #98cf36;
}

footer .ftr1{
  padding: 0 89px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
footer .ftr1 .box1{
  width: 60%;
}
footer .ftr1 a + a{
  margin-left: 15px;
  display: inline-block;
}
footer .ftr1 a + p{
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
footer .ftr_links{
  width: fit-content;
  margin-top: 13px;
  padding-top: 11px;
  border-top: 1px solid #181818;
  display: flex;
}
footer .ftr_links li{
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.045em;
}
footer .ftr_links li:before{
  content: "／";
}
footer .ftr_links li:first-child:before{
  display: none;
}
footer .ftr1 .box2{
  width: 40%;
  text-align: right;
}
footer .ftr1 .box2 a{
  vertical-align: bottom;
}
footer .ftr1 .box2 a:last-child{
  margin-left: 20px;
  display: inline-block;
}

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: 13px;
  padding: 8px 0;
  background: #98cf36;
  color: #ffffff;
  letter-spacing: 0.05em;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #aec4e5;
  z-index: 10;
}
.footer_fix ul{
  /*display: table;*/
  width: 100%;
  font-size: 14px;
  
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 38%;
  border-right: 1px solid #80b128;
}
.footer_fix ul li.btn2{
  width: 24%;
}
.footer_fix ul li a{
  display: block;
  padding: 10px 5px 5px;
  background: #8dc12f;
  color: #FFF;
  text-decoration: none;
}
.footer_fix ul li.btn2 a{
  background: #efefef;
  color: #8dc12f;
}
.footer_fix ul li a i{
  font-size: 22px;
  display: block;
}


/* 検索フォーム */
.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{
  padding: 8px 0 0;
  margin-bottom: 20px;
  /*background: #f0f0f0;*/
  display: flex;
  align-items: center;
  position: relative;
}
.post_items .item:last-child{
}
.post_items .item .img{
  
}
.post_items .item .date{
  width: 106px;
  margin-right: 20px;
  padding: 5px 0;
  border-bottom: 3px solid #98cf36;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.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{
  padding: 5px 25px;
  font-size: 15px;
  font-weight: 500;
  width: calc(100% - 106px - 20px);
  border-bottom: 1px solid #98cf36;
  /*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: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #58d961;
}

.post_items .item.single_item{
  padding: 35px;
  display: flex;
  flex-wrap: wrap;
  border-top: 14px solid #98cf36;
  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 .date{
  width: auto;
  margin-right: 0;
  padding: 0;
  border-bottom: 0;
  text-align: left;
  font-weight: 400;
  color: #808080;
}
.post_items .item.single_item .title{
  width: 100%;
  font-size: 24px;
  padding: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #d3d3d3;
  letter-spacing: 0.05em;
}
.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{
  font-size: 16px;
  margin-top: 25px;
  letter-spacing: 0.1em;
}

/* ページ送り(一覧) */
.pagination{
  text-align: center;
  margin-top: 90px;
}
.single-blog .pagination{
  margin-top: 50px;
}
.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 13px;
  margin: 4px 4px;
  text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background: #e5e5e5;
  border: 1px solid #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{
  font-size: 19px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagination .nav-posts .page-next,
.pagination .nav-posts .page-prev{
  min-width: 251px;
}
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a{
  display: block;
  border: 1px solid #c0c0c0;
  padding: 9px 50px;
  position: relative;
  font-weight: 500;
}
.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: 15px;
}
.pagination .nav-posts .page-prev a:after{
  content: "\f054";
  right: 15px;
}
.pagination .nav-posts .page-archive a{
  display: block;
  background: #98cf36;
  color: #ffffff;
  padding: 10px 117px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.pagination .nav-posts .page-next a:hover,
.pagination .nav-posts .page-prev a:hover,
.pagination .nav-posts .page-archive a:hover{
  opacity: 0.7;
  text-decoration: none;
}

/* 検索 */
.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: #beecb2;
  text-align: center;
  padding: 30px 30px 25px;
  margin-bottom: 125px;
}
.contact_info .box1{
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.14em;
}
.contact_info .box2{
  margin-top: 15px;
  background: #FFFFFF;
  padding: 20px 5px 30px;
  line-height: 1;
}
.contact_info .box2 .icon{
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  background: #98cf36;
  color: #FFFFFF;
  padding: 5px 13px 5px 15px;
  margin-right: 20px;
  vertical-align: middle;
  border-radius: 5px;
  letter-spacing: 0.1em;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 42px;
  font-weight: bold;
  vertical-align: middle;
  letter-spacing: 0.038em;
}
.contact_info .box2 .tel a{
  display: block;
}
.contact_info .box2 .txt{
  width: 100%;
  font-size: 16px;
  margin: 20px 0 0;
  display: block;
  vertical-align: bottom;
  margin-left: 0;
  font-weight: bold;
  letter-spacing: 0.15em;
}

.contact_form{
  width: 100%;
  border: 1px solid #b2b2b2;
}
.contact_form tr{
  border-bottom: 1px solid #b2b2b2;
}
.contact_form th,
.contact_form td{
  padding: 10px 25px;
  font-weight: normal;
  text-align: left;
  letter-spacing: 0.05em;
}
.contact_form th{
  width: 312px;
  padding: 16px 16px 14px 30px;
  font-size: 16px;
  background: #f0f0f0;
  vertical-align: top;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 10px 2px 12px;
  color: #FFF;
  background: #b80000;
  font-size: 13px;
  font-weight: 700;
  float: right;
  letter-spacing: 0.1em;
}
.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: 8px 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: 461px;
  max-width: 100%;
}
.contact_form td .wpcf7-textarea {
  width: 100%;
  height: 280px;
}
.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{
  font-size: 17px;
  margin-top: 105px;
  text-align: center;
  letter-spacing: 0.1em;
}
.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"]{
  width: 314px;
  font-size: 18px;
  padding: 14px;
  margin: 0 10px;
  background: #98cf36;
  color: #FFF;
  border: 0;
  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 input.wpcf7-confirm{
  
}
.contact_form_btns input.wpcf7-back{
  background: #CCC;
}
.contact_form_btns input.wpcf7-submit{
  background: #98cf36;
}


/* サイトマップ */
.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{
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.035em;
}
.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: 80px 0 200px;
}
.home .main{
  padding: 200px 0 0;
}

.tt1{
  font-size: 18px;
  margin-bottom: 45px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.2em;
}
.tt1 span{
  font-size: 34px;
  display: block;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: 'Noto Serif JP', serif;
}
.tt1 span:after{
  width: 63px;
  height: 3px;
  margin: 10px auto 20px;
  content: "";
  display: block;
  background: #98cf36;
}

.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 .tt1 span{
  font-size: 28px;
}
.pg_home .section#sec1{
  margin-bottom: 15px;
}
.pg_home .section#sec1 .tt1{
  text-align: left;
}
.pg_home .section#sec1 .tt1 span:after{
  margin: 10px 0 20px;
}
.pg_home .section#sec1 .container{
  padding-top: 10px;
  position: relative;
}
.pg_home .section#sec1 .img{
  width: 59.3%;
  position: absolute;
  right: 0;
  top: 0;
}
.medium{
  font-size: 18px;
  font-weight: 500;
}
.pg_home .section#sec1 .medium{
  margin-bottom: 20px;
}
.green_bg{
  padding: 40px 50px;
  background: #98cf36;
  color: #ffffff;
}
.pg_home .section#sec1 .green_bg{
  width: 591px;
  max-width: 100%;
  line-height: 2.35;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.center{
  text-align: center;
}
.cmn_3{
  margin: 0 -18px;
}
.cmn_3 .item{
  width: 33.33%;
  padding: 0 18px;
}
.pg_home .section#sec2 .medium{
  margin-top: 55px;
  letter-spacing: -0.025em;
}
.pg_home .section#sec2 .cmn_3{
  margin-top: 45px;
}
.pg_home .section#sec2 .cmn_3 .item .ttl{
  height: 250px;
  font-size: 21px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
}
.pg_home .section#sec2 .cmn_3 .item .ttl span{
  font-size: 14px;
  display: block;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding-right: 1em;
}
.pg_home .section#sec2 .cmn_3 .item > p{
  letter-spacing: -0.01em;
}
.link_1{
  width: 222px;
  display: block;
  margin: 50px auto 0;
  padding: 8px;
  text-align: center;
  color: #98cf36;
  border: 1px solid #98cf36;
  border-radius: 30px;
  background: #ffffff;
}
.link_1:hover{
  text-decoration: none;
  background: #98cf36;
  color: #ffffff;
}
.link_1:after{  
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  padding-left: 20px;
}
.pg_home .section#sec3{
  padding: 30px 0 65px;
  text-align: center;
}
.pg_home .section#sec4 .movie{
  padding: 100px 0 0;  
  position: relative;
}
.pg_home .section#sec4 .movie:before{
  width: 745px;
  max-width: 100%;
  height: 451px;
  right: 0;
  top: 50px;
  content: "";
  display: block;
  position: absolute;
  background: #98cf36;
}
.pg_home .section#sec4 .movie .responsive_video{
  width: 796px;
  max-width: 100%;
  margin: 0 auto;  
  box-shadow: 0 0 10px #555;
}
.cmn_2{
  margin: 0 -18px;
}
.cmn_2 .item{
  width: 50%;
  padding: 0 18px;
}
.pg_home .section#sec4 .cmn_2{
  margin-top: 100px;
}
.bg_grey{
  padding: 60px 0;
  background: #efefef;
}
.pg_home .section#sec5{
  padding: 100px 0 80px;
}
.pg_home .section#sec5 .bg_grey{
  margin-top: 60px;
}
.pg_home .section#sec7{
  margin-bottom: 85px;
  padding: 0;
  background: url(/img/top/bg_1.jpg?1) no-repeat center /cover;
  position: relative;
}
.pg_home .section#sec7 .container{
  height: 363px;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.pg_home .section#sec7 .globe{  
  position: absolute;
  bottom: -90px;
  left: 53%;
  transform: translateX(-50%);
}
.pg_home .section#sec7 .txt{  
  width: 50%;
  text-align: center;
}
.pg_home .section#sec7 .en{
  font-size: 100px;
  color: rgba(88,217,97,0.42);
  position: absolute;
  bottom: -40px;
  right: 0;
  line-height: 1;
  font-weight: 600;
}


/* **********************************
 *  会社概要
 * ********************************* */
.pg_company{
  
}
.pg_company .section#sec1{
  
}
.pg_company .section#sec2{
  
}
.pg_company .section#sec3{
  
}


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

.contact_tt{
  font-size: 23px;
  margin-bottom: 35px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.2em;
}

.pg_contact .privacy{
  margin-top: 105px;
}
.pg_contact .privacy .contact_tt{
  margin-bottom: 55px;
}


/* **********************************
 *  料金案内
 * ********************************* */
.pg_price .section#sec1 table{
  width: 100%;
  font-size: 18px;
  border: 1px solid #c9c9c9;
}
.pg_price .section#sec1 th,
.pg_price .section#sec1 td{
  height: 53px;
  border: 1px solid #c9c9c9;  
  text-align: center;
}
.pg_price .section#sec1 th{
  width: 50%;
  padding-left: 20px;
  background: #efefef;
  letter-spacing: 0.7em;
}
.price_tbl{
  width: 100%;
  font-size: 18px;
  border: 1px solid #c9c9c9;
}
.price_tbl th,
.price_tbl td{
  height: 68px;
  border: 1px solid #c9c9c9;  
  text-align: center;
}
.price_tbl thead th,
.pg_price .section#sec3 h3{
  height: 48px;
  padding: 10px 0;
  letter-spacing: 0.8em;
  padding-left: 1em;
  background: #696969;
  color: #ffffff;
  text-align: center;
}
.pg_price .section#sec2 thead tr > th:first-of-type{
  width: 37%;
}
.pg_price .section#sec2 thead tr > th:nth-of-type(2){
  width: 20%;
}
.pg_price .section#sec2 thead tr > th:nth-of-type(3){
  width: 43%;
}
.price_tbl tbody tr:nth-child(even){
  background: #efefef;
}
.price_tbl tbody > tr > td:first-of-type{
  font-weight: 700;
}
.right{
  font-size: 18px;
  margin-top: 25px;
  text-align: right;
}
.pg_price .section#sec2{
  padding-top: 10px;
}
.pg_price .section#sec3{
  padding-top: 0;
}
.pg_price .tt1{
  margin-bottom: 70px;
}
.pg_price .section#sec3 h3{
  letter-spacing: 0.65em;
}
.pg_price .section#sec3 tr > td:first-of-type{
  width: 37%;
}
.pg_price .section#sec3 tr > td:nth-of-type(2){
  width: 63%;
}


/* **********************************
 *  ジム紹介
 * ********************************* */
.pg_gym .section .tt1{
  margin-bottom: 65px;
}
.pg_gym .section#sec1 .flex{
  align-items: flex-start;
}
.pg_gym .section#sec1 .txt{
  width: 64%;
  margin-bottom: 65px;
  padding-right: 95px;
  line-height: 1.75;
  letter-spacing: -0.05em;
}
.pg_gym .section#sec1 .img{
  width: 36%;
  padding: 0 0 45px 45px;
  position: relative;
}
.pg_gym .section#sec1 .img:before{
  width: 90%;
  height: 297px;
  content: "";
  display: block;
  background: #98cf36;
  position: absolute;
  left: 0;
  bottom: 10px;
  z-index: 0;
}
.pg_gym .section#sec1 .img span{
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: -5px 4px 12px #ababab;
}
.pg_gym .section#sec1 .img span:before{
  content: "";
  display: block;
  padding-top: 84%;
}
.pg_gym .section#sec1 .txt .right{
  font-size: 15px;
  margin-top: 50px;
  font-weight: 500;
}
.pg_gym .section#sec1 .ov{
  margin-top: 50px;
  border-top: 1px solid #c9c9c9;
  border-right: 1px solid #c9c9c9;  
}
.pg_gym .section#sec1 dl{
  width: 50%;
  border-bottom: 1px solid #c9c9c9;
  border-left: 1px solid #c9c9c9;
  display: flex;
}
.pg_gym .section#sec1 dt,
.pg_gym .section#sec1 dd{
  padding: 13px 12px;
}
.pg_gym .section#sec1 dt{
  width: 150px;
  border-right: 1px solid #c9c9c9;
  background: #efefef;
  text-align: center;
  letter-spacing: 0.3em;
  font-weight: 700;
}
.pg_gym .section#sec1 dd{
  width: calc(100% - 150px);
  padding: 10px 5px 10px 20px;
  letter-spacing: -0.05em;
}
.pg_gym .section#sec2 .cmn_2{
  margin: 0 -20px;
}
.pg_gym .section#sec2 .item{
  padding: 0 20px;
  margin-bottom: 40px;
  display: flex;
}
.pg_gym .section#sec2 .item .flex{
  width: 100%;
  padding: 20px 15px;
  background: #beecb2;
  border-radius: 10px;
  align-items: flex-start;
}
.pg_gym .section#sec2 .item .txt{
  width: 52%;
}
.pg_gym .section#sec2 .item .img{
  width: 48%;
}
.pg_gym .section#sec2 .item .txt .bold{
  font-size: 20px;
  margin: 15px 0 25px;
  padding: 0 10px 5px;
  letter-spacing: 0.4em;
  position: relative;
}
.pg_gym .section#sec2 .item:nth-child(4) .txt .bold,
.pg_gym .section#sec2 .item:nth-child(5) .txt .bold{
  letter-spacing: 0;  
}
.pg_gym .section#sec2 .item .txt .bold:after{
  content: "";
  width: 305px;
  height: 2px;
  background: #98cf36;
  position: absolute;
  left: 0;
  bottom: 0;
}
.pg_gym .section#sec2 .item .txt .text{
  padding: 0 10px;  
  letter-spacing: -0.02em;
}
.pg_gym .section#sec2 .item .img:before{
  content: "";
  display: block;
  padding-top: 133%;
}


/* **********************************
 *  体験・入会案内
 * ********************************* */
.pg_trial{
  margin-bottom: 125px;
}
.pg_trial .section#sec1{
  margin-bottom: 20px;
}
.pg_trial .section#sec1 .tt1{
  margin-bottom: 65px;
}
.pg_trial .section#sec1 .flex{
  align-items: flex-end;
}
.pg_trial .section .txt,
.pg_trial .section .img{
  width: 50%;
}
.pg_trial .section .txt{
  padding-right: 50px;
}
.pg_trial .section .txt dl{
  width: 469px;
  max-width: 100%;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  border-radius: 4px;
  border: 1px solid #beecb2;
}
.pg_trial .section .txt dt{
  width: 74px;
  padding: 10px 0;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.2em;
  background: #beecb2;
}
.pg_trial .section .txt dd{
  width: calc(100% - 74px);
  padding: 5px 10px 5px 25px;
  line-height: 1.3;
  letter-spacing: 0.05em;  
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.pg_trial .section .txt dd .price{
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  margin-right: 25px;
}
.pg_trial .section .txt dd .price span{  
  font-size: 30px;
  font-weight: 700;
}
.pg_trial .section .txt dd .small{
  margin-bottom: 5px;
  align-self: flex-end;
  display: inline-block;
}
.pg_trial .section .txt .link_1{
  width: 244px;
  margin: 75px 0 10px;
}
.pg_trial .section#sec2 .bold{
  margin-bottom: 15px;
}
.pg_trial .section#sec2 .bold + p{
  margin-bottom: 30px;
}
.pg_trial .section#sec2 .txt{
  padding-top: 25px;
  letter-spacing: -0.025em;
}
.pg_trial .section#sec2 .txt dl{
  width: 365px;
  margin-bottom: 15px;
}
.pg_trial .section#sec2 .txt dl + dl{
  margin-bottom: 40px;
}
.pg_trial .section#sec2 .txt dt{
  width: 89px;
}
.pg_trial .section#sec2 .txt dd{
  width: calc(100% - 89px);
  padding: 5px 10px 5px 40px;
}
.pg_trial .section#sec2 .txt dl + dl dd{
  padding: 5px 5px 5px 40px;
  letter-spacing: 0.18em;
}
.pg_trial .section#sec2 .link_1{
  position: relative;
}
.pg_trial .section#sec2 .link_1:after{
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.pg_trial .section#sec2 .txt dd .price{
  margin-right: 0;
}


/* **********************************
 *  女性向けフィットネス
 * ********************************* */
.pg_fitness .section#sec1{
  margin-bottom: 20px;
  position: relative;  
}
.pg_fitness .section#sec1 .tt1{
  margin-bottom: 70px;
  letter-spacing: 0.08em;
}
.pg_fitness .section#sec1 .green_bg{
  width: 80%;
  height: 169px;
  position: absolute;
  left: 0;
  bottom: 70px;
  z-index: 0;
  background: #beecb2;
}
.pg_fitness .section#sec1 .flex{
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.pg_fitness .section#sec1 .txt{
  width: 50%;
  padding: 0 30px 25px 0;
  letter-spacing: -0.05em;
}
.pg_fitness .section#sec1 .txt .bold{
  font-size: 20px;
  margin-bottom: 50px;
  letter-spacing: -0.07em;
}
.pg_fitness .section#sec1 .img{
  width: 50%;
}
.pg_fitness .section#sec2{
  padding-bottom: 40px;
}
.pg_fitness .section#sec2 .tt1{
  margin-bottom: 60px;
}
.pg_fitness .section#sec2 .cmn_3{
  margin: 0 -15px;
}
.pg_fitness .section#sec2 .cmn_3 .item {
  padding: 0 15px;
}
.pg_fitness .section#sec2 .cmn_3 + .flex{
  margin: 90px 0 0;
  align-items: center;
  justify-content: space-between;
}
.pg_fitness .section#sec2 .txt{
  letter-spacing: -0.07em;
}
.pg_fitness .section#sec2 a{
  width: 324px;
  font-size: 18px;
  padding: 10px;
  background: #f75daf;
  color: #ffffff;
  display: block;
  text-align: center;
  font-weight: 500;
  border: 2px solid #fab7db;
  border-radius: 8px;
  position: relative;
}
.pg_fitness .section#sec2 a:hover{
  opacity: 0.7;
  text-decoration: none;
}
.pg_fitness .section#sec2 a:after{
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}