@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP Light";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Light.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP Medium";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSansJP-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP Bold";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "OpenSans ExtraBold";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/OpenSans-ExtraBold.woff2") format("woff2");
  font-display: swap;
}
/********************************************
/* common
********************************************/
.link {
  color: #009FE8;
  text-decoration: underline;
}
.link:hover {
  text-decoration: none;
}

/********************************************
/* Wrap
********************************************/
.sec_inner {
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
  margin: 0 auto;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec_inner {
    padding-left: 3.846vw;
    padding-right: 3.846vw;
    margin: 0 auto;
  }
}
@media (max-width: 750px) {
  .sec_inner {
    width: 100%;
    padding-left: 6.667vw;
    padding-right: 6.667vw;
  }
}

.col2 {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .col2 {
    display: block;
  }
}

/********************************************
* header
********************************************/
.transform {
  background-color: rgba(0, 0, 0, 0.6);
}

body.fixed {
  position: fixed;
  width: 100%;
}

.header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 0 50px;
  margin: 0 auto;
  box-sizing: border-box;
  transition: padding 0.5s, background-color 0.5s;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .header {
    padding: 0 3.8461538462vw;
  }
}
@media (max-width: 750px) {
  .header {
    height: 13.3333333333vw;
    padding: 0;
  }
}
.header .gnav {
  display: block;
  text-align: left;
  width: 100%;
  margin: auto;
}
.header .gnav .main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  transition: all 0.2s;
}
.header .left {
  width: 390px;
  margin: 20px 0 20px 10px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .header .left {
    width: 30vw;
    margin: 1.5384615385vw 0 1.5384615385vw 0.7692307692vw;
  }
}
@media (max-width: 750px) {
  .header .left {
    width: auto;
    height: 13.3333333333vw;
  }
}
.header .left .logo h1 {
  line-height: 1;
  display: block;
}
.header .left .logo h1 img {
  width: 390px;
  height: 50px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .header .left .logo h1 img {
    width: 30vw;
    height: 3.8461538462vw;
  }
}
@media (max-width: 750px) {
  .header .left .logo h1 img {
    width: auto;
    height: 6.6666666667vw;
  }
}
.header .right {
  flex: 1;
  width: 100%;
}
@media (max-width: 750px) {
  .header .right {
    display: flex;
    justify-content: flex-end;
  }
}
.header .main_nav {
  flex: 1;
}
.header .main_nav ul {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 750px) {
  .header .main_nav ul {
    display: block;
  }
}
.header .main_nav ul li a {
  font-family: "Noto Sans JP";
  display: block;
  color: #fff;
  font-size: 19px;
  line-height: 1;
  padding: 27px 25px;
  text-decoration: none;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .header .main_nav ul li a {
    font-size: 1.4615384615vw;
    padding: 3.0769230769vw 1.9230769231vw;
  }
}
@media (max-width: 750px) {
  .header .main_nav ul li a {
    text-align: center;
    display: block;
    color: #000;
    font-size: 5.3333333333vw;
    line-height: 1;
    padding: 5.3333333333vw 0;
    border-bottom: 2px solid #000;
  }
}
.header .main_nav ul li:hover a {
  color: #00b5f4;
}
.header #menu-icon {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-flow: column;
  z-index: 99999;
  cursor: pointer;
  height: 13.3333333333vw;
  width: 13.3333333333vw;
  padding: 1.3333333333vw 0;
  background-color: #000;
}
.header #menu-icon .wrap {
  position: relative;
  width: 8vw;
  height: 6.1333333333vw;
}
.header #menu-icon .wrap span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.2666666667vw;
  display: block;
  line-height: 0;
  background-color: #fff;
  font-size: 0;
  transition: 0.3s;
  margin: auto;
}
.header #menu-icon .wrap span:nth-of-type(1) {
  top: 0;
}
.header #menu-icon .wrap span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header #menu-icon .wrap span:nth-of-type(3) {
  top: 100%;
  transform: translateY(-100%);
}
@media (max-width: 750px) {
  .header .menu_wrap {
    position: fixed;
    width: 100vw;
    min-height: 100vh;
    height: 100%;
    left: 100vw;
    overflow: scroll;
    top: 13.3333333333vw;
    background: #FFF;
    padding: 13.3333333333vw 6.667vw 40vw;
    transition: 0.3s;
    z-index: 99999;
  }
}
.header.open .menu_wrap {
  left: 0;
}
.header.open #menu #menu-icon .wrap span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
}
.header.open #menu #menu-icon .wrap span:nth-of-type(2) {
  opacity: 0;
}
.header.open #menu #menu-icon .wrap span:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
}

