/* modal */
.modal {
  display: none;
  background: rgba(229, 229, 229, 0.9);
  overflow-y: scroll;
  overflow-x: hidden;
  /*padding-right: 17px;*/
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
}

.modal_wrap {
  display: inline-block;
  padding: 7vw 0 0;
  width: 100%;
  height: auto;
}

/*.modal{
  display: none;
  background: rgba(17,17,17,.95);
  overflow-y: scroll;
  width: 100%;
}

.modal_wrap{
  display: inline;
  padding: 7vw 17px 7vw 0;
  top: 0;
  width: 100%;
  min-height: 100vh;
  z-index: 999999;
}
*/
.modal .box {
  display: none;
  margin: 0 auto 0;
}

.modal_open {
  cursor: pointer;
}

.modal .modal_close {
  background: #e5e5e5;
  margin: 0 auto 3vw;
  transition: all 0.4s;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  padding: 0.3em 0;
  width: 100%;
  font-size: 30px;
  z-index: 11111;
}

@media (min-width: 640px) {
  .modal .modal_close {
    padding: 0.6em 0;
  }
}
.modal .modal_close span {
  display: block;
  margin-left: 0.2em;
  font-size: 20px;
}

.modal .modal_close i {
  font-size: 30px;
  width: 30px;
}

.modal .modal_close:hover {
  opacity: 0.6;
}

.modal .left {
  margin-right: 3vw;
  position: relative;
}

.modal .left figure:first-child {
  width: 24vw;
}

.modal .right p {
  line-height: 130%;
}

.modal .right .name {
  display: flex;
  justify-content: space-between;
  margin: 5vw 0 3vw;
}

.modal .right .name p {
  margin-right: 2vw;
  width: 24.47vw;
}

.modal .right .name .voice {
  display: flex;
  justify-content: space-between;
}

.modal .name .voice li {
  box-sizing: border-box;
  border: solid 1px #5d4a23;
  background: rgba(0, 0, 0, 0.8);
  padding: 0.8vw 0.7vw 0.3vw;
}

.modal .name .voice li img {
  width: 5vw;
  max-width: 48px;
}

.modal .right .name .voice li:nth-child(2) {
  margin: 0 1vw;
}

@media (min-width: 640px) {
  .modal {
    display: none;
    background: rgba(229, 229, 229, 0.9);
    overflow-y: scroll;
    top: 0;
    width: calc(100% + 17px);
    height: 100%;
    z-index: 999999;
  }
  .modal_wrap {
    display: inline-block;
    padding: 5vw 0 0;
    width: 100%;
    height: auto;
  }
  .modal .box {
    display: none;
    margin: 0 auto 0;
  }
  .modal .modal_close {
    margin: 0 auto 4.5vw;
  }
  .modal .left {
    margin-right: 2vw;
    position: relative;
  }
  .modal .left figure:first-child {
    width: 14.5833vw;
    max-width: 280px;
  }
  .modal .right p {
    line-height: 130%;
  }
  .modal .right .name {
    display: flex;
    justify-content: space-between;
    margin: 5vw 0 3vw;
  }
  .modal .right .name p {
    margin-right: 2vw;
    width: 19.479vw;
    max-width: 374px;
  }
  .modal .right .name .voice {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .modal .name .voice li {
    box-sizing: border-box;
    border: solid 1px #5d4a23;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.8vw 0.7vw 1.2vw;
    transition: all 0.4s;
  }
  .modal .voice li:hover {
    opacity: 0.5;
  }
  .modal .voice li.on {
    filter: brightness(150%);
  }
  .modal .voice li.on:hover {
    opacity: 1;
  }
  .modal .name .voice li img {
    width: 5vw;
    max-width: 48px;
  }
  .modal .right .name .voice li:nth-child(2) {
    margin: 0 0.5vw;
  }
}
.modal .shadow_text {
  margin-top: 43px;
  font-size: 24px;
  font-weight: bold;
  padding: 6px 32px 23px;
  line-height: 142%;
  letter-spacing: -1px;
  background-color: #d5d3da;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
}

.modal .shadow_text::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  top: -8px;
  left: 8px;
  z-index: -1;
}

