@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: 16px;
  line-height: 1.666;
  /*color: #383838;*/
  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[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{
  
}

.price_tbl{
  width: auto;
}
.price_tbl th,
.price_tbl td{
  padding: 0;
}
.price_tbl th{
  
}
.price_tbl td{
  
}
.price_tbl .c1{
  text-align: right;
}
.price_tbl .c2{
  text-align: right;
}
.price_tbl .c3{
  padding-left: 30px;
}


/* スクロール テーブル */
.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-repeat: no-repeat;
  background-position: center top;
  margin-bottom: 70px;
}
.pg_header .container{
  /*height: 438px;*/
  height: 458px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* 共通の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{
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  padding-top: 5px;
  background: #FFF;
}
.home header{
  background: none;
}
header .hdr_contact{
  text-align: right;
  margin-bottom: 2px;
}
header .hdr1{
  padding: 4px 0;
  background: #ff7710;
  color: #FFF;
}
header .hdr1>.container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .hdr1 .hdr_logo{
  line-height: 1;
  padding: 5px 0;
}
header .hdr1 .hdr_contact{
}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
}
.gnav > ul{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  font-weight: 500;
  /*font-size: 18px;*/
  white-space: nowrap;
}
.gnav > ul > li{
  width: 100%;
  position: relative;
  padding: 0 5px;
}
.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;
  padding: 3px 10px;
}
.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;
}

.gnav > ul > li.contact{
  
}
.gnav > ul > li.contact a{
  background: #FFF;
  color: #ff7710;
  border-radius: 5px;
}


.mv{
  position: relative;
  background-image: url('/img/mv.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
}
.mv > .container{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 700px;
}
.mv .mv_box{
  width: 408px;
  height: 408px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 55px;
}
.mv .mv_box .txt{
  font-size: 40px;
  color: #ff7710;
  text-align: center;
}
.mv .mv_box .img{
  
}
.mv .mv_box .img img{
  
}


/* **********************************
 *  フッター
 * ********************************* */
footer{
  margin-top: 170px;
}

.ftr_map{
  margin-top: 100px;
  
}

footer .ftr1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
footer .ftr1 .box1{
  width: 50%;
}
footer .ftr1 .box2{
  width: 48%;
}
footer .ftr1 .ftr_addr{
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.26em;
}
footer .ftr1 .ftr_addr p{
  font-size: 16px;
  line-height: 2;
  margin-bottom: 5px;
}

footer .ftr2{
  background: #ff7710;
  color: #fff;
}
footer .ftr2 .ftr_links{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 0;
}
footer .ftr2 .ftr_links li{
  text-align: center;
  padding: 0 15px;
}
footer .ftr2 .ftr_links li:first-child{
}
footer .ftr2 .ftr_links li.contact{
  
}
footer .ftr2 .ftr_links li.contact a{
  display: block;
  background: #FFF;
  color: #ff7710;
  border-radius: 5px;
  padding: 5px 10px;
}

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: 10px 0;
}
footer .copy a{
  /*color: #111;*/
}

.ftr_tt{
  display: flex;
  align-items: center;
  color: #ff7710;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}
.ftr_tt:after{
  content: "";
  width: 100%;
  height: 2px;
  background: #ff7710;
  margin-left: 30px;
}

.ftr_logo{
  margin-bottom: 20px;
}
.ftr_time{
  margin-top: 20px;
}

.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f9d9ba;
  z-index: 10;
}
.footer_fix ul{
  /*display: table;*/
  width: 100%;
  font-size: 14px;
  
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 3px;
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 36%;
}
.footer_fix ul li.btn2{
  width: 24%;
}
.footer_fix ul li a{
  display: block;
  padding: 10px;
  background: #ff770f;
  color: #FFF;
  text-decoration: none;
}


/* 検索フォーム */
.pg_404{
  text-align: center;
}
.pg_404{
  
}

.search-form{
  padding: 20px 0;
}
.search-form .search-field{
  padding: 5px;
}
.search-form .search-submit{
  padding: 5px 10px;
}

.pg_image{
  
}
.pg_image .attachment{
  padding: 20px;
  background-color: #ececec;
  text-align: center;
}


/* 記事リスト */
.post_items{
  padding: 0 0;
}
.post_items .item{
  /*background: #f0f0f0;*/
  padding: 10px;
  border-top: 1px solid #CCC;
  display: flex;
  align-items: center;
  position: relative;
}
.post_items .item:last-child{
  border-bottom: 1px solid #CCC;
}
.post_items .item .img{
  
}
.post_items .item .date{
  width: 220px;
  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;
  color: #ff7710;
  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 #feead1;
  border-bottom: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
  padding: 35px 30px;
}
.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: #ff7710;
  color: #ffffff;
  padding: 10px 100px;
  
}

/* 検索 */
.search_list{
  background: #eee;
  padding: 15px;
}
.search_list .item{
  
}
.search_list .item + .item{
  
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 10px;
  bottom: 60px;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
}
.pagetop a i{
  font-size: 40px;
}

/* コンタクトフォーム */
.contact_info{
  background: #fff;
  text-align: center;
  padding: 30px;
  margin-bottom: 20px;
}
.contact_info .box1{
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.14em;
}
.contact_info .box2{
  margin-top: 20px;
  background: #f6b37f;
  color: #FFFFFF;
  padding: 20px 5px;
  line-height: 1;
}
.contact_info .box2 .icon{
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  background: #fff;
  color: #ff7710;
  padding: 5px 20px;
  margin-right: 20px;
  vertical-align: middle;
  border-radius: 5px;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: bold;
  vertical-align: middle;
}
.contact_info .box2 .tel a{
  display: block;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  margin-left: 10px;
  font-weight: bold;
  letter-spacing: 0.2em;
}

.contact_msg{
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  color: #ff0000;
  margin-bottom: 80px;
  letter-spacing: 0.2em;
}



.contact_form{
  width: 100%;
  border: 1px solid #b2b2b2;
}
.contact_form tr{
  border-bottom: 1px solid #b2b2b2;
}
.contact_form th,
.contact_form td{
  padding: 8px 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 [name="your-age"]{
  width: 100px;
  text-align: center;
}
.wpcf7-form-control-wrap.your-age:after{
  content: "歳";
  margin-left: 10px;
}

.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: 60px;
}
.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{
  line-height: 1.875;
  letter-spacing: 0.04em;
}
.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;
}


.tt1{
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 50px;
}
.tt1:before{
  content: "";
  display: block;
  width: 93px;
  height: 73px;
  margin: 0 auto;
  margin-bottom: 10px;
  background-image: url('/img/tt_icon1.png');
  background-repeat: no-repeat;
  background-size: contain;
}
.tt1 span{
  /*display: block;
  text-align: center;
  font-size: 12px;*/
}

