@charset "UTF-8";
/**scss共通***/
/**scss共通***/
img {
  width: 100%;
}

.test {
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transform: scale(1);
  transform: rotate(-45deg);
  border-radius: 50%;
  animation: Flash1 1s infinite;
  animation: beyooon_a 1s forwards;
  animation: beyooon_b 1s forwards;
  font-family: "Noto Serif JP", serif;
  background: linear-gradient(90deg, #00486e 0%, #00789b 100%);
}

@keyframes Flash1 {
  50% {
    opacity: 0;
  }
}
.test {
  content: "\f105";
  font-family: FontAwesome;
}

/**scss共通ここまで***/
footer {
  position: relative;
  z-index: 100;
}

#section00 {
  width: 100%;
}

#section01 {
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
#section01 .first_view {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  height: 62vw;
  max-height: 800px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #section01 .first_view {
    height: 134vw;
    max-height: 2000px;
  }
}
#section01 .first_view h2 {
  width: 38%;
  max-width: 487px;
  position: absolute;
  z-index: 15;
  left: 15.5%;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}
@media screen and (max-width: 767px) {
  #section01 .first_view h2 {
    width: 85%;
    max-width: 800px;
    top: 10%;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
  }
}

/************************************************************************/
.imgimg_size {
  width: 52%;
  height: 52vw;
  max-height: 656px;
  position: absolute;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  top: 45%;
  left: 50%;
  z-index: 10;
  -webkit-transition: all 1.8s ease-out;
  transition: all 1.8s ease-out;
  opacity: 0;
}
.imgimg_size.active {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .imgimg_size {
    width: 110%;
    height: auto;
    max-height: 656px;
    position: absolute;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    top: auto;
    bottom: -2.5%;
    left: 55%;
    z-index: 10;
  }
}

/***********/
.shape_size {
  position: absolute;
  width: 65%;
  height: 65vw;
  max-height: 845px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  top: 42%;
  left: 37.5%;
  z-index: 9;
  -webkit-transition: all 1.8s ease-out;
  transition: all 1.8s ease-out;
  opacity: 0;
}
.shape_size.active {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .shape_size {
    width: 130%;
    height: 130vw;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    top: auto;
    bottom: -10%;
    left: 45%;
  }
}

/*****************/
.icon_base {
  width: 20%;
  position: absolute;
  z-index: 20;
  top: 15%;
  left: 52.5%;
}
@media screen and (max-width: 767px) {
  .icon_base {
    width: 44%;
    top: 34%;
    left: 5%;
  }
}
.icon_base .icon01 {
  width: 100%;
  position: relative;
  -webkit-transition: all 1.8s ease-out;
  transition: all 1.8s ease-out;
  opacity: 0;
}
.icon_base .icon01.active {
  opacity: 1;
}
.icon_base .icon02,
.icon_base .icon03,
.icon_base .icon04 {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 1.2s ease-out;
  transition: all 1.2s ease-out;
  opacity: 0;
}
.icon_base .icon02.active,
.icon_base .icon03.active,
.icon_base .icon04.active {
  opacity: 1;
}

/************************************************************************/
#section02 {
  width: 100%;
  padding: 85px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  #section02 {
    padding: 50px 0;
  }
}
#section02 .oceandx_contena {
  width: 90%;
  max-width: 665px;
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transform: scale(1);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
}
#section02 .oceandx_contena:hover {
  transform: scale(1.05);
}
#section02 .oceandx_contena2 {
  width: 90%;
  max-width: 665px;
  margin: 30px auto 0 auto;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transform: scale(1);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
}
#section02 .oceandx_contena2:hover {
  transform: scale(1.05);
}

/**************/
.title {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
  position: relative;
  z-index: 15;
}
.title h2 {
  display: inline-block;
  margin-right: 35px;
  font-size: 12px;
  color: #001b78;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .title h2 {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
}
.title h2 span {
  font-size: 32px;
  letter-spacing: 0.1em;
  display: inline-block;
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 100%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .title h2 span {
    width: 100%;
    font-size: 24px;
    text-align: center;
    line-height: 125%;
  }
}
.title p {
  display: inline-block;
  padding-top: 5px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .title p {
    width: 100%;
    padding-top: 30px;
    text-align: center;
    line-height: 180%;
  }
}

/***************/
#section03 .title {
  margin-bottom: 60px;
}

#section04 {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0px 0;
  overflow: hidden;
}
#section04 .section04__in {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  #section04 .section04__in {
    width: 110%;
    padding-top: 240px;
    margin-left: -7.5%;
  }
}
#section04 .section04__in .maru {
  position: relative;
  width: 100%;
}
#section04 .section04__in .photo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  transform: scale(0.7);
  opacity: 0;
  -webkit-transition: all 1.6s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 1.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 767px) {
  #section04 .section04__in .photo {
    top: 240px;
  }
}
#section04 .section04__in .photo.active {
  transform: scale(1);
  opacity: 1;
}
#section04 .section04__in .misashi {
  width: 26%;
  position: absolute;
  z-index: 10;
  top: 51.5%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  #section04 .section04__in .misashi {
    width: 42%;
    top: 58.0%;
    left: 52.5%;
  }
}
#section04 a.more_bt {
  width: 17.69%;
  text-align: center;
  padding: 14px 0 16px 0;
  border: 2px solid #001b78;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: block;
  font-size: 18px;
  color: #001b78;
  letter-spacing: 0.1em;
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 20;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  #section04 a.more_bt {
    width: 35%;
    top: 64%;
    font-size: 3.2vw;
    padding: 1.5vw 0 1.7vw 0;
    left: 52.5%;
    line-height: 100%;
  }
}
#section04 a.more_bt:hover {
  color: #fff;
}
#section04 a.more_bt:hover > .yaji .on {
  opacity: 0;
}
#section04 a.more_bt:hover > .yaji .off {
  opacity: 1;
}
#section04 a.more_bt:hover::after {
  width: 110%;
}
#section04 a.more_bt .yaji {
  width: 28px;
  display: inline-block;
  line-height: 0;
  vertical-align: 2px;
  position: relative;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  #section04 a.more_bt .yaji {
    width: 4.5vw;
    margin-left: 10px;
  }
}
#section04 a.more_bt .yaji .on {
  position: relative;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}