/*--------------------------------------------------*/
/* org_image modal */
/*--------------------------------------------------*/
body#organization .modal {
  cursor: pointer;
  background: #e5e5e5;
  min-height: 100vh;
}
body#organization .modal .canvas_wrap {
  display: none;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
}
body#organization .modal .canvas_wrap canvas {
  width: 171.40625vw;
  height: 171.40625vw;
  background-color: #e5e5e5;
  transform: rotateZ(45deg);
  position: absolute;
  z-index: 1;
  left: -157vw;
  top: 95vw;
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap canvas {
    width: 585.066301px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap canvas {
    width: 57.1354166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap canvas {
    height: 585.066301px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap canvas {
    height: 57.1354166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap canvas {
    left: -307px;
    top: 290px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap canvas {
    left: -30vw;
    top: 25vw;
  }
}
body#organization .modal .canvas_wrap canvas:nth-child(2) {
  width: 171.40625vw;
  height: 171.40625vw;
  background-color: #e5e5e5;
  transform: rotateZ(45deg);
  position: absolute;
  z-index: 1;
  left: auto !important;
  right: -157vw;
  top: 317vw;
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap canvas:nth-child(2) {
    width: 585.066301px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap canvas:nth-child(2) {
    width: 57.1354166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap canvas:nth-child(2) {
    height: 585.066301px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap canvas:nth-child(2) {
    height: 57.1354166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap canvas:nth-child(2) {
    right: -307px;
    top: 884px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap canvas:nth-child(2) {
    right: -30vw;
    top: 76vw;
  }
}
body#organization .modal .canvas_wrap canvas:nth-child(3) {
  display: none;
  width: 171.40625vw;
  height: 171.40625vw;
  background-color: #e5e5e5;
  transform: rotateZ(45deg);
  position: absolute;
  z-index: 1;
  left: -157vw;
  top: 73vw;
  display: block;
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap canvas:nth-child(3) {
    width: 585.066301px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap canvas:nth-child(3) {
    width: 57.1354166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap canvas:nth-child(3) {
    height: 585.066301px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap canvas:nth-child(3) {
    height: 57.1354166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap canvas:nth-child(3) {
    left: -307px;
    top: 290px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap canvas:nth-child(3) {
    left: -30vw;
    top: 25vw;
  }
}
body#organization .modal .canvas_wrap.n1 canvas {
  width: 171.40625vw;
  height: 171.40625vw;
  background-color: #e5e5e5;
  transform: rotateZ(45deg);
  position: absolute;
  z-index: 1;
  left: -157vw;
  top: -8.5vw;
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap.n1 canvas {
    width: 585.066301px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap.n1 canvas {
    width: 57.1354166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap.n1 canvas {
    height: 585.066301px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap.n1 canvas {
    height: 57.1354166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap.n1 canvas {
    left: -307px;
    top: 290px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap.n1 canvas {
    left: -30vw;
    top: 28vw;
  }
}
body#organization .modal .canvas_wrap.n1 canvas:nth-child(2) {
  width: 171.40625vw;
  height: 171.40625vw;
  background-color: #e5e5e5;
  transform: rotateZ(45deg);
  position: absolute;
  z-index: 1;
  left: auto !important;
  right: -157vw;
  top: 149vw;
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(2) {
    width: 585.066301px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(2) {
    width: 57.1354166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(2) {
    height: 585.066301px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(2) {
    height: 57.1354166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(2) {
    right: -307px;
    top: 870px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(2) {
    right: -30vw;
    top: 75vw;
  }
}
body#organization .modal .canvas_wrap.n1 canvas:nth-child(3) {
  width: 171.40625vw;
  height: 171.40625vw;
  background-color: #e5e5e5;
  transform: rotateZ(45deg);
  position: absolute;
  z-index: 1;
  left: -157vw;
  top: 321.5vw;
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(3) {
    width: 585.066301px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(3) {
    width: 57.1354166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(3) {
    height: 585.066301px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(3) {
    height: 57.1354166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(3) {
    left: -307px;
    top: 1400px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(3) {
    left: -30vw;
    top: 122vw;
  }
}
body#organization .modal .canvas_wrap.n1 canvas:nth-child(4) {
  width: 171.40625vw;
  height: 171.40625vw;
  background-color: #e5e5e5;
  transform: rotateZ(45deg);
  position: absolute;
  z-index: 1;
  left: auto !important;
  right: -157vw;
  top: 462vw;
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(4) {
    width: 585.066301px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(4) {
    width: 57.1354166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(4) {
    height: 585.066301px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(4) {
    height: 57.1354166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(4) {
    right: -307px;
    top: 1980px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(4) {
    right: -30vw;
    top: 169vw;
  }
}
body#organization .modal .canvas_wrap.n1 canvas:nth-child(5) {
  width: 171.40625vw;
  height: 171.40625vw;
  background-color: #e5e5e5;
  transform: rotateZ(45deg);
  position: absolute;
  z-index: 1;
  left: -157vw;
  top: 668.5vw;
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(5) {
    width: 585.066301px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(5) {
    width: 57.1354166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(5) {
    height: 585.066301px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(5) {
    height: 57.1354166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(5) {
    left: -307px;
    top: 2690px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(5) {
    left: -30vw;
    top: 230vw;
  }
}
body#organization .modal .canvas_wrap.n1 canvas:nth-child(6) {
  width: 171.40625vw;
  height: 171.40625vw;
  background-color: #e5e5e5;
  transform: rotateZ(45deg);
  position: absolute;
  z-index: 1;
  left: auto !important;
  right: -157vw;
  top: 775vw;
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(6) {
    width: 585.066301px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(6) {
    width: 57.1354166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(6) {
    height: 585.066301px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(6) {
    height: 57.1354166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(6) {
    right: -307px;
    top: 3787px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(6) {
    right: -30vw;
    top: 263vw;
  }
}
body#organization .modal .canvas_wrap.n1 canvas:nth-child(7) {
  width: 171.40625vw;
  height: 171.40625vw;
  background-color: #e5e5e5;
  transform: rotateZ(45deg);
  position: absolute;
  z-index: 1;
  left: -157vw;
  top: 1015.5vw;
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(7) {
    width: 585.066301px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(7) {
    width: 57.1354166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(7) {
    height: 585.066301px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(7) {
    height: 57.1354166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(7) {
    left: -307px;
    top: 3920px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .canvas_wrap.n1 canvas:nth-child(7) {
    left: -30vw;
    top: 338vw;
  }
}
body#organization .modal .modal_wrap {
  position: relative;
  z-index: 1;
}
body#organization .modal h3 {
  cursor: default;
  color: #e60012;
  font-size: 7.5vw;
  padding-left: 2.34375vw;
  margin-top: 13.75vw;
  margin-bottom: 3.125vw;
}
@media (min-width: 640px) {
  body#organization .modal h3 {
    pointer-events: none;
  }
}
@media (min-width: 640px) {
  body#organization .modal h3 {
    font-size: 46.933304px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal h3 {
    font-size: 4.5833333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal h3 {
    padding-left: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal h3 {
    padding-left: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal h3 {
    margin-top: 21.33332px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal h3 {
    margin-top: 2.0833333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal h3 {
    margin-bottom: 34.666645px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal h3 {
    margin-bottom: 3.3854166667vw;
  }
}
body#organization .modal h3.middle {
  font-size: 7.5vw;
}
@media (min-width: 640px) {
  body#organization .modal h3.middle {
    font-size: 38.399976px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal h3.middle {
    font-size: 3.75vw;
  }
}
body#organization .modal h3.long {
  font-size: 5.625vw;
  line-height: 130%;
}
@media (min-width: 640px) {
  body#organization .modal h3.long {
    font-size: 25.599984px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal h3.long {
    font-size: 2.5vw;
  }
}
body#organization .modal .box {
  padding-top: 9.375vw;
  padding-bottom: 15.625vw;
}
@media (min-width: 640px) {
  body#organization .modal .box {
    padding-top: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box {
    padding-top: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box {
    padding-bottom: 95.99994px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box {
    padding-bottom: 9.375vw;
  }
}
body#organization .modal .inr {
  cursor: default;
  display: flex;
  background: #f4f4f4;
}
body#organization .modal img, body#organization .modal strong, body#organization .modal p:not(.modal_close), body#organization .modal span, body#organization .modal .cont01 > div, body#organization .modal .cont02, body#organization .modal .cont03 {
  cursor: default;
}
body#organization .modal .modal_close span {
  cursor: pointer;
}
body#organization .modal .box:not(.n1) .cont01,
body#organization .modal .box:not(.n7) .cont01,
body#organization .modal .box:not(.n13) .cont01,
body#organization .modal .box:not(.n14) .cont01,
body#organization .modal .box:not(.n15) .cont01 {
  display: flex;
  flex-direction: column;
  margin-left: 0vw;
  width: 100vw;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01,
  body#organization .modal .box:not(.n7) .cont01,
  body#organization .modal .box:not(.n13) .cont01,
  body#organization .modal .box:not(.n14) .cont01,
  body#organization .modal .box:not(.n15) .cont01 {
    margin-left: auto;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01,
  body#organization .modal .box:not(.n7) .cont01,
  body#organization .modal .box:not(.n13) .cont01,
  body#organization .modal .box:not(.n14) .cont01,
  body#organization .modal .box:not(.n15) .cont01 {
    margin-left: auto;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01,
  body#organization .modal .box:not(.n7) .cont01,
  body#organization .modal .box:not(.n13) .cont01,
  body#organization .modal .box:not(.n14) .cont01,
  body#organization .modal .box:not(.n15) .cont01 {
    width: 896.532773px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01,
  body#organization .modal .box:not(.n7) .cont01,
  body#organization .modal .box:not(.n13) .cont01,
  body#organization .modal .box:not(.n14) .cont01,
  body#organization .modal .box:not(.n15) .cont01 {
    width: 87.5520833333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01,
  body#organization .modal .box:not(.n7) .cont01,
  body#organization .modal .box:not(.n13) .cont01,
  body#organization .modal .box:not(.n14) .cont01,
  body#organization .modal .box:not(.n15) .cont01 {
    flex-direction: row;
  }
}
body#organization .modal .box:not(.n1) .cont01 .inr,
body#organization .modal .box:not(.n7) .cont01 .inr,
body#organization .modal .box:not(.n13) .cont01 .inr,
body#organization .modal .box:not(.n14) .cont01 .inr,
body#organization .modal .box:not(.n15) .cont01 .inr {
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  padding-top: 0vw;
  padding-bottom: 0vw;
  padding-right: 0vw;
  padding-left: 0vw;
  width: 100vw;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .inr,
  body#organization .modal .box:not(.n7) .cont01 .inr,
  body#organization .modal .box:not(.n13) .cont01 .inr,
  body#organization .modal .box:not(.n14) .cont01 .inr,
  body#organization .modal .box:not(.n15) .cont01 .inr {
    padding-top: 21.33332px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .inr,
  body#organization .modal .box:not(.n7) .cont01 .inr,
  body#organization .modal .box:not(.n13) .cont01 .inr,
  body#organization .modal .box:not(.n14) .cont01 .inr,
  body#organization .modal .box:not(.n15) .cont01 .inr {
    padding-top: 2.0833333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .inr,
  body#organization .modal .box:not(.n7) .cont01 .inr,
  body#organization .modal .box:not(.n13) .cont01 .inr,
  body#organization .modal .box:not(.n14) .cont01 .inr,
  body#organization .modal .box:not(.n15) .cont01 .inr {
    padding-bottom: 37.33331px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .inr,
  body#organization .modal .box:not(.n7) .cont01 .inr,
  body#organization .modal .box:not(.n13) .cont01 .inr,
  body#organization .modal .box:not(.n14) .cont01 .inr,
  body#organization .modal .box:not(.n15) .cont01 .inr {
    padding-bottom: 3.6458333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .inr,
  body#organization .modal .box:not(.n7) .cont01 .inr,
  body#organization .modal .box:not(.n13) .cont01 .inr,
  body#organization .modal .box:not(.n14) .cont01 .inr,
  body#organization .modal .box:not(.n15) .cont01 .inr {
    padding-right: 21.33332px;
    padding-left: 21.33332px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .inr,
  body#organization .modal .box:not(.n7) .cont01 .inr,
  body#organization .modal .box:not(.n13) .cont01 .inr,
  body#organization .modal .box:not(.n14) .cont01 .inr,
  body#organization .modal .box:not(.n15) .cont01 .inr {
    padding-right: 2.0833333333vw;
    padding-left: 2.0833333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .inr,
  body#organization .modal .box:not(.n7) .cont01 .inr,
  body#organization .modal .box:not(.n13) .cont01 .inr,
  body#organization .modal .box:not(.n14) .cont01 .inr,
  body#organization .modal .box:not(.n15) .cont01 .inr {
    width: 473.066371px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .inr,
  body#organization .modal .box:not(.n7) .cont01 .inr,
  body#organization .modal .box:not(.n13) .cont01 .inr,
  body#organization .modal .box:not(.n14) .cont01 .inr,
  body#organization .modal .box:not(.n15) .cont01 .inr {
    width: 46.1979166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .inr,
  body#organization .modal .box:not(.n7) .cont01 .inr,
  body#organization .modal .box:not(.n13) .cont01 .inr,
  body#organization .modal .box:not(.n14) .cont01 .inr,
  body#organization .modal .box:not(.n15) .cont01 .inr {
    justify-content: space-between;
    flex-direction: row;
  }
}
body#organization .modal .box:not(.n1) .cont01 .img,
body#organization .modal .box:not(.n7) .cont01 .img,
body#organization .modal .box:not(.n13) .cont01 .img,
body#organization .modal .box:not(.n14) .cont01 .img,
body#organization .modal .box:not(.n15) .cont01 .img {
  width: 93.75vw;
  position: relative;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .img,
  body#organization .modal .box:not(.n7) .cont01 .img,
  body#organization .modal .box:not(.n13) .cont01 .img,
  body#organization .modal .box:not(.n14) .cont01 .img,
  body#organization .modal .box:not(.n15) .cont01 .img {
    width: 158.933234px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .img,
  body#organization .modal .box:not(.n7) .cont01 .img,
  body#organization .modal .box:not(.n13) .cont01 .img,
  body#organization .modal .box:not(.n14) .cont01 .img,
  body#organization .modal .box:not(.n15) .cont01 .img {
    width: 15.5208333333vw;
  }
}
body#organization .modal .box:not(.n1) .cont01 .img figure:nth-child(1),
body#organization .modal .box:not(.n7) .cont01 .img figure:nth-child(1),
body#organization .modal .box:not(.n13) .cont01 .img figure:nth-child(1),
body#organization .modal .box:not(.n14) .cont01 .img figure:nth-child(1),
body#organization .modal .box:not(.n15) .cont01 .img figure:nth-child(1) {
  width: 81.25vw;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .img figure:nth-child(1),
  body#organization .modal .box:not(.n7) .cont01 .img figure:nth-child(1),
  body#organization .modal .box:not(.n13) .cont01 .img figure:nth-child(1),
  body#organization .modal .box:not(.n14) .cont01 .img figure:nth-child(1),
  body#organization .modal .box:not(.n15) .cont01 .img figure:nth-child(1) {
    width: 277.33316px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .img figure:nth-child(1),
  body#organization .modal .box:not(.n7) .cont01 .img figure:nth-child(1),
  body#organization .modal .box:not(.n13) .cont01 .img figure:nth-child(1),
  body#organization .modal .box:not(.n14) .cont01 .img figure:nth-child(1),
  body#organization .modal .box:not(.n15) .cont01 .img figure:nth-child(1) {
    width: 27.0833333333vw;
  }
}
body#organization .modal .box:not(.n1) .cont01 .img figure:nth-child(2),
body#organization .modal .box:not(.n7) .cont01 .img figure:nth-child(2),
body#organization .modal .box:not(.n13) .cont01 .img figure:nth-child(2),
body#organization .modal .box:not(.n14) .cont01 .img figure:nth-child(2),
body#organization .modal .box:not(.n15) .cont01 .img figure:nth-child(2) {
  width: 40.625vw;
  bottom: -14.0625vw;
  right: 0vw;
  position: absolute;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n7) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n13) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n14) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n15) .cont01 .img figure:nth-child(2) {
    width: 138.66658px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n7) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n13) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n14) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n15) .cont01 .img figure:nth-child(2) {
    width: 13.5416666667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n7) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n13) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n14) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n15) .cont01 .img figure:nth-child(2) {
    bottom: auto;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n7) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n13) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n14) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n15) .cont01 .img figure:nth-child(2) {
    bottom: auto;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n7) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n13) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n14) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n15) .cont01 .img figure:nth-child(2) {
    right: auto;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n7) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n13) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n14) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n15) .cont01 .img figure:nth-child(2) {
    right: auto;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n7) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n13) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n14) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n15) .cont01 .img figure:nth-child(2) {
    position: relative;
    margin-top: 3.125vw;
    width: 100% !important;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n7) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n13) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n14) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n15) .cont01 .img figure:nth-child(2) {
    margin-top: 10.66666px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n7) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n13) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n14) .cont01 .img figure:nth-child(2),
  body#organization .modal .box:not(.n15) .cont01 .img figure:nth-child(2) {
    margin-top: 1.0416666667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .img figure,
  body#organization .modal .box:not(.n7) .cont01 .img figure,
  body#organization .modal .box:not(.n13) .cont01 .img figure,
  body#organization .modal .box:not(.n14) .cont01 .img figure,
  body#organization .modal .box:not(.n15) .cont01 .img figure {
    width: 100% !important;
  }
}
body#organization .modal .box:not(.n1) .cont01 .txt,
body#organization .modal .box:not(.n7) .cont01 .txt,
body#organization .modal .box:not(.n13) .cont01 .txt,
body#organization .modal .box:not(.n14) .cont01 .txt,
body#organization .modal .box:not(.n15) .cont01 .txt {
  box-sizing: border-box;
  background: #f4f4f4;
  font-weight: 100;
  color: #3b3a3a;
  margin-top: 3.125vw;
  margin-right: auto;
  margin-left: auto;
  padding-top: 7.8125vw;
  padding-bottom: 6.25vw;
  padding-right: 3.125vw;
  padding-left: 3.125vw;
  font-size: 15px;
  width: 93.75vw;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt,
  body#organization .modal .box:not(.n7) .cont01 .txt,
  body#organization .modal .box:not(.n13) .cont01 .txt,
  body#organization .modal .box:not(.n14) .cont01 .txt,
  body#organization .modal .box:not(.n15) .cont01 .txt {
    margin-top: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt,
  body#organization .modal .box:not(.n7) .cont01 .txt,
  body#organization .modal .box:not(.n13) .cont01 .txt,
  body#organization .modal .box:not(.n14) .cont01 .txt,
  body#organization .modal .box:not(.n15) .cont01 .txt {
    margin-top: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt,
  body#organization .modal .box:not(.n7) .cont01 .txt,
  body#organization .modal .box:not(.n13) .cont01 .txt,
  body#organization .modal .box:not(.n14) .cont01 .txt,
  body#organization .modal .box:not(.n15) .cont01 .txt {
    margin-right: 0px;
    margin-left: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt,
  body#organization .modal .box:not(.n7) .cont01 .txt,
  body#organization .modal .box:not(.n13) .cont01 .txt,
  body#organization .modal .box:not(.n14) .cont01 .txt,
  body#organization .modal .box:not(.n15) .cont01 .txt {
    margin-right: 0vw;
    margin-left: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt,
  body#organization .modal .box:not(.n7) .cont01 .txt,
  body#organization .modal .box:not(.n13) .cont01 .txt,
  body#organization .modal .box:not(.n14) .cont01 .txt,
  body#organization .modal .box:not(.n15) .cont01 .txt {
    padding-top: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt,
  body#organization .modal .box:not(.n7) .cont01 .txt,
  body#organization .modal .box:not(.n13) .cont01 .txt,
  body#organization .modal .box:not(.n14) .cont01 .txt,
  body#organization .modal .box:not(.n15) .cont01 .txt {
    padding-top: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt,
  body#organization .modal .box:not(.n7) .cont01 .txt,
  body#organization .modal .box:not(.n13) .cont01 .txt,
  body#organization .modal .box:not(.n14) .cont01 .txt,
  body#organization .modal .box:not(.n15) .cont01 .txt {
    padding-bottom: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt,
  body#organization .modal .box:not(.n7) .cont01 .txt,
  body#organization .modal .box:not(.n13) .cont01 .txt,
  body#organization .modal .box:not(.n14) .cont01 .txt,
  body#organization .modal .box:not(.n15) .cont01 .txt {
    padding-bottom: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt,
  body#organization .modal .box:not(.n7) .cont01 .txt,
  body#organization .modal .box:not(.n13) .cont01 .txt,
  body#organization .modal .box:not(.n14) .cont01 .txt,
  body#organization .modal .box:not(.n15) .cont01 .txt {
    padding-right: 0px;
    padding-left: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt,
  body#organization .modal .box:not(.n7) .cont01 .txt,
  body#organization .modal .box:not(.n13) .cont01 .txt,
  body#organization .modal .box:not(.n14) .cont01 .txt,
  body#organization .modal .box:not(.n15) .cont01 .txt {
    padding-right: 0vw;
    padding-left: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt,
  body#organization .modal .box:not(.n7) .cont01 .txt,
  body#organization .modal .box:not(.n13) .cont01 .txt,
  body#organization .modal .box:not(.n14) .cont01 .txt,
  body#organization .modal .box:not(.n15) .cont01 .txt {
    width: 247.999845px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt,
  body#organization .modal .box:not(.n7) .cont01 .txt,
  body#organization .modal .box:not(.n13) .cont01 .txt,
  body#organization .modal .box:not(.n14) .cont01 .txt,
  body#organization .modal .box:not(.n15) .cont01 .txt {
    width: 24.21875vw;
  }
}
body#organization .modal .box:not(.n1) .cont01 .txt p + p,
body#organization .modal .box:not(.n7) .cont01 .txt p + p,
body#organization .modal .box:not(.n13) .cont01 .txt p + p,
body#organization .modal .box:not(.n14) .cont01 .txt p + p,
body#organization .modal .box:not(.n15) .cont01 .txt p + p {
  padding-top: 3.125vw;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt p + p,
  body#organization .modal .box:not(.n7) .cont01 .txt p + p,
  body#organization .modal .box:not(.n13) .cont01 .txt p + p,
  body#organization .modal .box:not(.n14) .cont01 .txt p + p,
  body#organization .modal .box:not(.n15) .cont01 .txt p + p {
    padding-top: 10.66666px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt p + p,
  body#organization .modal .box:not(.n7) .cont01 .txt p + p,
  body#organization .modal .box:not(.n13) .cont01 .txt p + p,
  body#organization .modal .box:not(.n14) .cont01 .txt p + p,
  body#organization .modal .box:not(.n15) .cont01 .txt p + p {
    padding-top: 1.0416666667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt,
  body#organization .modal .box:not(.n7) .cont01 .txt,
  body#organization .modal .box:not(.n13) .cont01 .txt,
  body#organization .modal .box:not(.n14) .cont01 .txt,
  body#organization .modal .box:not(.n15) .cont01 .txt {
    background: none;
  }
}
body#organization .modal .box:not(.n1) .cont01 .txt > *,
body#organization .modal .box:not(.n7) .cont01 .txt > *,
body#organization .modal .box:not(.n13) .cont01 .txt > *,
body#organization .modal .box:not(.n14) .cont01 .txt > *,
body#organization .modal .box:not(.n15) .cont01 .txt > * {
  line-height: 180%;
  font-weight: normal;
}
body#organization .modal .box:not(.n1) .cont01 .txt strong,
body#organization .modal .box:not(.n7) .cont01 .txt strong,
body#organization .modal .box:not(.n13) .cont01 .txt strong,
body#organization .modal .box:not(.n14) .cont01 .txt strong,
body#organization .modal .box:not(.n15) .cont01 .txt strong {
  display: block;
  color: #e60012;
  font-weight: 800;
  margin-bottom: 3.125vw;
  font-size: 20px;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt strong,
  body#organization .modal .box:not(.n7) .cont01 .txt strong,
  body#organization .modal .box:not(.n13) .cont01 .txt strong,
  body#organization .modal .box:not(.n14) .cont01 .txt strong,
  body#organization .modal .box:not(.n15) .cont01 .txt strong {
    margin-bottom: 10.66666px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt strong,
  body#organization .modal .box:not(.n7) .cont01 .txt strong,
  body#organization .modal .box:not(.n13) .cont01 .txt strong,
  body#organization .modal .box:not(.n14) .cont01 .txt strong,
  body#organization .modal .box:not(.n15) .cont01 .txt strong {
    margin-bottom: 1.0416666667vw;
  }
}
body#organization .modal .box:not(.n1) .cont01 .txt small,
body#organization .modal .box:not(.n7) .cont01 .txt small,
body#organization .modal .box:not(.n13) .cont01 .txt small,
body#organization .modal .box:not(.n14) .cont01 .txt small,
body#organization .modal .box:not(.n15) .cont01 .txt small {
  display: block;
  color: #3b3a3a;
  margin-bottom: 2.34375vw;
  font-weight: 600;
  font-size: 18px;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small,
  body#organization .modal .box:not(.n7) .cont01 .txt small,
  body#organization .modal .box:not(.n13) .cont01 .txt small,
  body#organization .modal .box:not(.n14) .cont01 .txt small,
  body#organization .modal .box:not(.n15) .cont01 .txt small {
    margin-bottom: 21.33332px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small,
  body#organization .modal .box:not(.n7) .cont01 .txt small,
  body#organization .modal .box:not(.n13) .cont01 .txt small,
  body#organization .modal .box:not(.n14) .cont01 .txt small,
  body#organization .modal .box:not(.n15) .cont01 .txt small {
    margin-bottom: 2.0833333333vw;
  }
}
body#organization .modal .box:not(.n1) .cont01 .txt small + div,
body#organization .modal .box:not(.n7) .cont01 .txt small + div,
body#organization .modal .box:not(.n13) .cont01 .txt small + div,
body#organization .modal .box:not(.n14) .cont01 .txt small + div,
body#organization .modal .box:not(.n15) .cont01 .txt small + div {
  width: 100%;
  background: #e60012 !important;
  margin-top: -0.78125vw;
  margin-bottom: 2.34375vw;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div {
    margin-top: -10.66666px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div {
    margin-top: -1.0416666667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div {
    margin-bottom: 21.33332px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div {
    margin-bottom: 2.0833333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div {
    cursor: pointer;
    width: 185.15625vw;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div {
    width: 631.999605px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div {
    width: 61.71875vw;
  }
}
body#organization .modal .box:not(.n1) .cont01 .txt small + div.message-movie,
body#organization .modal .box:not(.n7) .cont01 .txt small + div.message-movie,
body#organization .modal .box:not(.n13) .cont01 .txt small + div.message-movie,
body#organization .modal .box:not(.n14) .cont01 .txt small + div.message-movie,
body#organization .modal .box:not(.n15) .cont01 .txt small + div.message-movie {
  display: block;
  position: relative;
  text-align: right;
  height: 6.5625vw;
  padding-top: 2.34375vw;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div.message-movie {
    height: 22.399986px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div.message-movie {
    height: 2.1875vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div.message-movie {
    padding-top: 7.999995px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div.message-movie {
    padding-top: 0.78125vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div.message-movie {
    height: 6.5625vw;
    padding-top: 2.34375vw;
    padding-right: 1.25vw;
    color: #fff;
    width: 100%;
    line-height: normal;
    text-align: right;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div.message-movie {
    height: 22.399986px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div.message-movie {
    height: 2.1875vw;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div.message-movie {
    padding-top: 7.999995px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div.message-movie {
    padding-top: 0.78125vw;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div.message-movie {
    padding-right: 4.266664px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div.message-movie,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div.message-movie {
    padding-right: 0.4166666667vw;
  }
}
body#organization .modal .box:not(.n1) .cont01 .txt small + div.message-movie > a,
body#organization .modal .box:not(.n7) .cont01 .txt small + div.message-movie > a,
body#organization .modal .box:not(.n13) .cont01 .txt small + div.message-movie > a,
body#organization .modal .box:not(.n14) .cont01 .txt small + div.message-movie > a,
body#organization .modal .box:not(.n15) .cont01 .txt small + div.message-movie > a {
  color: #fff;
  display: block;
  width: 98%;
  height: 100%;
  font-size: 3.75vw;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div.message-movie > a,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div.message-movie > a,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div.message-movie > a,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div.message-movie > a,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div.message-movie > a {
    font-size: 12.799992px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div.message-movie > a,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div.message-movie > a,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div.message-movie > a,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div.message-movie > a,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div.message-movie > a {
    font-size: 1.25vw;
  }
}
body#organization .modal .box:not(.n1) .cont01 .txt small + div span,
body#organization .modal .box:not(.n7) .cont01 .txt small + div span,
body#organization .modal .box:not(.n13) .cont01 .txt small + div span,
body#organization .modal .box:not(.n14) .cont01 .txt small + div span,
body#organization .modal .box:not(.n15) .cont01 .txt small + div span {
  cursor: pointer;
}
body#organization .modal .box:not(.n1) .cont01 .txt small + div i,
body#organization .modal .box:not(.n7) .cont01 .txt small + div i,
body#organization .modal .box:not(.n13) .cont01 .txt small + div i,
body#organization .modal .box:not(.n14) .cont01 .txt small + div i,
body#organization .modal .box:not(.n15) .cont01 .txt small + div i {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 2.34375vw;
  color: #fff;
  margin-top: -1.875vw;
  font-size: 4.375vw;
  transition: all 0.2s;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div i {
    left: 7.999995px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div i {
    left: 0.78125vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div i {
    cursor: pointer;
    left: 0.78125vw;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div i {
    left: 2.666665px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div i {
    left: 0.2604166667vw;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div i {
    left: 2.34375vw;
  }
}
@media (min-width: 1024px) and (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div i {
    left: 7.999995px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div i {
    left: 0.78125vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div i {
    margin-top: -6.399996px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div i {
    margin-top: -0.625vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div i {
    font-size: 14.933324px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n7) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n13) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n14) .cont01 .txt small + div i,
  body#organization .modal .box:not(.n15) .cont01 .txt small + div i {
    font-size: 1.4583333333vw;
  }
}
body#organization .modal .box:not(.n1) .cont01 .txt small + div:hover i,
body#organization .modal .box:not(.n7) .cont01 .txt small + div:hover i,
body#organization .modal .box:not(.n13) .cont01 .txt small + div:hover i,
body#organization .modal .box:not(.n14) .cont01 .txt small + div:hover i,
body#organization .modal .box:not(.n15) .cont01 .txt small + div:hover i {
  transform: rotateZ(90deg);
}
body#organization .modal .box:not(.n1) .cont01 > div,
body#organization .modal .box:not(.n7) .cont01 > div,
body#organization .modal .box:not(.n13) .cont01 > div,
body#organization .modal .box:not(.n14) .cont01 > div,
body#organization .modal .box:not(.n15) .cont01 > div {
  order: 2;
  position: relative;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 > div,
  body#organization .modal .box:not(.n7) .cont01 > div,
  body#organization .modal .box:not(.n13) .cont01 > div,
  body#organization .modal .box:not(.n14) .cont01 > div,
  body#organization .modal .box:not(.n15) .cont01 > div {
    order: 1;
  }
}
body#organization .modal .box:not(.n1) .cont01 > figure,
body#organization .modal .box:not(.n7) .cont01 > figure,
body#organization .modal .box:not(.n13) .cont01 > figure,
body#organization .modal .box:not(.n14) .cont01 > figure,
body#organization .modal .box:not(.n15) .cont01 > figure {
  order: 1;
  width: 100vw;
  margin-left: 0vw;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 > figure,
  body#organization .modal .box:not(.n7) .cont01 > figure,
  body#organization .modal .box:not(.n13) .cont01 > figure,
  body#organization .modal .box:not(.n14) .cont01 > figure,
  body#organization .modal .box:not(.n15) .cont01 > figure {
    width: 601.066291px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 > figure,
  body#organization .modal .box:not(.n7) .cont01 > figure,
  body#organization .modal .box:not(.n13) .cont01 > figure,
  body#organization .modal .box:not(.n14) .cont01 > figure,
  body#organization .modal .box:not(.n15) .cont01 > figure {
    width: 58.6979166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 > figure,
  body#organization .modal .box:not(.n7) .cont01 > figure,
  body#organization .modal .box:not(.n13) .cont01 > figure,
  body#organization .modal .box:not(.n14) .cont01 > figure,
  body#organization .modal .box:not(.n15) .cont01 > figure {
    margin-left: -177.599889px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont01 > figure,
  body#organization .modal .box:not(.n7) .cont01 > figure,
  body#organization .modal .box:not(.n13) .cont01 > figure,
  body#organization .modal .box:not(.n14) .cont01 > figure,
  body#organization .modal .box:not(.n15) .cont01 > figure {
    margin-left: -17.34375vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont01 > figure,
  body#organization .modal .box:not(.n7) .cont01 > figure,
  body#organization .modal .box:not(.n13) .cont01 > figure,
  body#organization .modal .box:not(.n14) .cont01 > figure,
  body#organization .modal .box:not(.n15) .cont01 > figure {
    order: 1;
  }
}
body#organization .modal .box:not(.n1) .cont02,
body#organization .modal .box:not(.n7) .cont02,
body#organization .modal .box:not(.n13) .cont02,
body#organization .modal .box:not(.n14) .cont02,
body#organization .modal .box:not(.n15) .cont02 {
  position: relative;
  box-sizing: border-box;
  margin-top: 0vw;
  padding-top: 0vw;
  padding-bottom: 7.8125vw;
  padding-right: 3.125vw;
  padding-left: 3.125vw;
  width: 93.75vw;
  margin: 0 auto;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont02,
  body#organization .modal .box:not(.n7) .cont02,
  body#organization .modal .box:not(.n13) .cont02,
  body#organization .modal .box:not(.n14) .cont02,
  body#organization .modal .box:not(.n15) .cont02 {
    margin-top: 21.33332px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont02,
  body#organization .modal .box:not(.n7) .cont02,
  body#organization .modal .box:not(.n13) .cont02,
  body#organization .modal .box:not(.n14) .cont02,
  body#organization .modal .box:not(.n15) .cont02 {
    margin-top: 2.0833333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont02,
  body#organization .modal .box:not(.n7) .cont02,
  body#organization .modal .box:not(.n13) .cont02,
  body#organization .modal .box:not(.n14) .cont02,
  body#organization .modal .box:not(.n15) .cont02 {
    padding-top: 21.33332px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont02,
  body#organization .modal .box:not(.n7) .cont02,
  body#organization .modal .box:not(.n13) .cont02,
  body#organization .modal .box:not(.n14) .cont02,
  body#organization .modal .box:not(.n15) .cont02 {
    padding-top: 2.0833333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont02,
  body#organization .modal .box:not(.n7) .cont02,
  body#organization .modal .box:not(.n13) .cont02,
  body#organization .modal .box:not(.n14) .cont02,
  body#organization .modal .box:not(.n15) .cont02 {
    padding-bottom: 37.33331px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont02,
  body#organization .modal .box:not(.n7) .cont02,
  body#organization .modal .box:not(.n13) .cont02,
  body#organization .modal .box:not(.n14) .cont02,
  body#organization .modal .box:not(.n15) .cont02 {
    padding-bottom: 3.6458333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont02,
  body#organization .modal .box:not(.n7) .cont02,
  body#organization .modal .box:not(.n13) .cont02,
  body#organization .modal .box:not(.n14) .cont02,
  body#organization .modal .box:not(.n15) .cont02 {
    padding-right: 21.33332px;
    padding-left: 21.33332px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont02,
  body#organization .modal .box:not(.n7) .cont02,
  body#organization .modal .box:not(.n13) .cont02,
  body#organization .modal .box:not(.n14) .cont02,
  body#organization .modal .box:not(.n15) .cont02 {
    padding-right: 2.0833333333vw;
    padding-left: 2.0833333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont02,
  body#organization .modal .box:not(.n7) .cont02,
  body#organization .modal .box:not(.n13) .cont02,
  body#organization .modal .box:not(.n14) .cont02,
  body#organization .modal .box:not(.n15) .cont02 {
    width: 767.99952px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont02,
  body#organization .modal .box:not(.n7) .cont02,
  body#organization .modal .box:not(.n13) .cont02,
  body#organization .modal .box:not(.n14) .cont02,
  body#organization .modal .box:not(.n15) .cont02 {
    width: 75vw;
  }
}
body#organization .modal .box:not(.n1) .cont02 .inr,
body#organization .modal .box:not(.n7) .cont02 .inr,
body#organization .modal .box:not(.n13) .cont02 .inr,
body#organization .modal .box:not(.n14) .cont02 .inr,
body#organization .modal .box:not(.n15) .cont02 .inr {
  position: relative;
  display: flex;
  justify-content: space-between;
}
body#organization .modal .box:not(.n1) .cont02 .inr + .txt, body#organization .modal .box:not(.n1) .cont02 .inr + .inr,
body#organization .modal .box:not(.n7) .cont02 .inr + .txt,
body#organization .modal .box:not(.n7) .cont02 .inr + .inr,
body#organization .modal .box:not(.n13) .cont02 .inr + .txt,
body#organization .modal .box:not(.n13) .cont02 .inr + .inr,
body#organization .modal .box:not(.n14) .cont02 .inr + .txt,
body#organization .modal .box:not(.n14) .cont02 .inr + .inr,
body#organization .modal .box:not(.n15) .cont02 .inr + .txt,
body#organization .modal .box:not(.n15) .cont02 .inr + .inr {
  margin-top: 7.03125vw;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont02 .inr + .txt, body#organization .modal .box:not(.n1) .cont02 .inr + .inr,
  body#organization .modal .box:not(.n7) .cont02 .inr + .txt,
  body#organization .modal .box:not(.n7) .cont02 .inr + .inr,
  body#organization .modal .box:not(.n13) .cont02 .inr + .txt,
  body#organization .modal .box:not(.n13) .cont02 .inr + .inr,
  body#organization .modal .box:not(.n14) .cont02 .inr + .txt,
  body#organization .modal .box:not(.n14) .cont02 .inr + .inr,
  body#organization .modal .box:not(.n15) .cont02 .inr + .txt,
  body#organization .modal .box:not(.n15) .cont02 .inr + .inr {
    margin-top: 21.33332px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont02 .inr + .txt, body#organization .modal .box:not(.n1) .cont02 .inr + .inr,
  body#organization .modal .box:not(.n7) .cont02 .inr + .txt,
  body#organization .modal .box:not(.n7) .cont02 .inr + .inr,
  body#organization .modal .box:not(.n13) .cont02 .inr + .txt,
  body#organization .modal .box:not(.n13) .cont02 .inr + .inr,
  body#organization .modal .box:not(.n14) .cont02 .inr + .txt,
  body#organization .modal .box:not(.n14) .cont02 .inr + .inr,
  body#organization .modal .box:not(.n15) .cont02 .inr + .txt,
  body#organization .modal .box:not(.n15) .cont02 .inr + .inr {
    margin-top: 2.0833333333vw;
  }
}
body#organization .modal .box:not(.n1) .cont02 .inr .txt p:nth-child(2),
body#organization .modal .box:not(.n7) .cont02 .inr .txt p:nth-child(2),
body#organization .modal .box:not(.n13) .cont02 .inr .txt p:nth-child(2),
body#organization .modal .box:not(.n14) .cont02 .inr .txt p:nth-child(2),
body#organization .modal .box:not(.n15) .cont02 .inr .txt p:nth-child(2) {
  width: 40.625vw;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont02 .inr .txt p:nth-child(2),
  body#organization .modal .box:not(.n7) .cont02 .inr .txt p:nth-child(2),
  body#organization .modal .box:not(.n13) .cont02 .inr .txt p:nth-child(2),
  body#organization .modal .box:not(.n14) .cont02 .inr .txt p:nth-child(2),
  body#organization .modal .box:not(.n15) .cont02 .inr .txt p:nth-child(2) {
    width: 138.66658px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont02 .inr .txt p:nth-child(2),
  body#organization .modal .box:not(.n7) .cont02 .inr .txt p:nth-child(2),
  body#organization .modal .box:not(.n13) .cont02 .inr .txt p:nth-child(2),
  body#organization .modal .box:not(.n14) .cont02 .inr .txt p:nth-child(2),
  body#organization .modal .box:not(.n15) .cont02 .inr .txt p:nth-child(2) {
    width: 13.5416666667vw;
  }
}
body#organization .modal .box:not(.n1) .cont02 .inr .txt p:nth-child(1),
body#organization .modal .box:not(.n7) .cont02 .inr .txt p:nth-child(1),
body#organization .modal .box:not(.n13) .cont02 .inr .txt p:nth-child(1),
body#organization .modal .box:not(.n14) .cont02 .inr .txt p:nth-child(1),
body#organization .modal .box:not(.n15) .cont02 .inr .txt p:nth-child(1) {
  width: 100%;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont02 .inr .txt p,
  body#organization .modal .box:not(.n7) .cont02 .inr .txt p,
  body#organization .modal .box:not(.n13) .cont02 .inr .txt p,
  body#organization .modal .box:not(.n14) .cont02 .inr .txt p,
  body#organization .modal .box:not(.n15) .cont02 .inr .txt p {
    width: 100% !important;
  }
}
body#organization .modal .box:not(.n1) .cont02 .img,
body#organization .modal .box:not(.n7) .cont02 .img,
body#organization .modal .box:not(.n13) .cont02 .img,
body#organization .modal .box:not(.n14) .cont02 .img,
body#organization .modal .box:not(.n15) .cont02 .img {
  width: 44.0625vw;
  position: absolute;
  top: 7.8125vw;
  right: 0vw;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont02 .img,
  body#organization .modal .box:not(.n7) .cont02 .img,
  body#organization .modal .box:not(.n13) .cont02 .img,
  body#organization .modal .box:not(.n14) .cont02 .img,
  body#organization .modal .box:not(.n15) .cont02 .img {
    width: 197.33321px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont02 .img,
  body#organization .modal .box:not(.n7) .cont02 .img,
  body#organization .modal .box:not(.n13) .cont02 .img,
  body#organization .modal .box:not(.n14) .cont02 .img,
  body#organization .modal .box:not(.n15) .cont02 .img {
    width: 19.2708333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont02 .img,
  body#organization .modal .box:not(.n7) .cont02 .img,
  body#organization .modal .box:not(.n13) .cont02 .img,
  body#organization .modal .box:not(.n14) .cont02 .img,
  body#organization .modal .box:not(.n15) .cont02 .img {
    top: auto;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont02 .img,
  body#organization .modal .box:not(.n7) .cont02 .img,
  body#organization .modal .box:not(.n13) .cont02 .img,
  body#organization .modal .box:not(.n14) .cont02 .img,
  body#organization .modal .box:not(.n15) .cont02 .img {
    top: auto;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont02 .img,
  body#organization .modal .box:not(.n7) .cont02 .img,
  body#organization .modal .box:not(.n13) .cont02 .img,
  body#organization .modal .box:not(.n14) .cont02 .img,
  body#organization .modal .box:not(.n15) .cont02 .img {
    right: auto;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont02 .img,
  body#organization .modal .box:not(.n7) .cont02 .img,
  body#organization .modal .box:not(.n13) .cont02 .img,
  body#organization .modal .box:not(.n14) .cont02 .img,
  body#organization .modal .box:not(.n15) .cont02 .img {
    right: auto;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont02 .img,
  body#organization .modal .box:not(.n7) .cont02 .img,
  body#organization .modal .box:not(.n13) .cont02 .img,
  body#organization .modal .box:not(.n14) .cont02 .img,
  body#organization .modal .box:not(.n15) .cont02 .img {
    position: relative;
  }
}
body#organization .modal .box:not(.n1) .cont02 .img figure,
body#organization .modal .box:not(.n7) .cont02 .img figure,
body#organization .modal .box:not(.n13) .cont02 .img figure,
body#organization .modal .box:not(.n14) .cont02 .img figure,
body#organization .modal .box:not(.n15) .cont02 .img figure {
  width: 100%;
}
body#organization .modal .box:not(.n1) .cont02 .txt,
body#organization .modal .box:not(.n7) .cont02 .txt,
body#organization .modal .box:not(.n13) .cont02 .txt,
body#organization .modal .box:not(.n14) .cont02 .txt,
body#organization .modal .box:not(.n15) .cont02 .txt {
  background: #f4f4f4;
  font-weight: 100;
  color: #3b3a3a;
  width: 70%;
  font-size: 2.5vw;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont02 .txt,
  body#organization .modal .box:not(.n7) .cont02 .txt,
  body#organization .modal .box:not(.n13) .cont02 .txt,
  body#organization .modal .box:not(.n14) .cont02 .txt,
  body#organization .modal .box:not(.n15) .cont02 .txt {
    font-size: 8.533328px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont02 .txt,
  body#organization .modal .box:not(.n7) .cont02 .txt,
  body#organization .modal .box:not(.n13) .cont02 .txt,
  body#organization .modal .box:not(.n14) .cont02 .txt,
  body#organization .modal .box:not(.n15) .cont02 .txt {
    font-size: 0.8333333333vw;
  }
}
body#organization .modal .box:not(.n1) .cont02 .txt > *,
body#organization .modal .box:not(.n7) .cont02 .txt > *,
body#organization .modal .box:not(.n13) .cont02 .txt > *,
body#organization .modal .box:not(.n14) .cont02 .txt > *,
body#organization .modal .box:not(.n15) .cont02 .txt > * {
  line-height: 180%;
}
body#organization .modal .box:not(.n1) .cont02 .txt strong,
body#organization .modal .box:not(.n7) .cont02 .txt strong,
body#organization .modal .box:not(.n13) .cont02 .txt strong,
body#organization .modal .box:not(.n14) .cont02 .txt strong,
body#organization .modal .box:not(.n15) .cont02 .txt strong {
  display: block;
  color: #e60012;
  font-weight: 800;
  margin-bottom: 3.125vw;
  font-size: 3.125vw;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont02 .txt strong,
  body#organization .modal .box:not(.n7) .cont02 .txt strong,
  body#organization .modal .box:not(.n13) .cont02 .txt strong,
  body#organization .modal .box:not(.n14) .cont02 .txt strong,
  body#organization .modal .box:not(.n15) .cont02 .txt strong {
    margin-bottom: 5.33333px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont02 .txt strong,
  body#organization .modal .box:not(.n7) .cont02 .txt strong,
  body#organization .modal .box:not(.n13) .cont02 .txt strong,
  body#organization .modal .box:not(.n14) .cont02 .txt strong,
  body#organization .modal .box:not(.n15) .cont02 .txt strong {
    margin-bottom: 0.5208333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont02 .txt strong,
  body#organization .modal .box:not(.n7) .cont02 .txt strong,
  body#organization .modal .box:not(.n13) .cont02 .txt strong,
  body#organization .modal .box:not(.n14) .cont02 .txt strong,
  body#organization .modal .box:not(.n15) .cont02 .txt strong {
    font-size: 10.66666px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont02 .txt strong,
  body#organization .modal .box:not(.n7) .cont02 .txt strong,
  body#organization .modal .box:not(.n13) .cont02 .txt strong,
  body#organization .modal .box:not(.n14) .cont02 .txt strong,
  body#organization .modal .box:not(.n15) .cont02 .txt strong {
    font-size: 1.0416666667vw;
  }
}
body#organization .modal .box:not(.n1) .cont02 .txt small,
body#organization .modal .box:not(.n7) .cont02 .txt small,
body#organization .modal .box:not(.n13) .cont02 .txt small,
body#organization .modal .box:not(.n14) .cont02 .txt small,
body#organization .modal .box:not(.n15) .cont02 .txt small {
  display: block;
  color: #3b3a3a;
  font-size: 2.8125vw;
  font-weight: 600;
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont02 .txt small,
  body#organization .modal .box:not(.n7) .cont02 .txt small,
  body#organization .modal .box:not(.n13) .cont02 .txt small,
  body#organization .modal .box:not(.n14) .cont02 .txt small,
  body#organization .modal .box:not(.n15) .cont02 .txt small {
    font-size: 9.599994px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box:not(.n1) .cont02 .txt small,
  body#organization .modal .box:not(.n7) .cont02 .txt small,
  body#organization .modal .box:not(.n13) .cont02 .txt small,
  body#organization .modal .box:not(.n14) .cont02 .txt small,
  body#organization .modal .box:not(.n15) .cont02 .txt small {
    font-size: 0.9375vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box:not(.n1) .cont02 .txt,
  body#organization .modal .box:not(.n7) .cont02 .txt,
  body#organization .modal .box:not(.n13) .cont02 .txt,
  body#organization .modal .box:not(.n14) .cont02 .txt,
  body#organization .modal .box:not(.n15) .cont02 .txt {
    background: none;
  }
}
body#organization .modal .box.n1 .cont01,
body#organization .modal .box.n7 .cont01,
body#organization .modal .box.n13 .cont01,
body#organization .modal .box.n14 .cont01,
body#organization .modal .box.n15 .cont01 {
  display: flex;
  flex-direction: column;
  margin-left: 0vw;
  width: 100vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01,
  body#organization .modal .box.n7 .cont01,
  body#organization .modal .box.n13 .cont01,
  body#organization .modal .box.n14 .cont01,
  body#organization .modal .box.n15 .cont01 {
    margin-left: auto;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01,
  body#organization .modal .box.n7 .cont01,
  body#organization .modal .box.n13 .cont01,
  body#organization .modal .box.n14 .cont01,
  body#organization .modal .box.n15 .cont01 {
    margin-left: auto;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01,
  body#organization .modal .box.n7 .cont01,
  body#organization .modal .box.n13 .cont01,
  body#organization .modal .box.n14 .cont01,
  body#organization .modal .box.n15 .cont01 {
    width: 896.532773px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01,
  body#organization .modal .box.n7 .cont01,
  body#organization .modal .box.n13 .cont01,
  body#organization .modal .box.n14 .cont01,
  body#organization .modal .box.n15 .cont01 {
    width: 87.5520833333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01,
  body#organization .modal .box.n7 .cont01,
  body#organization .modal .box.n13 .cont01,
  body#organization .modal .box.n14 .cont01,
  body#organization .modal .box.n15 .cont01 {
    flex-direction: row;
  }
}
body#organization .modal .box.n1 .cont01 h3,
body#organization .modal .box.n7 .cont01 h3,
body#organization .modal .box.n13 .cont01 h3,
body#organization .modal .box.n14 .cont01 h3,
body#organization .modal .box.n15 .cont01 h3 {
  position: relative;
  margin-top: 0vw;
  z-index: 10;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 h3,
  body#organization .modal .box.n7 .cont01 h3,
  body#organization .modal .box.n13 .cont01 h3,
  body#organization .modal .box.n14 .cont01 h3,
  body#organization .modal .box.n15 .cont01 h3 {
    margin-top: 21.33332px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 h3,
  body#organization .modal .box.n7 .cont01 h3,
  body#organization .modal .box.n13 .cont01 h3,
  body#organization .modal .box.n14 .cont01 h3,
  body#organization .modal .box.n15 .cont01 h3 {
    margin-top: 2.0833333333vw;
  }
}
body#organization .modal .box.n1 .cont01 .inr,
body#organization .modal .box.n7 .cont01 .inr,
body#organization .modal .box.n13 .cont01 .inr,
body#organization .modal .box.n14 .cont01 .inr,
body#organization .modal .box.n15 .cont01 .inr {
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  padding-top: 0vw;
  padding-bottom: 0vw;
  padding-right: 0vw;
  padding-left: 0vw;
  margin-right: auto;
  margin-left: auto;
  width: 93.75vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .inr,
  body#organization .modal .box.n7 .cont01 .inr,
  body#organization .modal .box.n13 .cont01 .inr,
  body#organization .modal .box.n14 .cont01 .inr,
  body#organization .modal .box.n15 .cont01 .inr {
    padding-top: 21.33332px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .inr,
  body#organization .modal .box.n7 .cont01 .inr,
  body#organization .modal .box.n13 .cont01 .inr,
  body#organization .modal .box.n14 .cont01 .inr,
  body#organization .modal .box.n15 .cont01 .inr {
    padding-top: 2.0833333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .inr,
  body#organization .modal .box.n7 .cont01 .inr,
  body#organization .modal .box.n13 .cont01 .inr,
  body#organization .modal .box.n14 .cont01 .inr,
  body#organization .modal .box.n15 .cont01 .inr {
    padding-bottom: 37.33331px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .inr,
  body#organization .modal .box.n7 .cont01 .inr,
  body#organization .modal .box.n13 .cont01 .inr,
  body#organization .modal .box.n14 .cont01 .inr,
  body#organization .modal .box.n15 .cont01 .inr {
    padding-bottom: 3.6458333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .inr,
  body#organization .modal .box.n7 .cont01 .inr,
  body#organization .modal .box.n13 .cont01 .inr,
  body#organization .modal .box.n14 .cont01 .inr,
  body#organization .modal .box.n15 .cont01 .inr {
    padding-right: 21.33332px;
    padding-left: 21.33332px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .inr,
  body#organization .modal .box.n7 .cont01 .inr,
  body#organization .modal .box.n13 .cont01 .inr,
  body#organization .modal .box.n14 .cont01 .inr,
  body#organization .modal .box.n15 .cont01 .inr {
    padding-right: 2.0833333333vw;
    padding-left: 2.0833333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .inr,
  body#organization .modal .box.n7 .cont01 .inr,
  body#organization .modal .box.n13 .cont01 .inr,
  body#organization .modal .box.n14 .cont01 .inr,
  body#organization .modal .box.n15 .cont01 .inr {
    margin-right: 0px;
    margin-left: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .inr,
  body#organization .modal .box.n7 .cont01 .inr,
  body#organization .modal .box.n13 .cont01 .inr,
  body#organization .modal .box.n14 .cont01 .inr,
  body#organization .modal .box.n15 .cont01 .inr {
    margin-right: 0vw;
    margin-left: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .inr,
  body#organization .modal .box.n7 .cont01 .inr,
  body#organization .modal .box.n13 .cont01 .inr,
  body#organization .modal .box.n14 .cont01 .inr,
  body#organization .modal .box.n15 .cont01 .inr {
    width: 473.066371px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .inr,
  body#organization .modal .box.n7 .cont01 .inr,
  body#organization .modal .box.n13 .cont01 .inr,
  body#organization .modal .box.n14 .cont01 .inr,
  body#organization .modal .box.n15 .cont01 .inr {
    width: 46.1979166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .inr,
  body#organization .modal .box.n7 .cont01 .inr,
  body#organization .modal .box.n13 .cont01 .inr,
  body#organization .modal .box.n14 .cont01 .inr,
  body#organization .modal .box.n15 .cont01 .inr {
    justify-content: space-between;
    flex-direction: row;
  }
}
body#organization .modal .box.n1 .cont01 .img,
body#organization .modal .box.n7 .cont01 .img,
body#organization .modal .box.n13 .cont01 .img,
body#organization .modal .box.n14 .cont01 .img,
body#organization .modal .box.n15 .cont01 .img {
  width: 93.75vw;
  position: relative;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .img,
  body#organization .modal .box.n7 .cont01 .img,
  body#organization .modal .box.n13 .cont01 .img,
  body#organization .modal .box.n14 .cont01 .img,
  body#organization .modal .box.n15 .cont01 .img {
    width: 158.399901px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .img,
  body#organization .modal .box.n7 .cont01 .img,
  body#organization .modal .box.n13 .cont01 .img,
  body#organization .modal .box.n14 .cont01 .img,
  body#organization .modal .box.n15 .cont01 .img {
    width: 15.46875vw;
  }
}
body#organization .modal .box.n1 .cont01 .img figure:nth-child(1),
body#organization .modal .box.n7 .cont01 .img figure:nth-child(1),
body#organization .modal .box.n13 .cont01 .img figure:nth-child(1),
body#organization .modal .box.n14 .cont01 .img figure:nth-child(1),
body#organization .modal .box.n15 .cont01 .img figure:nth-child(1) {
  width: 81.25vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .img figure:nth-child(1),
  body#organization .modal .box.n7 .cont01 .img figure:nth-child(1),
  body#organization .modal .box.n13 .cont01 .img figure:nth-child(1),
  body#organization .modal .box.n14 .cont01 .img figure:nth-child(1),
  body#organization .modal .box.n15 .cont01 .img figure:nth-child(1) {
    width: 277.33316px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .img figure:nth-child(1),
  body#organization .modal .box.n7 .cont01 .img figure:nth-child(1),
  body#organization .modal .box.n13 .cont01 .img figure:nth-child(1),
  body#organization .modal .box.n14 .cont01 .img figure:nth-child(1),
  body#organization .modal .box.n15 .cont01 .img figure:nth-child(1) {
    width: 27.0833333333vw;
  }
}
body#organization .modal .box.n1 .cont01 .img figure:nth-child(2),
body#organization .modal .box.n7 .cont01 .img figure:nth-child(2),
body#organization .modal .box.n13 .cont01 .img figure:nth-child(2),
body#organization .modal .box.n14 .cont01 .img figure:nth-child(2),
body#organization .modal .box.n15 .cont01 .img figure:nth-child(2) {
  width: 40.625vw;
  bottom: -14.0625vw;
  right: 0vw;
  position: absolute;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n7 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n13 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n14 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n15 .cont01 .img figure:nth-child(2) {
    width: 138.66658px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n7 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n13 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n14 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n15 .cont01 .img figure:nth-child(2) {
    width: 13.5416666667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n7 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n13 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n14 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n15 .cont01 .img figure:nth-child(2) {
    bottom: auto;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n7 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n13 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n14 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n15 .cont01 .img figure:nth-child(2) {
    bottom: auto;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n7 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n13 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n14 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n15 .cont01 .img figure:nth-child(2) {
    right: auto;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n7 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n13 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n14 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n15 .cont01 .img figure:nth-child(2) {
    right: auto;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n7 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n13 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n14 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n15 .cont01 .img figure:nth-child(2) {
    position: relative;
    margin-top: 3.125vw;
    width: 100% !important;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n7 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n13 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n14 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n15 .cont01 .img figure:nth-child(2) {
    margin-top: 10.66666px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n7 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n13 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n14 .cont01 .img figure:nth-child(2),
  body#organization .modal .box.n15 .cont01 .img figure:nth-child(2) {
    margin-top: 1.0416666667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .img figure,
  body#organization .modal .box.n7 .cont01 .img figure,
  body#organization .modal .box.n13 .cont01 .img figure,
  body#organization .modal .box.n14 .cont01 .img figure,
  body#organization .modal .box.n15 .cont01 .img figure {
    width: 100% !important;
  }
}
body#organization .modal .box.n1 .cont01 .txt,
body#organization .modal .box.n7 .cont01 .txt,
body#organization .modal .box.n13 .cont01 .txt,
body#organization .modal .box.n14 .cont01 .txt,
body#organization .modal .box.n15 .cont01 .txt {
  box-sizing: border-box;
  background: #f4f4f4;
  font-weight: 100;
  color: #3b3a3a;
  margin-top: 3.125vw;
  margin-right: auto;
  margin-left: auto;
  padding-top: 3.90625vw;
  padding-bottom: 3.90625vw;
  padding-right: 3.125vw;
  padding-left: 3.125vw;
  font-size: 15px;
  width: 100%;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt,
  body#organization .modal .box.n7 .cont01 .txt,
  body#organization .modal .box.n13 .cont01 .txt,
  body#organization .modal .box.n14 .cont01 .txt,
  body#organization .modal .box.n15 .cont01 .txt {
    margin-top: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt,
  body#organization .modal .box.n7 .cont01 .txt,
  body#organization .modal .box.n13 .cont01 .txt,
  body#organization .modal .box.n14 .cont01 .txt,
  body#organization .modal .box.n15 .cont01 .txt {
    margin-top: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt,
  body#organization .modal .box.n7 .cont01 .txt,
  body#organization .modal .box.n13 .cont01 .txt,
  body#organization .modal .box.n14 .cont01 .txt,
  body#organization .modal .box.n15 .cont01 .txt {
    margin-right: 0px;
    margin-left: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt,
  body#organization .modal .box.n7 .cont01 .txt,
  body#organization .modal .box.n13 .cont01 .txt,
  body#organization .modal .box.n14 .cont01 .txt,
  body#organization .modal .box.n15 .cont01 .txt {
    margin-right: 0vw;
    margin-left: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt,
  body#organization .modal .box.n7 .cont01 .txt,
  body#organization .modal .box.n13 .cont01 .txt,
  body#organization .modal .box.n14 .cont01 .txt,
  body#organization .modal .box.n15 .cont01 .txt {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt,
  body#organization .modal .box.n7 .cont01 .txt,
  body#organization .modal .box.n13 .cont01 .txt,
  body#organization .modal .box.n14 .cont01 .txt,
  body#organization .modal .box.n15 .cont01 .txt {
    padding-top: 0vw;
    padding-bottom: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt,
  body#organization .modal .box.n7 .cont01 .txt,
  body#organization .modal .box.n13 .cont01 .txt,
  body#organization .modal .box.n14 .cont01 .txt,
  body#organization .modal .box.n15 .cont01 .txt {
    padding-right: 0px;
    padding-left: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt,
  body#organization .modal .box.n7 .cont01 .txt,
  body#organization .modal .box.n13 .cont01 .txt,
  body#organization .modal .box.n14 .cont01 .txt,
  body#organization .modal .box.n15 .cont01 .txt {
    padding-right: 0vw;
    padding-left: 0vw;
  }
}
body#organization .modal .box.n1 .cont01 .txt p + p,
body#organization .modal .box.n7 .cont01 .txt p + p,
body#organization .modal .box.n13 .cont01 .txt p + p,
body#organization .modal .box.n14 .cont01 .txt p + p,
body#organization .modal .box.n15 .cont01 .txt p + p {
  padding-top: 6.25vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt p + p,
  body#organization .modal .box.n7 .cont01 .txt p + p,
  body#organization .modal .box.n13 .cont01 .txt p + p,
  body#organization .modal .box.n14 .cont01 .txt p + p,
  body#organization .modal .box.n15 .cont01 .txt p + p {
    padding-top: 23.999985px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt p + p,
  body#organization .modal .box.n7 .cont01 .txt p + p,
  body#organization .modal .box.n13 .cont01 .txt p + p,
  body#organization .modal .box.n14 .cont01 .txt p + p,
  body#organization .modal .box.n15 .cont01 .txt p + p {
    padding-top: 2.34375vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt,
  body#organization .modal .box.n7 .cont01 .txt,
  body#organization .modal .box.n13 .cont01 .txt,
  body#organization .modal .box.n14 .cont01 .txt,
  body#organization .modal .box.n15 .cont01 .txt {
    background: none;
  }
}
body#organization .modal .box.n1 .cont01 .txt > *,
body#organization .modal .box.n7 .cont01 .txt > *,
body#organization .modal .box.n13 .cont01 .txt > *,
body#organization .modal .box.n14 .cont01 .txt > *,
body#organization .modal .box.n15 .cont01 .txt > * {
  line-height: 180%;
}
body#organization .modal .box.n1 .cont01 .txt strong,
body#organization .modal .box.n7 .cont01 .txt strong,
body#organization .modal .box.n13 .cont01 .txt strong,
body#organization .modal .box.n14 .cont01 .txt strong,
body#organization .modal .box.n15 .cont01 .txt strong {
  display: block;
  color: #e60012;
  font-weight: 800;
  margin-bottom: 3.125vw;
  font-size: 18px;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt strong,
  body#organization .modal .box.n7 .cont01 .txt strong,
  body#organization .modal .box.n13 .cont01 .txt strong,
  body#organization .modal .box.n14 .cont01 .txt strong,
  body#organization .modal .box.n15 .cont01 .txt strong {
    margin-bottom: 5.33333px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt strong,
  body#organization .modal .box.n7 .cont01 .txt strong,
  body#organization .modal .box.n13 .cont01 .txt strong,
  body#organization .modal .box.n14 .cont01 .txt strong,
  body#organization .modal .box.n15 .cont01 .txt strong {
    margin-bottom: 0.5208333333vw;
  }
}
body#organization .modal .box.n1 .cont01 .txt small,
body#organization .modal .box.n7 .cont01 .txt small,
body#organization .modal .box.n13 .cont01 .txt small,
body#organization .modal .box.n14 .cont01 .txt small,
body#organization .modal .box.n15 .cont01 .txt small {
  display: block;
  color: #3b3a3a;
  margin-bottom: 2.34375vw;
  font-weight: 600;
  font-size: 16px;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt small,
  body#organization .modal .box.n7 .cont01 .txt small,
  body#organization .modal .box.n13 .cont01 .txt small,
  body#organization .modal .box.n14 .cont01 .txt small,
  body#organization .modal .box.n15 .cont01 .txt small {
    margin-bottom: 21.33332px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt small,
  body#organization .modal .box.n7 .cont01 .txt small,
  body#organization .modal .box.n13 .cont01 .txt small,
  body#organization .modal .box.n14 .cont01 .txt small,
  body#organization .modal .box.n15 .cont01 .txt small {
    margin-bottom: 2.0833333333vw;
  }
}
body#organization .modal .box.n1 .cont01 .txt small b,
body#organization .modal .box.n7 .cont01 .txt small b,
body#organization .modal .box.n13 .cont01 .txt small b,
body#organization .modal .box.n14 .cont01 .txt small b,
body#organization .modal .box.n15 .cont01 .txt small b {
  font-size: 20px;
  display: inline-block;
}
body#organization .modal .box.n1 .cont01 .img_02,
body#organization .modal .box.n7 .cont01 .img_02,
body#organization .modal .box.n13 .cont01 .img_02,
body#organization .modal .box.n14 .cont01 .img_02,
body#organization .modal .box.n15 .cont01 .img_02 {
  width: 93.75vw;
  position: relative;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .img_02,
  body#organization .modal .box.n7 .cont01 .img_02,
  body#organization .modal .box.n13 .cont01 .img_02,
  body#organization .modal .box.n14 .cont01 .img_02,
  body#organization .modal .box.n15 .cont01 .img_02 {
    width: 158.933234px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .img_02,
  body#organization .modal .box.n7 .cont01 .img_02,
  body#organization .modal .box.n13 .cont01 .img_02,
  body#organization .modal .box.n14 .cont01 .img_02,
  body#organization .modal .box.n15 .cont01 .img_02 {
    width: 15.5208333333vw;
  }
}
body#organization .modal .box.n1 .cont01 .img_02 figure:nth-child(1),
body#organization .modal .box.n7 .cont01 .img_02 figure:nth-child(1),
body#organization .modal .box.n13 .cont01 .img_02 figure:nth-child(1),
body#organization .modal .box.n14 .cont01 .img_02 figure:nth-child(1),
body#organization .modal .box.n15 .cont01 .img_02 figure:nth-child(1) {
  width: 81.25vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .img_02 figure:nth-child(1),
  body#organization .modal .box.n7 .cont01 .img_02 figure:nth-child(1),
  body#organization .modal .box.n13 .cont01 .img_02 figure:nth-child(1),
  body#organization .modal .box.n14 .cont01 .img_02 figure:nth-child(1),
  body#organization .modal .box.n15 .cont01 .img_02 figure:nth-child(1) {
    width: 277.33316px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .img_02 figure:nth-child(1),
  body#organization .modal .box.n7 .cont01 .img_02 figure:nth-child(1),
  body#organization .modal .box.n13 .cont01 .img_02 figure:nth-child(1),
  body#organization .modal .box.n14 .cont01 .img_02 figure:nth-child(1),
  body#organization .modal .box.n15 .cont01 .img_02 figure:nth-child(1) {
    width: 27.0833333333vw;
  }
}
body#organization .modal .box.n1 .cont01 .img_02 figure:nth-child(2),
body#organization .modal .box.n7 .cont01 .img_02 figure:nth-child(2),
body#organization .modal .box.n13 .cont01 .img_02 figure:nth-child(2),
body#organization .modal .box.n14 .cont01 .img_02 figure:nth-child(2),
body#organization .modal .box.n15 .cont01 .img_02 figure:nth-child(2) {
  width: 40.625vw;
  bottom: -14.0625vw;
  right: 0vw;
  position: absolute;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n7 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n13 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n14 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n15 .cont01 .img_02 figure:nth-child(2) {
    width: 138.66658px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n7 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n13 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n14 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n15 .cont01 .img_02 figure:nth-child(2) {
    width: 13.5416666667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n7 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n13 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n14 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n15 .cont01 .img_02 figure:nth-child(2) {
    bottom: auto;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n7 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n13 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n14 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n15 .cont01 .img_02 figure:nth-child(2) {
    bottom: auto;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n7 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n13 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n14 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n15 .cont01 .img_02 figure:nth-child(2) {
    right: auto;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n7 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n13 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n14 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n15 .cont01 .img_02 figure:nth-child(2) {
    right: auto;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n7 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n13 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n14 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n15 .cont01 .img_02 figure:nth-child(2) {
    position: relative;
    margin-top: 3.125vw;
    width: 100% !important;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n7 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n13 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n14 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n15 .cont01 .img_02 figure:nth-child(2) {
    margin-top: 10.66666px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n7 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n13 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n14 .cont01 .img_02 figure:nth-child(2),
  body#organization .modal .box.n15 .cont01 .img_02 figure:nth-child(2) {
    margin-top: 1.0416666667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .img_02 figure,
  body#organization .modal .box.n7 .cont01 .img_02 figure,
  body#organization .modal .box.n13 .cont01 .img_02 figure,
  body#organization .modal .box.n14 .cont01 .img_02 figure,
  body#organization .modal .box.n15 .cont01 .img_02 figure {
    width: 100% !important;
  }
}
body#organization .modal .box.n1 .cont01 .txt_area,
body#organization .modal .box.n7 .cont01 .txt_area,
body#organization .modal .box.n13 .cont01 .txt_area,
body#organization .modal .box.n14 .cont01 .txt_area,
body#organization .modal .box.n15 .cont01 .txt_area {
  box-sizing: border-box;
  background: #f4f4f4;
  font-weight: 100;
  color: #3b3a3a;
  margin-top: 3.125vw;
  margin-right: auto;
  margin-left: auto;
  padding-top: 7.8125vw;
  padding-bottom: 6.25vw;
  padding-right: 3.125vw;
  padding-left: 3.125vw;
  font-size: 2.5vw;
  width: 93.75vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area,
  body#organization .modal .box.n7 .cont01 .txt_area,
  body#organization .modal .box.n13 .cont01 .txt_area,
  body#organization .modal .box.n14 .cont01 .txt_area,
  body#organization .modal .box.n15 .cont01 .txt_area {
    margin-top: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area,
  body#organization .modal .box.n7 .cont01 .txt_area,
  body#organization .modal .box.n13 .cont01 .txt_area,
  body#organization .modal .box.n14 .cont01 .txt_area,
  body#organization .modal .box.n15 .cont01 .txt_area {
    margin-top: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area,
  body#organization .modal .box.n7 .cont01 .txt_area,
  body#organization .modal .box.n13 .cont01 .txt_area,
  body#organization .modal .box.n14 .cont01 .txt_area,
  body#organization .modal .box.n15 .cont01 .txt_area {
    margin-right: 0px;
    margin-left: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area,
  body#organization .modal .box.n7 .cont01 .txt_area,
  body#organization .modal .box.n13 .cont01 .txt_area,
  body#organization .modal .box.n14 .cont01 .txt_area,
  body#organization .modal .box.n15 .cont01 .txt_area {
    margin-right: 0vw;
    margin-left: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area,
  body#organization .modal .box.n7 .cont01 .txt_area,
  body#organization .modal .box.n13 .cont01 .txt_area,
  body#organization .modal .box.n14 .cont01 .txt_area,
  body#organization .modal .box.n15 .cont01 .txt_area {
    padding-top: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area,
  body#organization .modal .box.n7 .cont01 .txt_area,
  body#organization .modal .box.n13 .cont01 .txt_area,
  body#organization .modal .box.n14 .cont01 .txt_area,
  body#organization .modal .box.n15 .cont01 .txt_area {
    padding-top: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area,
  body#organization .modal .box.n7 .cont01 .txt_area,
  body#organization .modal .box.n13 .cont01 .txt_area,
  body#organization .modal .box.n14 .cont01 .txt_area,
  body#organization .modal .box.n15 .cont01 .txt_area {
    padding-bottom: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area,
  body#organization .modal .box.n7 .cont01 .txt_area,
  body#organization .modal .box.n13 .cont01 .txt_area,
  body#organization .modal .box.n14 .cont01 .txt_area,
  body#organization .modal .box.n15 .cont01 .txt_area {
    padding-bottom: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area,
  body#organization .modal .box.n7 .cont01 .txt_area,
  body#organization .modal .box.n13 .cont01 .txt_area,
  body#organization .modal .box.n14 .cont01 .txt_area,
  body#organization .modal .box.n15 .cont01 .txt_area {
    padding-right: 0px;
    padding-left: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area,
  body#organization .modal .box.n7 .cont01 .txt_area,
  body#organization .modal .box.n13 .cont01 .txt_area,
  body#organization .modal .box.n14 .cont01 .txt_area,
  body#organization .modal .box.n15 .cont01 .txt_area {
    padding-right: 0vw;
    padding-left: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area,
  body#organization .modal .box.n7 .cont01 .txt_area,
  body#organization .modal .box.n13 .cont01 .txt_area,
  body#organization .modal .box.n14 .cont01 .txt_area,
  body#organization .modal .box.n15 .cont01 .txt_area {
    font-size: 8.533328px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area,
  body#organization .modal .box.n7 .cont01 .txt_area,
  body#organization .modal .box.n13 .cont01 .txt_area,
  body#organization .modal .box.n14 .cont01 .txt_area,
  body#organization .modal .box.n15 .cont01 .txt_area {
    font-size: 0.8333333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area,
  body#organization .modal .box.n7 .cont01 .txt_area,
  body#organization .modal .box.n13 .cont01 .txt_area,
  body#organization .modal .box.n14 .cont01 .txt_area,
  body#organization .modal .box.n15 .cont01 .txt_area {
    width: 247.999845px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area,
  body#organization .modal .box.n7 .cont01 .txt_area,
  body#organization .modal .box.n13 .cont01 .txt_area,
  body#organization .modal .box.n14 .cont01 .txt_area,
  body#organization .modal .box.n15 .cont01 .txt_area {
    width: 24.21875vw;
  }
}
body#organization .modal .box.n1 .cont01 .txt_area p + p,
body#organization .modal .box.n7 .cont01 .txt_area p + p,
body#organization .modal .box.n13 .cont01 .txt_area p + p,
body#organization .modal .box.n14 .cont01 .txt_area p + p,
body#organization .modal .box.n15 .cont01 .txt_area p + p {
  padding-top: 3.125vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area p + p,
  body#organization .modal .box.n7 .cont01 .txt_area p + p,
  body#organization .modal .box.n13 .cont01 .txt_area p + p,
  body#organization .modal .box.n14 .cont01 .txt_area p + p,
  body#organization .modal .box.n15 .cont01 .txt_area p + p {
    padding-top: 10.66666px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area p + p,
  body#organization .modal .box.n7 .cont01 .txt_area p + p,
  body#organization .modal .box.n13 .cont01 .txt_area p + p,
  body#organization .modal .box.n14 .cont01 .txt_area p + p,
  body#organization .modal .box.n15 .cont01 .txt_area p + p {
    padding-top: 1.0416666667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area,
  body#organization .modal .box.n7 .cont01 .txt_area,
  body#organization .modal .box.n13 .cont01 .txt_area,
  body#organization .modal .box.n14 .cont01 .txt_area,
  body#organization .modal .box.n15 .cont01 .txt_area {
    background: none;
  }
}
body#organization .modal .box.n1 .cont01 .txt_area > *,
body#organization .modal .box.n7 .cont01 .txt_area > *,
body#organization .modal .box.n13 .cont01 .txt_area > *,
body#organization .modal .box.n14 .cont01 .txt_area > *,
body#organization .modal .box.n15 .cont01 .txt_area > * {
  line-height: 180%;
}
body#organization .modal .box.n1 .cont01 .txt_area strong,
body#organization .modal .box.n7 .cont01 .txt_area strong,
body#organization .modal .box.n13 .cont01 .txt_area strong,
body#organization .modal .box.n14 .cont01 .txt_area strong,
body#organization .modal .box.n15 .cont01 .txt_area strong {
  display: block;
  color: #e60012;
  font-weight: 800;
  margin-bottom: 3.125vw;
  font-size: 3.125vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area strong,
  body#organization .modal .box.n7 .cont01 .txt_area strong,
  body#organization .modal .box.n13 .cont01 .txt_area strong,
  body#organization .modal .box.n14 .cont01 .txt_area strong,
  body#organization .modal .box.n15 .cont01 .txt_area strong {
    margin-bottom: 10.66666px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area strong,
  body#organization .modal .box.n7 .cont01 .txt_area strong,
  body#organization .modal .box.n13 .cont01 .txt_area strong,
  body#organization .modal .box.n14 .cont01 .txt_area strong,
  body#organization .modal .box.n15 .cont01 .txt_area strong {
    margin-bottom: 1.0416666667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area strong,
  body#organization .modal .box.n7 .cont01 .txt_area strong,
  body#organization .modal .box.n13 .cont01 .txt_area strong,
  body#organization .modal .box.n14 .cont01 .txt_area strong,
  body#organization .modal .box.n15 .cont01 .txt_area strong {
    font-size: 10.66666px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area strong,
  body#organization .modal .box.n7 .cont01 .txt_area strong,
  body#organization .modal .box.n13 .cont01 .txt_area strong,
  body#organization .modal .box.n14 .cont01 .txt_area strong,
  body#organization .modal .box.n15 .cont01 .txt_area strong {
    font-size: 1.0416666667vw;
  }
}
body#organization .modal .box.n1 .cont01 .txt_area small,
body#organization .modal .box.n7 .cont01 .txt_area small,
body#organization .modal .box.n13 .cont01 .txt_area small,
body#organization .modal .box.n14 .cont01 .txt_area small,
body#organization .modal .box.n15 .cont01 .txt_area small {
  display: block;
  color: #3b3a3a;
  font-size: 2.8125vw;
  margin-bottom: 2.34375vw;
  font-weight: 600;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area small,
  body#organization .modal .box.n7 .cont01 .txt_area small,
  body#organization .modal .box.n13 .cont01 .txt_area small,
  body#organization .modal .box.n14 .cont01 .txt_area small,
  body#organization .modal .box.n15 .cont01 .txt_area small {
    font-size: 9.599994px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area small,
  body#organization .modal .box.n7 .cont01 .txt_area small,
  body#organization .modal .box.n13 .cont01 .txt_area small,
  body#organization .modal .box.n14 .cont01 .txt_area small,
  body#organization .modal .box.n15 .cont01 .txt_area small {
    font-size: 0.9375vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area small,
  body#organization .modal .box.n7 .cont01 .txt_area small,
  body#organization .modal .box.n13 .cont01 .txt_area small,
  body#organization .modal .box.n14 .cont01 .txt_area small,
  body#organization .modal .box.n15 .cont01 .txt_area small {
    margin-bottom: 21.33332px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area small,
  body#organization .modal .box.n7 .cont01 .txt_area small,
  body#organization .modal .box.n13 .cont01 .txt_area small,
  body#organization .modal .box.n14 .cont01 .txt_area small,
  body#organization .modal .box.n15 .cont01 .txt_area small {
    margin-bottom: 2.0833333333vw;
  }
}
body#organization .modal .box.n1 .cont01 .txt_area small + div,
body#organization .modal .box.n7 .cont01 .txt_area small + div,
body#organization .modal .box.n13 .cont01 .txt_area small + div,
body#organization .modal .box.n14 .cont01 .txt_area small + div,
body#organization .modal .box.n15 .cont01 .txt_area small + div {
  width: 100%;
  background: #e60012 !important;
  margin-top: -0.78125vw;
  margin-bottom: 2.34375vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div,
  body#organization .modal .box.n7 .cont01 .txt_area small + div,
  body#organization .modal .box.n13 .cont01 .txt_area small + div,
  body#organization .modal .box.n14 .cont01 .txt_area small + div,
  body#organization .modal .box.n15 .cont01 .txt_area small + div {
    margin-top: -10.66666px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div,
  body#organization .modal .box.n7 .cont01 .txt_area small + div,
  body#organization .modal .box.n13 .cont01 .txt_area small + div,
  body#organization .modal .box.n14 .cont01 .txt_area small + div,
  body#organization .modal .box.n15 .cont01 .txt_area small + div {
    margin-top: -1.0416666667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div,
  body#organization .modal .box.n7 .cont01 .txt_area small + div,
  body#organization .modal .box.n13 .cont01 .txt_area small + div,
  body#organization .modal .box.n14 .cont01 .txt_area small + div,
  body#organization .modal .box.n15 .cont01 .txt_area small + div {
    margin-bottom: 21.33332px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div,
  body#organization .modal .box.n7 .cont01 .txt_area small + div,
  body#organization .modal .box.n13 .cont01 .txt_area small + div,
  body#organization .modal .box.n14 .cont01 .txt_area small + div,
  body#organization .modal .box.n15 .cont01 .txt_area small + div {
    margin-bottom: 2.0833333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div,
  body#organization .modal .box.n7 .cont01 .txt_area small + div,
  body#organization .modal .box.n13 .cont01 .txt_area small + div,
  body#organization .modal .box.n14 .cont01 .txt_area small + div,
  body#organization .modal .box.n15 .cont01 .txt_area small + div {
    cursor: pointer;
    width: 185.15625vw;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div,
  body#organization .modal .box.n7 .cont01 .txt_area small + div,
  body#organization .modal .box.n13 .cont01 .txt_area small + div,
  body#organization .modal .box.n14 .cont01 .txt_area small + div,
  body#organization .modal .box.n15 .cont01 .txt_area small + div {
    width: 631.999605px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div,
  body#organization .modal .box.n7 .cont01 .txt_area small + div,
  body#organization .modal .box.n13 .cont01 .txt_area small + div,
  body#organization .modal .box.n14 .cont01 .txt_area small + div,
  body#organization .modal .box.n15 .cont01 .txt_area small + div {
    width: 61.71875vw;
  }
}
body#organization .modal .box.n1 .cont01 .txt_area small + div.message-movie,
body#organization .modal .box.n7 .cont01 .txt_area small + div.message-movie,
body#organization .modal .box.n13 .cont01 .txt_area small + div.message-movie,
body#organization .modal .box.n14 .cont01 .txt_area small + div.message-movie,
body#organization .modal .box.n15 .cont01 .txt_area small + div.message-movie {
  display: block;
  position: relative;
  text-align: right;
  height: 6.5625vw;
  padding-top: 2.34375vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont01 .txt_area small + div.message-movie {
    height: 22.399986px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont01 .txt_area small + div.message-movie {
    height: 2.1875vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont01 .txt_area small + div.message-movie {
    padding-top: 7.999995px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont01 .txt_area small + div.message-movie {
    padding-top: 0.78125vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont01 .txt_area small + div.message-movie {
    height: 6.5625vw;
    padding-top: 2.34375vw;
    padding-right: 1.25vw;
    color: #fff;
    width: 100%;
    line-height: normal;
    text-align: right;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont01 .txt_area small + div.message-movie {
    height: 22.399986px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont01 .txt_area small + div.message-movie {
    height: 2.1875vw;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont01 .txt_area small + div.message-movie {
    padding-top: 7.999995px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont01 .txt_area small + div.message-movie {
    padding-top: 0.78125vw;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont01 .txt_area small + div.message-movie {
    padding-right: 4.266664px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont01 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont01 .txt_area small + div.message-movie {
    padding-right: 0.4166666667vw;
  }
}
body#organization .modal .box.n1 .cont01 .txt_area small + div.message-movie > a,
body#organization .modal .box.n7 .cont01 .txt_area small + div.message-movie > a,
body#organization .modal .box.n13 .cont01 .txt_area small + div.message-movie > a,
body#organization .modal .box.n14 .cont01 .txt_area small + div.message-movie > a,
body#organization .modal .box.n15 .cont01 .txt_area small + div.message-movie > a {
  color: #fff;
  display: block;
  width: 98%;
  height: 100%;
  font-size: 3.75vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div.message-movie > a,
  body#organization .modal .box.n7 .cont01 .txt_area small + div.message-movie > a,
  body#organization .modal .box.n13 .cont01 .txt_area small + div.message-movie > a,
  body#organization .modal .box.n14 .cont01 .txt_area small + div.message-movie > a,
  body#organization .modal .box.n15 .cont01 .txt_area small + div.message-movie > a {
    font-size: 12.799992px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div.message-movie > a,
  body#organization .modal .box.n7 .cont01 .txt_area small + div.message-movie > a,
  body#organization .modal .box.n13 .cont01 .txt_area small + div.message-movie > a,
  body#organization .modal .box.n14 .cont01 .txt_area small + div.message-movie > a,
  body#organization .modal .box.n15 .cont01 .txt_area small + div.message-movie > a {
    font-size: 1.25vw;
  }
}
body#organization .modal .box.n1 .cont01 .txt_area small + div span,
body#organization .modal .box.n7 .cont01 .txt_area small + div span,
body#organization .modal .box.n13 .cont01 .txt_area small + div span,
body#organization .modal .box.n14 .cont01 .txt_area small + div span,
body#organization .modal .box.n15 .cont01 .txt_area small + div span {
  cursor: pointer;
}
body#organization .modal .box.n1 .cont01 .txt_area small + div i,
body#organization .modal .box.n7 .cont01 .txt_area small + div i,
body#organization .modal .box.n13 .cont01 .txt_area small + div i,
body#organization .modal .box.n14 .cont01 .txt_area small + div i,
body#organization .modal .box.n15 .cont01 .txt_area small + div i {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 2.34375vw;
  color: #fff;
  margin-top: -1.875vw;
  font-size: 4.375vw;
  transition: all 0.2s;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div i,
  body#organization .modal .box.n7 .cont01 .txt_area small + div i,
  body#organization .modal .box.n13 .cont01 .txt_area small + div i,
  body#organization .modal .box.n14 .cont01 .txt_area small + div i,
  body#organization .modal .box.n15 .cont01 .txt_area small + div i {
    left: 7.999995px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div i,
  body#organization .modal .box.n7 .cont01 .txt_area small + div i,
  body#organization .modal .box.n13 .cont01 .txt_area small + div i,
  body#organization .modal .box.n14 .cont01 .txt_area small + div i,
  body#organization .modal .box.n15 .cont01 .txt_area small + div i {
    left: 0.78125vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div i,
  body#organization .modal .box.n7 .cont01 .txt_area small + div i,
  body#organization .modal .box.n13 .cont01 .txt_area small + div i,
  body#organization .modal .box.n14 .cont01 .txt_area small + div i,
  body#organization .modal .box.n15 .cont01 .txt_area small + div i {
    cursor: pointer;
    left: 0.78125vw;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div i,
  body#organization .modal .box.n7 .cont01 .txt_area small + div i,
  body#organization .modal .box.n13 .cont01 .txt_area small + div i,
  body#organization .modal .box.n14 .cont01 .txt_area small + div i,
  body#organization .modal .box.n15 .cont01 .txt_area small + div i {
    left: 2.666665px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div i,
  body#organization .modal .box.n7 .cont01 .txt_area small + div i,
  body#organization .modal .box.n13 .cont01 .txt_area small + div i,
  body#organization .modal .box.n14 .cont01 .txt_area small + div i,
  body#organization .modal .box.n15 .cont01 .txt_area small + div i {
    left: 0.2604166667vw;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div i,
  body#organization .modal .box.n7 .cont01 .txt_area small + div i,
  body#organization .modal .box.n13 .cont01 .txt_area small + div i,
  body#organization .modal .box.n14 .cont01 .txt_area small + div i,
  body#organization .modal .box.n15 .cont01 .txt_area small + div i {
    left: 2.34375vw;
  }
}
@media (min-width: 1024px) and (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div i,
  body#organization .modal .box.n7 .cont01 .txt_area small + div i,
  body#organization .modal .box.n13 .cont01 .txt_area small + div i,
  body#organization .modal .box.n14 .cont01 .txt_area small + div i,
  body#organization .modal .box.n15 .cont01 .txt_area small + div i {
    left: 7.999995px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div i,
  body#organization .modal .box.n7 .cont01 .txt_area small + div i,
  body#organization .modal .box.n13 .cont01 .txt_area small + div i,
  body#organization .modal .box.n14 .cont01 .txt_area small + div i,
  body#organization .modal .box.n15 .cont01 .txt_area small + div i {
    left: 0.78125vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div i,
  body#organization .modal .box.n7 .cont01 .txt_area small + div i,
  body#organization .modal .box.n13 .cont01 .txt_area small + div i,
  body#organization .modal .box.n14 .cont01 .txt_area small + div i,
  body#organization .modal .box.n15 .cont01 .txt_area small + div i {
    margin-top: -6.399996px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div i,
  body#organization .modal .box.n7 .cont01 .txt_area small + div i,
  body#organization .modal .box.n13 .cont01 .txt_area small + div i,
  body#organization .modal .box.n14 .cont01 .txt_area small + div i,
  body#organization .modal .box.n15 .cont01 .txt_area small + div i {
    margin-top: -0.625vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div i,
  body#organization .modal .box.n7 .cont01 .txt_area small + div i,
  body#organization .modal .box.n13 .cont01 .txt_area small + div i,
  body#organization .modal .box.n14 .cont01 .txt_area small + div i,
  body#organization .modal .box.n15 .cont01 .txt_area small + div i {
    font-size: 14.933324px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 .txt_area small + div i,
  body#organization .modal .box.n7 .cont01 .txt_area small + div i,
  body#organization .modal .box.n13 .cont01 .txt_area small + div i,
  body#organization .modal .box.n14 .cont01 .txt_area small + div i,
  body#organization .modal .box.n15 .cont01 .txt_area small + div i {
    font-size: 1.4583333333vw;
  }
}
body#organization .modal .box.n1 .cont01 .txt_area small + div:hover i,
body#organization .modal .box.n7 .cont01 .txt_area small + div:hover i,
body#organization .modal .box.n13 .cont01 .txt_area small + div:hover i,
body#organization .modal .box.n14 .cont01 .txt_area small + div:hover i,
body#organization .modal .box.n15 .cont01 .txt_area small + div:hover i {
  transform: rotateZ(90deg);
}
body#organization .modal .box.n1 .cont01 > div,
body#organization .modal .box.n7 .cont01 > div,
body#organization .modal .box.n13 .cont01 > div,
body#organization .modal .box.n14 .cont01 > div,
body#organization .modal .box.n15 .cont01 > div {
  order: 2;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 > div,
  body#organization .modal .box.n7 .cont01 > div,
  body#organization .modal .box.n13 .cont01 > div,
  body#organization .modal .box.n14 .cont01 > div,
  body#organization .modal .box.n15 .cont01 > div {
    order: 1;
  }
}
body#organization .modal .box.n1 .cont01 > figure,
body#organization .modal .box.n7 .cont01 > figure,
body#organization .modal .box.n13 .cont01 > figure,
body#organization .modal .box.n14 .cont01 > figure,
body#organization .modal .box.n15 .cont01 > figure {
  order: 1;
  flex-shrink: 0;
  width: 100vw;
  margin-left: 0vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 > figure,
  body#organization .modal .box.n7 .cont01 > figure,
  body#organization .modal .box.n13 .cont01 > figure,
  body#organization .modal .box.n14 .cont01 > figure,
  body#organization .modal .box.n15 .cont01 > figure {
    width: 601.066291px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 > figure,
  body#organization .modal .box.n7 .cont01 > figure,
  body#organization .modal .box.n13 .cont01 > figure,
  body#organization .modal .box.n14 .cont01 > figure,
  body#organization .modal .box.n15 .cont01 > figure {
    width: 58.6979166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 > figure,
  body#organization .modal .box.n7 .cont01 > figure,
  body#organization .modal .box.n13 .cont01 > figure,
  body#organization .modal .box.n14 .cont01 > figure,
  body#organization .modal .box.n15 .cont01 > figure {
    margin-left: -177.599889px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 > figure,
  body#organization .modal .box.n7 .cont01 > figure,
  body#organization .modal .box.n13 .cont01 > figure,
  body#organization .modal .box.n14 .cont01 > figure,
  body#organization .modal .box.n15 .cont01 > figure {
    margin-left: -17.34375vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 > figure,
  body#organization .modal .box.n7 .cont01 > figure,
  body#organization .modal .box.n13 .cont01 > figure,
  body#organization .modal .box.n14 .cont01 > figure,
  body#organization .modal .box.n15 .cont01 > figure {
    order: 1;
  }
}
body#organization .modal .box.n1 .cont02,
body#organization .modal .box.n7 .cont02,
body#organization .modal .box.n13 .cont02,
body#organization .modal .box.n14 .cont02,
body#organization .modal .box.n15 .cont02 {
  display: flex;
  flex-direction: column;
  margin-top: 10.15625vw;
  margin-bottom: 10.15625vw;
  margin-right: 0vw;
  width: 100vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02,
  body#organization .modal .box.n7 .cont02,
  body#organization .modal .box.n13 .cont02,
  body#organization .modal .box.n14 .cont02,
  body#organization .modal .box.n15 .cont02 {
    margin-top: 66.666625px;
    margin-bottom: 66.666625px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02,
  body#organization .modal .box.n7 .cont02,
  body#organization .modal .box.n13 .cont02,
  body#organization .modal .box.n14 .cont02,
  body#organization .modal .box.n15 .cont02 {
    margin-top: 6.5104166667vw;
    margin-bottom: 6.5104166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02,
  body#organization .modal .box.n7 .cont02,
  body#organization .modal .box.n13 .cont02,
  body#organization .modal .box.n14 .cont02,
  body#organization .modal .box.n15 .cont02 {
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02,
  body#organization .modal .box.n7 .cont02,
  body#organization .modal .box.n13 .cont02,
  body#organization .modal .box.n14 .cont02,
  body#organization .modal .box.n15 .cont02 {
    margin-right: auto;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02,
  body#organization .modal .box.n7 .cont02,
  body#organization .modal .box.n13 .cont02,
  body#organization .modal .box.n14 .cont02,
  body#organization .modal .box.n15 .cont02 {
    width: 959.9994px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02,
  body#organization .modal .box.n7 .cont02,
  body#organization .modal .box.n13 .cont02,
  body#organization .modal .box.n14 .cont02,
  body#organization .modal .box.n15 .cont02 {
    width: 93.75vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02,
  body#organization .modal .box.n7 .cont02,
  body#organization .modal .box.n13 .cont02,
  body#organization .modal .box.n14 .cont02,
  body#organization .modal .box.n15 .cont02 {
    flex-direction: row;
  }
}
body#organization .modal .box.n1 .cont02 h3,
body#organization .modal .box.n7 .cont02 h3,
body#organization .modal .box.n13 .cont02 h3,
body#organization .modal .box.n14 .cont02 h3,
body#organization .modal .box.n15 .cont02 h3 {
  margin-top: 0vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 h3,
  body#organization .modal .box.n7 .cont02 h3,
  body#organization .modal .box.n13 .cont02 h3,
  body#organization .modal .box.n14 .cont02 h3,
  body#organization .modal .box.n15 .cont02 h3 {
    margin-top: 21.33332px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 h3,
  body#organization .modal .box.n7 .cont02 h3,
  body#organization .modal .box.n13 .cont02 h3,
  body#organization .modal .box.n14 .cont02 h3,
  body#organization .modal .box.n15 .cont02 h3 {
    margin-top: 2.0833333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 h3,
  body#organization .modal .box.n7 .cont02 h3,
  body#organization .modal .box.n13 .cont02 h3,
  body#organization .modal .box.n14 .cont02 h3,
  body#organization .modal .box.n15 .cont02 h3 {
    margin-left: auto;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 h3,
  body#organization .modal .box.n7 .cont02 h3,
  body#organization .modal .box.n13 .cont02 h3,
  body#organization .modal .box.n14 .cont02 h3,
  body#organization .modal .box.n15 .cont02 h3 {
    margin-left: -157.333235px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 h3,
  body#organization .modal .box.n7 .cont02 h3,
  body#organization .modal .box.n13 .cont02 h3,
  body#organization .modal .box.n14 .cont02 h3,
  body#organization .modal .box.n15 .cont02 h3 {
    margin-left: -15.3645833333vw;
  }
}
body#organization .modal .box.n1 .cont02 .inr,
body#organization .modal .box.n7 .cont02 .inr,
body#organization .modal .box.n13 .cont02 .inr,
body#organization .modal .box.n14 .cont02 .inr,
body#organization .modal .box.n15 .cont02 .inr {
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  padding-top: 0vw;
  padding-bottom: 0vw;
  padding-right: 0vw;
  padding-left: 0vw;
  width: 93.75vw;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .inr,
  body#organization .modal .box.n7 .cont02 .inr,
  body#organization .modal .box.n13 .cont02 .inr,
  body#organization .modal .box.n14 .cont02 .inr,
  body#organization .modal .box.n15 .cont02 .inr {
    padding-top: 21.33332px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .inr,
  body#organization .modal .box.n7 .cont02 .inr,
  body#organization .modal .box.n13 .cont02 .inr,
  body#organization .modal .box.n14 .cont02 .inr,
  body#organization .modal .box.n15 .cont02 .inr {
    padding-top: 2.0833333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .inr,
  body#organization .modal .box.n7 .cont02 .inr,
  body#organization .modal .box.n13 .cont02 .inr,
  body#organization .modal .box.n14 .cont02 .inr,
  body#organization .modal .box.n15 .cont02 .inr {
    padding-bottom: 37.33331px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .inr,
  body#organization .modal .box.n7 .cont02 .inr,
  body#organization .modal .box.n13 .cont02 .inr,
  body#organization .modal .box.n14 .cont02 .inr,
  body#organization .modal .box.n15 .cont02 .inr {
    padding-bottom: 3.6458333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .inr,
  body#organization .modal .box.n7 .cont02 .inr,
  body#organization .modal .box.n13 .cont02 .inr,
  body#organization .modal .box.n14 .cont02 .inr,
  body#organization .modal .box.n15 .cont02 .inr {
    padding-right: 21.33332px;
    padding-left: 21.33332px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .inr,
  body#organization .modal .box.n7 .cont02 .inr,
  body#organization .modal .box.n13 .cont02 .inr,
  body#organization .modal .box.n14 .cont02 .inr,
  body#organization .modal .box.n15 .cont02 .inr {
    padding-right: 2.0833333333vw;
    padding-left: 2.0833333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .inr,
  body#organization .modal .box.n7 .cont02 .inr,
  body#organization .modal .box.n13 .cont02 .inr,
  body#organization .modal .box.n14 .cont02 .inr,
  body#organization .modal .box.n15 .cont02 .inr {
    width: 473.066371px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .inr,
  body#organization .modal .box.n7 .cont02 .inr,
  body#organization .modal .box.n13 .cont02 .inr,
  body#organization .modal .box.n14 .cont02 .inr,
  body#organization .modal .box.n15 .cont02 .inr {
    width: 46.1979166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .inr,
  body#organization .modal .box.n7 .cont02 .inr,
  body#organization .modal .box.n13 .cont02 .inr,
  body#organization .modal .box.n14 .cont02 .inr,
  body#organization .modal .box.n15 .cont02 .inr {
    margin-right: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .inr,
  body#organization .modal .box.n7 .cont02 .inr,
  body#organization .modal .box.n13 .cont02 .inr,
  body#organization .modal .box.n14 .cont02 .inr,
  body#organization .modal .box.n15 .cont02 .inr {
    margin-right: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .inr,
  body#organization .modal .box.n7 .cont02 .inr,
  body#organization .modal .box.n13 .cont02 .inr,
  body#organization .modal .box.n14 .cont02 .inr,
  body#organization .modal .box.n15 .cont02 .inr {
    margin-left: -157.333235px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .inr,
  body#organization .modal .box.n7 .cont02 .inr,
  body#organization .modal .box.n13 .cont02 .inr,
  body#organization .modal .box.n14 .cont02 .inr,
  body#organization .modal .box.n15 .cont02 .inr {
    margin-left: -15.3645833333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .inr,
  body#organization .modal .box.n7 .cont02 .inr,
  body#organization .modal .box.n13 .cont02 .inr,
  body#organization .modal .box.n14 .cont02 .inr,
  body#organization .modal .box.n15 .cont02 .inr {
    justify-content: space-between;
    flex-direction: row;
  }
}
body#organization .modal .box.n1 .cont02 .img,
body#organization .modal .box.n7 .cont02 .img,
body#organization .modal .box.n13 .cont02 .img,
body#organization .modal .box.n14 .cont02 .img,
body#organization .modal .box.n15 .cont02 .img {
  width: 93.75vw;
  position: relative;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .img,
  body#organization .modal .box.n7 .cont02 .img,
  body#organization .modal .box.n13 .cont02 .img,
  body#organization .modal .box.n14 .cont02 .img,
  body#organization .modal .box.n15 .cont02 .img {
    width: 158.399901px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .img,
  body#organization .modal .box.n7 .cont02 .img,
  body#organization .modal .box.n13 .cont02 .img,
  body#organization .modal .box.n14 .cont02 .img,
  body#organization .modal .box.n15 .cont02 .img {
    width: 15.46875vw;
  }
}
body#organization .modal .box.n1 .cont02 .img figure:nth-child(1),
body#organization .modal .box.n7 .cont02 .img figure:nth-child(1),
body#organization .modal .box.n13 .cont02 .img figure:nth-child(1),
body#organization .modal .box.n14 .cont02 .img figure:nth-child(1),
body#organization .modal .box.n15 .cont02 .img figure:nth-child(1) {
  width: 81.25vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .img figure:nth-child(1),
  body#organization .modal .box.n7 .cont02 .img figure:nth-child(1),
  body#organization .modal .box.n13 .cont02 .img figure:nth-child(1),
  body#organization .modal .box.n14 .cont02 .img figure:nth-child(1),
  body#organization .modal .box.n15 .cont02 .img figure:nth-child(1) {
    width: 277.33316px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .img figure:nth-child(1),
  body#organization .modal .box.n7 .cont02 .img figure:nth-child(1),
  body#organization .modal .box.n13 .cont02 .img figure:nth-child(1),
  body#organization .modal .box.n14 .cont02 .img figure:nth-child(1),
  body#organization .modal .box.n15 .cont02 .img figure:nth-child(1) {
    width: 27.0833333333vw;
  }
}
body#organization .modal .box.n1 .cont02 .img figure:nth-child(2),
body#organization .modal .box.n7 .cont02 .img figure:nth-child(2),
body#organization .modal .box.n13 .cont02 .img figure:nth-child(2),
body#organization .modal .box.n14 .cont02 .img figure:nth-child(2),
body#organization .modal .box.n15 .cont02 .img figure:nth-child(2) {
  width: 40.625vw;
  bottom: -14.0625vw;
  right: 0vw;
  position: absolute;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n7 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n13 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n14 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n15 .cont02 .img figure:nth-child(2) {
    width: 138.66658px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n7 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n13 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n14 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n15 .cont02 .img figure:nth-child(2) {
    width: 13.5416666667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n7 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n13 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n14 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n15 .cont02 .img figure:nth-child(2) {
    bottom: auto;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n7 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n13 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n14 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n15 .cont02 .img figure:nth-child(2) {
    bottom: auto;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n7 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n13 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n14 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n15 .cont02 .img figure:nth-child(2) {
    right: auto;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n7 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n13 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n14 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n15 .cont02 .img figure:nth-child(2) {
    right: auto;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n7 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n13 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n14 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n15 .cont02 .img figure:nth-child(2) {
    position: relative;
    margin-top: 3.125vw;
    width: 100% !important;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n7 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n13 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n14 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n15 .cont02 .img figure:nth-child(2) {
    margin-top: 10.66666px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n7 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n13 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n14 .cont02 .img figure:nth-child(2),
  body#organization .modal .box.n15 .cont02 .img figure:nth-child(2) {
    margin-top: 1.0416666667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .img figure,
  body#organization .modal .box.n7 .cont02 .img figure,
  body#organization .modal .box.n13 .cont02 .img figure,
  body#organization .modal .box.n14 .cont02 .img figure,
  body#organization .modal .box.n15 .cont02 .img figure {
    width: 100% !important;
  }
}
body#organization .modal .box.n1 .cont02 .txt,
body#organization .modal .box.n7 .cont02 .txt,
body#organization .modal .box.n13 .cont02 .txt,
body#organization .modal .box.n14 .cont02 .txt,
body#organization .modal .box.n15 .cont02 .txt {
  box-sizing: border-box;
  background: #f4f4f4;
  font-weight: 100;
  color: #3b3a3a;
  margin-top: 3.125vw;
  margin-right: auto;
  margin-left: auto;
  padding-top: 3.90625vw;
  padding-bottom: 3.90625vw;
  padding-right: 3.125vw;
  padding-left: 3.125vw;
  font-size: 2.5vw;
  width: 100%;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt,
  body#organization .modal .box.n7 .cont02 .txt,
  body#organization .modal .box.n13 .cont02 .txt,
  body#organization .modal .box.n14 .cont02 .txt,
  body#organization .modal .box.n15 .cont02 .txt {
    margin-top: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt,
  body#organization .modal .box.n7 .cont02 .txt,
  body#organization .modal .box.n13 .cont02 .txt,
  body#organization .modal .box.n14 .cont02 .txt,
  body#organization .modal .box.n15 .cont02 .txt {
    margin-top: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt,
  body#organization .modal .box.n7 .cont02 .txt,
  body#organization .modal .box.n13 .cont02 .txt,
  body#organization .modal .box.n14 .cont02 .txt,
  body#organization .modal .box.n15 .cont02 .txt {
    margin-right: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt,
  body#organization .modal .box.n7 .cont02 .txt,
  body#organization .modal .box.n13 .cont02 .txt,
  body#organization .modal .box.n14 .cont02 .txt,
  body#organization .modal .box.n15 .cont02 .txt {
    margin-right: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt,
  body#organization .modal .box.n7 .cont02 .txt,
  body#organization .modal .box.n13 .cont02 .txt,
  body#organization .modal .box.n14 .cont02 .txt,
  body#organization .modal .box.n15 .cont02 .txt {
    margin-left: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt,
  body#organization .modal .box.n7 .cont02 .txt,
  body#organization .modal .box.n13 .cont02 .txt,
  body#organization .modal .box.n14 .cont02 .txt,
  body#organization .modal .box.n15 .cont02 .txt {
    margin-left: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt,
  body#organization .modal .box.n7 .cont02 .txt,
  body#organization .modal .box.n13 .cont02 .txt,
  body#organization .modal .box.n14 .cont02 .txt,
  body#organization .modal .box.n15 .cont02 .txt {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt,
  body#organization .modal .box.n7 .cont02 .txt,
  body#organization .modal .box.n13 .cont02 .txt,
  body#organization .modal .box.n14 .cont02 .txt,
  body#organization .modal .box.n15 .cont02 .txt {
    padding-top: 0vw;
    padding-bottom: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt,
  body#organization .modal .box.n7 .cont02 .txt,
  body#organization .modal .box.n13 .cont02 .txt,
  body#organization .modal .box.n14 .cont02 .txt,
  body#organization .modal .box.n15 .cont02 .txt {
    padding-right: 0px;
    padding-left: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt,
  body#organization .modal .box.n7 .cont02 .txt,
  body#organization .modal .box.n13 .cont02 .txt,
  body#organization .modal .box.n14 .cont02 .txt,
  body#organization .modal .box.n15 .cont02 .txt {
    padding-right: 0vw;
    padding-left: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt,
  body#organization .modal .box.n7 .cont02 .txt,
  body#organization .modal .box.n13 .cont02 .txt,
  body#organization .modal .box.n14 .cont02 .txt,
  body#organization .modal .box.n15 .cont02 .txt {
    font-size: 8.533328px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt,
  body#organization .modal .box.n7 .cont02 .txt,
  body#organization .modal .box.n13 .cont02 .txt,
  body#organization .modal .box.n14 .cont02 .txt,
  body#organization .modal .box.n15 .cont02 .txt {
    font-size: 0.8333333333vw;
  }
}
body#organization .modal .box.n1 .cont02 .txt p + p,
body#organization .modal .box.n7 .cont02 .txt p + p,
body#organization .modal .box.n13 .cont02 .txt p + p,
body#organization .modal .box.n14 .cont02 .txt p + p,
body#organization .modal .box.n15 .cont02 .txt p + p {
  padding-top: 6.25vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt p + p,
  body#organization .modal .box.n7 .cont02 .txt p + p,
  body#organization .modal .box.n13 .cont02 .txt p + p,
  body#organization .modal .box.n14 .cont02 .txt p + p,
  body#organization .modal .box.n15 .cont02 .txt p + p {
    padding-top: 23.999985px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt p + p,
  body#organization .modal .box.n7 .cont02 .txt p + p,
  body#organization .modal .box.n13 .cont02 .txt p + p,
  body#organization .modal .box.n14 .cont02 .txt p + p,
  body#organization .modal .box.n15 .cont02 .txt p + p {
    padding-top: 2.34375vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt,
  body#organization .modal .box.n7 .cont02 .txt,
  body#organization .modal .box.n13 .cont02 .txt,
  body#organization .modal .box.n14 .cont02 .txt,
  body#organization .modal .box.n15 .cont02 .txt {
    background: none;
  }
}
body#organization .modal .box.n1 .cont02 .txt > *,
body#organization .modal .box.n7 .cont02 .txt > *,
body#organization .modal .box.n13 .cont02 .txt > *,
body#organization .modal .box.n14 .cont02 .txt > *,
body#organization .modal .box.n15 .cont02 .txt > * {
  line-height: 180%;
}
body#organization .modal .box.n1 .cont02 .txt strong,
body#organization .modal .box.n7 .cont02 .txt strong,
body#organization .modal .box.n13 .cont02 .txt strong,
body#organization .modal .box.n14 .cont02 .txt strong,
body#organization .modal .box.n15 .cont02 .txt strong {
  display: block;
  color: #e60012;
  font-weight: 800;
  margin-bottom: 3.125vw;
  font-size: 3.125vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt strong,
  body#organization .modal .box.n7 .cont02 .txt strong,
  body#organization .modal .box.n13 .cont02 .txt strong,
  body#organization .modal .box.n14 .cont02 .txt strong,
  body#organization .modal .box.n15 .cont02 .txt strong {
    margin-bottom: 5.33333px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt strong,
  body#organization .modal .box.n7 .cont02 .txt strong,
  body#organization .modal .box.n13 .cont02 .txt strong,
  body#organization .modal .box.n14 .cont02 .txt strong,
  body#organization .modal .box.n15 .cont02 .txt strong {
    margin-bottom: 0.5208333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt strong,
  body#organization .modal .box.n7 .cont02 .txt strong,
  body#organization .modal .box.n13 .cont02 .txt strong,
  body#organization .modal .box.n14 .cont02 .txt strong,
  body#organization .modal .box.n15 .cont02 .txt strong {
    font-size: 10.66666px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt strong,
  body#organization .modal .box.n7 .cont02 .txt strong,
  body#organization .modal .box.n13 .cont02 .txt strong,
  body#organization .modal .box.n14 .cont02 .txt strong,
  body#organization .modal .box.n15 .cont02 .txt strong {
    font-size: 1.0416666667vw;
  }
}
body#organization .modal .box.n1 .cont02 .txt small,
body#organization .modal .box.n7 .cont02 .txt small,
body#organization .modal .box.n13 .cont02 .txt small,
body#organization .modal .box.n14 .cont02 .txt small,
body#organization .modal .box.n15 .cont02 .txt small {
  display: block;
  color: #3b3a3a;
  font-size: 2.8125vw;
  margin-bottom: 2.34375vw;
  font-weight: 600;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt small,
  body#organization .modal .box.n7 .cont02 .txt small,
  body#organization .modal .box.n13 .cont02 .txt small,
  body#organization .modal .box.n14 .cont02 .txt small,
  body#organization .modal .box.n15 .cont02 .txt small {
    font-size: 9.599994px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt small,
  body#organization .modal .box.n7 .cont02 .txt small,
  body#organization .modal .box.n13 .cont02 .txt small,
  body#organization .modal .box.n14 .cont02 .txt small,
  body#organization .modal .box.n15 .cont02 .txt small {
    font-size: 0.9375vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt small,
  body#organization .modal .box.n7 .cont02 .txt small,
  body#organization .modal .box.n13 .cont02 .txt small,
  body#organization .modal .box.n14 .cont02 .txt small,
  body#organization .modal .box.n15 .cont02 .txt small {
    margin-bottom: 21.33332px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt small,
  body#organization .modal .box.n7 .cont02 .txt small,
  body#organization .modal .box.n13 .cont02 .txt small,
  body#organization .modal .box.n14 .cont02 .txt small,
  body#organization .modal .box.n15 .cont02 .txt small {
    margin-bottom: 2.0833333333vw;
  }
}
body#organization .modal .box.n1 .cont02 .img_02,
body#organization .modal .box.n7 .cont02 .img_02,
body#organization .modal .box.n13 .cont02 .img_02,
body#organization .modal .box.n14 .cont02 .img_02,
body#organization .modal .box.n15 .cont02 .img_02 {
  width: 93.75vw;
  position: relative;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .img_02,
  body#organization .modal .box.n7 .cont02 .img_02,
  body#organization .modal .box.n13 .cont02 .img_02,
  body#organization .modal .box.n14 .cont02 .img_02,
  body#organization .modal .box.n15 .cont02 .img_02 {
    width: 158.933234px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .img_02,
  body#organization .modal .box.n7 .cont02 .img_02,
  body#organization .modal .box.n13 .cont02 .img_02,
  body#organization .modal .box.n14 .cont02 .img_02,
  body#organization .modal .box.n15 .cont02 .img_02 {
    width: 15.5208333333vw;
  }
}
body#organization .modal .box.n1 .cont02 .img_02 figure:nth-child(1),
body#organization .modal .box.n7 .cont02 .img_02 figure:nth-child(1),
body#organization .modal .box.n13 .cont02 .img_02 figure:nth-child(1),
body#organization .modal .box.n14 .cont02 .img_02 figure:nth-child(1),
body#organization .modal .box.n15 .cont02 .img_02 figure:nth-child(1) {
  width: 81.25vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .img_02 figure:nth-child(1),
  body#organization .modal .box.n7 .cont02 .img_02 figure:nth-child(1),
  body#organization .modal .box.n13 .cont02 .img_02 figure:nth-child(1),
  body#organization .modal .box.n14 .cont02 .img_02 figure:nth-child(1),
  body#organization .modal .box.n15 .cont02 .img_02 figure:nth-child(1) {
    width: 277.33316px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .img_02 figure:nth-child(1),
  body#organization .modal .box.n7 .cont02 .img_02 figure:nth-child(1),
  body#organization .modal .box.n13 .cont02 .img_02 figure:nth-child(1),
  body#organization .modal .box.n14 .cont02 .img_02 figure:nth-child(1),
  body#organization .modal .box.n15 .cont02 .img_02 figure:nth-child(1) {
    width: 27.0833333333vw;
  }
}
body#organization .modal .box.n1 .cont02 .img_02 figure:nth-child(2),
body#organization .modal .box.n7 .cont02 .img_02 figure:nth-child(2),
body#organization .modal .box.n13 .cont02 .img_02 figure:nth-child(2),
body#organization .modal .box.n14 .cont02 .img_02 figure:nth-child(2),
body#organization .modal .box.n15 .cont02 .img_02 figure:nth-child(2) {
  width: 40.625vw;
  bottom: -14.0625vw;
  right: 0vw;
  position: absolute;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n7 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n13 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n14 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n15 .cont02 .img_02 figure:nth-child(2) {
    width: 138.66658px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n7 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n13 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n14 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n15 .cont02 .img_02 figure:nth-child(2) {
    width: 13.5416666667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n7 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n13 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n14 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n15 .cont02 .img_02 figure:nth-child(2) {
    bottom: auto;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n7 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n13 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n14 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n15 .cont02 .img_02 figure:nth-child(2) {
    bottom: auto;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n7 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n13 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n14 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n15 .cont02 .img_02 figure:nth-child(2) {
    right: auto;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n7 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n13 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n14 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n15 .cont02 .img_02 figure:nth-child(2) {
    right: auto;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n7 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n13 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n14 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n15 .cont02 .img_02 figure:nth-child(2) {
    position: relative;
    margin-top: 3.125vw;
    width: 100% !important;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n7 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n13 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n14 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n15 .cont02 .img_02 figure:nth-child(2) {
    margin-top: 10.66666px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n7 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n13 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n14 .cont02 .img_02 figure:nth-child(2),
  body#organization .modal .box.n15 .cont02 .img_02 figure:nth-child(2) {
    margin-top: 1.0416666667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .img_02 figure,
  body#organization .modal .box.n7 .cont02 .img_02 figure,
  body#organization .modal .box.n13 .cont02 .img_02 figure,
  body#organization .modal .box.n14 .cont02 .img_02 figure,
  body#organization .modal .box.n15 .cont02 .img_02 figure {
    width: 100% !important;
  }
}
body#organization .modal .box.n1 .cont02 .txt_area,
body#organization .modal .box.n7 .cont02 .txt_area,
body#organization .modal .box.n13 .cont02 .txt_area,
body#organization .modal .box.n14 .cont02 .txt_area,
body#organization .modal .box.n15 .cont02 .txt_area {
  box-sizing: border-box;
  background: #f4f4f4;
  font-weight: 100;
  color: #3b3a3a;
  margin-top: 3.125vw;
  margin-right: auto;
  margin-left: auto;
  padding-top: 7.8125vw;
  padding-bottom: 6.25vw;
  padding-right: 3.125vw;
  padding-left: 3.125vw;
  font-size: 2.5vw;
  width: 93.75vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area,
  body#organization .modal .box.n7 .cont02 .txt_area,
  body#organization .modal .box.n13 .cont02 .txt_area,
  body#organization .modal .box.n14 .cont02 .txt_area,
  body#organization .modal .box.n15 .cont02 .txt_area {
    margin-top: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area,
  body#organization .modal .box.n7 .cont02 .txt_area,
  body#organization .modal .box.n13 .cont02 .txt_area,
  body#organization .modal .box.n14 .cont02 .txt_area,
  body#organization .modal .box.n15 .cont02 .txt_area {
    margin-top: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area,
  body#organization .modal .box.n7 .cont02 .txt_area,
  body#organization .modal .box.n13 .cont02 .txt_area,
  body#organization .modal .box.n14 .cont02 .txt_area,
  body#organization .modal .box.n15 .cont02 .txt_area {
    margin-right: 0px;
    margin-left: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area,
  body#organization .modal .box.n7 .cont02 .txt_area,
  body#organization .modal .box.n13 .cont02 .txt_area,
  body#organization .modal .box.n14 .cont02 .txt_area,
  body#organization .modal .box.n15 .cont02 .txt_area {
    margin-right: 0vw;
    margin-left: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area,
  body#organization .modal .box.n7 .cont02 .txt_area,
  body#organization .modal .box.n13 .cont02 .txt_area,
  body#organization .modal .box.n14 .cont02 .txt_area,
  body#organization .modal .box.n15 .cont02 .txt_area {
    padding-top: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area,
  body#organization .modal .box.n7 .cont02 .txt_area,
  body#organization .modal .box.n13 .cont02 .txt_area,
  body#organization .modal .box.n14 .cont02 .txt_area,
  body#organization .modal .box.n15 .cont02 .txt_area {
    padding-top: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area,
  body#organization .modal .box.n7 .cont02 .txt_area,
  body#organization .modal .box.n13 .cont02 .txt_area,
  body#organization .modal .box.n14 .cont02 .txt_area,
  body#organization .modal .box.n15 .cont02 .txt_area {
    padding-bottom: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area,
  body#organization .modal .box.n7 .cont02 .txt_area,
  body#organization .modal .box.n13 .cont02 .txt_area,
  body#organization .modal .box.n14 .cont02 .txt_area,
  body#organization .modal .box.n15 .cont02 .txt_area {
    padding-bottom: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area,
  body#organization .modal .box.n7 .cont02 .txt_area,
  body#organization .modal .box.n13 .cont02 .txt_area,
  body#organization .modal .box.n14 .cont02 .txt_area,
  body#organization .modal .box.n15 .cont02 .txt_area {
    padding-right: 0px;
    padding-left: 0px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area,
  body#organization .modal .box.n7 .cont02 .txt_area,
  body#organization .modal .box.n13 .cont02 .txt_area,
  body#organization .modal .box.n14 .cont02 .txt_area,
  body#organization .modal .box.n15 .cont02 .txt_area {
    padding-right: 0vw;
    padding-left: 0vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area,
  body#organization .modal .box.n7 .cont02 .txt_area,
  body#organization .modal .box.n13 .cont02 .txt_area,
  body#organization .modal .box.n14 .cont02 .txt_area,
  body#organization .modal .box.n15 .cont02 .txt_area {
    font-size: 8.533328px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area,
  body#organization .modal .box.n7 .cont02 .txt_area,
  body#organization .modal .box.n13 .cont02 .txt_area,
  body#organization .modal .box.n14 .cont02 .txt_area,
  body#organization .modal .box.n15 .cont02 .txt_area {
    font-size: 0.8333333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area,
  body#organization .modal .box.n7 .cont02 .txt_area,
  body#organization .modal .box.n13 .cont02 .txt_area,
  body#organization .modal .box.n14 .cont02 .txt_area,
  body#organization .modal .box.n15 .cont02 .txt_area {
    width: 247.999845px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area,
  body#organization .modal .box.n7 .cont02 .txt_area,
  body#organization .modal .box.n13 .cont02 .txt_area,
  body#organization .modal .box.n14 .cont02 .txt_area,
  body#organization .modal .box.n15 .cont02 .txt_area {
    width: 24.21875vw;
  }
}
body#organization .modal .box.n1 .cont02 .txt_area p + p,
body#organization .modal .box.n7 .cont02 .txt_area p + p,
body#organization .modal .box.n13 .cont02 .txt_area p + p,
body#organization .modal .box.n14 .cont02 .txt_area p + p,
body#organization .modal .box.n15 .cont02 .txt_area p + p {
  padding-top: 3.125vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area p + p,
  body#organization .modal .box.n7 .cont02 .txt_area p + p,
  body#organization .modal .box.n13 .cont02 .txt_area p + p,
  body#organization .modal .box.n14 .cont02 .txt_area p + p,
  body#organization .modal .box.n15 .cont02 .txt_area p + p {
    padding-top: 10.66666px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area p + p,
  body#organization .modal .box.n7 .cont02 .txt_area p + p,
  body#organization .modal .box.n13 .cont02 .txt_area p + p,
  body#organization .modal .box.n14 .cont02 .txt_area p + p,
  body#organization .modal .box.n15 .cont02 .txt_area p + p {
    padding-top: 1.0416666667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area,
  body#organization .modal .box.n7 .cont02 .txt_area,
  body#organization .modal .box.n13 .cont02 .txt_area,
  body#organization .modal .box.n14 .cont02 .txt_area,
  body#organization .modal .box.n15 .cont02 .txt_area {
    background: none;
  }
}
body#organization .modal .box.n1 .cont02 .txt_area > *,
body#organization .modal .box.n7 .cont02 .txt_area > *,
body#organization .modal .box.n13 .cont02 .txt_area > *,
body#organization .modal .box.n14 .cont02 .txt_area > *,
body#organization .modal .box.n15 .cont02 .txt_area > * {
  line-height: 180%;
}
body#organization .modal .box.n1 .cont02 .txt_area strong,
body#organization .modal .box.n7 .cont02 .txt_area strong,
body#organization .modal .box.n13 .cont02 .txt_area strong,
body#organization .modal .box.n14 .cont02 .txt_area strong,
body#organization .modal .box.n15 .cont02 .txt_area strong {
  display: block;
  color: #e60012;
  font-weight: 800;
  margin-bottom: 3.125vw;
  font-size: 3.125vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area strong,
  body#organization .modal .box.n7 .cont02 .txt_area strong,
  body#organization .modal .box.n13 .cont02 .txt_area strong,
  body#organization .modal .box.n14 .cont02 .txt_area strong,
  body#organization .modal .box.n15 .cont02 .txt_area strong {
    margin-bottom: 10.66666px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area strong,
  body#organization .modal .box.n7 .cont02 .txt_area strong,
  body#organization .modal .box.n13 .cont02 .txt_area strong,
  body#organization .modal .box.n14 .cont02 .txt_area strong,
  body#organization .modal .box.n15 .cont02 .txt_area strong {
    margin-bottom: 1.0416666667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area strong,
  body#organization .modal .box.n7 .cont02 .txt_area strong,
  body#organization .modal .box.n13 .cont02 .txt_area strong,
  body#organization .modal .box.n14 .cont02 .txt_area strong,
  body#organization .modal .box.n15 .cont02 .txt_area strong {
    font-size: 10.66666px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area strong,
  body#organization .modal .box.n7 .cont02 .txt_area strong,
  body#organization .modal .box.n13 .cont02 .txt_area strong,
  body#organization .modal .box.n14 .cont02 .txt_area strong,
  body#organization .modal .box.n15 .cont02 .txt_area strong {
    font-size: 1.0416666667vw;
  }
}
body#organization .modal .box.n1 .cont02 .txt_area small,
body#organization .modal .box.n7 .cont02 .txt_area small,
body#organization .modal .box.n13 .cont02 .txt_area small,
body#organization .modal .box.n14 .cont02 .txt_area small,
body#organization .modal .box.n15 .cont02 .txt_area small {
  display: block;
  color: #3b3a3a;
  font-size: 2.8125vw;
  margin-bottom: 2.34375vw;
  font-weight: 600;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area small,
  body#organization .modal .box.n7 .cont02 .txt_area small,
  body#organization .modal .box.n13 .cont02 .txt_area small,
  body#organization .modal .box.n14 .cont02 .txt_area small,
  body#organization .modal .box.n15 .cont02 .txt_area small {
    font-size: 9.599994px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area small,
  body#organization .modal .box.n7 .cont02 .txt_area small,
  body#organization .modal .box.n13 .cont02 .txt_area small,
  body#organization .modal .box.n14 .cont02 .txt_area small,
  body#organization .modal .box.n15 .cont02 .txt_area small {
    font-size: 0.9375vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area small,
  body#organization .modal .box.n7 .cont02 .txt_area small,
  body#organization .modal .box.n13 .cont02 .txt_area small,
  body#organization .modal .box.n14 .cont02 .txt_area small,
  body#organization .modal .box.n15 .cont02 .txt_area small {
    margin-bottom: 21.33332px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area small,
  body#organization .modal .box.n7 .cont02 .txt_area small,
  body#organization .modal .box.n13 .cont02 .txt_area small,
  body#organization .modal .box.n14 .cont02 .txt_area small,
  body#organization .modal .box.n15 .cont02 .txt_area small {
    margin-bottom: 2.0833333333vw;
  }
}
body#organization .modal .box.n1 .cont02 .txt_area small + div,
body#organization .modal .box.n7 .cont02 .txt_area small + div,
body#organization .modal .box.n13 .cont02 .txt_area small + div,
body#organization .modal .box.n14 .cont02 .txt_area small + div,
body#organization .modal .box.n15 .cont02 .txt_area small + div {
  width: 100%;
  background: #e60012 !important;
  margin-top: -0.78125vw;
  margin-bottom: 2.34375vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div,
  body#organization .modal .box.n7 .cont02 .txt_area small + div,
  body#organization .modal .box.n13 .cont02 .txt_area small + div,
  body#organization .modal .box.n14 .cont02 .txt_area small + div,
  body#organization .modal .box.n15 .cont02 .txt_area small + div {
    margin-top: -10.66666px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div,
  body#organization .modal .box.n7 .cont02 .txt_area small + div,
  body#organization .modal .box.n13 .cont02 .txt_area small + div,
  body#organization .modal .box.n14 .cont02 .txt_area small + div,
  body#organization .modal .box.n15 .cont02 .txt_area small + div {
    margin-top: -1.0416666667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div,
  body#organization .modal .box.n7 .cont02 .txt_area small + div,
  body#organization .modal .box.n13 .cont02 .txt_area small + div,
  body#organization .modal .box.n14 .cont02 .txt_area small + div,
  body#organization .modal .box.n15 .cont02 .txt_area small + div {
    margin-bottom: 21.33332px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div,
  body#organization .modal .box.n7 .cont02 .txt_area small + div,
  body#organization .modal .box.n13 .cont02 .txt_area small + div,
  body#organization .modal .box.n14 .cont02 .txt_area small + div,
  body#organization .modal .box.n15 .cont02 .txt_area small + div {
    margin-bottom: 2.0833333333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div,
  body#organization .modal .box.n7 .cont02 .txt_area small + div,
  body#organization .modal .box.n13 .cont02 .txt_area small + div,
  body#organization .modal .box.n14 .cont02 .txt_area small + div,
  body#organization .modal .box.n15 .cont02 .txt_area small + div {
    cursor: pointer;
    width: 185.15625vw;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div,
  body#organization .modal .box.n7 .cont02 .txt_area small + div,
  body#organization .modal .box.n13 .cont02 .txt_area small + div,
  body#organization .modal .box.n14 .cont02 .txt_area small + div,
  body#organization .modal .box.n15 .cont02 .txt_area small + div {
    width: 631.999605px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div,
  body#organization .modal .box.n7 .cont02 .txt_area small + div,
  body#organization .modal .box.n13 .cont02 .txt_area small + div,
  body#organization .modal .box.n14 .cont02 .txt_area small + div,
  body#organization .modal .box.n15 .cont02 .txt_area small + div {
    width: 61.71875vw;
  }
}
body#organization .modal .box.n1 .cont02 .txt_area small + div.message-movie,
body#organization .modal .box.n7 .cont02 .txt_area small + div.message-movie,
body#organization .modal .box.n13 .cont02 .txt_area small + div.message-movie,
body#organization .modal .box.n14 .cont02 .txt_area small + div.message-movie,
body#organization .modal .box.n15 .cont02 .txt_area small + div.message-movie {
  display: block;
  position: relative;
  text-align: right;
  height: 6.5625vw;
  padding-top: 2.34375vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont02 .txt_area small + div.message-movie {
    height: 22.399986px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont02 .txt_area small + div.message-movie {
    height: 2.1875vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont02 .txt_area small + div.message-movie {
    padding-top: 7.999995px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont02 .txt_area small + div.message-movie {
    padding-top: 0.78125vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont02 .txt_area small + div.message-movie {
    height: 6.5625vw;
    padding-top: 2.34375vw;
    padding-right: 1.25vw;
    color: #fff;
    width: 100%;
    line-height: normal;
    text-align: right;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont02 .txt_area small + div.message-movie {
    height: 22.399986px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont02 .txt_area small + div.message-movie {
    height: 2.1875vw;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont02 .txt_area small + div.message-movie {
    padding-top: 7.999995px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont02 .txt_area small + div.message-movie {
    padding-top: 0.78125vw;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont02 .txt_area small + div.message-movie {
    padding-right: 4.266664px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n7 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n13 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n14 .cont02 .txt_area small + div.message-movie,
  body#organization .modal .box.n15 .cont02 .txt_area small + div.message-movie {
    padding-right: 0.4166666667vw;
  }
}
body#organization .modal .box.n1 .cont02 .txt_area small + div.message-movie > a,
body#organization .modal .box.n7 .cont02 .txt_area small + div.message-movie > a,
body#organization .modal .box.n13 .cont02 .txt_area small + div.message-movie > a,
body#organization .modal .box.n14 .cont02 .txt_area small + div.message-movie > a,
body#organization .modal .box.n15 .cont02 .txt_area small + div.message-movie > a {
  color: #fff;
  display: block;
  width: 98%;
  height: 100%;
  font-size: 3.75vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div.message-movie > a,
  body#organization .modal .box.n7 .cont02 .txt_area small + div.message-movie > a,
  body#organization .modal .box.n13 .cont02 .txt_area small + div.message-movie > a,
  body#organization .modal .box.n14 .cont02 .txt_area small + div.message-movie > a,
  body#organization .modal .box.n15 .cont02 .txt_area small + div.message-movie > a {
    font-size: 12.799992px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div.message-movie > a,
  body#organization .modal .box.n7 .cont02 .txt_area small + div.message-movie > a,
  body#organization .modal .box.n13 .cont02 .txt_area small + div.message-movie > a,
  body#organization .modal .box.n14 .cont02 .txt_area small + div.message-movie > a,
  body#organization .modal .box.n15 .cont02 .txt_area small + div.message-movie > a {
    font-size: 1.25vw;
  }
}
body#organization .modal .box.n1 .cont02 .txt_area small + div span,
body#organization .modal .box.n7 .cont02 .txt_area small + div span,
body#organization .modal .box.n13 .cont02 .txt_area small + div span,
body#organization .modal .box.n14 .cont02 .txt_area small + div span,
body#organization .modal .box.n15 .cont02 .txt_area small + div span {
  cursor: pointer;
}
body#organization .modal .box.n1 .cont02 .txt_area small + div i,
body#organization .modal .box.n7 .cont02 .txt_area small + div i,
body#organization .modal .box.n13 .cont02 .txt_area small + div i,
body#organization .modal .box.n14 .cont02 .txt_area small + div i,
body#organization .modal .box.n15 .cont02 .txt_area small + div i {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 2.34375vw;
  color: #fff;
  margin-top: -1.875vw;
  font-size: 4.375vw;
  transition: all 0.2s;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div i,
  body#organization .modal .box.n7 .cont02 .txt_area small + div i,
  body#organization .modal .box.n13 .cont02 .txt_area small + div i,
  body#organization .modal .box.n14 .cont02 .txt_area small + div i,
  body#organization .modal .box.n15 .cont02 .txt_area small + div i {
    left: 7.999995px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div i,
  body#organization .modal .box.n7 .cont02 .txt_area small + div i,
  body#organization .modal .box.n13 .cont02 .txt_area small + div i,
  body#organization .modal .box.n14 .cont02 .txt_area small + div i,
  body#organization .modal .box.n15 .cont02 .txt_area small + div i {
    left: 0.78125vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div i,
  body#organization .modal .box.n7 .cont02 .txt_area small + div i,
  body#organization .modal .box.n13 .cont02 .txt_area small + div i,
  body#organization .modal .box.n14 .cont02 .txt_area small + div i,
  body#organization .modal .box.n15 .cont02 .txt_area small + div i {
    cursor: pointer;
    left: 0.78125vw;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div i,
  body#organization .modal .box.n7 .cont02 .txt_area small + div i,
  body#organization .modal .box.n13 .cont02 .txt_area small + div i,
  body#organization .modal .box.n14 .cont02 .txt_area small + div i,
  body#organization .modal .box.n15 .cont02 .txt_area small + div i {
    left: 2.666665px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div i,
  body#organization .modal .box.n7 .cont02 .txt_area small + div i,
  body#organization .modal .box.n13 .cont02 .txt_area small + div i,
  body#organization .modal .box.n14 .cont02 .txt_area small + div i,
  body#organization .modal .box.n15 .cont02 .txt_area small + div i {
    left: 0.2604166667vw;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div i,
  body#organization .modal .box.n7 .cont02 .txt_area small + div i,
  body#organization .modal .box.n13 .cont02 .txt_area small + div i,
  body#organization .modal .box.n14 .cont02 .txt_area small + div i,
  body#organization .modal .box.n15 .cont02 .txt_area small + div i {
    left: 2.34375vw;
  }
}
@media (min-width: 1024px) and (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div i,
  body#organization .modal .box.n7 .cont02 .txt_area small + div i,
  body#organization .modal .box.n13 .cont02 .txt_area small + div i,
  body#organization .modal .box.n14 .cont02 .txt_area small + div i,
  body#organization .modal .box.n15 .cont02 .txt_area small + div i {
    left: 7.999995px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div i,
  body#organization .modal .box.n7 .cont02 .txt_area small + div i,
  body#organization .modal .box.n13 .cont02 .txt_area small + div i,
  body#organization .modal .box.n14 .cont02 .txt_area small + div i,
  body#organization .modal .box.n15 .cont02 .txt_area small + div i {
    left: 0.78125vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div i,
  body#organization .modal .box.n7 .cont02 .txt_area small + div i,
  body#organization .modal .box.n13 .cont02 .txt_area small + div i,
  body#organization .modal .box.n14 .cont02 .txt_area small + div i,
  body#organization .modal .box.n15 .cont02 .txt_area small + div i {
    margin-top: -6.399996px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div i,
  body#organization .modal .box.n7 .cont02 .txt_area small + div i,
  body#organization .modal .box.n13 .cont02 .txt_area small + div i,
  body#organization .modal .box.n14 .cont02 .txt_area small + div i,
  body#organization .modal .box.n15 .cont02 .txt_area small + div i {
    margin-top: -0.625vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div i,
  body#organization .modal .box.n7 .cont02 .txt_area small + div i,
  body#organization .modal .box.n13 .cont02 .txt_area small + div i,
  body#organization .modal .box.n14 .cont02 .txt_area small + div i,
  body#organization .modal .box.n15 .cont02 .txt_area small + div i {
    font-size: 14.933324px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 .txt_area small + div i,
  body#organization .modal .box.n7 .cont02 .txt_area small + div i,
  body#organization .modal .box.n13 .cont02 .txt_area small + div i,
  body#organization .modal .box.n14 .cont02 .txt_area small + div i,
  body#organization .modal .box.n15 .cont02 .txt_area small + div i {
    font-size: 1.4583333333vw;
  }
}
body#organization .modal .box.n1 .cont02 .txt_area small + div:hover i,
body#organization .modal .box.n7 .cont02 .txt_area small + div:hover i,
body#organization .modal .box.n13 .cont02 .txt_area small + div:hover i,
body#organization .modal .box.n14 .cont02 .txt_area small + div:hover i,
body#organization .modal .box.n15 .cont02 .txt_area small + div:hover i {
  transform: rotateZ(90deg);
}
body#organization .modal .box.n1 .cont02 > div,
body#organization .modal .box.n7 .cont02 > div,
body#organization .modal .box.n13 .cont02 > div,
body#organization .modal .box.n14 .cont02 > div,
body#organization .modal .box.n15 .cont02 > div {
  order: 2;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 > div,
  body#organization .modal .box.n7 .cont02 > div,
  body#organization .modal .box.n13 .cont02 > div,
  body#organization .modal .box.n14 .cont02 > div,
  body#organization .modal .box.n15 .cont02 > div {
    order: 2;
  }
}
body#organization .modal .box.n1 .cont02 > figure,
body#organization .modal .box.n7 .cont02 > figure,
body#organization .modal .box.n13 .cont02 > figure,
body#organization .modal .box.n14 .cont02 > figure,
body#organization .modal .box.n15 .cont02 > figure {
  order: 1;
  width: 100vw;
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 > figure,
  body#organization .modal .box.n7 .cont02 > figure,
  body#organization .modal .box.n13 .cont02 > figure,
  body#organization .modal .box.n14 .cont02 > figure,
  body#organization .modal .box.n15 .cont02 > figure {
    width: 601.066291px;
  }
}
@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont02 > figure,
  body#organization .modal .box.n7 .cont02 > figure,
  body#organization .modal .box.n13 .cont02 > figure,
  body#organization .modal .box.n14 .cont02 > figure,
  body#organization .modal .box.n15 .cont02 > figure {
    width: 58.6979166667vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont02 > figure,
  body#organization .modal .box.n7 .cont02 > figure,
  body#organization .modal .box.n13 .cont02 > figure,
  body#organization .modal .box.n14 .cont02 > figure,
  body#organization .modal .box.n15 .cont02 > figure {
    order: 1;
  }
}

