.parent {
  display: flex;
  gap: 0 40px;
  justify-content: center;
  margin-top: 0px;
  margin-bottom: 0px;
  color: #264A75;
  font-size: 16px;
  
  & > li {
    position: relative;
	z-index: 100;
    padding: 10px 0px 10px 0px;
    
    &:hover {
         ul {
          display: block;
        }
      }
    
    span {
      &::after {
        content: "";
        display: inline-block;
        width: 6px;
        height: 6px;
        border-right: 2px solid #264A75;
        border-bottom: 2px solid #264A75;
        transform: rotate(45deg);
        position: relative;
        top: -3px;
        margin-left: 6px;
      }
      
    }
  }
  
  ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    background: #EFEFEF;
	font-size: 15px;
	color: #970F11;
	padding: 0px 0px 0px 0px;
	margin-bottom: 0px;
    
    li {
      padding: 0px;
    }
  }
}


ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  cursor: pointer;
}

.btn-border1 {
  display: inline-block;
  width: 180px;
  text-align: left;
  background-color: #ffffff;
  border: 1px solid #EFEFEF;
  color: #264A75;
  text-decoration: none;
  font-weight: normal;
  padding: 6px 10px 7px 10px;
  border-radius: 0px;
  transition: .4s;
}

.btn-border1:hover {
  background-color: #407BBE;
  border-color: #407BBE;
  color: #ffffff;
}

.btn-border2 {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: clamp(0.625rem, 0.489rem + 0.68vw, 1rem);
  vertical-align: middle;
  background-color: #407BBE;
  border: 0px solid #407BBE;
  color: #ffffff;
  text-decoration: none;
  font-weight: normal;
  padding: 5px 5px 5px 5px;
  border-radius: 0px 0px 5px 5px;
  transition: .4s;
}

.btn-border2:hover {
  background-color: #996EA1;
  border-color: #996EA1;
  color: #ffffff;
}

.btn-border3 {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: clamp(0.625rem, 0.489rem + 0.68vw, 1rem);
  vertical-align: middle;
  background-color: #F08326;
  border: 0px solid #F08326;
  color: #ffffff;
  text-decoration: none;
  font-weight: normal;
  padding: 4px 0px 5px 0px;
  border-radius: 4px 4px 4px 4px;
  transition: .4s;
}

.btn-border4 {
  display: inline-block;
  width: 100px;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  vertical-align: middle;
  background-color: #ffffff;
  border: 0px solid #ffffff;
  color: #264A75;
  text-decoration: none;
  font-weight: normal;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  transition: .4s;
}


.btn-border4:hover {
  background-color: #407BBE;
  border-color: #407BBE;
  color: #ffffff;
}

.bg_title {
    background-image: url("img_title_02.jpg");
	background-size: 100% 220px; 
	background-repeat:no-repeat;
}

.title_img {
    width: 460px;
	height: 220px;
	background-repeat:no-repeat;
}

/* ボタンホバー無効 */
.non_btn {
  pointer-events: none;
}

/* 点滅 */
.blinking{
	-webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