#section04 a.more_bt .yaji .off {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}
#section04 a.more_bt::before {
  background-color: #fff;
  position: absolute;
  content: "";
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  z-index: -2;
}
#section04 a.more_bt::after {
  background-color: #001b78;
  position: absolute;
  content: "";
  width: 0%;
  height: 110%;
  top: -5%;
  left: -5%;
  z-index: -2;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}
#section04 .title_pos {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
  position: absolute;
  top: 13%;
  left: 12%;
  z-index: 15;
}
@media screen and (max-width: 767px) {
  #section04 .title_pos {
    width: 100%;
    top: 60px;
    left: 0%;
  }
}
#section04 .title_pos h2 {
  display: inline-block;
  margin-right: 20px;
  font-size: 12px;
  color: #001b78;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  #section04 .title_pos h2 {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
}
#section04 .title_pos h2 span {
  font-size: 32px;
  letter-spacing: 0.1em;
  display: inline-block;
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 100%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #section04 .title_pos h2 span {
    width: 100%;
    font-size: 24px;
    text-align: center;
  }
}
#section04 .title_pos p {
  display: inline-block;
  padding-top: 5px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  #section04 .title_pos p {
    width: 100%;
    padding-top: 30px;
    text-align: center;
    line-height: 180%;
  }
}

#section05 {
  width: 100%;
  background-color: #fff;
  padding: 150px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #section05 {
    padding: 60px 0;
  }
}
#section05 .title {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #section05 .title {
    margin-bottom: 15px;
  }
}
#section05 ul.listcamp {
  width: 90%;
  max-width: 1000px;
  margin: 90px auto 0 auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp {
    margin: 50px auto 0 auto;
  }
}
#section05 ul.listcamp li.item01 {
  width: 23%;
  max-width: 230px;
  font-size: 18px;
  font-weight: bold;
  color: #001b78;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp li.item01 {
    width: 100%;
    max-width: 800px;
    margin-bottom: 4vw;
  }
}
#section05 ul.listcamp li.item02 {
  width: 16.5%;
  max-width: 165px;
  margin-right: 50px;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp li.item02 {
    width: 36%;
    margin-bottom: 8vw;
    margin-right: 7.5%;
  }
}
#section05 ul.listcamp li.item03 {
  width: 15.1%;
  max-width: 151px;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp li.item03 {
    margin-bottom: 8vw;
    width: 33%;
  }
}
#section05 ul.listcamp2 {
  width: 90%;
  max-width: 1000px;
  margin: 60px auto 0 auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp2 {
    margin: 40px auto 0 auto;
  }
}
#section05 ul.listcamp2 li.item01 {
  width: 23%;
  max-width: 230px;
  font-size: 18px;
  font-weight: bold;
  color: #001b78;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp2 li.item01 {
    width: 100%;
    max-width: 800px;
    margin-bottom: 4vw;
  }
}
#section05 ul.listcamp2 li.item02 {
  width: 33%;
  max-width: 215px;
  margin-right: 50px;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp2 li.item02 {
    max-width: 800px;
    width: 47%;
    margin-bottom: 8vw;
    margin-right: 7.5%;
  }
}
#section05 ul.listcamp2 li.item03 {
  width: 28%;
  max-width: 182px;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp2 li.item03 {
    width: 39%;
    max-width: 800px;
    margin-bottom: 8vw;
  }
}
#section05 ul.listcamp3 {
  width: 90%;
  max-width: 1000px;
  margin: 60px auto 0 auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp3 {
    margin: 40px auto 0 auto;
  }
}
#section05 ul.listcamp3 li.item01 {
  width: 23%;
  max-width: 230px;
  font-size: 18px;
  font-weight: bold;
  color: #001b78;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp3 li.item01 {
    width: 100%;
    max-width: 800px;
    margin-bottom: 4vw;
  }
}
#section05 ul.listcamp3 li.item02 {
  width: 35%;
  max-width: 224px;
  margin-right: 50px;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp3 li.item02 {
    width: 47.6%;
    max-width: 800px;
    margin-bottom: 8vw;
    margin-right: 7.5%;
  }
}
#section05 ul.listcamp3 li.item03 {
  width: 9.3%;
  max-width: 60px;
  margin-right: 50px;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp3 li.item03 {
    width: 13.9%;
    max-width: 800px;
    margin-right: 30%;
    margin-bottom: 8vw;
  }
}
#section05 ul.listcamp3 li.item04 {
  width: 14.2%;
  max-width: 92px;
  margin-right: 50px;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp3 li.item04 {
    width: 24.6%;
    max-width: 800px;
    margin-right: 7.5%;
    margin-bottom: 8vw;
  }
}
#section05 ul.listcamp3 li.item05 {
  width: 22.78%;
  max-width: 148px;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp3 li.item05 {
    width: 31.5%;
    max-width: 800px;
    margin-bottom: 8vw;
  }
}
#section05 ul.listcamp4 {
  width: 90%;
  max-width: 1000px;
  margin: 60px auto 0 auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp4 {
    margin: 40px auto 0 auto;
  }
}
#section05 ul.listcamp4 li.item01 {
  width: 23%;
  max-width: 230px;
  font-size: 18px;
  font-weight: bold;
  color: #001b78;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp4 li.item01 {
    width: 100%;
    max-width: 800px;
    margin-bottom: 4vw;
  }
}
#section05 ul.listcamp4 li.item02 {
  width: 24.3%;
  max-width: 158px;
  margin-right: 50px;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp4 li.item02 {
    width: 34.4%;
    max-width: 800px;
    margin-bottom: 8vw;
    margin-right: 7.5%;
  }
}
#section05 ul.listcamp4 li.item03 {
  width: 19.4%;
  max-width: 125px;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp4 li.item03 {
    width: 25.9%;
    max-width: 800px;
    margin-bottom: 8vw;
  }
}
#section05 ul.listcamp5 {
  width: 90%;
  max-width: 1000px;
  margin: 60px auto 0 auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp5 {
    margin: 40px auto 0 auto;
  }
}
#section05 ul.listcamp5 li.item01 {
  width: 23%;
  max-width: 230px;
  font-size: 18px;
  font-weight: bold;
  color: #001b78;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp5 li.item01 {
    width: 100%;
    max-width: 800px;
    margin-bottom: 4vw;
  }
}
#section05 ul.listcamp5 li.item02 {
  width: 35%;
  max-width: 224px;
  margin-right: 50px;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp5 li.item02 {
    width: 42.7%;
    max-width: 800px;
    margin-bottom: 8vw;
    margin-right: 7.5%;
  }
}
#section05 ul.listcamp5 li.item03 {
  width: 30.8%;
  max-width: 200px;
  margin-right: 50px;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp5 li.item03 {
    width: 38.1%;
    max-width: 800px;
    margin-bottom: 8vw;
    margin-right: 7.5%;
  }
}
#section05 ul.listcamp5 li.item04 {
  width: 30.2%;
  max-width: 196px;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp5 li.item04 {
    width: 44.9%;
    max-width: 800px;
    margin-bottom: 8vw;
  }
}
#section05 ul.listcamp2b {
  width: 90%;
  max-width: 1000px;
  margin: 60px auto 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp2b {
    margin: 8vw auto 0 auto;
  }
}
#section05 ul.listcamp2b li.item05 {
  width: 24.7%;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp2b li.item05 {
    width: 43%;
    margin-bottom: 8vw;
    margin-left: 2%;
  }
}
#section05 ul.listcamp2b li.item06 {
  width: 18%;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp2b li.item06 {
    width: 38%;
    margin-bottom: 8vw;
    margin-right: 2.5%;
  }
}
#section05 ul.listcamp2b li.item07 {
  width: 15.6%;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp2b li.item07 {
    width: 30%;
    margin-left: 10%;
  }
}
#section05 ul.listcamp2b li.item08 {
  width: 8.8%;
  margin-right: 2%;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp2b li.item08 {
    width: 18%;
    margin-right: 10%;
  }
}
#section05 ul.listcamp3b {
  width: 90%;
  max-width: 1000px;
  margin: 60px auto 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp3b {
    margin: 8vw auto 0 auto;
  }
}
#section05 ul.listcamp3b li.item09 {
  width: 24.8%;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp3b li.item09 {
    width: 45%;
    margin-bottom: 8vw;
    margin-left: 0%;
  }
}
#section05 ul.listcamp3b li.item10 {
  width: 22%;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp3b li.item10 {
    width: 45%;
    margin-bottom: 8vw;
    margin-right: 0%;
  }
}
#section05 ul.listcamp3b li.item11 {
  width: 21.2%;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp3b li.item11 {
    width: 40%;
    margin-left: 30%;
  }
}
#section05 ul.listcamp3b li.item12 {
  width: 10%;
}
@media screen and (max-width: 767px) {
  #section05 ul.listcamp3b li.item12 {
    width: 0%;
    margin-right: 0%;
  }
}

