@charset "UTF-8";

body {
  font-family: "Noto Sans JP",
    system-ui;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1em;
  line-height: 1.8;
  color: #333;
}

.sp {
  display: block;
}

.pc {
  display: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wrap {
  max-width: 1000px;
  width: 100%;
  margin: auto;
}

.wrap .section-inner {
  padding: 0 3%;
}

.wrap h2,
.wrap h3 {
  font-feature-settings: "palt";
  letter-spacing: .05em;
}

.wrap .h2-blue {
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #3496e9;
  width: 75%;
  padding: 10px 0;
  margin: 0 auto 20px auto;
  border-radius: 100vh;
  -webkit-border-radius: 100vh;
  -moz-border-radius: 100vh;
  -ms-border-radius: 100vh;
  -o-border-radius: 100vh;
  position: relative;
}

.wrap .h2-blue:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -12px;
  border: 12px solid transparent;
  border-top: 15px solid #3496e9;
}

.wrap .h2-white {
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  font-weight: bold;
  text-align: center;
  color: #3496e9;
  background: #fff;
  width: 75%;
  padding: 10px 0;
  margin: 0 auto 20px auto;
  border-radius: 100vh;
  -webkit-border-radius: 100vh;
  -moz-border-radius: 100vh;
  -ms-border-radius: 100vh;
  -o-border-radius: 100vh;
  position: relative;
}

.wrap .h2-white:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -12px;
  border: 12px solid transparent;
  border-top: 15px solid #fff;
}

.wrap ul.noticeList li {
  font-size: .8rem;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
}


@media screen and (min-width: 600px) {

  .sp {
    display: none;
  }

  .pc {
    display: block;
  }

  .wrap .h2-blue {
    padding: 15px 0;
    margin: 0 auto 30px auto;
  }

  .wrap .h2-blue:before {
    margin-left: -20px;
    border: 20px solid transparent;
    border-top: 25px solid #3496e9;
  }

  .wrap .h2-white {
    margin: 0 auto 30px auto;
  }

  .wrap .h2-white:before {
    margin-left: -20px;
    border: 20px solid transparent;
    border-top: 25px solid #fff;
  }
}


/* #sec1 */

.wrap #sec1 {
  background-color: #fff;
  /* background-image: radial-gradient(#ccc 9%, transparent 9%);
  background-size: 9px 9px; */
  position: relative;
  margin-bottom: 30px;
}


/* #sec2 */

.wrap #sec2 {
  position: absolute;
  bottom: 3vw;
  left: 3%;
  width: 94%;
}

.wrap #sec2 ul {
  display: grid;
  gap: 2vw 2%;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-template-columns: repeat(6, 1fr);
}

.wrap #sec2 ul li:nth-child(-n+4) {
  grid-column: span 3;
}

.wrap #sec2 ul li:nth-child(n+5) {
  grid-column: span 2;
}

.wrap #sec2 ul li a {
  display: block;
  color: #000;
  background: #fff;
  text-align: center;
  text-decoration: none;
  font-size: clamp(.7rem, 1.3vw, 1.3rem);
  font-weight: bold;
  padding: 3px 10px;
  border: 2px solid #000;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 1);
  position: relative;
}

.wrap #sec2 ul li a.indent {
  text-indent: -1.5em;
}

.wrap #sec2 ul li a:before {
  content: '';
  background: #000;
  position: absolute;
  top: 9px;
  right: 5px;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.wrap #sec2 ul li a:after {
  content: '';
  position: absolute;
  top: 12px;
  right: 9px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
}

@media screen and (min-width: 600px) {

  .wrap #sec2 {
    bottom: 10vw;
  }

  .wrap #sec2 ul {
    gap: 1.5vw 2%;
  }

  .wrap #sec2 ul li a {
    padding: 5px 10px;
  }

  .wrap #sec2 ul li a.indent {
    text-indent: 0;
  }

  .wrap #sec2 ul li a:before {
    top: 6px;
    right: 10px;
    width: 20px;
    height: 20px;
  }

  .wrap #sec2 ul li a:after {
    top: 12px;
    right: 17px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

@media screen and (min-width: 1000px) {

  .wrap #sec2 {
    bottom: 20px;
  }

  .wrap #sec2 ul {
    gap: 1vw 2%;
  }

  .wrap #sec2 ul li a:before {
    top: calc(50% - 10px);
    right: 15px;
    width: 20px;
    height: 20px;
  }

  .wrap #sec2 ul li a:after {
    top: calc(50% - 4px);
    right: 22px;
  }
}


