/*---------------------------------------《全体の設定》--------------------------------------------------- */ 

/*はみ出る要素を非表示 */
body{overflow-x:hidden !important;}
div.ccm-page{overflow-x:hidden !important;}

a:focus, button:focus {
    outline: none !important;
}

/*波背景-a */
.back-nami-a{position:relative !important;
             margin-top:-9.5% !important;
             z-index:2 !important;}

/*記事リストの間隔幅 */
div.ccm-page div.ccm-block-page-list-page-entry-horizontal, div.ccm-page div.ccm-block-page-list-page-entry{
  padding-bottom:20px !important;
  margin-bottom:20px !important;}

/*ホバーで半調設定 */
.opacity-90:hover{opacity:0.9;}
.opacity-90 a:hover{opacity:0.9;}

.opacity-80:hover{opacity:0.8;}
.opacity-80 a:hover{opacity:0.8;}


 /* スクロールしたらふわっとフェードイン */
 .effect-fade {
  opacity: 0;
  transform: translate(0, 100px); /* フェードインで動く高さを指定 */
  transition: all 1300ms; /* フェードインにかかる時間を指定 */
}
.effect-fade-B {
  opacity: 0;
  transform: translate(0, 0px); /* フェードインで動く高さを指定 */
  transition: all 3000ms; /* フェードインにかかる時間を指定 */
}
.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}


/* スクロールで横からスライドインしてくるB-試し */
.fade-in-leftB{opacity: 0;
  transition-duration: 1.5s;
  transform: translateX(-300px);}
.fade-in-leftB.effect{transform: translateX(0);
           opacity: 1;}
.fade-in-rightB{opacity: 0;
  transition-duration: 1.5s;
  transform: translateX(300px);
 }
.fade-in-rightB.effect{transform: translateX(0);
         opacity: 1;}
         
.fade-in-leftC{opacity: 0;
  transition-duration: 1s;
  transform: translateX(-300px);
  }
.fade-in-leftC.effect{transform: translateX(0);
         opacity: 1;}                         
.fade-in-rightC{opacity: 0;
  transition-duration: 1s;
  transform: translateX(300px);
  }
.fade-in-rightC.effect{transform: translateX(0);
          opacity: 1;}                         
    

.fade-in-leftD{opacity: 0;
  transition-duration: 0.6s;
  transform: translateX(-300px);
  }
.fade-in-leftD.effect{transform: translateX(0);
         opacity: 1;}                                   
.fade-in-rightD{opacity: 0;
  transition-duration: 0.6s;
  transform: translateX(300px);
 }
.fade-in-leftD.effect{transform: translateX(0);
                  opacity: 1;}    


/* スクロールで横からスライドインしてくる */
.fade-in-right {
animation-name:fade-in-rightAnime;
animation-duration:0.8s;
animation-fill-mode:forwards;
opacity: 0;


}
@keyframes fade-in-rightAnime{
from {
opacity: 0;
transform: translateX(100px);
}

to {
opacity: 1;
transform: translateX(0);
}
}



/*庵地衛生様用詳しく見るボタン */
/* From uiverse.io */
button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
 }
 
 button.learn-more {
  width: 18rem;
  height: auto;
  margin-left:20% !important;
  margin-right:20% !important;
  transform:scale(0.9) !important;
 }
/* 480px以下に適用されるCSS（スマホ用）  */
@media screen and (max-width: 480px){
button.learn-more{  width: 11rem;
                    height: auto;
                    margin-left:20% !important;
                    margin-right:20% !important;
                    transform:scale(0.9) !important;
                    margin-bottom:15px !important;}}
    
 button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #00a0e9;
  border-radius: 1.625rem;
 }
 /* 480px以下に適用されるCSS（スマホ用）  */
@media screen and (max-width: 480px){
    button.learn-more .circle {width:2.5rem;
                               height:2.5rem;}}

 
 button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
 }
 
 button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.725rem;
  width: 1.125rem;
  height: 0.08rem;
  background: none;
 }
 
 button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.225rem solid #fff;
  border-right: 0.225rem solid #fff;
  transform: rotate(45deg);
 }
 
 button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: -2px !important;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.4rem 0;
  margin: 0 0 0 1.85rem;
  color: #787878;
  font-weight: 600;
  line-height: 2.2em;
  text-align: center;
  text-transform: uppercase;
 }
 
 button:hover .circle {
  width: 100%;
 }
 
 button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
 }
 
 button:hover .button-text {
  color: #fff;
 }


