@charset "UTF-8";
/* CSS Document */


html, body{
  padding: 0;
  margin: 0;
  font-family: YuMincho, 'Yu Mincho', 'Hiragino Mincho ProN', 'serif';
  font-feature-settings: "palt";
  text-align: justify;
}

a{
  text-decoration: none;
  transition: 0.3s;
  opacity: 1;
}
a:hover{
  opacity: 0.6;
}


.hamburger{
  display: none;
}


header{
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1000px;
  height: 80px;
  box-shadow: 0 0 5px gray;
  background: linear-gradient(0deg, hsla(57,100%,50%,1.00), hsla(53,100%,40%,1.00));
  z-index: 999999;
}

.header_nk{
  display: flex;
  justify-content: space-between;
  width: 1000px;
  margin: auto;
}
.header_left{
  display: block;
  width: 80px;
  height: 80px;
  margin-top: 0px;
  text-align: center;
  line-height: 80px;
}
.header_left a{
  display: block;
  width: 70px;
  height: 70px;
  margin: 5px 0 0 0;
}

.header_right{
  display: flex;
  justify-content: space-between;
  margin-top: 0px;
}
.header_right a{
  display: block;
  margin: 0 15px;
  color: #616161;
  font-weight: 500;
  text-align: center;
  font-size: 12px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  padding-top: 18px;
}
.header_right a span{
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #003C99;
}

.contact_link{
  display: block;
  border-left: solid 1px #003C99;
  border-right: solid 1px #003C99;
  padding: 0 20px;
  background-color: #CCD7EC;
}







main{
  display: block;
  width: 100%;
  min-width: 1000px;
  height: auto;
  overflow: hidden;
}

.main_view{
  display: block;
  width: 100%;
  height: 700px;
  background-color: #ADADAD;
  overflow: hidden;
  background-image: url("../img/top_bg.jpg");
  background-size: cover;
  background-position: center center;
}
.main_view_nk{
  display: block;
  width: 1000px;
  position: relative;
  margin: auto;
}
.main_view_left{
  display: block;
  position: relative;
  z-index: 99999;
}
.main_view_left h1{
  display: block;
  position: relative;
  top: 230px;
  left: 0;
  text-align: center;
  width: 620px;
  margin: 0;
  background-color: hsla(218,100%,31%,1.00);
  color: #FFFFFF;
}
.main_view_left img{
  display: block;
  position: relative;
  top: 230px;
  width: 800px;
  margin: -50px 0 0 -90px;
}
.mvu{
  display: block;
  position: relative;
  top: 180px;
  left: 0;
  width: 620px;
  height: 20px;
  margin: 0;
  background-color: #001742;
}
.main_view_right img{
  display: block;
  position: absolute;
  top: 140px;
  right: -240px;
  width: 700px;
}






/*流れるテキスト*/
.marquee {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  background-color: hsla(0,0%,16%,1.00);
  padding: 10px 0;
  color: #FFFFFF;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
}

.marquee__track span {
  display: inline-block;
  padding-right: 4em;
  font-size: 24px;
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}









.c_one_st{
  display: block;
  width: 100%;
  height: auto;
  background-color: #FFFDEB;
  padding: 100px 0;
}
.c_one_st h2{
  display: block;
  font-size: 25px;
  margin-bottom: 15px;
  background-color: hsla(219,100%,32%,1.00);
  padding: 10px 0;
  color: #FFFFFF;
  width: 1000px;
  margin: 0 auto 30px;
  text-align: center;
}
.c_one_st h2 small{
  margin-right: 20px;
}
.c_one{
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 1000px;
  margin: auto;
}
.c_one_left{
  display: block;
  position: relative;
  width: 450px;
  height: auto;
  background-color: hsla(0,0%,94%,1.00);
  background-image: url("../img/c_one_phot.jpg");
  background-size: cover;
  background-position: center -20px;
}
.c_one_left h4{
  display: block;
  position: absolute;
  bottom: -60px;
  right: -30px;
  width: 200px;
  font-size: 20px;
}
.c_one_left h4 span{
  font-size: 15px;
  margin-right: 10px;
}
.c_one h1{
  text-align: justify;
  font-size: 28px;
  margin: 0;
  font-weight: bold;
  background: linear-gradient(transparent 60%, hsla(218,43%,76%,1.00) 60%);
  display: inline;
}
.c_one p{
  display: block;
  width: 500px;
  margin: 30px auto 0;
  font-size: 19px;
}