#section06 {
  width: 100%;
  background-image: url(../media/images/top/2021/1227/sec06_back_pc.jpg);
  background-position: center;
  background-size: cover;
  padding: 130px 0;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #section06 {
    padding: 100px 0 80px 0;
    background-image: url(../media/images/top/2021/1227/sec06_back_sp.jpg);
  }
}
#section06 .title h2 {
  color: #fff;
}
#section06 ul {
  width: 90%;
  max-width: 1000px;
  margin: 90px auto 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #section06 ul {
    margin: 60px auto 0 auto;
  }
}
#section06 ul li {
  width: 23%;
  height: 20vw;
  max-height: 230px;
  border: 1px solid #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  #section06 ul li {
    width: 48%;
    height: 43vw;
    margin-bottom: 4vw;
  }
}
#section06 ul li.list01 {
  background-image: url(../media/images/top/2021/1227/sec06_p01.jpg);
  background-size: cover;
  background-position: center;
}
#section06 ul li.list02 {
  background-image: url(../media/images/top/2021/1227/sec06_p02.jpg);
  background-size: cover;
  background-position: center;
}
#section06 ul li.list03 {
  background-image: url(../media/images/top/2021/1227/sec06_p03.jpg);
  background-size: cover;
  background-position: center;
}
#section06 ul li.list04 {
  background-image: url(../media/images/top/2021/1227/sec06_p04.jpg);
  background-size: cover;
  background-position: center;
}
#section06 ul li a {
  display: flex;
  z-index: 15;
  align-items: center;
  width: 100%;
  text-align: center;
  height: 100%;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  #section06 ul li a {
    font-size: 4.4vw;
  }
}
#section06 ul li a span {
  display: block;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 20;
}
#section06 ul li a:hover::after {
  background-color: rgba(0, 0, 0, 0.7);
}
#section06 ul li a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

