@charset "UTF-8";

/*
Theme Name: Shibata
Theme URI: 
Author: Shibata
Author URI: 
Description: Shibata template.
Version: 1.0.

*/
/*=============================================
 * body
 *=============================================*/
body {
   color: #000;
   font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
   font-size: 16px;
   line-height: 36px;
   letter-spacing: 0;
   font-weight: 500;
   background: url("assets/img/common/body-bg.jpg") repeat center top;
   min-width: inherit;
   min-height: inherit;
   max-height: 100%;
}

@media screen and (max-width: 767px) {
   body {
      font-size: 14px;
      line-height: 28px;
   }
}

/*=============================================
 * fonts
 *=============================================*/
.fnt-mincho {
   font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.fnt-meiryo {
   font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシックPro", "ＭＳ ゴシック", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.fnt-gothic {
   font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

.fnt-BarlowCondensed-SemiBold {
   font-family: 'BarlowCondensed-SemiBold', sans-serif;
   font-weight: 600;
}

@media screen and (max-width: 767px) {
   .fnt-mincho {
      font-family: 'Noto Serif JP', serif;
   }
}

/*=============================================
 * <main>
 *=============================================*/
main {
   clear: both;
   width: 100%;
   position: relative;
   overflow: hidden;
}

/* -- -- */
.wrap {
   width: 100%;
   max-width: 1200px;
   margin: 0 auto;
   box-sizing: border-box;
   position: relative;
}

@media screen and (max-width: 1240px) {
   .wrap {
      max-width: 960px;
   }
}

@media screen and (max-width: 991px) {
   .wrap {
      max-width: 720px;
   }
}

@media screen and (max-width: 767px) {
   .wrap {
      max-width: 100%;
      padding: 0 15px;
   }
}

a {
   transition: all 0.3s;
}

a:hover {
   opacity: 0.6;
   text-decoration: none;
}

a[href^="tel:"] {
   pointer-events: none;
   cursor: text;
}

@media screen and (max-width: 767px) {
   a[href^="tel:"] {
      pointer-events: auto;
      cursor: pointer;
   }
}

.pc {
   display: block;
}

.ip {
   display: none;
}

.sp {
   display: none;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
   .ip {
      display: block;
   }
}

@media screen and (max-width: 767px) {
   .pc {
      display: none;
   }

   .sp {
      display: block;
   }
}

/*=============================================
 * <header>
 *=============================================*/
header {
   position: relative;
}

header .box .wrap {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   height: 110px;
}

header .box .logo {
   flex: auto;
}

header .box .logo a {
   display: inline-block;
   width: 288px;
}

header .box .tel {
   width: 280px;
}

header .box .mail {
   width: 280px;
   padding-left: 20px;
}

.hamburger {
   width: 30px;
   height: 24px;
   background-color: #ffe84b;
   padding: 13px 10px;
   position: fixed;
   top: 0;
   right: 0;
   z-index: 101;
}

.hamburger:hover {
   opacity: 1;
}

.hamburger .hamburger-box {
   display: block;
   width: 100%;
   height: 100%;
}

.hamburger .hamburger-inner,
.hamburger .hamburger-inner:after,
.hamburger .hamburger-inner:before {
   width: 100%;
   height: 2px;
   border-radius: 0;
   background-color: #008fa7;
}

.hamburger .hamburger-inner {
   margin-top: -1px;
}

#navbar {
   width: 100%;
   position: absolute;
   bottom: -90px;
   left: 0;
   z-index: 99;
}

#navbar .nav {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   color: #ffe84b;
   font-weight: bold;
   font-size: 24px;
   line-height: 28px;
   letter-spacing: 0;
}

#navbar .nav li {
   position: relative;
   text-align: center;
   padding: 0 15px;
}

#navbar .nav li+li:before {
   content: '/';
   color: #fff;
   position: absolute;
   bottom: 0;
   left: -5px;
}

#navbar .nav li a {
   display: block;
}

#navbar .nav li a img {
   display: block;
   width: auto;
   height: 90px;
   margin: 0 auto 20px;
   transition: all 0.3s;
}

#navbar .nav li a:hover img {
   -webkit-animation: rotating 2s linear infinite;
   -moz-animation: rotating 2s linear infinite;
   -ms-animation: rotating 2s linear infinite;
   -o-animation: rotating 2s linear infinite;
   animation: rotating 2s linear infinite;
}