.main_phot1{
  display: block;
  width: 100%;
  height: auto;
  background-color: #29292A;
  padding: 30px 0;
}
.blink {
  text-align: center;
  color: #FFFFFF;
  animation: blink 2s ease-in-out infinite;
  font-size: 25px;
}
.blink small{
  color: hsla(300,42%,86%,1.00);
}

@keyframes blink {
  0%{
    opacity: 1;
  }
  95% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}






.c_ataru_st{
  display: block;
  width: 100%;
  height: auto;
  background-color: hsla(56,100%,83%,1.00);
  padding: 100px 0;
}
.c_ataru{
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 1000px;
  margin: auto;
}
.c_ataru_right{
  display: block;
  width: 450px;
  height: auto;
  background-color: hsla(0,0%,94%,1.00);
  background-image: url("../img/c_two_phot.jpg");
  background-size: cover;
  background-position: center center;
}
.c_ataru h1{
  text-align: justify;
  font-size: 28px;
  margin: 0;
  font-weight: bold;
  background: linear-gradient(transparent 60%, hsla(218,43%,76%,1.00) 60%);
  display: inline;
}
.c_ataru p{
  display: block;
  width: 500px;
  margin: 30px auto 0;
  font-size: 19px;
}





.c_two_st{
  display: block;
  width: 100%;
  height: auto;
  background-color: #FFFDEB;
  padding: 100px 0;
}
.c_two{
  display: block;
  position: relative;
  width: 1000px;
  margin: auto;
}
.c_two h1 span{
  display: block;
  font-size: 20px;
  margin-bottom: 15px;
  background-color: hsla(219,100%,32%,1.00);
  padding: 10px 0;
  color: #FFFFFF;
}
.c_two h1{
  display: block;
  text-align: center;
  font-size: 28px;
  margin: 0;
  font-weight: bold;
  border-bottom: solid 2px hsla(219,100%,32%,1.00);
  padding-bottom: 10px;
}
.c_two h1 big{
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  color: hsla(359,100%,50%,1.00);
  font-size: 40px;
}

.c_two_flex{
  display: flex;
  justify-content: space-between;
  margin: 40px auto;
}
.c_two_left{
  display: block;
  width: 450px;
  height: auto;
  background-color: hsla(0,0%,92%,1.00);
  background-image: url("../img/c_ojou.jpg");
  background-size: cover;
  background-position: center center;
}
.c_two_right{
  display: block;
  width: 500px;
}
.ctr_p1{
  display: block;
  width: 500px;
  margin: 0px;
  font-size: 19px;
}
.ctr_p2{
  display: block;
  width: 500px;
  margin: 20px 0 0 0;
  font-size: 16px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-weight: bold;
  color: #FFFFFF;
  background-color: hsla(0,100%,50%,1.00);
  text-align: center;
}
.ctr_p3{
  display: block;
  width: 500px;
  margin: 10px 0 0 0;
  font-size: 16px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-weight: bold;
  color: #FFFFFF;
  background-color: hsla(0,100%,50%,1.00);
  text-align: center;
}
.ctr_p4{
  display: block;
  width: 500px;
  margin: 20px 0 0 0;
  font-size: 15px;
}
.c_two_right_phot{
  display: block;
  width: 100%;
  height: 300px;
  background-color: hsla(0,0%,93%,1.00);
  background-image: url("../img/c_two_right_phot.jpg");
  background-size: cover;
  background-position: center center;
  margin: 20px 0;
}
.ctr_p5{
  width: 500px;
  margin: 0px;
  font-size: 20px;
  background: linear-gradient(transparent 60%, hsla(218,43%,76%,1.00) 60%);
  display: inline;
  font-weight: bold;
}