/* #sec3 */

.wrap #sec3 {
  background-color: #fff;
  background-image: radial-gradient(#ccc 9%, transparent 9%);
  background-size: 9px 9px;
  padding-bottom: 100px;
}

.wrap #sec3 .bg-sec3 {
  margin-bottom: 10px;
}

.wrap #sec3 .h3-sec3a {
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 20px;
}

.wrap #sec3 .h3-sec3a span {
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  color: #3496e9;
}

.wrap #sec3 .img-sec3 {
  text-align: center;
  margin: 0 auto 10px auto;
  width: fit-content;
}

.wrap #sec3 .comment1,
.wrap #sec3 .comment3 {
  max-width: 830px;
  margin: 0 auto 20px auto;
}

.wrap #sec3 .comment1 li,
.wrap #sec3 .comment3 li {
  padding-left: 1.75em;
  text-indent: -1.75em;
}


.wrap #sec3 .h3-sec3b {
  color: #fff;
  background: #3496e9;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  margin: 0 auto 20px auto;
  position: relative;
}

.wrap #sec3 .price {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: .02em;
  line-height: 1.4;
  text-align: center;
  margin: 0 auto 10px auto;
  -webkit-font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
}

.wrap #sec3 .price sup {
  font-size: .8rem;
}

.wrap #sec3 .price .price-blue {
  color: #3496e9;
}

.wrap #sec3 .price .price-number {
  font-size: 3rem;
  line-height: 1;
}

.wrap #sec3 .price .price-number .price-comma {
  font-size: 2rem;
  vertical-align: .1em;
}

.wrap #sec3 .price .add {
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
}


@media screen and (min-width: 600px) {

  .wrap #sec3 .bg-sec3 {
    margin-bottom: 0;
  }

  .wrap #sec3 .price-wrap {
    display: flex;
    justify-content: space-between;
    max-width: 832px;
    margin: 0 auto 20px auto;
  }

  .wrap #sec3 .price-wrap .h3-sec3b {
    width: 15%;
    height: 80px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .wrap #sec3 .price-wrap .h3-sec3b:after {
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    border-color: #fff;
    border-top-width: 40px;
    border-bottom-width: 40px;
    border-left-width: 40px;
    border-right-width: 0px;
    margin-top: -40px;
    border-left-color: #3496e9;
    left: 100%;
    top: 50%;
  }

  .wrap #sec3 .price-wrap .price {
    width: 80%;
    line-height: 1.2;
    margin: -.25em 0 0 0;
  }

  .wrap #sec3 .price sup {
    vertical-align: 1em;
  }

}


/* #sec4 */

/* .wrap #sec4, */
.wrap #sec5,
.wrap #sec6 {
  background: #3496e9;
  padding: 50px 0;
  transform: skew(0deg, -5deg);
  -webkit-transform: skew(0deg, -5deg);
  padding: 50px 0 50px 0;
  margin-top: -40px;
}

/* .wrap #sec4 .section-inner, */
.wrap #sec5 .section-inner,
.wrap #sec6 .section-inner {
  transform: skew(0deg, 5deg);
  -webkit-transform: skew(0deg, 5deg);
  -moz-transform: skew(0deg, 5deg);
  -ms-transform: skew(0deg, 5deg);
  -o-transform: skew(0deg, 5deg);
}

.wrap #sec4 h2 {
  margin-bottom: 30px;
}

.wrap #sec4 ul.service-area-list {
  margin-bottom: 10px;
}

.wrap #sec4 ul.service-area {
  display: flex;
  justify-content: center;
  gap: 0 3%;
  margin-bottom: 10px;
}

.wrap #sec4 ul.service-area li {
  width: 48.5%;
  max-width: 335px;
  background: #fff;
  text-align: center;
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  font-weight: bold;
  padding: 10px 0;
}

.wrap #sec4 ul.service-area li sup {
  font-size: .6rem;
}

.wrap #sec4 ul.noticeList li {
  /* color: #fff;
  text-align: center; */
}

.wrap #sec4 p {
  color: #fff;
  text-align: center;
  font-size: clamp(1.1rem, 1.6vw, 1.6rem);
}


@media screen and (min-width: 600px) {

  .wrap #sec4 {
    padding: 70px 0 50px 0;
  }

  .wrap #sec4,
  .wrap #sec5,
  .wrap #sec6,
  .wrap #sec8 {
    padding: 100px 0;
    /* margin-top: -50px; */
  }

  .wrap #sec4 .service-area-wrap {
    width: 705px;
    margin: auto;
  }
}