.navOpen {
   overflow: hidden;
}

.navOpen #navbar {
   transform: translateX(0);
}

@-webkit-keyframes rotating
   {
   from {
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
   }

   to {
      -webkit-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
   }
}

@keyframes rotating {
   from {
      -ms-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
   }

   to {
      -ms-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -webkit-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
   }
}

.rotating {
   -webkit-animation: rotating 2s linear infinite;
   -moz-animation: rotating 2s linear infinite;
   -ms-animation: rotating 2s linear infinite;
   -o-animation: rotating 2s linear infinite;
   animation: rotating 2s linear infinite;
}

@media screen and (max-width: 1240px) {
   #navbar .nav {
      font-size: 20px;
   }

   #navbar .nav li a img {
      height: 80px;
   }
   #navbar .nav li{
      padding: 0 10px;
   }
}

@media screen and (max-width: 991px) {
   header .box .wrap {
      height: 90px;
   }

   header .box .logo a {
      width: 250px;
   }

   header .box .tel {
      width: 200px;
   }

   header .box .mail {
      width: 200px;
   }

   #navbar {
      bottom: -70px;
   }

   #navbar .nav {
      font-size: 15px;
   }

   #navbar .nav li {
      padding: 0 5px;
   }

   #navbar .nav li a img {
      height: 60px;
      margin-bottom: 10px;
   }
}

@media screen and (max-width: 767px) {
   header .box .wrap {
      height: 50px;
   }

   header .box .logo a {
      width: 200px;
   }

   header .box .tel {
      display: none;
   }

   header .box .mail {
      display: none;
   }

   .hamburger {
      display: block;
   }

   #navbar {
      width: 100%;
      height: 100vh;
      background-color: #008fa7;
      overflow: hidden auto;
      box-sizing: border-box;
      padding: 80px 20px 120px;
      position: fixed;
      top: 0;
      left: 0;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
   }

   #navbar .nav {
      display: block;
   }

   #navbar .nav li {
      border-bottom: 1px solid #ffe84b;
      padding: 15px;
   }

   #navbar .nav li+li:before {
      display: none;
   }

   #navbar .nav li:first-child {
      padding-top: 0;
   }

   #navbar .nav li a {
      display: flex;
      align-items: center;
   }

   #navbar .nav li a img {
      display: inline-block;
      height: 40px;
      margin: 0 10px 0 0;
   }

   .navOpen #navbar {
      opacity: 1;
      visibility: visible;
   }
}

/*=============================================
 * <Section>
*=============================================*/
/*=============================================
 * <footer>
*=============================================*/
footer .vcard {
   padding: 130px 0;
}

footer .vcard .wrap {
   display: flex;
   flex-wrap: wrap;
}

footer .vcard .col {
   width: 42%;
}

footer .vcard .col .txt {
   font-weight: 500;
   font-size: 16px;
   line-height: 20px;
   letter-spacing: 0;
   padding: 35px 0;
}

footer .vcard .col .txt li {
   padding-bottom: 15px;
}

footer .vcard .col .txt li:last-child {
   padding-bottom: 0;
}
footer .vcard .col .line {
	padding-top: 35px;
}
footer .vcard .map {
   width: 50%;
   padding-top: 350px;
   position: relative;
   margin-left: 8%;
}