.pg_header .container .tt1{
  font-size: 30px;
  margin-bottom: 0;
}

.tt2{
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 35px;
  /*margin-bottom: 30px;*/
}
.tt2 span{
  display: block;
  color: #ff7710;
  font-size: 16px;
  font-weight: normal;
  /*letter-spacing: 0.15em;*/
  letter-spacing: 0.2em;
  background-image: url('/img/tt_icon2.png');
  background-repeat: no-repeat;
  background-position: center top;
  margin-top: 15px;
  padding-top: 30px;
}



.tt3{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #FFF;
  letter-spacing: 0.2em;
  background-image: url('/img/tt_bg1.png');
  padding: 10px;
  margin-bottom: 35px;
}
.tt3 span{
  
}
.tt4{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.tt4 span{
  
}
.tt5{
  
}
.tt5 span{
  
}

/* **********************************
 *  Home
 * ********************************* */
.pg_home{
  
}
.pg_home .section#sec1{
  background-image: url('/img/wave_bg1.png'),url('/img/home/treatment_bg1.png'), url('/img/home/treatment_bg2.png');
  background-repeat: repeat-x, no-repeat, no-repeat;
  background-position: center bottom, calc(50% - 560px) 108%, calc(50% + 590px) 100%;
  background-size: auto;
  padding-bottom: 180px;
}
.pg_home .section#sec1>.container{
}

.pg_home .section#sec2{
  background: #feead1;
  position: relative;
  padding-top: 50px;
  padding-bottom: 70px;
}
.pg_home .section#sec2:after{
  content: "";
  display: block;
  width: 100%;
  height: 60px;
  background-image: url('/img/wave_bg2.png');
  background-repeat: repeat-x;
  background-position: center bottom;
  position: absolute;
  top:100%;
}
.pg_home .section#sec3{
  
}

.home_treatment_nav{
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
.home_treatment_nav li{
  width: 16.666666%;
  padding-left: 20px;
  padding-right: 20px;
}
.home_treatment_nav li:nth-child(n+7){
  margin-top: 30px;
}
.home_treatment_nav li a{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 500;
  /*letter-spacing: 0.2em;*/
  color: #ff7710;
  background-image: url('/img/home/guide_nav_bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  
}
.home_treatment_nav li a:before{
  content: "";
  display: block;
  padding-top: 94.15%;
}
.home_treatment_nav li a span{
  margin-top: -15px;
}

.home_news_blc{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
  border-radius: 20px;
  background: #FFF;
}
.home_news_blc .box1{
  width: 23.21%;
  border-right: 1px solid #c9c9c9;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.home_news_blc .box2{
  /*width: 73.66%;*/
  width: 71.66%;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
}

.home_news_blc .box1 h3{
  width: 100%;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.home_news_blc .box1 i{
  color: #ff8c00;
}
.home_news_blc .box1 .read_more{
  margin-top: 40px;
}
.home_news_blc .box1 .read_more a{
  display: inline-block;
  border: 1px solid #ff8c00;
  border-radius: 20px;
  font-size: 14px;
  color: #434341;
  padding: 5px 35px;
  letter-spacing: 0.2em;
}
/*.home_news_blc .box1 .read_more a:after{
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}*/

.home_news_posts{
  
}
.home_news_posts .item{
  display: flex;
  border-bottom: 1px dotted #434341;
  padding-bottom: 10px;
}
.home_news_posts .item + .item{
  margin-top: 25px;
}
.home_news_posts .item .date{
  font-size: 14px;
  width: 150px;
  letter-spacing: 0.2em;
}
.home_news_posts .item .title{
  width: calc(100% - 150px);
}
.home_news_posts .item .title a{
  display: block;
}

.home_link_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
  margin-top: 50px;
}
.home_link_items .item{
  width: 50%;
  padding-left: 20px;
  padding-right: 20px;
}
.home_link_items .item .inner{
  display: block;
  margin-left: 40px;
  margin-top: 75px;
  border: 1px solid #c9c9c9;
  border-radius: 20px;
  background: #FFF;
  text-decoration: none;
  position: relative;
}
.home_link_items .item .illust{
  position: absolute;
  top: -75px;
  left: -40px;
  z-index: 1;
}
.home_link_items .item .img{
  
}
.home_link_items .item .img img{
  border-radius: 20px 20px 0 0;
}
.home_link_items .item .title{
  display: flex;
  align-items: center;
  padding: 5px 0 5px 22px;
  font-weight: 500;
  color: #ff8c00;
  position: relative;
  
}
.home_link_items .item .title span{
  margin-right: 35px;
}
.home_link_items .item .title:after{
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 30px;
}


/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}

.section#treatment_nav{
  background: #feead1;
  padding: 45px 0 35px;
  margin-bottom: 90px;
  background-image: url('/img/wave_bg3.jpg');
  background-repeat: repeat-x;
  background-position: center top;
}

.treatment_nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -10px;
  margin-right: -10px;
}
.treatment_nav li{
  width: 16.666666%;
  min-height: 50px;
  padding-left: 10px;
  padding-right: 10px;
}
.treatment_nav li:nth-child(n+7){
  margin-top: 20px;
}
.treatment_nav li a{
  display: flex;
  align-items: center;
  height: 100%;
  padding: 5px 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.17;
  color: #ff8c00;
  
  border-bottom: 3px solid #FFF;
  position: relative;
  background-image: url('/img/treatment/arrow_r.png');
  background-repeat: no-repeat;
  background-position: right 5px center;
}
.treatment_nav li a:after{
  content: "";
  width: 2px;
  height: 17px;
  background: #FFF;
  position: absolute;
  right: 0;
  bottom: 0;
}
.treatment_nav li.on a{
  border-color: #ff7710;
}
.treatment_nav li.on a:after{
  background: #ff7710;
}

.treatment_nav.md{
  
}
.treatment_nav.md li{
  width: 20%;
}
.treatment_nav.md li:nth-child(n+6){
  margin-top: 20px;
}
.treatment_nav.md li a:after{
  display: none;
}

