*{
   margin:0;
   padding:0;
   transition: all 0.3s ease;
   -webkit-transition: all 0.3s ease;
   -moz-transition: all 0.3s ease;
   -o-transition: all 0.3s ease;
}

body {
  font-family:'Montserrat', "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
}

p{
  font-size: 16px;
  margin: 20px 0;
  line-height: 2em;
  color: #000;
  font-weight: 600;
  letter-spacing: .1em;
}
/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * wrap */

#wrap{
  width:100%;
  margin:0;
  padding:0;
}

@media screen and (max-width: 767px) {
  #wrap{
    overflow: hidden;
  }
}


/* ====================================================
brake
==================================================== */
@media print, screen and (min-width: 768px) {
.pc { display: inline; }
.sp { display: none; }
}
@media screen and (max-width: 767px) {
  .pc { display: none; }
  .sp { display: inline; }
}


@media (min-width: 751px) {
  a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  }
  }

  a[href*="tel:"] {
    color: #fff;
    text-decoration: none;
    }

hr{
  width: 140px;
  margin: 50px auto;
  border: #4D4E56 solid 2px;
}


.mail_icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background-color: #BB2124 ;
  border-radius: 50%;
  color: #000;
  text-align: center;
  position: fixed;
  top: 200px;
  right: 10px;
  align-items: center;
}

.tel_icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background-color: #004493 ;
  border-radius: 50%;
  color: #000;
  text-align: center;
  position: fixed;
  top: 320px;
  right: 10px;
  align-items: center;
}

.mail_icon img,
.tel_icon img{
  width: 50%;
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
.mail_icon,
.tel_icon{
  display: none;
}
}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * header */

header{
  width:98%;
  z-index: 4;
  position:fixed;
  padding:10px 30px;
  background-color: #fff;
  border-radius: 24px;
  margin:30px auto;
  left: 50%;
     transform: translateX(-50%);
  border: #000 solid 3px;
  -moz-box-sizing: border-box;
   box-sizing: border-box;
}

.fixed {
  position: fixed;
  top: 0;
  width:98%;
  z-index: 99;
}


@media screen and (max-width: 1024px) {
header{
width:100%;
display: block;
padding:10px 10px;
}

}

header ul{
position: fixed;
display: flex;
top: 20px;
right: 30px;
list-style: none;
}

header li{
color: #000;
font-weight: 700;
padding: 0 10px;
position: relative;

}

header ul li a {
  position: relative;
  display: inline-block;
  transition: .3s;
  text-decoration: none;
  color: #000;
}
header ul li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #000;
  transition: .3s;
}
header ul li a:hover::after {
  width: 100%;
}
header.fixed ul li a{
  color: #000
}
header.fixed ul li a::after {
  background-color: #000;
}

header ul li.b01 a{
  background-color: #BB2124;
  color: #fff;
  border-radius: 8px;
  padding: 14px 30px;
  margin-top: -10px;
}

header ul li.b02 a{
  background-color: #004493;
  color: #fff;
  border-radius: 8px;
  padding: 10px 30px;
  margin-top: -10px;
}

header ul li.b01 a::after,
header ul li.b02 a::after {
  display: none;
}


@media screen and (max-width: 768px) {
  header ul{
    display: none;
  }
  header{
  position:fixed;
  padding:10px 0px;
  background-color:unset;
  margin:0;
  left: 50%;
     transform: translateX(-50%);
  border:none;

}
}

/* ナビゲーションメニュー */
.nav-menu {
  color: #000; /* メニューテキストの色 */
  
}
.menu-list {
  display: flex;
  justify-content: center; /* メニューアイテムを中央揃えに */

}
.menu-item {
  position: relative;
  transition: background-color .3s; /* 背景色の変化をアニメーション化 */
  margin-top: -10px;
}


/* メニューアイテムのホバースタイル */
.menu-item:hover .drop-menu-list {
  transform: scaleY(1); /* ドロップダウンメニューの表示 */
}
.menu-item:hover {
  transition: background-color .3s; /* 背景色の変化をアニメーション化 */
}
.drop-menu-item:hover {
  opacity: .8; /* ドロップダウンメニューアイテムのホバー時の不透明度 */
  transition: opacity .3s; /* 不透明度の変化をアニメーション化 */
}

