@charset "utf-8";
/* CSS Document */
*,
::before,
::after{
  box-sizing: border-box;
  /* ↓↓debug code↓↓ */
  /* outline: 1px solid red; */
}
body {
  font-family: メイリオ, Meiryo,"游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color:#404040;
  font-size:16px;
  font-weight:400;
  line-height:1.75;
  letter-spacing:0.05em;
  text-align:justify;
}
a {
  color:#333;
  text-decoration: none;
}
h2,h3,h4{
  font-family: "Yu Kyokasho New M";
}
/*tel*/
[href^="tel"]:hover {
  cursor: default;
}
::selection{
  background-color:#99C1DA;
}
::-moz-selection{
  background-color:#99C1DA;
}
body,
.nav_wrap.fixed,
#mainvisual .inner,
header,
footer{
  min-width:1240px;
}
@media print{
html {
  -webkit-print-color-adjust: exact;
}
body {
  zoom: 80%;
}
.fixed {
  position: inherit !important;
}
}

/* 画像のにじみ（大きい画像を小さく表示した時等）対策 */
.visibility{
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
}

/*============================================================================

  header

============================================================================*/
header {
  width:100%;
  height:160px;/* navのtopと同じ値にする */
}
header .inner{
  position:relative;
  width:1200px;
  margin:auto;
  display:flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap:15px;
}
/* ロゴ */
header .header_logo{
  position:absolute;
  top:38px;
  left:0;
  z-index: 11;
}
header .header_logo img{
  width:250px;
  height:auto;
}

/* 住所 */
.header_info{
  float:right;
  text-align:right;
  padding:37px 0 0;
}

/* ご予約・お問合せ */
.header_tel{
  text-align:right;
  line-height: 1;
  margin: 0 0 5px;
}
.header_tel a{
  color:#404040;
  position:relative;
  padding-left:25px;
  font-size:32px;
  letter-spacing:0.1em;
  font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}
.header_tel a span{
  font-size:22px;
  margin:0 5px 0 0;
}
.header_info_ad{
  font-size:14px;
  line-height: 1;
  letter-spacing: 0;
}
.header_links{
  display: flex;
}
.header_links a{
  position:relative;
  display: flex;
  justify-content: center;
	align-items:center;
  flex-direction: column;
  padding: 0 5px 4px;
  height:90px;
  width: 150px;
  background: linear-gradient(315deg, transparent 5px, #ed7100 5px);
  color: #fff;
  text-align: center;
  transition: background-color 0.5s ease;
  font-size:14px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.05em;
  line-height:1.3;
  font-weight:bold;
}
.header_links a::before{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  border:1px solid #fff;
  width:calc(100% - 8px);
  height:calc(100% - 8px);
  content:"";
}
.header_links a span{
  font-size:14px;
  display:block;
}
.header_links li:first-child a{
  background:#0db91f;
}
.header_links li:nth-child(2) a{
  background:#ddab3b;
}
.header_links li:nth-child(3) a{
  background:#ed7100;
}
.header_links a:hover{
  background-color: rgba(31,39,116,0.8);
}
.header_links a img{
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    width:30px;
    margin:0 0 5px;
}
/*============================================================================

  nav

============================================================================*/

.nav_wrap{
  position: absolute;
  z-index: 10;
  top: 106px;
  width: 100%;
  background: rgba(255,255,255,0.8);
}

.tgl_menu_list{
  width: 1200px;
  margin: 0 auto;
}
.tgl_menu_list ul{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap:40px;
}
.tgl_menu_list ul li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tgl_menu_list ul li.sp_btn{
  display:none;
}

/* リンクテキスト */
.tgl_menu_list ul li a,
.tgl_menu_list ul li p{
  position: relative;
  color:#404040;
  line-height: 1;
  text-align: center;
  padding:15px 0;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: "Yu Kyokasho New M";
  font-size:15px;
}

.tgl_menu_list ul li a::before,
.tgl_menu_list ul li p::before{
  position:absolute;
  top:0;
  bottom:0;
  left:-20px;
  margin:auto;
  width:1px;
  height:20px;
  background:#000;
  content:"";
}

.tgl_menu_list ul li:first-child a::before,
.tgl_menu_list ul li:first-child p::before{
  content:none;
}

/* ホバー時に出る下線 */
.tgl_menu_list ul li a::after,
.tgl_menu_list ul li p::after{
  content: "";
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  background: #DD8140;
  transition: 0.2s ease-in-out;
  transform: scaleX(0);
}
.tgl_menu_list ul li a:hover::after,
.tgl_menu_list ul li.active a::after,
.tgl_menu_list ul li p:hover::after,
.tgl_menu_list ul li.active p::after{
  transform: scaleX(1);
}

.tgl_menu_list ul li.nav_mega_menu a::after,
.tgl_menu_list ul li.nav_mega_menu p::after{
  position:absolute;
  width:100%;
  bottom:10px;
  font-size:13px;
  line-height:1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content:"\f078";
  text-align:center;
  background:none;
  transform: scaleX(1);
  transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tgl_menu_list ul li.nav_mega_menu a:hover::after,
.tgl_menu_list ul li.nav_mega_menu p:hover::after{
  transform: rotate(-180deg) translateY(-11px);
}

/* ホバーエフェクト */
.tgl_menu_list ul li a:hover{
  color: #276ea0;
}


/* ------- スライドメニュー シングル------- */
.tgl_menu_list ul li.nav_single_menu{
  position: relative;
}
.tgl_menu_list ul li.nav_single_menu > a::after,
.tgl_menu_list ul li.nav_single_menu > p::after{
  position:absolute;
  width:100%;
  bottom:10px;
  font-size:13px;
  line-height:1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content:"\f078";
  text-align:center;
  background:none;
  transform: scaleX(1);
  transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.tgl_menu_list ul li.nav_single_menu div{
  position: absolute;
  z-index: 1;
  top: 95%;
  left: 0;
  width: 240%;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.tgl_menu_list ul li.nav_single_menu:hover div{
  top:120%;
  opacity: 1;
  visibility: visible;
}
.tgl_menu_list ul li.nav_single_menu div a{
  position: relative;
  display: block;
  text-align: left;
  line-height: 1.75;
  padding: 9px 20px 9px 10px;
  background: rgba(255,255,255,0.6);
  border-bottom: 1px solid #fff;
  margin:0;
}
.tgl_menu_list ul li.nav_single_menu div a::before,
.tgl_menu_list ul li.nav_single_menu div a::after{
  display: none;
}
.tgl_menu_list ul li.nav_single_menu div a:last-child{
  border-bottom: none;
}
/* ホバーエフェクト */
.tgl_menu_list ul li.nav_single_menu div a:hover{
  color: #8ec31f;
  background: #fcfcfc;
}

/* ------- スライドメニュー メガ------- */
.tgl_menu_list .nav_mega_menu{
  position: static;
}

/* ドロップダウン */
.tgl_menu_list .nav_mega_menu .mega_menu_wrap{
  position: absolute;
  z-index: 1;
  top: 95%;
  left: 0%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in-out;
  background: rgb(3,33,44);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 9px 12px -10px;
}
.tgl_menu_list .nav_mega_menu:hover .mega_menu_wrap{
  top: calc(100% + 15px);
  opacity: 1;
  visibility: visible;
}
.tgl_menu_list .mega_menu_inner{
  padding: 32px 0;
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.tgl_menu_list .menu_list{
  width: 100%;
  margin-left: 3%;
}
.tgl_menu_list .menu_list:first-child{
  margin-left: 0;
}
.tgl_menu_list ul li.nav_mega_menu .menu_list p::before,
.tgl_menu_list ul li.nav_mega_menu .menu_list p::after{
  display: none;
}
.tgl_menu_list .menu_list p{
  text-align: left;
  padding: 12px 0;
  font-weight: bold;
  border-bottom: 2px solid;
}
.tgl_menu_list .menu_list ul{
  display: flex;
}
.tgl_menu_list .menu_list ul li{
  display: block;
}
.tgl_menu_list .menu_list ul li a{
  position: relative;
  display: block;
  text-align: left;
  transition: 0.2s ease-in-out;
  font-size:14px;
  letter-spacing: 0.05em;
  color:#fff;
  font-family: "Yu Kyokasho New M";
}
.tgl_menu_list .menu_list ul li a::before{
  content:none;
}
.tgl_menu_list .menu_list ul li a figure{
  overflow: hidden;
  height:180px;
  display:block;
  margin:0 0 10px;
}
.tgl_menu_list .menu_list ul li a:hover img{
  -webkit-transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.tgl_menu_list .menu_list ul li:last-child a::before{
  display: inline;
}
.tgl_menu_list ul li.nav_mega_menu div a::after{
  display: none;
}

/* ------- スライドメニュー tabindex対応------- */
/* シングル */
.tgl_menu_list ul li.nav_single_menu:focus-within > div{
  top: 100%;
  opacity: 1;
  visibility: visible;
}

/* メガ */
.tgl_menu_list ul li.nav_mega_menu:focus-within > .mega_menu_wrap{
  top: 100%;
  opacity: 1;
  visibility: visible;
}

/* 追従時の設定 */
.nav_wrap.fixed{
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding:20px 0;
}
.nav_wrap.fixed .tgl_menu_list ul{
  justify-content: center;
}
.nav_wrap.fixed .tgl_menu_list .nav_mega_menu:hover .mega_menu_wrap{
  top:100%;
}

/*============================================================================

  #mainvisual

============================================================================*/

/* 下層ページのメインビジュアルの高さ、背景画像（トップページの高さはtop.css参照） */
#mainvisual{
  display:block;
  position:relative;
  height: 350px;
  background-image:url("../images/mv.jpg");
  background-size:cover;
  background-position: center;
}
#mainvisual.usa-shrine{
  background-image:url(../images/mv_usajingu.jpg);
}
/* #mainvisual.service{
  background-image:url("../images/service_mv.jpg");
}
#mainvisual.strength{
  background-image:url("../images/strength_mv.jpg");
}
#mainvisual.works{
	background-image:url("../images/works_mv.jpg");
}
#mainvisual.consultation{
	background-image:url("../images/soudan_mv.jpg");
}
#mainvisual.flow{
	background-image:url("../images/flow_mv.jpg");
}
#mainvisual.soudan{
	background-image:url("../images/soudan_mv.jpg");
}
#mainvisual.about{
	background-image:url("../images/about_mv.jpg");
}
#mainvisual.contact{
	background-image:url("../images/contact_mv.jpg");
}
#mainvisual.voice{
	background-image:url("../images/voice_mv.jpg");
}
#mainvisual.wall,#mainvisual.roof{
	background-image:url("../images/price_mv.jpg");
}
#mainvisual.blog{
	background-image:url("../images/blog_mv.jpg");
}
#mainvisual.paint{
	background-image:url("../images/paint_mv.jpg");
}
#mainvisual.quality{
	background-image:url("../images/quality_mv.jpg");
}
#mainvisual.failure{
	background-image:url("../images/mv_top.jpg");
} */
#mainvisual .inner{
  display:table;
  position:relative;
  width:1080px;
  height:100%;
  margin: 0 auto;
  background-repeat:no-repeat;
}
.mainvisual_wrap{
  background-image:url("../images/mv.jpg");
  background-size:cover;
  background-color:#f0f0f0;
  background-position:center;
  background-repeat:no-repeat;
  max-width:1820px;
  width:90%;
  margin:auto;
}
#mainvisual p.headline{
  position:relative;
}

/* 下層ページの見出し */
.mainvisual_headline {
  display: table-cell;
  padding-bottom:2px;
  letter-spacing: 0.15em;
  vertical-align: middle;
  text-align: center;
  text-shadow: 0 0 5px rgba(255,255,255,0.7),0 0 5px rgba(255,255,255,0.7),0 0 5px rgba(255,255,255,0.7),0 0 5px rgba(255,255,255,0.7),0 0 5px rgba(255,255,255,0.7),0 0 5px rgba(255,255,255,0.7),0 0 5px rgba(255,255,255,0.7),0 0 5px rgba(255,255,255,0.7),0 0 5px rgba(255,255,255,0.7),0 0 5px rgba(255,255,255,0.7),0 0 5px rgba(255,255,255,0.7),0 0 5px rgba(255,255,255,0.7),0 0 5px rgba(255,255,255,0.7);
  font-family: "Yu Kyokasho New M";
}
/* タイトル */
.mainvisual_headline p.headline{
  font-size: 42px;
  color: #333;
  letter-spacing: 0.1em;
}
/*==================================================================

  #contents

==================================================================*/
main{
  display:block;
  overflow: hidden;
}

#container{
  padding:24px 0 100px;
}

#contents{
  position:relative;
  width:1200px;
  margin:0 auto;
  padding-top:24px;
  padding-bottom: 100px;
}
#contents_left{
  float:left;
  width:840px;
}


/*============================================================================

  $footer

============================================================================*/
.footer_work.works{
  display:none;
}
.footer_work{
	padding:50px 0;
	background:#f5f5f5;
}
.footer_work .tit01{
	margin:0 auto 60px;
}
.work_list{
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin:0 0 40px;
}
.work_item a{
  display:block;
  width:270px;
  height:100%;
  padding:10px;
  color:#404040;
  transition:.4s;
  background:#fff;
}
.work_item a:hover{
  box-shadow:0 8px 20px rgba(0,0,0,0.18);
  transform:translateY(-5px);
}
.work_img{
  position:relative;
  margin:0 0 10px;
}
.work_info .work_conatct{
  position:absolute;
  bottom:0;
  right:0;
  padding:5px 8px;
  color:#fff;
  background:#24408E;
  font-size:14px;
  letter-spacing: 0.05em;
}
.work_img .work_conatct.flye{
  background:#ED873C;
}
.work_img .work_conatct.tel{
  background:#D75F5F;
}
.work_img .work_conatct.friend{
  background:#5fd765;
}
.work_img .work_conatct.site{
  background:#c3bd33;
}
.work_info{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
}
.work_info li{
  border:1px solid #DD8140;
  padding:7px 10px;
  line-height:1;
  font-size:17px;
  letter-spacing: 0.05em;
}
.footer_work .btn01 a{
	margin:0 auto;
}

.footer_blog{
  padding:60px 0;
}
.footer_blog h2{
	margin:0 auto 60px;
}
.footer_blog .btn01 a{
	margin:0 auto;
}