.treat_txt1{
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
}
.treat_txt2{
  text-align: center;
  line-height: 1.875;
  letter-spacing: 0.2em;
  margin-bottom: 45px;
}
.treat_txt2.txt_l{
  text-align: left;
}
.treat_txt3{
  line-height: 1.875;
  margin-bottom: 45px;
}
.treat_txt3 h3{
  font-size: 16px;
  font-weight: bold;
  color: #ff4b4b;
  text-align: center;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.treat_contents{
  
}
.treat_contents + .treat_contents{
  margin-top: 90px;
}

/* treat_blc1 */
.treat_blc1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.treat_blc1 .box1{
  width: 26.78%;
}
.treat_blc1 .box2{
  width: 68.75%;
}

/* treat_blc2 */
.treat_blc2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.treat_blc2 .box1{
  width: 55.35%;
  line-height: 1.875;
}
.treat_blc2 .box2{
  width: 42.85%;
}
.treat_blc2 .box1 b{
  color: #fa6464;
  font-weight: bold;
}

/* treat_blc3 */
.treat_blc3{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.treat_blc3 .box1{
  width: 50%;
}
.treat_blc3 .box2{
  width: 50%;
}

/* treat_blc4 */
.treat_blc4{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.treat_blc4 .box1{
  width: 50%;
}
.treat_blc4 .box2{
  width: 50%;
}




/* **********************************
 *  
 * ********************************* */
.pg_general .section#sec1{
  
}
.pg_general .section#sec2{
  margin-top: 100px;
}

.general_nav_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -12.5px;
  margin-right: -12.5px;
  margin-top: 20px;
}
.general_nav_items .item{
  width: 33.333%;
  padding-left: 12.5px;
  padding-right: 12.5px;
}
.general_nav_items .item .inner{
  height: 100%;
  padding-bottom: 60px;
  position: relative;
}
.general_nav_items .item .title1{
  font-weight: bold;
  text-align: center;
  color: #FFF;
  border-radius: 5px;
  padding: 4px;
  margin-bottom: 10px;
}
.general_nav_items .item .title2{
  font-size: 14px;
  font-weight: bold;
  margin-top: 5px;
}
.general_nav_items .item.col1 .title1{
  background: #88abda;
}
.general_nav_items .item.col2 .title1{
  background: #f29c9f;
}
.general_nav_items .item.col3 .title1{
  background: #b7aa00;
}
.general_nav_items .item.col1 .title2{
  border-bottom: 1px solid #88abda;
}
.general_nav_items .item.col2 .title2{
  border-bottom: 1px solid #f29c9f;
}
.general_nav_items .item.col3 .title2{
  border-bottom: 1px solid #b7aa00;
}

.general_nav_items .item .txt{
  
}
.general_nav_items .item .link{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.general_nav_items .item .link a{
  display: block;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border: 1px solid;
  border-radius: 18px;
  padding: 5px;
  position: relative;
}
.general_nav_items .item .link a:after{
  content: "▶";
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.general_yobou_img{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -30px;
  margin-right: -30px;
}
.general_yobou_img .box1{
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  
  text-align: center;
}
.general_yobou_img .box2{
  width: 50%;
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 30px;
}
.general_yobou_msg{
  width: 74%;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border: 5px solid #ff7710;
  border-radius: 50px;
  padding: 15px;
  margin: 50px auto 0;
  letter-spacing: 0.2em;
}


/* treat_blc1 */
.general_blc1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.general_blc1 .box1{
  width: 26.78%;
}
.general_blc1 .box2{
  width: 68.75%;
}

/* treat_blc2 */
.general_blc2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.general_blc2 .box1{
  width: 55.35%;
  line-height: 1.875;
}
.general_blc2 .box2{
  width: 42.85%;
}
.general_blc2 .box1 b{
  color: #fa6464;
  font-weight: bold;
}

/* treat_blc3 */
.general_blc3{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.general_blc3 .box1{
  width: 70.53%;
}
.general_blc3 .box2{
  width: 25%;
}


/* **********************************
 *  
 * ********************************* */
.pg_perio .section#sec1{
  
}
.pg_perio .section#sec2{
  margin-top: 100px;
}
.pg_perio .section#sec3{
  margin-top: 100px;
}

.pg_perio .section#sec2 .treat_txt1 + .tt3{
  margin-top: 35px;
}

.perio_flow_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
  padding-top: 15px;
}
.perio_flow_items .item{
  width: 25%;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}
.perio_flow_items .item .inner{
  
}
.perio_flow_items .item .img{
  text-align: center;
}
.perio_flow_items .item .img img{
  
}
.perio_flow_items .item .title{
  font-weight: bold;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 15px;
}
.perio_flow_items .item .txt{
  margin-top: 15px;
}

.perio_flow_items .item + .item:before{
  content: "";
  display: block;
  width: 24px;
  height: 28px;
  background-image: url('/img/periodontal/arrow_r.png');
  background-repeat: no-repeat;
  background-size: contain;
  
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.perio_reason_img{
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #181818;
  margin-top: -5px;
  padding-bottom: 20px;
}
.perio_reason_img img{
  margin-top: 10px;
}


.perio_step_items{
  margin-top: 30px;
}
.perio_step_items .item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.perio_step_items .item + .item{
  margin-top: 40px;
}
.perio_step_items .item .title{
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  background: #eee;
  padding: 9px 15px;
  margin-bottom: 15px;
}
.perio_step_items .item .title span{
  font-size: 20px;
  font-weight: bold;
  padding-right: 20px;
}
.perio_step_items .item .box1{
  width: 100%;
}
.perio_step_items .item .box2{
  width: 68.85%;
}
.perio_step_items .item .box3{
  width: 28.57%;
  text-align: right;
}
.perio_step_items .item .box3 + .box1{
  margin-top: 30px;
}
.perio_step_items .item .box3 + .box2{
  margin-top: 30px;
}
.perio_step_items .item .box3 + .box2 + .box3{
  margin-top: 30px;
}

.perio_step_items .item .txt_b{
  font-size: 24px;
  text-align: center;
  margin-top: 30px;
}
.perio_step_items .item dl{
  display: flex;
}
.perio_step_items .item dl + dl{
  margin-top: 10px;
}
.perio_step_items .item dl dt{
  font-weight: bold;
}
.perio_step_items .item dl dd{
  
}

.perio_aiube{
  
}
.perio_aiube .howto{
  margin-top: 30px;
  font-size: 18px;
  line-height: 2;
  text-align: center;
}
.perio_aiube .howto ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: bold;
  color: #88abda;
  
}
.perio_aiube .howto ul li{
  margin: 0 45px;
}
.perio_aiube .img{
  text-align: center;
  margin-top: 10px;
}
.perio_aiube .txt{
  margin-top: 50px;
}

.list1{
  
}
.list2{
  list-style: none;
  padding-left: 1.0em;
  text-indent: -1.0em;
  line-height: 1.875;
}



/* perio_blc1 */
.perio_blc1{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 30px;
}
.perio_blc1 .box{
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}

.perio_blc1.md{
  margin-left: -10px;
  margin-right: -10px;
}
.perio_blc1.md .box{
  width: 33.333333%;
  padding-left: 10px;
  padding-right: 10px;
}