@media (min-width: 1024px) {
  body#organization .modal .box.n1 .cont01 {
    width: 87.5520833333vw;
  }
}
@media (min-width: 640px) {
  body#organization .modal .box.n1 .cont01 {
    width: 87.5520833333vw;
  }
  body#organization .modal .box.n1 .cont01 {
    justify-content: center;
  }
  body#organization .modal .box.n1 .cont01 > figure {
    width: 58.6979166667vw;
    margin-left: -17.34375vw;
  }
  body#organization .modal .box.n1 .cont01 .inr {
    width: 46.1979166667vw;
  }
  .modal_wrap {
    padding: 7vw 0 0;
  }
}
@media (max-width: 640px) {
  body#organization .modal .box.n1 .cont01 + .cont01 {
    margin-top: 60px;
  }
}
/*--------------------------------------------------*/
/* data_list */
/*--------------------------------------------------*/
#data_list02 {
  width: 87.5vw;
  margin-top: 9.375vw;
  margin-bottom: 10.9375vw;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 640px) {
  #data_list02 {
    width: 635.732936px;
  }
}
@media (min-width: 1024px) {
  #data_list02 {
    width: 62.0833333333vw;
  }
}
@media (min-width: 640px) {
  #data_list02 {
    margin-top: 47.99997px;
  }
}
@media (min-width: 1024px) {
  #data_list02 {
    margin-top: 4.6875vw;
  }
}
@media (min-width: 640px) {
  #data_list02 {
    margin-bottom: 37.33331px;
  }
}
@media (min-width: 1024px) {
  #data_list02 {
    margin-bottom: 3.6458333333vw;
  }
}
@media (min-width: 640px) {
  #data_list02 {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 1024px) {
  #data_list02 {
    margin-right: auto;
    margin-left: auto;
  }
}
#data_list02 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
#data_list02 ul + ul {
  margin-top: 11.71875vw;
}
@media (min-width: 640px) {
  #data_list02 ul + ul {
    margin-top: -58.66663px;
  }
}
@media (min-width: 1024px) {
  #data_list02 ul + ul {
    margin-top: -5.7291666667vw;
  }
}
#data_list02 ul li {
  width: 86.875vw;
}
@media (min-width: 640px) {
  #data_list02 ul li {
    width: 296.533148px;
  }
}
@media (min-width: 1024px) {
  #data_list02 ul li {
    width: 28.9583333333vw;
  }
}
#data_list02 ul li:nth-child(2) {
  margin-top: 11.71875vw;
}
@media (min-width: 640px) {
  #data_list02 ul li:nth-child(2) {
    margin-top: 98.666605px;
  }
}
@media (min-width: 1024px) {
  #data_list02 ul li:nth-child(2) {
    margin-top: 9.6354166667vw;
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0.2s;
}