/********************************************
* mv
********************************************/
#mv {
  position: relative;
  max-width: 100%;
  height: 900px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  #mv {
    height: 69.2307692308vw;
  }
}
@media (max-width: 750px) {
  #mv {
    height: 64vw;
  }
}
#mv .mainv_back {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
}
#mv .mainv_text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 751px) and (max-width: 1300px) {
  #mv .mainv_text {
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 750px) {
  #mv .mainv_text {
    top: 40%;
    left: 44%;
    transform: translateX(-44%);
  }
}
#mv .mainv_text .m_title {
  font-size: 62px;
  font-family: "Noto Sans JP Bold";
  color: #fff;
  padding: 0;
}
@media (min-width: 751px) and (max-width: 1300px) {
  #mv .mainv_text .m_title {
    font-size: 4.7692307692vw;
  }
}
@media (max-width: 750px) {
  #mv .mainv_text .m_title {
    font-size: 5.3333333333vw;
  }
}

/********************************************
* sec1
********************************************/
.sec1 {
  position: relative;
  padding: 120px 0 90px;
  background-color: #FFF;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec1 {
    padding: 0 0 6.9230769231vw;
  }
}
@media (max-width: 750px) {
  .sec1 {
    padding: 14.6666666667vw 0 12vw;
  }
}
.sec1 .sec_inner {
  max-width: 1100px;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec1 .sec_inner {
    max-width: 84.6153846154vw;
  }
}
.sec1 .sec_inner .services_menu {
  display: flex;
  justify-content: space-around;
}
@media (max-width: 750px) {
  .sec1 .sec_inner .services_menu {
    display: flex;
    flex-direction: column;
  }
}
.sec1 .sec_inner .services_menu .item {
  flex: 1;
  width: 30%;
}
.sec1 .sec_inner .services_menu .item:nth-child(2) {
  padding: 0 30px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec1 .sec_inner .services_menu .item {
    flex: 1;
  }
  .sec1 .sec_inner .services_menu .item:nth-child(2) {
    padding: 0 3.3333333333vw;
  }
}
@media (max-width: 750px) {
  .sec1 .sec_inner .services_menu .item {
    flex: 1;
    width: 100%;
    padding: 6.6666666667vw 6.6666666667vw;
  }
}
.sec1 .sec_inner .services_menu .item .item_h3 {
  font-family: "Noto Sans JP Medium";
  font-size: 23px;
  text-align: center;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec1 .sec_inner .services_menu .item .item_h3 {
    font-size: 1.7692307692vw;
  }
}
@media (max-width: 750px) {
  .sec1 .sec_inner .services_menu .item .item_h3 {
    font-size: 5.3333333333vw;
  }
}
.sec1 .sec_inner .services_menu .item .item_img {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 72px;
  padding: 50px 0;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec1 .sec_inner .services_menu .item .item_img {
    font-size: 5.5384615385vw;
    padding: 3.8461538462vw 0;
  }
}
@media (max-width: 750px) {
  .sec1 .sec_inner .services_menu .item .item_img {
    font-size: 13.3333333333vw;
    padding: 13.3333333333vw 0;
  }
}
.sec1 .sec_inner .services_menu .item .item_text {
  font-family: "Noto Sans JP Light";
  font-size: 18px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec1 .sec_inner .services_menu .item .item_text {
    font-size: 1.3846153846vw;
  }
}
@media (max-width: 750px) {
  .sec1 .sec_inner .services_menu .item .item_text {
    font-size: 3.2vw;
  }
}
.sec1 .sec_inner .title_center {
  width: 300px;
  height: auto;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec1 .sec_inner .title_center {
    width: 23.0769230769vw;
  }
}
@media (max-width: 750px) {
  .sec1 .sec_inner .title_center {
    width: 40vw;
  }
}
.sec1 .sec_inner .title_center h2.achievement_title {
  position: relative;
  display: inline-block;
  font-family: "Noto Sans JP Medium";
  padding: 50px 55px;
  font-size: 24px;
  text-align: center;
}
.sec1 .sec_inner .title_center h2.achievement_title:before {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  border-top: solid 1px black;
  border-bottom: solid 1px black;
  left: 0;
}
.sec1 .sec_inner .title_center h2.achievement_title:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  border-top: solid 1px black;
  border-bottom: solid 1px black;
  right: 0;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec1 .sec_inner .title_center h2.achievement_title {
    padding: 3.8461538462vw 4.2307692308vw;
    font-size: 1.8461538462vw;
  }
}
@media (max-width: 750px) {
  .sec1 .sec_inner .title_center h2.achievement_title {
    padding: 6.6666666667vw 7.3333333333vw;
    font-size: 3.2vw;
  }
}
.sec1 .sec_inner .achievement_box {
  max-width: 1300px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec1 .sec_inner .achievement_box {
    max-width: 100vw;
  }
}
@media (max-width: 750px) {
  .sec1 .sec_inner .achievement_box {
    max-width: 90.6666666667vw;
  }
}
.sec1 .sec_inner .achievement_box .box_title {
  width: 300px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec1 .sec_inner .achievement_box .box_title {
    width: 15.3846153846vw;
  }
}
.sec1 .sec_inner .achievement_box .box_text {
  width: 100%;
}
.sec1 .sec_inner .achievement_box .box_text .itemlist {
  font-size: 20px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec1 .sec_inner .achievement_box .box_text .itemlist {
    font-size: 1.5384615385vw;
    line-height: 2vw;
  }
}
@media (max-width: 750px) {
  .sec1 .sec_inner .achievement_box .box_text .itemlist {
    font-size: 3.2vw;
    line-height: 1.6;
  }
}
.sec1 .sec_inner .achievement_box .box_text .itemlist .item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  text-decoration: none;
}
@media (max-width: 750px) {
  .sec1 .sec_inner .achievement_box .box_text .itemlist .item {
    display: block;
  }
}
.sec1 .sec_inner .achievement_box .box_text .itemlist .item:last-child {
  font-family: "Noto Sans JP Light";
  font-size: 16px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec1 .sec_inner .achievement_box .box_text .itemlist .item:last-child {
    font-size: 1.2307692308vw;
  }
}
@media (max-width: 750px) {
  .sec1 .sec_inner .achievement_box .box_text .itemlist .item:last-child {
    font-size: 3.2vw;
  }
}
.sec1 .sec_inner .achievement_box .box_text .itemlist .item:last-child span {
  font-size: 14px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec1 .sec_inner .achievement_box .box_text .itemlist .item:last-child span {
    font-size: 1.0769230769vw;
  }
}
@media (max-width: 750px) {
  .sec1 .sec_inner .achievement_box .box_text .itemlist .item:last-child span {
    font-size: 3.2vw;
  }
}
.sec1 .sec_inner .achievement_box .box_text .itemlist .item:last-child .item_name {
  border-bottom: none;
}
.sec1 .sec_inner .achievement_box .box_text .itemlist .item:last-child .item_value {
  border-bottom: none;
}
.sec1 .sec_inner .achievement_box .box_text .itemlist .item a {
  display: contents;
  text-decoration: none;
}
.sec1 .sec_inner .achievement_box .box_text .itemlist .item .item_name {
  display: flex;
  justify-content: flex-start;
  width: 860px;
  padding: 30px 40px 30px 20px;
  border-bottom: 1px solid #000;
  align-items: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec1 .sec_inner .achievement_box .box_text .itemlist .item .item_name {
    width: 60vw;
    padding: 2.3076923077vw 3.0769230769vw 2.3076923077vw 3.0769230769vw;
    border-bottom: 0.0769230769vw solid #000;
    font-size: 1.3846153846vw;
  }
}
@media (max-width: 750px) {
  .sec1 .sec_inner .achievement_box .box_text .itemlist .item .item_name {
    width: 13.3333333333%vw;
    padding: 4vw 0 4vw 0;
    border-bottom: none;
    font-size: 3.2vw;
  }
}
.sec1 .sec_inner .achievement_box .box_text .itemlist .item .item_value {
  width: 100%;
  padding: 30px 0 30px 0;
  border-bottom: 1px solid #000;
  position: relative;
  font-family: "Noto Sans JP Light";
  font-size: 18px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec1 .sec_inner .achievement_box .box_text .itemlist .item .item_value {
    padding: 2.3076923077vw 0 2.3076923077vw 0;
    border-bottom: 0.0769230769vw solid #000;
    font-size: 1.3846153846vw;
  }
}
@media (max-width: 750px) {
  .sec1 .sec_inner .achievement_box .box_text .itemlist .item .item_value {
    padding: 0 0 4vw 0;
    display: block;
    font-size: 3.2vw;
  }
}
.sec1 .sec_inner .achievement_box .box_text .itemlist .item .br-sp {
  display: none;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec1 .sec_inner .achievement_box .box_text .itemlist .item .br-sp {
    display: none;
  }
}
@media (max-width: 750px) {
  .sec1 .sec_inner .achievement_box .box_text .itemlist .item .br-sp {
    display: block;
  }
}