#section06b {
  width: 100%;
  background-color: #f5f5f5;
  padding: 150px 0 150px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #section06b {
    padding: 100px 0 100px 0;
  }
}
#section06b .map_list_contena {
  width: 90%;
  max-width: 1000px;
  margin: 30px auto 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
#section06b .map_list_contena .list {
  width: 68.8%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 900px) {
  #section06b .map_list_contena .list {
    width: 100%;
    margin-bottom: 15px;
  }
}
#section06b .map_list_contena .list .list01 {
  width: 25.7%;
  border-right: 1px dashed #000;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  #section06b .map_list_contena .list .list01 {
    width: 100%;
    border-right: 0px dashed #000;
    padding-right: 0px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
#section06b .map_list_contena .list .list02 {
  width: 42.8%;
  border-right: 1px dashed #000;
  padding-left: 25px;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  #section06b .map_list_contena .list .list02 {
    width: 100%;
    border-right: 0px dashed #000;
    padding-left: 0px;
    padding-right: 0px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
#section06b .map_list_contena .list .list03 {
  width: 31.5%;
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  #section06b .map_list_contena .list .list03 {
    width: 100%;
    padding-left: 0px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
#section06b .map_list_contena .list dl {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #section06b .map_list_contena .list dl {
    width: 48%;
    margin-bottom: 20px;
  }
}
#section06b .map_list_contena .list dl.longs {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #section06b .map_list_contena .list dl.longs {
    width: 100%;
    margin-bottom: 20px;
  }
}
#section06b .map_list_contena .list dt {
  padding: 3px 10px 5px 10px;
  background-color: #001b78;
  color: #fff;
  display: inline-block;
  margin-bottom: 5px;
  line-height: 100%;
  font-size: 16px;
  font-weight: 500;
}
#section06b .map_list_contena .list dd {
  width: 100%;
  font-size: 14px;
  line-height: 160%;
}
#section06b .map_list_contena .list dd .midtitle {
  color: #001b78;
  margin-bottom: 5px;
}
#section06b .map_list_contena .maps {
  width: 31.2%;
}
@media screen and (max-width: 900px) {
  #section06b .map_list_contena .maps {
    width: 100%;
  }
}
#section06b .map_list_contena .maps figure {
  width: 217.95%;
  max-width: 681px;
  margin-right: 0;
  margin-left: -117.95%;
}
@media screen and (max-width: 900px) {
  #section06b .map_list_contena .maps figure {
    width: 100%;
    max-width: 1000px;
    margin-left: 0%;
    margin-right: auto;
  }
}
#section06b .botan_area {
  width: 90%;
  max-width: 400px;
  margin: 100px auto 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #section06b .botan_area {
    margin: 60px auto 0 auto;
  }
}
#section06b .botan_area a {
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 10px;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  transform: scale(1);
  margin: 0 1% 20px 1%;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  #section06b .botan_area a {
    width: 100%;
  }
}
#section06b .botan_area a:hover {
  transform: scale(1.05);
}
#section06b .botan_area a.tenpo {
  padding: 15px 0 16px 0;
  background-color: #001b78;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #section06b .botan_area a.tenpo {
    margin-bottom: 20px;
  }
}
#section06b .botan_area a.tenpo span {
  display: inline-block;
  position: relative;
  padding-right: 35px;
}
#section06b .botan_area a.tenpo span::after {
  position: absolute;
  top: 60%;
  right: 0;
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../media/images/omni_ocean_club/2021/icon01.png);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#section06b .tenpolist01 {
  width: 90%;
  max-width: 1000px;
  margin: 100px auto 0 auto;
  display: flex;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #section06b .tenpolist01 {
    flex-wrap: wrap;
    margin: 40px auto 0 auto;
    background-color: transparent;
  }
}
#section06b .tenpolist01 .list_ch {
  width: 22%;
  border-right: 1px solid #001b78;
}
@media screen and (max-width: 767px) {
  #section06b .tenpolist01 .list_ch {
    width: 100%;
    background-color: #fff;
    border-right: 0px solid #001b78;
    margin-bottom: 20px;
  }
}
#section06b .tenpolist01 .list_gs {
  width: 78%;
}
@media screen and (max-width: 767px) {
  #section06b .tenpolist01 .list_gs {
    width: 100%;
    background-color: #fff;
    margin-bottom: 0px;
    padding: 0px 0 0 0px;
  }
}
#section06b .tenpolist01 h4 {
  width: 100%;
  padding: 4px 0 6px 0;
  text-align: center;
  color: #001b78;
  font-size: 16px;
  background-color: #d6e1ed;
  font-weight: 700;
}
#section06b .tenpolist01 .inbox {
  width: 100%;
  min-height: 94px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #section06b .tenpolist01 .inbox {
    min-height: 72px;
  }
}
#section06b .tenpolist01 .inbox .inbox_text {
  width: 100%;
  text-align: center;
  font-size: 36px;
  color: #001b78;
  font-weight: 700;
}
#section06b .tenpolist01 .inbox .inbox_text span {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  display: inline-block;
  padding-left: 3px;
}
#section06b .tenpolist01 .inbox .inbox_inbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #section06b .tenpolist01 .inbox .inbox_inbox {
    width: 90%;
    margin: 0 auto;
  }
}
#section06b .tenpolist01 .inbox .inbox_inbox .inbox_inbox01 {
  width: 36.5%;
  text-align: center;
  font-size: 36px;
  color: #001b78;
  font-weight: 700;
  border-right: 1px dashed #001b78;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  #section06b .tenpolist01 .inbox .inbox_inbox .inbox_inbox01 {
    width: 50%;
    border-right: 1px dashed #001b78;
    padding-bottom: 10px;
  }
}
#section06b .tenpolist01 .inbox .inbox_inbox .inbox_inbox01 span.tlt {
  font-size: 14px;
  display: block;
  width: 100%;
  text-align: center;
  padding-bottom: 4px;
  font-weight: 400;
  color: #000;
}
@media screen and (max-width: 767px) {
  #section06b .tenpolist01 .inbox .inbox_inbox .inbox_inbox01 span.tlt {
    line-height: 120%;
  }
}
#section06b .tenpolist01 .inbox .inbox_inbox .inbox_inbox01 span.ten {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  display: inline-block;
  padding-left: 3px;
}
#section06b .tenpolist01 .inbox .inbox_inbox .inbox_inbox02 {
  width: 22.5%;
  text-align: center;
  font-size: 36px;
  color: #001b78;
  font-weight: 700;
  border-right: 1px dashed #001b78;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  #section06b .tenpolist01 .inbox .inbox_inbox .inbox_inbox02 {
    width: 50%;
    border-right: 0px dashed #001b78;
    padding-bottom: 10px;
  }
}
#section06b .tenpolist01 .inbox .inbox_inbox .inbox_inbox02 span.tlt {
  font-size: 14px;
  display: block;
  width: 100%;
  text-align: center;
  padding-bottom: 4px;
  font-weight: 400;
  color: #000;
}
@media screen and (max-width: 767px) {
  #section06b .tenpolist01 .inbox .inbox_inbox .inbox_inbox02 span.tlt {
    padding: 0.6em 0 0.5em 0;
  }
}
#section06b .tenpolist01 .inbox .inbox_inbox .inbox_inbox02 span.ten {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  display: inline-block;
  padding-left: 3px;
}
#section06b .tenpolist01 .inbox .inbox_inbox .inbox_inbox03 {
  width: 41%;
  text-align: center;
  font-size: 36px;
  color: #001b78;
  font-weight: 700;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  #section06b .tenpolist01 .inbox .inbox_inbox .inbox_inbox03 {
    width: 100%;
    border-top: 1px dashed #001b78;
  }
}
#section06b .tenpolist01 .inbox .inbox_inbox .inbox_inbox03 span.tlt {
  font-size: 14px;
  display: block;
  width: 100%;
  padding-bottom: 4px;
  text-align: center;
  font-weight: 400;
  color: #000;
}
#section06b .tenpolist01 .inbox .inbox_inbox .inbox_inbox03 span.ten {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  display: inline-block;
  padding-left: 3px;
}
#section06b .tenpolist02 {
  width: 90%;
  max-width: 1000px;
  margin: 30px auto 0 auto;
  display: flex;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #section06b .tenpolist02 {
    flex-wrap: wrap;
    margin: 20px auto 0 auto;
    background-color: transparent;
  }
}
#section06b .tenpolist02 .list_lun {
  width: 22%;
  border-right: 1px solid #001b78;
}
@media screen and (max-width: 767px) {
  #section06b .tenpolist02 .list_lun {
    width: 50%;
    margin-bottom: 20px;
    background-color: #fff;
  }
}
#section06b .tenpolist02 .list_tak {
  width: 22%;
  border-right: 1px solid #001b78;
}
@media screen and (max-width: 767px) {
  #section06b .tenpolist02 .list_tak {
    width: 50%;
    margin-bottom: 20px;
    border-right: 0px solid #001b78;
    background-color: #fff;
  }
}
#section06b .tenpolist02 .list_del {
  width: 24.4%;
  border-right: 1px solid #001b78;
}
@media screen and (max-width: 767px) {
  #section06b .tenpolist02 .list_del {
    width: 50%;
    margin-bottom: 20px;
    background-color: #fff;
  }
}
#section06b .tenpolist02 .list_cons {
  width: 31.6%;
}
@media screen and (max-width: 767px) {
  #section06b .tenpolist02 .list_cons {
    width: 50%;
    margin-bottom: 20px;
    border-right: 0px solid #001b78;
    background-color: #fff;
  }
}
#section06b .tenpolist02 h4 {
  width: 100%;
  padding: 7px 0 9px 0;
  text-align: center;
  color: #001b78;
  font-size: 16px;
  background-color: #d6e1ed;
  font-weight: 700;
  line-height: 110%;
}
@media screen and (max-width: 767px) {
  #section06b .tenpolist02 h4.g2 {
    width: 100%;
    display: flex;
    height: 2.6em;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  #section06b .tenpolist02 h4.g2 span {
    width: 100%;
    text-align: center;
  }
}
#section06b .tenpolist02 .inbox {
  width: 100%;
  min-height: 75px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #section06b .tenpolist02 .inbox {
    min-height: auto;
    padding: 20px 0;
  }
}
#section06b .tenpolist02 .inbox .inbox_text {
  width: 100%;
  text-align: center;
  font-size: 36px;
  color: #001b78;
  font-weight: 700;
}
#section06b .tenpolist02 .inbox .inbox_text span {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  display: inline-block;
  padding-left: 3px;
}