.menu-item a {
  align-items: center;
  color: #000; /* メニューアイテム内のリンクテキストの色 */
  display: flex;
  height: 50px;
  justify-content: center;
  text-decoration: none; /* リンクの下線を非表示 */
  width: 80px;
}

/* ドロップダウンメニュー */
.drop-menu {
  position: relative;
}
.drop-menu-list {
  left: 0;
  position: absolute;
  top: 100%;
  transform: scaleY(0); /* ドロップダウンメニューの非表示 */
  transform-origin: center top; /* 変形を適応する基準を設定 */
  transition: transform .3s; /* 表示の変化をアニメーション化 */
  width: max-content;
  z-index: 1;
}
.drop-menu-item {
  background-color: #fff; /* ドロップダウンメニューの背景色 */
  transition: opacity .3s; /* 不透明度の変化をアニメーション化 */
}

@media screen and (max-width: 768px) {
.nav-menu {
  display: none;
  
}
}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * hamb */
.hamb {
  display: none;
}

@media screen and (max-width: 767px) {
.hamb {
  position: fixed;
  cursor: pointer;
  z-index: 300;
  right: 40px;
  top: 40px;
  width: 40px;
  height: 22px;
  transform: translate(-50%, -50%);
  display: unset;
}
}
.black-bg ul{
  list-style: none;
}

.black-bg ul li {
  font-weight: 600;
  font-size: 20px; 
  border-bottom: #ccc solid 1px;
  line-height: 2.8em;
}

.black-bg ul li a {
  color: #fff;
  display: block;
  text-decoration: none;
}

.black-bg ul li a:hover{
  color: #0F5897;
}

.black-bg ul li.sub{
  font-size: 16px;
  border-bottom: unset;
  font-weight: 500;
  line-height: 2.4em;
}

.line {
  position: absolute;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #000;
  top: 0px;
}

.line:nth-child(2)  {
  top: 20px;
}

.black-bg {
  position: fixed;
  background: #004493;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  z-index: 99;
}

.black-bg.open {
  opacity: 0.9;
  visibility: visible;
  height: 100%;
}

#hamb.active .line {
  background-color: #000;
}

/*アニメーション*/
.black-bg {
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
}

.animation {
  transition: all .6s;
}

.line:nth-child(1)  {
  top: 5px;
  animation: line01 .75s forwards;
}

.line:nth-child(2)  {
  bottom: 5px;
  animation: line02 .75s forwards;
}

#hamb.active .line:nth-child(1)  {
  animation: line01_2 .75s forwards;
  background-color: #fff;
}

#hamb.active .line:nth-child(2)  {
  animation: line02_2 .75s forwards;
  background-color: #fff;
}