/*庵地衛生様用詳しく見るボタンーＢ */
/* From uiverse.io */
button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
 }
 
 button.learn-more-b {
  width: 18rem;
  height: auto;
  left:20% !important;
  right:45% !important;
  transform:scale(0.9) !important;

 }
 
 button.learn-more-b .circle-b {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #fff;
  border-radius: 1.625rem;
 }
 
 button.learn-more-b .circle-b .icon-b {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #00a0e9;
 }
 
 button.learn-more-b .circle-b .icon-b.arrow-b {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.725rem;
  width: 1.125rem;
  height: 0.08rem;
  background: none;
 }
 
 button.learn-more-b .circle-b .icon-b.arrow-b::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.225rem solid #00a0e9;
  border-right: 0.225rem solid #00a0e9;
  transform: rotate(45deg);
 }
 
 button.learn-more-b .button-text-b {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: -2px !important;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.4rem 0;
  margin: 0 0 0 1.85rem;
  color: #fff;
  font-weight: 600;
  line-height: 2.2em;
  text-align: center;
  text-transform: uppercase;
 }
 
 button:hover .circle-b {
  width: 100%;
 }
 
 button:hover .circle-b .icon-b.arrow-b {
  background: #00a0e9;
  transform: translate(1rem, 0);
 }
 
 button:hover .button-text-b {
  color: #00a0e9;
 }