.s_title_sec {
  margin: 0;
}
.s_title_sec .en_title {
  margin: 0;
  position: relative;
  font-weight: normal;
  margin-bottom: 100px;
  font-size: 60px;
  text-align: center;
  font-family: "OpenSans ExtraBold";
}
@media (min-width: 751px) and (max-width: 1300px) {
  .s_title_sec .en_title {
    margin-bottom: 7.6923076923vw;
    font-size: 4.6153846154vw;
  }
}
@media (max-width: 750px) {
  .s_title_sec .en_title {
    margin-bottom: 13.3333333333vw;
    font-size: 9.3333333333vw;
  }
}
.s_title_sec .en_title .ja_title {
  display: flex;
  align-items: center; /* 縦位置の調整 */
  justify-content: center; /* 横位置の調整 */
  font-size: 19px;
}
.s_title_sec .en_title .ja_title:before {
  content: "";
  flex-grow: 0.05; /* 少数にする */
  height: 1px;
  background: #000;
  margin-right: 20px;
}
.s_title_sec .en_title .ja_title:after {
  content: "";
  flex-grow: 0.05; /* 少数にする */
  height: 1px;
  background: #000;
  margin-left: 20px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .s_title_sec .en_title .ja_title {
    font-size: 1.4615384615vw;
  }
  .s_title_sec .en_title .ja_title:before {
    height: 0.0769230769vw;
    margin-right: 1.5384615385vw;
  }
  .s_title_sec .en_title .ja_title:after {
    height: 0.0769230769vw;
    margin-left: 1.5384615385vw;
  }
}
@media (max-width: 750px) {
  .s_title_sec .en_title .ja_title {
    font-size: 3.2vw;
  }
  .s_title_sec .en_title .ja_title:before {
    height: 0.1333333333vw;
    margin-right: 2.6666666667vw;
  }
  .s_title_sec .en_title .ja_title:after {
    height: 0.1333333333vw;
    margin-left: 2.6666666667vw;
  }
}