.c_three_st{
  display: block;
  width: 100%;
  height: auto;
  background-color: hsla(56,100%,83%,1.00);
  padding: 100px 0;
}
.c_three{
  display: block;
  position: relative;
  width: 1000px;
  margin: auto;
}
.c_three h1{
  display: block;
  text-align: center;
  font-size: 28px;
  margin: 0;
  font-weight: bold;
  background-color: #F50004;
  padding: 10px 0;
  color: #FFFFFF;
}
.c_three h2{
  display: block;
  text-align: center;
  font-size: 28px;
  margin: 0 0 30px 0;
  font-weight: bold;
  padding: 20px;
  border-bottom: solid 1px #F50004;
}

.hosyou_box{
  display: block;
  width: 850px;
  background-color: #FFFFFF;
  margin: 10px auto;
  padding: 10px 0 10px 150px;
  color: #222222;
  font-size: 24px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-weight: bold;
}
.hosyou_box span{
  color: #FF0000;
  margin-right: 10px;
  font-weight: bold;
}
.c_three p{
  display: block;
  width: 1000px;
  margin: 30px auto 0;
  font-size: 14px;
}
.c_three h4{
  display: block;
  text-align: center;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-weight: bold;
  width: 1000px;
  margin: 30px auto 0;
  padding: 20px 0;
  border-top: solid 1px #F50004;
  border-bottom: solid 1px #F50004;
  font-size: 30px;
  color: #F50004;
}
.contact_sokushin{
  display: block;
  width: 1000px;
  margin: 20px auto 0!important;
  font-size: 18px!important;
  text-align: center;
}









.contact_st{
  display: block;
  width: 100%;
  height: auto;
  padding: 60px 0;
  background-color: #FFFFFF;
}

.contact{
  display: block;
  justify-content: space-between;
  width: 550px;
  margin: auto;
}
.contact h1{
  display: block;
  font-size: 14px;
  margin-top: 0px;
  text-align: center;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-style: normal;
  color: hsla(218,100%,31%,1.00);
  border-bottom: solid 2px hsla(218,100%,31%,1.00);
  width: 550px;
  padding-bottom: 10px;
}
.contact h1 span{
  display: block;
  font-size: 40px;
  color: #131313;
}
.contact_left p{
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  text-align: center;
  width: 550px;
}


.contact_nk{
  display: block;
  width: 550px;
  height: auto;
  margin: 20px 0 0 0;
  text-align: center;
  padding: 0px 0;
}
.tel{
  font-size: 55px;
  font-weight: bold;
  color: #FFFFFF;
  background-color: hsla(219,100%,32%,1.00);
  border-radius: 100px;
  border: solid 2px hsla(220,100%,14%,1.00);
  display: flex;
  justify-content: center; /* 左右の中央揃え */
  align-items: center;     /* 上下の中央揃え */
}
.tel span{
  font-size: 18px;
  color: #CCD5E7;
  margin-right: 20px;
}
.main_contact_uktk{
  display: block;
  margin: auto;
  width: auto;
  padding: 15px 0 0 0;
  color: #131313;
}