footer {
  position:relative;
  width:100%;
}
.footer_info{
  position:relative;
  width:100%;
  background:url(../images/footer_bg.jpg);
}
.footer_info::before{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  /* background:rgba(6 32 55/40%); */
  content:"";
}
.footer_contact{
  text-align:center;
  padding:50px 0;
}
.footer_contact ul{
  position:relative;
  display:flex;
  justify-content: center;
  gap:50px;
  margin:40px 0 0;
}
.footer_contact::before{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:100%;
  background-color: #fff;
  background-image:
    radial-gradient(#fbf9f3 20%, transparent 20%),
    radial-gradient(#fbf9f3 20%, transparent 20%);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  content:"";
  z-index:-1;
}
.footer_contact li{
  width:430px;
  border:1px solid #DD8140;
  border-top:10px solid #DD8140;
  text-align:center;
  font-size:16px;
  letter-spacing: 0.1em;
  padding:20px 0;
  background:#fff;
}
.footer_contact li .contact_tit{
  font-size:24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}
.footer_contact li a{
  position:relative;
  display:inline-block;
  width:340px;
  background:#DD8140;
  color:#fff;
  line-height:68px;
  border:1px solid #DD8140;
  padding:0 20px 0 0;
  font-size:18px;
  letter-spacing: 0,05em;
  margin:14px 0 0
}
.footer_contact li a::before{
  position:absolute;
  top:0;
  bottom:0;
  right:20px;
  margin:auto;
  width:20px;
  height:20px;
  background:url(../images/arr_or.png);
  background-size:cover;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  content:"";
}
.footer_contact li.contact_estimate{
  border:1px solid #4F7C13;
  border-top:10px solid #4F7C13;
}

.footer_contact li.contact_estimate .contact_tit{
  color:#4F7C13;
}
.footer_contact li.contact_estimate a{
  background:#4F7C13;
  border:1px solid #4F7C13;
}
.footer_contact li.contact_estimate a::before{
  background:url(../images/arr_gr.png);
  background-size:cover;
}
.footer_inner{
  position:relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width:1080px;
  margin:0 auto;
  padding:70px 0 70px 36px;
  z-index:1;
}
.footer_info_left{
  width: 360px;
}
.footer_logo{
  margin:0 0 20px;
}
.footer_logo a img{
  max-width:250px;
}
.footer_overview p{
  font-size:17px;
  letter-spacing: 0.1em;
  line-height:30px;
}
.footer_overview a{
  font-size:32px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin:10px 0 0;
  display:inline-block;
  text-decoration: underline #DD8140;
}
.footer_overview a span{
  font-size:24px;
}
.footer_tel{
  position:relative;
  text-align:center;
  margin:40px 0 0;
  padding:35px 0 0;
}
.footer_tel em{
  position:absolute;
  top:0;
  left:0;
  right:0;
  margin:auto;
  text-align:center;
  display:table;
  font-weight:bold;
  font-size:18px;
  letter-spacing: 0.05em;
}
.footer_tel em::before{
  position:absolute;
  top:0;
  bottom:0;
  left:-120px;
  margin:auto;
  width:100px;
  height:2px;
  background:#b19854;
  content:"";
}
.footer_tel em::after{
  position:absolute;
  top:0;
  bottom:0;
  right:-120px;
  margin:auto;
  width:100px;
  height:2px;
  background:#b19854;
  content:"";
}
.footer_tel a{
  letter-spacing:0.1em;
  line-height:1;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size:50px;
  display:inline-block;
}
.footer_tel a span{
  font-size:32px;
  margin:0 10px 0 0;
}
.footer_tel p{
  text-align:center;
}

.footer_info_right{
  width:660px;
}
.googlemap iframe{
  width:100%;
  height:330px;
  border-radius:20px;
}
.footer_area{
  padding:50px;
}
.footer_area_inner{
  width:920px;
  padding:30px 100px 30px 0;
  margin:auto;
  display:flex;
  align-items: center;
  gap:0px;
  background:#efefef;
  border-radius:20px;
}
.footer_area .footer_area_tit{
  position:relative;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  text-align:center;
  padding:0 15px;
  background:#555;
  color:#fff;
  font-size:18px;
  letter-spacing: 0.1em;
  transform: translateX(-50%);
  border-radius:7px;
}
.footer_area .footer_area_tit::before{
  position:absolute;

  content:"";
}
.footer_area .footer_area_list{
  font-size:14px;
  letter-spacing: 0.1em;
  flex:1;
}
/* フッターのナビ */
.footer_navi{
  padding:50px 0;
  background:#F4F0EC;
}
.footer_navi .inner{
  width:1200px;
  margin:0 auto;
  padding:40px 0;
  display:flex;
  gap:70px;
}
.footer_navi ul {
  position:relative;
  height:inherit;
}
.footer_navi ul li {
  position:relative;
  height:inherit;
  margin:0 0 15px;
}
.footer_navi ul li a,.footer_navi ul li p{
  position:relative;
  display: block;
  line-height: 1.6;
  font-size:18px;
  color:#333;
  letter-spacing: 0.1em;
}
.footer_navi ul li p{
  margin:0 0 12px;
}
.footer_navi ul li div a{
  line-height:2;
}
.footer_navi ul li div a::before{
  position:relative;
  left:0;
  top:0;
  bottom:0;
  margin:auto;
  margin:0 5px 0 0;
  content:"-";
}
.footer_navi ul li a:hover,
.footer_navi ul li.active2 a{
  color:#d87213;
}
.footer_navi ul li a span{
  position:relative;
  padding:0 5px;
}
/* ページトップ */
.pagetop,
.pagetop img{
  width:50px;
  height:25px;
}
.pagetop{
  position:relative;
  margin:20px auto 20px;
  text-align:center;
  cursor:pointer;

}
.pagetop img{
  display:inline-block;
  position:relative;
  top:0;
  transition:0.5s ease-in-out;
}
.pagetop:hover img{
  top:-5px;
  padding-bottom:5px;
  transform: rotateY(180deg);
}
/* コピーライト */
.copy{
  padding-bottom:45px;
  text-align: center;
  background:#F4F0EC;
}
.copy small{
  line-height:1;
  font-size:13px;
  letter-spacing:0.2em;
  color:#333;
}

.loading_tit.close,.loading_bg.close{
  display:none;
}

.loading_bg{
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 20000;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: anim_bg 2.2s both ease-in;
  background:#fff;
  animation: down 1s both cubic-bezier(0.23, 1, 0.59, 0.94);
  animation-delay: 0.5s;
}

.loading_tit{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  margin:auto;
  width:26vw;
  /* height:300px; */
  display:flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align:center;
  z-index:30000;
  text-align:center;
  color:#1c75b6;
  font-size:1.6vw;
  line-height:1;
  letter-spacing: 0.1em;
  font-family: "Yu Kyokasho New M";
  animation: load_tit 2.2s both ease-in;
  font-size:1.6vw;
}

.loading_tit img{
  width:100%;
}

.loading_tit p{
  font-weight:bold;
  font-size:26px;
}
.loading_tit p .sc2{
  animation: blur 1s;
}
.loading_tit p .sc1_9{
  animation: blur 0.9s;
}
.loading_tit p .sc1_8{
  animation: blur 0.8s;
}
.loading_tit p .sc1_7{
  animation: blur 0.7s;
}
.loading_tit p .sc1_6{
  animation: blur 0.6s;
}
.loading_tit p .sc1_5{
  animation: blur 0.5s;
}
.loading_tit p .sc1_4{
  animation: blur 0.4s;
}


@keyframes load_tit {
    0% {
      opacity:0;
    }
    
    50% {
      opacity: 1;
    }

    100%{
      opacity:0;
      visibility:hidden;
    }
}
 
.loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 20000;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: anim_bg 2.2s both ease-in;
}

.loading.close{
  display:none;
}

@keyframes anim_bg {
    0% {
        background:rgba(255,255,255,1);
    }
    
    23% {
        background:rgba(255,255,255,0);
		opacity:1;
    }

  100%{
    display:none;
		opacity:0;
  }
}

.loading > div{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:#fff;
  animation: down 1s both cubic-bezier(0.23, 1, 0.59, 0.94);
  animation-delay: 0.5s;
}

@keyframes down {
    0% {
        top:0;
    }

    85% {
        top:0;
    }
    
    100% {
        top:calc(100% + 70px);
        visibility:hidden;
    }
}

.loading p{
  text-align:center;
  color:#DD8140;
  font-size:1.6vw;
  line-height:1;
  letter-spacing: 0.1em;
  font-family: "Yu Kyokasho New M";
}

.loading p .sc2{
  animation: blur 2s;
}
.loading p .sc1_9{
  animation: blur 1.9s;
}
.loading p .sc1_8{
  animation: blur 1.8s;
}
.loading p .sc1_7{
  animation: blur 1.7s;
}
.loading p .sc1_6{
  animation: blur 1.6s;
}
.loading p .sc1_5{
  animation: blur 1.5s;
}
.loading p .sc1_4{
  animation: blur 1.4s;
}


@keyframes blur {
    0% {
        color: transparent;
        filter: blur(10px);
    }
    
    100% {
        color: #000;
        filter: blur(0px);
    }
}

.loading img{
  animation: load_img 0.7s both ease-in;
  width:26vw;
}

@keyframes load_img {
    0% {
      opacity:0;
    }
    
    100% {
        opacity: 1;
    }
}


/*==================================================================

  タイトル

==================================================================*/

h1{
  font-size: 12px;
  position: absolute;
  width: auto;
  top: 3px;
  left: 0;
  right: auto;
  margin: auto!important;
}
/*中央寄せ　背景画像あり*/
.tit01 {
  position: relative;
  display:table;
  margin:0 auto 30px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #333;
  font-size: 20px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight:700;
  padding:0 0 10px;
  border-bottom:3px solid #DD8140;
}
.tit01 span{
	font-size:70%;
	margin:0 10px 0 0;
}
.tit_en{
  font-size:45px;
  color:#DD8140;
  text-align:center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight:bold;
  letter-spacing: 0.12em;
  line-height:1;
  margin:0 0 10px;
}

.tit02 {
  position: relative;
  z-index: 0;
  padding:0 0 10px;
  letter-spacing: 0.15em;
  font-size: 28px;
  font-weight:bold;
  line-height: 1.6;
  text-align: left;
  border-bottom:6px solid #DDDDDD;
  font-family: 'Noto Sans JP', sans-serif;
  display:table;
  margin:0 auto 50px;
}
.tit02 small{
	color:#DD8140;
	font-size:20px;
	display:block;
}
.tit02::before{
	position:absolute;
	bottom:-6px;
	left:0;
	width:50%;
	height:1px;
	border-bottom:6px solid #DD8140;
	content:"";
}
/*左寄せ*/
.tit03 {
  position: relative;
  letter-spacing: 0.1em;
  color: #DD8140;
  text-align: center;
	font-size:32px;
	line-height:45px;
	margin:0 0 40px;
  font-family: 'Noto Sans JP', sans-serif;
}
/*左寄せ*/
.tit04 {
  position: relative;
  font-size:32px;
  line-height:40px;
  margin-bottom: 12px;
  padding:0 0 0 50px;
  letter-spacing: 0.1em;
  color: #DD8140;
  font-family: "Yu Kyokasho New M";
}
.tit04 span{
	position:absolute;
	top:0;
	left:0;
	display:inline-block;
	width:40px;
	line-height:40px;
	text-align:center;
	color:#fff;
	background:#DD8140;
	font-size:24px;
}
/*中央寄せ　電球*/
.tit05 {
  position: relative;
  padding: 1rem;
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 3px solid #000;
  background: #fff;
  margin-bottom: 40px;
}
.tit05:before,
.tit05:after {
  position: absolute;
  content: '';
}
.tit05:before {
  top: -40px;
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
  border: 1px solid #000;
  border-radius: 50%;
  background: #fff;
}
.tit05:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.tit05 i {
  font-size: 30px;
  font-size: 1.7rem;
  line-height: 60px;
  position: absolute;
  z-index: 1;
  top: -40px;
  left: calc(50% - 40px);
  width: 80px;
  height: 60px;
  text-align: center;
}
.tit05 span:before {
  top: -100px;
  left: calc(50% - 27px);
  width: 55px;
  height: 32px;
  background: url(../images/radiation.svg) top center no-repeat;
  position: absolute;
  content: '';
}
.tit05 span:last-child {
  font-size: 30px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.page_edit h2{
  font-size:22px;
  font-weight:bold;
  font-family: "Yu Kyokasho New M";
  color:#DD8140;
}

.page_edit section{
  margin:0 0 50px;
}

.page_edit th{
  min-width:50px;
  vertical-align: top;
}

.h3_tit01{
  position:relative;
  padding:0 0 0 30px;
  margin:0 0 20px;
  line-height:1;
  font-size:24px;
  font-weight:bold;
}
.h3_tit01::before{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  margin:auto;
  width:20px;
  height:20px;
  background:#DC803F;
  content:"";
}

/*==================================================================

  .list
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/


/*院長略歴*/
.list01 {
  margin: 0 0 15px;
  padding: 0;
  border-width: 0 1px 1px;
}
.list01 dt {
  margin: 0;
  padding: 14px 3px 0px;
}
.list01 dd {
  margin: -38px 0 0;
  padding: 12px 4px 10px 100px;
  border-bottom: 1px dotted #ACACAC;
}
/*院長略歴　年月無し*/
.list02 {
  margin: 0 0 15px;
  border-width: 0 1px 1px;
}
.list02 li {
  margin: 0 0px 0px;
  padding: 6px 4px 6px 0;
  border-bottom: 1px dotted #ddd;
}
/*まる*/
.list03 li{
  position:relative;
  margin-bottom:10px;
  padding-left:15px;
}
.list03 li:last-child{
  margin-bottom:0;
}
.list03 li:before{
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #DD8140;
  border: 1px solid #DD8140;
  border-radius: 100%;
  content: '';
}
.list03 li i{
  margin-right:8px;
}
/*さんかく*/
.list04 li{
  position: relative;
  margin-bottom:15px;
  padding-left:22px;
  color:#223a70;
}
.list04 li:before{
  position:absolute;
  top:0.5em;
  left:7px;
  width: 0;
  height: 0;
  border:5px solid transparent;
  border-left: 5px solid #4A577F;
  content:"";
}
/*やじるし*/
.list05 li{
  position:relative;
  margin-bottom: 10px;
  padding-left:15px;
}
.list05 li:before{
  position:absolute;
  left:0;
  top:0.3em;
  height:5px;
  width:5px;
  transform:rotate(45deg);
  background-color: transparent;
  border-top:1px solid #333;
  border-right:1px solid #333;
  content:"";
}
/* まる & 背景 */
.list06{
  padding:35px 15px 25px 45px;
  background-color:#f7f7f7;
}
.list06:after {
  display: block;
  clear: both;
  content: "";
}
.list06 li{
  position:relative;
  float:left;
  margin-bottom:15px;
  padding-left:0.9em;
  padding-right:5%;

}
.list06 li:before{
  display: block;
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #DAC58B;
  border: 1px solid #DAC58B;
  border-radius: 100%;
}
/*まる & 枠 */
.list07{
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.list07 li{
  padding-left:2.3em;
  margin-bottom:10px;
  position:relative;
  display:table;
}
.list07 li:last-child{
  margin-bottom:0;
}
.list07 li:before{
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  font-weight: 900;
  content: "\f00c";
  padding-left: 10px;
  color: #DD8140;
}
.list07 li i{
  margin-right:8px;
}
/*チェック*/
.list08{
  margin-bottom:30px;
  padding:35px 10px 20px 45px;
  background-color:#f7f7f7;
  border-radius:20px;
}
.list08:after{
  display: block;
  clear: both;
  content: "";
}
.list08 li{
  position:relative;
  float:left;
  margin-right: 5%;
  margin-bottom:20px;
  margin-left: 28px;
  border-bottom: 1px dotted #cdcdcd;
}
.list08 li:before{
  display: block;
  position: absolute;
  top: -2px;
  left: -35px;
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  font-weight: 900;
  content: "\f00c";
  padding-left: 10px;
  color: #DD8140;
}
.list08-box{
  position: relative;
  margin-bottom: 20px;
  letter-spacing: 0.15em;
  padding: 30px;
  background: #b8bfff;
}
.list08-box .list08 {
  margin-bottom: 0;
  padding: 35px 25px 20px 50px;
  background-color: #fff;
}
.list08-box .list08 li {
  width: auto;
}
.list08-box::before {
  position: absolute;
  width: 65px;
  height: 50px;
  top: -5px;
  left: -5px;
  margin: auto;
  background-color: #1f2774;
  z-index: 0;
  content: "";
}
.list08-box::after {
  position: absolute;
  width: 65px;
  height: 50px;
  bottom: -5px;
  right: -5px;
  margin: auto;
  background-color: #1f2774;
  z-index: 0;
  content: "";
}
/*数字＋背景色*/
.list09 {
padding: 25px;
  background: #f5f5ff;
  counter-reset: section;
}
.list09 li {
  display: flex;
  align-items: baseline;
  position: relative;
  margin-bottom: 10px;
  padding-left: 5px;
  padding-bottom: 8px;
  border-bottom: #1f2774 1px dashed;
}

.list09 li::before{
  counter-increment: section;
  content: counter(section);
  padding-right: 8px;
  font-size: 106%;
  font-weight: 700;
  color: #1F2774;
}
/*●の数字＋背景色*/
.list10 {
padding: 25px;
  background: #f5f5ff;
  counter-reset: section;
}
.list10 li {
  display: flex;
  align-items: baseline;
  position: relative;
  margin-bottom: 10px;
  padding-left: 5px;
  padding-bottom: 8px;
  border-bottom: #1f2774 1px dashed;
}

.list10 li::before{
  display: inline;
  counter-increment: section;
  content: counter(section);
  font-size: 106%;
  font-weight: 700;
  color: #fff;
  background-color: #1F2774;
  border-radius: 20px;
  padding: 2px 11px;
  margin-right: 10px;
}
/*数字の右側に）＋背景色*/
.list11 {
padding: 25px;
  background: #f5f5ff;
  counter-reset: section;
}
.list11 li {
  position: relative;
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
  padding-left: 5px;
  padding-bottom: 8px;
  border-bottom: #1f2774 1px dashed;
}

.list11 li::before{
  display: inline;
  counter-increment: section;
  content: counter(section) " )";
  font-size: 106%;
  font-weight: 700;
  color: #1F2774;
  flex-basis: 35px;
  flex-shrink: 0;
}

/*米印のリスト*/
.list12 li{
  position: relative;
  margin-bottom: 5px;
  color: #888;
  font-size: 95%;
  padding-left: 1em;
  text-indent: -1em;
}
.list12 li::before{
  content: "※";
  display: inline;
}

/*==================================================================

  .btn
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/
/*ボタン ゴースト*/
.btn01.center a{
	margin:0 auto;
}
.btn01 a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width:350px;
  height:76px;
  line-height: 1;
  border: 1px solid #333;
  text-align: center;
  color: #333;
  transition: ease-in-out 0.1s;
  background:#fff;
  font-size:16px;
  letter-spacing: 0.1em;
  background:url(../images/btn_item.png);
  background-color:#fff;
  border-radius:5px;
}
.btn01 a::before{
  position:absolute;
  top:0;
  bottom:0;
  right:15px;
  margin:auto;
  width:20px;
  height:20px;
  background:url(../images/arr01.png);
  content:"";
  transition:.4s;
}
.btn01 a:hover{
  color:#BF4F00;
  background:#fff;
  border:none;
}
.btn01 {
  position: relative;
}
/* btn02 */
.btn02 a {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  border-radius: 4px;
  background: #dd8141;
  padding: 16px 0;
  transition: 0.2s all ease 0s;
  width:300px;
  text-align:center;
  font-weight:bold;
}
.btn02 a:hover {
  transform: translate3d(0, 3px, 0);
  box-shadow: 0px 1px 0 #74aa5f;
}
.btn02 a i {
  margin-right: 7px;
}
/* btn03 */
.btn03 a {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #DC803F;
  background: #DC803F;
  color: #fff;
  font-weight: bold;
  transition: ease-in-out 0.2s;
  border-radius: 10px;
  text-align:center;
}
.btn03 a span {
  z-index: 2;
  position: relative;
}
.btn03 a i {
  margin-right: 7px;
}
.btn03 a:hover{
  color:#DC803F;
  background:#fff;
  transition:.2s;
}
/*btn04*/
.btn04 a{
  position: relative;
  display:inline-block;
  padding:8px 20px;
  color:#fff;
  background: #00408f;
  font-weight:bold;
  transition:ease-in-out 0.2s ;
}
.btn04 a i{
  margin-right:7px;
}
.btn04 a:hover{
  color:#fff;
}
.btn04 a span{
  z-index: 2;
  position: relative;
}
.btn04 a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
  background: #6baaea;
  transform-origin: center center;
  transform: scale(0, 1);
  transition: transform .3s;
}
.btn04 a:hover::before {
  transform: scale(1, 1);
}
/*btn05*/
.btn05 a{
width: 130px;
  display:inline-block;
  position: relative;
  padding: 9px 0 7px;
font-family: serif;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
transition:ease-in-out 0.2s ;
}
.btn05 a:before{
  content:"";
  width:100%;
  height:100%;
  position:absolute;
  z-index:2;
  top: 0;
  left:0;
  transition:0.5s;
  background: -webkit-linear-gradient(0deg, #0068b7 0%, #208ee1 100%);
  background: -moz-linear-gradient(0deg, #0068b7 0%, #208ee1 100%);
  background: -o-linear-gradient(0deg, #0068b7 0%, #208ee1 100%);
  background: linear-gradient(90deg, #0068b7 0%, #208ee1 100%);
}
.btn05 a:after{
  background: -webkit-linear-gradient(0deg, #59b4f9 0%, #94d0fd 100%);
  background: -moz-linear-gradient(0deg, #59b4f9 0%, #94d0fd 100%);
  background: -o-linear-gradient(0deg, #59b4f9 0%, #94d0fd 100%);
  background: linear-gradient(90deg, #59b4f9 0%, #94d0fd 100%);
  content:"";
  width:100%;
  height:100%;
  position:absolute;
  z-index:1;
  top: 0;
  left:0;
}
.btn05 a:hover:before{
  opacity:0;
}

.btn05 p {
  z-index: 5;
  position: relative;
  text-align: center;
  margin: 0 !important;
  padding: 0 !important;
}
.btn05 p img{
  position: absolute;
  right: 15px;
  top: 9px;
}

.btn05 a:hover img {
  opacity: 1;
  transform: translateX(0.3em);
  transition: ease-in-out 0.4s;
}
/*btn06*/
.btn06 {
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
.btn06 a i {
  margin-right: 7px;
}
.btn06 a {
  border: 2px solid #000;
  border-radius: 0;
  background: #fff;
  box-shadow: 4px 4px 0 #000;
  padding: 10px;
}

.btn06 a:hover {
  box-shadow: -4px -4px 0 #000;
  transition: all 0.3s;
}
/*btn07*/
.btn07 a {
  position: relative;
  display: block;
  padding: 0.8em;
  text-align: center;
  border: 1px solid #9C27B0;
  text-decoration: none;
  outline: none;
  transition: all .4s;
  font-weight: 600;
}
.btn07 a i {
  margin-right: 7px;
}

.btn07 a::before,
.btn07 a::after {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  z-index: 2;
  content: '';
  transition: all .4s;
}
.btn07 a::before {
  border-top: 1px solid #FF5722;
  border-bottom: 1px solid #FF5722;
  transform: scale(0, 1);
}
.btn07 a::after {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: scale(1, 0);
}
.btn07 a:hover {
  color: #FF5722;
}
.btn07 a:hover::after,
.btn07 a:hover::before {
  transform: scale(1);
}
.btn01_arrow{
  position:relative;
  left:0px;
  margin-right:14px;
  transition:0.2s ease-in, 0.22s ease-out;
}
.btn01_arrow img{
  opacity:1 !important;
}
.btn01_arrow,
.btn01_arrow img{
  width: 18px;
  height: 13px;
}
.btn01 a:hover .btn01_arrow{
  left:4px;
}
/*==================================================================

  $画像寄せ
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/
.renz{
  position:relative;
  display:inline-block;
}
.renz::after{
  position:absolute;
  bottom:5px;
  right:5px;
  width:34px;
  height:34px;
  background:url(../images/renz.png);
  background-size:cover;
  content:"";
}
/* 画像を右寄せ　※画像サイズはhtmlで調整 */
.img_fr{
  display:block;
  position:relative;
  float:right;
  margin-left:30px;
  margin-bottom:0 !important;
  text-align:center;
  max-width: 300px;
}
.img_fr img{
  border-radius:3px;
  margin-bottom:7px;
  width: 100%;
  height: auto;
}
/* 画像に対して説明文がある場合は、dlで囲い、dtに画像を、ddにテキストを使う */
.img_fr dd{
  padding-left:20px;
  line-height:1.3;
  font-size:15px;
  font-weight:bold;
  color: #1F2774;
  text-align:left;
}
/*==================================================================

  $アンカーリンンク
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/

/* 共通CSS */
[class^="ank0"]{
  padding-top: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap:10px 20px;
}
[class^="ank0"] li{
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
}
[class^="ank0"] li a{
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  border:1px solid #DD8140;
  color:#DD8140;
  vertical-align:middle;
  transition:0.1s ease-in-out;
  font-size:20px;
  padding:0 25px;
  letter-spacing: 0.1em;
}
[class^="ank0"] li a:hover{
  background-color:#DD8140;
  color:#fff;
}
[class^="ank0"] li i{
  display:block;
  position:absolute;
  left:0;
  right:0;
  bottom:4px;
  margin:auto;
}

/* 2個並び */
.ank02 li{
  position:relative;
  width: 590px;
  padding:0 0 0 45px; 
  height:40px;
}
.ank02 li::before{
	position:absolute;
	left:0;
	top:0;
	width:40px;
	height:40px;
	color:#fff;
	background:#DD8140;
	font-size:24px;
	text-align:center;
}
.ank02 li:nth-child(1)::before{
	content:"1";
}
.ank02 li:nth-child(2)::before{
	content:"2";
}
.ank02 li:nth-child(3)::before{
	content:"3";
}
.ank02 li:nth-child(4)::before{
	content:"4";
}
.ank02 li:nth-child(5)::before{
	content:"5";
}
.ank02 li:nth-child(6)::before{
	content:"6";
}
.ank02 li:last-child{
	padding:0;
}
.ank02 li:last-child a{
	text-align:center;
	justify-content: center;
}

/* 3個並び */
.ank03{
	margin:0 0 70px;
}
.ank03 li{
  width: 30%;
  text-align:center;
}
.ank03 li a{
  justify-content: center;
  height:70px;
  padding:0 0 5px;
}
.ank03 li:nth-child(even) a{
  border:1px solid #BF4F00;
  color:#BF4F00;
}
.ank03 li:nth-child(even) a:hover{
  background:#BF4F00;
  color:#fff;
}
.ank03 li a::before{
  position: absolute;
    width: 100%;
    bottom: 10px;
    font-size: 13px;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    text-align: center;
}
.ank03 li:nth-child(even) a::before{
  color:#BF4F00;
}
.ank03 li:nth-child(even) a:hover::before{
  color:#fff;
}

/* 4個並び */
.ank04 li{
  width: 23%;
}

/*==================================================================

  .layout
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/

/* --------------layout共通タイトル-------------- */
.layout_tit{
  color: #1F2774;
  font-size: 18px;
  font-weight: bold;
}
.layout_tit em{
  margin-right: 10px;
  color: #BDA087;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: normal;
}
.layout_tit span{
  margin-right: 10px;
  color: #BDA087;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: normal;
}
/* layout小タイトル */
.layout_tit_02{
  color: #1F2774;
  font-size: 18px;
  font-weight: bold;
}
/* 1つ並びのレイアウト。画像は無し、左にタイトル、右に文章 */
.layout01 {
  position: relative;
  margin: 0 0 15px;
}
.layout01:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid #ededed;
  content: "";
}
.layout01 .layout01_box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0;
}
.layout01 .layout01_box:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid #f0f0f0;
  content: "";
}
.layout01 .layout01_title {
  width: 30%;
  background-color: #f7f7f7;
  letter-spacing: 0.1em;
  color: #1F2774;
  font-weight: bold;
  font-size: 120%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.layout01 .layout01_title em {
  display: block;
  width: 100%;
  line-height: 1;
  font-family: "Times New Roman", Times, serif;
  font-size: 150%;
  font-weight: normal;
  color: #C3AF97;
}
.layout01 .layout01_title span{
  font-size: 75%;
}

.layout01 .layout01_text {
  width: 70%;
  padding: 3%;
}

/* 2つ並びのレイアウト。最初(dt)にタイトル、画像がその下(dd)、画像の下に文章 */
.layout02 {
  margin: 0 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.layout02::after {
  display: block;
  clear: both;
  content: "";
}
.layout02 .layout02_box {
  width: 49%;
  margin: 0 2% 0 0;
  margin-bottom: 25px;
  padding: 4%;
  background-color: #f7f7f7;
}
.layout02 .layout02_box:nth-child(even) {
  margin-right: 0;
}
.layout02 .layout02_box .layout02_text {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: #1F2774;
}
.layout02 .layout02_text img{
  width: 100%;
  height: auto;
}
/* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章 */
.layout03 {
  margin: 0 0 15px;
}
.layout03 .layout03_box {
  display: flex;
  margin-bottom: 20px;
  background-color: #f7f7f7;
  padding: 2%;
}
.layout03 .layout03_title {
  width: 27%;
  padding: 2%;
  background-color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.layout03 .layout03_title img {
  width: 100%;
  height: auto;
}
.layout03 .layout03_text {
  width: 73%;
  padding: 1% 3%;
}

/* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章、タイトルと文章のエリア(dd)は背景色が別の色 */
.layout04 {
  margin: 0 0 15px;
}
.layout04 .layout04_box {
  display: flex;
  margin-bottom: 20px;
  background-color: #f7f7f7;
  padding: 2%;
}
.layout04 .layout04_title {
  width: 27%;
  padding-right: 2%;
  display: flex;
  align-items: center;
}
.layout04 .layout04_title img {
  width: 100%;
  height: auto;
}
.layout04 .layout04_text {
  width: 73%;
  padding: 3%;
  background-color: #fff;
}
/* 1つ並びで3列に区切られたレイアウト。画像が左、画像の下にタイトル、右に文章 */
.layout05 {
  margin: 0 0 15px;
}
.layout05 .layout05_box {
  display: flex;
  margin-bottom: 20px;
  background-color: #f7f7f7;
  padding: 2%;
}
.layout05 .layout05_title {
  padding: 2%;
  width: 25%;
  background-color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}
.layout05 .layout05_title img {
  width: 100%;
  padding-bottom: 10px;
  height: auto;
  display: block;
}
.layout05 .layout05_text1 {
  padding: 1% 3%;
  vertical-align: top;
}
.layout05 .layout05_text1:nth-child(2) {
  width: 40%;
}
.layout05 .layout05_text1:nth-child(3) {
  width: 40%;
  border-left: 1px solid #e2e2e2;
}
.layout05 .layout05_title h4{
  font-size: 18px;
  font-weight: bold;
}
.layout05 .layout05_text1 h5 {
  font-weight: bold;
  margin: 0 0 5px;
}
.layout05 .layout05_text1 h4 em,
.layout05 .layout05_text1 h5 em {
  margin-right: 10px;
  color: #BDA087;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: normal;
}
.layout05_text1 ul {
  margin-bottom: 15px;
}
.layout05 ul.list03 li{
  margin: 0;
}
/* 1つ並びで3列に区切られたレイアウト。左がタイトル、真ん中と右に文章 */
.layout06 {
  margin: 0 0 15px;
}
.layout06 .layout06_box {
  display: flex;
  padding-bottom: 5px;
  position: relative;
}
.layout06 .layout06_box:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid #ededed;
  content: "";
}
.layout06 .layout06_box:last-child:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid #f0f0f0;
  content: "";
}
.layout06 .layout06_title {
  width: 30%;
  padding: 0 3%;
  background-color: #f7f7f7;
  vertical-align: middle;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  font-size: 120%;
}
.layout06 .layout06_title h4{
  letter-spacing: 0.1em;
  color: #1F2774;
  font-weight: bold;
  text-align: center;
}
.layout06 .layout06_box:last-of-type {
  padding: 0;
}
/* 数字 */
.layout06 .layout06_title em {
  display: block;
  width: 100%;
  line-height: 1;
  margin: 0 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: 170%;
  font-weight: normal;
  color: #C3AF97;
}
.layout06 .layout06_text1 {
  padding: 2% 3%;
  vertical-align: top;
}
.layout06 .layout06_text1:nth-child(2) {
  width: 35%;
}
.layout06 .layout06_text1:nth-child(3) {
  width: 35%;
  border-left: 1px solid #e2e2e2;
}
.layout06 .layout06_text1 h5 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 5px;
}
/* 3つ並びのレイアウト。 */
.layout07 {
  margin: 0 0 15px;
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
}
.layout07::after {
  display: block;
  clear: both;
  content: "";
}
.layout07 .layout07_box {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 2%;
  padding: 3%;
  border-radius: 10px;
  background-color: #f7f7f7;
}
.layout07 .layout07_box:nth-child(3n) {
  margin-right: 0;
}
.layout07 .layout07_box .layout07_title {
  margin-bottom: 7px;
  padding-bottom: 7px;
  border-bottom: 1px dashed #ddd;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
}
.layout07 .layout07_box .layout07_title em {
  margin-right: 8px;
  font-size: 24px;
  font-family: 'Quicksand', sans-serif;
}
.layout07 .layout07_box .layout07_text {
  line-height: 1.5;
}
/* 3つ並びのレイアウト。矢印付き */
.layout08 {
  margin: 0 0 15px;
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
}
.layout08 .layout08_box {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
  padding: 3%;
  border-radius: 10px;
  background-color: #f7f7f7;
}
.layout08 .layout08_box:last-child {
  margin-right: 0;
}
.layout08 .layout08_box::before {
  position: absolute;
  right: 0px;
  left: 0;
  height: 7px;
  width: 7px;
  transform: rotate(135deg);
  background-color: transparent;
  border-top: 2px solid #1F2774;
  border-right: 2px solid #1F2774;
  content: "";
  bottom: -16px;
  margin: auto;
}
.layout08 .layout08_box:last-child::before {
  display: none;
}
.layout08 .layout08_box .layout08_title {
  margin-bottom: 7px;
  padding-bottom: 7px;
  border-bottom: 1px dashed #ddd;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
}
.layout08 .layout08_box .layout08_title em {
  margin-right: 8px;
  font-size: 24px;
  font-family: 'Quicksand', sans-serif;
}
.layout08 .layout08_box .layout08_text {
  line-height: 1.5;
}
/* 1つ並びで2列に区切られたレイアウト。画像が左、画像の下にタイトル、右に文章 */
.layout09 {
  margin: 0 0 15px;
}
.layout09 .layout09_box {
  display: flex;
  margin-bottom: 20px;
  background: #f7f7f7;
  padding: 2%;
}
.layout09 .layout09_title {
  padding: 2%;
  width: 27%;
  background-color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}
.layout09 .layout09_title img {
  width: 100%;
  padding-bottom: 10px;
  height: auto;
  display: block;
}
.layout09 .layout09_text1 {
  padding: 1% 3%;
  width: 73%;
  vertical-align: top;
}
.layout09 .layout09_title h4 {
  font-size: 18px;
  font-weight: bold;
}
.layout09 .layout09_text1 h5 {
  font-weight: bold;
  margin: 0 0 5px;
}
.layout09 .layout09_text1 h4 em,
.layout09 .layout09_text1 h5 em {
  margin-right: 10px;
  color: #71b4d7;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: normal;
}
.layout09_text1 ul {
  margin-bottom: 15px;
}
.layout09 ul.list03 li{
  margin: 0;
}
/* layout10 */
.layout10{
  position: relative;
}
.layout10 .flow_box{
  position: relative;
  display: flex;
  padding: 32px;
  background: #fff;
}
.layout10 .flow_box::before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px;
  margin: auto;
  width: 4px;
  height: calc(100% - 4px);
  border-right: #71b4d7 dotted 4px;
  box-sizing: border-box;
  content: "";
}
.layout10 .flow_box:first-child::before{
  top: 32px;
  bottom: auto;
  height: calc(100% - 34px);
}
.layout10 .flow_box:last-child::before{
  top: 2px;
  bottom: auto;
  height: 86px;
}
.layout10 .flow_box:nth-child(even){
  background: #dfebf5;
}
.layout10 .flow_box:nth-child(odd){
  background: #f7f8f9;
}
.layout10 .flow_box .number{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  margin-bottom: 0;
  margin-right: 4%;
  background: #1f2774;
  border-radius: 50%;
  line-height: 1;
  color: #fff;
  font-size: 28px;
}
.layout10 .flow_box .layout10_box{
  width: 90%;
}

.layout10 .flow_box .layout10_text .title{
  background: #1f2774;
  margin-top: 24px;
  padding: 12px 18px;
  border-radius: 6px;
  color: #fff;
  line-height: 1;
  font-size: 18px;
  letter-spacing: 0.12em;
}
.layout10 .flow_box .layout10_text .title span{
  position: relative;
}
.layout10 .flow_box .layout10_text .title span::after{
  display: inline-block;
  content: "|";
  margin: 0 12px;
}
.layout10 .flow_box .layout10_text .title2{
  padding-bottom: 2px;
  padding-top: 16px;
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 1px dashed rgba(35,24,21,0.4);
}
.layout10 .flow_box .layout10_text .list03{
  margin-top:8px;
}
.layout10 .flow_box .layout10_text .list03 li{
  margin-bottom: 0;
}
.layout10 .flow_box .layout10_text .list03 li::before{
  background-color: #1f2774;
  border: 1px solid #1f2774;
}

.layout10 .flow_box .layout10_text .list_column{
  display: flex;
  flex-wrap: wrap;
}
.layout10 .flow_box .layout10_text .list_column li{
  margin-right: 5%;
}

/* layout11 */
.layout11{
  position: relative;
}
.layout11_box{
  padding: 8px;
  background: #f7f7f7;
}
[class^="layout11_image"] img{
  width: 100%;
  height: auto;
}
[class^="layout11_text"]{
  margin-top: 8px;
}
[class^="layout11_text"] dl{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
[class^="layout11_text"] dl dt{
  background: #1F2774;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 12px;
  border: 1px solid #1F2774;
  width: 20%;
  margin-bottom: 2px;
}
[class^="layout11_text"] dl dd{
  padding: 12px;
  background: #fff;
  border: 1px solid #1F2774;
  width: 80%;
  margin-bottom: 2px;
}
[class^="layout11_text"] .desc{
  background: #fff;
  border: 1px solid #1F2774;
  padding: 16px;
}
[class^="layout11_text"] .desc p{
  margin-bottom: 0;
}
/* layout11 ver.1 */
.layout11_text01 dl dt{
  margin-left: 0;
}
/* layout11 ver.2 */
.layout11_image02{
  display: flex;
  justify-content: space-between;
}
.layout11_image02 span{
  position: relative;
  display: block;
  width: 47%;
}
.layout11_image02 span:last-child::before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: -32px;
  margin: auto;
  display: flex;
  align-items: center;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 24px;
  color: #1F2774;
  line-height: 1;
}
.layout11_text02 dl{
  width: 100%;
}
.layout11_text02 dl dt{
  margin-left: 2px;
  margin-bottom: 2px;
  width: 15%;
}
.layout11_text02 dl dt:nth-of-type(odd){
  margin-left: 0;
}
.layout11_text02 dl dd{
  width: calc(35% - 1px);
}
.layout11_text02 .desc{
  width: 100%;
}

/*注意書き*/
.caution {
  background:#f4f5fb;
  display: block;
  position: relative;
  padding: 25px;
  border-radius: 15px;
}
.caution span {
  width: 55px;
  height: 55px;
  background: #1F2774;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -15px;
  left: -5px;
  border-radius: 50%;
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  z-index: 2;
}
.caution span::before {
  position: absolute;
  width: 15px;
  height: 20px;
  bottom: -3px;
  right: -3px;
  margin: auto;
  background-color: #1F2774;
  z-index: 1;
  content: "";
}
.caution p:nth-of-type(1) {
  font-size: 18px;
  margin: 0 0 15px;
  padding: 0 0 0 40px;
  font-weight: 600;
  color: #1F2774;
}
/*==================================================================

  $table
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/
/* 診療時間（医院案内、アクセス共通） */
.footer_info_sche{
  width:506px;
}

.schedule table{
  width:100%;
}
.schedule p{
  margin-left:22px;
  margin-bottom:2px;
}
.schedule p strong{
  color:#1F2774;
}
.schedule p:last-child{
  margin-bottom:0;
}
.schedule_note li{
  display:block;
}

/*フッターの診療時間*/
.tb01{
  margin-bottom:12px;
  border-spacing: 0;
  border-collapse: collapse;
  white-space:nowrap;
}
.tb01 td,.tb01 th{
  border-bottom:1px solid #fff;
  vertical-align: middle;
}
.tb01 th{
  width: 30%;
  height: 50px;
  line-height:1;
  white-space:nowrap;
  text-align:center;

}
.tb01 td{
  width: 10%;
  text-align: center;
}

/* 下線のみのテーブル */
.tb02 {
  width: 100%;
  border-spacing: 0;
  margin-bottom: 12px;
}
.tb02 th {
  font-weight: bold;
  width: 26%;
  border-bottom: 1px solid #e0e0e0;
  padding: 5px 0;
}
.tb02 td {
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  padding: 5px 0;
}
/*本文中のテーブル*/
.tb03 {
  width: 100%;
  border-spacing: 1px;
  border-collapse: collapse;
}
.tb03 td,
.tb03 th {
  letter-spacing: 0.1em;
  text-align:center;
}
.tb03 th {
  width:286px;
  font-size:22px;
  background:#DD8140;
  color:#fff;
  border:1px solid #707070;
  line-height:50px;
}
.tb03 th span{
	font-size:16px;
}
.tb03 td {
  padding: 25px 13px;
  background-color: #ffffff;
  text-align: center;
  border: 1px solid #DD8140;
  line-height:28px;
  font-weight:bold;
}
.tb03 td img{
  width:70%;
  margin:0 auto;
}
.tb03 td small{
	font-size:14px;
	display:inline-block;
	margin:10px 0 0;
}
.tb03 tr td:first-child{
	width:60px;
	letter-spacing: 0.4em;
}
.tb03 tr:first-child td{
  padding:0;
}

/*==================================================================

  $box
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/
.box{
	position:relative;
	width:1080px;
	margin:0 auto;
}
.box1{
  position:relative;
  width:1080px;
  margin:0 auto;
  padding:0 0 50px;
}
.box2{
  width:1080px;
  margin:0 auto 80px;
}
.box3{
	width:900px;
	margin:0 auto;
  padding:0 0 50px;
}
.box4{
  position:relative;
  width:1000px;
  margin:0 auto;
}
.box p,.box2 p,.box3 p{
	letter-spacing: 0.1em;
}
.text {
  position:relative;
  margin-bottom:50px;
}
.text p {
  margin-bottom:1em;
  line-height:2;
}
.img_flex{
  display:flex;
  gap:40px;
}
.img_flex figure{
  width:550px;
}
.img_flex p{
  flex:1;
}
.tit_text{
  padding: 30px 0;
  margin-bottom: 20px;
}
.underline{
	position:relative;
  color:#ED7D31;
  font-weight:bold;
}
/* .underline em{
	position:relative;
} */
.underline em::before{
	position:absolute;
	left:0;
	bottom:-3px;
	z-index:-1;
	width:100%;
	height:13px;
	background:#FFE7D6;
	content:none;
}
.g-review{
  padding:10px 0 20px;
}
.g-review_container{
  display:flex;
  justify-content: center;
}
.g-review .g-review_wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  border:1px solid #EB9343;
  border-radius:50px;
  padding:0 20px 0 5px;
}
.g-review_btn a{
  display:flex;
  justify-content: center;
  align-items: center;
  width:100px;
  height:26px;
  font-size:12px;
  font-weight:bold;
  color:#EB9343;
  border:1px solid #EB9343;
  letter-spacing: 0;
  margin:0 0 0 10px;
}
.g-review .wp-gr{
  width:auto !important;
  padding:0 !important;
}
.g-review .wp-gr .grw-header-inner{
  padding:5px !important;
  margin:0 !important;
}
.g-review .wp-gr .grw-row{
  justify-content: center;
}
.g-review .wp-gr .wp-google-place{
  display:flex !important;
  align-items: center;
}
.g-review .wp-gr .wp-google-name{
  display:none !important;
}
.g-review .wp-gr .wp-google-right{
  display:flex !important;
  flex:1;
  width:auto !important;
}


/********************************
  .top_batch
*********************************/
.top_batch{
  padding:0 0 40px;
}
.batch_list{
  display:flex;
  gap:10px;
  justify-content: center;
  padding:32px 0 0;
}
.batch_list li{
  width:104px;
}

/********************************
  .top_contact
*********************************/
.top_latest_contact .box2{
  margin-bottom:59px; 
}

.top_contact_flex{
  display:flex;
  justify-content: center;
  align-items: center;
  gap:124px;
}
.top_contact_flex .tit01{
  font-size:26px;
  text-shadow:none;
  margin:0;
  padding:12px 0 0;
}
.contact_list{
  position:relative;
  width:650px;
}
.contact_list::before{
  position:absolute;
  bottom:0;
  left:-63px;
  width:1px;
  height:148px;
  background:#DD8140;
  content:"";
}
.contact_list li{
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size:16px;
  line-height:28px;
  padding:11px 0 11px 12px;
  border-bottom:1px solid #DD8140;
  letter-spacing: 0.1em;
}
.contact_list li span{
  margin-right: 15px;
  font-size:16px;
  letter-spacing: 0.05em;
}
.contact_list li small{
  display: inline-block;
  min-width:45px;
  font-size:14px;
  margin:0 0 0 10px;
}
.contact_list li em{
  margin-right: 5px;
  display:inline-block;
  padding:0 6px;
  margin:0 20px 0 0;
  font-style: normal;
  text-align:center;
  min-width:105px;
  border:1px solid #666;
  font-size:15px;
}



/********************************
  .top_feature
*********************************/

.top_feature{
	background:url("../images/top_feautre_bg.jpg");
	padding:80px 0 32px;
}
.top_feature .box1{
  padding:0 0 40px;
}
.top_feature_list{
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap:20px;
}
.top_feature_list li{
  position:relative;
  display:block;
  width:340px;
  text-align:center;
  color:#404040;
  transition:.2s;
}
.top_feature_list li img{
  border-radius:15px 15px 0 0;
}
.feature_info{
  padding:30px 20px;
  text-align:left;
  background:#FFF8DD;
  border-radius:0 0 15px 15px;
}
.feature_info h3{
  font-size:20px;
  letter-spacing: 0.1em;
  line-height:1.2;
  margin:0 0 10px;
  text-align:center;
  font-weight:bold;
}
.feature_info .btn03{
  margin:20px 0 0;
}


/********************************
  .top_price
*********************************/
.top_concept{
  position:relative;
  padding:80px 0 30px;
}
.top_concept::before{
  position:absolute;
  bottom:0;
  right:0;
  width:70%;
  height:calc(100% - 103px);
  background:url(../images/greeting_bg.jpg);
  content:"";
  z-index:-1;
  opacity: 0.4;
}
.concept_list{
  margin:50px 0 0;
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.concept_list li{
  position:relative;
  width:500px;
  margin:0 auto 100px 0;
  border-radius:5px;
  padding:0 40px 0 0;
}
.concept_list li figure{
  width:500px;
  height:300px;
  overflow: hidden;
  border-radius:10px;
}
.concept_list li figure img{
  width:100%;
  border-radius: 5px;
}
.concept_text{
  position:relative;
  width:500px;
  background:#fff;
  padding:30px;
  margin:-20px 0 0 20px;
  border-radius:10px;
}
.concept_text::before{
  position:absolute;
  bottom:-20px;
  left:-15px;
  width:100%;
  height:100%;
  border:2px solid #f7c5a1;
  border-radius:4px;
  content:"";
  z-index: -1;
}
.concept_text .btn03{
  margin:17px 0 0;
}
.concept_list li:nth-child(even) .concept_text::before{
  top:auto;
  left:auto;
  bottom:-20px;
  right:-15px;
}
.concept_list h3{
  font-size:24px;
  font-weight:700;
  font-family: 'Noto Sans JP', sans-serif;
  margin:0 0 15px;
  letter-spacing: 0.1em;
}

/********************************
  .top_price
*********************************/
.top_price{
  padding:128px 0 100px;
  background:url(../images/price_bg.jpg);
  background-size:cover;
}
.top_price_info{
  letter-spacing: 0.1em;
  line-height:28px;
  text-align:center;
  margin:0 0 35px;
}
.top_price_info p{
  margin:0 0 20px;
}
.top_price_plan{
  display:flex;
  justify-content: space-between;
  padding:0 15px;
}
.top_price_item{
  display:block;
  position:relative;
  width:562px;
  height:355px;
  display:flex;
  align-items: center;
  z-index:1;
  color:#fff;
  transition: .4s;
}
.top_price_item:hover {
  opacity:0.7;
}
.top_price_item:hover img{
  -webkit-transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.price_text{
  position:relative;
  width:288px;
  height:284px;
  padding:40px 0 0;
  z-index:1;
}
.price_text::before{
  position:absolute;
  top:0;
  width:288px;
  height:284px;
  background:#DD8140;
  content:"";
  z-index:-1;
}
.top_price_item:nth-child(2) .price_text::before{
  background:#BAAB6F;
}
.price_text h3{
  font-size:28px;
  text-align:center;
  line-height:34px;
  margin:0 0 25px;
  padding:0 50px 0 0;
  color:#fff;
  letter-spacing: 0.15em;
}
.price_text h3 span{
 font-size:40px;
}
.price_text_box{
  position:relative;
  width:260px;
  padding:10px 0;
  background:#fff;
  margin:0 0 0 24px;
}
.price_text p{
  font-size:28px;
  color:#BF2500;
  letter-spacing: 0;
  line-height:1;
  text-align:center;
}
.price_text p span{
  font-size:80px;
}
.top_price_item .price_text p .tax{
  position:absolute;
  right:29px;
  top:35px;
  font-size:16px;
  letter-spacing: 0;
  color:#BF2500;
}
.price_text p small{
  font-size:14px;
  display:block;
  letter-spacing: 0.1em;
	color:#404040;
}
.top_price_item figure{
  position:absolute;
  right:0;
  z-index:-1;
  width:400px;
  height:356px;
  overflow: hidden;
}


/********************************
  .top_work
*********************************/
.top_work{
  padding:67px 0 16px;
}

.top_work_list{
  display:flex;
  justify-content: center;
  flex-wrap: wrap;
  gap:30px 15px;
  margin:54px 0 80px;
  padding:0 15px;
}
.top_work_item{
  position:relative;
  width:48%;
}
.top_work_item a{
  display:block;
  width:100%;
  color:#404040;
  transition:.4s;
}
.top_work_item a:hover{
  /* box-shadow:0 8px 20px rgba(0,0,0,0.18); */
  transform:translateY(-5px);
}
.top_work_item .read_more{
  position:relative;
  font-size:14px;
  text-align:right;
  padding:0 20px 0 0;
}
.top_work_item .read_more::before{
  position:absolute;
  top:0;
  bottom:2px;
  right:0;
  margin:auto;
  width: 13px;
  height: 11px;
  background:url(../images/double_arr.png);
  background-size:cover;
  transform: rotate(-90deg);
  content:"";
}
.top_work_img{
  position:relative;
  margin:0 0 10px;
  display:flex;
  gap:5px;
}
.top_work_img figure{
  height:220px;
  width:100%;
}
.top_work_img figure img{
	width: 100%;
	height: 220px;
	object-fit: cover;
	object-position: center;
  border-radius:5px;
}
.top_work_info{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
}
.top_work_info li{
  border:1px solid #DD8140;
  padding:7px 10px;
  line-height:1;
  font-size:16px;
  letter-spacing: 0.05em;
  border-radius:5px;
}
.top_work_info li.date{
  padding:7px 0;
  border:none;
}
.top_work_info li.work_conatct{
  color:#fff;
  background:#24408E;
  letter-spacing: 0.05em;
  border:none;
}
.top_work_info li.work_conatct.flye{
  background:#ED873C;
}
.top_work_info li.work_conatct.tel{
  background:#D75F5F;
}
.top_work_info li.work_conatct.friend{
  background:#31a337;
}
.top_work_info li.work_conatct.site{
  background:#c3bd33;
}
.work_text{
  margin:15px 0 0;
  font-size:16px;
  line-height:26px;
}
.cate_list{
  display:flex;
  flex-direction: column;
  gap:20px;
  padding:0 50px;
  margin:0 0 74px
}
.cate_block{
  display:block;
}
.cate_block .cate_col:first-child{
  margin:0 0 20px;
}
.cate_col{
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cate_item{
  position:relative;
  width:430px;
  background:#fffaf6;
  padding:20px 30px;
  border-radius:15px;
  display:flex;
  align-items: flex-start;
  gap:30px;
}
.cate_item:nth-child(even){
  width:530px;
}
.cate_item .cate_tit{
  position:relative;
  font-size:20px;
  margin:0 0 10px;
  display:table;
  font-family: 'Noto Sans JP', sans-serif;
  text-align:center;
}
.cate_item .cate_tit em{
  display:block;
  font-size:14px;
  font-weight:700;
}
.cate_item ul{
  display:flex;
  flex-wrap: wrap;
  gap:10px;
  flex:1;
}
.cate_item li a{
  position:relative;
  display:inline-block;
  border:1px solid #DD8140;
  border-radius:5px;
  min-width:120px;
  font-size:15px;
  padding:2px 9px;
  transition:.2s;
  font-weight:700;
  font-family: 'Noto Sans JP', sans-serif;
}
.cate_item.cate_color li a{
  display:flex;
  align-items: center;
  font-size:15px;
  min-width:150px;
}
.cate_item.cate_color li a em{
  display:inline-block;
  width:20px;
  height:20px;
  background:#000;
  margin:0 9px 0 0;
  border-radius:5px;
}
.cate_item.cate_color li a::before{
  content:none;
}
.cate_item.cate_color li.cl-green a em{
  background:#78C152;
}
.cate_item.cate_color li.cl-double a em{
  background:linear-gradient(135deg,#F1EDDD 50%,#705E5E 50%);
}
.cate_item.cate_color li.cl-white a em{
  background:#F1EDDD;
}
.cate_item.cate_color li.cl-brown a em{
  background:#705E5E;
}
.cate_item.cate_color li.cl-black a em{
  background:#333;
}
.cate_item.cate_color li.cl-yellow a em{
  background:#ED873C;
}
.cate_item.cate_color li.cl-blue a em{
  background:#417BD6;
}
.cate_item.cate_color li.cl-pink a em{
  background:#D75F5F;
}
.cate_item li a:hover{
  background:#DD8140;
  color:#fff;
}
.cate_item.cate_build li a{
  padding:4px 56px 4px 9px;
}
.top_work .btn01 a{
  margin:0 auto;
}
/********************************
  .top_banner
*********************************/
.top_banner_list{
  width:100%;
  display:flex;
}
.top_banner_list li{
  width:100%;
}
.top_banner_list li a{
  position:relative;
  width:100%;
  display:flex;
  height:13vw;
  border-top:4px solid #888;
  border-left:4px solid #888;
  border-bottom:4px solid #888;
  display:flex;
  justify-content: center;
  align-items: center;
  font-size:1.3vw;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  z-index:1;
}
.top_banner_list li:first-child a{
  border-left:none;
}
.top_banner_list li:nth-child(even) a{
  background:#f0c09d;
}
.top_banner_list li a:hover{
  color:#fff;
  transition: .6s;
}
.top_banner_list li a::before{
  position:absolute;
  bottom:0;
  right:0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 60px 60px;
  border-color: transparent transparent #DD8140 transparent;
  content:"";
  z-index:-1;
  transition: .4s;
}
.top_banner_list li a::after {
  position: absolute;
  bottom: 8px;
  right: 8px;
  margin: auto;
  width: 20px;
  height: 20px;
  background: url(../images/arr_or.png);
  background-size: cover;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  content: "";
}
.top_banner_list li a:hover::before{
  width:100%;
  height:100%;
  background:#DD8140;
}

/********************************
  .top_client
*********************************/
.top_voice{
  position:relative;
  padding:64px 0 10px;
  z-index:1;
}
.top_voice::before{
  position:absolute;
  top:0;
  left:0;
  width:50%;
  height:100%;
  background:#fbf9f3;
  z-index:-1;
  content:"";
}
.top_voice:after{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  width:1180px;
  border:4px solid #fbf9f3;
  height:76%;
  content:"";
  z-index:-1;
}
.top_voice .tit_en{
  text-align:left;
}
.top_voice .tit01{
  margin:0 0 30px;
}
.top_voice_list{
  position:relative;
  display:flex;
  justify-content: space-between;
  margin:44px 0 48px;
}
.top_voice_list .top_voice_item:nth-child(4){
  display:none;
}
.voice_cate{
  /* position:absolute;
  left:0;
  top:0; */
  display:flex;
  gap:10px;
  justify-content: flex-start;
  margin:0 0 10px;
}
.voice_cate li{
  width:80px;
  text-align:center;
  font-weight:bold;
  color:#fff;
  background:#d1a535;
}
.top_voice_item a{
  display: block;
  position:relative;
  width:340px;
  color:#404040;
  transition:.4s;
}
.voice_point{
  position:absolute;
  top:-35px;
  right:-5px;
  text-align:center;
  width:110px;
  height:110px;
  border-radius:55px;
  border:3px solid #BF2500;
  line-height:32px;
  padding:15px 0 0;
  letter-spacing: 0;
  font-weight:bold;
  background:#fff;
  box-shadow:0 8px 15px rgba(0,0,0,0.1);
}
.voice_point span {
  display:block;
  font-size:30px;
  font-weight:normal;
  color:#BF2500;
  letter-spacing: 0;
}
.top_voice_item a figure{
  width:100%;
  height:240px;
  overflow: hidden;
  margin:0 0 10px;
}
.voice_text{
  font-size:17px;
}
.voice_text p{
  line-height:1.5;
}
.voice_tit{
  gap:0 20px;
  margin:0 0 5px;
}
.voice_tit h3{
  font-size:24px;
}
.voice_tit ul{
  display:flex;
  flex-wrap: wrap;
  gap:10px;
}
.voice_tit .cate{
  font-size:16px;
  border:1px solid #333;
  line-height:1;
  padding:8px 12px;
}
.top_voice .btn01 a{
  margin:0 auto;
}


/********************************
  .top_soudan
*********************************/
.top_soudan{
  position:relative;
  padding:180px 0 30px;
}
.top_soudan::before{
  position:absolute;
  top:143.8px;
  left:0;
  width:100%;
  height:4px;
  background:#192864;
  content:"";
}
.top_soudan::after{
  position:absolute;
  top:40px;
  right:calc(50% - 500px);
  width:171px;
  height:108px;
  background:url("../images/heart_item01.jpg");
  content:"";
}
.soudan_box{
  width:960px;
  padding:32px 46px 37px;
  margin:40px auto 0;
  box-shadow:0 8px 30px rgba(0,0,0,0.1);
  background:url("../images/top_soudan_bg.jpg");
  display:block;
  transition: .2s;
}
.soudan_box p{
  font-size:22px;
  line-height:45px;
  color:#DD8140;
  letter-spacing: 0.1em;
  margin:0 0 63px;
}
.soudan_box .soudan_btn{
  position:relative;
  display:inline-block;
  width:182px;
  padding:6px 15px;
  letter-spacing:0.1em;
  border-bottom:1px solid #ED7D31;
  color:#ED7D31;
  font-size:18px;
  margin:0;
  line-height:30px;
}
.soudan_box .soudan_btn::before{
  position:absolute;
  top:0;
  bottom:0;
  margin:auto;
  right:20px;
  width:50px;
  height:6px;
  background:url("../images/arr_icon08.png");
  background-size: cover;
  background-position:right;
  content:"";
  transition:.4s;
}
.soudan_box:hover{
  opacity:0.7;
}

/********************************
  .top_greeting
*********************************/
.top_greeting{
  position:relative;
  padding:80px 0 40px;
  background:#F4F0EC;
}
.top_greeting::before{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:50%;
  background:#f7e8d9;
  content:"";
}
.top_greeting_flex{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding:30px 50px;
  background:#F4F0EC;
  border:4px solid #f7e8d9;
}
.top_greeting_text{
  width:500px;
}
.top_greeting_text h3{
  font-size:26px;
  display:table;
  color:#BF4F00;
  letter-spacing: 0.1em;
  margin:0 0 31px;
  font-family: 'Noto Sans JP', sans-serif;
}
.top_greeting_text p{
  margin:0 0 21px;
  line-height:36px;
  letter-spacing: 0.08em;
  font-size:17px;
}
.top_greeting_img{
  position:relative;
  margin:35px 0 0;
  width:400px;
}
.top_greeting_img .name{
  text-align:center;
  margin:auto;
  width:268px;
  height:110px;
  padding:14px 0 0;
  text-align:center;
  letter-spacing: 0.2em;
  z-index:1;
  font-family: 'Noto Sans JP', sans-serif;
}
.top_greeting_img .name span{
  font-size:26px;
  display:block;
  line-height:1.7;
}
.top_greeting_img .name small{
  font-size:16px;
  margin:0 20px 0 0;
}
.top_greeting .btn01 a{
  margin:20px auto 0;
}


/********************************
  .top_info
*********************************/
.top_info{
  background:url(../images/top_blog_bg.jpg);;
  padding:80px 0 30px;
}
.top_info_flex{
  display:flex;
  gap:70px;
}
.info_banner li{
  width:480px;
  margin:0 0 10px;
}
.info_banner li:last-child{
  margin:0;
}
.info_banner li a{
  position:relative;
  display:flex;
  align-items:center;
  gap:30px;
  width:100%;
  height:100px;
  overflow: hidden;
  background:#fff;
  border-radius:20px 0 20px 0;
}
.info_banner li a::before{
  position:absolute;
  top:0;
  right:0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 14px 14px 0;
  border-color: transparent #b19854 transparent transparent;
  content:"";
}
.info_banner li a p{
  line-height:28px;
  letter-spacing: 0.1em;
  font-size:18px;
}
.info_banner li a img{
  width:240px;
}

.info_blog .tit_en{
  text-align:left;
}
.info_blog .tit01{
  margin:0 0 30px;
}
.blog_wrap{
  width:530px;
  height:460px;
  overflow-y: scroll;
  background:#f8f6f3;
  padding:20px;
  margin:0 0 22px;
  border-radius:20px;
}
.blog_wrap li{
  margin:0 0 20px;
  padding:10px;
  border-bottom:2px dotted #ddd;
  font-size:16px;
  line-height:30px;
}
.blog_wrap li em{
  display:inline-block;
  width:200px;
  margin:0 15px 0 0;
}
.blog_wrap li span{
  min-width:110px;
  text-align:center;
}
.info_blog .btn01 a{
  margin:0 0 0 auto;
}


/********************************
  .banner（下層）
*********************************/
.footer_banner{
	padding:80px 0;
	background:url("../images/top_feautre_bg.jpg");
}
.banner_list{
  display:flex;
  justify-content: center;
  flex-wrap: wrap;
  gap:30px;
  width:1200px;
  margin:0 auto;
}

/********************************
  .top_blog
*********************************/
.top_blog{
  padding:0 0 20px;
}
.top_blog .tit01{
  margin:0 0 50px;
}
.top_blog .btn01 a{
  margin:0 auto;
}
.blog_list{
  display:flex;
  justify-content: space-between;
  margin:0 0 50px;
  padding:0 15px;
}
.blog_list li a{
  display:block;
  width:270px;
  height:100%;
  padding:10px 10px 15px;
  transition:.4s;
  color:#404040;
  border-radius:10px;
}
.blog_list li a:hover{
  box-shadow:0 8px 20px rgba(0,0,0,0.18);
  transform:translateY(-5px);
}
.blog_list li figure{
  position:relative;
  margin:0 0 10px;
  width:100%;
}
.blog_list li figure img{
  width: 100%;
	height: 200px;
	object-fit: cover;
	object-position: center;
  border-radius:10px;
}
.blog_list li figure em{
  position:absolute;
  bottom:0;
  right:0;
  min-width:110px;
  line-height:30px;
  background:#fff;
  text-align:center;
  padding:0 5px;
  color:#fff;
}
.blog_info{
  font-size:16px;
  line-height:30px;
  letter-spacing: 0.1em;
  margin:0 0 10px;
}
.blog_info em{
  display:inline-block;
  min-width:100px;
  border:1px solid #666;
  text-align:center;
  letter-spacing: 0.05em;
}
.blog_tit{
  color:#DD8140;
  line-height:1.5;
}

/*==================================================================

  $about （下層）

==================================================================*/
.greeting{
  padding:0 0 20px;
}
.greeting .top_greeting_flex{
  align-items: flex-start;
}
.greeting .greeting_img01{
  width:auto;
}
.greeting .greeting_img02{
  top:auto;
  right:100px;
  bottom:-134px;
  width:458px;
  box-shadow:-15px 15px 0 #D9DFE3;
  z-index:0;
}
.greeting_img01 img{
  border-radius:20px;
}

/*==================================================================

  $service （下層）

==================================================================*/
.service_item{
	display:flex;	
	justify-content: space-between;
	margin:0 0 40px;
}
.service_item .tit01{
	display:table;
    margin:0 auto 50px 0;
}
.service_text{
  width:525px;
}
.service_text h3{
	font-size:26px;
  letter-spacing: 0.1em;
  line-height:40px;
  margin:0 0 35px;
}
.service_text p{
	line-height:36px;
  letter-spacing: 0.1em;
}
.service_text .btn03{
  margin:20px 0 0;
}
.service_img figure{
	width:450px;
}


.service_check{
  display:flex;
  justify-content: center;
  flex-wrap: wrap;
  gap:12px;
}
.service_check li{
  width:260px;
  background:#FFF8DD;
  padding:20px;
  border-radius:10px;
}
.service_check li h3{
  font-size:18px;
  margin:0 0 10px;
  font-weight:bold;
  text-align: center;
}
.service_check li p{
  line-height:1.5;
  font-size:14px;
}
.service_check li figure{
  /* margin:0 0 20px; */
}
.service_check li img{
  border-radius:8px;
}

.service_reason li{
  display:flex;
  margin:0 0 60px;
}
.service_reason li figure{
  width:350px;
}
.service_reason_info{
  flex:1;
}
.service_reason_info h3{
  font-size:26px;
  font-weight:bold;
  line-height:60px;
  margin:0 0 30px;
}
.service_reason_info h3 span{
  display:inline-block;
  width:60px;
  line-height:60px;
  background:#DC803F;
  text-align:center;
  color:#fff;
  margin:0 25px 0 0;
}
.service_reason_info .btn03{
  margin:20px 0 0;
}


.paint_sign{
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap:30px 0;
}
.paint_sign li{
  width:32%;
}
.paint_sign li img{
  width:100%;
}



.caulking_work_list{
  display:flex;
  justify-content: center;
  gap:40px;
  margin:0 0 40px;
}
.caulking_work_item{
  width:380px;
}
.caulking_work_img {
  display:flex;
  margin:0 0 15px;
}
.caulking_work_img li{
  width:50%;
}
.caulking_work_img li p{
  color:#fff;
  font-size:16px;
  letter-spacing: 0.1em;
  font-weight:bold;
  line-height:30px;
  background:#575757;
  text-align:center;
}
.caulking_work_img li:nth-child(2) p{
  background:#ff6600;
}
.caulking_work_item h3{
  font-size:20px;
  line-height:1.5;
  font-weight:bold;
}

/*==================================================================

  $about （下層）

==================================================================*/
.greeting .top_greeting_img .name{
  bottom:-190px;
	height:auto;
}

.staff{
  padding:0 0 20px;
}
.staff_list{
  display:flex;
  justify-content: space-between;
}
.staff_item{
  width:19%;
}
.staff_img{
  width:100%;
  margin:0 0 15px;
}
.staff_name{
  font-size:16px;
  font-weight:bold;
  border-bottom:1px solid #DD8140;
}

.profile_list dl{
  display:flex;
  align-items: flex-start;
  padding:0 60px;
}
.profile_list dt{
  font-size:24px;
  border-right:1px solid #DD8140;
  width:300px;
  text-align:center;
  letter-spacing: 0.1em;
  padding:35px 0;
  height:100%;
}
.profile_list dd{
  font-size:20px;
  flex:1;
  padding:35px 0 35px 80px;
  border-left:1px solid #DD8140;
}

.profile_tb{
  width:1080px;
  margin:0 auto;
}
.profile_tb tr{
  border-bottom:1px solid #eee;
}
.profile_tb th{
  font-size:18px;
  /* border-right:1px solid #DD8140; */
  width:300px;
  text-align:center;
  letter-spacing: 0.1em;
  padding:15px 0;
  height:100%;
  vertical-align: top;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}
.profile_tb td{
  font-size:18px;
  width:780px;
  padding:15px 0 15px 80px;
  letter-spacing: 0.1em;
}


/*==================================================================

  $works （下層）

==================================================================*/
.works .cate_more_btn{
	width:100%;
	line-height:60px;
	border:1px solid #DD8140;
	text-align:center;
	font-size:20px;
	letter-spacing: 0;
  cursor: pointer;
  border-radius:10px;
  background:#DD8140;
  color:#fff;
}
.works .top_work_list{
	gap:60px 30px;
	margin:0 0 50px;
  padding:0;
}
.works .top_work_list .top_work_item:nth-child(4){
  display:block;
}
.top_work_img .work_contact{
  position:absolute;
  top:0;
  left:0;
  color:#fff;
  background:#dd8140;
  letter-spacing: 0.05em;
  border:none;
  font-size:14px;
  letter-spacing: 0.1em;
  padding:2px 7px;
  border-radius:5px;
}
.top_work_img .work_conatct.flye{
  background:#ED873C;
}
.top_work_img .work_conatct.tel{
  background:#D75F5F;
}
.top_work_img .work_conatct.friend{
  background:#57b157;
}
.top_work_img .work_conatct.site{
  background:#c3bd33;
}


/*==================================================================

  $works-item （下層）

==================================================================*/
.works_item_img{
	position:relative;
	display:flex;
	justify-content: space-between;
	margin:0 0 80px;
  gap:80px;
}
.works_item_img::before{
	position:absolute;
	right:0;
	left:0;
	top:0;
	bottom:0;
	margin:auto;
	width: 0;
  height: 0;
  border-style: solid;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid #555555;
  border-right: 0;
	content:"";
}
.works_item_img div{
  width:100%;
}
.works_item_img p{
	font-size:22px;
	line-height:30px;
	color:#fff;
	text-align:center;
}
.work_before p{
	background:#747474;
}
.work_before figure{
   overflow: hidden;
   background-color: #eee;
}
.work_before figure img{
   max-height: 320px;
   margin: 0 auto;
   display: block;
}
.work_after p{
	background:#BF4F00;
}
.work_after figure{
   overflow: hidden;
   background-color: #eee;
}
.work_after figure img{
   max-height: 320px;
   margin: 0 auto;
   display: block;
}
.works_item_img a{
	width:430px;
  display: inline-block;
  overflow: hidden;
}
.works_item_img a:hover img{
  -webkit-transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0.7;
}
.works_text{
  display:flex;
  gap:40px;
  margin:0 0 40px;
}
.works_text_box{
  width:100%;
	position:relative;
}
.works_text_box h3{
  padding:0 0 10px;
	margin:0 0 20px;
	text-align:center;
	font-size:28px;
	letter-spacing: 0.1em;
	text-shadow:8px 8px 6px rgba(0,0,0,0.26);
	color:#DD8140;
  border-bottom:1px solid rgb(175, 175, 175);
}
.works_text_box p{
  font-size:15px;
	line-height:30px;
	letter-spacing: 0.1em;
}
.works_info_box{
	margin:60px 0;
  padding:50px 80px 80px;
  background:#DEEBF7;
}
.works_info_box h3{
	font-size:28px;
	text-align:center;
	letter-spacing: 0.1em;
	color:#DD8140;
  margin:0 0 30px;
}
.works_item_info{
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
	border-bottom:1px solid #c7c7c7;
  background:#fff;
}
.works_item_info dl{
	width:50%;
	display:flex;
	align-items: center;
	padding:8px 0;
	border-bottom:1px solid #c7c7c7;
}
.works_item_info dl:nth-child(1),.works_item_info dl:nth-child(2){
	/* border-top:1px solid #DD8140; */
}
.works_item_info dl:nth-child(5),.works_item_info dl:last-child{
  border:none;
}
.works_item_info dt{
	width:130px;
	line-height:60px;
	text-align:left;
	font-size:16px;
	letter-spacing: 0.05em;
  padding:0 20px;
}
.works_item_info dd{
	letter-spacing: 0.05em;
  font-size:16px;
  padding:0 30px 0 0;
  flex:1;
}
.other_works_list{
	margin:0 0 60px;
}
.other_works_item{
	margin:0 0 40px;
}
.other_works_item h3{
	position:relative;
	padding:0 0 0 7px;
	margin:0 0 20px;
	font-size:26px;
	line-height:1;
	letter-spacing: 0.1em;
	color:#DD8140;
	border-left:4px solid #DD8140;
}
.other_img{
	position:relative;
	display:flex;
	justify-content: space-between;
  gap:80px;
}
.other_img::before{
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
  margin:auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid #555555;
  border-right: 0;
	content:"";
}
.other_img div{
	position:relative;
  width:100%;
}
.other_img p{
	position:absolute;
	top:0;
	left:0;
	width:130px;
	line-height:40px;
	color:#fff;
	text-align:center;
	font-size:24px;
}
.other_before p{
	background:#747474;
}
.other_after p{
	background:#BF4F00;
}
.other_img figure{
  overflow: hidden;
  background-color: #eee;
}
.other_img figure img{
  max-height: 320px;
  margin: 0 auto;
  display: block;
}
.other_img a{
	width:430px;
  display: inline-block;
	text-align:center;
	background:#ddd;
	overflow: hidden;
  height:280px;
  overflow: hidden;
}
.other_img a img{
	margin:0 auto;
	display:block;
}


/*==================================================================

  $記事ボタン （下層）

==================================================================*/


.post_link01{
  display:flex;
  justify-content: center;
	gap:35px;
}

.post_link01 a{
	position:relative;
	display:inline-block;
	padding:18px 40px;
	background:#BF4F00;
	color:#fff;
	font-size:19px;
	line-height:1;
	letter-spacing: 0.1em;
}
.post_link01 a::before{
	position:absolute;
	top:5px;
	left:5px;
	width:100%;
	height:100%;
	border:1px solid #BF4F00;
	content:"";
}

.post_link02{
  display:flex;
  justify-content: center;
  gap:16px;
}

.post_link02 a{
	position:relative;
	display:inline-block;
	padding:17px 37px;
	background:#DD8140;
	border:1px solid #DD8140;
	color:#fff;
	font-size:19px;
	line-height:1;
	letter-spacing: 0.1em;
}



/*==================================================================

  $soudan （下層）

==================================================================*/
.soudan_text{
  margin:0 0 40px;
}
.soudan_text p{
	margin:0 0 20px;
	line-height:40px;
}
.soudan_form_box {
	width:840px;
	background:#DEEBF7;
	margin:0 auto;
  text-align:center;
  padding:30px 120px 40px;
  letter-spacing: 0.1em;
}
.soudan_form_box h3{
  font-size:24px;
  color:#DD8140;
  margin:10px 0 0;
}
.soudan_form{
  text-align:left;
  margin:40px 0 0;
}
.soudan_form li{
  margin:0 0 15px;
}
.soudan_form input[type="text"]{
  width:100%;
  height:60px;
  font-size:18px;
  letter-spacing: 0.1em;
  padding:0 30px;
  border:1px solid #DD8140;
  border-radius:0;
}
.soudan_form #input::placeholder{
  color:rgb(126, 126, 126) !important;
}
.soudan_form input[type="file"]{
  font-size:18px;
  letter-spacing: 0.1em;
}
.soudan_form textarea{
  width:100%;
  padding:20px 30px;
  font-size:18px;
  letter-spacing: 0.1em;
  font-weight:normal;
  height:200px;
  border:1px solid #DD8140;
  border-radius:0;
  max-width:100%;
}
.soudan_form #textarea::placeholder{
  color:rgb(126, 126, 126) !important;
}
.soudan_form .submit_btn{
	position:relative;
	width:300px;
	margin:25px auto 0;
}
.soudan_form .submit_btn::before{
  position:absolute;
  left:5px;
  top:5px;
  width:100%;
  height:100%;
  border:1px solid #BF4F00;
  content:"";
  transition:.4s;
}
.soudan_form .submit_btn:hover::before{
  position:absolute;
  left:0px;
  top:0px;
}
.soudan_form .submit_btn input[type="submit"] {
  display: inline-block;
  position: relative;
  width:100%;
  height:70px;
  line-height: 1;
  border: 1px solid #BF4F00;
  text-align: center;
  color: #fff;
  transition: ease-in-out 0.1s;
  background:#BF4F00;
  font-size:17px;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius:0;
  -webkit-appearance: none;
}
.soudan_form .submit_btn input[type="submit"]:hover{
  color:#BF4F00;
  background:#EFEFEF;
}



.search_sec{
	position:relative;
	padding:200px 0 0;
}
.search_sec::before{
  position:absolute;
  top:143.8px;
  left:calc((100% - 100vw) / 2);
  width:100vw;
  height:4px;
  background:#192864;
  content:"";
}
@media(max-width:1240px){
.search_sec::before{
  left:-50px;
  min-width:1300px;
  content:"";
}	
}
.search_sec::after{
  position:absolute;
  top:40px;
  right:calc(50% - 500px);
  width:171px;
  height:108px;
  background:url("../images/heart_item01.jpg");
  content:"";
}
.search_box{
	width:790px;
	margin:0 auto 60px;
	display: flex;
	justify-content: space-between;
}
.search_box input[type="text"]{
	width:700px;
	height:46px;
	border-radius:0;
	border:1px solid #DD8140;
	padding:0 10px;
	font-size:18px;
}
.search_box input[type="submit"]{
	width:80px;
	height:46px;
	border-radius:0;
	font-size:26px;
	color:#fff;
	letter-spacing: 0.1em;
	background:#DD8140;
	border:none;
  -webkit-appearance: none;
  border-radius: 0;
}
.soudan_cate{
	width:900px;
	margin:0 auto 50px;
}
.soudan_cate h3{
	font-size:28px;
	color:#DD8140;
	margin:0 0 20px;
}
.soudan_cate_list{
	display:flex;
	flex-wrap: wrap;
	gap:20px;
}
.soudan_cate_list a{
	position:relative;
	padding:0 75px 0 11px;
	line-height:40px;
	border:1px solid #DD8140;
	display: inline-block;
	color:#404040;
	transition:.2s;
}
.soudan_cate_list a:hover{
	background:#DD8140;
	color:#fff;
}
.soudan_cate_list a::before{
	position:absolute;
	top:0;
	bottom:0;
	right:20px;
	margin:auto;
	width:33px;
	height:4px;
	background:url("../images/arr_icon02.png");
	transition:.2s;
	content:"";
}
.soudan_cate_list a:hover::before{
	-webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.ranking{
	padding:50px 0 10px;
	margin:0 auto 75px;
	background:#DEEBF7;
  width:900px;
}
.ranking_tit{
  position:relative;
	text-align:center;
	color:#DD8140;
	font-size:28px;
	margin:0 auto 40px;
	letter-spacing: 0.1em;
  display:table;
  font-weight:bold;
}
.ranking_tit::before{
  position:absolute;
  top:0;
  bottom:0;
  left:-28px;
  margin:auto;
  font-size:32px;
  content: "\005C\005C";
  font-family: arial;
  line-height:1.4;
}
.ranking_tit::after{
  position:absolute;
  top:0;
  bottom:0;
  right:-28px;
  margin:auto;
  font-size:32px;
  content: "//";
  font-family: arial;
  line-height:1.4;
}
.soudan_list ul{
	width:820px;
	margin:0 auto;
}
.soudan_list ul li{
  position:relative;
	width:100%;
	margin:0 0 50px;
  padding:0 0 40px;
}
.soudan_list .soudan_tit{
	position:relative;
	margin:0;
}
.soudan_list .soudan_tit h3{
	position:relative;
	padding:3px 150px 7px 17px;
	font-size:17px;
	line-height:1;
	letter-spacing: 0.14em;
	border-bottom:1px solid #c3c3c3;
	margin:0 0 10px;
  font-family: メイリオ, Meiryo,"游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight:bold;
}
.soudan_list .soudan_tit h3::before{
	position:absolute;
	left:0;
	top:0;
	bottom:3px;
	margin:auto;
	width:8px;
	height:34px;
	background:#DD8140;
	content:"";
}
.soudan_content_text{
	/* display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  text-overflow: ellipsis;
	overflow: hidden; */
}
.soudan_content_text{
	/* display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  text-overflow: ellipsis;
	overflow: hidden; */
}
.soudan_list .soudan_tit p{
	font-size:17px;
	line-height:36px;
	letter-spacing: 0.1em;
}
.soudan_tit .soudan_content_text p:not(:nth-child(-n+1)){
  display:none;
}
.soudan_tit .soudan_content_text p:first-child{
  max-height:72px;
  overflow: hidden;
}
.soudan_tit.open .soudan_content_text p:not(:nth-child(-n+1)){
  display:block;
}
.soudan_tit .soudan_content_text p img{
  width:auto;
  height:243px;
}
.soudan_tit .soudan_content_text.has p{
  height:269px;
}
.soudan_tit .soudan_content_text p:first-child:has(>img){
  max-height:269px;
}
.soudan_tit .soudan_content_text p:nth-child(2):has(>img){
  display:block;
}
/* ::-webkit-full-page-media, :future, :root .soudan_content_text {
  white-space:pre-wrap;
} */
.soudan_tit.open .soudan_content_text{
  -webkit-line-clamp:inherit;
}
.soudan_list .soudan_tit .view{
	position:absolute;
	top:8px;
	right:0;
  font-size:15px;
  line-height:1;
}
.soudan_list .soudan_tit .view img{
	width:30px;
	height:auto;
	margin:-4px 5px 0 0;
}
.soudan_content{
	display:none;
  padding:20px 0;
}
.soudan_content h4{
	position:relative;
	color:#DD8140;
	padding:0 0 0 18px;
	letter-spacing: 0.1em;
	margin:0 0 10px;
	line-height:1;
  font-weight:bold;
  font-family:メイリオ, Meiryo,"游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.soudan_content h4::before{
	position:absolute;
	left:0;
	top:-2px;
	width:6px;
	height:24px;
	background:#BF4F00;
	content:"";
}
.soudan_content h4 span{
	margin:0 0 0 40px;
}
.soudan_content p{
	font-size:17px;
	line-height:36px;
	letter-spacing: 0.1em;
	margin:0 0 10px;
}
.soudan_content p.cate{
	padding:10px 23px;
	line-height:1;
	color:#fff;
	background:#DD8140;
	display:table;
	margin:0 0 0 auto;
}
	.read_more_btn{
		position:absolute;
		bottom:0;
		left:0;
    right:0;
    margin:auto;
		width:180px;
		line-height:30px;
		text-align:center;
		background:#DD8140;
		color:#fff;
		font-size:14px;
		letter-spacing: 0.14em;
		cursor: pointer;
	}
  .read_more_btn{

  }

/*==================================================================

  $strength （下層）

==================================================================*/
.strength_list{
	margin:42px auto 0;
  width:1080px;
}
.strength_flex{
	display:flex;
	align-items: center;
  width:1080px;
  margin:0 auto;
}
.strength_item{
	position:relative;
}
.strength_item:first-child{
	margin:0 0 107px;
}
.strength_item:nth-child(2){
	margin:0 0 60px;
}
.strength_item:nth-child(3){
	padding:120px 0 100px;
}
.strength_item:nth-child(4){
	padding:88px 0;
	margin:0 0 57px;
}
.strength_item:nth-child(even) .strength_flex{
	flex-direction: row-reverse;
}
.strength_item:nth-child(even) .strength_img{
	margin:0;
}
.strength_item:nth-child(even) .strength_text{
	margin:0 0 0 -80px;
}
.strength_text{
	position:relative;
	width:640px;
	box-shadow:0 0 30px rgba(0,0,0,0.16);
	background:#fff;
	padding:23px 30px 45px 40px;
}
.strength_text h3{
	position:relative;
	font-size:24px;
	color:#DD8140;
	line-height:1.5;
	letter-spacing: 0.1em;
	padding:0 0 0 140px;
	margin:0 0 27px;
}
.strength_text h3::after{
	position:absolute;
	left:25px;
	top:5px;
	font-size:60px;
	color:#DD8140;
  font-family: adobe-garamond-pro, serif;
  font-weight: 400;
  font-style: normal;
	letter-spacing: 0.03em;
	line-height:1;
	background:#fff;
	width:74px;
	padding:0 0 0 4px;
	text-align:center;
}
.strength_text h3::before{
	position:absolute;
	top:0;
	bottom:0;
	left:2px;
	margin:auto;
	width:118px;
	height:1px;
	border-top:1px solid #DD8140;
	content:"";
}
.strength_text._01 h3::after{
  top:13px;
	content:"01";
}
.strength_text._02 h3::after{
  top:12px;
	content:"02";
}
.strength_text._03 h3::after{
  top:14px;
	content:"03";
}
.strength_text._04 h3::before{
	top:20px;
}
.strength_text._04 h3::after{
	top:20px;
	content:"04";
}
.strength_text h3 span{
	font-size:142%;
  color:#BF4F00;
}
.strength_text ul{
  margin:0 0 22px;
}
.strength_text li{
	display:flex;
	justify-content: space-between;
	align-items: center;
	position:relative;
	line-height:30px;
	margin:0 0 16px;
	padding:0 0 0 18px;
	font-size:22px;
}
.strength_text li::before{
	position:absolute;
	top:0;
	left:0;
	width:8px;
	height:30px;
	background:#DD8140;
	content:"";
}
.strength_text li a{
	position:relative;
	display:inline-block;
	line-height:38px;
	width:225px;
	padding:0 0 0 10px;
  margin:0 10px 0 0;
	border:1px solid #BF4F00;
	background:#BF4F00;
  color:#fff;
	font-size:17px;
}
.strength_text li a::before{
	position:absolute;
	top:0;
	bottom:0;
	margin:auto;
	right:25px;
	width:33px;
	height:4px;
	background:url("../images/arr_icon04.png");
	transition:.4s;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
	content:"";
}
.strength_text li a:hover::before{
	right:10px;
}
.strength_text p{
	line-height:2;
	letter-spacing: 0.1em;
}
.strength_img{
	width:640px;
	height:450px;
	margin:0 0 0 -80px;
	box-shadow:0 4px 30px rgba(0,0,0,0.16);
}
.strength_graph{
	width:670px;
	margin:30px auto 0;
}
.guarantee{
	margin:20px 0 0;
}
.guarantee h4{
	font-size:24px;
	letter-spacing: 0.14em;
	color:#DD8140;
	border-left:8px solid #DD8140;
	padding:0 0 0 10px;
	margin:0 0 20px;
	line-height:30px;
}
.guarantee_list{
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.guarantee_list li{
	width:220px;
}
.guarantee_list li a{
  transition: .2s;
}
.guarantee_list li a:hover{
  transform: translateY(-5px);
  opacity: 0.6;
}
.strength_banner{
    display:flex;
	justify-content: center;
	gap:30px;
	margin:50px 0 0;
}
.strength_banner li a{
  display:flex;
  width:380px;
  height:220px;
  padding:25px 20px;
  color:#404040;
  font-size:32px;
  line-height:45px;
  letter-spacing: 0.1em;
  color:#fff;
  font-family: "Yu Kyokasho New M";
}
.strength_banner li a:hover{
  transition: .2s;
  transform: translateY(-5px);
  opacity: 0.7;
}
.strength_banner li:first-child a{
    background:url("../images/banner_img01.jpg");
	background-size:cover;
}
.strength_banner li:nth-child(2) a{
    background:url("../images/banner_img04.jpg");
	background-size:cover;
  color:#4a4a4a;
}

.promise{
	position:relative;
	padding:50px 0 80px;
}
.promise .tit03{
	margin:0 0 50px;
}
.promise_list {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	gap:40px;
}
.promise_list li{
  position:relative;
  padding:50px 40px 40px;
  border-radius:10px;
  margin:0 0 20px;
  width:48%;
}
.promise_list li:nth-child(odd){
	background:#EFEFEF;
}
.promise_list li:nth-child(even){
	background:#fffaef;
}
.promise_list li::before{
	position:absolute;
	top:-30px;
	left:0;
	right:0;
	margin:auto;
	width:60px;
	height:60px;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height:1;
	color:#fff;
	font-size:36px;
	background:#DD8140;
  border-radius:5px;
}
.promise_list li:nth-child(1)::before{
	content:"01";
}
.promise_list li:nth-child(2)::before{
	content:"02";
}
.promise_list li:nth-child(3)::before{
	content:"03";
}
.promise_list li:nth-child(4)::before{
	content:"04";
}
.promise_list li:nth-child(5)::before{
	content:"05";
}
.promise_list li h3{
	font-size:26px;
	letter-spacing: 0.1em;
	margin:0 0 10px;
}
.promise_list li p{
	line-height:36px;
	letter-spacing: 0.1em;
}


/*==================================================================

  $flow （下層）

==================================================================*/
.flow_top_text{
	line-height:40px;
	margin:0 0 60px;
}
.flow_list{
	margin:0 auto;
}
.flow_item{
	position:relative;
  	padding:50px 30px 40px;
    border-radius:10px;
    border:2px solid #DD8140;
    display:flex;
    flex-direction: row-reverse;
    gap:40px;
    margin:0 0 50px;
}
.flow_item picture{
  width:400px;
}
.flow_item picture img{
  border-radius:8px;
}
.flow_item .flow_text{
  flex:1;
}
.flow_item:not(:last-child){
	margin:0 0 50px;
}
.flow_item::before{
	text-align:center;
	position:absolute;
	top:-25px;
	left:0;
  right:0;
  margin:auto;
	width:50px;
	height:50px;
	line-height:50px;
  border-radius:5px;
	background:#DD8140;
	color:#fff;
	font-size:28px;
  font-family: adobe-garamond-pro, serif;
  font-weight: 400;
  font-style: normal;
	content:"";
}
.flow_item:not(:last-child)::after{
	position:absolute;
	left:0;
  right:0;
	bottom:-50px;
  margin:auto;
	width:2px;
	height:50px;
	background:#DD8140;
	content:"";
}
.flow_item:first-child::before{
	content:"1";
}
.flow_item:nth-child(2)::before{
	content:"2";
}
.flow_item:nth-child(3)::before{
	content:"3";
}
.flow_item:nth-child(4)::before{
	content:"4";
}
.flow_item:nth-child(5)::before{
	content:"5";
}
.flow_item:nth-child(6)::before{
	content:"6";
}
.flow_item:nth-child(7)::before{
	content:"7";
}
.flow_item:nth-child(8)::before{
	content:"8";
}
.flow_item:nth-child(9)::before{
	content:"9";
}
.flow_item:nth-child(10)::before{
	content:"10";
}
.flow_item:nth-child(11)::before{
	content:"11";
}
.flow_item:nth-child(12)::before{
	content:"12";
}
.flow_item h3{
	font-size:24px;
	color:#DD8140;
	margin:4px 0 15px;
	line-height:34px;
	letter-spacing: 0.1em;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
}
.flow_item p{
	line-height:30px;
	letter-spacing: 0.1em;
}
.flow_item_contact{
  margin:15px 0 0;
}
.flow_item_contact .tel{
	display:inline-block;
	font-size:28px;
	letter-spacing: 0.1em;
	line-height:1;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.flow_item_contact .tel span{
	font-size:18px;
	margin:0 7px 0 0;
}
.flow_item_contact .time{
	font-size:16px;
	letter-spacing: 0;
}
.flow_item_contact .btn_flex{
	display:flex;
	gap:25px;
}
.flow_item_contact .btn_flex a{
	display:inline-block;
	position:relative;
	width:240px;
	line-height:60px;
	color:#fff;
	text-align:center;
	background:#BF4F00;
	letter-spacing: 0.1em;
}
.flow_item_contact .btn_flex a:nth-child(2){
	background:#5A9540
}
.flow_item_contact .btn_flex a::before{
	position:absolute;
	top:5px;
	left:5px;
	width:100%;
	height:100%;
	border:1px solid #BF4F00;
	content:"";
}
.flow_item_contact .btn_flex a:nth-child(2)::before{
	border:1px solid #5A9540;
}


/*==================================================================

  $contact （下層）

==================================================================*/
.contact_top_text{
	line-height:40px;
	margin:0 0 70px;
	text-align:center;
	letter-spacing: 0.1em;
}
.contact_form{
	width:900px;
	margin:0 auto;
}
.contact_form dl{
	display:flex;
	justify-content: space-between;
  align-items: center;
	margin:0 0 18px;
}
.contact_form dl.first{
  align-items: flex-start;
  margin:30px 0 0;
}
.contact_form dt{
	font-size:20px;
	letter-spacing: 0.1em;
}
.contact_form dt span{
	color:red;
}
.contact_form dd{
	width:600px;
}
.contact_form dd input[type="text"],.contact_form dd input[type="email"],.contact_form dd input[type="tel"]{
	width:100%;
	height:60px;
	border-radius:0;
	border:1px solid #333;
  padding: 0 20px;
  font-size: 18px;
}
.contact_form dd input[type="date"]{
  margin:0 5% 0 0 ;
	border-radius:0;
  font-size: 18px;
	border:1px solid #333;
  height:40px;
}
.contact_form dd select{
  border-radius:0;
  height:40px;
  width:20%;
}
.contact_form dd textarea{
	width:100%;
	border-radius:0;
	border:1px solid #333;
  padding:10px;
}
.contact_form .submit_btn{
	position:relative;
	width:300px;
	margin:40px auto 0;
}
.contact_form .submit_btn::before{
  position:absolute;
  left:5px;
  top:5px;
  width:100%;
  height:100%;
  border:1px solid #BF4F00;
  content:"";
  transition:.4s;
}
.contact_form .submit_btn:hover::before{
  position:absolute;
  left:0px;
  top:0px;
}
.contact_form .submit_btn input[type="submit"] {
  display: inline-block;
  position: relative;
  width:100%;
  height:70px;
  line-height: 1;
  border: 1px solid #BF4F00;
  text-align: center;
  color: #fff;
  transition: ease-in-out 0.1s;
  background:#BF4F00;
  font-size:17px;
  letter-spacing: 0.1em;
  -webkit-appearance: none;
  border-radius: 0;
}
.contact_form .submit_btn input[type="submit"]:hover{
  color:#BF4F00;
  background:#fff;
  border:none;
}

input[type="checkbox"]{
  position:absolute;
  opacity: 0;
}

.form_check .wpcf7-list-item{
  display:block;
  margin:0;
}

.wpcf7-spinner{
  position:absolute !important;
}

.wpcf7-list-item-label {
  position:relative;
  padding:0 0 0 25px;
}

.wpcf7-list-item-label::before{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  margin:auto;
  width:20px;
  height:20px;
  border:1px solid #333;
  content:"";
}

.wpcf7-list-item-label::after {
  position: absolute;
  width: 8px;
  height: 14px;
  top: 3px;
  left: 5px;
  border-right: 2px solid #D38B37; /* チェックマークの色 */
  border-bottom: 3px solid #D38B37; /* チェックマークの色 */
  content:"";
  margin-top: -7px;
  opacity: 0;
  transform: rotate(45deg);
}

input[type="checkbox"]:checked + .wpcf7-list-item-label:after{
  opacity: 1;
}

.wpcf7 form.sent .wpcf7-response-output{
  border-color: #dc9645 !important;
}


/*==================================================================

  $thanks （下層）

==================================================================*/
.thank_top_text{
	line-height:40px;
	letter-spacing: 0.1em;
	font-size:18px;
	margin:0 0 40px;
	text-align:center;
}
.flag{
	width:648px;
	margin:0 auto 40px;
}


/*==================================================================

  $voice （下層）

==================================================================*/
.voice_list{
  position:relative;
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin:50px 0;
  gap:70px 0;
}
.voice_item a{
  display: block;
  position:relative;
  width:340px;
  padding:10px;
  color:#404040;
  background:#fff;
  transition:.4s;
}
.voice_item a:hover{
  transform:translateY(-5px);
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
}
.voice_item a figure{
  width:100%;
  height:240px;
  overflow: hidden;
  margin:0 0 10px;
}

/*==================================================================

  $voice-item （下層）

==================================================================*/

.voice_info{
	display:flex;
	gap:70px;
	margin:0 0 60px;
}
.voice_info a{
	display: inline-block;
	width:370px;
}
.voice_item_text{
	width:561px;
}
.voice_item_text h3{
	font-size:17px;
	letter-spacing: 0.14em;
	color:#DD8140;
	padding:0 0 0 10px;
	margin:0 0 10px;
	border-left:8px solid #DD8140;
	line-height:1.3;
}
.voice_item_text p{
	font-size:15px;
	line-height:2;
	letter-spacing: 0.1em;
	margin:0 0 35px;
	padding:0 0 0 18px;
}
.voice_item_point{
	border:1px solid #DD8140;
	letter-spacing: 0.1em;
	text-align:center;
}
.voice_item_point dt{
	color:#fff;
	background:#DD8140;
	text-align:center;
	font-size:20px;
	line-height:46px;
}
.voice_item_point dd{
	font-size:40px;
	color:#BF2500;
}
.voice_table{
	display:flex;
	justify-content: space-between;
	margin:0 0 70px;
}
.voice_table dl{
	width:490px;
	border-top:1px solid #DD8140;
	border-bottom:1px solid #DD8140;
	padding:8px 30px 8px 0;
	display:flex;
	align-items: center;
	gap:30px;
}
.voice_table dt{
	color:#fff;
	text-align:center;
	background:#DD8140;
	font-size:20px;
	width:180px;
	line-height:60px;
}
.voice_table dd{
	font-size:18px;
}
.voice_qa{
	margin:0 0 60px;
}
.voice_qa dl{
	padding:20px 0;
	border-bottom:1px solid #DD8140;
}
.voice_qa dt{
	font-size:15px;
	letter-spacing: 0.1em;
	margin:0 0 7px;
	font-weight:bold;
}
.voice_qa dt.mb20{
	margin-bottom:20px;
}
.voice_qa dd{
	font-size:15px;
	letter-spacing: 0.1em;
}
.voice_qa dd span{
	color:#BF4F00;
}
.voice_qa dd li{
	display:flex;
	justify-content: space-between;
	font-size:15px;
	letter-spacing: 0.1em;
}
.voice_qa dd li:not(:last-child){
	margin:0 0 7px;
}
.voice_qa dd li .ans{
	width:700px;
}
.voice_qa dd li .fb{
	font-weight:bold;
}


/*==================================================================

  $price （下層）

==================================================================*/
.price_top_text{
	margin:50px 0 90px;
	text-align:center;
	line-height:2;
	letter-spacing: 0.1em;
}
.plan_list{
	width:1050px;
	margin:60px auto 0;
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap:60px 0;
}
.plan_list li a{
  position:relative;
	width:500px;
	display:block;
}
.plan_list li a .num{
  position:absolute;
  top:-30px;
  left:0;
  right:0;
  margin:auto;
  width:80px;
  height:80px;
  line-height:80px;
  font-size:50px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight:700;
  text-align:center;
  background:rgb(167, 167, 167);
  color:#fff;
  z-index:1;
}
.plan_list li a .plan_hover{
  overflow: hidden;
}
.plan_list li a:hover .plan_hover img{
  -webkit-transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.plan_img {
	position:relative;
  border-radius: 20px;
  overflow: hidden;
}
.plan_img p{
	position:absolute;
	top:0;
	left:0;
	color:#fff;
	line-height:46px;
	padding:0 14px;
	font-size:22px;
	background:#DD8140;
	letter-spacing: 0.18em;
  z-index:1;
}
.plan_img .batch{
	position:absolute;
	top:60px;
	right:14px;
	width:140px;
	height:auto;
}
.plan_img h3{
  position:absolute;
  top:0;
  bottom:0;
  text-align:center;
  width:100%;
  height:100%;
  padding:22% 0 0;
  background:rgba(0,0,0,0.5);
  color:#fff;
  font-size:60px;
  letter-spacing: 0.2em;
  font-family: 'Noto Sans JP', sans-serif;
  line-height:1;
}
.plan_img h3 span{
  font-size:40px;
}
.plan_info{
	display:flex;
	justify-content:center;
  align-items: center;
}
.plan_text h3{
	font-size:28px;
	letter-spacing: 0.1em;
	color:#DD8140;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight:bold;
}
.plan_text p{
	position:absolute;
  top:-27px;
  left:0;
  right:0;
  margin:auto;
	width:280px;
	font-size:20px;
  padding:10px;
	line-height:1.2;
	text-align:center;
	letter-spacing: 0.1em;
  background:#DD8140;
  color:#eee;
  font-weight:bold;
  border-radius:5px;
  font-family: 'Noto Sans JP', sans-serif;
  text-align:center;
  z-index:1;
}
.plan_text span{
  font-size:28px;
}
.plan_money{
  position:relative;
  background:#fff;
  padding:10px 20px;
  margin:-40px 0 0;
  border-radius:20px;
  box-shadow:0 3px #ddd;
}
.plan_list li a:hover .plan_money{
  transform: translateY(3px);
  box-shadow:none;
  transition: .6s;
}
.plan_money p{
	letter-spacing: 0.1em;
	line-height:1.4;
  text-align:center;
}
.plan_money .mon{
	position:relative;
	color:#DD8140;
	letter-spacing: 0;
	line-height:1;
  display:flex;
  align-items: center;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.2em;
}
.plan_money h3{
  text-align:center;
  color:#333;
}
.plan_money .big{
	font-size:100px;
  font-weight: 700;
}
.plan_money .tax{
	font-size:40px;
  font-weight: 700;
  text-align:left;
}
.plan_money .tax em{
  font-size:25px;
}
.plan_money .middle{
	font-size:70px;
}
.plan_money p.tax_in{
  font-size:14px;
  color:#404040;
}

/*==================================================================

  $price-item （下層）

==================================================================*/
.price{
  margin:0 0 80px;
}
.plan_item{
  display:flex;
  justify-content: center;
  margin:0 0 100px;
}
.plan_item_img{
  position:relative;
  width:720px;
}
.plan_item_copy{
	position:absolute;
	top:20px;
	left:20px;
	font-size:24px;
  font-weight:bold;
	color:#fff;
	letter-spacing: 0.1em;
	padding:0 30px;
	line-height:60px;
	background:#DD8140;
}
.plan_item_info{
  width:360px;
  background:#5A5A5A;
  padding:25px 25px 10px;
}
.plan_item_yaer{
  font-size:22px;
  letter-spacing: 0;
  line-height:1;
  text-align:center;
  background:#fff;
  padding:15px 0;
  margin:0 0 10px;
  font-weight:bold;
}
.plan_item_yaer span{
  font-size:40px;
  color:#F0CE5B;
}
.plan_item_feature {
  display:flex;
  justify-content: space-between;
  margin:0 0 10px;
}
.plan_item_feature li{
  text-align:center;
  background:#fff;
  font-size:22px;
  line-height:1.3;
  font-weight:bold;
  letter-spacing: 0;
  width:146px;
  padding:10px 0;
}
.plan_item_info .price_img{
  border-radius:20px;
  overflow: hidden;
}
.plan_item_money{
  display:flex;
  justify-content: center;
}
.plan_item_money p{
  font-weight:bold;
  color:#fff;
}
.plan_item_money .mon{
  font-size:86px;
  letter-spacing: 0.05em;
  line-height:1;
  color:#F0CE5B;
}
.plan_item_money .tax{
  font-size:36px;
  line-height:1.1;
}
.plan_item_money .tax em{
  font-size:20px;
}

.plan_cont{
	margin:0 auto 80px;
}
.plan_in{
  position:relative;
  border-radius:10px;
}
.plan_in p.tit{
  position:absolute;
  top:-50px;
  left:0;
	color:#fff;
	background:#DD8140;
	font-size:24px;
  font-weight:bold;
	text-align:center;
	line-height:1;
  padding:16px 0;
	letter-spacing: 0.1em;
  border-radius:0 10px 10px 10px;
  width:240px;
}
.plna_cont_info{
  background:#EFEFEF;
	padding:20px;
  margin:0 0 0 15px;
  border-radius:0 10px 10px 10px;
}
.plan_in ul{
	display:flex;
	justify-content: center;
  flex-wrap: wrap;
	gap:10px 30px;
}
.plan_in li{
	position:relative;
	padding:11px 16px;
	line-height:1;
	font-size:16px;
  font-weight:bold;
  border-radius:50px;
  background:#5A5A5A;
  color:#fff;
}
.plan_in li:not(:last-child)::before{
	position:absolute;
	top:0;
	bottom:0;
	right:-23px;
	margin:auto;
	height:22px;
	font-size:20px;
  font-weight:bold;
  color:#5A5A5A;
	content:"+";
}
.plan_out{
	border:1px solid #E1DCDB;
	margin:0 0 30px;
  border-radius:10px;
}
.plan_out p{
	background:#7d7b7b;
	font-size:24px;
	text-align:center;
	line-height:50px;
	letter-spacing: 0.1em;
  color:#fff;
  border-radius:10px 10px 0 0;
}
.plan_out ul{
  border-radius:0 0 10px 10px;
	padding:21px 28px;
}
.plan_out li{
	line-height:30px;
  font-size:16px;
}

.plan_paint table{
	width:1080px;
	margin:0 auto 50px;
	border-collapse: collapse;
}
.plan_paint th,.plan_paint td{
	border:1px solid #333;
	padding:20px 0;
}
.plan_paint th{
	width:225px;
	text-align:center;
	font-size:20px;
}
.plan_paint td{
	padding:20px 29px;
}

.plan_paint .bg_arr{
	display:inline-block;
	position:relative;
	margin:10px 0 0 40px;
}
.plan_paint .bg_arr span{
	padding:4px 0 4px 5px;
  font-weight:bold;
  color:#ED7D31;
}
.plan_paint .bg_arr::before{
	position:absolute;
	top:-6px;
	left:-32px;
	width:25px;
	height:21px;
	background:url("../images/arr_icon05.png");
	background-size:cover;
	content:"";
}
.plan_paint figure{
	position:relative;
	width:1080px;
	margin:0 auto 60px;
}
.plan_paint figure::before{
	position:absolute;
	top:-51px;
	left:34%;
	width:161px;
	height:49px;
	background:url("../images/paint_triangle.png");
	background-size:cover;
	content:"";
}
.plan_paint.plan02 figure::before{
  left:auto;
  right:34%;
}
.plan_paint.plan03 figure::before{
  left:auto;
  right:17%;
}
.plan_paint.plan04 figure::before{
  left:auto;
  right:0;
}
.plan_flow{
	width:1080px;
	margin:0 auto 40px;
}
.plan_flow h3{
	font-size:24px;
	padding:0 0 0 10px;
	margin:0 0 20px;
	border-left:8px solid #DD8140;
	line-height:30px;
	letter-spacing: 0.1em;
}
.plan_flow ul{
	display:flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap:35px 20px;
}
.plan_flow li{
	width:255px;
  position:relative;
}
.plan_contact h2{
  padding:10px;
  text-align:center;
  color:#fff;
  font-size:32px;
  font-weight:bold;
  margin:0 0 40px;
  background:#5A5A5A;
}


/*==================================================================

  $failure （下層）

==================================================================*/

.merideri_tb{
	margin:40px 0 0;
}
.failure02 figure{
	width:490px;
	margin:40px auto 0;
}
.failure_flex{
	/* display:flex;
	justify-content: space-between; */
}
.failure_flex dl{
  position:relative;
	width:390px;
	/* background:#EFEFEF; */
  background-image: linear-gradient(-45deg, #fff 25%, #0070c4 25%, #0070c4 50%, #fff 50%, #fff 75%, #0070c4 75%, #0070c4);
  background-size: 10px 10px;
  padding:30px 30px 20px;
}
.failure_flex .failure_flex_bef{
  height:330px;
}
.failure_flex .failure_flex_af{
  height:392px;
}
.failure_flex .failure_flex_af::before{
  content:none;
}
.failure_flex dl.failure_flex_af{
  background:#DEEBF7;
}
.failure_flex .failure_flex_af dt{
  background:#fff;
  color:#0070c4;
  border:none;
  margin:0 0 20px;
}
.failure_flex .failure_flex_af dd{
  color:#0070c4;
  border-top:2px solid #0070c4;
}
.failure_flex dl::before{
  position:absolute;
  top:0;
  bottom:0;
  right:0;
  left:0;
  margin:auto;
  background:#fff;
  width:calc(100% - 30px);
  height:calc(100% - 30px);
  content:"";
}
.failure_flex dt{
  position:relative;
	height:60px;
	display:flex;
	justify-content: center;
	align-items: center;
  flex-direction: column;
	letter-spacing: 0.1em;
	text-align:center;
	line-height:22px;
  border-bottom:2px solid #0070c4;
  padding:10px 7px;
  font-weight:bold;
}
.failure_flex dt p{
  font-size:14px;
  line-height:1;
  margin:0 0 6px;
}
.failure_flex dd{
	position:relative;
	font-size:15px;
	letter-spacing: 0.1em;
	line-height:32px;
	padding:18px 22px;
  font-weight:bold;
}
.failure_flex dd .underline{
	/* background:#FFFBC6; */
	text-decoration: none;
}
.failure_flex dd .underline::before{
	content:none;
}
.failure03 a{
	width:800px;
	margin:60px auto 0;
  display:block;
  overflow: hidden;
}
.failure03 a:hover img{
  opacity: 0.7;
    -webkit-transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.failure03 .failure_box dl{
  border:2px solid #0070c4;
  background:#fff;
}
.failure03 .failure_box dl::before{
  background:none;
  border:2px solid #0070c4;
  width:calc(100% - 12px);
  height:calc(100% - 12px);
}
.failure_box{
  display:flex;
  justify-content: space-between;
}
.failure_flex_box h3{
	font-size:24px;
	letter-spacing: 0.14em;
	line-height:30px;
	margin:0 0 30px;
	padding:0 0 0 10px;
	border-left:8px solid #DD8140;
}
.arr_text{
	width:100%;
	margin:30px 130px 25px auto;
	display:flex;
  justify-content: center;
	align-items: center;
}
.arr_text img{
	width:54px;
	height:auto;
}
.arr_text .underline{
	line-height:1;
}
.failure07 .btn01 a{
	margin:50px auto 0;
}


/*==================================================================

  $quality （下層）

==================================================================*/
.quality_tit{
  margin:0 0 40px;
}
.quality_tit h2{
	font-size:24px;
	line-height:58px;
	letter-spacing: 0.18em;
  padding:40px 0;
  border-top:1px solid #333;
  border-bottom:1px solid #333;
  text-align:center;
}

.quality_nav{
  display:flex;
  justify-content: center;
  gap:40px;
}
.quality_nav div{
  width:480px;
  display:flex;
}
.quality_nav h3{
  width:150px;
  background:#DC803F;
  font-size:18px;
  display:flex;
  justify-content: center;
  align-items: center;
  color:#fff;
}
.quality_nav div a{
  position:relative;
  display:flex;
  align-items: center;
  width:330px;
  padding:0 0 0 30px;
  border:1px solid #DC803F;
  font-size:18px;
}
.quality_nav div a::before{
  position:absolute;
  top:0;
  bottom:0;
  right:20px;
  margin:auto;
  width:26px;
  height:26px;
  background:#DC803F;
  border-radius:50%;
  content:"";
}
.quality_nav div a::after{
  position:absolute;
  top:0;
  bottom:0;
  right:26px;
  margin:auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #ffffff;
  border-right: 0;
  content:"";
}
.nav01 a{
  height:60px;
}
.nav02 a{
  height:100px;
}

.quality_item{
  padding:30px;
  border-radius:15px;
  margin:0 0 40px;
  font-size:15px;
  background:#FFF8DD;
}
.quality_flex{
  display:flex;
  justify-content: space-between;
  gap:40px;
}
.quality_info{
  flex:1;
}
.quality_reason{
  margin:30px 0 0;
}
.quality_reason h4{
  text-align:center;
  font-size:20px;
  margin:0 0 20px;
  font-weight:bold;
  border-bottom:2px solid #DC803F;
}
.qualit_img{
  width:450px;
}
.qualit_img h3{
  line-height:60px;
  font-size:24px;
  font-weight:bold;
  background:#DC803F;
  color:#fff;
  text-align:center;
  border-radius: 10px 10px 0 0;
}
.qualit_img img{
  border-radius:0 0 10px 10px;
}
.quality_item .text_box01{
  background:#fff;
}

.quality_paint{
  /* display:flex;
  justify-content: space-between; */
  margin:40px 0 0;
}
.quality_paint li{
  display:flex;
  margin:0 0 40px;
}
.quality_paint figure{
  width:340px;
}
.quality_paint img{
  border-radius:15px 0 0 15px;
}
.quality_paint_info{
  flex:1;
  padding:40px 30px;
  background:#FFF8DD;
  border-radius:0 15px 15px 0;
}
.quality_paint_info h3{
  font-size:20px;
}
.quality_paint_info p{
  line-height:2;
  letter-spacing: 0.1em;
}

/*==================================================================

.usa-shrine

==================================================================*/
.usa_tit h2{
	font-size:24px;
	line-height:58px;
	letter-spacing: 0.18em;
  padding:40px 0;
  margin:0 0 30px;
  border-top:1px solid #333;
  border-bottom:1px solid #333;
  text-align:center;
}

.infinitySlider{
  margin:0 0 100px;
}
.splide__slide img {
  height: auto;
  width: 100%;
}

.usa_info{
  display:flex;
  gap:40px;
}
.usa_text{
  flex:1;
}
.usa_text h3{
  position: relative;
  margin: 0 0 30px;
  padding: 0 0 0 10px;
  font-size: 26px;
  letter-spacing: 0.14em;
  line-height: 1.5;
  z-index: 1;
  font-weight: bold;
  border-left: 4px solid #DC803F;
}
.usa_img{
  width:520px;
  margin:40px 0 0;
}

.usa_flex{
  display:flex;
  justify-content: space-between;
}
.usa_flex_item{
  width:32%;
}
.usa_flex_item figure{
  width:100%;
  margin:0 0 20px;
}
.usa_flex_item figure img{
  width:100%;
}
.usa_flex_item p{
  line-height:1.6;
  letter-spacing: 0.05em;
}

.history dl{
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.history dt{
  position:relative;
  width:20%;
  border-right:1px solid #DC803F;
  font-size:30px;
  font-style: italic;
  font-weight:bold;
  letter-spacing: 0.1em;
  line-height:1;
}
.history dt::before{
  content:"";
  position:absolute;
  top:17px;
  right:-8px;
  width:16px;
  height:16px;
  border-radius:50%;
  background:#DC803F;
}
.history dt span{
  font-size:45px;
  color:#DC803F;
}
.history dd{
  width:80%;
  padding:10px 40px;
}
.history dd p{
  margin:0 0 10px;
}
.history_img{
  margin:0 0 10px;
}
.history_img img{
  max-width:100%;
}

/*==================================================================

.paint

==================================================================*/
.paint_tit{
}
.paint_tit h2{
	font-size:24px;
	line-height:58px;
	letter-spacing: 0.18em;
  padding:40px 0;
  border-top:1px solid #333;
  border-bottom:1px solid #333;
  text-align:center;
}
.paint_kinds{
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:40px;
  padding:0 150px;
  margin:0 0 80px;
}
.paint_kinds_item{
  position:relative;
  border-radius:12px;
  box-shadow:0 0 11px rgba(0,0,0,0.16);
  text-align:center;
  font-size:18px;
}
.paint_kinds_item a{
  display:block;
  padding:25px 20px 20px;
}
.paint_kinds_item::before{
  position:absolute;
  top:0;
  left:0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #DC803F transparent transparent transparent;
  border-width: 30px 30px 0px 0px;
  content:"";
}
.paint_kinds_name{
  font-size:20px;
  padding:0 0 20px;
  border-bottom:2px solid #333;
  letter-spacing: 0.05em;
}
.paint_kinds_year{
  padding:14px 0 0;
  letter-spacing: 0.05em;
}
.paint_kinds_item p{
  line-height:1;
  font-weight:bold;
}
.paint_kinds_item span{
  display:inline-block;
  margin:0 0 0 10px;
  color:#DC803F;
}
.paint_kinds_item strong{
  font-size:32px;
}

.paint_kinds_info li{
  padding:20px 0;
  margin:0 0 15px;
  display:flex;
  align-items: center;
  border-radius:15px;
  background:#FFF8DD;
}
.paint_kinds_info li h3{
  width:280px;
  text-align: center;
  font-size:24px;
  font-weight:bold;
}
.paint_kinds_info li p{
  padding:0 40px;
  line-height:1.6;
  letter-spacing: 0.05em;
  flex:1;
  border-left:1px solid #DC803F;
}

.paint_performance_list{
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
  margin:40px 0 0;
}
.paint_performance_list dl:first-child,.paint_performance_list dl:nth-child(2){
	border-top:1px solid #DD8140;
}
.paint_performance_list dl{
	display:flex;
	border-bottom:1px solid #DD8140;
	align-items: center;
	height:66px;
}
.paint_performance_list dt{
	width:200px;
	display:flex;
	border-right:1px solid #DD8140;
	align-items: center;
	gap:18px;
	min-height:66px;
	padding:0 20px;
	font-size:20px;
  font-weight:bold;
	letter-spacing: 0.1em;
}
.paint_performance_list dd{
	position:relative;
	width:330px;
	padding:0 20px;
	letter-spacing: 0.1em;
	line-height:28px;
}
.paint_performance_list dd small{
	position:absolute;
	top:100%;
	left:20px;
	font-size:13px;
	line-height:1;
}
.paint_list_text{
	font-size:16px;
	line-height:36px;
	color:#DD8140;
	margin:0 0 44px;
	text-align:center;
}
.paint_feature_list{
	display:flex;
	gap:20px;
}
.paint_item{
	margin:0 0 80px;
  display:flex;
  gap:40px;
}
.paint_item figure{
  width:280px;
}
.paint_item_info{
  flex:1;
}
.paint_item h3{
	position:relative;
	margin:0 0 30px;
  padding:0 0 0 10px;
	font-size:26px;
	letter-spacing: 0.14em;
	line-height:1.5;
  z-index:1;
  font-weight:bold;
  border-left:4px solid #DC803F;
}
.paint_item .text_box01{
	margin:40px 0 20px;
}
.paint_item .paint_performance_list{
	margin:0 0 50px;
}
/*==================================================================

.text_box

==================================================================*/
.text_box01{
	position:relative;
	margin:30px 0 0;
	background:#FFF8DD;
	padding:20px;
	letter-spacing: 0.1em;
  border-radius:10px;
}
.text_box01 .tit{
	font-size:18px;
  font-weight:bold;
	letter-spacing: 0.1em;
	line-height:1.5;
  margin:0 0 10px;
  padding:0;
  display:inline-block;
  border-bottom:2px solid #DC803F;
}

/*==================================================================

  $snow 積雪のタイミング

==================================================================*/



/*==================================================================

  $timing 塗装のタイミング

==================================================================*/

.check_point{
  display:flex;
  justify-content: space-between;
  margin:40px 0 0;
}
.check_point li{
  width:340px;
  background:#FFF2E8;
  border-radius:15px;
  border:2px solid #DC803F;
}
.check_point li figure{
  width:100%;
}
.check_point li img{
  border-radius:15px 15px 0 0;
}
.check_point_info{
  padding:20px;
}
.check_point_info h3{
  text-align:center;
  font-size:24px;
  font-weight:bold;
  letter-spacing: 0.01em;
  margin:0 0 20px;
  line-height:1;
}
.check_point_info p{
  padding:15px 20px;
  margin:0 0 20px;
  border-radius:10px;
  background:#fff;
  font-size:14px;
  line-height:1.5;
}

/*==================================================================

  $qa

==================================================================*/
.qa1 dl{
  margin-bottom:25px;
  padding-bottom:25px;
  border-bottom:1px dotted #c1c1c1;
}
.qa1 dl dt{
  position:relative;
  margin-bottom: 15px;
  padding-left:40px;
  font-weight:bold;
}
.qa1 dl dt:before{
  position: absolute;
  top:-5px;
  left:0;
  margin-right:7px;
  line-height: 1;
  font-family:"Times New Roman", Times, serif;
  font-weight:normal;
  font-size:28px;
  color:#1F2774;
  content:"Q.";
}
.qa1 dl dd{
  position:relative;
  padding-left:40px;
}
.qa1 dl dd:before{
  position: absolute;
  top:-5px;
  left:0;
  margin-right:7px;
  line-height: 1;
  font-family:"Times New Roman", Times, serif;
  font-weight:normal;
  font-size:28px;
  color:#C0AB9A;
  content:"A.";
}

/* アコーディオン */
.js-toggle.qa1 dt::after{
  color: #1F2774;
  position: absolute;
  display: flex;
  align-items: center;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
}
.js-toggle.qa1 dt.is-open::after{
  content: "\f068";
}
.js-toggle.qa1 dd{
  display: none;
}

/*==================================================================

  .breadcrumb（ぱんくず）

==================================================================*/
.breadcrumbs {
  position: relative;
  width: 1200px;
  min-height:31px;
  margin: 0 auto 70px;
  font-size: 18px;
}
.breadcrumbs:last-child {
  margin: 0 auto;
}
.breadcrumbs i {
  /*margin-left: 35px;*/
  margin-right: 5px;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs li {
  float: left;
  margin-right: 10px;
}
.breadcrumbs li:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  content: "\f054";
  padding-left: 5px;
}
.breadcrumbs li:last-child:after {
  content: "";
}
.breadcrumbs li:last-child a{
  color:#d04634 !important;
}

/*==================================================================

  .breadcrumb（ぱんくず）

==================================================================*/
#breadcrumb {
  position: relative;
  width: 1200px;
  min-height:31px;
  margin: 0 auto 50px;
  font-size: 18px;
}
#breadcrumb ol:last-child {
  margin: 0 auto;
}
#breadcrumb i {
  /*margin-left: 35px;*/
  margin-right: 5px;
}
#breadcrumb a:hover {
  text-decoration: underline;
}
#breadcrumb li {
  float: left;
  margin-right: 10px;
}
#breadcrumb li:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  content: "\f054";
  padding-left: 5px;
}
#breadcrumb li:last-child:after {
  content: "";
}
#breadcrumb li:last-child a{
  color:#d04634 !important;
}

/*==================================================================

  .404_p

==================================================================*/
.none_page_p{
  text-align: center;
  font-size: 26px;
  padding-top: 100px;
}

/*==================================================================

  .news

==================================================================*/
.news_tit{
  font-size:22px;
  font-weight:bold;
  margin:0 0 10px;
}
.news_info{
  margin:0 0 10px;
}
.news_item{
  border-bottom:1px solid #ddd;
  padding:20px;
}

/*==================================================================

  .wordpress関係

==================================================================*/

.contents_bg {
  position: relative;
}

:is(.blog,.single-post,.archive,.category):not(.tax-cate_menu,.tax-cate_disease,.tax-cate_symptom,.tax-cate_case) .contents_bg:before{
  content: "";
  height: 100%;
  display: block;
  position: absolute;
  background: var(--bg-color);
  top: 0;
  width: calc((100% - 1200px) / 2);
  right: 0;
}


.contents {
  width: 1200px;
  margin: auto;
  padding: 50px 20px 56px;
  box-sizing: border-box;
}

.wrapper {
  position: relative;
  width: 1200px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: auto;
  background: #fff;
  z-index: 2;
}

main img {
  max-width: 100%;
  height: auto;
}

.wrapper main {
  width: 100%;
  padding: 30px 0;
}
:is(.blog,.single-post,.archive,.category):not(.tax-cate_menu,.tax-cate_disease,.tax-cate_symptom,.tax-cate_case) .wrapper main{
  width: 70%;
}


/*--------------------ブログ--------------------*/
.blog_box {
  margin-bottom: 50px;
  padding-bottom: 10px;
  display:flex;
  gap:30px;
  padding:30px;
  border-radius:0 0 20px 20px;
  box-shadow:0 3px 10px rgba(0,0,0,0.1);
  border-top:2px solid #DD8140;
}

.blog_box.blog_single{
  padding:0;
  border:none;
  box-shadow:none;
  border-radius:0;
}

.blog_tit {
  font-size: 22px;
}


.blog_single h2{
  font-size:26px;
  color:#fff;
  background:#DD8140;
  margin:0 0 30px;
  padding:20px;
  letter-spacing: 0.1em;
  font-weight:bold;
  line-height:1.4;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

.blog_single h2.blog_item_tit{
  font-size:28px;
  margin:0 0 50px;
  padding:0;
  color:#333;
  border:none;
  background:none;
}

.blog_single h3{
  position:relative;
  font-size:22px;
  margin:0 0 20px;
  padding:8px 0 8px 20px;
  letter-spacing: 0.1em;
  font-weight:bold;
  line-height:1;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}
.blog_single h3::before{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  margin:auto;
  width:8px;
  height:26px;
  background:#DD8140;
  content:"";
}

.blog_single h4{
  padding:0 0 10px;
  margin:0 0 20px;
  display:table;
  font-weight: bold;
  font-size:18px;
  letter-spacing: 0.1em;
  border-bottom:2px solid #DD8140;
  line-height:1;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

.blog_single p{
  margin:0 0 20px;
}

.blog_content {
  flex:1;
}

.blog_content p {
  margin-bottom: 1em;
}

.blog_box .btn01{
  text-align:right;
}

.blog_box .btn01 a {
    position: relative;
    display: inline-block;
    border: 1px solid #DD8140;
    background:#DD8140;
    width: 170px;
    height:auto;
    line-height: inherit;
    font-size: 16px;
    padding: 5px 9px 5px 18px;
    margin:10px 0 10px auto;
    transition: .2s;
    text-align: left;
    color:#fff;
}
.blog_box .btn01 a::before{
  content:none;
}

.blog_box .btn01 a::after{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    width: 33px;
    height: 4px;
    background: url(../images/arr_icon02.png);
    transition: .2s;
    content: "";
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.blog_box .btn01 a:hover{
  color:#DD8140;
  background:#fff;
}
.blog_box .btn01 a:hover::after{
  right:10px;
  -webkit-filter: brightness(1) invert(0);
  filter: brightness(1) invert(0);
}

.blog_box .blog_excerpt{
  font-size:16px;
  line-height:1.9;
  letter-spacing: 0.1em;
}

.blog_box .blog_text{
  font-size:16px;
  line-height:2.4;
  letter-spacing: 0.1em;
}

.blog_box .blog_text p{
  line-height:2.4;
}

.blog_box .blog_text ol {
	counter-reset: number;
}
.blog_box .blog_text ol li{
	position:relative;
	padding:0 0 0 15px;
}

.blog_box .blog_text ol li::before{
	margin:0 5px 0 0;
	counter-increment: number;
   content: counter(number)'.';
	color:#DD8140;
}

/*----------見出し----------*/
.blog_box h2.blog_tit {
  border-bottom: none;
  font-size:24px;
}

.blog_box h2.blog_tit:after {
  display: none;
}

/*----------日付・カテゴリ----------*/
.blog_class li {
  display: inline-block;
  margin-right: 15px;
}

.blog_class {
  margin-bottom: 10px;
}

.blog_cate a{
  display:inline-block;
  font-size:16px;
  background:#000;
  width:130px;
  line-height:32px;
  text-align:center;
  color:#fff;
  letter-spacing: 0.1em;
}
.blog_date{
  letter-spacing: 0.1em;
}

/*--------------------サイドバー--------------------*/
.side_area {
  width: 25%;
  padding: 100px 2% 50px;
  z-index: 3;
  background: var(--bg-color);
}

.side_box, .side_bannar {
  margin-bottom: 40px;
}

.side_area .btn01 a {
  width: 100%;
  color: #fff !important;
}

.side_bannar ul li {
  margin-bottom: 10px;
  text-align: center;
}

.side_bannar ul li a:hover {
  opacity: 0.8;
}

.side_area .side_title {
  font-size: 115%;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: solid 1px #707070;
  text-align: left;
  line-height: 1.6;
}

.side_area .side_title i {
  margin-right: 10px;
  color: #DD8140;
}
.side_area ul li a{
  display:inline-block;
  letter-spacing: 0.1em;
  margin:0 0 5px;
  font-size:14px;
}

.side_area ul.children li.cat-item a{
  padding-left: 1em;
}
.side_area ul.children li.cat-item a::before{
  content: "－";
}
.side_area li a:hover {
  color:#BF4F00 !important;
}

.op_sidefreearea p a {
  display: block;
}

.recent ul{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  height:140px;
}
.recent ul.open{
  display: block;
  margin:0 0 10px;
  height:auto;
}
.recent .more_btn{
  width:100%;
  line-height:40px;
  border:1px solid #DD8140;
  text-align:center;
  cursor: pointer;
  transition: .4s;
  font-size:14px;
}
.recent .more_btn:hover{
  background:#DD8140;
  color:#fff;
}


/*--------------------ページャー--------------------*/
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap:15px;
  font-size: 15px;
  padding: 9px 8px;
  margin: 0 auto;
  border-radius: 3px;
  text-align: center !important;
  font-weight: bold;
}

.pager:after {
  display: block;
  content: "";
  clear: both;
}

.current {
	width: 60px;
	height: 60px;
  background: #DD8140;
  color: #fff;
/*   padding: 8px 12px; */
  display: inline-block;
  line-height: 60px;
  font-size:22px;
}

.pager .dots{
  font-size:22px;
}

.pager a {
	width: 60px;
	height: 60px;
  display: inline-block;
  text-decoration: none;
/*   padding: 8px 12px; */
  transition: all 0.2s linear;
  background: #fff;
  border:1px solid #DD8140;
  color: #DD8140;
  line-height: 60px;
  font-size:22px;
}

.pager a.prev,.pager a.next{
  display:none;
}

.pager a:hover {
  background: #DD8140;
  color: #fff;
}

.pager a:active {
  box-shadow: 1px 1px 3px -1px rgba(0, 0, 0, 0.55);
}

/*--------------------ブログ エディター用--------------------*/
.alignleft {
  display: inline;
  float: left;
}

.alignright {
  display: inline;
  float: right;
}

.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

blockquote.alignleft,
.wp-caption.alignleft,
img.alignleft {
  margin: 0.4em 1.6em 1.6em 0;
}

blockquote.alignright,
.wp-caption.alignright,
img.alignright {
  margin: 0.4em 0 1.6em 1.6em;
}

blockquote.aligncenter,
.wp-caption.aligncenter,
img.aligncenter {
  clear: both;
  margin-top: 0.4em;
  margin-bottom: 1.6em;
}

.wp-caption.alignleft,
.wp-caption.alignright,
.wp-caption.aligncenter {
  margin-bottom: 1.2em;
}

/*整形済みテキスト*/
.blog_content > div pre {
  font-weight: 400;
  margin-top: 20px;
  padding: 20px;
  background-color: var(--bg-color);
  color: #7F7F7F;
  overflow: auto;
}

/*引用*/
.blog_content > div blockquote {
  position: relative;
  color: #3F3F3F;
  margin-top: 20px;
  padding: 20px 20px 20px 70px;
  background-color: var(--bg-color);
}

.blog_content > div blockquote::before {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: "icomoon";
  content: "\e909";
  font-size: 3rem;
  color: #D9D9D9;
}

.blog_content > div blockquote *:first-child {
  margin-top: 0;
}

/*ライン*/
.blog_content > div hr {
  margin-top: 40px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.blog_content > div *:first-child {
  margin-top: 0;
}

.blog_content iframe {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/*サムネイル*/
.blog_thumbnail{
  width:180px;
}
.thumbnail {
  display: block;
  position: relative;
  float: left;
  text-align: center;
}

.thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  max-height: unset;
  width: 180px;
  height: 180px;
}


/*==================================================================

  倉庫LP warehouse

==================================================================*/
.lp_box{
  width:1200px;
  margin:0 auto;
}
.tit_wrap{
  margin:0 0 60px;
}
.tit_wrap h2{
  font-size:24px;
  text-align:center;
  font-weight:bold;
  letter-spacing: 0.1em;
  margin:0 0 20px;
}
.tit_wrap p{
  text-align:center;
}
.warehouse_work{
  position:relative;
  padding:80px 0;
}
.warehouse_work::before{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:350px;
  background:#fff7de;
  content:"";
  z-index:-1;
}
.warehouse_work_list{
  display:flex;
  justify-content: space-between;
  margin:0 0 40px;
}
.warehouse_work_item{
  width:380px;
}
.warehouse_work_item a{
  display:block;
  width:100%;
}
.warehouse_work_img {
  display:flex;
  margin:0 0 15px;
}
.warehouse_work_img li{
  width:50%;
}
.warehouse_work_img li p{
  color:#fff;
  font-size:16px;
  letter-spacing: 0.1em;
  font-weight:bold;
  line-height:30px;
  background:#575757;
  text-align:center;
}
.warehouse_work_img li:nth-child(2) p{
  background:#ff6600;
}
.warehouse_work_item h3{
  font-size:20px;
  line-height:1.5;
  font-weight:bold;
}
.warehouse_work_item h3 span{
  display:block;
  font-size:16px;
}
.warehouse_work .btn01 a{
  margin:0 auto;
}

.warehouse_importance{
  padding:80px 0;
}
.warehouse_importance_list{
  padding:50px;
  background:#fff0e6;
}
.warehouse_importance_item{
  display:flex;
  gap:40px;
  padding:30px;
  margin:0 0 30px;
  background:#fff;
}
.warehouse_importance_item:last-child{
  margin:0;
}
.warehouse_importance_item figure{
  position:relative;
  width:400px;
}
.warehouse_importance_item figure::before{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  width:calc(100% - 20px);
  height:calc(100% - 20px);
  border:1px solid #fff;
  content:"";
}
.warehouse_importance_info{
  flex:1;
}
.warehouse_importance_info h3{
  font-size:24px;
  font-weight:bold;
  margin:0 0 20px;
  color:#ff6600;
}
.warehouse_importance_info h3 span{
  font-size:14px;
  display:block;
}
.warehouse_importance_info h3 strong{
  font-size:26px;
}

.warehouse_feature{
  padding:80px 0;
  background: url(../images/warehouse/warehouse_feature_bg.jpg) repeat center / contain;
  background-color: rgba(255, 255, 255, 0.85);
  background-blend-mode: lighten;
}
.warehouse_feature_list{
  display:flex;
  gap:30px;
}
.warehouse_feature_item{
  width:100%;
}
.warehouse_feature_item figure{
  position:relative;
  margin:0 0 20px;
}
.warehouse_feature_item figure::before{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  width:calc(100% - 20px);
  height:calc(100% - 20px);
  border:1px solid #fff;
  content:"";
}
.warehouse_feature_info h3{
  font-size:24px;
  font-weight:bold;
  color:#ff6600;
  margin:0 0 15px;
}

.warehouse_greeting{
  padding:80px 0;
  background: url(../images/warehouse/warehouse_feature_bg.jpg) repeat center / contain;
  background-color: rgba(255, 255, 255, 0.85);
  background-blend-mode: lighten;
}
.warehouse_greeting_flex{
  display:flex;
  gap:40px;
  margin:0 0 50px;
}
.warehouse_greeting_info{
  flex:1;
}
.warehouse_greeting_info h3{
  font-size:24px;
  font-weight:bold;
  /* line-height:1.5; */
  margin:0 0 24px;
	border-bottom:2px solid #ff6600;
	color:#ff6600;
}
.warehouse_greeting_img{
  width:615px;
  position:relative;
}
.warehouse_greeting_img01{
  position:relative;
  width:550px;
  margin:0 0 0 auto;
}
.warehouse_greeting_img01::before{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  width:calc(100% - 20px);
  height:calc(100% - 20px);
  border:1px solid #fff;
  content:"";
}
.warehouse_greeting_img02{
  position:relative;
  margin:-180px 0 0;
  width:280px;
}
.warehouse_greeting_img02::before{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  width:calc(100% - 20px);
  height:calc(100% - 20px);
  border:1px solid #fff;
  content:"";
}

.warehouse_promise{
  padding:80px 0;
}
.warehouse_promise_list{
  display:flex;
  flex-wrap: wrap;
  gap:30px;
}
.warehouse_promise_item{
  position:relative;
  width:calc(50% - 15px);
  padding:40px;
  background:#eeeeee;
}
.warehouse_promise_item::before{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  width:calc(100% - 20px);
  height:calc(100% - 20px);
  border:1px solid #ff6600;
  content:"";
}
.warehouse_promise_item h3{
  display:flex;
  align-items: center;
  gap:20px;
  font-size:24px;
  font-weight:bold;
  color:#ff6600;
  margin:0 0 15px;
}
.warehouse_promise_item h3 span{
  display:flex;
  justify-content: center;
  align-items: center;
  width:50px;
  height:50px;
  font-size:18px;
  font-weight:bold;
  background:#ff6600;
  color:#fff;
}

.warehouse_cta{
  position:relative;
  padding:50px 0;
  text-align:center;
  background:url(../images/warehouse/bg-why.webp);
}

.warehouse_cta::before{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
  content:"";
  z-index:0;
}
.warehouse_cta h2{
  position:relative;
  font-size:32px;
  font-weight:bold;
  margin:0 0 20px;
  color:#ff6600;
}
.warehouse_cta p{
  position:relative;
  margin:0 0 20px;
}
.warehouse_cta p span{
  position:relative;
  display:block;
  font-size:24px;
  font-weight:bold;
}
.warehouse_cta p span::before{
  position:absolute;
  content:"";
}
.warehouse_cta .btn01 a{
  margin:0 auto;
}


.warehouse_flow{
  padding:80px 0;
}
.warehouse_flow_list{
  position:relative;
  background:#fff0e6;
  padding:50px;
}
.warehouse_flow_item{
  position:relative;
  display:flex;
  margin:0 0 30px;
}
.warehouse_flow_item:last-child{
  margin:0;
}
.warehouse_flow_item::before{
  position:absolute;
  bottom:-30px;
  left:39px;
  width:2px;
  height:30px;
  background:#ff6600;
  content:"";
}
.warehouse_flow_item:last-child::before{
  content:none;
}
.warehouse_flow_num{
  display:flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width:80px;
  background:#ff6600;
  color:#fff;
  font-size:36px;
  font-weight:bold;
  line-height:1;
}
.warehouse_flow_num span{
  font-size:14px;
  line-height:1;
}
.warehouse_flow_info{
  padding: 30px;
  flex:1;
  background:#fff;
}
.warehouse_flow_info h3{
  font-size:24px;
  font-weight:bold;
  margin:0 0 10px;
  color:#ff6600;
}

.warehouse_contact{
  padding:0 0 80px;
}

/*==================================================================

  アパートLP apartment

==================================================================*/
.apartment .tit_en{
  color:#ff6600;
}
.apartment_work{
  position:relative;
  padding:80px 0;
}
.apartment_work::before{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:350px;
  background:#fff7de;
  content:"";
  z-index:-1;
}
.apartment_work_list{
  display:flex;
  justify-content: space-between;
  margin:0 0 40px;
}
.apartment_work_item{
  width:580px;
  display:block;
  background:#ff6600;
  border-radius:20px;
}
.apartment_work_item .build_name{
  padding:10px 40px;
  border-radius:500px;
  border:4px solid #ff6600;
  display:table;
  margin:-35px auto 20px;
  font-size:24px;
  font-weight:bold;
  color:#ff6600;
  background:#fff;
}
.apartment_work_img {
  display:flex;
}
.apartment_work_img li{
  position:relative;
  width:50%;
}
.apartment_work_img li p{
  position:absolute;
  top:20px;
  color:#fff;
  font-size:16px;
  letter-spacing: 0.1em;
  font-weight:bold;
  line-height:30px;
  background:#575757;
  text-align:center;
  padding:15px 30px;
  border-radius:0 50px 50px 0;
}
.apartment_work_img li:nth-child(2) p{
  background:#ff6600;
}
.apartment_work_item h3{
  font-size:20px;
  line-height:1.5;
  font-weight:bold;
}
.apartment_work_info{
  padding:30px;
}
.apartment_work_info .work_tit{
  background:#e15b01;
  color:#fff414;
  text-align:center;
  border-radius:30px;
  padding:5px;
  margin:0 0 15px;
  font-weight:bold;
  font-size:22px;
}
.apartment_work_info h3{
  color:#fff;
  margin:0 0 20px;
}
.apartment_work_comment{
  background:#fff;
  padding:20px;
  border-radius:10px;
}
.apartment_work_comment dl:first-child{
  margin:0 0 20px;
}
.apartment_work_comment dt{
  display:table;
  background:#fff;
  padding:3px 15px;
  font-weight:bold;
  background:#ff6600;
  color:#fff;
  border-radius:6px;
}
.apartment_work_comment dd{
  font-weight:bold;
}

.apartment_trouble{
  background:#ddd;
  padding:0 0 50px;
}
.apartment_trouble h2{
  font-size:45px;
  font-weight:bold;
  padding:30px 20px;
  background:#666;
  text-align:center;
  letter-spacing: 0.1em;
  color:#fff;
}
.apartment_trouble .apartment_trouble_read{
  font-size:32px;
  text-align:center;
  padding:40px 0;
  font-weight:bold;
  letter-spacing: 0.1em;
  line-height:1.6;
}
.apartment_trouble .apartment_trouble_read span{
  position:relative;
  display:inline-block;
  z-index:1;
}
.apartment_trouble .apartment_trouble_read span::before{
  position:absolute;
  bottom:5px;
  width:100%;
  height:14px;
  background:#ffdf64;
  content:"";
  z-index:-1;
}
.apartment_trouble_list{
  border-radius:30px;
  padding:50px;
  width:70%;
  margin:40px auto 0;
  background:#fff;
}
.apartment_trouble_list li{
  position:relative;
  padding:0 0 0 50px;
  margin:0 0 20px;
  font-size:24px;
  font-weight:bold;
}
.apartment_trouble_list li:last-child{
  margin:0;
}
.apartment_trouble_list li::before{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  margin:auto;
  width:40px;
  height:31px;
  background-image:url(../images/trouble_check.png);
  background-size:cover;
  content:"";
}




.apartment_importance{
  padding:80px 0;
}
.apartment_importance_list{
  padding:50px;
  background:#ff6600;
  border-radius:30px;
}
.apartment_importance_item{
  display:flex;
  align-items: flex-start;
  gap:40px;
  padding:30px;
  margin:0 0 30px;
  background:#fff;
  border-radius:20px;
}
.apartment_importance_item:last-child{
  margin:0;
}
.apartment_importance_item figure{
  position:relative;
  width:400px;
}
.apartment_importance_item figure::before{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  width:calc(100% - 20px);
  height:calc(100% - 20px);
  border:1px solid #fff;
  content:"";
}
.apartment_importance_info{
  flex:1;
}
.apartment_importance_info h3{
  font-size:30px;
  font-weight:bold;
  margin:0 0 20px;
  color:#ff6600;
}
.apartment_importance_info h3 span{
  font-size:16px;
  display:table;
  font-weight:bold;
  background:#ff6600;
  color:#fff;
  padding:0 20px;
  margin:0 0 10px;
  border-radius:8px;
}
.apartment_importance_info h3 strong{
  font-size:24px;
}

.apartment_feature{
  padding:80px 0;
  background: url(../images/warehouse/warehouse_feature_bg.jpg) repeat center / contain;
  background-color: rgba(255, 255, 255, 0.85);
  background-blend-mode: lighten;
}
.apartment_feature_list{
  display:flex;
  gap:30px;
}
.apartment_feature_item{
  width:100%;
}
.apartment_feature_item figure{
  position:relative;
  margin:0 0 20px;
}
.apartment_feature_item figure::before{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  width:calc(100% - 20px);
  height:calc(100% - 20px);
  border:1px solid #fff;
  content:"";
}
.apartment_feature_info h3{
  font-size:24px;
  font-weight:bold;
  color:#ff6600;
  margin:0 0 15px;
}

.apartment_greeting{
  padding:80px 0;
  background: url(../images/warehouse/warehouse_feature_bg.jpg) repeat center / contain;
  background-color: rgba(255, 255, 255, 0.85);
  background-blend-mode: lighten;
}
.apartment_greeting_flex{
  display:flex;
  gap:40px;
  margin:0 0 50px;
}
.apartment_greeting_info{
  flex:1;
}
.apartment_greeting_info h3{
  font-size:24px;
  font-weight:bold;
  /* line-height:1.5; */
  margin:0 0 24px;
	border-bottom:2px solid #ff6600;
	color:#ff6600;
}
.apartment_greeting_info h3 span{
  display:block;
  font-size:18px;
  color:#333;
}
.apartment_greeting_list{
  margin:20px 0 0;
}
.apartment_greeting_list dl{
  display:flex;
}
.apartment_greeting_list dl:not(:last-child){
  margin:0 0 10px;
}
.apartment_greeting_list dt{
  width:100px;
  color:#fff;
  font-weight:bold;
  background:#ff6600;
  text-align:center;
  padding:5px;
}
.apartment_greeting_list dd{
  flex:1;
  font-weight:bold;
  padding:5px 10px;
  border:2px solid #ff6600;
}
.apartment_greeting_img{
  width:615px;
  position:relative;
}
.apartment_greeting_img01{
  position:relative;
  width:550px;
  margin:0 0 0 auto;
}
.apartment_greeting_img01::before{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  width:calc(100% - 20px);
  height:calc(100% - 20px);
  border:1px solid #fff;
  content:"";
}
.apartment_greeting_img02{
  position:relative;
  margin:-180px 0 0;
  width:280px;
}
.apartment_greeting_img02::before{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  width:calc(100% - 20px);
  height:calc(100% - 20px);
  border:1px solid #fff;
  content:"";
}

.apartment_promise{
  padding:80px 0;
  background:#fff8dd;
}
.apartment_promise_list{
  gap:30px;
}
.apartment_promise_item{
  position:relative;
  display:flex;
  gap:40px;
  padding:40px;
  border-radius:20px;
}
.apartment_promise_item:nth-child(even){
  flex-direction: row-reverse;
}
/* .apartment_promise_item::before{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  width:calc(100% - 20px);
  height:calc(100% - 20px);
  border:1px solid #ff6600;
  border-radius:14px;
  content:"";
} */
.apartment_promise_item figure{
  width:320px;
}
.apartment_promise_item figure img{
  border-radius:10px;
}
.apartment_promise_item .apartment_promise_info{
  flex:1;
}
.apartment_promise_item h3{
  gap:20px;
  font-size:28px;
  font-weight:bold;
  margin:0 0 15px;
  padding:10px 20px;
  border-radius:6px;
  background:#fff;
  letter-spacing: 0.1em;
  border-bottom:2px solid #ff6600;
}
.apartment_promise_item h3 span{
  color:#ff6600;
}
.apartment_promise_item p{
  font-weight:bold;
  letter-spacing: 0.1em;
  line-height:2;
  padding:10px 0 0;
}

.apartment_cta{
  background:#ff6600;
  padding:40px 0;
}
.apartment .footer_contact {
  position:relative;
  background:#fff;
  border-radius:30px;
}
.apartment .footer_contact .tit01{
  border-bottom: none;
}
.apartment .footer_contact li{
  border: 1px solid #ff6600;
  border-top: 10px solid #ff6600;
}
.apartment .footer_contact li a{
  background: #ff6600;
  border: 1px solid #ff6600;
}



.apartment_flow{
  padding:80px 0;
}
.apartment_flow_list{
  position:relative;
  background:#fff0e6;
  padding:50px;
  border-radius:30px;
}
.apartment_flow_item{
  position:relative;
  display:flex;
  margin:0 0 30px;
}
.apartment_flow_item:last-child{
  margin:0;
}
.apartment_flow_item::before{
  position:absolute;
  bottom:-30px;
  left:39px;
  width:2px;
  height:30px;
  background:#ff6600;
  content:"";
}
.apartment_flow_item:last-child::before{
  content:none;
}
.apartment_flow_num{
  display:flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width:80px;
  background:#ff6600;
  color:#fff;
  font-size:36px;
  font-weight:bold;
  line-height:1;
  border-radius:20px 0 0 20px;
}
.apartment_flow_num span{
  font-size:14px;
  line-height:1;
}
.apartment_flow_info{
  padding: 30px;
  flex:1;
  background:#fff;
  border-radius:0 20px 20px 0;
}
.apartment_flow_info h3{
  font-size:24px;
  font-weight:bold;
  margin:0 0 10px;
  color:#ff6600;
}

.apartment_contact{
  padding:0 0 80px;
}


/*==================================================================

  CSSアニメーション

==================================================================*/
.img-wrap {
  overflow: hidden;
  position: relative;
}

.img-wrap::before{
  background: #DD8140;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.img-wrap.is-visible:before {
  animation: img-wrap 0.6s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes img-wrap {
  100% {
    transform: translateX(100%);
  }
}


/* フェードイン */
.fadeIn{
  opacity: 0;
  visibility: visible;
}
.is-visible.fadeIn{
  animation: fadeIn 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
}
@keyframes fadeIn {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

/* フェードイン（下→上） */
.fadeInUp{
  opacity: 0;
  visibility: visible;
}
.is-visible.fadeInUp{
  animation: fadeInUp 0.8s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
  animation-delay: 0s;
}
.is-visible.fadeInUp.s01{
  animation: fadeInUp 0.8s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
  animation-delay: 0.1s;
}
.is-visible.fadeInUp.s02{
  animation: fadeInUp 0.8s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
  animation-delay: 0.2s;
}
.is-visible.fadeInUp.s03{
  animation: fadeInUp 0.8s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
  animation-delay: 0.3s;
}
.is-visible.fadeInUp.s04{
  animation: fadeInUp 0.8s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
  animation-delay: 0.4s;
}
@keyframes fadeInUp {
  0%{
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  80%{
    opacity: 1;
  }
  100%{
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* フェードイン（右→左） */
.fadeInRight{
  opacity: 0;
  visibility: visible;
}
.is-visible.fadeInRight{
  animation: fadeInRight 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
}
@keyframes fadeInRight {
  0%{
    opacity: 0;
    transform: translate3d(100%, 0, 0);;
  }
  80%{
    opacity: 1;
  }
  100%{
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* フェードイン（左→右） */
.fadeInLeft{
  opacity: 0;
  visibility: visible;
}
.is-visible.fadeInLeft{
  animation: fadeInLeft 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
}
@keyframes fadeInLeft {
  0%{
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  80%{
    opacity: 1;
  }
  100%{
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* フリップ（右回転） */
.flipRight{
  opacity: 0;
  visibility: visible;
}
.is-visible.flipRight{
  animation: flipRight 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
  transform: rotateY(-180deg);
}
@keyframes flipRight {
  0%{
    opacity: 0;
    transform: rotateY(-180deg);
  }
  100%{
    opacity: 1;
    transform: rotateY(0deg);
  }
}

/* フリップ（左回転） */
.flipLeft{
  opacity: 0;
  visibility: visible;
  transform: rotateY(180deg);
}
.is-visible.flipLeft{
  animation: flipLeft 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
}
@keyframes flipLeft {
  0%{
    opacity: 0;
    transform: rotateY(180deg);
  }
  100%{
    opacity: 1;
    transform: rotateY(0deg);
  }
}

/* 恒常的に動くアニメーション */

/* ゆっくり回転（右回転） */
.rotateRight{
  animation: rotateRight 20s linear infinite;
}
@keyframes rotateRight {
  0%{
    transform: rotate(0deg);
  }
  100%{
    opacity: 1;
    transform: rotate(360deg);
  }
}

/* ゆっくり回転（左回転） */
.rotateLeft{
  animation: rotateLeft 20s linear infinite;
}
@keyframes rotateLeft {
  0%{
    transform: rotate(0deg);
  }
  100%{
    opacity: 1;
    transform: rotate(-360deg);
  }
}

/* 浮遊（基準点から上） */
.floatingUp{
  animation: floatingUp 10s ease-in-out infinite;
}
@keyframes floatingUp {
  0%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-30px);
  }
  100%{
    transform: translateY(0);
  }
}

/* 浮遊（基準点から下） */
.floatingDown{
  animation: floatingDown 10s ease-in-out infinite;
}
@keyframes floatingDown {
  0%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(30px);
  }
  100%{
    transform: translateY(0);
  }
}

/* 生き物が跳ねる（鳥、リスなど） */
.jumping{
  position: relative;
  animation: jumping 1s ease-in-out infinite;
}
@keyframes jumping{
	0%{
		top: 0;
	}
	10%{
		top: -5px;
	}
	20%{
		top: 0px;
	}
	30%{
		top: -5px;
	}
	40%{
		top: 0px;
	}
	100%{
		top: 0px;
	}
}

/*common*/
.pc_inline{display:inline!important}.sp_inline{display:none!important}.sp_inline_ip{display:none!important}.pc_table{display:none!important}.sp_table{display:none!important}
address,body,dd,dl,dt,form,h1,h2,h3,h4,h5,h6,option,p,pre,select{margin:0;padding:0;-webkit-text-size-adjust:100%}img{vertical-align:middle;}iframe{vertical-align:middle;}li,ul{list-style:none;margin:0;padding:0}a img{border:none}.w010par{width:10%}.w020par{width:20%}.w025par{width:25%}.w050par{width:50%}.w075par{width:75%}.w100par{width:100%}.w010{width:10px}.w020{width:20px}.w030{width:30px}.w040{width:40px}.w050{width:50px}.w060{width:60px}.w070{width:70px}.w080{width:80px}.w090{width:90px}.w100{width:100px}.w110{width:110px}.w120{width:120px}.w130{width:130px}.w140{width:140px}.w150{width:150px}.w160{width:160px}.w170{width:170px}.w180{width:180px}.w190{width:190px}.w200{width:200px}.w210{width:210px}.w220{width:220px}.w230{width:230px}.w240{width:240px}.w250{width:250px}.w255{width:255px}.w260{width:260px}.w270{width:270px}.w280{width:280px}.w290{width:290px}.w300{width:300px}.w305{width:305px}.w310{width:310px}.w320{width:320px}.w330{width:330px}.w340{width:340px}.w350{width:350px}.w360{width:360px}.w365{width:365px}.w370{width:370px}.w380{width:380px}.w390{width:390px}.w400{width:400px}.w410{width:400px}.w415{width:415px}.w420{width:420px}.w430{width:430px}.w435{width:435px}.w440{width:440px}.w450{width:450px}.w460{width:460px}.w470{width:470px}.w480{width:480px}.w490{width:490px}.w500{width:500px}.w510{width:510px}.w520{width:520px}.w530{width:530px}.w540{width:540px}.w550{width:550px}.w560{width:560px}.w570{width:570px}.w580{width:580px}.w590{width:590px}.w600{width:600px}.w610{width:610px}.w620{width:620px}.w630{width:630px}.w640{width:640px}.w650{width:650px}.w660{width:660px}.w670{width:670px}.w680{width:680px}.w690{width:690px}.w700{width:700px}.w710{width:710px}.w720{width:720px}.w730{width:730px}.w740{width:740px}.w750{width:750px}.w760{width:760px}.w765{width:765px}.w960{width:960px}.w980{width:980px}.h030{height:30px}.h180{height:180px}.h190{height:190px}.h200{height:200px}.h240{height:240px}.h250{height:250px}.h280{height:280px}.h300{height:300px}.h350{height:350px}.mt00{margin-top:0!important}.mt01{margin-top:1px}.mt02{margin-top:2px}.mt03{margin-top:3px}.mt04{margin-top:4px}.mt05{margin-top:5px}.mt06{margin-top:6px}.mt07{margin-top:7px}.mt08{margin-top:8px}.mt09{margin-top:9px}.mt10{margin-top:10px}.mt15{margin-top:15px}.mt20{margin-top:20px}.mt25{margin-top:25px}.mt30{margin-top:30px}.mt35{margin-top:35px}.mt40{margin-top:40px}.mt45{margin-top:45px}.mt50{margin-top:50px}.mt60{margin-top:60px}.mt70{margin-top:70px}.mt80{margin-top:80px}.mt90{margin-top:90px}.mt100{margin-top:100px}.mt110{margin-top:110px}.mt120{margin-top:120px}.mr00{margin-right:0!important}.mr01{margin-right:1px}.mr02{margin-right:2px}.mr03{margin-right:3px}.mr04{margin-right:4px}.mr05{margin-right:5px}.mr06{margin-right:6px}.mr07{margin-right:7px}.mr08{margin-right:8px}.mr09{margin-right:9px}.mr10{margin-right:10px}.mr15{margin-right:15px}.mr20{margin-right:20px}.mr25{margin-right:25px}.mr30{margin-right:30px}.mr35{margin-right:35px}.mr40{margin-right:40px}.mr45{margin-right:45px}.mr50{margin-right:50px}.mr60{margin-right:60px}.mr70{margin-right:70px}.mr80{margin-right:80px}.mr90{margin-right:90px}.mr100{margin-right:100px}.mb00{margin-bottom:0!important}.mb01{margin-bottom:1px}.mb02{margin-bottom:2px}.mb03{margin-bottom:3px}.mb04{margin-bottom:4px}.mb05{margin-bottom:5px}.mb06{margin-bottom:6px}.mb07{margin-bottom:7px}.mb08{margin-bottom:8px}.mb09{margin-bottom:9px}.mb10{margin-bottom:10px}.mb15{margin-bottom:15px}.mb20{margin-bottom:20px}.mb25{margin-bottom:25px}.mb30{margin-bottom:30px}.mb35{margin-bottom:35px}.mb40{margin-bottom:40px}.mb45{margin-bottom:45px}.mb50{margin-bottom:50px}.mb60{margin-bottom:60px}.mb70{margin-bottom:70px}.mb80{margin-bottom:80px}.mb90{margin-bottom:90px}.mb100{margin-bottom:100px}.ml00{margin-left:0!important}.ml01{margin-left:1px}.ml02{margin-left:2px}.ml03{margin-left:3px}.ml04{margin-left:4px}.ml05{margin-left:5px}.ml06{margin-left:6px}.ml07{margin-left:7px}.ml08{margin-left:8px}.ml09{margin-left:9px}.ml10{margin-left:10px}.ml12{margin-left:12px}.ml15{margin-left:15px}.ml20{margin-left:20px}.ml25{margin-left:25px}.ml30{margin-left:30px}.ml35{margin-left:35px}.ml40{margin-left:40px}.ml45{margin-left:45px}.ml50{margin-left:50px}.ml60{margin-left:60px}.ml70{margin-left:70px}.ml80{margin-left:80px}.ml90{margin-left:90px}.ml100{margin-left:100px}.ml140{margin-left:140px}.ml160{margin-left:160px}.ma10{margin:10px}.ma15{margin:15px}.ma_auto{margin-left:auto;margin-right:auto}.pt00{padding-top:0!important}.pt01{padding-top:1px}.pt02{padding-top:2px}.pt03{padding-top:3px}.pt04{padding-top:4px}.pt05{padding-top:5px}.pt06{padding-top:6px}.pt07{padding-top:7px}.pt08{padding-top:8px}.pt09{padding-top:9px}.pt10{padding-top:10px}.pt15{padding-top:15px}.pt20{padding-top:20px}.pt25{padding-top:25px}.pt30{padding-top:30px}.pt35{padding-top:35px}.pt40{padding-top:40px}.pt45{padding-top:45px}.pt50{padding-top:50px}.pt60{padding-top:60px}.pt70{padding-top:70px}.pt80{padding-top:80px}.pt90{padding-top:90px}.pt100{padding-top:100px}.pt120{padding-top:120px}.pr00{padding-right:0!important}.pr01{padding-right:1px}.pr02{padding-right:2px}.pr03{padding-right:3px}.pr04{padding-right:4px}.pr05{padding-right:5px}.pr06{padding-right:6px}.pr07{padding-right:7px}.pr08{padding-right:8px}.pr09{padding-right:9px}.pr10{padding-right:10px}.pr15{padding-right:15px}.pr20{padding-right:20px}.pr25{padding-right:25px}.pr30{padding-right:30px}.pr35{padding-right:35px}.pr40{padding-right:40px!important}.pr45{padding-right:45px}.pr50{padding-right:50px}.pr60{padding-right:60px}.pr70{padding-right:70px}.pr80{padding-right:80px}.pr90{padding-right:90px}.pr100{padding-right:100px}.pb00{padding-bottom:0!important}.pb01{padding-bottom:1px}.pb02{padding-bottom:2px}.pb03{padding-bottom:3px}.pb04{padding-bottom:4px}.pb05{padding-bottom:5px}.pb06{padding-bottom:6px}.pb07{padding-bottom:7px}.pb08{padding-bottom:8px}.pb09{padding-bottom:9px}.pb10{padding-bottom:10px}.pb15{padding-bottom:15px}.pb20{padding-bottom:20px}.pb25{padding-bottom:25px}.pb30{padding-bottom:30px}.pb35{padding-bottom:35px}.pb40{padding-bottom:40px}.pb45{padding-bottom:45px}.pb50{padding-bottom:50px}.pb60{padding-bottom:60px}.pb70{padding-bottom:70px}.pb80{padding-bottom:80px}.pb90{padding-bottom:90px}.pb100{padding-bottom:100px}.pl00{padding-left:0!important}.pl01{padding-left:1px}.pl02{padding-left:2px}.pl03{padding-left:3px}.pl04{padding-left:4px}.pl05{padding-left:5px}.pl06{padding-left:6px}.pl07{padding-left:7px}.pl08{padding-left:8px}.pl09{padding-left:9px}.pl10{padding-left:10px}.pl15{padding-left:15px}.pl20{padding-left:20px}.pl25{padding-left:25px}.pl30{padding-left:30px}.pl35{padding-left:35px}.pl40{padding-left:40px}.pl45{padding-left:45px}.pl50{padding-left:50px}.pl60{padding-left:60px}.pl70{padding-left:70px}.pl80{padding-left:80px}.pl90{padding-left:90px}.pl100{padding-left:100px}.pa01{padding:1px}.pa02{padding:2px}.pa03{padding:3px}.pa04{padding:4px}.pa05{padding:5px}.pa10{padding:10px}.pa15{padding:15px}.fr{float:right}.fl{float:left}.fr10{float:right;margin-left:10px}.fr15{float:right;margin-left:15px}.fr30{float:right;margin-left:15px}.fl10{float:left;margin-right:10px}.fl15{float:left;margin-right:15px}.fl30{float:left;margin-right:30px}.txt10{font-size:10px}.txt11{font-size:11px}.txt12{font-size:12px}.txt13{font-size:13px}.txt14{font-size:14px}.txt15{font-size:15px}.txt16{font-size:16px}.txt17{font-size:17px}.txt18{font-size:18px}.txt19{font-size:19px}.txt20{font-size:20px}.txt21{font-size:21px}.txt22{font-size:22px}.txt23{font-size:23px}.txt24{font-size:24px}.txt25{font-size:25px}.txt26{font-size:26px}.txt27{font-size:27px}.txt28{font-size:28px}.txt29{font-size:29px}.txt30{font-size:30px}.txt31{font-size:31px}.txt32{font-size:32px}.txt33{font-size:33px}.txt34{font-size:34px}.txt35{font-size:35px}.txt36{font-size:36px}.txt37{font-size:37px}.txt38{font-size:38px}.txt39{font-size:39px}.txt40{font-size:40px}.bold{font-weight:700}.left{text-align:left!important}.center{text-align:center!important}.right{text-align:right}.clear{clear:both}.v_top{vertical-align:top}.v_mid{vertical-align:middle}.v_btm{vertical-align:bottom}.color_red{color:#f33}.color_pink{color:#ed8c96}.color_blue{color:#00408f}.color_green{color:#479f9d}.color_ore{color:#ff8327}.color_yellow{color:#ffeb8b}.color_beige{color:#dac58b}.color_brown{color:#9b8052}.color_navy{color:#1f2774}.color_black{color:#3e3a39}.ls_0{letter-spacing:0}.ls_1{letter-spacing:1px}.indent{margin-left:1em!important;text-indent:-1em}.line_h_2{line-height:2!important}.clearfix:after{display:block;clear:both;content:""}.sp{display:none!important}