#section07 {
  width: 100%;
  background-color: #fff;
  padding: 150px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #section07 {
    padding: 80px 0;
  }
}
#section07 a {
  width: 90%;
  height: 160px;
  max-width: 1000px;
  margin: 90px auto 0 auto;
  border: 1px solid #fff;
  position: relative;
  background-image: url(../media/images/top/2021/1227/sec07_p01.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  z-index: 15;
  align-items: center;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  #section07 a {
    font-size: 4.4vw;
    background-image: url(../media/images/top/2021/1227/sec07_p01_sp.jpg);
    width: 90%;
    height: 65vw;
    margin: 40px auto 0 auto;
  }
}
#section07 a span {
  display: block;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 20;
}
#section07 a:hover::after {
  background-color: rgba(0, 0, 0, 0.7);
}
#section07 a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

#section08 {
  width: 100%;
  background-color: #f5f5f5;
  padding: 150px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #section08 {
    padding: 80px 0 50px 0;
  }
}
#section08 .section__in {
  width: 90%;
  max-width: 920px;
  margin: 140px auto 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /***********/
}
@media screen and (max-width: 767px) {
  #section08 .section__in {
    margin: 60px auto 0 auto;
  }
}
#section08 .section__in .news_contena {
  width: 46.18%;
}
@media screen and (max-width: 767px) {
  #section08 .section__in .news_contena {
    width: 100%;
    margin-bottom: 50px;
  }
}
#section08 .section__in h3 {
  font-size: 20px;
  padding-bottom: 8px;
  line-height: 100%;
}
#section08 .section__in .scrollmenu {
  height: 228px;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  background-color: #fff;
}
#section08 .section__in .mCSB_scrollTools {
  width: 8px;
}
#section08 .section__in .mCSB_scrollTools .mCSB_draggerRail {
  width: 8px;
  border-radius: 0px;
  background-color: #d0d0d0;
}
#section08 .section__in .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  position: relative;
  width: 8px;
  border-radius: 0px;
  text-align: center;
  background-color: #001b78;
}
#section08 .section__in .moretext {
  width: 100%;
  text-align: right;
  font-size: 14px;
  padding-top: 8px;
}
#section08 .section__in .moretext a {
  opacity: 1;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}
