@charset "utf-8";
body, div, ul, li, p, a {
	padding: 0;
	margin: 0;
}
/*ページ遷移アニメーション*/
.move .animation-bg {
  background: #ffffff;
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.ltr .animation-bg {
  animation-name: PageAnime-ltr;
}
@keyframes PageAnime-ltr {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*ヘッダー*/
.c-header {
    position: fixed;
	top:0;
    align-items: center;
    background-color: #FFFFFF; /* PCヘッダー色 */
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding-top: 0px;
    padding-right: 2rem;
    padding-left: 2rem;
    padding-bottom: 0px;
    width: 100%;
    height: 80px;
    z-index: 100;
    margin-top: 0px;
    margin-bottom: 0px;
}
.c-header__logo img {
    text-align: left;
    display: flex;
    width: 80%;
}
.c-header__logo2 img{
	vertical-align: baseline;
	margin-left: 0px;
	padding-left: 0px;
}
.c-header__list {
    box-sizing: border-box;
    display: flex;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
}
.c-header__list-item {
    list-style: none;
    text-decoration: none;
    background-color: #FFFFFF;
}
.c-header__list-link {
	color: #000000; /* ヘッダーメニュー文字色 */
	display: block;
	margin-right: 20px; /* ヘッダーメニュー文字幅 */
	text-decoration: none;
	padding: 10px 0px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.7vw + 0.6rem);
}
.c-header__list-link:hover {
	filter: opacity(0.6);
	color: #0207F8;
}
.c-hamburger-menu {
  position: relative;
}
.c-header.c-hamburger-menu {
  position: fixed;
}
@media screen and (max-width: 480px){
.c-header {
	position: fixed;
	align-items: center;
	background: #ffffff; /* PCヘッダー色 */
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	padding-top: 0px;
	padding-right: 1rem;
	padding-left: 1rem;
	padding-bottom: 0rem;
	width: 100%;
	height: 70px;
	z-index: 100
}
.c-header__logo img {
	text-align: left;
	display: flex;
	width: 60%;
	height: auto;
}
.c-header__logo2 img{
	vertical-align: baseline;
	margin-left: 0px;
	padding-left: 0px;
}	
}


@media screen and (max-width: 750px) {
  .c-hamburger-menu__list {
    background: #ffffff;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem; 
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s; 
    top: 100%;
    width: 100%;
  }

  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
}
.c-hamburger-menu__input {
  display: none;
}
.c-hamburger-menu__bg { /*メニュー上段*/
  background: rgba(255, 255, 255, .6);
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4; 
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}
.c-hamburger-menu__button {
  display: none;
}
@media screen and (max-width: 750px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px; 
    height: 32px;
    justify-content: center;
    width: 32px; 
  }
.c-hamburger-menu__button-mark {
  background-color: #000000; 
  display: block;
  height: 1px; 
  transition: 0.3s; 
  width: 20px;
}
}

@media screen and (max-width: 750px) {
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg); 
    transform-origin: 0%; 
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg); 
    transform-origin: 0%; 
  }
	.c-header__list-item {
	width:100%;
	border-bottom: solid #FB0004 1px;
}
}
@media screen and (min-width: 750px) {
	.r-img{
		display: none;
	}
}

/*背景画像*/
body{
	height: 1200px;
}
body::before{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
    background-image: url(image8/bg8-img.jpg);
}
/*パンくずリスト*/
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	color: #D7043F;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: calc(0.6vw + 0.4rem);
	margin-top:80px;
	
}
.breadcrumb li a{
    text-decoration: none;
    color: #333333;
}
	