.perio_blc1 .box .title{
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.2em;
  color: #FFf;
  border-radius: 5px;
  padding: 4px;
  margin-bottom: 10px;
}
.perio_blc1 .box.col1 .title{
  background: #88abda;
}
.perio_blc1 .box.col2 .title{
  background: #f29c9f;
}
.perio_blc1 .box.col3 .title{
  background: #b7aa00;
}

.perio_blc1 .box .title2{
  font-weight: bold;
  font-size: 16px;
  margin: 5px 0;
}
.perio_blc1 .box .title2 span{
  display: inline-block;
  background: #fff;
  color: #f29c9f;
  border-radius: 18px;
  text-align: center;
  padding: 5px 13px;
}


.perio_blc1 .box .list1{
  
}
.perio_blc1 .box .list1 li{
  line-height: 1.875;
  padding-left: 40px;
  position: relative;
}
.perio_blc1 .box .list1 li:before{
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 8px;
  
}
.perio_blc1 .box.col1 .list1 li:before{
  background: #88abda;
}
.perio_blc1 .box.col2 .list1 li:before{
  background: #f29c9f;
}
.perio_blc1 .box.col3 .list1 li:before{
  background: #b7aa00;
}
.perio_blc1 .box .list1 li + li{
  margin-top: 10px;
}
.perio_blc1 .box .img{
  margin-top: 15px;
}
.pg_perio .perio_blc1 .box .img{
  margin-top: 40px;
}

.perio_blc1 .box *:not(.title) .img{
  margin-top: 50px;
}

.perio_blc1 .box .list2{
  line-height: 1.875;
  letter-spacing: -0.06em;
}
.perio_blc1 .box .list2 li{
  
  
}


.perio_blc2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.perio_blc2 .box1{
  width: 49%;
}
.perio_blc2 .box2{
  width: 49%;
}
.perio_blc2 .box3{
  width: 100%;
}



.line_ht1{
  line-height: 1.875;
}
.line_ht2{
  line-height: 2;
}

b.red{
  color: #ff4b4b;
}

/* **********************************
 *  
 * ********************************* */
.pg_pedia .section#sec1{
  
}
.pg_pedia .section#sec2{
  margin-top: 90px;
}
.pg_pedia .section#sec3{
  
}

.pedia_tt1{
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.pedia_blc1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pedia_blc1 .box1{
  width: 73.21%;
}
.pedia_blc1 .box2{
  width: 21.42%;
}
.pedia_blc1 .box1 .txt_b{
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1.5;
}
.pedia_blc1 .box1 .txt_b b{
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
}
.pedia_blc1 .box2 img + img{
  margin-top: 15px;
}

.pedia_blc1 ul{
  margin-top: 20px;
}
.pedia_blc1 ul li{
  padding-left: 1em;
  text-indent: -1em;
  line-height: 2.375;
}

/* pedia_blc2 */
.pedia_blc2{
  
}
.pedia_blc2 + .pedia_blc2{
  margin-top: 50px;
}
.pedia_blc2 .title{
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.2em;
}
.pedia_blc2 .title.mb{
  margin-bottom: 20px;
}
.pedia_blc2 .title2{
  font-size: 20px;
  font-weight: bold;
  color: #324fe3;
  margin-bottom: 15px;
}
.pedia_blc2 .txt{
  
}
.pedia_blc2 .txt2{
  font-size: 18px;
  color: #ff0000;
  margin-bottom: 50px;
}
.pedia_blc2 .txt3{
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.pedia_blc2 > .img{
  margin-top: 20px;
}
.pedia_blc2 ul.img{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  /*flex-wrap: wrap;*/
  margin-left: -4px;
  margin-right: -4px;
  margin-top: 50px;
}
.pedia_blc2 ul.img li{
  /*width: 25%;*/
  padding-left: 4px;
  padding-right: 4px;
}
.pedia_blc2 .box1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.pedia_blc2 .box1 .txt{
  width: 58.92%;
}
.pedia_blc2 .box1 .img{
  width: 32.58%;
}

.pedia_blc2 .box2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.pedia_blc2 .box2 .txt{
  width: 50%;
  
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1.5;
}
.pedia_blc2 .box2 .img{
  width: 46.60%;
}
.pedia_blc2 .box2 + .txt{
  margin-top: 50px;
}


/* **********************************
 *  
 * ********************************* */
.pg_orthod .section#sec1{
  
}
.pg_orthod .section#sec2{
  margin-top: 130px;
}
.pg_orthod .section#sec3{
  
}


.orthod_nayami_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.orthod_nayami_items .item{
  width: 16.666%;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}
.orthod_nayami_items .item .img{
  
}
.orthod_nayami_items .item .txt{
  font-weight: bold;
  margin-top: 5px;
}
.orthod_nayami_items .item .txt span{
  display: block;
  font-size: 15px;
  font-weight: normal;
}

.orthod_nayami_link{
  margin-top: 50px;
}
.orthod_nayami_link span{
  display: block;
  width: 80.35%;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid #ff7710;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #ff7710;
  letter-spacing: 0.2em;
  text-align: center;
  position: relative;
}
/*.orthod_nayami_link a:after{
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
}*/

.orthod_wire_msg{
  margin-bottom: 30px;
}
.orthod_wire_msg h4{
  font-size: 18px;
  font-weight: bold;
}

.orthod_wire_items{
  
}
.orthod_wire_items .item{
  
}
.orthod_wire_items .item + .item{
  margin-top: 30px;
}
.orthod_wire_items .item h5{
  background: #eeeeee;
  color: #fb8951;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 10px;
  margin-bottom: 10px;
}
.orthod_wire_items .item dl{
  
}
.orthod_wire_items .item dl dt{
  font-weight: bold;
}
.orthod_wire_items .item dl dd{
  
}

.orthod_wire_imgs{
  display: flex;
  margin-top: 35px;
}
.orthod_wire_imgs li{
  
}
.orthod_wire_imgs li + li{
  margin-left: 30px;
}

.orthod_wire_txt1{
  margin-top: 40px;
}
.orthod_wire_txt1 p + p{
  margin-top: 20px;
}
.orthod_wire_txt1 ul{
  margin-top: 20px;
}
.orthod_wire_txt1 ul li + li{
  margin-top: 15px;
}
.orthod_wire_txt1 .red{
  color: #ff0000;
}


.orthod_wire_txt2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
}
.orthod_wire_txt2 .box1{
  width: 84%;
  font-size: 24px;
  padding-top: 40px;
}
.orthod_wire_txt2 .box2{
  width: 16%;
}
.orthod_wire_txt2 .box1 b{
  font-weight: bold;
  color: #ff00a2;
}
.orthod_wire_txt2 .box1 p{
  letter-spacing: 0.2em;
  margin-top: 5px;
}
.orthod_wire_txt2 .box2 img{
  /*position: relative;*/
  /*top: -40px;*/
}


