@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.columnPr {
  color: #707070;
  font-family: "Noto Sans JP", sans-serif;
}

.columnPr * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.columnPr img {
  width: 100%;
}

.columnPr h1 {
  color: #9bc400;
  font-size: 1.5em;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.columnPr h2 {
  color: #9bc400;
  font-size: 1.5em;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .columnPr h1 {
    font-size: 2em;
    margin-bottom: 50px;
  }
  .columnPr h2 {
    font-size: 2em;
    margin-bottom: 50px;
  }
}

.columnPr h2 small {
  display: block;
  margin-top: 15px;
  font-size: 0.5em;
}

.columnPr .content {
  width: 98%;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .columnPr .content {
    width: 1100px;
  }
}

.columnPr .section, .columnPr .section-gray {
  padding: 60px 0;
}

@media screen and (min-width: 768px) {
  .columnPr .section, .columnPr .section-gray {
    padding: 90px 0;
  }
}

.columnPr .section-gray {
  background-color: #fcfcf5;
}

.columnPr .pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .columnPr .pc {
    display: block;
  }
}

.columnPr .sp {
  display: block;
}

@media screen and (min-width: 768px) {
  .columnPr .sp {
    display: none;
  }
}

@keyframes mainViewAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.mainView {
  position: relative;
  background-image: url("/images/pr/column/sp/top.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  animation: mainViewAnimation 2s ease-out 1s both;
}
@media screen and (min-width: 768px) {
  .mainView {
    background-image: url("/images/pr/column/top.jpg");
  }
}
@media screen and (min-width: 768px) {
  .mainView img {
    object-fit: contain;
    max-height: 100%;
  }
}

.mainViewInner {
  position: absolute;
  width: 90vw;
  height: 90vh;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,.3);
  animation: mainViewAnimation 1s linear 3s both;
}
@media screen and (min-width: 768px) {
  .mainViewInner {
    display: block;
  }
}

@keyframes borderAnimationBeside {
  0% {
    background-position: right;
  }
  100% {
    background-position: left;
  }
}

