@charset "UTF-8";

body{
  margin: 0;
  padding: 0;
}

header {
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: end;
  position: absolute;
  width: 100%;
}

.site_logo{
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  margin: 60px 90px 0 0;
}
header .site_logo a {
  transition: all 0.5s;
}
header .site_logo a:hover {
  opacity: 0.7;
}
header .site_logo img {
  max-width: 144px;
  width: 100%;
  vertical-align: bottom;
}

.site_logo02{
  position: absolute;
  top: 0;
  padding: 0;
  margin: 60px 0 0 120px;
}
header .site_logo02 a {
  transition: all 0.5s;
}
header .site_logo02 a:hover {
  opacity: 0.7;
}
header .site_logo02 img {
  max-width: 144px;
  width: 70%;
  vertical-align: bottom;
}

main{
  position: relative;
  z-index: 0;
}

.main_visual {
  position: relative;
  z-index: 0;
  display: flex;
  margin-top: 0;
  width: 100%;
}
.main_visual img{
  width: 100%;
}

section {
  width: auto;
}

section + section {
  max-width: 1200px;
  margin: 25px auto 0;
}

section:last-of-type{
  padding-bottom: 25px;
  border-bottom: solid 1px #004CA2;
}

div{
  margin-top: 25px;
}

h1 {
  position: relative;
  z-index: 2;
  background-color: #01438F;
  color: #fff;
  font-size: 23px;
  margin: 0;
  padding: 25px 0;
  text-align: center;
}
h2 {
  color: #01438F;
  margin-top: 10px;
}
h3 {
  font-size: 16px;
  margin-top: 0;
}
h3::before{
  content:'';
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 5px;
  background: #014CA1;
}

.subscript{
  vertical-align: sub;
  font-size: 14px;
}

.blue_back{
  background-color: #004CA2;
  color: #fff;
  padding: 2px 12px;
  margin-right: 10px;
}

.two_column{
  display: flex;
  margin-top: 0;
}

.left_column{
  width: calc(50% - 10px);
  margin-right: 10px;
}