.orthod_wire_img1{
  background: #feead1;
  text-align: center;
  padding: 50px;
  margin-top: 40px;
  position: relative;
  
}
.orthod_wire_img1:before{
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  border: 1px dashed #ff7710;
}


.orthod_mouth_img1{
  background-image: url('/img/orthodontics/photo10.jpg');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  text-align: center;
  font-size: 18px;
  padding: 67px 0;
  margin-bottom: 45px;
}
.orthod_mouth_img1 h3{
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.2em;
}

.orthod_mouth_txt1{
  
}

.orthod_mouth_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /*margin-left: -15px;*/
  /*margin-right: -15px;*/
  margin-top: 40px;
  margin-bottom: 25px;
}
.orthod_mouth_list li{
  /*width: 50%;*/
  width: 48.66%;
  /*padding-left: 15px;*/
  /*padding-right: 15px;*/
  position: relative;
  padding-left: 32px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ff7710;
  font-weight: 500;
}
.orthod_mouth_list li.w{
  width: 100%;
}
.orthod_mouth_list.fw400 li{
  font-weight: 400;
}
.orthod_mouth_list li:nth-child(n+3){
  margin-top: 22px;
}
.orthod_mouth_list li.w:nth-child(n+2){
  margin-top: 22px;
}
.orthod_mouth_list li:before{
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  border: 1px solid #ff7710;
  background: #FFF;
  border-radius: 5px;
  position: absolute;
  top: 0.3125em;
  left: 0;
}
.orthod_mouth_list li:after{
  
}
.orthod_mouth_list li em{
  display: block;
  font-weight: 500;
  color: #ff7710;
  margin-bottom: 5px;
}

.orthod_mouth_img2{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin-top: 25px;
}
.orthod_mouth_img2 img{
  margin-right: 10px;
}


.orthod_blc1{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.orthod_blc1 .box{
  width: 50%;
  padding-left: 10px;
  padding-right: 10px;
  
}
.orthod_blc1 .box .txt{
  font-size: 18px;
  text-align: center;
  margin-bottom: 15px;
}
.orthod_blc1 .box .txt b{
  display: block;
  
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 20px;
}
.orthod_blc1 .box .txt{
  
}
.orthod_blc1 .box .perio_blc1{
  margin-top: 35px;
}
.orthod_blc1 .box .txt ul{
  display: inline-block;
  text-align: left;
  letter-spacing: 0.2em;
}



/* **********************************
 *  
 * ********************************* */
.pg_denture .section#sec1{
  
}
.pg_denture .section#sec2{
  
}
.pg_denture .section#sec3{
  margin-top: 70px;
}

.denture_tbl{
  table-layout: auto;
}
.denture_tbl thead th{
  background: #feead1;
  letter-spacing: 0.2em;
}
.denture_tbl tbody{

}
.denture_tbl th,
.denture_tbl td{
  text-align: center;
  vertical-align: middle;
  border: 1px solid #c9c9c9;
}
.denture_tbl td{
  padding: 8px 10px;
}
.denture_tbl .spacer td{
  border-left: 0;
  border-right: 0;
  padding: 0;
  height: 5px;
}

.denture_tbl .th1{
  
}
.denture_tbl .th2{
  font-size: 14px;
  font-weight: normal;
}
.denture_tbl .td1{
  width: 20.5%;
}
.denture_tbl .td2{
  width: 22.3%;
}
.denture_tbl .td3,
.denture_tbl .td4{
  width: 17.85%;
}
.denture_tbl .td5{
  
}

.denture_txt{
  margin-top: 35px;
}
.denture_imgs{
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.denture_imgs li{
  margin: 0 3.57%;
}

.denture_blc1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.denture_blc1 .box1{
  width: 65.17%;
}
.denture_blc1 .box2{
  width: 33.92%;
  text-align: right;
}


/* **********************************
 *  
 * ********************************* */
.pg_poic .section#sec1{
  
}
.pg_poic .section#sec2{
  margin-top: 75px;
}
.pg_poic .section#sec3{
  
}

.poic_txt1{
  margin-top: 40px;
}
.poic_txt1 .bdr{
  display: inline-block;
  border-bottom: 3px solid #a40000;
  font-weight: 500;
  padding: 6px 0;
}
.poic_img{
  text-align: center;
  margin-top: 50px;
}

/* **********************************
 *  
 * ********************************* */
.pg_picash .section#sec1{
  
}
.pg_picash .section#sec2{
  
}
.pg_picash .section#sec3{
  
}

.picash_img{
  text-align: center;
}

* + .picash_img{
  margin-top: 30px;
}

.picash_imgs{
  display: flex;
  margin-left: -6px;
  margin-right: -6px;
}
.picash_imgs li{
  width: 25%;
  padding-left: 6px;
  padding-right: 6px;
}

.picash_tt{
  display: flex;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.5;
  margin-bottom: 10px;
}
.picash_tt:before,
.picash_tt:after{
  content: "";
  width: 20px;
  height: 24px;
  background-size: contain;
  margin: 0 10px;
}
.picash_tt:before{
  background-image: url('/img/picash/tt_bg1.png');
}
.picash_tt:after{
  background-image: url('/img/picash/tt_bg2.png');
}

.picash_txt{
  margin-top: 30px;
  letter-spacing: 0.2em;
}
.picash_txt b{
  
}
.picash_blc1{
  margin-top: 50px;
}

.pg_picash .poic_txt1{
  margin-top: 15px;
}


/* **********************************
 *  
 * ********************************* */
.pg_serec .section#sec1{
  
}
.pg_serec .section#sec2{
  padding-top: 25px;
}
.pg_serec .section#sec3{
  
}

.serec_imgs{
  display: flex;
  /*justify-content: center;*/
}
.serec_imgs li{
  width: 50%;
}
.serec_imgs .box1{
  text-align: right;
}
.serec_imgs .box2{
  text-align: center;
}

.serec_blc1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.serec_blc1 .box1{
  width: 60%;
}
.serec_blc1 .box2{
  width: 37.85%;
}
.serec_blc1 h4{
  font-size: 24px;
  color: #ff0000;
  margin-bottom: 10px;
}
.serec_blc1 ul{
  padding-left: 1em;
  text-indent: -1em;
}
.serec_blc1 ul li + li{
  margin-top: 5px;
}

/* **********************************
 *  
 * ********************************* */
.pg_whitening .section#sec1{
  
}
.pg_whitening .section#sec2{
  padding-top: 30px;
}
.pg_whitening .section#sec3{
  margin-top: 70px;
}

.whitening_txt{
  
}

.whitening_img{
  margin-top: 30px;
}