/* ボタンｰフッター用 */
.button-ft{font-family: 'Noto Sans JP', sans-serif !important;}
.button-ft a {
   background: none;
   border-radius: 50px;
   position: relative;
   display: flex;
   justify-content: space-around;
   align-items: center;
   max-width: 80%;
   padding: 5px 25px 7px 25px;
   color: #fff !important;
   transition: 0.3s ease-in-out;
   font-weight: 500;
   font-size:0.8em;
   text-decoration: none;
   background-color:#00a0e9;
   border: #00a0e9 1px solid;

}
.button-ft a:hover {
   background: #fff;
   color: #00a0e9 !important;
   border-color:#fff !important;}

.button-ft a:after {
   content: '';
   width: 10px;
   height: 10px;
   border-top: 2px solid #fff;
   border-right: 2px solid #fff;
   transform: rotate(45deg) translateY(-50%);
   position: absolute;
   top: 50%;
   right: 20px;
   border-radius: 1px;
   transition: 0.3s ease-in-out;
   text-decoration: none;
}
.button-ft a:hover:after {
   border-color: #00a0e9;}   



/*Googleマップのレスポンシブ設定 */ 
.map{ 
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  }
 .map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  }  
  
  .row3{display:flex !important;
    align-items:center !important;
    justify-content:space-evenly !important;
    }
       /* 615px以下に適用されるCSS（スマホ用）  */
       @media screen and (max-width: 615px){
        .row3{display:block !important;}}


/*テーブルの余白設定 */                
table td,th{padding-left:10px !important;
  padding-right:10px !important;
  font-size:0.9em !important;
  }
  /* 480px以下に適用されるCSS（スマホ・タブレット用） */
 @media screen and (max-width: 480px) {
  table td,th{font-size:0.5em;}}

/*テーブルのX軸画面からはみ出た部分をスクロールさせる */  
.table-scroll{overflow-x:auto !important;
            white-space:nowrap !important;}

.drop-shadow-a{filter:drop-shadow(0px 0px 2px #231815) !important;}
.drop-shadow-b{filter:drop-shadow(0px 0px 2px #7c7c7c) !important;}

/*バブルの調整 */  
.bubbles{
  width:160px;
  padding-left:20px;
  position:absolute;
  bottom:0;
  margin-left:-90px;
  left:3%;
  display:inline-block;
}

.bubble{
  -webkit-animation:short-bubble 1500ms linear infinite;
  animation:short-bubble 1500ms linear infinite;
  -webkit-animation-fill-mode:forwards;
  animation-fill-mode:forwards;
  height:10px;
  width:9px;
  border:1px solid rgba(240,240,240,0.5);
  border-radius:50%;
}

.b2{
  -webkit-animation:medium-bubble 5000ms linear infinite;
  animation:medium-bubble 5000ms linear infinite;
  -webkit-animation-fill-mode:forwards;
  animation-fill-mode:forwards;
  margin-left:-7px;
  margin-top:25px;
  height:13px;
  width:12px;
}

.b3{
  -webkit-animation-duration:3500ms;
  animation-duration:3500ms;
  margin-left:-5px;
  margin-bottom:10px;
}

.b4{
  -webkit-animation-duration:2000ms;
  animation-duration:2000ms;
  -webkit-animation-fill-mode:forwards;
  animation-fill-mode:forwards;
  margin:0 0 40px -9px;
  height:7px;
  width:6px;
}

.b5{
  -webkit-animation:medium-bubble 3000ms linear infinite;
  animation:medium-bubble 3000ms linear infinite;
  -webkit-animation-fill-mode:forwards;
  animation-fill-mode:forwards;
  margin-left:-1px;
  margin-top:100px;
  height:5px;
  width:4px;
}

.b6{
  -webkit-animation-duration:3000ms;
  animation-duration:3000ms;
  margin-left:-8px;
  margin-bottom:50px;
}

.b7{
  -webkit-animation-duration:6000ms;
  animation-duration:6000ms;
  margin-left:-3px;
  margin-bottom:50px;
  height:7px;
  width:6px;
}

.b8{
  -webkit-animation:medium-bubble 2000ms linear infinite;
  -webkit-animation-fill-mode:forwards;
  animation:medium-bubble 2000ms linear infinite;
  animation-fill-mode:forwards;
  margin-left:-13px;
  margin-bottom:30px;
}

@-webkit-keyframes short-bubble{
  0%{ -webkit-transform:translate3d(5px, 0, 0);opacity:0; }
  13%{ -webkit-transform:translate3d(2px, -20px, 0); opacity:1; }
  20%{ -webkit-transform:translate3d(5px, -40px, 0) scale(1.2); }
  30%{ -webkit-transform:translate3d(0, -60px, 0); }
  40%{ -webkit-transform:translate3d(8px, -80px, 0); }
  50%{ -webkit-transform:translate3d(3px, -100px, 0); }
  60%{ -webkit-transform:translate3d(8px, -120px, 0); }
  70%{ opacity:0.4; }
  80%, 100%{ -webkit-transform:translate3d(0,-200px, 0); opacity:0; }
}

@keyframes short-bubble{
  0%{ transform:translate3d(5px, 0, 0);opacity:0; }
  13%{ transform:translate3d(2px, -20px, 0); opacity:1; }
  20%{ transform:translate3d(5px, -40px, 0) scale(1.2); }
  30%{ transform:translate3d(0px, -60px, 0); }
  40%{ transform:translate3d(8px, -80px, 0); }
  50%{ transform:translate3d(3px, -100px, 0); }
  60%{ transform:translate3d(8px, -120px, 0); }
  70%{ opacity:0.4; }
  80%, 100%{ transform:translate3d(0,-200px, 0); opacity:0; }
}

@-webkit-keyframes medium-bubble{
  0%{ -webkit-transform:translate3d(0, 0, 0); opacity:0;}
  5%{ -webkit-transform:translate3d(4px, -20px, 0); opacity:1;}
  10%{ -webkit-transform:translate3d(2px, -40px, 0) rotate(10deg); }
  20%{ -webkit-transform:translate3d(7px, -80px, 0) rotate(14deg) scale(0.7); }
  30%{ -webkit-transform:translate3d(5px, -120px, 0) rotate(15deg); }
  40%{ -webkit-transform:translate3d(1px, -160px, 0) rotate(20deg); }
  50%{ -webkit-transform:translate3d(2px, -200px, 0) rotate(18deg) scale(1.1); }
  60%{ -webkit-transform:translate3d(-3px, -240px, 0) rotate(22deg); opacity:0.4; }
  100%{ -webkit-transform:translate3d(0, -400px, 0); opacity:0; }
}

@keyframes medium-bubble{
  0%{ transform:translate3d(0, 0, 0); opacity:0;}
  5%{ transform:translate3d(4px, -20px, 0); opacity:1;}
  10%{ transform:translate3d(2px, -40px, 0) rotate(10deg); }
  20%{ transform:translate3d(7px, -80px, 0) rotate(14deg) scale(0.7); }
  30%{ transform:translate3d(5px, -120px, 0) rotate(15deg); }
  40%{ transform:translate3d(1px, -160px, 0) rotate(20deg); }
  50%{ transform:translate3d(2px, -200px, 0) rotate(18deg) scale(1.1); }
  60%{ transform:translate3d(-3px, -240px, 0) rotate(22deg); opacity:0.4; }
  100%{ transform:translate3d(0, -400px, 0); opacity:0; }
}


/*バブルＢの調整 */  
.bubbles-b{
    width:160px;
    padding-left:20px;
    position:absolute;
    bottom:0;
    margin-left:-90px;
    left:90%;
    display:inline-block;
  }
  
  .bubble-b{
    -webkit-animation:short-bubble 1500ms linear infinite;
    animation:short-bubble 1500ms linear infinite;
    -webkit-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
    height:10px;
    width:9px;
    border:1px solid rgba(240,240,240,0.5);
    border-radius:50%;
  }
  
  .b2-b{
    -webkit-animation:medium-bubble 5000ms linear infinite;
    animation:medium-bubble 5000ms linear infinite;
    -webkit-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
    margin-left:-7px;
    margin-top:25px;
    height:13px;
    width:12px;
  }
  
  .b3-b{
    -webkit-animation-duration:3500ms;
    animation-duration:3500ms;
    margin-left:-5px;
    margin-bottom:10px;
  }
  
  .b4-b{
    -webkit-animation-duration:2000ms;
    animation-duration:2000ms;
    -webkit-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
    margin:0 0 40px -9px;
    height:7px;
    width:6px;
  }
  
  .b5-b{
    -webkit-animation:medium-bubble 3000ms linear infinite;
    animation:medium-bubble 3000ms linear infinite;
    -webkit-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
    margin-left:-1px;
    margin-top:100px;
    height:5px;
    width:4px;
  }
  
  .b6-b{
    -webkit-animation-duration:3000ms;
    animation-duration:3000ms;
    margin-left:-8px;
    margin-bottom:50px;
  }
  
  .b7-b{
    -webkit-animation-duration:6000ms;
    animation-duration:6000ms;
    margin-left:-3px;
    margin-bottom:50px;
    height:7px;
    width:6px;
  }
  
  .b8-b{
    -webkit-animation:medium-bubble 2000ms linear infinite;
    -webkit-animation-fill-mode:forwards;
    animation:medium-bubble 2000ms linear infinite;
    animation-fill-mode:forwards;
    margin-left:-13px;
    margin-bottom:30px;
  }
  
  @-webkit-keyframes short-bubble-b{
    0%{ -webkit-transform:translate3d(5px, 0, 0);opacity:0; }
    13%{ -webkit-transform:translate3d(2px, -20px, 0); opacity:1; }
    20%{ -webkit-transform:translate3d(5px, -40px, 0) scale(1.2); }
    30%{ -webkit-transform:translate3d(0, -60px, 0); }
    40%{ -webkit-transform:translate3d(8px, -80px, 0); }
    50%{ -webkit-transform:translate3d(3px, -100px, 0); }
    60%{ -webkit-transform:translate3d(8px, -120px, 0); }
    70%{ opacity:0.4; }
    80%, 100%{ -webkit-transform:translate3d(0,-200px, 0); opacity:0; }
  }
  
  @keyframes short-bubble-b{
    0%{ transform:translate3d(5px, 0, 0);opacity:0; }
    13%{ transform:translate3d(2px, -20px, 0); opacity:1; }
    20%{ transform:translate3d(5px, -40px, 0) scale(1.2); }
    30%{ transform:translate3d(0px, -60px, 0); }
    40%{ transform:translate3d(8px, -80px, 0); }
    50%{ transform:translate3d(3px, -100px, 0); }
    60%{ transform:translate3d(8px, -120px, 0); }
    70%{ opacity:0.4; }
    80%, 100%{ transform:translate3d(0,-200px, 0); opacity:0; }
  }
  
  @-webkit-keyframes medium-bubble-b{
    0%{ -webkit-transform:translate3d(0, 0, 0); opacity:0;}
    5%{ -webkit-transform:translate3d(4px, -20px, 0); opacity:1;}
    10%{ -webkit-transform:translate3d(2px, -40px, 0) rotate(10deg); }
    20%{ -webkit-transform:translate3d(7px, -80px, 0) rotate(14deg) scale(0.7); }
    30%{ -webkit-transform:translate3d(5px, -120px, 0) rotate(15deg); }
    40%{ -webkit-transform:translate3d(1px, -160px, 0) rotate(20deg); }
    50%{ -webkit-transform:translate3d(2px, -200px, 0) rotate(18deg) scale(1.1); }
    60%{ -webkit-transform:translate3d(-3px, -240px, 0) rotate(22deg); opacity:0.4; }
    100%{ -webkit-transform:translate3d(0, -400px, 0); opacity:0; }
  }
  
  @keyframes medium-bubble-b{
    0%{ transform:translate3d(0, 0, 0); opacity:0;}
    5%{ transform:translate3d(4px, -20px, 0); opacity:1;}
    10%{ transform:translate3d(2px, -40px, 0) rotate(10deg); }
    20%{ transform:translate3d(7px, -80px, 0) rotate(14deg) scale(0.7); }
    30%{ transform:translate3d(5px, -120px, 0) rotate(15deg); }
    40%{ transform:translate3d(1px, -160px, 0) rotate(20deg); }
    50%{ transform:translate3d(2px, -200px, 0) rotate(18deg) scale(1.1); }
    60%{ transform:translate3d(-3px, -240px, 0) rotate(22deg); opacity:0.4; }
    100%{ transform:translate3d(0, -400px, 0); opacity:0; }
  }

.enkaku{display:none;}


/*ページ上部へ戻る */ 
.hw-back-to-top i{left:7px;
    bottom:-4px;}

.ccm-responsive-menu-launch{z-index:201 !important;
                            position:fixed !important;}
/*タブレット・スマホ用ハンバーガーメニューの設定 */
/* 480px以下に適用されるCSS（Surface Pro7 横用） */
@media screen and (max-width: 480px) { 
.ccm-responsive-menu-launch{position:fixed !important;
                            margin-left:37% !important;
                            margin-top:-5px !important;}}
/* 410px以下に適用されるCSS（Surface Pro7 横用） */
@media screen and (max-width: 410px) { 
    .ccm-responsive-menu-launch{position:fixed !important;
                                margin-left:35% !important;
                                }}


.ccm-responsive-overlay{position:fixed !important;
                        z-index:200 !important;
                        background:rgba(255,255,255,0.9) !important;
                        border-bottom:#00a0e9 5px solid !important;
                        top:70px !important;
                        padding-top:50px !important;}
/* 480px以下に適用されるCSS（Surface Pro7 横用） */
@media screen and (max-width: 480px) { 
    .ccm-responsive-overlay{top:40px !important;}}


/*---------------------------------------《書体の設定》--------------------------------------------------- */ 

div.ccm-page main{color:#646464 !important;
                  font-family: 'Noto Sans JP', sans-serif !important;
                  line-height:1.8em !important;}
              /* 1368px以下に適用されるCSS（Surface Pro7 横用） */
              @media screen and (max-width: 1368px) {
                main{font-size:1em !important;
                     line-height:1.4em !important;}}
              /* 1180px以下に適用されるCSS（iPad air 横用） */
                 @media screen and (max-width: 1180px) {
                  main{font-size:1em !important;
                       line-height:1.4em !important;}}
              /* 1085px以下に適用されるCSS */
                 @media screen and (max-width: 1085px) {
                  main{font-size:0.8em !important;
                       line-height:1.4em !important;}}
              /* 480px以下に適用されるCSS（iPhoneSE 縦用） */
              @media screen and (max-width: 480px) {
                main{font-size:0.8em !important;
                     line-height:1.4em !important;}}

              /* 375px以下に適用されるCSS（iPhoneSE 縦用） */
              @media screen and (max-width: 375px) {
                main{font-size:0.8em !important;
                     line-height:1.4em !important;}}

.main-white{color:#fff !important;
      font-family: 'Noto Sans JP', sans-serif !important;
      line-height:1.8em !important;}
                 /* 480px以下に適用されるCSS（iPhoneSE 縦用） */
                 @media screen and (max-width: 480px) {
                  .main-white{font-size:0.8em !important;
                       line-height:1.4em !important;}}
                      
                  /* 375px以下に適用されるCSS（iPhoneSE 縦用） */
                  @media screen and (max-width: 375px) {
                  .main-white{font-size:0.8em !important;
                       line-height:1.4em !important;}}
  

div.ccm-page h1{font-family: 'Noto Sans JP', sans-serif !important;
              font-size:3.5em !important;
              letter-spacing:0.03em !important;
              color:#0040ae !important;}
/* 480px以下に適用されるCSS（iPhoneSE 縦用） */
@media screen and (max-width: 480px) {
    div.ccm-page h1{font-size:2.5em !important;}}

div.ccm-page .ccm-image-slider-container .ccm-image-slider-text h2{
  font-family: 'Zen Old Mincho', serif !important;
  color:#0040ae !important;
  font-weight:700 !important; 
  font-size:2.5em !important;
  margin-bottom:30px !important;
}


div.ccm-page h3{padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #646464;/*文字色*/
  background: transparent;/*背景透明に*/
  border-left: solid 5px #7db4e6;/*左線*/
  font-weight:700 !important;
  line-height:1.8em !important;
  font-size:1.4em !important;
  letter-spacing:0.03em !important;}
/* 1680px以下に適用されるCSS（スマホ・タブレット用） */
  @media screen and (max-width: 1680px) {
    div.ccm-page h3{font-size:1.3em !important;}}
/* 430px以下に適用されるCSS（スマホ・タブレット用） */
@media screen and (max-width: 430px) {
  div.ccm-page h3{font-size:1.0em !important;}}


div.ccm-page .ccm-image-slider-container .ccm-image-slider-text{width:1000px !important;
                                                                left:5% !important;}

.midashi-s{color:#646464 !important;
                font-family: 'Noto Sans JP', sans-serif !important;
                font-weight:700 !important;}
  /* 430px以下に適用されるCSS（スマホ・タブレット用） */
  @media screen and (max-width: 430px) {
    .midashi-s{font-size:0.7em !important;}}


.midashi-m{color:#646464 !important;
                  font-family: 'Noto Sans JP', sans-serif !important;
                  font-weight:700 !important;
                  line-height:1.8em !important;
                  font-size:1.4em !important;
                  letter-spacing:0.03em !important;}
  /* 1680px以下に適用されるCSS（スマホ・タブレット用） */
  @media screen and (max-width: 1680px) {
    .midashi-m{font-size:1.3em !important;}}
  /* 430px以下に適用されるCSS（スマホ・タブレット用） */
  @media screen and (max-width: 430px) {
    .midashi-m{font-size:1.0em !important;}}


.midashi-blue-s{color:#0040ae !important;
      font-family: 'Noto Sans JP', sans-serif !important;
      font-weight:700 !important;
      font-size:0.8em;}
/* 430px以下に適用されるCSS（スマホ・タブレット用） */
@media screen and (max-width: 430px) {
.midashi-blue-s{font-size:0.7em !important;}}


.midashi-blue-m{color:#0040ae !important;
        font-family: 'Noto Sans JP', sans-serif !important;
        font-weight:700 !important;
        line-height:1.8em !important;
        font-size:1.4em !important;
        letter-spacing:0.03em !important;}
/* 1680px以下に適用されるCSS（スマホ・タブレット用） */
@media screen and (max-width: 1680px) {
.midashi-m{font-size:1.3em !important;}}
/* 430px以下に適用されるCSS（スマホ・タブレット用） */
@media screen and (max-width: 430px) {
.midashi-m{font-size:1.0em !important;}}


.midashi-blue-l{color:#0040ae !important;
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight:700 !important;
    line-height:1.8em !important;
    font-size:2em !important;
    letter-spacing:0.03em !important;}
/* 1680px以下に適用されるCSS（スマホ・タブレット用） */
@media screen and (max-width: 1680px) {
.midashi-blue-l{font-size:1.6em !important;}}
/* 430px以下に適用されるCSS（スマホ・タブレット用） */
@media screen and (max-width: 430px) {
.midashi-blue-m{font-size:1.4em !important;}}

.midashi-white-m{color:#fff !important;
                    font-family: 'Noto Sans JP', sans-serif !important;
                    font-weight:700 !important;
                    line-height:1.8em !important;
                    font-size:1.4em !important;
                    letter-spacing:0.03em !important;
                    filter:drop-shadow(0px 0px 2px #231815) !important;}
  /* 1680px以下に適用されるCSS（スマホ・タブレット用） */
  @media screen and (max-width: 1680px) {
  .midashi-white-m{font-size:1.3em !important;}}
  /* 1199px以下に適用されるCSS（iPhoneSE 縦用） */
  @media screen and (max-width: 1199px) {
        .midashi-white-m{}}
  /* 430px以下に適用されるCSS（スマホ・タブレット用） */
  @media screen and (max-width: 430px) {
    .midashi-white-m{font-size:1.0em !important;}}

.midashi-aqua-s{color:#00a0e9 !important;
                      font-family: 'Noto Sans JP', sans-serif !important;
                      font-weight:700 !important;
                      font-size:0.8em;}
  /* 430px以下に適用されるCSS（スマホ・タブレット用） */
  @media screen and (max-width: 430px) {
    .midashi-aqua-s{font-size:0.7em !important;}}

.midashi-grade{position: relative;
               padding: 0.2em 1em;
               background: -webkit-linear-gradient(to right, #0040ae, transparent);
               background: linear-gradient(to right, #0040ae, transparent);
               color: #fff;
               font-size:1.3em}





/*---------------------------------------《ヘッダーの設定》--------------------------------------------------- */ 
div.ccm-page header{background-color:rgba(255,255,255,0.8) !important;
  position:fixed !important;
  z-index:6 !important;
  border-bottom:none !important;
  width:100% !important;}
/* 480px以下に適用されるCSS（PC用） */
@media screen and (max-width: 480px){
    div.ccm-page header{position:relative !important;
                        padding-top:10px !important;}}
/* 410px以下に適用されるCSS（PC用） */
@media screen and (max-width: 410px){
    div.ccm-page header{position:relative !important;
                        padding-top:0px !important;}}

div.ccm-page header nav ul li{margin-right:-20px !important;}

.header-navi{font-size:1em !important;
             font-family: 'Noto Sans JP', sans-serif !important;}
.header-navi a{font-size:0.9em !important;
               font-family: 'Noto Sans JP', sans-serif !important;}

.container-b{padding-right:5px !important;
             padding-left:5px !important;}

.row-2{margin-right:0px !important;
       margin-left:20px !important;}

/* 480px以下に適用されるCSS（スマホ用） */
@media screen and (max-width: 480px){
.hd-sitetitle{width:80% !important;
          margin-top:-5px;
          margin-bottom:5px;}}

/* 480px以下に適用されるCSS（スマホ用） */
.hd-title{padding-top:40px !important;}

.hd-title:hover{opacity:0.8 !important;}

/* 767px以下に適用されるCSS（PC用） */
@media screen and (max-width: 767px){
.hd-tel{width:30% !important;}}
/* 480px以下に適用されるCSS（PC用） */
@media screen and (max-width: 480px){
    .hd-tel{width:60% !important;}}

/*---------------------------------------《フッターの設定》--------------------------------------------------- */ 
div.ccm-page div.area-content-accent{display:none !important;}
footer#concrete5-brand{display:none !important;} 
footer#footer-theme section:last-child{background-color:#0040ae !important;}
.footer-navi{margin-top:30px !important;}
.footer-navi a{color:#fff !important;
               font-family: 'Noto Sans JP', sans-serif !important;}
.footer-navi a:hover{color:#abcbda !important;}
.footer-bottom{background-color:#fff !important;
               padding-top:3px !important;
               padding-bottom:3px !important;
               color:#0040ae !important;
               font-family: 'Noto Sans JP', sans-serif !important;
               font-weight:500 !important;
               font-size:0.9em !important;}

/*---------------------------------------《TOPページの設定》--------------------------------------------------- */ 

/*-------------------------ABOUt USの背景設定------------------------------------- */ 

.back-water-a{padding:500px 50px 50px 50px !important;}


.recruit-icon{position:fixed !important;
              right:0 !important;
              left:auto !important;
              z-index:5 !important;
              top:25% !important;
              width:50px !important;
             transition:0.3s !important;}
/* 480px以下に適用されるCSS（PC用） */
@media screen and (max-width: 480px){
    .recruit-icon{width:35px !important;
                  border:#fff 2px solid !important;}}

.recruit-icon:hover{transform:scale(1.1) !important;
                    transition:0.3s !important;}


/*-------------------------イメージスライダー------------------------------------- */ 

.rslides_tabs{position:relative ;
  z-index:10 ;
 text-align: center;
 margin-top:-40px ;
 }

div.ccm-page .ccm-image-slider-container .ccm-image-slider-text{top:30% !important;
                                                                left:20% !important;}
/* 1556px以下に適用されるCSS（タブレット・PC用） */
@media screen and (max-width: 1556px) {
div.ccm-page .ccm-image-slider-container .ccm-image-slider-text{top:30% !important;
                                                                left:13% !important;}}
/* 1078px以下に適用されるCSS（タブレット・PC用） */
@media screen and (max-width: 1078px){
div.ccm-page .ccm-image-slider-container .ccm-image-slider-text{top:230px !important;
                                                                  left:85px !important;}}
/* 530px以下に適用されるCSS（タブレット・スマホ用） */
@media screen and (max-width: 530px) {
div.ccm-page .ccm-image-slider-container .ccm-image-slider-text{top:20px !important;}}
/* 480px以下に適用されるCSS（スマホ用） */
@media screen and (max-width: 480px) {
    div.ccm-page .ccm-image-slider-container .ccm-image-slider-text{top:35px !important;
                                                                    left:-200px !important;
                                                                    transform:scale(0.53) !important;}}
/* 410px以下に適用されるCSS（スマホ用） */
@media screen and (max-width: 410px) {
    div.ccm-page .ccm-image-slider-container .ccm-image-slider-text{top:15px !important;
                                                                    left:-215px !important;
                                                                    transform:scale(0.53) !important;}}
/* 375px以下に適用されるCSS（スマホ用） */
@media screen and (max-width: 375px) {
    div.ccm-page .ccm-image-slider-container .ccm-image-slider-text{top:30px !important;}}

div.ccm-page .ccm-image-slider-container .ccm-image-slider-text p{font-family:'Noto Sans JP', sans-serif !important;}


.ccm-image-slider-container{background-image: none !important ;
                          }

div.ccm-page .ccm-image-slider-container .ccm-image-slider{padding-left:0px !important;
                                               padding-right:0px !important;}

div.ccm-page .ccm-image-slider-container{padding-top: 0 !important;
                             border-bottom:none !important;
                             margin-bottom:-17px !important;}

div.ccm-page .ccm-image-slider-container .ccm-image-slider .rslides li{max-height: 100% !important;}

div.ccm-page .ccm-image-slider-container .ccm-image-slider{width:100% !important;
                                               margin-left:0 !important;
                                               margin-right:0 !important;
                                               padding-left:0 !important;
                                               padding-right:0 !important;
                                               }

div.ccm-page .ccm-image-slider-container .ccm-image-slider-inner{margin:0 !important;
                                                     padding:0 !important;}
/*イメージスライダーの丸ナビ */ 
div.ccm-page .ccm-image-slider-container .rslides_tabs li a{width:10px !important;
                                                height:10px !important;
                                                margin-right:7px !important;}
/* 375px以下に適用されるCSS（タブレット用 */
@media screen and (max-width: 375px) {
    div.ccm-page .ccm-image-slider-container .rslides_tabs li a{width:6px !important;
                                                                height:6px !important;
                                                                margin-right:6px !important;
                                                                margin-top:30px !important;}}
/*イメージスライダーの丸ナビの上下余白調整 */  
/* 375px以下に適用されるCSS（iPhone SE 縦用） */
@media screen and (max-width: 375px) {
div.ccm-page .ccm-image-slider-container .rslides_tabs{padding-top:0px !important;
                                                       padding-bottom:0px !important;}}


/*イメージスライダーの丸ナビ現在表示 */  
div.ccm-page .ccm-image-slider-container .rslides_tabs li.rslides_here a{background-color: #5a321b !important;}

/*イメージスライダーのズームアップ 
#rslides1_s0{animation: shrink 19s  infinite !important;
  transition:opacity 1.2s ease-in-out 0s !important;}
@keyframes shrink{0% {transform: scale(1.05);}
50%{transform:scale(1.0);}
       100% {transform:scale(1.05);}}

#rslides1_s1{animation: shrink1 19s infinite !important;
transition:opacity 1.2s ease-in-out 0s !important;}
@keyframes shrink1{0% {transform: scale(1.05);}
50%{transform:scale(1.0);}
100% {transform:scale(1.05);}}

#rslides1_s2{animation: shrink2 19s infinite !important;
transition:opacity 1.2s ease-in-out 0s !important;}
@keyframes shrink2{0% {transform: scale(1.05);}
50%{transform:scale(1.0);}
100% {transform:scale(1.05);}}

#rslides1_s3{animation: shrink3 19s infinite !important;
transition:opacity 1.2s ease-in-out 0s !important;}
@keyframes shrink3{0% {transform: scale(1.05);}
50%{transform:scale(1.0);}
100% {transform:scale(1.05);}} 

/*TOPのイメージスライダーの背景 */
.topslide{padding-top:-30px !important;
          padding-bottom:-30px !important;}  

.ccm-image-slider-inner{width:100% !important;}

.slide-items__wrap {margin-top:-3% !important;}


/*---------------------------------------《採用情報ページの設定》--------------------------------------------------- */ 

/*横に流れ続けるスライダー */
.sl-content {
    width: 460px;
    height: 400px;
    list-style: none;
    padding-left:0;
    border-radius: 0px;
    margin-left:0px;
    
    }

    .sl-content:nth-child(1) {
        background-image:url(https://anchieisei.co.jp/application/files/5417/0167/4585/slide-h-007-IMG_0122.jpg);
        margin-left:-60px;}

    .sl-content:nth-child(2) {
    background-image:url(https://anchieisei.co.jp/application/files/1517/0167/3406/slide-a-062-IMG_0098.jpg);}
    
    .sl-content:nth-child(3) {
        background-image:url(https://anchieisei.co.jp/application/files/1017/0167/4331/slide-g.jpg);}

    .sl-content:nth-child(4) {
            background-image:url(https://anchieisei.co.jp/application/files/4117/0167/6326/slide-i-014-IMG_0007-2.jpg);}

    .sl-content:nth-child(5) {
    background-image:url(https://anchieisei.co.jp/application/files/6917/0167/3424/slide-b-055-IMG_0075.jpg);}

    .sl-content:nth-child(6) {
        background-image:url(https://anchieisei.co.jp/application/files/5817/0167/5331/slide-j-013-IMG_0129.jpg);}

    .sl-content:nth-child(7) 
    {background-image:url(https://anchieisei.co.jp/application/files/1517/0167/3930/slide-f-064-IMG_0104.jpg);}

    
    .sl-content:nth-child(8) {
     background-image:url(https://anchieisei.co.jp/application/files/6717/0167/3440/slide-c-061-IMG_0092.jpg);}


    .sl-content:nth-child(9) {
     background-image:url(https://anchieisei.co.jp/application/files/9317/0167/3457/slide-d-058-IMG_0080.jpg);}

     .sl-content:nth-child(10) {
        background-image:url(https://anchieisei.co.jp/application/files/2517/0167/5865/slide-l-038-IMG_0049.jpg);}
    



 


     .sl-slideshow {
      display: flex;
      animation: loop-slide 110s infinite linear 1s both;
      
      }
      @keyframes loop-slide {
      from {
       transform: translateX(0);
      }
      to {
       transform: translateX(-100%);
      }
      }
      
      
      .sl-wrap {
      display: flex;
      align-items: center;
      height: 340px; 
      overflow: hidden;
      }


/*TOPの採用情報の枠 */
.top-recruit-waku{position:absolute !important;
                  z-index:3 !important;
                  margin-left:10% !important;
                  margin-right:10% !important;
                  padding-top:45% !important;
                  }

.hamon {width: 100%;
        height: 100vh !important;
        background: url('https://anchieisei.co.jp/application/files/5516/9087/7763/back-water-c.jpg') center center/cover no-repeat}
/* 1680px以下に適用されるCSS（PC用 */
@media screen and (max-width: 1680px) {
  .hamon{height:110vh !important;}}
/* 480px以下に適用されるCSS（スマホ用 */
@media screen and (max-width: 480px) {
  .hamon{height:80vh !important;}}



/*TOPの採用情報枠上の背景 */
.back-nami-c{width:100% !important;
            position:absolute;
            z-index:4}



/*---------------------------------------《お知らせの設定》--------------------------------------------------- */ 
.rightside-main{
    background-image:url(https://anchieisei.co.jp/application/files/7616/8992/3162/back-water-a.jpg) !important;
    background-size:100% !important;
    background-repeat:no-repeat !important;}
 /* 480px以下に適用されるCSS（スマホ用 */
 @media screen and (max-width: 480px) {
  .rightside-main{background-position-y:10% !important;}}

    div.ccm-page div.ccm-block-page-title-byline span.page-author{display:none !important;}

    div.ccm-page h1.page-title{font-size:2.5em !important;}