.right_column{
  width: calc(50% - 10px);
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
.right_column img{
  margin: auto;
}

.left_column.w10{
  width: calc(10% - 10px);
  margin-right: 10px;
}
.right_column.w10{
  width: calc(10% - 10px);
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
.left_column.w20{
  width: calc(20% - 10px);
  margin-right: 10px;
}
.right_column.w20{
  width: calc(20% - 10px);
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
.left_column.w30{
  width: calc(30% - 10px);
  margin-right: 10px;
}
.right_column.w30{
  width: calc(30% - 10px);
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
.left_column.w40{
  width: calc(40% - 10px);
  margin-right: 10px;
}
.right_column.w40{
  width: calc(40% - 10px);
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
.left_column.w60{
  width: calc(60% - 10px);
  margin-right: 10px;
}
.right_column.w60{
  width: calc(60% - 10px);
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
.left_column.w70{
  width: calc(70% - 10px);
  margin-right: 10px;
}
.right_column.w70{
  width: calc(70% - 10px);
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
.left_column.w80{
  width: calc(80% - 10px);
  margin-right: 10px;
}
.right_column.w80{
  width: calc(80% - 10px);
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
.left_column.w90{
  width: calc(90% - 10px);
  margin-right: 10px;
}
.right_column.w90{
  width: calc(90% - 10px);
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}

.img_box{
  display: flex;
  margin-top: 0;
}

.img_box img{
  /* width: 56%; */
  width: 45%;
}
.img_box img + img{
  width: 44%;
}

.border_area{
  padding: 1em 1em;
  margin: 25px 0;
  border: solid 2px #004CA2;
}

.border_area h4{
  margin: 0;
  font-weight: bold;
}
.border_area p{
  margin: 10px 0 0;
}

.content_img{
  display: flex;
}
.content_img img{
  width: 60%;
  margin: auto;
}

.box_column {
  display: flex;
  margin-top: 25px;
}

.box_column_child {
  border: solid 2px #8FA8C4;
  border-left: none;
  padding: 1em 1em;
}

.box_column_child + .box_column_child{
  border-right: none;
}

.table_area{
  margin-top: 25px;
}

.table{
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th{
  padding: 12px 24px;
  border: 1px solid #004CA2;
  border-left: none;
  background-color: #D4E5F5;
  font-weight: 700;
}

th:last-child{
  border-right: none;
}

td{
  padding: 12px 24px;
  border: 1px solid #004CA2;
  border-left: none;
  text-align: center;
}

td:last-child{
  border-right: none;
}

.blue_text{
  color: #004CA2;
  font-weight: bold;
}

.content{
  border-bottom: solid 1px #004CA2;
}
.content ul{
  display: flex;
}
.content li{
  width: 40%;
}
.content li:nth-child(2){
  width: 60%;
}

.align-right{
  text-align: end;
  font-size: 12px;
}

.flex_imgtext{
  display: flex;
}
.flex_imgtext .img_box{
  margin-top: 0;
}
.flex_imgtext .img_box img{
  height: 65px;
  margin-top: 20px;
  width: auto;
}
.flex_imgtext .img_box img + img{
  margin-left: 10px;
}
.flex_imgtext .text_box{
  margin-top: 0;
  margin-left: 20px;
}
.section_width{
  width: 1200px;
  margin: 25px auto 0;
  font-size: 16px;
}

footer .footer_info {
  display: flex;
  margin-bottom: 16px;
  justify-content: center;
}
footer .footer_info a {
  transition: all 0.5s;
}
footer .footer_info a:hover {
  opacity: 0.7;
}

footer .footer_info .contact_info {
  margin: 40px 0 70px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
footer .footer_info .contact_info .border_box{
  text-align: center;
  border: 1px solid #004ca2;
  padding: 20px 50px;
  margin: 0 60px 10px;
}

/* 以下SP */
@media screen and (max-width: 1024px){

  .site_logo{
    margin: 15px 20px 0 0;
  }
  header .site_logo img {
    max-width: 40px;
    width: 100%;
  }

  .site_logo02{
    margin: 15px 0 0 20px
  }
  header .site_logo02 img {
    max-width: 40px;
    width: 100%;
  }

  section + section {
    padding: 0 15px;
  }

  h1{
    font-size: 1.2rem;
    padding: 25px 15px;
  }

  h2{
    font-size: 1rem;
  }

  .two_column{
    display: block;
  }

  .left_column{
    width: 100%;
  }

  .right_column{
    width: 100%;
    margin-left: 0;
    flex-direction: column;
  }
  .right_column img{
    width: 100%;
  }

  .left_column.w10{
    width: 100%;
  }
  .right_column.w10{
    width: 100%;
    margin-left: 0;
  }
  .left_column.w20{
    width: 100%;
  }
  .right_column.w20{
    width: 100%;
    margin-left: 0;
  }
  .left_column.w30{
    width: 100%;
  }
  .right_column.w30{
    width: 100%;
    margin-left: 0;
  }
  .left_column.w40{
    width: 100%;
  }
  .right_column.w40{
    width: 100%;
    margin-left: 0;
  }
  .left_column.w60{
    width: 100%;
  }
  .right_column.w60{
    width: 100%;
    margin-left: 0;
  }
  .left_column.w70{
    width: 100%;
  }
  .right_column.w70{
    width: 100%;
    margin-left: 0;
  }
  .left_column.w80{
    width: 100%;
  }
  .right_column.w80{
    width: 100%;
    margin-left: 0;
  }
  .left_column.w90{
    width: 100%;
  }
  .right_column.w90{
    width: 100%;
    margin-left: 0;
  }

  .img_box{
    flex-direction: column;
  }

  .img_box img{
    width: 50%;
  }

  .img_box img + img{
    width: 100%;
  }

  .content_img img{
    width: 100%;
  }

  .box_column{
    flex-direction: column;
  }

  .box_column_child{
    border-right: none;
  }

  .box_column_child + .box_column_child{
    border-top: none;
    margin-top: 0;
  }

  .table_area{
    overflow-x: scroll;
  }

  .table{
    min-width: 255%;
  }

  .content ul{
    display: block;
    margin: 0;
  }
  .content li{
    width: 100%;
  }
  .content li:nth-child(2){
    width: 100%;
  }

  .flex_imgtext{
    display: block;
  }

  .flex_imgtext .img_box {
    display: flex;
    flex-direction: inherit;
  }

  .flex_imgtext .img_box img{
    width: calc(100% - 10px);
    height: auto;
  }

  .flex_imgtext .text_box{
    margin-left: 0;
  }

  .section_width{
    width: 90%;
    margin: 25px auto 0;
    font-size: 16px;
    text-align: left;
  }

  footer .footer_info{
    align-items: center;
    flex-direction: column;
  }

  footer .footer_info img{
    width: 100%;
  }

}