.whitening_types{
  margin-top: 30px;
  margin-bottom: 30px;
}
.whitening_types dl{
  display: flex;
}
.whitening_types dl dt{
  font-weight: bold;
  white-space: nowrap;
}
.whitening_types dl dt.col1{
  color: #a11959;
}
.whitening_types dl dt.col2{
  color: #175898;
}
.whitening_types dl dt.col3{
  color: #cca01b;
}
.whitening_types dl dd{
  
}


.whitening_contents{
  
}
.whitening_contents + .whitening_contents{
  margin-top: 30px;
}

.whitening_tt1{
  color: #ff7710;
  border: 1px solid #ff7710;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  padding: 13px 15px;
  margin-bottom: 15px;
}


.whitening_blc1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.whitening_blc1 .box1{
  width: 66%;
  padding: 10px 15px;
  font-weight: bold;
  color: #434341;
}
.whitening_blc1 .box2{
  width: 31.42%;
  text-align: right;
}

/* **********************************
 *  
 * ********************************* */
.pg_light .section#sec1{
  
}
.pg_light .section#sec2{
  
}
.pg_light .section#sec3{
  
}


.light_contents{
  
}
.light_contents + .light_contents{
  margin-top: 55px;
  padding-top: 50px;
  border-top: 1px dotted #434341;
}

.light_blc1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.light_blc1 .box1{
  
}
.light_blc1 .box2{
  text-align: right;
}
.light_blc1 .box3{
  width: 100%;
}

.light_blc1.item1 .box1{ width: 70%; }
.light_blc1.item1 .box2{ width: 28.5%; }

.light_blc1.item2 .box1{ width: 50%; }
.light_blc1.item2 .box2{ width: 49.2%; }

.light_blc1.item3 .box1{ width: 52%; }
.light_blc1.item3 .box2{ width: 47.6%; }

.light_blc1.item4 .box1{ width: 37%; }
.light_blc1.item4 .box2{ width: 62.5%; }

.light_blc1.item5 .box1{ width: 71%; }
.light_blc1.item5 .box2{ width: 29%; }

.light_blc1.item6 .box1{ width: 62%; }
.light_blc1.item6 .box2{ width: 37%; }

.light_blc1 .title{
  font-size: 18px;
}
.light_blc1 .box1 .txt{
  
}
.light_blc1 .box1 .txt + .txt{
  margin-top: 70px;
}
.light_blc1 ol{
  /*padding-left: 1.5em;*/
  margin-left: 1.5em;
  margin-top: 30px;
}
.light_blc1 ol li{
  /*padding-left: 1em;*/
  /*text-indent: -1em;*/
}
.pg_light .poic_txt1 {
  margin-top: 100px;
}


/* **********************************
 *  
 * ********************************* */
.pg_laser .section#sec1{
  
}
.pg_laser .section#sec2{
  
}
.pg_laser .section#sec3{
  margin-top: 100px;
}

.laser_blc1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.laser_blc1 + .laser_blc1{
  margin-top: 30px;
}
.laser_blc1 + .perio_step_items{
  margin-top: 30px;
}
.perio_step_items + .laser_blc1{
  margin-top: 100px;
}

.laser_blc1 .box1{
  
}
.laser_blc1 .box2{
  text-align: right;
}
.laser_blc1 .box3{
  width: 100%;
}

.laser_blc1.item1{
  /*align-items: center;*/
}

.laser_blc1.item1 .box1{ width: 74.1%; padding-top: 75px; }
.laser_blc1.item1 .box2{ width: 20.1%; }
.laser_blc1.item2 .box1{ width: 55.8%; }
.laser_blc1.item2 .box2{ width: 40.2%; }
.laser_blc1.item3 .box1{ width: 56.25%; }
.laser_blc1.item3 .box2{ width: 38.4%; }


.laser_blc1 .box1 h3{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 35px;
}

.pg_laser .perio_step_items .item .title span{
  font-size: 16px;
}


/* **********************************
 *  
 * ********************************* */
.pg_prev .section{
  padding-top: 70px;
  padding-bottom: 70px;
}
.pg_prev .section:nth-child(odd){
  background: #feead1;
}
.pg_prev .section#sec1{
  
}
.pg_prev .section#sec2{
  
}
.pg_prev .section#sec3{
  
}

.section#prevention_nav{
  background: #feead1;
  padding: 35px 0;
  margin-bottom: 90px;
}