/********************************************
* sec2
********************************************/
.sec2 {
  position: relative;
  padding: 0 0 120px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec2 {
    padding: 0 0 9.2307692308vw;
  }
}
@media (max-width: 750px) {
  .sec2 {
    padding: 0 0 12vw;
  }
}
.sec2 .sec_inner {
  max-width: 1100px;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec2 .sec_inner {
    max-width: 84.6153846154vw;
  }
}
.sec2 .sec_inner .message {
  font-family: "Noto Sans JP Light";
  text-align: center;
  font-size: 19px;
  margin-bottom: 100px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec2 .sec_inner .message {
    font-size: 1.4615384615vw;
    margin-bottom: 7.6923076923vw;
  }
}
@media (max-width: 750px) {
  .sec2 .sec_inner .message {
    font-size: 3.3333333333vw;
    margin-bottom: 13.3333333333vw;
    padding-left: 6.6666666667vw;
    padding-right: 6.6666666667vw;
  }
}
.sec2 .sec_inner .outline_box {
  max-width: 1300px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec2 .sec_inner .outline_box {
    max-width: 100vw;
  }
}
@media (max-width: 750px) {
  .sec2 .sec_inner .outline_box {
    max-width: 90.6666666667vw;
  }
}
.sec2 .sec_inner .outline_box .box_title {
  width: 300px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec2 .sec_inner .outline_box .box_title {
    width: 15.3846153846vw;
  }
}
.sec2 .sec_inner .outline_box .box_text {
  width: 100%;
}
.sec2 .sec_inner .outline_box .box_text .itemlist {
  font-size: 20px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec2 .sec_inner .outline_box .box_text .itemlist {
    font-size: 1.5384615385vw;
    line-height: 2vw;
  }
}
@media (max-width: 750px) {
  .sec2 .sec_inner .outline_box .box_text .itemlist {
    font-size: 3.2vw;
    line-height: 1.6;
  }
}
.sec2 .sec_inner .outline_box .box_text .itemlist .item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  text-decoration: none;
}
@media (max-width: 750px) {
  .sec2 .sec_inner .outline_box .box_text .itemlist .item {
    display: block;
  }
}
.sec2 .sec_inner .outline_box .box_text .itemlist .item:last-child {
  font-family: "Noto Sans JP Light";
  font-size: 16px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec2 .sec_inner .outline_box .box_text .itemlist .item:last-child {
    font-size: 1.2307692308vw;
  }
}
@media (max-width: 750px) {
  .sec2 .sec_inner .outline_box .box_text .itemlist .item:last-child {
    font-size: 3.2vw;
  }
}
.sec2 .sec_inner .outline_box .box_text .itemlist .item:last-child span {
  font-size: 14px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec2 .sec_inner .outline_box .box_text .itemlist .item:last-child span {
    font-size: 1.0769230769vw;
  }
}
@media (max-width: 750px) {
  .sec2 .sec_inner .outline_box .box_text .itemlist .item:last-child span {
    font-size: 3.2vw;
  }
}
.sec2 .sec_inner .outline_box .box_text .itemlist .item:last-child .item_name {
  border-bottom: none;
}
.sec2 .sec_inner .outline_box .box_text .itemlist .item:last-child .item_value {
  border-bottom: none;
}
.sec2 .sec_inner .outline_box .box_text .itemlist .item a {
  display: contents;
  text-decoration: none;
}
.sec2 .sec_inner .outline_box .box_text .itemlist .item .item_name {
  display: flex;
  justify-content: flex-start;
  width: 300px;
  padding: 30px 40px 30px 40px;
  border-bottom: 1px solid #000;
  align-items: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec2 .sec_inner .outline_box .box_text .itemlist .item .item_name {
    width: 20vw;
    padding: 2.3076923077vw 3.0769230769vw 2.3076923077vw 3.0769230769vw;
    border-bottom: 0.0769230769vw solid #000;
    font-size: 1.3846153846vw;
  }
}
@media (max-width: 750px) {
  .sec2 .sec_inner .outline_box .box_text .itemlist .item .item_name {
    width: 34.6666666667vw;
    padding: 4vw 5.3333333333vw 4vw 0;
    margin-right: 0;
    border-bottom: none;
    font-size: 3.2vw;
  }
}
.sec2 .sec_inner .outline_box .box_text .itemlist .item .item_value {
  width: 100%;
  padding: 30px 0 30px 0;
  border-bottom: 1px solid #000;
  position: relative;
  font-family: "Noto Sans JP Light";
  font-size: 18px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec2 .sec_inner .outline_box .box_text .itemlist .item .item_value {
    padding: 2.3076923077vw 0 2.3076923077vw 0;
    border-bottom: 0.0769230769vw solid #000;
    font-size: 1.3846153846vw;
  }
}
@media (max-width: 750px) {
  .sec2 .sec_inner .outline_box .box_text .itemlist .item .item_value {
    padding: 0 0 4vw 0;
    display: block;
    font-size: 3.2vw;
  }
}
.sec2 .sec_inner .outline_box .box_text .itemlist .item .br-sp {
  display: none;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec2 .sec_inner .outline_box .box_text .itemlist .item .br-sp {
    display: none;
  }
}
@media (max-width: 750px) {
  .sec2 .sec_inner .outline_box .box_text .itemlist .item .br-sp {
    display: block;
  }
}