#section08 .section__in .moretext a:hover {
  opacity: 0.7;
}
#section08 .section__in .moretext .yaji {
  display: inline-block;
  width: 26px;
  line-height: 100%;
  margin-left: 8px;
  vertical-align: 2px;
}
#section08 .section__in ul {
  width: 100%;
}
#section08 .section__in ul li {
  width: 100%;
  padding: 20px 20px 10px 20px;
  text-align: left;
  border-bottom: 2px dotted #001b78;
}
#section08 .section__in ul li p {
  color: #001b78;
}
#section08 .section__in ul li a {
  text-decoration: underline;
}
#section08 .section__in ul li:last-child {
  border-bottom: 0px dotted #001b78;
}

.cates {
  width: 90%;
  max-width: 1000px;
  margin: 50px auto 10px auto;
  position: relative;
  font-weight: 600;
}
.cates span {
  background-color: #fff;
  font-size: 24px;
  color: #001b78;
  padding: 0 1em 0 0;
  position: relative;
  z-index: 5;
}
.cates::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #001b78;
  position: absolute;
  top: 50%;
  left: 0;
}

#list_com_link, #list_com_link2, #list_com_link3 {
  width: 90%;
  margin: 0px auto 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  max-width: 1000px;
}
#list_com_link.secondline, #list_com_link2.secondline, #list_com_link3.secondline {
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #list_com_link.thline, #list_com_link2.thline, #list_com_link3.thline {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
#list_com_link h3, #list_com_link2 h3, #list_com_link3 h3 {
  font-size: 14px;
  font-weight: bold;
  background-color: #dfe7f8;
  padding: 4px 10px 6px 10px;
  line-height: 100%;
  color: #001b78;
  border-radius: 0 12px 12px 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #list_com_link h3, #list_com_link2 h3, #list_com_link3 h3 {
    font-size: 3.2vw;
    padding: 4px 5px 6px 5px;
  }
}
#list_com_link li, #list_com_link2 li, #list_com_link3 li {
  width: 25%;
  margin-top: 25px;
}
#list_com_link li.banner1-2, #list_com_link2 li.banner1-2, #list_com_link3 li.banner1-2 {
  width: 41%;
}
@media screen and (max-width: 767px) {
  #list_com_link li.banner1-2, #list_com_link2 li.banner1-2, #list_com_link3 li.banner1-2 {
    width: 100%;
  }
}
#list_com_link li.spacer_list, #list_com_link2 li.spacer_list, #list_com_link3 li.spacer_list {
  margin-right: 52%;
}
@media screen and (max-width: 767px) {
  #list_com_link li.spacer_list, #list_com_link2 li.spacer_list, #list_com_link3 li.spacer_list {
    margin-right: 0;
  }
}
#list_com_link li.spacer_list_quarter, #list_com_link2 li.spacer_list_quarter, #list_com_link3 li.spacer_list_quarter {
  margin-right: 26%;
}
@media screen and (max-width: 767px) {
  #list_com_link li.spacer_list_quarter, #list_com_link2 li.spacer_list_quarter, #list_com_link3 li.spacer_list_quarter {
    margin-right: 0;
  }
}
#list_com_link li.firstlistbox, #list_com_link2 li.firstlistbox, #list_com_link3 li.firstlistbox {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  #list_com_link li.firstlistbox, #list_com_link2 li.firstlistbox, #list_com_link3 li.firstlistbox {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  #list_com_link li, #list_com_link2 li, #list_com_link3 li {
    margin-top: 20px;
    width: 48%;
  }
}
#list_com_link li.cl2, #list_com_link2 li.cl2, #list_com_link3 li.cl2 {
  width: 48%;
}
@media screen and (max-width: 767px) {
  #list_com_link li.cl2, #list_com_link2 li.cl2, #list_com_link3 li.cl2 {
    width: 100%;
  }
}
#list_com_link li.cl2_a, #list_com_link2 li.cl2_a, #list_com_link3 li.cl2_a {
  width: 40%;
}
@media screen and (max-width: 767px) {
  #list_com_link li.cl2_a, #list_com_link2 li.cl2_a, #list_com_link3 li.cl2_a {
    width: 100%;
  }
}
#list_com_link li.cl2_a_1, #list_com_link2 li.cl2_a_1, #list_com_link3 li.cl2_a_1 {
  width: 72%;
}
#list_com_link li.cl2_a_1.banner2, #list_com_link2 li.cl2_a_1.banner2, #list_com_link3 li.cl2_a_1.banner2 {
  width: 56%;
}
@media screen and (max-width: 767px) {
  #list_com_link li.cl2_a_1.banner2, #list_com_link2 li.cl2_a_1.banner2, #list_com_link3 li.cl2_a_1.banner2 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #list_com_link li.cl2_a_1, #list_com_link2 li.cl2_a_1, #list_com_link3 li.cl2_a_1 {
    width: 100%;
  }
}
#list_com_link li.cl2_b, #list_com_link2 li.cl2_b, #list_com_link3 li.cl2_b {
  width: 30%;
}
@media screen and (max-width: 767px) {
  #list_com_link li.cl2_b, #list_com_link2 li.cl2_b, #list_com_link3 li.cl2_b {
    width: 100%;
  }
}
#list_com_link li.cl2_c, #list_com_link2 li.cl2_c, #list_com_link3 li.cl2_c {
  width: 22%;
}
@media screen and (max-width: 767px) {
  #list_com_link li.cl2_c, #list_com_link2 li.cl2_c, #list_com_link3 li.cl2_c {
    width: 100%;
  }
}
#list_com_link li.cl2_2, #list_com_link2 li.cl2_2, #list_com_link3 li.cl2_2 {
  width: 20%;
}
@media screen and (max-width: 767px) {
  #list_com_link li.cl2_2, #list_com_link2 li.cl2_2, #list_com_link3 li.cl2_2 {
    width: 100%;
  }
}
#list_com_link li.cl3, #list_com_link2 li.cl3, #list_com_link3 li.cl3 {
  width: 100%;
}
#list_com_link li .logobox, #list_com_link2 li .logobox, #list_com_link3 li .logobox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#list_com_link li .logobox.around, #list_com_link2 li .logobox.around, #list_com_link3 li .logobox.around {
  justify-content: space-around;
}
#list_com_link li .logobox .box1, #list_com_link2 li .logobox .box1, #list_com_link3 li .logobox .box1 {
  width: 100%;
  height: 95px;
  display: block;
  display: flex;
  align-items: center;
  position: relative;
}
#list_com_link li .logobox .box1.banner1-2, #list_com_link2 li .logobox .box1.banner1-2, #list_com_link3 li .logobox .box1.banner1-2 {
  width: 55%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #list_com_link li .logobox .box1.banner1-2, #list_com_link2 li .logobox .box1.banner1-2, #list_com_link3 li .logobox .box1.banner1-2 {
    width: 100%;
  }
}
#list_com_link li .logobox .box1:hover > .on, #list_com_link2 li .logobox .box1:hover > .on, #list_com_link3 li .logobox .box1:hover > .on {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  #list_com_link li .logobox .box1, #list_com_link2 li .logobox .box1, #list_com_link3 li .logobox .box1 {
    height: 80px;
  }
}
#list_com_link li .logobox .box2, #list_com_link2 li .logobox .box2, #list_com_link3 li .logobox .box2 {
  width: 46.5%;
  height: 95px;
  display: block;
  display: flex;
  align-items: center;
  position: relative;
}
#list_com_link li .logobox .box2:hover > .on, #list_com_link2 li .logobox .box2:hover > .on, #list_com_link3 li .logobox .box2:hover > .on {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  #list_com_link li .logobox .box2, #list_com_link2 li .logobox .box2, #list_com_link3 li .logobox .box2 {
    width: 48.5%;
    height: 80px;
  }
}
#list_com_link li .logobox .box2_1, #list_com_link2 li .logobox .box2_1, #list_com_link3 li .logobox .box2_1 {
  width: 30%;
  height: 95px;
  display: block;
  display: flex;
  align-items: center;
  position: relative;
}
#list_com_link li .logobox .box2_1:hover > .on, #list_com_link2 li .logobox .box2_1:hover > .on, #list_com_link3 li .logobox .box2_1:hover > .on {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  #list_com_link li .logobox .box2_1, #list_com_link2 li .logobox .box2_1, #list_com_link3 li .logobox .box2_1 {
    width: 34%;
    height: 80px;
  }
}
#list_com_link li .logobox .box2_1.cp07, #list_com_link2 li .logobox .box2_1.cp07, #list_com_link3 li .logobox .box2_1.cp07 {
  width: 24%;
}
@media screen and (max-width: 767px) {
  #list_com_link li .logobox .box2_1.cp07, #list_com_link2 li .logobox .box2_1.cp07, #list_com_link3 li .logobox .box2_1.cp07 {
    width: 32%;
  }
}
#list_com_link li .logobox .box3, #list_com_link2 li .logobox .box3, #list_com_link3 li .logobox .box3 {
  width: 31%;
  height: 95px;
  display: block;
  display: flex;
  align-items: center;
  position: relative;
}
#list_com_link li .logobox .box3:hover > .on, #list_com_link2 li .logobox .box3:hover > .on, #list_com_link3 li .logobox .box3:hover > .on {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  #list_com_link li .logobox .box3, #list_com_link2 li .logobox .box3, #list_com_link3 li .logobox .box3 {
    width: 48.5%;
    height: 80px;
  }
}
#list_com_link li .logobox .box4, #list_com_link2 li .logobox .box4, #list_com_link3 li .logobox .box4 {
  width: 24%;
  height: 95px;
  display: block;
  display: flex;
  align-items: center;
  position: relative;
}
#list_com_link li .logobox .box4.banner2, #list_com_link2 li .logobox .box4.banner2, #list_com_link3 li .logobox .box4.banner2 {
  width: 40%;
}
#list_com_link li .logobox .box4:hover > .on, #list_com_link2 li .logobox .box4:hover > .on, #list_com_link3 li .logobox .box4:hover > .on {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  #list_com_link li .logobox .box4, #list_com_link2 li .logobox .box4, #list_com_link3 li .logobox .box4 {
    width: 48.5%;
    height: 80px;
  }
}
#list_com_link li .logobox .cp00 figure, #list_com_link2 li .logobox .cp00 figure, #list_com_link3 li .logobox .cp00 figure {
  width: 75%;
  margin: 0 auto;
}
#list_com_link li .logobox .cp01 figure, #list_com_link2 li .logobox .cp01 figure, #list_com_link3 li .logobox .cp01 figure {
  width: 70%;
  margin: 0 auto;
}
#list_com_link li .logobox .cp02 figure, #list_com_link2 li .logobox .cp02 figure, #list_com_link3 li .logobox .cp02 figure {
  width: 65%;
  margin: 0 auto;
}
#list_com_link li .logobox .cp03 figure, #list_com_link2 li .logobox .cp03 figure, #list_com_link3 li .logobox .cp03 figure {
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #list_com_link li .logobox .cp03 figure, #list_com_link2 li .logobox .cp03 figure, #list_com_link3 li .logobox .cp03 figure {
    width: 50%;
  }
}
#list_com_link li .logobox .box2.cp03 figure, #list_com_link2 li .logobox .box2.cp03 figure, #list_com_link3 li .logobox .box2.cp03 figure {
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #list_com_link li .logobox .box2.cp03 figure, #list_com_link2 li .logobox .box2.cp03 figure, #list_com_link3 li .logobox .box2.cp03 figure {
    width: 85%;
  }
}
#list_com_link li .logobox .cp04 figure, #list_com_link2 li .logobox .cp04 figure, #list_com_link3 li .logobox .cp04 figure {
  width: 70%;
  margin: 0 auto;
}
#list_com_link li .logobox .cp05 figure, #list_com_link2 li .logobox .cp05 figure, #list_com_link3 li .logobox .cp05 figure {
  width: 90%;
  margin: 0 auto;
}
#list_com_link li .logobox .cp06 figure, #list_com_link2 li .logobox .cp06 figure, #list_com_link3 li .logobox .cp06 figure {
  width: 30%;
  margin: 0 auto;
}
#list_com_link li .logobox .cp07 figure, #list_com_link2 li .logobox .cp07 figure, #list_com_link3 li .logobox .cp07 figure {
  width: 45%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #list_com_link li .logobox .cp07 figure, #list_com_link2 li .logobox .cp07 figure, #list_com_link3 li .logobox .cp07 figure {
    /*margin: 0 auto 0 10%;*/
    width: 30%;
  }
}
#list_com_link li .logobox .cp07 .on, #list_com_link2 li .logobox .cp07 .on, #list_com_link3 li .logobox .cp07 .on {
  width: 70%;
  left: 15%;
}
@media screen and (max-width: 767px) {
  #list_com_link li .logobox .cp07 .on, #list_com_link2 li .logobox .cp07 .on, #list_com_link3 li .logobox .cp07 .on {
    width: 100%;
    left: 0%;
  }
}
#list_com_link li .logobox .cp08 figure, #list_com_link2 li .logobox .cp08 figure, #list_com_link3 li .logobox .cp08 figure {
  width: 45%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #list_com_link li .logobox .cp08 figure, #list_com_link2 li .logobox .cp08 figure, #list_com_link3 li .logobox .cp08 figure {
    /*margin: 0 auto 0 12.5%;*/
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  #list_com_link li .logobox .cp08 .on, #list_com_link2 li .logobox .cp08 .on, #list_com_link3 li .logobox .cp08 .on {
    width: 100%;
    left: 0%;
  }
}
#list_com_link li .logobox .cp09 figure, #list_com_link2 li .logobox .cp09 figure, #list_com_link3 li .logobox .cp09 figure {
  width: 70%;
  margin: 0 auto;
}
#list_com_link li .logobox .cp10 figure, #list_com_link2 li .logobox .cp10 figure, #list_com_link3 li .logobox .cp10 figure {
  width: 65%;
  margin: 0 auto;
}
#list_com_link li .logobox .cp11 figure, #list_com_link2 li .logobox .cp11 figure, #list_com_link3 li .logobox .cp11 figure {
  width: 85%;
  margin: 0 auto;
}
#list_com_link li .logobox .cp12 figure, #list_com_link2 li .logobox .cp12 figure, #list_com_link3 li .logobox .cp12 figure {
  width: 85%;
  margin: 0 auto;
}
#list_com_link li .logobox .cp13 figure, #list_com_link2 li .logobox .cp13 figure, #list_com_link3 li .logobox .cp13 figure {
  width: 85%;
  margin: 0 auto;
}
#list_com_link li .logobox:hover > .on, #list_com_link2 li .logobox:hover > .on, #list_com_link3 li .logobox:hover > .on {
  opacity: 1;
}
#list_com_link li .logobox .on, #list_com_link2 li .logobox .on, #list_com_link3 li .logobox .on {
  position: absolute;
  opacity: 0;
  width: 100%;
  left: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}
#list_com_link li .logobox .on .text, #list_com_link2 li .logobox .on .text, #list_com_link3 li .logobox .on .text {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #list_com_link li .logobox .on .text, #list_com_link2 li .logobox .on .text, #list_com_link3 li .logobox .on .text {
    font-size: 3.0vw;
  }
}
#list_com_link h3, #list_com_link2 h3, #list_com_link3 h3 {
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  #list_com_link h3, #list_com_link2 h3, #list_com_link3 h3 {
    font-size: 3.2vw;
  }
}

/*# sourceMappingURL=top_2023.css.map */