.breadcrumb li:not(:last-of-type)::after {
  content: "›";
  margin: 0 .6em; /* 記号の左右の余白 */
  color: #777; /* 記号の色 */
}
/*--------------------------------------------*/
.box_1 {
    max-width: 1500px;
    width: 90%;
    border: solid #000C83 2px;
    border-radius: 10px;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
    background-color: #000C83;
    padding-bottom: 5px;
    box-sizing: border-box;
    margin-bottom: 100px;
	animation: fadeup 5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
 
@keyframes fadeup {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.box_2{
    height: 100%;
    background-color: #FFF;
    border-top: solid #000C83 2px;
    border-right: solid #000C83 2px;
    border-bottom: solid #000C83 2px;
    border-left: solid #000C83 2px;
    margin-top: 5px;
	margin-bottom:5px;
    margin-left: 5px;
    margin-right: 5px;
}
h1 {
　　color: #364e96;/*文字色*/
    padding: 0.5em 0;/*上下の余白*/
    border-top: solid 3px #000C83;/*上線*/
    border-bottom: solid 3px #000C83;/*下線*/
    font-family: "Noto Sans JP", sans-serif;
	font-size:calc(1vw + 1rem);
	text-align: center;
}
.bunrui_1{
	font-family: "Noto Sans JP", sans-serif;
    font-size:calc(0.4vw + 0.5rem);
	padding-left:5vw;
}
.bunrui_2{
	width:100%;
	height: auto;
	display: flex;
	flex-wrap :wrap;
	justify-content: space-evenly;
	font-family: "Noto Sans JP", sans-serif;
    font-size:calc(0.5vw + 0.6rem);
	margin-bottom:20px;
	padding-left:50px;
	padding-right:50px;
	box-sizing: border-box;
}
.sp{
	display: block;
}
.box_3{
	width: 96%;
	height: auto;
	margin-left:2%;
	border-radius: 10px;
	background-color: #F8F8F8;
	margin-bottom:5%;
	box-sizing: border-box;
}
.box_4{
	width: 46%;
	padding-top:5%;
	padding-left:4%;
	padding-right:0%;
	margin-bottom: 5%;
	box-sizing: border-box;
}
.box_4 p{
	font-family: "Noto Sans JP", sans-serif;
	font-size:calc(0.6vw + 0.6rem);
	
}
.box_4 span{
	font-family: "Noto Sans JP", sans-serif;
	font-size:calc(0.4vw + 0.6rem);
	position:relative;
	padding-left:20px;
	display:block;
	text-indent: -1em;
}
.box_4 span:before{
	content:"●";
}

.box_5{
	width: 46%;
	padding-top:5%;
	padding-left:4%;
	padding-right:0%;
	padding-bottom:50px;
	box-sizing: border-box;
}
.box_5 strong{
	color:red;
}
h2{
	font-size: calc(1.0vw + 1.0rem);
	font-family: "Noto Sans JP", sans-serif;
	font-weight: bold;
	padding-top:50px;
	padding-bottom:20px;
	
}
.recruit-text1{
	/*display: block;
	justify-content: center;*/
	text-align: left;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.2vw + 0.7rem);
	
	}
.recruit-text1 span{
	display:block;
	text-indent: -1em;
    padding-left: 1em;
	margin-bottom:-20px;
}
.table_design08 {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    max-width: 700px;
    text-align: center;
    background-color: #FFFFFF;
}
.table_design08 th, .table_design08 td {
  border: 2px solid #d2e8f1;
  padding: 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size:calc(0.4vw + 0.6rem);
}

.table_design08 thead th {
  background-color: #333333;
  color: #fff;
  border: 2px solid #333333;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.table_design08 thead th:last-of-type {
  border-right: 2px solid #333333;
}
.table_design08 tbody th {
  color: #333333;
  font-weight: bold;
  text-align: center;
  
  
}
@media screen and (max-width: 787px) {
   .box_3{
	display: flex;
    flex-direction: column;	
	}
	.box_4{
	width: 96%;;
	}
	.box_5{
	width: 96%;
	margin-bottom: 50px;
	}
  .table_design08 {
	width:100%;
    text-align: left;
	
  }
  .table_design08 thead {
    display:none;
  }
  .table_design08 th {
    display: block;
    border: 0;
    border-bottom: 2px solid #e6f1f6;
	position:relative;
  }
	.table_design08 td{
	display: block;
    border: 0;
    border-bottom: 2px solid #e6f1f6;
	position:relative;
	padding-left: 40%;
	}
  .table_design08 tbody th{
    background: #333333;
    color:#fff;
  }
  .table_design08 td::before{
    content: attr(data-label);
    color: #333333;
    font-weight: bold;
	font-size:calc(0.3vw + 0.6rem);
    display: inline-block;
    width: 30%;
    min-width: 10rem;
	padding-right: 10px;
	position: absolute;
    left:0;
  }
}
.box_2 em{
  font-family: "Noto Sans JP", sans-serif;
  font-size:calc(0.3vw + 0.5rem);
  position:relative;
  padding-left:20px;
  display:block;
}
.box_2 em:before{
	content:'※';
	position:absolute;
	top:0;
	left:0;
}
.box_4 em{
  font-family: "Noto Sans JP", sans-serif;
  font-size:calc(0.3vw + 0.5rem);
  position:relative;
  padding-left:20px;
  display:block;
  padding-bottom:30px;
}
.box_4 em:before{
	content:'※';
	position:absolute;
	top:0;
	left:0;
}

.box_5 em{
  font-family: "Noto Sans JP", sans-serif;
  font-size:calc(0.3vw + 0.5rem);
  position:relative;
  padding-left:20px;
  display:block;
}
.box_5 em:before{
	content:'※';
	position:absolute;
	top:0;
	left:0;
}
.box_3{
	display:flex;
	justify-content: space-around;
}
.box_5 p{
	font-family: "Noto Sans JP", sans-serif;
	font-size:calc(0.6vw + 0.6rem);
}
.box_5 span{
	width:100%;
	font-family: "Noto Sans JP", sans-serif;
	font-size:calc(0.4vw + 0.6rem);
	display: block;
	position:relative;
	padding-left:20px;
	box-sizing: border-box;
	text-indent:-1em;
}
.box_5 span:before{
	content:"●";
}
.between{
	padding-top:50px;
}
.temp{
	width:100%;
	height: auto;
	padding-bottom:30px;
}
.temp img{
	width:100%;
	height: auto;
}
.tyuui{
	padding-top:50px;
}
.quick{
	width: 100%;
	height: 100%;
	text-align: center;
	
}
.quick img{
	width: 60%;
	height:auto;
	padding-top:10%;
	padding-bottom:auto;
	
}
.table_design10 {
  margin:0 auto;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  max-width: 700px;
  text-align: center;
}
.table_design10 th, .table_design10 td {
  border: 2px solid #d2e8f1;
  padding: 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size:calc(0.4vw + 0.6rem);
}

.table_design10 thead th {
  background-color: #333333;
  color: #fff;
  border: 2px solid #333333;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.table_design10 thead th:last-of-type {
  border-right: 2px solid #333333;
}
.table_design10 tbody th {
  color: #333333;
  font-weight: bold;
  text-align: center;
  
  
}
@media screen and (max-width: 787px) {
  .table_design10 {
	width:100%;
    text-align: left;
	
  }
  .table_design10 thead {
    display:none;
  }
  .table_design10 th {
    display: block;
    border: 0;
    border-bottom: 2px solid #e6f1f6;
	position:relative;
  }
	.table_design10 td{
	display: block;
    border: 0;
    border-bottom: 2px solid #e6f1f6;
	position:relative;
	padding-left: 40%;
	}
  .table_design10 tbody th{
    background: #333333;
    color:#fff;
  }
  .table_design10 td::before{
    content: attr(data-label);
    color: #333333;
    font-weight: bold;
	font-size:calc(0.3vw + 0.6rem);
    display: inline-block;
    width: 30%;
    min-width: 10rem;
	padding-right: 10px;
	position: absolute;
    left:0;
  }
}
.box_6{
	margin-left:20%;
	margin-right:20%;
}
.box_6 p{
	font-family: "Noto Sans JP", sans-serif;
	font-size:calc(0.6vw + 0.6rem);
}
.box_6 span{
	font-family: "Noto Sans JP", sans-serif;
	font-size:calc(0.4vw + 0.6rem);
	position:relative;
	padding-left:20px;
	display:block;
}
.box_6 span:before{
	content:'●';
	position:absolute;
	left:0;
	top:0;
}	
.box_7 img{
	 width: 30%;
    height: auto;
    float: right;
    margin: 0 0 0 20px;
}
.box_7 {
	width:100%;
	height: auto;
	flex-wrap :wrap;
	font-family: "Noto Sans JP", sans-serif;
    font-size:calc(0.2vw + 0.7rem);
	margin-bottom:20px;
	padding-left:10vw;
	padding-right:10vw;
	box-sizing: border-box;
}
@media screen and (max-width: 600px) {
.box_7 {
	width:100%;
	height: auto;
	flex-wrap :wrap;
	font-family: "Noto Sans JP", sans-serif;
    font-size:calc(0.2vw + 0.7rem);
	margin-bottom:20px;
	padding-left:4vw;
	padding-right:4vw;
	box-sizing: border-box;
}	
}
.clearfix{
    clear: both;
}
.btn{
	display: flex;
	justify-content: center;
	width:100%;
	height:auto;
	padding-top:10px;
	padding-bottom:10px;
}
a.btn_03 {
    display: block;
	align-items: center;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	width: 10vw;
	height: 1.2vw;
	padding: 1rem 4rem 1.5rem 4rem;
	font-weight: bold;
	background: #000C83;
	border: solid 2px #ffffff;
	color: #ffffff;
	border-radius: 100vh;
	transition: 0.5s;
	font-size: calc(0.4vw + 0.6rem);
	
}
a.btn_03:hover {
	border: solid 2px #000C83;
	color: #000C83;
	background: #ffffff;
}
.sds{
	text-align: right;
	font-family: "Noto Sans JP", sans-serif;
    font-size:calc(0.2vw + 0.2rem);
}
/*フッターサイトマップ*/	
#footer {
  position: relative;
  margin-top: 40px;
  color: #333;
}
#footer a {
  text-decoration: none;
  color: #333;
}
#footer a:hover {
  text-decoration: underline;
}
#footer .primary {
  padding: 40px 20px;
}
#footer .primary .flex {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
}
#footer .primary .flex .left{
  width: 100%;
}
#footer .primary .flex .left .logo{
	width: 100%;
    font-size: 1.4em;  
}
#footer .primary .flex .left .address{
    font-size: calc(0.2vw + 0.8rem);	
}
#footer .primary .flex .right{
  display: flex;
  width: 100%;
  justify-content: start;
}
@media screen and (max-width: 896px) {
#footer .primary .flex .left{
  width: 450px;
}
#footer .primary .flex .left .logo{
    font-size: 18px;  
}
#footer .primary .flex .left .address{
    font-size: 12px;	
}
#footer .primary .flex .right{
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  font-size: 12px;
}
}
@media screen and (max-width: 767px) {
  #footer .primary {
    padding: 20px 20px;
  }
  #footer .primary .flex {
    display: block;
  }
  #footer .primary .flex .left{
    width: 100%;
  }
  #footer .primary .flex .right{
    width: 100%;
    display: block;
  }
}
/* logo */