@keyframes borderAnimationVertical {
  0% {
    background-position: bottom;
  }
  100% {
    background-position: top;
  }
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.mainViewBox {
  display: none;
}
@media screen and (min-width: 768px) {
  .mainViewBox {
    position: absolute; 
    height: 80%;
    width: 50%;
    top: calc(100vh - 50%);
    left: 65%;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: space-between;
   }
}
.mainViewBox-sp {
  height: 100%;
  width: 100%;
  border: 3px solid #fff;
  border-radius: 5px;
}
.mainViewBox-sp img {
  height: 100%;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .mainViewBox-sp {
    display: none;
  }
}
.mainViewText-center {
  width: calc(100vw / 6);
  animation: fadeInAnimation 1s ease-out 4s both;
}
.mainViewIllustration {
  margin-top: 20%;
  width: calc(100vw / 10.5);
  animation: fadeInAnimation 1s ease-out 4s both;
}
.mainViewText-right {
  width: calc(100vw / 16.5);
  animation: fadeInAnimation 1s ease-out 4s both;
}

.borderHidden-top,.borderHidden-right,.borderHidden-bottom,.borderHidden-left {
  display: none;
}
@media screen and (min-width: 768px) {
  .borderHidden-top,.borderHidden-right,.borderHidden-bottom,.borderHidden-left {
    display: block;
  }
}
.borderHidden-top {
  position: absolute;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(45deg, #fff 0%, #fff 50%, transparent 50%, transparent 100%);
  background-size: 200%;
  width: 100%;
  height: 3px;
  animation: borderAnimationBeside 1s ease-in-out 3s both;
  transform: rotate(0deg);
  top: -1px;
}

.borderHidden-right {
  position: absolute;
  border-radius: 0 5px 5px 0;
  background: linear-gradient(180deg, #fff 0%, #fff 50%, transparent 50%, transparent 100%);
  background-size: 100% 200%;
  width: 3px;
  height: 100%;
  animation: borderAnimationVertical 1s ease-in-out 4s both;
  transform: rotate(0deg);
  right: -1px;
}

.borderHidden-bottom {
  position: absolute;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(45deg, #fff 0%, #fff 50%, transparent 50%, transparent 100%);
  background-size: 200%;
  width: 100%;
  height: 3px;
  animation: borderAnimationBeside 1s ease-in-out 3s both;
  transform: rotate(180deg);
  bottom: -1px;
}

.borderHidden-left {
  position: absolute;
  border-radius: 0 5px 5px 0;
  background: linear-gradient(180deg, #fff 0%, #fff 50%, transparent 50%, transparent 100%);
  background-size: 100% 200%;
  width: 3px;
  height: 100%;
  animation: borderAnimationVertical 1s ease-in-out 4s both;
  transform: rotate(180deg);
  left: -1px;
}

.prepareSection {
  position: relative;
}

.prepare {
  position: relative;
}

@media screen and (min-width: 768px) {
  .prepareSection::after {
    position: absolute;
    bottom: -100px;
    left: 50%;
    margin-right: -50%;
    transform: translateX(-50%);
    content: '';
    width: 0;
    height: 0;
    border-top: 50px solid #fff;
    border-right: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 50px solid transparent;
  }
}


.prepareImage, .prepareImage-left, .prepareImage-right {
  width: 80%;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .prepareImage, .prepareImage-left, .prepareImage-right {
    position: absolute;
    width: 30%;
    margin: unset;
  }
}

@media screen and (min-width: 768px) {
  .prepareImage-left {
    top: -30px;
    left: 0;
  }
}

@media screen and (min-width: 768px) {
  .prepareImage-right {
    bottom: 0;
    right: 0;
  }
}

.prepareBody {
  width: 100%;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .prepareBody {
    width: 50%;
  }
}

.prepareText, .prepareText-right, .prepareText-left {
  line-height: 2.5;
  padding: 20px;
  font-size: 1.1em;
}

@media screen and (min-width: 768px) {
  .prepareText-right {
    margin-left: 90px;
    margin-right: -150px;
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 768px) {
  .prepareText-left {
    margin-left: -60px;
    margin-right: 60px;
  }
}

.column {
  position: relative;
  border-radius: 20px;
  border: 2px solid #9bc400;
  padding: 150px 20px 20px 20px;
}

.column h2 {
  position: absolute;
  top: -25px;
  left: 50%;
  margin-right: -50%;
  background-color: #fcfcf5;
  transform: translateX(-50%);
  padding: 0 20px;
}

.columnHeader {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.columnHeader p {
  order: 2;
  font-size: 1.1em;
  line-height: 2.5;
}

@media screen and (min-width: 768px) {
  .columnHeader p {
    order: 1;
    width: 65%;
    padding: 0 60px;
  }
}

.columnHeader img {
  order: 1;
  width: 80%;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .columnHeader img {
    order: 2;
    width: 30%;
    margin: unset;
    margin-top: -100px;
    margin-right: 40px;
  }
}

.columnBody {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.columnItem, .columnItem-footer {
  background-color: #fff;
  border-radius: 20px;
  padding: 60px 30px;
  margin-top: 20px;
}

.columnBody .columnItem, .columnBody .columnItem-footer {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .columnBody .columnItem, .columnBody .columnItem-footer {
    width: 49%;
  }
}

.columnItem h3, .columnItem-footer h3 {
  color: #9bc400;
  text-align: center;
  font-size: 1.2em;
}

.columnItem h3::after, .columnItem-footer h3::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  margin: 10px auto;
  background-color: #9bc400;
}

.columnItemBody {
  margin-top: 50px;
}

.columnItem-footer .columnItemBody {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.columnItemImage {
  position: relative;
  width: 80%;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .columnItemImage {
    height: 250px;
    width: 60%;
  }
}

@media screen and (min-width: 768px) {
  .columnItemImage img {
    position: absolute;
    bottom: 0;
  }
}

.columnItem-footer .columnItemBody .columnItemImage {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .columnItem-footer .columnItemBody .columnItemImage {
    width: 50%;
  }
}

.columnItem-footer .columnItemBody .columnItemImage img {
  position: static;
}

.columnItemText {
  line-height: 2;
  margin-top: 50px;
}

@media screen and (min-width: 768px) {
  .columnItem-footer .columnItemBody .columnItemText {
    width: 45%;
    margin-top: 0;
  }
}

.method {
  padding: 20px;
}

.methodItem {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .methodItem {
    margin-top: 50px;
  }
}

.methodItem > * {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .methodItem > * {
    width: 45%;
  }
}

.methodItemImage, .methodItemImage-top {
  position: relative;
  margin: 30px auto;
}

@media screen and (min-width: 768px) {
  .methodItemImage, .methodItemImage-top {
    margin: unset;
  }
}

@media screen and (min-width: 768px) {
  .methodItemImage-top img {
    position: absolute;
    top: -150px;
  }
}

.methodItemText {
  line-height: 2.5;
}

.banner {
  width: 98%;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .banner {
    width: 100%;
    margin: 50px auto;
    max-width: 900px;
  }
}

.bannerHeader {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.bannerHeader::before {
  content: "";
  position: absolute;
  display: block;
  background-image: url(/images/pr/column/deco/triangle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  transform: rotate(270deg);
  bottom: 13px;
  left: 10px;
}
@media screen and (min-width: 768px) {
  .bannerHeader::before {
    position: unset;
    margin: 0 50px;
    left: unset;
    right: unset;
  }
}

@media screen and (min-width: 768px) {
  .bannerHeader::before {
    content: "";
    position: absolute;
    display: block;
    background-image: url(/images/pr/column/deco/triangle.svg);
    background-size: contain;
    height: 20px;
    width: 20px;
    transform: rotate(270deg);
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .bannerHeader::before {
    position: unset;
    margin: 0 50px;
    left: unset;
    right: unset;
  }
}

.bannerHeader::after {
  content: "";
  position: absolute;
  display: block;
  background-image: url(/images/pr/column/deco/triangle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  transform: rotate(0deg);
  bottom: 13px;
  right: 10px;
}

@media screen and (min-width: 768px) {
  .bannerHeader::after {
    position: unset;
    margin: 0 50px;
    left: unset;
    right: unset;
  }
}

@media screen and (min-width: 768px) {
  .bannerHeader::after {
    content: "";
    position: absolute;
    display: block;
    background-image: url(/images/pr/column/deco/triangle.svg);
    background-size: contain;
    height: 20px;
    width: 20px;
    transform: rotate(0deg);
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .bannerHeader::after {
    position: unset;
    margin: 0 50px;
    left: unset;
    right: unset;
  }
}

.bannerHeader span {
  display: block;
}

@media screen and (min-width: 768px) {
  .bannerHeader span {
    display: inline;
  }
}

.bannerImage {
  position: relative;
  transition: opacity 0.3s;
}

.bannerImage:hover {
  opacity: 0.8;
}

.bannerImage:nth-of-type(n + 2) {
  margin-top: 20px;
}

.bannerHeaderText, .bannerHeaderText-red {
  font-size: 1.15em;
  padding: 0 10px;
}

@media screen and (min-width: 768px) {
  .bannerHeaderText, .bannerHeaderText-red {
    font-size: 1.3em;
  }
}
.bannerHeaderText small, .bannerHeaderText-red small {
  font-size: 0.5em;
}

.bannerHeaderText-red {
  color: #db2d00;
  font-size: 2em;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .bannerHeaderText-red {
    font-size: 2.5em;
  }
}

.bannerButton {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  display: flex;
  justify-content: space-around;
}

@media screen and (min-width: 768px) {
  .bannerButton {
    display: none;
  }
}

.bannerButton a {
  width: 48%;
}

.serviceList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .serviceList {
    margin-bottom: 100px;
  }
}

.serviceItem {
  width: 100%;
  border-bottom: 1px solid #9bc400;
  padding: 30px 0;
}

@media screen and (min-width: 768px) {
  .serviceItem {
    width: calc(100% / 3 - 50px);
    margin: unset;
    border-bottom: none;
  }
}

.servicePointIcon {
  width: 20%;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .servicePointIcon {
    width: 30%;
  }
}

.serviceTitle {
  text-align: center;
  color: #9bc400;
  margin: 30px 0;
}

.serviceImage {
  width: 70%;
  margin: 20px auto;
}

@media screen and (min-width: 768px) {
  .serviceImage {
    width: 100%;
    margin: 30px 0;
  }
}

.serviceText {
  width: 80%;
  margin: 20px auto;
  line-height: 2em;
}

@media screen and (min-width: 768px) {
  .serviceText {
    width: 100%;
    height: 120px;
    margin: 50px 0;
  }
}

.serviceLink, .serviceLink-plan, .serviceLink-tel, .serviceLink-service {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
  text-align: center;
  margin: auto;
  border-radius: 30px;
  border: 2px solid #9bc400;
  padding: 10px 0;
  text-decoration: none;
  font-size: 1.15em;
  font-weight: bold;
  color: #9bc400;
  background-color: #fff;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  .serviceLink, .serviceLink-plan, .serviceLink-tel, .serviceLink-service {
    width: 90%;
  }
}

.serviceLink:hover, .serviceLink-plan:hover, .serviceLink-tel:hover, .serviceLink-service:hover {
  color: #fff;
  background-color: #9bc400;
  opacity: 1;
  transform: translateY(2px);
}

.serviceLink::before, .serviceLink-plan::before, .serviceLink-tel::before, .serviceLink-service::before {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.2em;
  height: 2.2em;
  margin-right: 0.7em;
}

.serviceLink-plan::before {
  background-image: url(/images/pr/column/service_icon_1.svg);
}

.serviceLink-plan:hover::before {
  background-image: url(/images/pr/column/service_icon_1_white.svg);
}

.serviceLink-tel::before {
  background-image: url(/images/pr/column/service_icon_2.svg);
}

.serviceLink-tel:hover::before {
  background-image: url(/images/pr/column/service_icon_2_white.svg);
}

.serviceLink-service::before {
  background-image: url(/images/pr/column/service_icon_3.svg);
}

.serviceLink-service:hover::before {
  background-image: url(/images/pr/column/service_icon_3_white.svg);
}

.backToColumn {
  margin: 30px auto;
  max-width: 900px;
}

@media screen and (min-width: 768px) {
  .backToColumn {
    margin: 50px auto;
  }
}

.backToColumn a {
  display: block;
  width: 80%;
  padding: 15px 0;
  margin: auto;
  color: #00a2c4;
  border: 2px solid #00a2c4;
  border-radius: 30px;
  text-align: center;
  font-size: 1.15em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
}

.backToColumn a:hover {
  color: #fff;
  background-color: #00a2c4;
  opacity: 1;
  transform: translateY(2px);
}

@media screen and (max-width: 768px) {
  .sp-text{
    display: block;
    width:100%;
    text-align:center;
  }
  .renew-ver::before{left:30px}
  .renew-ver::after{right:30px}
}