footer{
  display: block;
  position: relative;
  width: 100%;
  min-width: 1000px;
  height: auto;
  background: linear-gradient(0deg, #002668, hsla(218,100%,31%,1.00));
  color: #002668;
  overflow: hidden;
}

.footer_nk{
  display: block;
  width: 1000px;
  margin: auto;
  padding: 60px 0 80px 0;
}
.footer_up{
  display: block;
  width: 300px;
  height: auto;
  background-color: #FFFFFF;
  margin: 0px auto 0;
  text-align: center;
  line-height: 0;
}
.footer_down{
  display: flex;
  justify-content: center;
  margin: 0px auto 0;
}
.footer_down a{
  display: block;
  margin: 0 10px;
  color: #FFFFFF;
}


.footer_under{
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  text-align: center;
  color: #FFFFFF;
  font-size: 10px;
  background-color: #0D0D0D;
  line-height: 30px;
}




.main_view_sub{
  display: block;
  width: 100%;
  height: 250px;
  background-color: #CDCDCD;
  text-align: center;
  line-height: 280px;
}





.kiyaku_st{
  display: block;
  width: 100%;
  height: auto;
  background-color: hsla(56,100%,83%,1.00);
  padding-bottom: 100px;
}


.main_view_sub_content{
  display: block;
  width: 95%;
  max-width: 800px;
  margin: 0px auto;
  padding-bottom: 0px;
  padding-top: 100px;
}
.main_view_sub_content h3{
  display: block;
  text-align: center;
  background-color: hsla(221,100%,33%,1.00);
  padding: 10px 0;
  color: #FFFFFF;
  border-radius: 5px;
}
.main_view_sub_content h5{
  color: #222222;
  font-size: 16px;
}

.list span{
  display: block;
  font-size: 0.8rem;
}




.comapany_st{
  display: block;
  width: 100%;
  height: auto;
  margin: 70px auto 0;
  padding-bottom: 100px;
  padding-top: 100px;
  background-color: #FFFDEB;
  text-align: center;
}
.comapany_st h1{
  display: block;
  width: 800px;
  margin: 0 auto 20px;
  border-bottom: solid 2px hsla(221,100%,33%,1.00);
}
.company{
  display: block;
  width: 100%;
  height: auto;
  padding: 0px 0 0px 0;
}
.company{
  display: block;
  width: 800px;
  margin: auto;
}
.company table{
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0px auto 0;
  padding: 0px;
}
.company table tr{
  width: 100%;
  display: block;
  padding: 0px;
}
.company table tr th{
  width: 200px;
  text-align: justify;
  padding-left: 20px;
  height: 60px;
  color: hsla(221,100%,33%,1.00);
  font-weight: bold;
  border-bottom: solid 1px hsla(221,100%,33%,1.00);
}
.company table tr td{
  width: 540px;
  text-align: justify;
  padding-left: 20px;
  height: 60px;
  color: #2D2D2D;
  font-weight: 500;
  text-decoration: none!important;
  border-bottom: solid 1px #2D2D2D;
}







.hoso_w{
  color: #FFFFFF;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  margin: 0 5px 0;
}
.hoso_k{
  color: hsla(0,0%,13%,1.00)!important;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  margin: 0 0px 0 0!important;
}
.hoso{
  color: hsla(0,0%,13%,1.00)!important;
  font-weight: 100px!important;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  margin: 0 10px 0!important;
}

  









@media screen and (max-width: 600px) {
	/* 600px以下に適用されるCSS（スマホ用） */
  
  
  
header{
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 0px;
  height: 80px;
  box-shadow: 0 0 5px gray;
  background: linear-gradient(0deg, hsla(57,100%,50%,1.00), hsla(53,100%,40%,1.00));
  z-index: 999999;
}

/*
.header_nk{
  display: flex;
  justify-content: space-between;
  width: 1000px;
  margin: auto;
}
.header_left{
  display: block;
  width: 80px;
  height: 80px;
  margin-top: 0px;
  text-align: center;
  line-height: 80px;
}
.header_left a{
  display: block;
  width: 70px;
  height: 70px;
  margin: 5px 0 0 0;
}

.header_right{
  display: flex;
  justify-content: space-between;
  margin-top: 0px;
}
.header_right a{
  display: block;
  margin: 0 15px;
  color: #616161;
  font-weight: 500;
  text-align: center;
  font-size: 12px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  padding-top: 18px;
}
.header_right a span{
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #003C99;
}

.contact_link{
  display: block;
  border-left: solid 1px #003C99;
  border-right: solid 1px #003C99;
  padding: 0 20px;
  background-color: #CCD7EC;
}
*/

  
  
  
  
  
/*ハンバーガーメニュー*/
.header_nk{
  width: 100%;
  height: 80px;
  padding: 0 15px;
  box-sizing: border-box;
  align-items: center;
}

.hamburger{
  display: block;
  width: 45px;
  height: 45px;
  border: none;
  background: transparent;
  position: relative;
  z-index: 1000001;
  cursor: pointer;
}

.hamburger span{
  display: block;
  width: 32px;
  height: 3px;
  background: #003C99;
  margin: 7px auto;
  transition: 0.3s;
}

.header_right{
  display: block;
  position: fixed;
  top: 80px;
  right: -100%;
  width: 80%;
  height: calc(100vh - 80px);
  background: #ffffff;
  transition: 0.3s;
  z-index: 1000000;
  padding-top: 20px;
  box-shadow: -2px 2px 8px rgba(0,0,0,0.2);
}

.header_right.active{
  right: 0;
}

.header_right a{
  display: block;
  margin: 0;
  padding: 18px 20px;
  border-bottom: solid 1px #ddd;
  text-align: left;
}

.header_right a span{
  display: inline-block;
  font-size: 12px;
  margin-right: 10px;
}

.contact_link{
  border-left: none;
  border-right: none;
  background-color: #CCD7EC;
}

.hamburger.active span:nth-child(1){
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
  opacity: 0;
}

.hamburger.active span:nth-child(3){
  transform: translateY(-10px) rotate(-45deg);
}

  
  
  
  
  






main{
  display: block;
  width: 100%;
  min-width: 0px;
  height: auto;
  overflow: hidden;
}

.main_view{
  display: block;
  width: 100%;
  height: 140vw;
  background-color: #ADADAD;
  overflow: hidden;
  background-image: url("../img/top_bg.jpg");
  background-size: cover;
  background-position: center center;
}
.main_view_nk{
  display: block;
  width: 95%;
  position: relative;
  margin: auto;
}
.main_view_left{
  display: block;
  position: relative;
  z-index: 99999;
}
.main_view_left h1{
  display: block;
  position: relative;
  top: 100px;
  left: 0;
  text-align: center;
  width: 100%;
  margin: 0;
  background-color: hsla(218,100%,31%,1.00);
  color: #FFFFFF;
  font-size: 16px;
}
.main_view_left img{
  display: block;
  position: relative;
  top: 80px;
  width: 100%;
  margin: 0px auto 0px;
}
.mvu{
  display: block;
  position: relative;
  top: 50px;
  left: 0;
  width: 100%;
  height: 5px;
  margin: 0;
  background-color: #001742;
}
.main_view_right img{
  display: block;
  position: absolute;
  top: 60vw;
  right: -34vw;
  width: 140%;
}






/*流れるテキスト*/
.marquee {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  background-color: hsla(0,0%,16%,1.00);
  padding: 2vw 0;
  color: #FFFFFF;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
}

.marquee__track span {
  display: inline-block;
  padding-right: 4em;
  font-size: 4.5vw;
  flex-shrink: 0;
}











.c_one_st{
  display: block;
  width: 100%;
  height: auto;
  background-color: #FFFDEB;
  padding: 10vw 0;
}
.c_one_st h2{
  display: block;
  font-size: 4vw;
  background-color: hsla(219,100%,32%,1.00);
  padding: 2vw 0;
  color: #FFFFFF;
  width: 95%;
  margin: 0 auto 5vw;
  text-align: center;
}
.c_one_st h2 small{
  margin-right: 2vw;
}
.c_one{
  display: block;
  justify-content: space-between;
  position: relative;
  width: 95%;
  margin: auto;
}
.c_one_left{
  display: block;
  position: relative;
  width: 100%;
  height: 100vw;
  background-color: hsla(0,0%,94%,1.00);
  background-image: url("../img/c_one_phot.jpg");
  background-size: cover;
  background-position: center -5vw;
  margin-bottom: 15vw;
}
.c_one_left h4{
  display: block;
  position: absolute;
  bottom: -20vw;
  right: -0vw;
  width: auto;
  font-size: 6vw;
}
.c_one_left h4 span{
  font-size: 4vw;
  margin-right: 2vw;
}
.c_one_left img{
  display: block;
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 60vw;
}
.c_one h1{
  text-align: justify;
  font-size: 5.5vw;
  margin: 0vw auto 0;
  font-weight: bold;
  background: linear-gradient(transparent 60%, hsla(218,43%,76%,1.00) 60%);
  display: inline;
}
.c_one p{
  display: block;
  width: 100%;
  margin: 5vw auto 0;
  font-size: 4.5vw;
}



.main_phot1{
  display: block;
  width: 100%;
  height: auto;
  background-color: #29292A;
  padding: 2vw 0;
}
.blink {
  text-align: center;
  color: #FFFFFF;
  animation: blink 2s ease-in-out infinite;
  font-size: 3.5vw;
}
.blink small{
  color: hsla(300,42%,86%,1.00);
}








.c_ataru_st{
  display: block;
  width: 100%;
  height: auto;
  background-color: hsla(56,100%,83%,1.00);
  padding: 10vw 0;
}
.c_ataru{
  display: block;
  justify-content: space-between;
  position: relative;
  width: 95%;
  margin: auto;
}
.c_ataru_right{
  display: block;
  width: 100%;
  height: 60vw;
  background-color: hsla(0,0%,94%,1.00);
  background-image: url("../img/c_two_phot.jpg");
  background-size: cover;
  background-position: center center;
  margin: 5vw 0 0 0;
}
.c_ataru h1{
  text-align: justify;
  font-size: 5.5vw;
  margin: 0vw auto 0;
  font-weight: bold;
  background: linear-gradient(transparent 60%, hsla(218,43%,76%,1.00) 60%);
  display: inline;
}
.c_ataru p{
  display: block;
  width: 100%;
  margin: 5vw auto 0;
  font-size: 4.5vw;
}





.c_two_st{
  display: block;
  width: 100%;
  height: auto;
  background-color: #FFFDEB;
  padding: 10vw 0;
}
.c_two{
  display: block;
  position: relative;
  width: 95%;
  margin: auto;
}
.c_two h1 span{
  display: block;
  font-size: 3vw;
  margin-bottom: 5vw;
  background-color: hsla(219,100%,32%,1.00);
  padding: 2vw 0;
  color: #FFFFFF;
}
.c_two h1{
  display: block;
  text-align: center;
  font-size: 5.5vw;
  margin: 0;
  font-weight: bold;
  border-bottom: solid 2px hsla(219,100%,32%,1.00);
  padding-bottom: 10px;
}
.c_two h1 big{
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  color: hsla(359,100%,50%,1.00);
  font-size: 6vw;
}

.c_two_flex{
  display: block;
  justify-content: space-between;
  margin: 5vw auto;
}
.c_two_left{
  display: none;
  width: 450px;
  height: auto;
  background-color: hsla(0,0%,92%,1.00);
  background-image: url("../img/c_ojou.jpg");
  background-size: cover;
  background-position: center center;
}
.c_two_right{
  display: block;
  width: 100%;
}
.ctr_p1{
  display: block;
  width: 100%;
  margin: 0px;
  font-size: 4.5vw;
}
.ctr_p2{
  display: block;
  width: 100%;
  margin: 2vw 0 0 0;
  font-size: 3vw;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-weight: bold;
  color: #FFFFFF;
  background-color: hsla(0,100%,50%,1.00);
  text-align: center;
}
.ctr_p3{
  display: block;
  width: 100%;
  margin: 2vw 0 0 0;
  font-size: 3vw;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-weight: bold;
  color: #FFFFFF;
  background-color: hsla(0,100%,50%,1.00);
  text-align: center;
}
.ctr_p4{
  display: block;
  width: 100%;
  margin: 2vw 0 0 0;
  font-size: 3vw;
}
.c_two_right_phot{
  display: block;
  width: 100%;
  height: 50vw;
  background-color: hsla(0,0%,93%,1.00);
  background-image: url("../img/c_two_right_phot.jpg");
  background-size: cover;
  background-position: center center;
  margin: 2vw 0;
}
.ctr_p5{
  width: 100%;
  margin: 0px;
  font-size: 4.5vw;
  background: linear-gradient(transparent 60%, hsla(218,43%,76%,1.00) 60%);
  display: inline;
  font-weight: bold;
}






.c_three_st{
  display: block;
  width: 100%;
  height: auto;
  background-color: hsla(56,100%,83%,1.00);
  padding: 10vw 0;
}
.c_three{
  display: block;
  position: relative;
  width: 95%;
  margin: auto;
}
.c_three h1{
  display: block;
  text-align: center;
  font-size: 5vw;
  margin: 0;
  font-weight: bold;
  background-color: #F50004;
  padding: 2vw 0;
  color: #FFFFFF;
}
.c_three h2{
  display: block;
  text-align: center;
  font-size: 4vw;
  margin: 0 0 2vw 0;
  font-weight: bold;
  padding: 4vw;
  border-bottom: solid 1px #F50004;
}

.hosyou_box{
  display: block;
  width: calc(100% - 4vw);
  background-color: #FFFFFF;
  margin: 2vw auto;
  padding: 2vw 0 2vw 4vw;
  color: #222222;
  font-size: 3vw;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-weight: bold;
}
.hosyou_box span{
  color: #FF0000;
  margin-right: 1vw;
  font-weight: bold;
}
.c_three p{
  display: block;
  width: 100%;
  margin: 2vw auto 0;
  font-size: 2.5vw;
}
.c_three h4{
  display: block;
  text-align: center;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-weight: bold;
  width: 100%;
  margin: 2vw auto 0;
  padding: 2vw 0;
  border-top: solid 1px #F50004;
  border-bottom: solid 1px #F50004;
  font-size: 4vw;
  color: #F50004;
}
.contact_sokushin{
  display: block;
  width: 100%;
  margin: 2vw auto 0!important;
  font-size: 3vw!important;
  text-align: center;
}









.contact_st{
  display: block;
  width: 100%;
  height: auto;
  padding: 10vw 0;
  background-color: #FFFFFF;
}

.contact{
  display: block;
  justify-content: space-between;
  width: 95%;
  margin: auto;
}
.contact h1{
  display: block;
  font-size: 3vw;
  margin-top: 0px;
  text-align: center;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-style: normal;
  color: hsla(218,100%,31%,1.00);
  border-bottom: solid 2px hsla(218,100%,31%,1.00);
  width: 100%;
  padding-bottom: 2vw;
}
.contact h1 span{
  display: block;
  font-size: 8vw;
  color: #131313;
}
.contact_left p{
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  text-align: center;
  width: 100%;
  font-size: 3vw;
}


.contact_nk{
  display: block;
  width: 100%;
  height: auto;
  margin: 2vw 0 0 0;
  text-align: center;
  padding: 0px 0;
}
.tel{
  font-size: 7vw;
  font-weight: bold;
  color: #FFFFFF;
  background-color: hsla(219,100%,32%,1.00);
  border-radius: 100px;
  border: solid 2px hsla(220,100%,14%,1.00);
  display: flex;
  justify-content: center; /* 左右の中央揃え */
  align-items: center;     /* 上下の中央揃え */
}
.tel span{
  font-size: 4vw;
  color: #CCD5E7;
  margin-right: 2vw;
}
.main_contact_uktk{
  display: block;
  margin: auto;
  width: auto;
  padding: 2vw 0 0 0;
  color: #131313;
  font-size: 3vw;
}







footer{
  display: block;
  position: relative;
  width: 100%;
  min-width: 0px;
  height: auto;
  background: linear-gradient(0deg, #002668, hsla(218,100%,31%,1.00));
  color: #002668;
}

.footer_nk{
  display: block;
  width: 100%;
  margin: auto;
  padding: 6vw 0 13vw 0;
}
.footer_up{
  display: block;
  width: 95%;
  height: auto;
  background-color: #FFFFFF;
  margin: 0px auto 0;
  text-align: center;
  line-height: 0;
}
.footer_down{
  display: block;
  justify-content: center;
  margin: 0px auto 0;
}
.footer_down a{
  display: block;
  margin: 0 10px;
  color: #FFFFFF;
  font-size: 4vw;
}


.footer_under{
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  text-align: center;
  color: #FFFFFF;
  font-size: 10px;
  background-color: #0D0D0D;
  line-height: 30px;
}




.main_view_sub{
  display: none;
  width: 100%;
  height: 250px;
  background-color: #CDCDCD;
  text-align: center;
  line-height: 280px;
}





.kiyaku_st{
  display: block;
  width: 100%;
  height: auto;
  background-color: hsla(56,100%,83%,1.00);
  padding-bottom: 10vw;
}


.main_view_sub_content{
  display: block;
  width: 95%;
  max-width: 800px;
  margin: 0px auto;
  padding-bottom: 0px;
  padding-top: 15vw;
}
.main_view_sub_content h3{
  display: block;
  text-align: center;
  background-color: hsla(221,100%,33%,1.00);
  padding: 10px 0;
  color: #FFFFFF;
  border-radius: 5px;
}
.main_view_sub_content h5{
  color: #222222;
  font-size: 16px;
}

.list span{
  display: block;
  font-size: 0.8rem;
}




.comapany_st{
  display: block;
  width: 100%;
  height: auto;
  margin: 20px auto 0;
  padding-bottom: 10vw;
  padding-top: 100px;
  background-color: #FFFDEB;
  text-align: center;
}
.comapany_st h1{
  display: block;
  width: 95%;
  margin: 0 auto 5vw;
  border-bottom: solid 2px hsla(221,100%,33%,1.00);
  font-size: 6vw;
}
.company{
  display: block;
  width: 100%;
  height: auto;
  padding: 0px 0 0px 0;
}
.company{
  display: block;
  width: 95%;
  margin: auto;
}
.company table{
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0px auto 0;
  padding: 0px;
}
.company table tr{
  width: 100%;
  display: block;
  padding: 0px;
}
.company table tr th{
  width: 30vw;
  text-align: justify;
  padding-left: 2vw;
  height: auto;
  color: hsla(221,100%,33%,1.00);
  font-weight: bold;
  border-bottom: solid 1px hsla(221,100%,33%,1.00);
  font-size: 4vw;
}
.company table tr td{
  width: 55vw;
  text-align: justify;
  padding-left: 2vw;
  height: 0px;
  color: #2D2D2D;
  font-weight: 500;
  text-decoration: none!important;
  border-bottom: solid 1px #2D2D2D;
  font-size: 4vw;
}

  
  
  
  .hoso_w{
  color: #FFFFFF;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  margin: 0 0px 0;
}
.hoso{
  color: hsla(0,0%,13%,1.00)!important;
  font-weight: 100!important;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  margin: 0 0px 0!important;
}

  
  
  
  
  
}




















