/* #sec5 */

.wrap #sec4,
.wrap #sec7,
.wrap #sec9 {
  background-color: #fff;
  background-image: radial-gradient(#ccc 9%, transparent 9%);
  background-size: 9px 9px;
  padding: 70px 0 100px 0;
  margin-top: -20px;
}

.wrap #sec4 {
  padding: 70px 0 0px 0;
}

.wrap #sec4 h2,
.wrap #sec5 h2,
.wrap #sec7 h2,
.wrap #sec9 h2 {
  margin: 0 auto 30px auto;
}

.wrap #sec5 .img-sec4 {
  text-align: center;
  margin-bottom: 10px;
}

.wrap #sec5 .flow-txt {
  display: flex;
  gap: 0 5%;
  max-width: 830px;
  margin: 0 auto;
}

.wrap #sec5 .flow-txt li {
  color: #fff;
  font-size: clamp(.8rem, 1.2vw, 1.2rem);
  width: 30%;
  line-height: 1.4;
}

.wrap #sec9 .img-sec9 {
  text-align: center;
  margin: 0 -1.5% 30px -1.5%;
}


@media screen and (min-width: 600px) {

  .wrap #sec4 {
    padding: 90px 0 0 0;
  }

  .wrap #sec7,
  .wrap #sec9 {
    padding: 90px 0 100px 0;
    margin-top: -40px;
  }

  .wrap #sec5 .flow-txt {
    gap: 0 3%;
  }

  .wrap #sec5 .flow-txt li {
    width: calc(94% / 3);
  }
}


/* #sec6 */

.wrap #sec6 .ba-area {
  max-width: 830px;
  margin: auto;
}

.wrap #sec6 .ba-area ul li {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 2px dotted #fff;
}

.wrap #sec6 .ba-area ul li:last-child {
  border-bottom: none;
}


@media screen and (min-width: 600px) {

  .wrap #sec6 .ba-area ul li {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}


/* #sec7 */

.wrap #sec7 .step-box {
  max-width: 830px;
  background: #fff;
  border: 2px solid #3496e9;
  border-radius: 10px;
  padding: 3%;
  margin: 0 auto 30px auto;
  position: relative;
}

.wrap #sec7 .step-box:after,
.wrap #sec7 .step-box:before {
  position: absolute;
  border: solid transparent;
  content: '';
  width: 0;
  height: 0;
  pointer-events: none;
  top: 100%;
  left: 50%;
}

.wrap #sec7 .step-box:after {
  border-color: rgba(255, 15, 0, 0);
  border-top-width: 20px;
  border-bottom-width: 20px;
  border-left-width: 12px;
  border-right-width: 12px;
  margin-left: -12px;
  border-top-color: #fff;
}

.wrap #sec7 .step-box:before {
  border-color: rgba(52, 150, 233, 0);
  border-top-width: 22px;
  border-bottom-width: 22px;
  border-left-width: 14px;
  border-right-width: 14px;
  margin-left: -14px;
  margin-top: 2px;
  border-top-color: #3496E9;
}

.wrap #sec7 .step-box-last:before,
.wrap #sec7 .step-box-last:after {
  border: none;
}

.wrap #sec7 .step-box h3 {
  color: #3496e9;
  text-align: center;
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  font-weight: bold;
  border-bottom: 2px solid #3496e9;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.wrap #sec7 .step-box p {
  font-size: clamp(.8rem, 1vw, 1rem);
}


@media screen and (min-width: 600px) {

  .wrap #sec7 .step-box {
    display: flex;
    justify-content: space-between;
    padding: 2% 2% 2% 0;
  }

  .wrap #sec7 .step-box:after,
  .wrap #sec7 .step-box:before {
    left: 14%;
  }

  .wrap #sec7 .step-box h3 {
    width: 28%;
    line-height: 1.2;
    align-content: center;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
    border-right: 2px solid #3496e9;
  }

  .wrap #sec7 .step-box p {
    width: 70%;
  }
}


/* #sec8 */

.wrap #sec8 {
  width: 100%;
  margin: 0;
  padding: 140px 0 0;
  position: relative;
  top: -140px;
  overflow: hidden;
  margin-bottom: -140px;
}

.wrap #sec8:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #3496e9;
  transform: skewY(-5deg) translateY(90px);
  /* z-index: -1; */
  -webkit-transform: skewY(-5deg) translateY(90px);
  -moz-transform: skewY(-5deg) translateY(90px);
  -ms-transform: skewY(-5deg) translateY(90px);
  -o-transform: skewY(-5deg) translateY(90px);
}