footer .vcard .map>* {
   display: block;
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

footer nav {
   background-image: url(assets/img/common/body-bg.jpg);
   background-color: #008fa7;
   background-blend-mode: multiply;
   font-weight: bold;
   font-size: 16px;
   line-height: 20px;
   letter-spacing: 0;
   color: #fff;
   padding: 100px 0;
}

footer nav p {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
}

footer nav p+p {
   padding-top: 50px;
}

footer nav p a {
   display: block;
   padding: 0 20px;
   position: relative;
}

footer nav p a:before {
   content: '';
   width: 1px;
   height: 100%;
   background-color: #fff;
   position: absolute;
   top: 50%;
   left: 0;
   transform: translateY(-50%);
}

@media screen and (max-width: 991px) {
   footer .vcard {
      padding: 80px 0;
   }

   footer .vcard .col .txt {
      font-size: 14px;
   }

   footer nav {
      font-size: 14px;
      padding: 80px 0;
   }

   footer nav p+p {
      padding-top: 30px;
   }
	
}

@media screen and (max-width: 767px) {
   footer {
      padding-bottom: 50px;
   }

   footer .vcard {
      padding: 50px 0;
   }

   footer .vcard .wrap {
      display: block;
   }

   footer .vcard .wrap .col {
      width: 100%;
      text-align: center;
   }

   footer .vcard .wrap .col .logo {
      width: 200px;
      margin: 0 auto;
   }

   footer .vcard .wrap .col .txt {
      padding: 15px 0;
   }

   footer .vcard .wrap .col .tel {
      width: 200px;
      margin: 0 auto;
   }
	footer .vcard .col .line {
		text-align: center;
		padding-top: 15px;
	}
	footer .vcard .col .line a {
		display: inline-block;
	}

   footer .vcard .wrap .map {
      width: 100%;
      margin: 30px 0 0;
   }

   footer nav {
      padding: 15px 0;
   }

   footer nav p {
      justify-content: flex-start;
   }

   footer nav p+p {
      padding-top: 15px;
   }

   footer nav p a {
      width: 50%;
      text-align: center;
      box-sizing: border-box;
      margin: 5px 0;
      padding: 0 2%;
   }

   footer nav p a:nth-child(2n + 1):before {
      display: none;
   }
}

/* -- -- */
.bnr-fixed_right {
   width: 80px;
   background: url("assets/img/bnr-fixed_bg.png") repeat center top;
   padding: 10px 20px 70px;
   position: fixed;
   top: 50%;
   right: 0;
   transform: translateY(-50%);
   z-index: 90;
}

.bnr-fixed_right ul li {
   padding-bottom: 15px;
}

.bnr-fixed_right ul li.tel a,
.bnr-fixed_right ul li.mail a {
   display: block;
   text-align: center;
   color: #fff;
}

.bnr-fixed_right ul li.tel a img,
.bnr-fixed_right ul li.mail a img {
   display: block;
   width: 35px;
   margin: 0 auto 10px;
}

.bnr-fixed_right ul li.mail a {
   font-weight: 700;
   font-size: 35px;
   line-height: 40px;
   letter-spacing: 0;
}

.bnr-fixed_right ul li.tel {
   border-top: 1px dashed #fff;
   padding-top: 15px;
}

.bnr-fixed_right ul li.tel a {
   font-weight: 700;
   font-size: 24px;
   line-height: 26px;
   letter-spacing: 0;
}

.bnr-fixed_right ul li:last-child {
   padding-bottom: 0;
   position: absolute;
   bottom: -65px;
   left: 0;
}

@media screen and (max-width: 991px) {
   .bnr-fixed_right {
      width: 60px;
      padding: 10px 10px 40px;
   }

   .bnr-fixed_right ul li.mail a {
      font-size: 28px;
   }

   .bnr-fixed_right ul li.tel a {
      font-size: 22px;
   }

   .bnr-fixed_right ul li:last-child {
      bottom: -35px;
   }
}

@media screen and (max-width: 767px) {
   .bnr-fixed_right {
      width: 100%;
      top: auto;
      right: auto;
      bottom: 0;
      left: 0;
      transform: translateY(0);
      padding: 0;
   }

   .bnr-fixed_right ul {
      display: flex;
      flex-wrap: wrap;
   }

   .bnr-fixed_right ul li {
      width: 50%;
      box-sizing: border-box;
      padding: 0;
   }

   .bnr-fixed_right ul li:nth-child(1) {
      display: none;
   }

   .bnr-fixed_right ul li.mail a {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      line-height: 30px;
      padding: 10px 0;
   }

   .bnr-fixed_right ul li.mail a img {
      width: 25px;
      margin: 0 5px 0 0;
   }

   .bnr-fixed_right ul li.mail a br {
      display: none;
   }

   .bnr-fixed_right ul li.tel {
      padding: 0;
      border-top: 0;
      border-left: 1px dashed #fff;
   }

   .bnr-fixed_right ul li.tel a {
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 18px;
      line-height: 30px;
      padding: 10px 0;
   }

   .bnr-fixed_right ul li.tel a img {
      width: 25px;
      margin: 0 5px 0 0;
   }

   .bnr-fixed_right ul li.tel a br {
      display: none;
   }

   .bnr-fixed_right ul li:nth-child(4) {
      display: none;
   }
}