#footer .logo {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #footer .logo {
    font-size: 16px;
  }
}

/* address */

.address {
  margin: 10px 0 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .address {
    font-size: 12px;
  }
}

/* navi */

.navi-section {
  display: flex;
  flex-direction: column;
  width: 25%;
  margin-left: 20px;
  font-size:calc(0.5vw + 0.5rem);
}
#footer .parent {
  margin: 0 0 16px 0;
  padding: 0;
  font-weight: bold;
}
#footer .navi {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .navi li {
  margin: 8px 0 0 0;
  padding: 0;
}
#footer .navi li:first-child {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .navi-section {
  display: block;
  width: 100%;
  margin: 40px 0 0;
}
#footer .parent {
  font-size: 12px;
  margin: 0 0 10px;
}
  #footer .navi {
    font-size: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000000;
  }
  #footer .navi li {
    border-top: 1px solid #000000;
    padding-top: 10px;
    margin-top: 10px;
    font-size: 12px;
  }
}

/* sns-navi */

#footer .sns-navi {
  margin: 20px 0 0;
  padding: 0;
}
#footer .sns-navi li {
  display: inline-block;
  margin: 0 20px 0 0;
  padding: 0;
  font-size: 20px;
}
#footer .sns-navi li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  #footer .sns-navi {
    margin: 20px 0 0;
    padding: 0;
  }
  #footer .sns-navi li {
    margin: 0 20px 0 0;
    padding: 0;
    font-size: 18px;
  }
}