.wrap #sec8 .qa-area {
  max-width: 830px;
  padding-bottom: 20px;
  margin: auto;
}

.wrap #sec8 .qa-area dl {
  margin-bottom: 30px;
}

.wrap #sec8 .qa-area dl dt {
  color: #3496e9;
  font-size: clamp(.8rem, 1.2vw, 1.2rem);
  font-weight: bold;
  padding: 2% 3% 2% 8.5%;
  margin-bottom: 10px;
  position: relative;
  background: #fff;
  border-radius: 10px 0 0 0;
}

.wrap #sec8 .qa-area dl dt:before {
  content: 'Q';
  /* font-family: din-2014, sans-serif; */
  color: #fff;
  background: #3496e9;
  text-align: center;
  position: absolute;
  top: 9px;
  left: 6px;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  padding-bottom: 2px;
}

.wrap #sec8 .qa-area dl dd {
  color: #fff;
  font-size: clamp(.8rem, 1.2vw, 1.2rem);
  padding-left: 8.5%;
  position: relative;
}

.wrap #sec8 .qa-area dl dd:before {
  content: 'A';
  color: #3496e9;
  background: #fff;
  text-align: center;
  font-weight: bold;
  position: absolute;
  top: 3px;
  left: 6px;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 1px;
}

.wrap #sec8 .qa-area dl dd .comment {
  display: block;
  font-size: clamp(.7rem, .8vw, .8rem);
  padding-left: 1em;
  text-indent: -1em;
}

.wrap .law {
  color: #fff;
  background: #3496e9;
  font-size: clamp(.8rem, 1.2vw, 1.2rem);
  text-align: center;
  padding-bottom: 50px;
}

.wrap .law p {
  border: 2px solid #fff;
  padding: .5em 1em;
  max-width: 830px;
  margin: auto;
}


@media screen and (min-width: 600px) {

  .wrap #sec8 {
    padding: 180px 0 0;
  }

  .wrap #sec8 .qa-area dl dt {
    padding: 1% 1% 1% 5.5%;
  }

  .wrap #sec8 .qa-area dl dt:before {
    top: 11px;
    left: 10px;
    width: 28px;
    height: 28px;
    padding-bottom: 4px;
  }

  .wrap #sec8 .qa-area dl dd {
    padding-left: 5.5%;
  }

  .wrap #sec8 .qa-area dl dd:before {
    top: 2px;
    left: 10px;
    width: 28px;
    height: 28px;
  }
}


/* #sec9 */

.wrap #sec9 .header {
  display: flex;
  justify-content: space-between;
  position: relative;
  /* To be above corner decos */
  z-index: 1;
}

.wrap #sec9 .header-item {
  color: #fff;
  text-align: center;
  font-size: clamp(1rem, 2vw, 2rem);
  font-weight: bold;
  width: 50%;
  line-height: 1.4;
  margin-bottom: 3%;
  position: relative;
}

.wrap #sec9 .header-item:before {
  content: '';
  position: absolute;
  height: 45px;
  background-size: contain;
  background-repeat: no-repeat;
  top: -14px;
}

.wrap #sec9 .header-item .yellow {
  color: #ff0;
}

.wrap #sec9 .header-item .small {
  font-size: clamp(.8rem, 1.4vw, 1.4rem);
}

.wrap #sec9 .header-left:before {
  background-image: url(https://www.osoujihonpo.com/assets/images/campaign/outerwall/icon01.svg);
  left: -19px;
  width: 52px;
}

.wrap #sec9 .header-right:before {
  background-image: url(https://www.osoujihonpo.com/assets/images/campaign/outerwall/icon02.svg);
  right: -14px;
  width: 33px;
}

.wrap #sec9 .comparison-section {
  background: #3496E9;
  background: linear-gradient(90deg, rgba(52, 150, 233, 1) 50%, rgba(52, 150, 233, 1) 49.9%, rgba(95, 182, 139, 1) 50%, rgba(95, 182, 139, 1) 100%);
  width: 100%;
  max-width: 850px;
  position: relative;
  overflow: visible;
  padding: 3%;
  margin: 0 auto 30px auto;
  border-radius: 10px;
  z-index: 1;
}

.wrap #sec9 .comparison-row {
  background: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 3%;
  border-radius: 10px;
}

.wrap #sec9 .comparison-row:last-of-type {
  margin-bottom: 0;
}

.wrap #sec9 .content-box {
  flex: 1;
  font-size: clamp(.8em, 1vw, 1rem);
  text-align: center;
  min-height: 60px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wrap #sec9 .content-box01 {
  font-size: clamp(.7em, 1vw, 1rem);
}