.prev_mineral_taste{
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
  margin-bottom: 20px;
}
.prev_mineral_taste li{
  width: 20%;
  padding-left: 8px;
  padding-right: 8px;
}
.prev_mineral_taste li span{
  display: block;
  border-radius: 5px;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  padding: 10px 10px;
}
.prev_mineral_taste li.col1 span{ background: #88abda; }
.prev_mineral_taste li.col2 span{ background: #f29c9f; }
.prev_mineral_taste li.col3 span{ background: #b7aa00; }
.prev_mineral_taste li.col4 span{ background: #89c997; }
.prev_mineral_taste li.col5 span{ background: #c490bf; }

.prev_mineral_msg{
  letter-spacing: 0.2em;
  text-align: center;
}


.prev_bacteria_tt{
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 0.2em;
}
.prev_bacteria_tt.bdr{
  border-bottom: 3px solid #88abda;
  padding-bottom: 5px;
  letter-spacing: 0;
}
.prev_bacteria_msg1{
  letter-spacing: 0.2em;
}
.prev_bacteria_msg2{
  
}

.prev_bacteria_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 40px;
}
.prev_bacteria_items .item{
  width: 33.333%;
  padding-left: 10px;
  padding-right: 10px;
}
.prev_bacteria_items .item:nth-child(n+4){
  margin-top: 15px;
}
.prev_bacteria_items .item .inner{
  background: #FFF;
  border: 1px solid #ff7710;
  border-radius: 5px;
  height: 100%;
  padding: 9px;
}
.prev_bacteria_items .item .title{
  background: #ff7710;
  border-radius: 5px;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  padding: 8px;
  margin-bottom: 10px;
}
.prev_bacteria_items .item .txt{
  padding: 0 5px;
}
.prev_bacteria_items .item .txt b{
  color: #fe0000;
}


.pg_prev .prev_bacteria_tt + .orthod_mouth_list{
  margin-top: 0;
}

.prev_saliva_msg1{
  font-weight: bold;
  text-align: center;
  margin: 20px 0 45px;
  letter-spacing: 0.2em;
}

.pg_prev .orthod_mouth_list{
  margin-top: 35px;
}
.pg_prev .orthod_mouth_list li.w:nth-child(n+2){
  margin-top: 15px;
}

.pg_prev .perio_blc1 .box .list1 li{
  padding-left: 30px;
}
.pg_prev .perio_blc1 .box .list1 li + li{
  margin-top: 5px;
}

.pg_prev #sec8 .perio_blc1{
  margin-top: 20px;
}
.pg_prev #sec8 .poic_txt1 {
  margin-top: 10px;
}
.pg_prev #sec9 .poic_txt1 {
  margin-top: 35px;
}

/* prev_blc1 */
.prev_blc1{
  
}
.prev_blc1 .box1{
  padding: 10px;
  border: 1px solid #ff7710;
  text-align: center;
}
.prev_blc1 .box2{
  margin-top: 25px;
  text-align: center;
}
.prev_blc1 .box2 span{
  display: inline-block;
  text-align: left;
}
.prev_blc1 + .perio_blc1{
  margin-top: 30px;
}

/* prev_blc2 */
.prev_blc2{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 15px;
}
.prev_blc2 .box1{
  width: 60.71%;
}
.prev_blc2 .box2{
  width: 33.66%;
}
.prev_blc2 .orthod_mouth_list{
  margin-top: 0;
}

/* prev_blc3 */
.prev_blc3{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.prev_blc3.flex_end{
  align-items: flex-end;
}
.prev_blc3 .box1{
  width: 66%;
}
.prev_blc3 .box2{
  /*width: 28.87%;*/
  width: 32.14%;
}
.prev_blc3 .box3{
  width: 100%;
}


.prev_blc3 + .prev_blc3{
  margin-top: 20px;
}

.prev_blc3 h3{
  font-size: 18px;
  font-weight: bold;
  color: #21b609;
}
.prev_blc3 .txt{
  line-height: 1.875;
}
.prev_blc3 .txt + h3{
  margin-top: 40px;
}
.prev_blc3 .b1,
.prev_blc3 .b2{
  font-weight: 500;
}
.prev_blc3 .b1{
  color: #ff0000;
}
.prev_blc3 .b2{
  color: #2d4be3;
}





/* prev_blc4 */
.prev_blc4{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.prev_blc4 .box1{
  width: 48.21%;
}
.prev_blc4 .box2{
  width: 50%;
}

/* prev_blc5 */
.prev_blc5{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.prev_blc5 .box1{
  width: 74%;
}
.prev_blc5 .box2{
  width: 17.85%;
}
.prev_blc5 .box3{
  width: 100%;
}
.prev_blc5 .img + .img{
  margin-top: 25px;
}
.prev_blc5 b{
  color: #f3255a;
}

/* prev_blc6 */
.prev_blc6{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.prev_blc6 .box1{
  width: 48.66%;
}
.prev_blc6 .box2{
  width: 50%;
}
.prev_blc6 .box3{
  width: 100%;
}

.prev_blc6 .orthod_mouth_list{
  margin-top: 0;
}
.prev_blc6 .img1{
  text-align: right;
}


/* prev_blc7 */
.prev_blc7{
  display: flex;
  /*flex-wrap: wrap;*/
  justify-content: center;
}
.prev_blc7 .box{
  width: 320px;
  margin: 0 4.9%;
  text-align: center;
}
.prev_blc7 .box .txt{
  font-weight: 500;
  margin-top: 10px;
}
.prev_blc7 .box .txt b{
  color: #ff0000;
}


/* **********************************
 *  
 * ********************************* */
.pg_about .section#sec1{
  
}
.pg_about .section#sec2{
  margin-top: 110px;
}
.pg_about .section#sec3{
  margin-top: 140px;
  background-image: url('/img/wave_bg1.png');
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto;
  padding-bottom: 180px;
}
.pg_about .section#sec4{
  background: #feead1;
  padding-top: 15px;
  padding-bottom: 60px;
  position: relative;
}
.pg_about .section#sec4:after {
  content: "";
  display: block;
  width: 100%;
  height: 60px;
  background-image: url(/img/wave_bg2.png);
  background-repeat: repeat-x;
  background-position: center bottom;
  position: absolute;
  top: 100%;
}
.pg_about .section#sec5{
  margin-top: 110px;
}
.pg_about .section#sec6{
  margin-top: 110px;
}
.pg_about .section#sec7{
  margin-top: 110px;
  background-image: url('/img/wave_bg1.png');
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto;
  padding-bottom: 180px;
}
.pg_about .section#sec8{
  background: #feead1;
  padding-bottom: 60px;
  position: relative;
}
.pg_about .section#sec8:after {
  content: "";
  display: block;
  width: 100%;
  height: 60px;
  background-image: url(/img/wave_bg2.png);
  background-repeat: repeat-x;
  background-position: center bottom;
  position: absolute;
  top: 100%;
}
.about_tt0{
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.about_tt1{
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.2em;
  background-image: url('/img/tt_bg2.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 15px;
  margin-bottom: 5px;
  position: relative;
}
.about_tt1.center{
  text-align: center;
}

.about_tt2{
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 50px;
}

.about_txt1{
  color: #ff0000;
  font-size: 17px;
}

dl.about_history{
  display: flex;
  border-bottom: 1px solid #dcdcdc;
  padding-top: 12px;
  padding-bottom: 12px;
}
dl.about_history + dl.about_history{
  margin-top: 2px;
}
dl.about_history dt{
  white-space: nowrap;
  margin-right: 20px;
}
dl.about_history dd{
  width: 100%;
}
dl.about_history + .about_history{
  /*margin-top: 10px;*/
  
}

ul.about_history{
  display: flex;
  flex-wrap: wrap;
  margin-left: -25px;
  margin-right: -25px;
}
ul.about_history li{
  width: 50%;
  padding-left: 25px;
  padding-right: 25px;
  
  
}
ul.about_history li span{
  display: block;
  border-bottom: 1px solid #dcdcdc;
  padding-top: 10px;
  padding-bottom: 10px;
}

.about_list1{
  margin-top: 15px;
  margin-left: 1.5em;
}
.about_list1 li{
  
}
.about_list1 li + li{
  margin-top: 30px;
}


.about_anshin_items{
  margin-top: 35px;
}
.about_anshin_items .item{
}
.about_anshin_items .item + .item{
  margin-top: 15px;
}
.about_anshin_items .item .inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px 20px 15px 30px;
  background: #d3eae9;
  border-radius: 5px;
}
.about_anshin_items .item .inner .box1{
  width: 26.63%;
}
.about_anshin_items .item .inner .box2{
  width: 69.15%;
}
.about_anshin_items .item .img{
  
}
.about_anshin_items .item .img img{
  
}
.about_anshin_items .item .title{
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
}
.about_anshin_items .item .title span{
  margin-left: 45px;
  letter-spacing: 0;
}
.about_anshin_items .item .txt{
  
}


.about_promiss_wrap{
  position: relative;
}
.about_promiss_wrap .img1,
.about_promiss_wrap .img2{
  position: absolute;
}
.about_promiss_wrap .img1{
  top: -40px;
  right: 0;
}
.about_promiss_wrap .img2{
  bottom: 0;
  left: 0;
}

.about_promiss_wrap .orthod_mouth_list{
  width: 66.96%;
  margin: 0 auto;
}


.about_system_msg{
  margin-top: 30px;
}

.about_system_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -13px;
  margin-right: -13px;
}
.about_system_items .item{
  width: 50%;
  padding-left: 13px;
  padding-right: 13px;
}
.about_system_items .item:nth-child(n+3){
  margin-top: 15px;
}
.about_system_items .item .inner{
  
}
.about_system_items .item .img{
  
}
.about_system_items .item .img img{
  
}