.animated.eary {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.InVfadeInUp {
  opacity: 0;
}
.InVfadeInUp img {
  border: 4px solid #e70012;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

/*--------------------------------------------------*/
/* visual */
/*--------------------------------------------------*/
#visual {
  background: url("https://www.arcsystemworks.jp/portal/wordpress/wp-content/themes/arcsystemworks/whatisarc2025/assets/img/top/top_bg_sp.jpg") no-repeat bottom center/cover;
  padding-top: 75.78125vw;
  padding-bottom: 10.9375vw;
}
@media (min-width: 640px) {
  #visual {
    background: url("https://www.arcsystemworks.jp/portal/wordpress/wp-content/themes/arcsystemworks/whatisarc2025/assets/img/top/top_bg.png") no-repeat bottom center/cover;
  }
}
@media (min-width: 640px) {
  #visual {
    padding-top: 255.99984px;
  }
}
@media (min-width: 1024px) {
  #visual {
    padding-top: 25vw;
  }
}
@media (min-width: 640px) {
  #visual {
    padding-bottom: 55.999965px;
  }
}
@media (min-width: 1024px) {
  #visual {
    padding-bottom: 5.46875vw;
  }
}
#visual .inr {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding-left: 0vw;
  width: 100vw;
}
@media (min-width: 640px) {
  #visual .inr {
    padding-left: 53.3333px;
  }
}
@media (min-width: 1024px) {
  #visual .inr {
    padding-left: 5.2083333333vw;
  }
}
@media (min-width: 640px) {
  #visual .inr {
    width: 546.132992px;
  }
}
@media (min-width: 1024px) {
  #visual .inr {
    width: 53.3333333333vw;
  }
}
@media (min-width: 640px) {
  #visual .inr {
    justify-content: space-between;
    flex-direction: row;
  }
}
#visual .inr ul:nth-child(1) {
  width: 59.375vw;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 640px) {
  #visual .inr ul:nth-child(1) {
    width: 202.66654px;
  }
}
@media (min-width: 1024px) {
  #visual .inr ul:nth-child(1) {
    width: 19.7916666667vw;
  }
}
@media (min-width: 640px) {
  #visual .inr ul:nth-child(1) {
    margin-right: 0px;
    margin-left: 0px;
  }
}
@media (min-width: 1024px) {
  #visual .inr ul:nth-child(1) {
    margin-right: 0vw;
    margin-left: 0vw;
  }
}
#visual .inr ul:nth-child(1) span {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 2.5vw;
  white-space: nowrap;
}
@media (min-width: 640px) {
  #visual .inr ul:nth-child(1) span {
    font-size: 8.533328px;
  }
}
@media (min-width: 1024px) {
  #visual .inr ul:nth-child(1) span {
    font-size: 0.8333333333vw;
  }
}
#visual .inr ul:nth-child(1) span:nth-child(2) {
  display: inline-block;
  margin-top: 1.5625vw;
}
@media (min-width: 640px) {
  #visual .inr ul:nth-child(1) span:nth-child(2) {
    margin-top: 5.33333px;
  }
}
@media (min-width: 1024px) {
  #visual .inr ul:nth-child(1) span:nth-child(2) {
    margin-top: 0.5208333333vw;
  }
}
#visual .inr ul:nth-child(1) li:nth-child(1) span:nth-child(1) {
  width: 28.59375vw;
}
@media (min-width: 640px) {
  #visual .inr ul:nth-child(1) li:nth-child(1) span:nth-child(1) {
    width: 97.599939px;
  }
}
@media (min-width: 1024px) {
  #visual .inr ul:nth-child(1) li:nth-child(1) span:nth-child(1) {
    width: 9.53125vw;
  }
}
#visual .inr ul:nth-child(1) li:nth-child(2) span:nth-child(1) {
  margin-top: 3.125vw;
  width: 45.9375vw;
}
@media (min-width: 640px) {
  #visual .inr ul:nth-child(1) li:nth-child(2) span:nth-child(1) {
    margin-top: 10.66666px;
  }
}
@media (min-width: 1024px) {
  #visual .inr ul:nth-child(1) li:nth-child(2) span:nth-child(1) {
    margin-top: 1.0416666667vw;
  }
}
@media (min-width: 640px) {
  #visual .inr ul:nth-child(1) li:nth-child(2) span:nth-child(1) {
    width: 156.799902px;
  }
}
@media (min-width: 1024px) {
  #visual .inr ul:nth-child(1) li:nth-child(2) span:nth-child(1) {
    width: 15.3125vw;
  }
}
#visual .inr ul:nth-child(1) li:nth-child(3) span:nth-child(1) {
  margin-top: 3.125vw;
  width: 43.90625vw;
}
@media (min-width: 640px) {
  #visual .inr ul:nth-child(1) li:nth-child(3) span:nth-child(1) {
    margin-top: 10.66666px;
  }
}
@media (min-width: 1024px) {
  #visual .inr ul:nth-child(1) li:nth-child(3) span:nth-child(1) {
    margin-top: 1.0416666667vw;
  }
}
@media (min-width: 640px) {
  #visual .inr ul:nth-child(1) li:nth-child(3) span:nth-child(1) {
    width: 149.866573px;
  }
}
@media (min-width: 1024px) {
  #visual .inr ul:nth-child(1) li:nth-child(3) span:nth-child(1) {
    width: 14.6354166667vw;
  }
}
#visual .inr .txt {
  width: 76.5625vw;
  margin-right: auto;
  margin-left: auto;
  margin-top: 9.375vw;
}
@media (min-width: 640px) {
  #visual .inr .txt {
    width: 231.466522px;
  }
}
@media (min-width: 1024px) {
  #visual .inr .txt {
    width: 22.6041666667vw;
  }
}
@media (min-width: 640px) {
  #visual .inr .txt {
    margin-right: 0px;
    margin-left: 0px;
  }
}
@media (min-width: 1024px) {
  #visual .inr .txt {
    margin-right: 0vw;
    margin-left: 0vw;
  }
}
@media (min-width: 640px) {
  #visual .inr .txt {
    margin-top: 0px;
  }
}
@media (min-width: 1024px) {
  #visual .inr .txt {
    margin-top: 0vw;
  }
}
#visual .inr .txt p {
  color: #fff;
  font-weight: 400;
  font-size: 2.5vw;
  line-height: 200%;
}
@media (min-width: 640px) {
  #visual .inr .txt p {
    font-size: 8.533328px;
  }
}
@media (min-width: 1024px) {
  #visual .inr .txt p {
    font-size: 0.8333333333vw;
  }
}
@media (min-width: 640px) {
  #visual .inr .txt p {
    white-space: nowrap;
  }
}
#visual .inr .txt p:not(:last-child) {
  margin-bottom: 3.125vw;
}
@media (min-width: 640px) {
  #visual .inr .txt p:not(:last-child) {
    margin-bottom: 10.66666px;
  }
}
@media (min-width: 1024px) {
  #visual .inr .txt p:not(:last-child) {
    margin-bottom: 1.0416666667vw;
  }
}
#visual .inr .txt p:nth-child(1) {
  margin-bottom: 4.6875vw;
}
@media (min-width: 640px) {
  #visual .inr .txt p:nth-child(1) {
    margin-bottom: 15.99999px;
  }
}
@media (min-width: 1024px) {
  #visual .inr .txt p:nth-child(1) {
    margin-bottom: 1.5625vw;
  }
}/*# sourceMappingURL=modal.css.map */