.wrap #sec9 .content-box02 {
  font-size: clamp(1em, 1.2vw, 1.2rem);
  font-weight: bold;
}

.wrap #sec9 .content-box p,
.wrap #sec9 .content-box ul {
  margin: 0;
}

.wrap #sec9 .content-box ul li {
  padding-left: 1em;
  text-indent: -1em;
}

.wrap #sec9 .left-content {
  padding: 3% 0 3% 3%;
}

.wrap #sec9 .right-content {
  padding: 3% 3% 3% 0;
}

.wrap #sec9 .category-label-container {
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.wrap #sec9 .category-label {
  color: #fff;
  background-color: #999;
  font-size: clamp(.8em, 1vw, 1rem);
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.wrap #sec9 .price-panel .price {
  font-size: 1.8rem;
  font-weight: bold;
}

.wrap #sec9 .price-panel .price .unit {
  font-size: clamp(.8rem, 1vw, 1rem);
}

.wrap #sec9 .price-panel .note {
  font-size: clamp(.6rem, .7vw, .7rem);
  font-feature-settings: "palt";
  padding-left: 1em;
  text-indent: -1em;
}


@media screen and (min-width: 600px) {

  .wrap #sec9 .comparison-section {
    padding: 2%;
  }

  .wrap #sec9 .comparison-row {
    margin-bottom: 2.5%;
  }

  .wrap #sec9 .header-item {
    margin-bottom: 2%;
  }

  .wrap #sec9 .header-item:before {
    height: 64px;
    top: -10px;
  }

  .wrap #sec9 .header-left:before {
    left: 0px;
    width: 73px;
  }

  .wrap #sec9 .header-right:before {
    right: 0px;
    width: 47px;
  }

  .wrap #sec9 .category-label {
    width: 80px;
    height: 80px;
    line-height: 1.3;
  }

  .wrap #sec9 .left-content,
  .wrap #sec9 .right-content {
    padding: 0;
  }
}



/* cv-area */

.wrap .cv-area {
  max-width: 830px;
  /* background: #d3d3d3; */
  /* background: #dedede; */
  /* padding: 0 3%; */
  margin: auto;
  z-index: 99;
  position: relative;
}

.wrap .cv-area ul li {
  max-width: 600px;
  margin: auto;
}

/* .wrap .cv-area ul li:first-child {
  margin: 0 auto 20px auto;
} */

.wrap .cv-area ul li a {
  display: block;
  color: #000;
  background: #fabe00;
  text-align: center;
  text-decoration: none;
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: .05em;
  padding: 10px;
  border: 2px solid #000;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 1);
  position: relative;
}

.wrap .cv-area ul li a:before {
  content: '';
  background: #000;
  position: absolute;
  top: 18px;
  right: 10px;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.wrap .cv-area ul li a:after {
  content: '';
  position: absolute;
  top: 24px;
  right: 18px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fabe00;
  border-right: 2px solid #fabe00;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.wrap .cv-area ul li img {
  width: 60%;
  margin: auto;
}

.wrap .cp-area {
  text-align: center;
  margin-top: 20px;
}

@media screen and (min-width: 600px) {

  .wrap .cv-area ul li a:before {
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
  }

  .wrap .cv-area ul li a:after {
    top: 28px;
    right: 30px;
    width: 8px;
    height: 8px;
  }

  .wrap .cv-area ul li img {
    width: 45%;
  }
}


/* movie */

.wrap .movie {
  background-color: #fff;
  background-image: radial-gradient(#ccc 9%, transparent 9%);
  background-size: 9px 9px;
  font-size: 0;
  margin: auto;
  padding: 80px 3% 0 3%;
  margin-top: -20px;
}

.wrap .movie iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}


@media screen and (min-width: 600px) {

  .wrap .movie {
    padding: 120px 7.5% 0 7.5%;
    margin-top: -40px;
  }
}


/* footer */

#footer {
  padding: 10px 0;
  font-size: .75rem;
  width: 100%;
  background: #999;
}

#footer .footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

#footer .footer-inner ul li {
  display: inline;
  padding: 0 10px 0 7px;
  border-right: 1px solid #fff;
}

#footer .footer-inner ul li a {
  color: #fff;
}

#footer .footer-inner ul li:first-child {
  border-left: none;
}

#footer .footer-inner ul li:last-child {
  border-right: none;
}

#footer address {
  font-size: .8rem;
  font-style: normal;
  color: #fff;
}