.about_system_items .item .txt{
  text-align: center;
  margin-top: 10px;
}


.about_system_items.md{
  display: flex;
  flex-wrap: wrap;
  margin-left: -32.5px;
  margin-right: -32.5px;
  margin-top: 30px;
}
.about_system_items.md .item{
  width: 33.333%;
  padding-left: 32.5px;
  padding-right: 32.5px;
  margin-top: 0;
}
.about_system_items.md .item:nth-child(n+4){
  margin-top: 15px;
}


.about_tbl{
  margin-top: 30px;
}
.about_tbl tr{
  
}
.about_tbl tr th,
.about_tbl tr td{
  font-size: 18px;
  font-weight: normal;
  text-align: left;
  letter-spacing: 0.2em;
  border-bottom: 1px solid #ff7710;
  position: relative;
  padding: 18px 5px 10px;
}
.about_tbl tr th{
  width: 350px;
  padding-right: 50px;
}
.about_tbl tr th:after{
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #FFF;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: -1px;
}
.about_tbl tr td{
  
}
.about_map{
  margin-top: 40px;
}



.about_gallery{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.about_gallery.sz1{
  margin-left: -17px;
  margin-right: -17px;
}
.about_gallery.sz1 .item{
  width: 33.333%;
  padding-left: 17px;
  padding-right: 17px;
}
.about_gallery.sz1 .item:nth-child(n+4){
  margin-top: 35px;
}


.about_gallery.sz2{
  margin-left: -13px;
  margin-right: -13px;
}
.about_gallery.sz2 .item{
  width: 25%;
  padding-left: 13px;
  padding-right: 13px;
}
.about_gallery.sz2 .item:nth-child(n+5){
  margin-top: 45px;
}

.about_gallery .item .inner{
  
}
.about_gallery .item .img_box{
  background: #FFF;
  border: 1px solid #c9c9c9;
  padding: 7px;
}
.about_gallery .item .img{
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.about_gallery .item .img:before{
  content: "";
  display: block;
  /*padding-top: 71.42%;*/
}
.about_gallery.sz1 .item .img:before{
  padding-top: 71.42%;
}
.about_gallery.sz2 .item .img:before{
  padding-top: 96.15%;
}

.about_gallery .item .img img{
  margin: 7px;
  max-width: calc(100% - 14px);
}
.about_gallery .item .txt{
  text-align: center;
  margin-top: 10px;
  
}
.about_gallery .item .txt span{
  display: inline-block;
  text-align: left;
}


.about_gallery + h2{
  margin-top: 80px;
}


/* about_blc1 */
.about_blc1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_blc1 .box1{
  width: 24.55%;
}
.about_blc1 .box2{
  width: 72.32%;
}
.about_blc1 .item + .item{
  margin-top: 30px;
}
.about_blc1 .title{
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  margin-bottom: 10px;
}
.about_blc1 .title:after{
  content: "";
  width: 100%;
  margin-left: 30px;
  border-bottom: 1px dotted;
}
.about_blc1 .txt{
  
}



/* about_blc2 */
.about_blc2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_blc2 .box1{
  width: 38.83%;
}
.about_blc2 .box2{
  width: 56.25%;
}

/* about_blc3 */
.about_blc3{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.about_blc3 .box1{
  width: 48.66%;
}
.about_blc3 .box2{
  width: 42.85%;
}

.about_blc3 .box2 .item .txt{
  text-align: center;
  margin-top: 15px;
}





/* **********************************
 *  
 * ********************************* */
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}

.products_items{
  
}
.products_items .item{
  border: 1px solid #ff7710;
  padding: 9px 6px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /*align-items: stretch;*/
}
.products_items .item + .item{
  margin-top: 15px;
}
.products_items .item .box1{
  width: 23.46%;
  border: 1px solid #c9c9c9;
  padding: 10px;
  /*display: flex;
  justify-content: center;
  align-items: center;*/
  /*height: 100%;*/
}
.products_items .item .box2{
  width: 74.90%;
}
.products_items .item .img{
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.products_items .item .img:before{
  content: "";
  display: block;
  width: 100%;
  padding-top: 69.23%;
}
.products_items .item .title{
  background: #feead1;
  font-weight: 500;
  padding: 5px 10px;
  font-size: 16px;
  margin-bottom: 10px;
}
.products_items .item .txt{
  font-size: 15px;
}

/* **********************************
 *  
 * ********************************* */
.pg_recruit .section#sec1{
  /*border-bottom: 5px solid #ff7710;*/
  padding-top: 20px;
  padding-bottom: 20px;
}
.pg_recruit .section#sec2{
  background: #feead1;
  padding-top: 80px;
  padding-bottom: 100px;
}
.pg_recruit .section#sec3{
  
}

.recruit_tt1{
  
}
.recruit_tt1{
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-align: center;
  background-image: url('/img/tt_bg2.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 15px;
  margin-bottom: 95px;
  position: relative;
  text-align: center;
}
.recruit_tt1.center{
  text-align: center;
}
.recruit_tt1 span{
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  margin-bottom: -50px;
  text-align: center;
  font-size: 24px;
}

.recruit_bdr{
  border: 0;
  margin: 0;
  margin-bottom: 20px;
  height: 5px;
  background: #ff7710;
}
.recruit_msg{
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-align: center;
  color: #ff5050;
  padding: 20px 0;
}

.tbl{
  background: #FFF;
}
.tbl th,
.tbl td{
  text-align: left;
  letter-spacing: 0.2em;
  line-height: 1.875;
  padding: 20px 20px;
}
.tbl th{
  width: 29.46%;
  background: #eeeeee;
  font-weight: bold;
}
.tbl td{
  padding-left: 40px;
  padding-right: 40px;
}

.recruit_tbl{
  margin-bottom: 80px;
}
.pg_recruit .contact_info{
  margin-bottom: 0;
}

/* **********************************
 *  会社概要
 * ********************************* */
.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 .contact_info{
  border: 1px solid #ff7710;
}

.pg_contact .privacy{
  margin-top: 80px;
}