@keyframes line01 {
  0% {
    transform: translateY(15px) rotate(45deg);
  }
  50% {
    transform: translateY(15px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes line02 {
  0% {
    transform: translateY(-15px) rotate(-45deg);
  }
  50% {
    transform: translateY(-15px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes line01_2 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(8px) rotate(45deg);
  }
}

@keyframes line02_2 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(-8px) rotate(-45deg);
  }
}

.hamb_inner{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 68%;
  margin:180px auto 0 auto;
  color: #fff;
}




@media screen and (max-width: 768px) {
  .hamb {
    right: 0px;
    top: 40px;
    width: 40px;
    height: 22px;
  }
  
  .line {
    position: absolute;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #000;
    top: 0px;
  }

  .hamb_inner{
    display: block;
    width: 90%;
    margin:100px auto;
  }
  .hamb_inner-box{
    width: 100%;
  }

  .hamb_inner-box img{
    width: 200px;
    margin:30px 0;
  }

  .black-bg ul li {
    font-size: 18px; 
    line-height: 2.2em;
  }


  
  
}  

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * footer */

footer{
  background-color: #004493;
  padding: 20px 0;
}

.footer_inner{
  max-width: 1000px;
  margin: auto;
}
.footer_info{
  width: 100%;
  border-top: #fff solid 3px;
}
.footer_info p{
  color: #fff;
  font-size: 12px;
  line-height: 1.2em;
}

p.fot-title{
  font-size: 16px;
}

.footer_info img{
  width: 90%;
}

.footer_iso img{
  width: 100px;
  margin-left: 20px;
}


.footer_nav{
  width: 100%;
}

.footer_copy{
  font-size: 36px;
  line-height: 1.6em;
}

.footer_copy span{
  font-size: 18px;
  display: block;
  color: #ccc;
}

.footer_nav ul{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  font-weight: bold;
}

.footer_nav ul li{
  margin-right: 14px;
  line-height: 2.4em;
  color: #fff;
}

.footer_nav ul li a{
  color: #fff;
  text-decoration: none;
}

.footer_nav ul li.sub{
  font-size: 14px;
  margin-top: 2px;
}

.footer_nav ul li.sub a{
  color: #ccc;
}


.copy{
  font-size: 12px;
  margin-top: 30px;
  color: #ccc;
}

@media screen and (max-width: 768px) {
  footer{
    padding: 100px 40px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  .footer_inner{
    display: block;
  }
  .footer_info{
    width: 100%;
  }
  .footer_nav{
    width: 100%;
  }
  .footer_info img{
    width: 140px;
  }
  .footer_inner p{
    font-size: 14px;
  }
  .footer_inner p.hamb_inner-title{
    font-size: 24px;
  }

  p.footer_copy{
    font-size: 24px;
    line-height: 1.6em;
    margin-top: 80px;
  }
  
  .footer_copy span{
    font-size: 11px;
  }

  .footer_nav img{
    max-width: 100%;
  }

  p.copy{
    font-size: 10px;
    margin-top: 40px;
    color: #ccc;
  }

}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * h */
h1 img{
  width: 240px;
  margin-top: 4px;
}

h1 a {
  display: inline-block;
  transition: .3s;
  -webkit-transform: scale(1);
  transform: scale(1);
}
h1 a:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.fixed h1 img{
  width: 240px;
}

h2{
  font-weight: 800;
  font-size: 36px;
  color: #000;
  letter-spacing: .05em;
}
h2 span{
  font-weight: 700;
  font-size: 21px;
  color: #004593;
  letter-spacing: .05em;
  border-left: #000 solid 1px;
  margin-left: 20px;
  padding-left: 20px;
}

.blue h2{
  color: #fff;
}
.blue h2 span{
  color: #fff;
  border-left: #fff solid 1px;
}

h3{
  font-weight: 800;
  font-size: 28px;
  color: #000;
  margin: 20px 0;
  letter-spacing: .1em;
}

h3 span{
  margin:0 10px;
  font-size: 18px;
  display: block;
}

.blue h3{
  color: #fff;
}

h4{
  font-weight: 800;
  font-size: 24px;
  color: #4D4E56;
  margin: 20px 0;
  letter-spacing: .1em;
  border-bottom: #ccc solid 1px;
}




@media screen and (max-width: 1024px) {
  h1 img{
    width: 180px;
    margin: 0 0 0 10px;
  }
  .fixed h1 img{
width: 180px;
margin: 0 0 0 5px;
  }

  h2{
    font-size:32px;
  }
  h2 span{
    font-size: 18px;
  }
  
  h3{
    font-size: 24px;
  }

}

/* kv */
.kv{
  height: 60vh;
  display: flex;
  align-items: center;
  padding: 0px 20px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.catch-copy{
  text-align: center;
  margin: auto;
}

.catch-copy img{
  max-width: 800px;
}
@media screen and (max-width: 768px) {
.catch-copy img{
  max-width: 100%;
}
}

/* video */
.video{
  width: 100%;
  height: 60vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}


.video video{
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translateX(-50%) translateY(-50%);
  object-fit: contain;

}

@media screen and (min-width: 768px) {
  .kv{
    height:90vh;
  }
  /* kv */
  .kv{
    min-width: 100%;
    padding: 0px 200px;
  }

  .video{
    height: 90vh;
  }

  .video video{
    min-width: 100%;
    min-height: 100%;
    width: auto;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    object-fit:unset;
  
  }
}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * s-kv */
.s-kv{
  position:relative;
  width: 100%;
  height:400px;
  overflow:hidden;
  margin:0;
  text-align: center;
}

.s-kv::after{
  content: '';
  width: 100%;
  height: 100%;
  background-color: #000;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .3;
  z-index: -1;
}

.s-kv img {
  position:absolute;
  right: 0;
  top: 0;
  z-index: -2;
  width:100%;
  height:400px;
  object-fit: cover;
}

.s-kv p{  
  color: #fff;
  font-size:60px;
  line-height: 1.6em;
  letter-spacing: .1em;
  font-weight: 800;
  margin:180px auto 0 auto;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
  z-index: 1;
}

.s-kv p span{
  color: #fff;
  font-size: 18px;
  letter-spacing: .1em;
  font-weight: 500;
  display: block;
  line-height: .8em;
}

@media screen and (max-width: 768px) {
  
  .s-kv p{  
    font-size:36px;
    margin-left: 10px;
  }

  .s-kv p span{
    font-size:16px;
  }
}


/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * blur */
.scroll-space{
  box-sizing: border-box;
}
.blur{
    transition: all 0.8s;
    filter: blur(10px);
    &.scrollin{
      filter: blur(0);
    }
}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * circle */

.circle{
  position: absolute;
  right: 20px;
  top: -140px;
  width: 300px;
  overflow: hidden;
  z-index: 1;
}
.circle img{
  width: 100%;
}

.circle1{
  animation:18s linear infinite rotation;
}

@keyframes rotation{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}

@media screen and (max-width:798px){

  .circle{
    bottom: -140px;
    right: -40px;
    width: 200px;

  }

  .samplelist .circle{
    top: 0px;
    right: -40px;
    width: 200px;
    z-index: -1;
  }

}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * works */
.works{
  width: 100%;
  text-align: center;
  padding: 100px 0 ;
}

.swiper-container{
  text-align: center;
  max-width: 100%;
  margin: auto;
}

.swiper-wrapper {
	width: 100%;
}

.swiper-slide {
	color: #ffffff;
	width: 100%;
	height: 100%;
  padding: 50px 0 100px 0;
	text-align: left;

}

.swiper-slide img{
  width: 100%;
  box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.05);
}
.swiper-slide p{
  display: block;
  color: #000;
  margin: 5px 0;
}
.swiper-slide p span{
  color: #fff;
  background-color: #000;
  margin-right: 10px;
  font-size: 12px;
  padding: 5px 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.swiper-container-horizontal>.swiper-scrollbar {
  position: absolute;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  bottom: 40px;
  z-index: 50;
  height: 5px;
  width: 56%;
}

@media screen and (max-width:798px){
  .works{
    padding: 100px 40px ;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  
}

.works-cat ul{
  display: flex;
  list-style: none;
}

.works-cat ul li{
  margin-right: 10px;
}

.works-cat ul li a{
  background-color: rgb(15, 88, 151);
  color: #fff;
  text-decoration: none;
  padding: 5px 16px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 12px;
}


/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * info */

.info{
  width: 100%;
  padding: 100px 0;
  position: relative;
  
}

.info_inner{
  max-width: 1000px;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;  
  position: relative;
  
}

.info_title{
  top: 100px;
  width: 350px;
  position: -webkit-sticky;
  position: sticky;
  height: 100px;
}
.info_list{
  width: calc(100% - 380px);
  height: auto;
}

.info_list ul{
  list-style: none;
  line-height: 1.8em;
}

.info_list ul li{
  margin-bottom: 5px;
  font-weight: 600;
  border-bottom: #777 solid 1px;
  padding: 20px 0;
}

.info_list ul li b{
  background-color: #222;
  color: #fff;
  font-size: 12px;
  margin-bottom: 10px;
  padding: 2px 0;
  border-radius: 20px;
  display: block;
  width: 120px;
  text-align: center;
}

.info_list ul li a{
  text-decoration: none;
  color: #222;
}

.info_list ul li a:hover{
  color: #777;
}

.info_list ul li span{
  color: #777;
  display: block;
  font-weight: 500;

}

.info_box{
  padding: 50px 0 180px 0;
}

.info_box img{
  max-width: 100%;
}


@media screen and (max-width: 768px) {
  .info{
    padding: 50px 40px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .info_inner{
    display: block;
  }
  .info_title{
    width: 100%;
    position:static;
    height: auto;
  }
  .info_list{
    width: 100%;
    text-align: left;
    margin-top: 30px;
  }

}


/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * common */
.base_container{
  width: 100%;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.container_inner{
  max-width: 1000px;
  margin: auto;
}
.container_inner img{
  max-width: 100%;
}

.column_container{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 40px 0;
}
.column_auto{
  justify-content: flex-start;
  
}
.column_two{
  width: 48%;
}
.column_three{
  width: 32%;
}

.relative{
  position: relative;
}

.padding_clr{
  padding: 20px 0;
}

.padding_clr .btn{
  margin-bottom: 20px;
}

span.cat{
  color: #fff;
  background-color: #000;
  margin-right: 10px;
  font-size: 12px;
  padding: 5px 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}


@media screen and (max-width: 768px) {
  .base_container{
    padding: 100px 40px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
  }
  .container_inner{
    padding: 0;
  }  
  .column_container{
    display:block;
  }  
  .column_two{
    width: 100%;
  }
  .column_three{
  width: 100%;
}
}

.glay{
  background-color: #f4f4f4;
}

.blue{
  background: url(../img/back.png) no-repeat top right #0F5897;
}

.center{
  text-align: center;
}

.right{
  text-align: right;
}

.align-center{
  align-items: center;
}
.order {
  order: -1;
}

.caption{
  font-size: 14px;
  font-weight: bold;
  color:#BB2124;
}

.tel{
  font-size: 48px;
  font-weight: 700;
  line-height: 1em;
}

.tel span{
  display: block;
  font-size: 18px;
}

.no-recruit{
  background-color: #004493;
  text-align: center;
  padding: 20px 0;
  margin: 30px 0;

}

.no-recruit p{
  color: #fff;
}

@media screen and (max-width: 768px) {
.caption{
  font-size: 11px;
  font-weight: bold;
}

.tel{
  font-size: 28px;
  font-weight: 700;
  line-height: 1em;
}

.tel span{
  display: block;
  font-size: 16px;
}

}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * table */

table {
	border-collapse: collapse;
	border:#e3e3e3 solid 1px;
	width:100%;
	max-width:1200px;
	margin:10px auto;
  font-weight: 700;
}

th {
	border-bottom: #e3e3e3 1px solid;
	text-align: left;
	padding: 16px 20px;
	font-weight: normal;
	background-color:#0F5897 ;
	color:#FFFFFF;
  font-weight: bold;
}

td {
	border-bottom: #e3e3e3 1px solid;
	text-align: left;
	padding: 16px 20px;
  background-color: #fff;
}


tr:nth-child(odd) {
    background-color:  rgba(238,238,238,0.2);
}

@media screen and (max-width: 1079px) {

table {
	border-collapse: collapse;
	width:100%;
	margin:30px auto;
}

td {
	border-bottom: #e3e3e3 1px dotted;
	text-align: left;
	padding: 10px;
	display:block;
}


th {
    display:block;
}
}

.scroll{
	 width:100%;

}

@media screen and (max-width: 1079px) {

.scroll {
    overflow-x: auto;
  }
.scroll table {
	border-collapse:collapse;
	min-width:1000px;
	margin:30px auto;
}

.scroll th {
    display:table-cell;
	border-bottom: #e3e3e3 1px dotted;
}

.scroll td {
	border-bottom: #e3e3e3 1px dotted;
	border-top: #e3e3e3 1px solid;
	padding: 10px;
	display:table-cell;
	line-height:2em;
}



}
/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * table */
.timeline {
  list-style: none;
}
.timeline > li {
  margin-bottom: 60px;
}

/* for Desktop */
@media ( min-width : 640px ){
  .timeline > li {
    overflow: hidden;
    margin: 0;
    position: relative;
  }
  .timeline-date {
    width: 110px;
    float: left;
    margin-top: 20px;
  }
  .timeline-content {
    width: 75%;
    float: left;
    border-left: 3px #ccc solid;
    padding-left: 30px;
  }
  .timeline-content:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #0F5897;
    position: absolute;
    left: 106px;
    top: 24px;
    border-radius: 100%;
  }
}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * btn */

p.btn{
  margin:50px auto;
}
p.btn a {
  background-image: linear-gradient(rgb(187, 33, 36) 50%, rgba(255,255,255,1) 50%);
  background-position: 0 0;
  background-size: auto 200%;
  transition: .3s;
  color:#fff;
  text-decoration:none;
  font-size:16px;
  font-weight: 600;
  letter-spacing:1px;
  border:#BB2124 solid 2px;
  border-radius: 30px;
  padding:14px 54px;
  text-shadow:none;
  font-family: 'Montserrat', "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , sans-serif;

}
p.btn a:hover {
  background-position: 0 100%;
  color: #BB2124;
}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * figure */
figure {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
}

figure img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .8s ease-in-out;
  transition: .8s ease-in-out;
}
figure:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * fuwatAnime */

.fuwatAnime {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration:1s;
 -webkit-animation-name: fuwatAnime;
 -ms-animation-name: fuwatAnime;
 animation-name: fuwatAnime;
 visibility: visible !important;
}
@-webkit-keyframes fuwatAnime {
 0% { opacity: 0; -webkit-transform: translateY(80px); }
 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fuwatAnime {
 0% { opacity: 0; -webkit-transform: translateY(80px); -ms-transform: translateY(80px); transform: translateY(80px); }
 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}
/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * isPlay */

.box {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.box .boxInner {
  width: inherit;
  height: inherit;
  opacity: 0;
}

.isPlay {
  animation-name: play;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  position: relative;
  opacity: 1 !important;
}
  
.isPlay:before {
  animation-name: maskOut;
  animation-duration: .5s;
  animation-delay: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(65deg, #000000, #141414); 
    background: -webkit-linear-gradient(65deg, #000, #141414); 
    background: linear-gradient(25deg, #000, #141414);
}

@keyframes play {
  from {
    transform: translateX(-100%);
  }
  
  to {
    transform: translateX(0);
  }
}

@keyframes maskOut {
  from {
    transform: translateX(0);
  }
  
  to {
    transform: translateX(100%);
  }
}
/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * pagetop */


.pagetop {
	position: fixed;
	bottom: 20px;
	right: 10px;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform: scale(0.3);
	-moz-transform: scale(0.3);
	-ms-transform: scale(0.3);
	-o-transform: scale(0.3);
	transform: scale(0.3);
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
  z-index: 5;
}
.pagetop a {
	box-sizing: border-box;
  display: block;
  position: relative;
  width: 80px;
  height: 80px;
  border: solid 6px #0F5897;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
}
.pagetop a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background-color: #0F5897;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0, 0);
  transition: transform ease 0.4s;
}
.pagetop a:hover:after {
  transform: translate(-50%, -50%) scale(1.1, 1.1);
}
.pagetop a:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 55%;
  left: 50%;
  width: 15px;
  height: 15px;
  border-style: solid;
  border-color: #0F5897;
  border-width: 6px 0 0 6px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: border-color ease 0.1s;
}
.pagetop a:hover:before {
  border-color: #fff;
}

.pagetop.show {
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

@media screen and (max-width:998px){

.pagetop {
	bottom: 30px;
	right: 10px;
}

.pagetop a {
	box-sizing: border-box;
  display: block;
  position: relative;
  width:60px;
  height: 60px;
  border: solid 6px #0F5897;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
}

}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * infomation_box */

#infomation_box{
  width:100%;
  text-align:left;
  margin:50px auto;
}


.infomation_list{
  padding:5px 0;
}

.infomation_list span{
  font-size:14px;
  font-weight:bold;
  color:#0075C2;
  margin-left:10px;
}

.infomation_list span.must {
   width: 60px;
   background: #0075C2;
   color: #fff;
   border-radius: 12px;
   text-align: center;
   font-size: 11.008px;
   font-size: 0.688rem;
   line-height: 22px;
 display: inline-block;
}

textarea,
input[type="text"],
input[type="tel"] ,
input[type="email"]  {
   width: 100%;
   padding: 10px 15px;
   font-size: 14px;
   border: 2px solid #666;
   -webkit-border-radius: 4px;
   -moz-border-radius: 4px;
   -ms-border-radius: 4px;
   border-radius: 4px;
}

select,
input[type="date"]{
 padding: 10px 15px;
 font-size: 14px;
   border: 2px solid #666;
   -webkit-border-radius: 4px;
   -moz-border-radius: 4px;
   -ms-border-radius: 4px;
   border-radius: 4px;
}

textarea {
   height: 60px; 
}

textarea:focus,
select:focus,
input[type="date"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="text"]:focus {
   border: 2px solid #0F5897;
 background-color:#F4F4EF;
}

input#submit_button {
   margin: 30px auto;
   border: 0;
   font-size: 18px;
   position: relative;
   top: 50%;
   left: 50%;
   margin-left: -100px;
   width: 200px;
   height: 50px;
   text-align: center;
   box-sizing: border-box;
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   -webkit-user-select: none;
   cursor: default;
   font-family: "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;  
   color: #fff;
   border: #0F5897 solid 2px;
   padding: 10px;
   background-color: #0F5897;
   font-weight:bold;
   border-radius: 10px;
}

input#submit_button:hover {
   cursor: pointer;
 color: #0F5897;
   background-color: #fff;
}
@media print, screen and (max-width: 1079px) {
.contact_inner{
  width:100%;
  padding:50px 0px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#infomation_box{
  width:100%;
  margin:0;
  padding:0;
  text-align:left;
  margin:auto;
}

select,
input[type="date"]{
 padding: 10px 15px;
 font-size: 14px;
   border: 2px solid #666;
   -webkit-border-radius: 4px;
   -moz-border-radius: 4px;
   -ms-border-radius: 4px;
   border-radius: 4px;
}

textarea,
input[type="text"],
input[type="tel"] ,
input[type="email"]  {
   width: 85%;
   padding: 10px 15px;
   font-size: 14px;
   border: 2px solid #666;
   -webkit-border-radius: 4px;
   -moz-border-radius: 4px;
   -ms-border-radius: 4px;
   border-radius: 4px;
}

input, select {
  -webkit-appearance: none;
  appearance: none;
}


}

.grecaptcha-badge { visibility: hidden; }

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * pagenavi */

div.wp-pagenavi{
	clear: both;
	text-align:center;
	margin:50px 0;
  width: 100%;

	}
	
/* 各リンクのCSS */

div.wp-pagenavi a{	

	border: 1px solid #000;
	color: #000;
	padding:8px 12px;
	margin: 0 4px;
	text-decoration: none;
	background:#FFF;
	border-radius: 3px;
	-border-radius: 3px;
	-webkit-border-radius: 3px;
		font-size: 16px;
	}

/* 各リンクのCSS(マウスオーバー時) */

div.wp-pagenavi a:hover{
	
	background:#000;
	border: 1px solid #000;	
	color: #fff;
		}

	/* 総ページ数のCSS */

div.wp-pagenavi span.pages{
        display: none;
    }


/* 現在のページのCSS */
div.wp-pagenavi span.current{
	
	border:1px solid #000;
	color: #FFF;
	padding:8px 12px;
	margin: 0 4px;
	background:#000;
	border-radius: 3px;
	-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-size: 16px
}

div.wp-pagenavi span.extend{
		display: none;
	}

iframe{
  width: 100%;
}