/********************************************
* sec3
********************************************/
.sec3 {
  position: relative;
  padding: 0 0 120px;
  background-size: 841px 775px;
  background-position: center;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec3 {
    padding: 0 0 9.2307692308vw;
    background-size: 64.6923076923vw 59.6153846154vw;
  }
}
@media (max-width: 750px) {
  .sec3 {
    padding: 0 0 12vw;
    background-size: 112.1333333333vw 103.3333333333vw;
  }
}
.sec3 .sec_inner {
  max-width: 1100px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec3 .sec_inner {
    max-width: 84.6153846154vw;
  }
}
.sec3 .sec_inner .iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .sec3 .sec_inner .iframe-wrapper {
    padding-bottom: 4.3269230769%vw;
  }
}
@media (max-width: 750px) {
  .sec3 .sec_inner .iframe-wrapper {
    padding-bottom: 100%;
  }
}
.sec3 .sec_inner .iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/********************************************
* footer
********************************************/
.footer .footer_inner {
  position: relative;
  padding: 45px 0;
  margin: 29px 0 30px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .footer .footer_inner {
    padding: 3.4615384615vw 0;
    margin: 2.2307692308vw 0 2.3076923077vw;
  }
}
@media (max-width: 750px) {
  .footer .footer_inner {
    padding: 8vw 0;
    margin: 3.8666666667vw 0 4vw;
  }
}
.footer .footer_inner:before, .footer .footer_inner:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 30px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .footer .footer_inner:before, .footer .footer_inner:after {
    height: 2.3076923077vw;
    background-size: 3.0769230769vw 2.3076923077vw;
  }
}
@media (max-width: 750px) {
  .footer .footer_inner:before, .footer .footer_inner:after {
    height: 4vw;
    background-size: 5.3333333333vw 4vw;
  }
}
.footer .footer_inner:before {
  top: -30px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .footer .footer_inner:before {
    top: -2.3076923077vw;
  }
}
@media (max-width: 750px) {
  .footer .footer_inner:before {
    top: -4vw;
  }
}
.footer .footer_inner:after {
  bottom: -30px;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .footer .footer_inner:after {
    bottom: -2.3076923077vw;
  }
}
@media (max-width: 750px) {
  .footer .footer_inner:after {
    bottom: -4vw;
  }
}
.footer .copy {
  text-align: center;
  padding: 100px 0;
  background-color: #000;
}
@media (min-width: 751px) and (max-width: 1300px) {
  .footer .copy {
    padding: 7.6923076923vw 0;
  }
}
@media (max-width: 750px) {
  .footer .copy {
    padding: 13.3333333333vw 0;
  }
}
.footer .copy .text {
  color: #fff;
  font-weight: 500;
}
@media (max-width: 750px) {
  .footer .copy .text {
    font-size: 2.6666666667vw;
  }
}/*# sourceMappingURL=style.css.map */