/* sitenavi */

#footer .sitenavi {
  width: 50%;
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .sitenavi li {
  display: inline-block;
  margin: 0 0 0 20px;
  padding: 0;
}
#footer .sitenavi li:first-child {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  #footer .sitenavi {
    width: 100%;
    text-align: center;
    font-size: 12px;
  }
}

body {
    font-family: Lato, sans-serif;
    background-repeat: no-repeat;
}

footer {
	width: 100%;
	bottom: 0px;
	background-color: #FAF7D4;
}
footer div {
  margin: -5px 0px 0px 0px;
  padding:0px;
  color: #333;
  text-align:center;
}
svg {
  width:100%;
}



.wave {
  animation: wave 3s linear;
  animation-iteration-count:infinite;
  fill: #f9c202;
}
.drop {
  fill: transparent;
  animation: drop 5s ease infinite normal;
  stroke: #f9c202;
  stroke-width:0.5;
  opacity:.6; 
  transform: translateY(80%);
}
.drop1 {
  transform-origin: 20px 3px;
}
.drop2 {
  animation-delay: 3s;
  animation-duration:3s;
  transform-origin: 25px 3px;
}
.drop3 {
  animation-delay: -2s;
  animation-duration:3.4s;
  transform-origin: 16px 3px;
}
.gooeff {
    filter: url(#goo);
}
#wave2 {
  animation-duration:5s;
  animation-direction: reverse;
  opacity: .6
}
#wave3 {
  animation-duration: 7s;
  opacity:.3;
}
@keyframes drop {
  0% {
    transform: translateY(80%); 
    opacity:.6; 
  }
  80% {
    transform: translateY(80%); 
    opacity:.6; 
  }
  90% { 
    transform: translateY(10%) ; 
    opacity:.6; 
  }
  100% { 
    transform: translateY(0%) scale(1.5);  
    stroke-width:0.2;
    opacity:0; 
  }
}
@keyframes wave {
  to {transform: translateX(-100%);}
}
@keyframes ball {
  to {transform: translateY(20%);}
}
.copyright{
	color: #333333;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
	font-size: calc(0.5vw + 0.5rem);
	text-align: center;
	background-color: #FAF7D4
}
