:root {
  --lp-black:#10180E;
}
/*header*/
@media screen and (min-width:0px) {
  .lp01-header {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 5px 35px;
  }
  .lp01-headline {
    display: -webkit-box;
    width: 100%;
    font-size: 10px;
    letter-spacing: 0.1em;
    line-height: 1.2;
    color: var(--lp-black);
    font-family: var(--noto-serif);
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  .lp01-logo {
    display: block;
    width: 188px;
  }
  .lp01-logo > picture {
    display: block;
    width: 100%;
  }
  .lp01-logo > picture > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-logo:hover {
    transition: opacity 0.3s ease;
    opacity: 0.85;
  }
}
@media screen and (max-width:1024px) {
  .lp01-header {
    padding: 5px 20px;
  }  
  .lp01-logo {
    width: min(140px + (188 - 140) * ((100vw - 768px) / (1024 - 768)), 188px);
  }
}
@media screen and (max-width:767px) {
  .lp01-header {
    padding: 5px 10px;
  }
  .lp01-headline {
    font-size: 8px;
  }
  .lp01-logo {
    width: min(120px + (140 - 120) * ((100vw - 320px) / (390 - 320)), 140px);
  }
}
/*floating*/
@media screen and (max-width:1024px) {
  .lp01-floating {
    position: fixed;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 60px;
    z-index: 9;
    transform: translateY(150%);
    transition: transform 0.3s ease;
  }
  .lp01-floating.active {
    transform: translateY(0);
  }
  .lp01-floating > .container {
    padding: 0;
  }
  .lp01-floating__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 390px;
    width: 100%;
    height: 60px;
    margin: 0 auto;
  }
  .lp01-floating__phone {
    display: none;
  }
  .lp01-floating__btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .lp01-floating__tel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #818d91;
  }
  .lp01-floating__tel > span {
    display: block;
    width: auto;
    font-size: 10px;
    color: var(--white);
    font-family: var(--noto-serif);
    line-height: 1.2;
    padding-top: 25px;
    background-image: url(../images/lp01/icon-phone.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 20px 20px;
  }
  .lp01-floating__tel:hover {
    transition: opacity 0.3s ease;
    opacity: 0.85;
  }
  .lp01-floating__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc((100% - 60px)/3);
    height: 60px;
    font-size: 16px;
    font-family: var(--noto-serif);
    color: var(--white);
    line-height: 1;
    text-align: center;
    font-weight: 500;
  }
  .btn-buy {
    background-color: #2CA6DF;
  }
  .btn-rental {
    background-color: #2689A0;
  }
  .btn-contact {
    background-color: #00B78D;
  } 
  .lp01-floating__btn > span.pc,
  .lp01-floating__btn > i {
    display: none;
  }
  .lp01-floating__btn:hover {
    transition: opacity 0.3s ease;
    opacity: 0.85;
  }
}
@media screen and (min-width:1025px) {
  .lp01-floating {
    position: fixed;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100px;
    background-image: url(../images/lp01/floating-cta-pc.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 9;
    transform: translateY(150%);
    transition: transform 0.3s ease;
  }
  .lp01-floating.active {
    transform: translateY(0);
  }
  .lp01-floating__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    height: 100px;
    margin: 0 auto;
  }
  .lp01-floating__phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(340/1100 * 100%);
  }
  .lp01-floating__phone > span {
    font-size: 16px;
    line-height: 35px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #2689a0;
    text-align: center;
  }
  .lp01-floating__phone > a {
    font-size: 36px;
    color: var(--lp-black);
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 42px;
    padding-left: 40px;
    font-family: var(--noto-serif);
    background-image: url(../images/lp01/icon-phone.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 30px 30px;
  }
  .lp01-floating__phone > a:hover {
    transition: opacity 0.3s ease;
    opacity: 0.85;
  }
  .lp01-floating__btns {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: calc(750/1100 * 100%);
  }
  .lp01-floating__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 240px;
    width: calc(240/750 * 100%);
    height: 80px;
    border-radius: 40px;
    font-size: 17px;
    font-family: var(--noto-serif);
    color: var(--white);
    line-height: 1;
    letter-spacing: 5px;
    text-align: center;
    font-weight: 700;
  }
  .btn-buy {
    background-color: #2CA6DF;
  }
  .btn-rental {
    background-color: #2689A0;
  }
  .btn-contact {
    background-color: #00B78D;
  }
  .lp01-floating__btn + .lp01-floating__btn {
    margin-left: 5px;
  }
  .lp01-floating__btn > span.sp,
  .lp01-floating__tel {
    display: none;
  }
  .lp01-floating__btn:hover {
    transition: opacity 0.3s ease;
    opacity: 0.85;
  }
}
/*mv*/
@media screen and (min-width:0px) {
  .lp01-mv {
    display: block;
    width: 100%;
  }
  .lp01-mv > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
}
/*footer*/
@media screen and (max-width:767px) {
  .lp01-footer {
    display: block;
    width: 100%;
    padding: 60px 0 80px;
    background-color: #484848;
  }
  .lp01-footer__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .lp01-footer__nav {
    display: block;
    text-align: center;
    width: 100%;
  }
  .lp01-footer__nav > a {    
    font-size: 10px;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: 0.1em;
  }
  .lp01-footer__nav > a:hover {
    transition: opacity 0.3s ease;
    opacity: 0.85;
  }
  .lp01-footer__nav > span {
    font-size: 10px;
    color: var(--white);
    line-height: 1.2;
    padding: 0 5px;
  }
  .lp01-footer__nav > span.sp {
    display: none;
  }
  .lp01-footer__rights {
    display: block;
    width: auto;
    font-size: 10px;
    color: var(--white);
    line-height: 1.2;
    margin-top: 20px;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width:768px) {
  .lp01-footer {
    display: block;
    width: 100%;
    padding: 60px 0 120px;
    background-color: #484848;
  }
  .lp01-footer__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .lp01-footer__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .lp01-footer__nav > a {
    display: block;
    width: auto;
    font-size: 14px;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: 0.1em;
  }
  .lp01-footer__nav > a:hover {
    transition: opacity 0.3s ease;
    opacity: 0.85;
  }
  .lp01-footer__nav > span {
    display: block;
    width: auto;
    font-size: 14px;
    color: var(--white);
    line-height: 1.2;
    padding: 0 5px;
  }
  .lp01-footer__rights {
    display: block;
    width: auto;
    font-size: 14px;
    color: var(--white);
    line-height: 1.2;
    margin-top: 20px;
    letter-spacing: 0.1em;
  }
}
/*cta*/
@media screen and (max-width:767px) {
  .lp01-cta {
    display: block;
    width: 100%;
    padding: 40px 0;
    background-image: url(../images/lp01/cta-sp.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .lp01-cta__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .lp01-cta__phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .lp01-cta__title {
    display: block;
    width: auto;
    font-size: 20px;
    color: var(--lp-black);
    font-weight: 700;
    line-height: calc(30/20);
    letter-spacing: 3px;
    font-family: var(--noto-serif);
    margin-right: 20px;
  }
  .lp01-cta__tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
  }
  .lp01-cta__tel-txt {
    font-size: 12px;
    line-height: 15px;
    font-weight: 500;
    font-family: var(--noto-serif);
    color: #2689A0;
    letter-spacing: 0.05em;
  }
  .lp01-cta__tel-link {
    font-size: 28px;
    color: var(--lp-black);
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 35px;
    padding-left: 40px;
    font-family: var(--noto-serif);
    background-image: url(../images/lp01/icon-phone.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 30px 30px;
  }
  .lp01-cta__tel-link:hover {
    transition: opacity 0.3s ease;
    opacity: 0.85;
  }
  .lp01-cta__btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 25px;
  }
  .lp01-cta__btns > a {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 285px;
    width: 100%;
    height: 60px;
    border-radius: 30px;
    font-size: 17px;
    font-family: var(--noto-serif);
    color: var(--white);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 3px;
    text-align: center;
    background-image: url(../images/lp01/icon-btn.png);
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 15px 15px;
  }
  .lp01-cta__btns > a + a {
    margin-top: 15px;
  }
  .lp01-cta__btns > a:hover {
    transition: opacity 0.3s ease;
    opacity: 0.85;
  }
  .lp01-cta__btn-buy {
    background-color: #2CA6DF;
  }
  .lp01-cta__btn-rental {
    background-color: #2689A0;
  }
  .lp01-cta__btn-contact {
    background-color: #00B78D;
  }
}
@media screen and (min-width:768px) {
  .lp01-cta {
    display: block;
    width: 100%;
    padding: 40px 0;
    background-image: url(../images/lp01/cta-pc.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .lp01-cta__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .lp01-cta__phone {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .lp01-cta__title {
    display: block;
    width: auto;
    font-size: 24px;
    color: #2689A0;
    font-weight: 700;
    line-height: calc(60/24);
    letter-spacing: 3px;
    font-family: var(--noto-serif);
    margin-right: 20px;
  }
  .lp01-cta__tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
  }
  .lp01-cta__tel-txt {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    font-family: var(--noto-serif);
    color: #2689A0;
    letter-spacing: 0.05em;
  }
  .lp01-cta__tel-link {
    font-size: 36px;
    color: var(--lp-black);
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 42px;
    padding-left: 40px;
    font-family: var(--noto-serif);
    background-image: url(../images/lp01/icon-phone.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 30px 30px;
  }
  .lp01-cta__tel-link:hover {
    transition: opacity 0.3s ease;
    opacity: 0.85;
  }
  .lp01-cta__btns {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
  }
  .lp01-cta__btns > a {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 340px;
    width: calc(348.37/1140 * 100%);
    height: 76px;
    border-radius: 40px;
    font-size: 17px;
    font-family: var(--noto-serif);
    color: var(--white);
    line-height: 1;
    letter-spacing: 5px;
    text-align: center;
    font-weight: 700;
    background-image: url(../images/lp01/icon-btn.png);
    background-repeat: no-repeat;
    background-position: right 25px center;
    background-size: 20px 20px;
  }
  .lp01-cta__btns > a + a {
    margin-left: calc(30/1140 * 100%);
  }
  .lp01-cta__btns > a:hover {
    transition: opacity 0.3s ease;
    opacity: 0.85;
  }
  .lp01-cta__btn-buy {
    background-color: #2CA6DF;
  }
  .lp01-cta__btn-rental {
    background-color: #2689A0;
  }
  .lp01-cta__btn-contact {
    background-color: #00B78D;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .lp01-cta__btns > a {
    height: 56px;
  }
}
/*about*/
@media screen and (max-width:767px) {
  .lp01-about {
    display: block;
    width: 100%;
    padding: 60px 0;
    background-image: url(../images/lp01/about-bg-sp.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .lp01-about__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }
  .lp01-about__content {
    display: block;
    width: 100%;
  }
  .lp01-about__header {
    display: block;
    width: 100%;
    font-size: 26px;
    font-family: var(--noto-serif);
    line-height: calc(35/26);
    font-weight: 600;
    letter-spacing: 1.71px;
    color: var(--lp-black);
    text-align: center;
    word-break: break-all;
    padding-bottom: 20px;
  }
  .lp01-about__txt {
    display: block;
    width: 100%;
    font-size: 16px;
    font-family: var(--noto-serif);
    line-height: calc(35/16);
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--lp-black);
    text-align: justify;
    word-break: break-all;
  }
  .lp01-about__figure {
    display: block;
    width: calc(286/350 * 100%);
    margin-top: 30px;
  }
  .lp01-about__figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
}
@media screen and (min-width:768px) {
  .lp01-about {
    display: block;
    width: 100%;
    padding: 120px 0;
    background-image: url(../images/lp01/about-bg-pc.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .lp01-about__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1060px;
    width: 100%;
    margin: 0 auto;
  }
  .lp01-about__content {
    display: block;
    width: calc(583/1060 * 100%);
  }
  .lp01-about__header {
    display: block;
    width: 100%;
    font-size: 32px;
    font-family: var(--noto-serif);
    line-height: calc(60/32);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--lp-black);
    text-align: justify;
    word-break: break-all;
    padding-bottom: 25px;
  }
  .lp01-about__txt {
    display: block;
    width: 100%;
    font-size: 16px;
    font-family: var(--noto-serif);
    line-height: calc(35/16);
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--lp-black);
    text-align: justify;
    word-break: break-all;
  }
  .lp01-about__figure {
    display: block;
    width: calc(411/1060 * 100%);
  }
  .lp01-about__figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .lp01-about__header {
    font-size: 24px;
  }
  .lp01-about__txt {
    font-size: 14px;
  }
}
/*service*/
@media screen and (max-width:767px) {
  .lp01-service {
    display: block;
    width: 100%;
    padding: 60px 0;
    background-color: var(--white);
  }
  .lp01-service__body {
    display: block;
    width: 100%;
  }
  .lp01-service__main {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-template-rows: auto;
    row-gap: 20px;
    width: 100%;
  }  
  .lp01-service-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: calc(30/350 * 100%);
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(16,24,14,0.15);
    overflow: hidden;
  }
  .lp01-service-box__col {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }
  .lp01-service-box__badge {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(140/290 * 100%);
    height: 46px;
    font-size: min(15px + (20 - 15) * ((100vw - 320px) / (390 - 320)), 20px);
    color: var(--white);
    line-height: 1;
    font-family: var(--noto-serif);
    font-weight: 700;
    text-align: center;
    padding: 0 5px;
    letter-spacing: 0.64px;
  }
  .lp01-service-box__badge.box-h2 {
    background-color: #2CA6DF;
  }
  .lp01-service-box__badge.box-rn {
    background-color: #00B78D;
  }
  .lp01-service-box__badge.box-o2 {
    background-color: #2689A0;
  }
  .lp01-service-box__col-txt {
    display: block;
    width: calc(100% - (150/290 * 100%));
    font-size: min(11px + (13 - 11) * ((100vw - 320px) / (390 - 320)), 13px);
    font-weight: 700;
    font-family: var(--noto-serif);
    line-height: 20px;
    letter-spacing: 0.64px;
  }
  .lp01-service-box__col-txt > span {
    font-size: min(14px + (16 - 14) * ((100vw - 320px) / (390 - 320)), 16px);
  }
  .lp01-service-box__col-txt.color-hydrogen {
    color: #2CA6DF;
  }
  .lp01-service-box__col-txt.color-randon {
    color: #00B78D;
  }
  .lp01-service-box__col-txt.color-oxygen {
    color: #2689A0;
  }
  .lp01-service-box__title {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    font-size: 18px;
    font-family: var(--noto-serif);
    line-height: 35px;
    font-weight: 700;
    letter-spacing: 0.64px;
    text-align: justify;
    word-break: break-all;
    margin-top: 20px;
  }
  .lp01-service-box__txt {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0.64px;
    text-align: justify;
    word-break: break-all;
    margin-top: 15px;
  }
  .lp01-service-box__code {
    position: absolute;
    bottom: 18px;
    right: calc(30/345 * 100%);
    display: block;
    width: auto;
    font-size: 100px;
    font-size: 700;
    font-family: var(--noto-serif);
    line-height: 50px;
  }
  .lp01-service-box:nth-child(1) .lp01-service-box__code {
    color: #DBF1EF;
  }
  .lp01-service-box:nth-child(2) .lp01-service-box__code {
    color: #E2EBEB;
  }
  .lp01-service-box:nth-child(3) .lp01-service-box__code {
    color: #DBF0F7;
  }
  .lp01-service__txt {
    display: block;
    width: 100%;
    font-size:20px;
    font-weight: 600;
    font-family: var(--noto-serif);
    line-height: 35px;
    text-align: center;
    color: #2689A0;
    margin-top: 40px
  }
  .lp01-service__txt small {
    font-size: 16px;
  }
  .lp01-service__txt em {
    font-size: 24px;
  }
  .lp01-service__txt i {
    font-size: 20px;
  }
  .lp01-service__txt span {
    background-image: linear-gradient(#FFFA61,#FFFA61);
    background-repeat: no-repeat;
    background-position: bottom 2px center;
    background-size: 100% 10px;
  }
}
@media screen and (min-width:768px) {
  .lp01-service {
    display: block;
    width: 100%;
    padding: 120px 0;
    background-color: var(--white);
  }
  .lp01-service__body {
    display: block;
    max-width: 1095px;
    width: 100%;
    margin: 0 auto;
  }
  .lp01-service__main {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: calc(30/1095 * 100%);
    width: 100%;
  }
  .lp01-service-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: calc(30/345 * 100%);
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(16,24,14,0.15);
  }
  .lp01-service-box__col {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }
  .lp01-service-box__badge {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(140/285 * 100%);
    height: 46px;
    font-size: 20px;
    color: var(--white);
    line-height: 1;
    font-family: var(--noto-serif);
    font-weight: 700;
    text-align: center;
    padding: 0 10px;
    letter-spacing: 0.64px;
  }
  .lp01-service-box__badge.box-h2 {
    background-color: #2CA6DF;
  }
  .lp01-service-box__badge.box-rn {
    background-color: #00B78D;
  }
  .lp01-service-box__badge.box-o2 {
    background-color: #2689A0;
  }
  .lp01-service-box__col-txt {
    display: block;
    width: calc(100% - (150/285 * 100%));
    font-size: min(12px + (13 - 12) * ((100vw - 1025px) / (1140 - 1025)), 13px);
    font-weight: 700;
    font-family: var(--noto-serif);
    line-height: 20px;
    letter-spacing: 0.64px;
  }
  .lp01-service-box__col-txt > span {
    font-size: 18px;
  }
  .lp01-service-box__col-txt.color-hydrogen {
    color: #2CA6DF;
  }
  .lp01-service-box__col-txt.color-randon {
    color: #00B78D;
  }
  .lp01-service-box__col-txt.color-oxygen {
    color: #2689A0;
  }
  .lp01-service-box__title {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    font-size: 18px;
    font-family: var(--noto-serif);
    line-height: 35px;
    font-weight: 700;
    letter-spacing: 0.64px;
    text-align: justify;
    word-break: break-all;
    margin-top: 20px;
  }
  .lp01-service-box__txt {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0.64px;
    text-align: justify;
    word-break: break-all;
    margin-top: 15px;
  }
  .lp01-service-box__code {
    position: absolute;
    bottom: 18px;
    right: calc(30/345 * 100%);
    display: block;
    width: auto;
    font-size: 100px;
    font-size: 700;
    font-family: var(--noto-serif);
    line-height: 50px;
  }
  .lp01-service-box:nth-child(1) .lp01-service-box__code {
    color: #DBF1EF;
  }
  .lp01-service-box:nth-child(2) .lp01-service-box__code {
    color: #E2EBEB;
  }
  .lp01-service-box:nth-child(3) .lp01-service-box__code {
    color: #DBF0F7;
  }
  .lp01-service__txt {
    display: block;
    width: 100%;
    font-size: 40px;
    font-weight: 600;
    font-family: var(--noto-serif);
    line-height: calc(60/40);
    text-align: center;
    color: #2689A0;
    margin-top: 60px
  }
  .lp01-service__txt small {
    font-size: 32px;
  }
  .lp01-service__txt em {
    font-size: 64px;
  }
  .lp01-service__txt i {
    font-size: 48px;
  }
  .lp01-service__txt span {
    background-image: linear-gradient(#FFFA61,#FFFA61);
    background-repeat: no-repeat;
    background-position: bottom 2px center;
    background-size: 100% 15px;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .lp01-service-box__title {
    font-size: 14px;
    letter-spacing: 0px;
    margin-top: 15px;
  }
  .lp01-service-box__txt {
    font-size: 13px;
    line-height: 26px;
    margin-top: 10px;
  }
  .lp01-service__txt {
    font-size: 36px;
  }
  .lp01-service__txt em {
    font-size: 54px;
  }
  .lp01-service__txt i {
    font-size: 38px;
  }
  .lp01-service__txt small {
    font-size: 26px;
  }
  .lp01-service-box__badge {
    height: 46px;
    font-size: 14px;
    padding: 0 5px;
  }
  .lp01-service-box__col-txt {
    display: block;
    font-size: 9px;
  }
  .lp01-service-box__col-txt > span {
    font-size: 14px;
  }
}
/*role*/
@media screen and (max-width:767px) {
  .lp01-role {
    display: block;
    width: 100%;
    padding: 50px 0;
    background-image: url(../images/lp01/role-sp.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }
  .lp01-role__header {
    display: block;
    width: 100%;
    font-size: 24px;
    font-family: var(--noto-serif);
    font-weight: 600;
    line-height: 34px;
    color: var(--lp-black);
    text-align: justify;
    word-break: break-all;
  }
  .lp01-role-tbl {
    display: none;
  }
  .lp01-role-sptbl-cols {
    display: block;
    width: 100%;
    margin-top: 40px;
  }
  .lp01-role-sptbl-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .lp01-role-sptbl-col + .lp01-role-sptbl-col {
    margin-top: 20px;
  }
  .lp01-role-sptbl-col_title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 46px;
    font-size: 20px;
    color: var(--white);
    line-height: 1;
    font-family: var(--noto-serif);
    font-weight: 700;
    text-align: center;
    padding: 0 20px;
    letter-spacing: 0.64px;
  }
  .lp01-role-sptbl-col:nth-child(1) .lp01-role-sptbl-col_title {
    background-color: #2CA6DF;
  }
  .lp01-role-sptbl-col:nth-child(2) .lp01-role-sptbl-col_title {
    background-color: #00B78D;
  }
  .lp01-role-sptbl-col:nth-child(3) .lp01-role-sptbl-col_title {
    background-color: #2689A0;
  }
  .lp01-role-sptbl {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: var(--white);
  }
  .lp01-role-sptbl tr th {
    width: 92px;
    background-color: #F8FDFC;
    font-size: 16px;
    font-family: var(--noto-serif);
    line-height: 23px;
    font-weight: 600;
    text-align: left;
    padding: 10px;    
  }
  .lp01-role-sptbl tr:not(:last-child) th {
    background-image: linear-gradient(#D8EEEA,#D8EEEA);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 1px;
  }
  .lp01-role-sptbl tr td {
    width: calc(100% - 92px);
    padding: 10px;
    font-size: 15px;
    font-family: var(--noto-serif);
    line-height: 20px;
    font-weight: 400;
    color: #466A70;
  }
  .lp01-role-sptbl tr:not(:last-child) td {
    background-image: linear-gradient(#D8EEEA,#D8EEEA);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 1px;
  }
  .lp01-role__figure {
    display: block;
    max-width: 350px;
    width: 100%;
    margin: 60px auto;
  }
  .lp01-role__figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-role__txt {
    display: block;
    width: 100%;
    text-align: center;
    font-size: min(22px + (24 - 22) * ((100vw - 320px) / (390 - 320)), 24px);
    font-family: var(--noto-serif);
    line-height: 50px;
    letter-spacing: 0.05em;
    font-weight: 600;
  }
  .lp01-role__txt small {
    font-size: min(15px + (18 - 15) * ((100vw - 320px) / (390 - 320)), 18px);
  }
  .lp01-role__txt span {
    font-size: min(30px + (32 - 30) * ((100vw - 320px) / (390 - 320)), 32px);
  }
}
@media screen and (min-width:768px) {
  .lp01-role {
    display: block;
    width: 100%;
    padding: 100px 0;
    background-image: url(../images/lp01/role-pc.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }
  .lp01-role__header {
    display: block;
    width: 100%;
    font-size: 28px;
    font-family: var(--noto-serif);
    font-weight: 600;
    line-height: 40px;
    color: var(--lp-black);
    text-align: justify;
    word-break: break-all;
  }
  .lp01-role-tbl {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background-color: var(--white);
    box-shadow: 0 4px 4px rgba(0,0,0,0.25);
    border-radius: 10px;
    overflow: hidden;
  }
  .lp01-role-tbl tr th {
    width: 110px;
    background-color: #F8FDFC;
    font-size: 18px;
    font-family: var(--noto-serif);
    line-height: 26px;
    font-weight: 600;
    text-align: left;
    padding: 15px;    
  }
  .lp01-role-tbl tr:not(:last-child) th {
    background-image: linear-gradient(#D8EEEA,#D8EEEA);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 1px;
  }
  .lp01-role-tbl tr td {
    padding: 15px;
    font-size: 16px;
    font-family: var(--noto-serif);
    line-height: 26px;
    font-weight: 400;
    color: #466A70;
  }
  .lp01-role-tbl tr:first-child td {
    background-color:#EDF8F6;
    font-size: 18px;
    font-family: var(--noto-serif);
    color: var(--lp-black);
    line-height: 26px;
    font-weight: 600;
  }  
  .lp01-role-tbl tr:not(:last-child) td {
    background-image: linear-gradient(#D8EEEA,#D8EEEA);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 1px;
  }
  .lp01-role-tbl tr td:nth-child(2) {
    width:160px;
  }
  .lp01-role-tbl tr td:nth-child(3) {
    width: 160px;
  }
  .lp01-role-tbl tr td:nth-child(4) {
    width: 220px;
  }
  .lp01-role-tbl tr td:nth-child(5) {
    width: calc(100% - 110px - 160px - 160px - 220px);
  }
  .lp01-role-sptbl-cols {
    display: none;
  }
  .lp01-role__figure {
    display: block;
    width: calc(890/1180 * 100%);
    margin: 80px auto 110px;
  }
  .lp01-role__figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-role__txt {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 28px;
    font-family: var(--noto-serif);
    line-height: 50px;
    letter-spacing: 0.2em;
    font-weight: 600;
  }
  .lp01-role__txt small {
    font-size: 20px;
  }
  .lp01-role__txt span {
    font-size: 36px;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
   .lp01-role-tbl tr th {
    width: 80px;
    padding: 10px; 
  }
  .lp01-role-tbl tr td {
    padding: 10px;
    font-size: 15px;
    text-align: 20px;
  }
  .lp01-role-tbl tr td:nth-child(2) {
    width:130px;
  }
  .lp01-role-tbl tr td:nth-child(3) {
    width: 120px;
  }
  .lp01-role-tbl tr td:nth-child(4) {
    width: 180px;
  }
  .lp01-role-tbl tr td:nth-child(5) {
    width: calc(100% - 80px - 130px - 120px - 180px);
  }
  .lp01-role__txt {
    font-size: 24px;
  }
  .lp01-role__txt small {
    font-size: 16px;
  }
  .lp01-role__txt span {
    font-size: 30px;
  }
}
@media screen and (min-width:1025px) {
  .lp01-role > .container {
    max-width: 1220px;
  }
}
/*reason*/
@media screen and (max-width:767px) {
  .lp01-reason {
    display: block;
    width: 100%;
    padding: 80px 0 80px;
    background-color: var(--white);    
  }
  .lp01-reason__intro {
    display: block;
    width: 100%;
    padding-bottom: 80px;
  }
  .lp01-reason__header {
    display: block;
    width: 100%;
    font-size: 24px;
    font-family: var(--noto-serif);
    font-weight: 600;
    line-height: 40px;
    color: var(--lp-black);
    text-align: center;
  }
  .lp01-reason__txt {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0.64px;
    font-family: var(--noto-serif);
    text-align: justify;
    word-break: break-all;
    margin-top: 40px;
  }
  .lp01-reason__main {
    display: block;
    max-width: 540x;
    width: 100%;
    margin: 0 auto 0;
    padding: 0 20px;
  }
  .lp01-reason-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .lp01-reason-box + .lp01-reason-box {
    margin-top: 50px;
  }
  .lp01-reason-box__figure {
    display: block;
    width: 100%;
  }
  .lp01-reason-box__figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-reason-box__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: -16px;
  }
  .lp01-reason-box__badge {
    display: block;
    width: 56px;
    margin-bottom: 10px;
  }
  .lp01-reason-box__badge > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-reason-box__title {
    display: block;
    width: auto;
    font-size: 22px;
    color: var(--white);
    font-family: var(--noto-serif);
    letter-spacing: 0.05em;
    font-weight: 700;
    padding: 5px 10px;
    line-height: 30px;
    background: linear-gradient(90deg,#62B8CC 0%,#2689A0 100%);
  }
  .lp01-reason-box__txt {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    font-family: var(--noto-serif);
    color: var(--lp-black);
    letter-spacing: 0.64px;
    text-align: justify;
    word-break: break-all;
    margin-top: 15px;
  }
}
@media screen and (min-width:768px) {
  .lp01-reason {
    display: block;
    width: 100%;
    padding: 100px 0 120px;
    background-color: var(--white);
  }
  .lp01-reason__intro {
    display: block;
    width: 100%;
    padding-bottom: 100px;
  }
  .lp01-reason__header {
    display: block;
    width: 100%;
    font-size: 32px;
    font-family: var(--noto-serif);
    font-weight: 600;
    line-height: 60px;
    color: var(--lp-black);
    text-align: justify;
    word-break: break-all;
  }
  .lp01-reason__txt {
    display: block;
    width: 100%;
    font-size: 18px;
    line-height: 35px;
    font-weight: 500;
    letter-spacing: 0.64px;
    font-family: var(--noto-serif);
    text-align: justify;
    word-break: break-all;
    margin-top: 20px;
  }
  .lp01-reason__main {
    display: block;
    max-width: 1440px;
    width: 100%;
    margin: 60px auto 0;
  }
  .lp01-reason-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }
  .lp01-reason-box:nth-child(even) {
    flex-direction: row-reverse;
  }
  .lp01-reason-box + .lp01-reason-box {
    margin-top: 80px;
  }
  .lp01-reason-box__figure {
    display: block;
    width: calc(650/1440 * 100%);
  }
  .lp01-reason-box__figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-reason-box__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(790/1440 * 100%);    
  }
  .lp01-reason-box:nth-child(odd) .lp01-reason-box__content {
    padding: 0 calc(120/1440 * 100%) 0 calc(60/1440 * 100%);
  }
  .lp01-reason-box:nth-child(even) .lp01-reason-box__content {
    padding: 0 calc(60/1440 * 100%) 0 calc(120/1440 * 100%);
  }
  .lp01-reason-box__badge {
    display: block;
    width: calc(96/610 * 100%);
    margin-bottom: 5px;
  }
  .lp01-reason-box__badge > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-reason-box__title {
    display: block;
    width: auto;
    font-size: 24px;
    color: var(--white);
    font-family: var(--noto-serif);
    letter-spacing: 0.05em;
    font-weight: 700;
    padding: 10px 20px;
    line-height: 30px;
    background: linear-gradient(90deg,#62B8CC 0%,#2689A0 100%);
  }
  .lp01-reason-box__txt {
    display: block;
    width: 100%;
    font-size: 18px;
    line-height: 35px;
    font-weight: 500;
    font-family: var(--noto-serif);
    color: var(--lp-black);
    letter-spacing: 0.64px;
    text-align: justify;
    word-break: break-all;
    margin-top: 20px;
  }
}
@media screen and (min-width:1025px) {
  .lp01-reason > .container {
    max-width: 1220px;
  }
}
/*message*/
@media screen and (max-width:767px) {
  .lp01-message {
    display: block;
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(90deg, #ffffff 0.0%, #eef8f6 100.0%),radial-gradient(circle at center, #82bcc3 0.0%, #82bcc3 34.0%);
  }
  .lp01-message__columns {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .lp01-message__figure {
    display: block;
    width: 100%;
  }
  .lp01-message__figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-message__column {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  .lp01-message__header {
    display: block;
    width: 100%;
    font-size: 20px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #000000;
    line-height: 3s0px;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-message__txt {
    display: block;
    width: 100%;
    font-size: 15px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #000000;
    line-height: 30px;
    text-align: justify;
    word-break: break-all;
    margin-top: 20px;
  }
  .lp01-message__contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 30px;
  }
  .lp01-message__block {
    display: block;
    width: 100%;
    padding: 20px;
    background-color: var(--white);
  }
  .lp01-message__block-title {
    display: block;
    width: 100%;
    font-size: 16px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #00b78d;
    line-height: 26px;
    letter-spacing: 0.05em;
    padding-bottom: 5px;
    border-bottom: 1px solid #00b78d;
  }
  .lp01-message__block-list {
    display: block;
    width: 100%;
  }
  .lp01-message__block-list > li {
    position: relative;
    display: block;
    width: 100%;
    font-size: 15px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #10180e;
    line-height: 20px;
    text-align: justify;
    word-break: break-all;
    padding-left: 20px;
    margin-top: 10px;
  }
  .lp01-message__block-list > li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    display: block;
    width: 6px;
    height: 6px;
    background-color: #00b78d;
    border-radius: 3px;
  }
  .lp01-message__btns {
    display: flex;
    justify-content: center;
    width:  100%;
    margin-top: 25px;
  }
  .lp01-message__btn {   
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 307px;
    width: 100%;
    height: 64px;
    gap: 10px;
    background-color: #ffffff;
    border-radius: 40px;
    border: 1px solid #2689a0;
  }
  .lp01-message__btn > span {
    position: relative;
    display: block;
    width: auto;
    font-size: 16px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #2689a0;
    line-height: 24px;
    padding-right: 20px;
    text-decoration: underline;
    background-image: url(../images/lp01/trangle-icon.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 11px auto;
  }
  .lp01-message__btn:hover {
    transition: opacity 0.3s ease;
    opacity: 0.85;
  }

}
@media screen and (min-width:768px) {
  .lp01-message {
    display: block;
    width: 100%;
    padding: 120px 0;
    background: linear-gradient(115.70209343225001deg, #ffffff 0.0%, #eef8f6 100.0%),radial-gradient(circle at center, #82bcc3 0.0%, #82bcc3 34.0%);
  }
  .lp01-message__columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }
  .lp01-message__figure {
    display: block;
    width: calc(510/1140 * 100%);
  }
  .lp01-message__figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-message__column {
    display: block;
    width: calc(580/1140 * 100%);
    padding-right: calc(40/1140 * 100%);
  }
  .lp01-message__header {
    display: block;
    width: 100%;
    font-size: 32px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #000000;
    line-height: 40px;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-message__txt {
    display: block;
    width: 100%;
    font-size: 18px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #000000;
    line-height: 35px;
    text-align: justify;
    word-break: break-all;
    margin-top: 20px;
  }
  .lp01-message__contents {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 60px;
  }
  .lp01-message__block {
    display: block;
    width: calc(630/1140 * 100%);
    padding: calc(30/1140 * 100%) calc(60/1140 * 100%);
    background-color: var(--white);
  }
  .lp01-message__block-title {
    display: block;
    width: 100%;
    font-size: 18px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #00b78d;
    line-height: 30px;
    letter-spacing: 0.05em;
    padding-bottom: 5px;
    border-bottom: 1px solid #00b78d;
  }
  .lp01-message__block-list {
    display: block;
    width: 100%;
  }
  .lp01-message__block-list > li {
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #10180e;
    line-height: 23px;
    text-align: justify;
    word-break: break-all;
    padding-left: 24px;
    margin-top: 10px;
  }
  .lp01-message__block-list > li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    display: block;
    width: 9px;
    height: 9px;
    background-color: #00b78d;
    border-radius: 4.5px;
  }
  .lp01-message__btns {
    display: flex;
    align-items: flex-end;
    width: calc(460/1140 * 100%);
  }
  .lp01-message__btn {   
    display: flex;
    justify-content: center;
    align-items: center;
    width: 307px;
    height: 64px;
    gap: 10px;
    background-color: #ffffff;
    border-radius: 40px;
    border: 1px solid #2689a0;
  }
  .lp01-message__btn > span {
    position: relative;
    display: block;
    width: auto;
    font-size: 16px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #2689a0;
    line-height: 24px;
    padding-right: 20px;
    text-decoration: underline;
    background-image: url(../images/lp01/trangle-icon.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 11px auto;
  }
  .lp01-message__btn:hover {
    transition: opacity 0.3s ease;
    opacity: 0.85;
  }

}
/*function*/
@media screen and (max-width:767px) {
  .lp01-function {
    display: block;
    width: 100%;
    padding: 60px 0;
    background-color: #d8eeea;
  }
  .lp01-function__body {
    display: block;
    width: 100%;
  }
  .lp01-function__header {
    display: block;
    width: 100%;
    font-size: 24px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #000000;
    line-height: 40px;
    text-align: justify;
    word-break: break-all;
    padding:0 25px 20px;
  }
  .lp01-function__txt {
    display: block;
    width: 100%;
    font-size: 16px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #000000;
    line-height: 30px;
    text-align: justify;
    word-break: break-all;
    padding: 0 25px;
  }
  .lp01-function__blocks {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-template-rows: auto;
    row-gap: 10px;
    max-width: 320px;
    width: 100%;
    margin: 40px auto 0;
  }
  .lp01-function__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 15px; 
    background-color: var(--white);
  }
  .lp01-function__block-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background-color: #e0f0f0;
    border-radius: 19px;
    font-size: 20px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #2689a0;
    text-align: center;
  }
  .lp01-function__block-title {
    display: block;
    width: 100%;
    font-size: min(16px + (18 - 16) * ((100vw - 320px) / (390 - 320)), 18px);
    font-family: var(--noto-serif);
    font-weight: 600;
    line-height: 21px;
    color: #10180e;
    text-align: center;
    margin-top: 5px;
  }
  .lp01-function__block-txt {
    display: block;
    width: 100%;
    font-size: min(13px + (15 - 13) * ((100vw - 320px) / (390 - 320)), 15px);
    font-family: var(--noto-serif);
    font-weight: 300;
    line-height: 22px;
    color: #10180e;
    text-align: center;
    margin-top: 10px;
  }
  .lp01-function__slogan {
    display: block;
    width: 100%;
    font-size: min(18px + (20 - 18) * ((100vw - 320px) / (390 - 320)), 20px);
    font-family: var(--noto-serif);
    font-weight: 600;
    line-height: 35px;
    color: #2689a0;
    text-align: center;
    margin-top: 60px;
  }
}
@media screen and (min-width:768px) {
  .lp01-function {
    display: block;
    width: 100%;
    padding: 60px 0;
    background-color: #d8eeea;
  }
  .lp01-function__body {
    display: block;
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
  }
  .lp01-function__header {
    display: block;
    width: 100%;
    font-size: 32px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #000000;
    line-height: 40px;
    text-align: justify;
    word-break: break-all;
    padding-bottom: 20px;
  }
  .lp01-function__txt {
    display: block;
    width: 100%;
    font-size: 18px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #000000;
    line-height: 30px;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-function__blocks {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: auto;
    gap: 30px;
    width: calc(1070/1120 * 100%);
    margin: 60px auto 0;
  }
  .lp01-function__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: calc(30/520 * 100%) calc(20/520 * 100%); 
    background-color: var(--white);
  }
  .lp01-function__block-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: #e0f0f0;
    border-radius: 25px;
    font-size: 20px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #2689a0;
    text-align: center;
  }
  .lp01-function__block-title {
    display: block;
    width: 100%;
    font-size: 20px;
    font-family: var(--noto-serif);
    font-weight: 600;
    line-height: 30px;
    color: #10180e;
    text-align: center;
    margin-top: 5px;
  }
  .lp01-function__block-txt {
    display: block;
    width: 100%;
    font-size: 16px;
    font-family: var(--noto-serif);
    font-weight: 300;
    line-height: 30px;
    color: #10180e;
    text-align: center;
    margin-top: 10px;
  }
  .lp01-function__slogan {
    display: block;
    width: 100%;
    font-size: 28px;
    font-family: var(--noto-serif);
    font-weight: 600;
    line-height: 50px;
    color: #2689a0;
    text-align: center;
    margin-top: 60px;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .lp01-function__block-title {
    font-size: 18px;
  }
  .lp01-function__slogan {
    font-size: 26px;
  }
}
/*use*/
@media screen and (max-width:767px) {
  .lp01-use {
    display: block;
    width: 100%;
    padding: 60px 0;
    background-color: var(--white);
  }
  .lp01-use__body {
    display: block;
    width: 100%;
    padding: 0 5px;
  }
  .lp01-use__header {
    display: block;
    width: 100%;
    font-size: 20px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #10180e;
    line-height: 30px;
    text-align: justify;
    word-break: break-all;
    padding-left: 15px;
    border-left: 5px solid #2689A0;
    margin-bottom: 15px;
  }
  .lp01-use__txt {
    display: block;
    width: 100%;
    font-size: 15px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #10180e;
    line-height: 25px;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-use__timeline {
    display: block;
    width: 100%;
    margin-top: 30px;
  }
  .lp01-use__timeline > li {
    position: relative;
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 25px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
    padding-left: 40px;
  }
  .lp01-use__timeline > li::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: block;
    width: 23px;
    height: 23px;
    background-color: #52b6e5;
    border-radius: 13px;
  }
  .lp01-use__timeline > li:not(:last-child) {
    margin-bottom: 44px;
  }
  .lp01-use__timeline > li:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 11px;
    display: block;
    width: 1px;
    height: 36px;
    background-color: #52b6e5;
    border-radius: 15px;
  } 
  .lp01-use-box {
    display: block;
    max-width: 340px;
    width: 100%;
    padding: 20px;
    margin: 60px auto 0;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(209, 238, 232, 1.00);
  }
  .lp01-use-box__txt {
    display: block;
    width: 100%;
    font-size: 16px;
    font-family:  var(--noto-serif);
    font-weight: 500;
    color: #10180e;
    line-height: 28px;
    text-align: justify;
    word-break: break-all;
    padding-top: 80px;
    background-image: url(../images/lp01/book-icon.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 78px 78px;
  }
  .lp01-use-block {
    display: block;
    max-width: 340px;
    width: 100%;
    margin: 40px auto 0;
  }
  .lp01-use-block__title {
    display: block;
    width: 100%;
    font-size: 24px;
    line-height: 40px;
    font-family: var(--noto-serif);
    font-weight: 700;
    letter-spacing: 0.64px;
    color: #2689a0;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-use-block__txt {
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 2;
    font-family: var(--noto-serif);
    font-weight: 600;
    letter-spacing: 0.64px;
    text-align: justify;
    word-break: break-all;
    margin-top: 10px;
  }
  .lp01-use-block__caution {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 0.64px;
    text-align: justify;
    word-break: break-all;
    margin-top: 10px;
  }
}
@media screen and (min-width:768px) {
  .lp01-use {
    display: block;
    width: 100%;
    padding: 120px 0;
    background-color: var(--white);
  }
  .lp01-use__body {
    display: block;
    max-width: 940px;
    width: 100%;
    margin: 0 auto;
  }
  .lp01-use__header {
    display: block;
    width: 100%;
    font-size: 28px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #10180e;
    line-height: 32px;
    text-align: justify;
    word-break: break-all;
    padding-left: 15px;
    border-left: 7px solid #2689A0;
    margin-bottom: 40px;
  }
  .lp01-use__txt {
    display: block;
    width: 100%;
    font-size: 18px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #10180e;
    line-height: 35px;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-use__timeline {
    display: block;
    width: 100%;
    margin-top: 40px;
  }
  .lp01-use__timeline > li {
    position: relative;
    display: block;
    width: 100%;
    font-size: 20px;
    font-family: var(--noto-serif);
    font-weight: 400;
    line-height: 35px;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
    padding-left: 67px;
  }
  .lp01-use__timeline > li::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    display: block;
    width: 27px;
    height: 27px;
    background-color: #52b6e5;
    border-radius: 15px;
  }
  .lp01-use__timeline > li:not(:last-child) {
    padding-bottom: 55px;
  }
  .lp01-use__timeline > li:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 13px;
    display: block;
    width: 1px;
    height: 50px;
    background-color: #52b6e5;
    border-radius: 15px;
  }
  .lp01-use__timeline > li + li {
    margin-top: 25px;
  }
  .lp01-use-box {
    display: block;
    max-width: 765px;
    width: 100%;
    padding: 20px calc(40/940 * 100%);
    margin: 60px auto 0;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(209, 238, 232, 1.00);
  }
  .lp01-use-box__txt {
    display: block;
    width: 100%;
    font-size: 20px;
    font-family:  var(--noto-serif);
    font-weight: 600;
    color: #10180e;
    line-height: 40px;
    text-align: justify;
    word-break: break-all;
    padding-left: 128px;
    background-image: url(../images/lp01/book-icon.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 88px 88px;
  }
  .lp01-use-block {
    display: block;
    max-width: 765px;
    width: 100%;
    margin: 60px auto 0;
  }
  .lp01-use-block__title {
    display: block;
    width: 100%;
    font-size: 24px;
    line-height: 40px;
    font-family: var(--noto-serif);
    font-weight: 700;
    letter-spacing: 0.64px;
    color: #2689a0;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-use-block__txt {
    display: block;
    width: 100%;
    font-size: 20px;
    line-height: 40px;
    font-family: var(--noto-serif);
    font-weight: 600;
    letter-spacing: 0.64px;
    text-align: justify;
    word-break: break-all;
    margin-top: 10px;
  }
  .lp01-use-block__caution {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    font-family: var(--noto-sans);
    font-weight: 400;
    letter-spacing: 0.64px;
    text-align: justify;
    word-break: break-all;
    margin-top: 20px;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .lp01-use-box__txt {
    font-size: 19px;
  }
}
/*lifestyle*/
@media screen and (max-width:767px) {
  .lp01-lifestyle {
    display: block;
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
    background-image: url(../images/lp01/lifestyle/bg-sp.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .lp01-lifestyle__body {
    display: block;
    width: 100%;
  }
  .lp01-lifestyle__header {
    display: block;
    width: 100%;
    font-size: 24px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #10180e;
    line-height: 30px;
    text-align: justify;
    word-break: break-all;
    margin-bottom: 40px;
  }
  .lp01-lifestyle-boxes {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-template-rows: auto;
    row-gap: 30px;
    width: 100%;
  }
  .lp01-lifestyle-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .lp01-lifestyle-box__badge {
    display: block;
    width: auto;
    font-size: 15px;
    color: var(--white);
    font-weight: 600;
    color: var(--white);
    font-family: var(--noto-serif);
    padding: 5px 10px;
    background: linear-gradient(90deg,#62B8CC 0%,#2689A0 100%);
  }
  .lp01-lifestyle-box__figure {
    display: block;
    width: 100%;
    margin-top: 10px;
  }
  .lp01-lifestyle-box__figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-lifestyle-box__title {
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    font-family: var(--noto-serif);
    line-height: 30px;
    text-align: justify;
    word-break: break-all;
    margin-top: 20px;
  }
  .lp01-lifestyle-box__txt {
    display: block;
    width: 100%;
    font-size: 16px;
    font-family: var(--noto-serif);
    font-weight: 400;
    line-height: 28px;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
    margin-top: 10px;
  }
  .lp01-lifestyle-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 40px;
  }
  .lp01-lifestyle-block__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .lp01-lifestyle-block__title > span:nth-child(1) {
    font-size: 20px;
    font-weight: 700;
    color: var(--lp-black);
    font-family: var(--noto-serif);
    line-height: 30px;
    letter-spacing: 0.64px;
    text-align: center;
  }
  .lp01-lifestyle-block__title > span:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: var(--lp-black);
    font-family: var(--noto-serif);
    line-height: 25px;
    letter-spacing: 0.64px;
    text-align: center;
  }
  .lp01-lifestyle-block__txt {
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    color: var(--lp-black);
    font-family: var(--noto-serif);
    line-height: 30px;
    letter-spacing: 0.64px;
    text-align: center;
    margin-top: 30px;
  }
}
@media screen and (min-width:768px) {
  .lp01-lifestyle {
    display: block;
    width: 100%;
    padding: 120px 0;
    background-color: #ffffff;
    background-image: url(../images/lp01/lifestyle/bg-pc.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .lp01-lifestyle__body {
    display: block;
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
  }
  .lp01-lifestyle__header {
    display: block;
    width: 100%;
    font-size: 34px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #10180e;
    line-height: 40px;
    text-align: justify;
    word-break: break-all;
    margin-bottom: 40px;
  }
  .lp01-lifestyle-boxes {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: auto;
    column-gap: calc(50/1120 * 100%);
    row-gap: 80px;
  }
  .lp01-lifestyle-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .lp01-lifestyle-box__badge {
    display: block;
    width: auto;
    font-size: 18px;
    color: var(--white);
    font-weight: 600;
    color: var(--white);
    font-family: var(--noto-serif);
    padding: 5px 10px;
    background: linear-gradient(90deg,#62B8CC 0%,#2689A0 100%);
  }
  .lp01-lifestyle-box__figure {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  .lp01-lifestyle-box__figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-lifestyle-box__title {
    display: block;
    width: 100%;
    font-size: 23px;
    font-weight: 600;
    color: #000000;
    font-family: var(--noto-serif);
    line-height: 30px;
    text-align: justify;
    word-break: break-all;
    margin-top: 30px;
  }
  .lp01-lifestyle-box__txt {
    display: block;
    width: 100%;
    font-size: 18px;
    font-family: var(--noto-serif);
    font-weight: 400;
    line-height: 34px;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
    margin-top: 10px;
  }
  .lp01-lifestyle-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 80px;
  }
  .lp01-lifestyle-block__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .lp01-lifestyle-block__title > span:nth-child(1) {
    font-size: 28px;
    font-weight: 700;
    color: var(--lp-black);
    font-family: var(--noto-serif);
    line-height: 45px;
    letter-spacing: 0.64px;
    text-align: center;
  }
  .lp01-lifestyle-block__title > span:nth-child(2) {
    font-size: 20px;
    font-weight: 400;
    color: var(--lp-black);
    font-family: var(--noto-serif);
    line-height: 45px;
    letter-spacing: 0.64px;
    text-align: center;
  }
  .lp01-lifestyle-block__txt {
    display: block;
    width: 100%;
    font-size: 28px;
    font-weight: 700;
    color: var(--lp-black);
    font-family: var(--noto-serif);
    line-height: 45px;
    letter-spacing: 0.64px;
    text-align: center;
    margin-top: 40px;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .lp01-lifestyle-block__title > span:nth-child(1) {
    font-size: 26px;
  }
  .lp01-lifestyle-block__txt {
    font-size: 26px;
  }
}
/*product*/
@media screen and (max-width:767px) {
  .lp01-product {
    display: block;
    width: 100%;
    padding: 60px 0;
    background-color: var(--white);
  }
  .lp01-product__header {
    display: block;
    width: 100%;
    font-size: 20px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #10180e;
    line-height: 30px;
    text-align: justify;
    word-break: break-all;
    padding-left: 15px;
    border-left: 5px solid #2689A0;
    margin-bottom: 30px;
  }
  .lp01-product__main {
    display: block;
    width: 100%;
    border: 1px solid #D8EEEA;
  }
  .lp01-product-row {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .lp01-product-row > dt  {
    display: block;
    width: 100%;
    font-size: 16px;
    padding: 9px 15px;
    line-height: 24px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #10180e;
    background-color: #EDF8F6;
  }
  .lp01-product-row > dd  {
    display: block;
    width: 100%;
    font-size: 16px;
    padding: 9px 15px;
    line-height: 24px;
    font-family: var(--noto-serif);
    font-weight: 400;
    text-align: justify;
    word-break: break-all;
    color: #466a70;
  }
  .lp01-product-row:nth-child(-n + 3) > dt:nth-child(3),
  .lp01-product-row:nth-child(-n + 3) > dd:nth-child(4),
  .lp01-product-row:nth-child(n + 6) > dt:nth-child(3),
  .lp01-product-row:nth-child(n + 6) > dd:nth-child(4) {
    display: none;
  }
  .lp01-product__sp {
    display: block;
    width: 100%;
    border: 1px solid #D8EEEA;
    margin-top: 30px;
  }
}
@media screen and (min-width:768px) {
  .lp01-product {
    display: block;
    width: 100%;
    padding: 120px 0;
    background-color: var(--white);
  }
  .lp01-product__header {
    display: block;
    width: 100%;
    font-size: 28px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #10180e;
    line-height: 32px;
    text-align: justify;
    word-break: break-all;
    padding-left: 15px;
    border-left: 7px solid #2689A0;
    margin-bottom: 60px;
  }
  .lp01-product__main {
    display: block;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 10px 0 rgba(21, 63, 70, 0.12);
  }
  .lp01-product-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .lp01-product-row > dt  {
    display: block;
    font-size: 16px;
    padding: 15px;
    line-height: 24px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #10180e;
    background-color: #EDF8F6;
  }
  .lp01-product-row > dd  {
    display: block;
    font-size: 16px;
    padding: 15px;
    line-height: 24px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #466a70;
  }
  .lp01-product-row:not(:last-child) > dt,
  .lp01-product-row:not(:last-child) > dd {
    border-bottom: 1px solid #D8EEEA;
  }
  .lp01-product-row:nth-child(-n + 3) > dt:nth-child(1) {
    width: calc(225/1180 * 100%);
  }
  .lp01-product-row:nth-child(-n + 3) > dd:nth-child(2) {
    width: calc(440/1180 * 100%);
  }
  .lp01-product-row:nth-child(-n + 3) > dt:nth-child(3) {
    width: calc(180/1180 * 100%);
  }
  .lp01-product-row:nth-child(-n + 3) > dd:nth-child(4) {
    width: calc(335/1180 * 100%);
  }
  .lp01-product-row:nth-child(-n + 5):nth-child(n+4) > dt:nth-child(1) {
    width: calc(225/1180 * 100%);
  }
  .lp01-product-row:nth-child(-n + 5):nth-child(n+4) > dd:nth-child(2) {
    width: calc(955/1180 * 100%);
  }
  .lp01-product-row:nth-child(n + 6) > dt:nth-child(1) {
    width: calc(225/1180 * 100%);
  }
  .lp01-product-row:nth-child(n + 6) > dd:nth-child(2) {
    width: calc(440/1180 * 100%);
  }
  .lp01-product-row:nth-child(n + 6) > dt:nth-child(3) {
    width: calc(200/1180 * 100%);
  }
  .lp01-product-row:nth-child(n + 6) > dd:nth-child(4) {
    width: calc(315/1180 * 100%);
  }
  .lp01-product__sp {
    display: none;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .lp01-product-row > dt {
    font-size: 13px;
    padding: 15px 10px;
  }
  .lp01-product-row > dd {
    font-size: 13px;
    padding: 15px 10px;
  }
}
@media screen and (min-width:1025px) {
  .lp01-product > .container {
    max-width: 1220px;
  }
}
/*long*/
@media screen and (max-width:767px) {
  .lp01-long {
    display: block;
    width: 100%;
    padding: 30px 0;
    background-color: var(--white);
  }
  .lp01-long__intro {
    display: block;
    width: 100%;
  }
  .lp01-long__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 20px;
  }
  .lp01-long__header > span:nth-child(1) {
    display: block;
    width: 100%;
    font-family: var(--noto-serif);
    font-size: 24px;
    line-height: 40px;
    font-weight: 700;
    color: #000000;
    text-align: justify;
    word-break: break-all;    
  }
  .lp01-long__header > span:nth-child(2) {
    display: block;
    width: 100%;
    font-family: var(--noto-serif);
    font-size: 15px;
    line-height: 40px;
    font-weight: 600;
    color: #000000;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-long__txt {
    display: block;
    width: 100%;
    font-family: var(--noto-serif);
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
    color: #000000;
    text-align: justify;
    word-break: break-all;    
  }
  .lp01-long__columns {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 20px auto 0;
  }
  .lp01-long__fgiure {
    display: block;
    width: calc(240/350 * 100%);
  }
  .lp01-long__fgiure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-long__column-txt {
    display: block;
    width: 100%;
    font-family: var(--noto-serif);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #000000;
    text-align: justify;
    word-break: break-all;    
    margin-top: 20pxs;
  }
  .lp01-long-data {
    display: block;
    width: 100%;
    margin-top: 40px;
  }
  .lp01-long-data__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
  }
  .lp01-long-data__col {
    display: block;
  }
  .lp01-long-data__col:nth-child(1) {
    width: calc(160/1160 * 100%);
    background-color: #F1FFFC;
  }
  .lp01-long-data__col:nth-child(2) {
    width: calc(220/1160 * 100%);
    background-color: var(--white);
  }
  .lp01-long-data__col:nth-child(n + 3) {
    width: calc(195/1160 * 100%);
  }
  .lp01-long-data__col:nth-child(3),
  .lp01-long-data__col:nth-child(5) {
    background-color: #F6F6F6;
  }
  .lp01-long-data__col:nth-child(4),
  .lp01-long-data__col:nth-child(6) {
    background-color: #FAFAFA;
  }
  .lp01-long-data__col > dd {
    display: flex;
    align-items: center;
    height: 58px;
    font-size: min(15px + (16 - 15) * ((100vw - 1025px) / (1200 - 1025)), 16px);
    padding: 0 10px;
    font-family: var(--noto-serif);
    line-height: 1;
    border-bottom: 1px solid #D8EEEA;
  }
  .lp01-long-data__col:not(:first-child) > dd {
    justify-content: center;
    text-align: center;
  }
  .lp01-long-data__col > dt {
    display: flex;
    align-items: center;
    height: 58px;
    font-size: 16px;
    padding: 10px;
    font-family: var(--noto-serif);
    line-height: 20px;
    border-bottom: 1px solid #D8EEEA;
  }
  .lp01-long-data__col:nth-child(1) > dt {
    background-color: #F7FBFA;
    padding: 10px 15px;
    font-weight: 700;
    color: #153f46;
  }
  .lp01-long-data__col:nth-child(1) > dd {
    padding: 10px 15px;
    font-weight: 700;
    color: #153f46;
  }
  .lp01-long-data__col:not(:first-child) > dt {
    justify-content: center;
    color: var(--white);
    font-weight: 800;
  }
  .lp01-long-data__col:nth-child(2) {
    position: relative;
  }
  .lp01-long-data__col:nth-child(2)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 5px solid #258A9F;
    pointer-events: none;
  }
  .lp01-long-data__col:nth-child(2) > dt {
    height: 69px;
    background-color: #258A9F;
    font-size: 18px;
  }  
  .lp01-long-data__col:nth-child(2) > dd {
    color: #2689a0;
    font-weight: 700;
  }
  .lp01-long-data__col:nth-child(n+3) > dt {
    background-color: #818D91;
    font-weight: 900;
  }
  .lp01-long-data__col:nth-child(n+3) > dd {
    color: #466a70;
  }
}
@media screen and (min-width:768px) {
  .lp01-long {
    display: block;
    width: 100%;
    padding: 60px 0;
    background-color: var(--white);
  }
  .lp01-long__intro {
    display: block;
    max-width: 1115px;
    width: 100%;
    margin: 0 auto;
  }
  .lp01-long__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 30px;
  }
  .lp01-long__header > span:nth-child(1) {
    display: block;
    width: 100%;
    font-family: var(--noto-serif);
    font-size: 34px;
    line-height: 60px;
    font-weight: 700;
    color: #000000;
    text-align: justify;
    word-break: break-all;    
  }
  .lp01-long__header > span:nth-child(2) {
    display: block;
    width: 100%;
    font-family: var(--noto-serif);
    font-size: 24px;
    line-height: 60px;
    font-weight: 600;
    color: #000000;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-long__txt {
    display: block;
    width: 100%;
    font-family: var(--noto-serif);
    font-size: 20px;
    line-height: 35px;
    font-weight: 600;
    color: #000000;
    text-align: justify;
    word-break: break-all;    
  }
  .lp01-long__columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 930px;
    width: 100%;
    margin: 60px auto 0;
  }
  .lp01-long__fgiure {
    display: block;
    width: calc(335/930 * 100%);
  }
  .lp01-long__fgiure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-long__column-txt {
    display: block;
    width: calc(565/930 * 100%);
    font-family: var(--noto-serif);
    font-size: 18px;
    line-height: 35px;
    font-weight: 400;
    color: #000000;
    text-align: justify;
    word-break: break-all;    
  }
  .lp01-long-data {
    display: block;
    width: 100%;
    margin-top: 60px;
  }
  .lp01-long-data__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
  }
  .lp01-long-data__col {
    display: block;
  }
  .lp01-long-data__col:nth-child(1) {
    width: calc(160/1160 * 100%);
    background-color: #F1FFFC;
  }
  .lp01-long-data__col:nth-child(2) {
    width: calc(220/1160 * 100%);
    background-color: var(--white);
  }
  .lp01-long-data__col:nth-child(n + 3) {
    width: calc(195/1160 * 100%);
  }
  .lp01-long-data__col:nth-child(3),
  .lp01-long-data__col:nth-child(5) {
    background-color: #F6F6F6;
  }
  .lp01-long-data__col:nth-child(4),
  .lp01-long-data__col:nth-child(6) {
    background-color: #FAFAFA;
  }
  .lp01-long-data__col > dd {
    display: flex;
    align-items: center;
    height: 58px;
    font-size: min(15px + (16 - 15) * ((100vw - 1025px) / (1200 - 1025)), 16px);
    padding: 0 10px;
    font-family: var(--noto-serif);
    line-height: 1;
    border-bottom: 1px solid #D8EEEA;
  }
  .lp01-long-data__col:not(:first-child) > dd {
    justify-content: center;
    text-align: center;
  }
  .lp01-long-data__col > dt {
    display: flex;
    align-items: center;
    height: 58px;
    font-size: 16px;
    padding: 10px;
    font-family: var(--noto-serif);
    line-height: 20px;
    border-bottom: 1px solid #D8EEEA;
  }
  .lp01-long-data__col:nth-child(1) > dt {
    background-color: #F7FBFA;
    padding: 10px 15px;
    font-weight: 700;
    color: #153f46;
  }
  .lp01-long-data__col:nth-child(1) > dd {
    padding: 10px 15px;
    font-weight: 700;
    color: #153f46;
  }
  .lp01-long-data__col:not(:first-child) > dt {
    justify-content: center;
    color: var(--white);
    font-weight: 800;
  }
  .lp01-long-data__col:nth-child(2) {
    position: relative;
  }
  .lp01-long-data__col:nth-child(2)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 5px solid #258A9F;
    pointer-events: none;
  }
  .lp01-long-data__col:nth-child(2) > dt {
    height: 69px;
    background-color: #258A9F;
    font-size: 18px;
  }  
  .lp01-long-data__col:nth-child(2) > dd {
    color: #2689a0;
    font-weight: 700;
  }
  .lp01-long-data__col:nth-child(n+3) > dt {
    background-color: #818D91;
    font-weight: 900;
  }
  .lp01-long-data__col:nth-child(n+3) > dd {
    color: #466a70;
  }



  .can-scroll-txt {
    display: none;
  }
}
@media screen and (max-width:1024px) {
  .lp01-long-data {
    display: block;
    width: 100%;
    margin-top: 20px;
    overflow-x: scroll;
    padding-bottom: 20px;
  }
  .lp01-long-data::-webkit-scrollbar {
    background: #FFFFFF;
    width: 10px;
    height: 10px;
    border: 1px solid #000000;
    border-radius: 5px;
  }
  .lp01-long-data::-webkit-scrollbar-thumb {
    background-color: #818d91;
    width: 5px;
    border-radius: 5px;
  }
  .lp01-long-data__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 1160px;
  }
  .lp01-long-data__col > dd {
    font-size: 15px;
  }
  .can-scroll-txt {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: #646c6e;
    line-height: 24px;
    text-align: justify;
    word-break: break-all;
    margin-top: 15px;
  }
  .lp01-long__columns + .can-scroll-txt {
    margin-top: 40px;
  }
}
@media screen and (min-width:1025px) {
  .lp01-long > .container {
    max-width: 1200px;
  }
}
/*efficiency*/
@media screen and (max-width:767px) {
  .lp01-efficiency {
    display: block;
    width: 100%;
    padding: 50px 0;
    background-color: var(--white);
  }
  .lp01-efficiency__body {
    display: block;
    width: 100%;
  }
  .lp01-efficiency__header {
    display: block;
    width: 100%;
    font-family: var(--noto-serif);
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    color: #000000;
  }
  .lp01-efficiency__header > span {
    color: #2689A0;
    font-size: 24px;
  }
  .lp01-efficiency__txt {
    display: block;
    width: 100%;
    font-family: var(--noto-serif);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #10180e;
    text-align: center;
    margin-top: 20px;
  }
  .lp01-efficiency-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 20px; 
  }
  .lp01-efficiency-block__figure {
    display: block;
    width: 100%;
  }
  .lp01-efficiency-block__figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-efficiency-block__txt {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #000000;
    background: linear-gradient(105.7707063966355deg, #ffffff 0.0%, #eef8f6 100.0%) ,radial-gradient(circle at center, #82bcc3 0.0%, #82bcc3 28.0%);
    text-align: justify;
    word-break: break-all;
    padding: 20px 15px;
  }
  .lp01-efficiency-boxs {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-template-rows: auto;
    row-gap: 20px;
    width: 100%;
    margin-top: 50px;
  }
  .lp01-efficiency-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
  }
  .lp01-efficiency-box__figure {
    display: block;
    width: 64px;
  }
  .lp01-efficiency-box__figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-efficiency-box__title {
    display: block;
    width: calc(100% - 64px - 15px);
    font-size: 18px;
    line-height: 22px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-efficiency-box__txt {
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
    margin-top: 5px;
  }
}
@media screen and (min-width:768px) {
  .lp01-efficiency {
    display: block;
    width: 100%;
    padding: 120px 0;
    background-color: var(--white);
  }
  .lp01-efficiency__body {
    display: block;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
  }
  .lp01-efficiency__header {
    display: block;
    width: 100%;
    font-family: var(--noto-serif);
    font-size: 28px;
    font-weight: 700;
    line-height: 39px;
    text-align: center;
    color: #000000;
  }
  .lp01-efficiency__header > span {
    color: #2689A0;
    font-size: 32px;
  }
  .lp01-efficiency__txt {
    display: block;
    width: 100%;
    font-family: var(--noto-serif);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: #10180e;
    text-align: center;
  }
  .lp01-efficiency-block {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 60px;
    background: linear-gradient(105.7707063966355deg, #ffffff 0.0%, #eef8f6 100.0%),radial-gradient(circle at center, #82bcc3 0.0%, #82bcc3 28.0%);
    border-radius: 8px;
    overflow: hidden;
  }
  .lp01-efficiency-block__figure {
    display: block;
    width: calc(440/1100 * 100%);
  }
  .lp01-efficiency-block__figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-efficiency-block__txt {
    display: flex;
    align-items: center;
    width: calc(640/1100 * 100%);
    font-size: min(20px + (24 - 20) * ((100vw - 1025px) / (1120 - 1025)), 24px);
    line-height: 40px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #000000;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-efficiency-boxs {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: auto;
    column-gap: calc(50/1100 * 100%);
    row-gap: 30px;
    width: 100%;
    margin-top: 60px;
  }
  .lp01-efficiency-box {
    position: relative;
    display: block;
    width: 100%;
    padding-left: calc(120/525 * 100%);
  }
  .lp01-efficiency-box__figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: block;
    width: calc(100/525 * 100%);
  }
  .lp01-efficiency-box__figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-efficiency-box__title {
    display: block;
    width: 100%;
    font-size: 18px;
    line-height: 35px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-efficiency-box__txt {
    display: block;
    width: 100%;
    font-size: 12px;
    line-height: 25px;
    font-weight: 400;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
    margin-top: 10px;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .lp01-efficiency__header {
    font-size: 26px;
  }
  .lp01-efficiency__txt {
    font-size: 17px;
  }
  .lp01-efficiency-block__txt {
    font-size: 16px;
    line-height: 30px;
  }
}
/*informatiom*/
@media screen and (max-width:767px) {
  .lp01-information {
    display: block;
    width: 100%;
    background: linear-gradient(120.29175105335139deg, #eef8f6 0.0%, #ffffff 100.0%),radial-gradient(circle at center, #82bcc3 0.0%, #82bcc3 34.0%);
  }
  .lp01-information__body {
    display: block;
    width: 100%;
    padding: 60px 0 120px;
    margin: 0 auto;
    background-image: url(../images/lp01/information2.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: calc(169/350 * 100%) auto;
  }
  .lp01-information__intro {
    display: block;
    width: 100%;
  }
  .lp01-information__header {
    display: block;
    width: 100%;
    font-size: 20px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #10180e;
    line-height: 30px;
    text-align: justify;
    word-break: break-all;
    padding-left: 15px;
    border-left: 5px solid #2689A0;
  }
  .lp01-information__txt {
    display: block;
    width: 100%;
    font-size: 15px;
    font-family: var(--noto-serif);
    font-weight: 400;
    line-height: 24px;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
    margin-top: 20px;
  }
  .lp01-information__banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 30px;
  }
  .lp01-information__banner-figure {
    display: block;
    width: calc(190/350 * 100%);
  }
  .lp01-information__banner-figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-information__banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 10px;
    margin-top: 30px;
    background-image: linear-gradient(261.62955900558507deg, #62b8cc 0.0%, #2689a0 100.0%);
  }
  .lp01-information__banner-content_txt {
    font-size: 16px;
    line-height: 24px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #ffffff;
  }
  .lp01-information__banner-content_caution {
    display: block;
    width: 100%;
    font-size: 10px;
    font-family: var(--noto-serif);
    font-weight: 400;
    line-height: 12px;
    color: var(--white);
    text-align: justify;
    word-break: break-all;
    margin-top: 5px;
    padding: 0 5px;
  }
  .lp01-information__banner-content_price {
    font-size: min(24px + (28 - 24) * ((100vw - 320px) / (390 - 320)), 28px);
    line-height: 40px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #ffffff;
  }  
  .lp01-information__list {
    display: flex;
    flex-direction: column;
    max-width: 260px;
    width: 100%;
    margin: 10px auto 0;
  }
  .lp01-information__list > li {
    display: block;
    width: 100%;
    font-size: 12px;
    line-height: 20px;
    /*font-family: var(--noto-serif);*/
    font-weight: 400;
    color: #10180e;
  }
  .lp01-information__slogan {
    display: block;
    width: 100%;
    font-size: min(16px + (20 - 16) * ((100vw - 320px) / (390 - 320)), 20px);
    line-height: 24px;
    font-family: var(--noto-serif);
    font-weight: 600;
    margin-top: 40px;
    padding: 0 10px;
  }
  .lp01-information__slogan > small {
    font-size: min(14px + (16 - 14) * ((100vw - 320px) / (390 - 320)), 16px);
  }
}
@media screen and (min-width:768px) {
  .lp01-information {
    display: block;
    width: 100%;
    background-color: var(--white);
    background: linear-gradient(120.29175105335139deg, #eef8f6 0.0%, #ffffff 100.0%), radial-gradient(circle at center, #82bcc3 0.0%, #82bcc3 34.0%);
  }
  .lp01-information__body {
    display: block;
    max-width: 1120px;
    width: 100%;
    padding: 120px 0;
    margin: 0 auto;
    background-image: url(../images/lp01/information2.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: calc(253/1120 * 100%) auto;
  }
  .lp01-information__intro {
    display: block;
    max-width: 930px;
    width: 100%;
    margin: 0 auto;
  }
  .lp01-information__header {
    display: block;
    width: 100%;
    font-size: 28px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #10180e;
    line-height: 32px;
    text-align: justify;
    word-break: break-all;
    padding-left: 15px;
    border-left: 7px solid #2689A0;
  }
  .lp01-information__txt {
    display: block;
    width: 100%;
    font-size: 18px;
    font-family: var(--noto-serif);
    font-weight: 400;
    line-height: 35px;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
    margin-top: 20px;
  }  
  .lp01-information__banner {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    width: 100%;
    padding: 0 50px 0 40px;
    background-image: linear-gradient(261.62955900558507deg, #62b8cc 0.0%, #2689a0 100.0%);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% calc(100% - 40px);
    margin: 40px auto 0;
  }
  .lp01-information__banner-figure {
    display: block;
    width: calc(300/710 * 100%);
  }
  .lp01-information__banner-figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-information__banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(390/710 * 100%);
    padding: 55px 0 25px;
  }
  .lp01-information__banner-content_txt {
    font-size: 20px;
    line-height: 30px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #ffffff;
  }
  .lp01-information__banner-content_price {
    font-size: 34px;
    line-height: 50px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #ffffff;
  }
  .lp01-information__banner-content_price + p {
    width: 100%;
    padding-left: 20px;
  }
  .lp01-information__banner-content_caution {
    display: block;
    width: 100%;
    font-size: 10px;
    font-family: var(--noto-serif);
    font-weight: 400;
    line-height: 12px;
    color: var(--white);
    text-align: justify;
    word-break: break-all;
    padding-left: 20px;
    margin-top: 5px;
  }
  .lp01-information__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    width: 100%;
    margin: 20px auto 0;
  }
  .lp01-information__list > li {
    display: block;
    width: auto;
    font-size: 16px;
    line-height: 30px;
    /*font-family: var(--noto-serif);*/
    font-weight: 400;
    color: #10180e;
  }
  .lp01-information__slogan {
    display: block;
    width: 100%;
    font-size: min(29px + (32 - 29) * ((100vw - 1025px) / (1120 - 1025)), 32px);
    line-height: 50px;
    font-family: var(--noto-serif);
    font-weight: 600;
    margin-top: 80px;
  }
  .lp01-information__slogan > small {
    font-size: min(21px + (24 - 21) * ((100vw - 1025px) / (1120 - 1025)), 24px);
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .lp01-information__body {
    padding: 80px 0;
  }
  .lp01-information__banner-content_txt {
    font-size: 18px;
    line-height: 26px;
  }
  .lp01-information__banner-content_price {
    font-size: 32px;
    line-height: 40px;
  }
  .lp01-information__banner-content_price + p {
    padding-left: 10px;
  }
  .lp01-information__banner-content_caution {
    padding-left: 10px;
    font-size: 9px;
  }
  .lp01-information__slogan {
    font-size: 21px;
    margin-top: 50px;
  }
  .lp01-information__slogan > small {
    font-size: 16px;
  }
  .lp01-information__list > li {
    font-size: 15px;
  }
}
/*flow*/
@media screen and (max-width:767px) {
  .lp01-flow {
    display: block;
    width: 100%;
    padding: 60px 0;
    background-color: var(--white);
  }
  .lp01-flow__body {
    display: block;
    width: 100%;
  }
  .lp01-flow__header {
    display: block;
    width: 100%;
    font-size: 24px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #10180e;
    line-height: 40px;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-flow__txt {
    display: block;
    width: 100%;
    font-size: 14px;
    font-family: var(--noto-serif);
    font-weight: 400;
    line-height: 24px;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
    margin-top: 20px;
  }
  .lp01-flow__steps {
    display: block;
    width: 100%;
    margin: 30px auto 0;
  }
  .lp01-flow__steps > li {
    display: block;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0px 0px 10px rgba(209, 238, 232, 1.00);
  }
  .lp01-flow__steps > li + li {
    margin-top: 20px;
  }
  .lp01-flow__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .lp01-flow__step-hgroup {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%s;
  }
  .lp01-flow__step-icon {
    display: block;
    width: calc(55/310 * 100%);
  }
  .lp01-flow__step-icon > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-flow__step-title {
    display: block;
    width: calc(240/310 * 100%);
    font-size: min(16px + (20 - 16) * ((100vw - 320px) / (390 - 320)), 20px);
    line-height: 24px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #2689a0;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-flow__step-txt {
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 24px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
    padding: 10px 10px 0;
  }
}
@media screen and (min-width:768px) {
  .lp01-flow {
    display: block;
    width: 100%;
    padding: 120px 0;
    background-color: var(--white);
  }
  .lp01-flow__body {
    display: block;
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
  }
  .lp01-flow__header {
    display: block;
    width: 100%;
    font-size: 34px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #10180e;
    line-height: 40px;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-flow__txt {
    display: block;
    width: 100%;
    font-size: 18px;
    font-family: var(--noto-serif);
    font-weight: 400;
    line-height: 34px;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
    margin-top: 20px;
  }
  .lp01-flow__steps {
    display: block;
    max-width: 1110px ;
    width: 100%;
    margin: 80px auto 0;
  }
  .lp01-flow__steps > li {
    display: block;
    width: 100%;
    padding: calc(30/1110 * 100%);
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0px 0px 10px rgba(209, 238, 232, 1.00);
  }
  .lp01-flow__steps > li + li {
    margin-top: 30px;
  }
  .lp01-flow__step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .lp01-flow__step-hgroup {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(450/1050 * 100%);
  }
  .lp01-flow__step-icon {
    display: block;
    width: calc(100/450 * 100%);
  }
  .lp01-flow__step-icon > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-flow__step-title {
    display: block;
    width: calc(325/450 * 100%);
    font-size: 24px;
    line-height: 35px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #2689a0;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-flow__step-txt {
    display: block;
    width: calc(600/1050 * 100%);
    font-size: min(16px + (18 - 16) * ((100vw - 1025px) / (1120 - 1025)), 18px);
    line-height: 35px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
    padding: 15px 0 15px calc(40/1050 * 100%);
    border-left: 2px solid #f6fbfa;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .lp01-flow__step-title {
    font-size: 17px;
  }
  .lp01-flow__step-txt {
    font-size: 12px;
    line-height: 30px;
  }
}
/*banner*/
@media screen and (min-width:0px) {
  .lp01-banner {
    display: block;
    width: 100%;
  }
  .lp01-banner > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
}
/*maintanace*/
@media screen and (max-width:767px) {
  .lp01-maintanace {
    display: block;
    width: 100%;
    padding: 60px 0;
    background-color: var(--white);
  }
  .lp01-maintanace__body {
    display: block;
    width: 100%;
  }
  .lp01-maintanace__header {
    display: block;
    width: 100%;
    font-size: min(17px + (20 - 17) * ((100vw - 320px) / (390 - 320)), 20px);
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #10180e;
    line-height: 30px;
    text-align: justify;
    word-break: break-all;
    padding-left: 15px;
    border-left: 5px solid #2689A0;
  }
  .lp01-maintanace__txt {
    display: block;
    width: 100%;
    font-size: min(14px + (15 - 14) * ((100vw - 320px) / (390 - 320)), 15px);
    font-family: var(--noto-serif);
    font-weight: 400;
    line-height: 24px;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
    margin-top: 15px;
  }
  .lp01-maintanace__columns {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-template-rows: auto;
    row-gap: 20px;
    width: 100%;
    margin-top: 40px;
  }
  .lp01-maintanace-box {
    position: relative;
    display: block;
    width: 100%;
  }
  .lp01-maintanace-box__content {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding:0 calc(20/330 * 100%);
    box-sizing: border-box;
  }
  .lp01-maintanace-box__title {
    display: block;
    width: calc(250/350 * 100%);
    font-size: min(15px + (18 - 15) * ((100vw - 320px) / (390 - 320)), 18px);
    line-height: 30px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #2689a0;
    padding-bottom: 5px;
    border-bottom: 1px solid #2689a0;
    margin-bottom: 10px;
  }
  .lp01-maintanace-box__list {
    display: block;
    width: 100%;
  }
  .lp01-maintanace-box__list > li {
    position: relative;
    display: block;
    width: 100%;
    font-size: min(11px + (14 - 11) * ((100vw - 320px) / (390 - 320)), 14px);
    line-height: 26px;
    font-family: var(--noto-serif);
    font-weight: 500;
    color: #10180e;
    padding-left: 15px;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-maintanace-box__list > li > span {
    position: absolute;
    left: 0;
  }
  .lp01-maintanace-box__figure {
    display: block;
    width: 100%;
  }
  .lp01-maintanace-box__figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-maintanace__slogan {
    display: block;
    width: calc(100% + 20px);
    font-size: 18px;
    line-height: 30px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #00b78d;
    text-align: center;
    margin: 40px 0 0 -10px;
  }
}
@media screen and (min-width:768px) {
  .lp01-maintanace {
    display: block;
    width: 100%;
    padding: 120px 0;
    background-color: var(--white);
  }
  .lp01-maintanace__body {
    display: block;
    max-width: 1030px;
    width: 100%;
    margin: 0 auto;
  }
  .lp01-maintanace__header {
    display: block;
    width: 100%;
    font-size: 28px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #10180e;
    line-height: 32px;
    text-align: justify;
    word-break: break-all;
    padding-left: 15px;
    border-left: 7px solid #2689A0;
  }
  .lp01-maintanace__txt {
    display: block;
    width: 100%;
    font-size: 18px;
    font-family: var(--noto-serif);
    font-weight: 400;
    line-height: 35px;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
    margin-top: 20px;
  }
  .lp01-maintanace__columns {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: calc(20/1030 * 100%);
    width: 100%;
    margin-top: 60px;
  }
  .lp01-maintanace-box {
    position: relative;
    display: block;
    width: 100%;
  }
  .lp01-maintanace-box__content {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding:0 calc(20/330 * 100%);
    box-sizing: border-box;
  }
  .lp01-maintanace-box__title {
    display: block;
    width: calc(200/290 * 100%);
    font-size: min(17px + (18 - 17) * ((100vw - 1025px) / (1120 - 1025)), 18px);
    line-height: 30px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #2689a0;
    padding-bottom: 5px;
    border-bottom: 1px solid #2689a0;
    margin-bottom: 10px;
  }
  .lp01-maintanace-box__list {
    display: block;
    width: 100%;
  }
  .lp01-maintanace-box__list > li {
    position: relative;
    display: block;
    width: 100%;
    font-size: min(13px + (14 - 13) * ((100vw - 1025px) / (1120 - 1025)), 14px);
    line-height: 26px;
    font-family: var(--noto-serif);
    font-weight: 500;
    color: #10180e;
    padding-left: 15px;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-maintanace-box__list > li > span {
    position: absolute;
    left: 0;
  }
  .lp01-maintanace-box__figure {
    display: block;
    width: 100%;
  }
  .lp01-maintanace-box__figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-maintanace__slogan {
    display: block;
    width: 100%;
    font-size: 24px;
    line-height: 50px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #00b78d;
    text-align: center;
    margin-top: 60px;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .lp01-maintanace__txt {
    font-size: 16px;
  }
  .lp01-maintanace-box__title {
    width: calc(210/290 * 100%);
    font-size: 13px;
    line-height: 20px;
    padding-bottom: 3px;
    margin-bottom: 5px;
  }
  .lp01-maintanace-box__list > li {
    font-size: 10px;
    line-height: 20px;
    padding-left: 10px;
  }
  .lp01-maintanace__slogan {
    font-size: 20px;
    margin-top: 40px;
  }
}
/*support*/
@media screen and (max-width:767px) {
  .lp01-support {
    display: block;
    width: 100%;
    padding: 60px 0;
    background-image: url(../images/lp01/support-sp.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .lp01-support__header {
    display: block;
    width: 100%;
    font-size: 24px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #10180e;
    line-height: 40px;
    text-align: justify;
    word-break: break-all;
    margin-bottom: 20px;
  }
  .lp01-support__main {
    display: block;
    width: 100%;
    padding-top: 10px;
  }
  .lp01-support__txt {
    display: block;
    width: 100%;
    font-size: 16px;
    font-family: var(--noto-serif);
    font-weight: 400;
    line-height: 24px;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-support__figure {
    display: block;
    width: calc(100% + 20px);
    margin: 40px 0 0 -10px;
  }
  .lp01-support__figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
}
@media screen and (min-width:768px) {
  .lp01-support {
    display: block;
    width: 100%;
    padding: 120px 0;
    background-image: url(../images/lp01/support-pc.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .lp01-support__header {
    display: block;
    width: 100%;
    font-size: 34px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #10180e;
    line-height: 60px;
    text-align: justify;
    word-break: break-all;
    margin-bottom: 20px;
  }
  .lp01-support__main {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 10px;
  }
  .lp01-support__txt {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    font-size: 18px;
    font-family: var(--noto-serif);
    font-weight: 400;
    line-height: 35px;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-support__figure {
    display: block;
    width: calc(987/1160 * 100%);
    margin: 0 auto;
  }
  .lp01-support__figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .lp01-support__txt {
    font-size: 14px;
    line-height: 30px;
  }
}
@media screen and (min-width:1025px) {
  .lp01-support > .container {
    max-width: 1200px;
  }  
}
/*visit*/
@media screen and (max-width:767px) {
  .lp01-visit {
    display: block;
    width: 100%;
    padding: 60px 0;
    background-color: var(--white);
  }
  .lp01-visit__body {
    display: block;
    width: 100%;
  }
  .lp01-visit__header {
    display: block;
    width: 100%;
    font-size: 24px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #10180e;
    line-height: 35px;
    text-align: justify;
    word-break: break-all;
    margin-bottom: 15px;
  }
  .lp01-visit__title {
    display: block;
    width: 100%;
    font-size: min(15px + (18 - 15) * ((100vw - 320px) / (390 - 320)), 18px);
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #10180e;
    line-height: 35px;
    text-align: justify;
    word-break: break-all;
    margin-bottom: 30px;
  }
  .lp01-visit__block {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .lp01-visit__txt {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 30px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-visit__btns {
    display: block;
    width: 100%;
    margin-top: 30px;
  }
  .lp01-visit__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 200px;
    width: 100%;
    height: 45px;
    border-radius: 25px;
    font-size: 10px;
    font-family: var(--noto-serif);
    color: var(--white);
    background-color: #2689a0;
    line-height: 1;
    text-align: center;
    font-weight: 700;
    background-image: url(../images/lp01/icon-btn.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px 12px;
  }
  .lp01-visit__btn:hover  {
    transition: opacity 0.3s ease;
    opacity: 0.85;
  }
  .lp01-visit__columns {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 40px;
  }
  .lp01-visit__column-txt {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-visit__column-txt > span {
    padding-left: 70px;
  }
  .lp01-visit__column {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  .lp01-visit__figure {
    display: block;
    width: 100%;
  }
  .lp01-visit__figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-visit__goolgemap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-top: 5px;
  }
  .lp01-visit__maplink {
    display: block;
    width: auto;
    font-size: 15px;
    line-height: 40px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #5b3619;
    text-decoration: underline;
  }
  .lp01-visit__maplink:hover {
    transition: opacity 0.3s ease;
    opacity: 0.85;
  }
  .lp01-visit__solgan {
    display: block;
    width: 100%;
    font-size: min(15px + (18 - 15) * ((100vw - 320px) / (390 - 320)), 18px);
    line-height: 35px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #00b78d;
    text-align: justify;
    word-break: break-all;
    margin-top: 40px;
  }
}
@media screen and (min-width:768px) {
  .lp01-visit {
    display: block;
    width: 100%;
    padding: 120px 0 80px;
    background-color: var(--white);
  }
  .lp01-visit__body {
    display: block;
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
  }
  .lp01-visit__header {
    display: block;
    width: 100%;
    font-size: 34px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #10180e;
    line-height: 60px;
    text-align: justify;
    word-break: break-all;
    margin-bottom: 20px;
  }
  .lp01-visit__title {
    display: block;
    width: 100%;
    font-size: 20px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #10180e;
    line-height: 35px;
    text-align: justify;
    word-break: break-all;
    margin-bottom: 20px;
  }
  .lp01-visit__block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .lp01-visit__txt {
    display: block;
    width: calc(580/1120 * 100%);
    font-size: min(16px + (18 - 16) * ((100vw - 1025px) / (1120 - 1025)), 18px);
    line-height: 30px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-visit__btns {
    display: block;
    width: calc(480/1120 * 100%);
  }
  .lp01-visit__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 350px;
    width: 100%;
    height: 76px;
    border-radius: 40px;
    font-size: 17px;
    font-family: var(--noto-serif);
    color: var(--white);
    background-color: #2689a0;
    line-height: 1;
    letter-spacing: 5px;
    text-align: center;
    font-weight: 700;
    background-image: url(../images/lp01/icon-btn.png);
    background-repeat: no-repeat;
    background-position: right 25px center;
    background-size: 20px 20px;
  }
  .lp01-visit__btn:hover  {
    transition: opacity 0.3s ease;
    opacity: 0.85;
  }
  .lp01-visit__columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-top: 60px;
  }
  .lp01-visit__column-txt {
    display: block;
    width: calc(420/1120 * 100%);
    font-size: 16px;
    line-height: 24px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-visit__column {
    display: block;
    width: calc(690/1120 * 100%);
  }
  .lp01-visit__figure {
    display: block;
    width: 100%;
  }
  .lp01-visit__figure > img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .lp01-visit__goolgemap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-top: 5px;
  }
  .lp01-visit__maplink {
    display: block;
    width: auto;
    font-size: 15px;
    line-height: 40px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #5b3619;
    text-decoration: underline;
  }
  .lp01-visit__maplink:hover {
    transition: opacity 0.3s ease;
    opacity: 0.85;
  }
  .lp01-visit__solgan {
    display: block;
    width: 100%;
    font-size: 24px;
    line-height: 50px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #00b78d;
    text-align: center;
    margin-top: 60px;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .lp01-visit__txt {
    font-size: 12px;
  }
  .lp01-visit__column-txt {
    font-size: 11px;
    line-height: 20px;
  }
  .lp01-visit__solgan {
    font-size: 18px;
  }
}
/*payment*/
@media screen and (max-width:767px) {
  .lp01-payment {
    display: block;
    width: 100%;
    padding: 30px 0 60px;
    background-color: var(--white);
  }
  .lp01-payment__body {
    display: block;
    width: 100%;
  }
  .lp01-payment__header {
    display: block;
    width: 100%;
    font-size: 24px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #10180e;
    line-height: 40px;
    text-align: justify;
    word-break: break-all;
    margin-bottom: 20px;
  }
  .lp01-payment__txt {
    display: block;
    width: 100%;
    font-size: 16px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #10180e;
    line-height: 30px;
    text-align: justify;
    word-break: break-all;
    margin-bottom: 20px;
  }
  .lp01-payment__tbl {
    max-width: 300px;
    width: 100%;
    border-collapse: collapse;
    margin: 40px auto 0;
    border: 1px solid #D6D6D6;
  }
  .lp01-payment__tbl tr th {
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 30px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: var(--white);
    background-color: #2689A0;
    padding: 10px 0;
    text-align: center;
  }
  .lp01-payment__tbl tr td {
    display: block;
    width: 100%;
    font-size: min(15px + (16 - 15) * ((100vw - 320px) / (390 - 320)), 16px);
    line-height: 22px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: var(--lp-black);
    background-color: var(--white);
    padding: 10px;
  }
  .lp01-payment__tbl tr td.txt-center {
    text-align: center;
  }
  .lp01-payment__block {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    width: 100%;
    margin: 40px auto 0;
  }
  .lp01-payment__block > dt {
    display: block;
    width: 100%;
    font-size: 20px;
    line-height: 30px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #10180e;
  }
  .lp01-payment__block > dd {
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 22px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
    margin-top: 10px;
  }
  .lp01-payment__block > dd > small {
    display: block;
    width: 100%;
    font-size: 12px;
    line-height: 22px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
    margin-top: 5px;
  }
}
@media screen and (min-width:768px) {
  .lp01-payment {
    display: block;
    width: 100%;
    padding: 120px 0 60px;
    background-color: var(--white);
  }
  .lp01-payment__body {
    display: block;
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
  }
  .lp01-payment__header {
    display: block;
    width: 100%;
    font-size: 34px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #10180e;
    line-height: 60px;
    text-align: justify;
    word-break: break-all;
    margin-bottom: 20px;
  }
  .lp01-payment__txt {
    display: block;
    width: 100%;
    font-size: 20px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #10180e;
    line-height: 35px;
    text-align: justify;
    word-break: break-all;
    margin-bottom: 20px;
  }
  .lp01-payment__tbl {
    max-width: 800px;
    width: 100%;
    border-collapse: collapse;
    margin: 60px auto 0;
    border-top: 1px solid #D6D6D6;
  }
  .lp01-payment__tbl tr th {
    width: 240px;
    font-size: 20px;
    line-height: 30px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: var(--white);
    background-color: #2689A0;
    padding: 20px 0;
    border-bottom: 1px solid #D6D6D6;
  }
  .lp01-payment__tbl tr td {
    width: calc(100% - 240px);
    font-size: 18px;
    line-height: 30px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: var(--lp-black);
    background-color: var(--white);
    padding: 20px 0 20px 50px;
    border-bottom: 1px solid #D6D6D6;
  }
  .lp01-payment__block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 740px;
    width: 100%;
    margin: 30px auto 0;
  }
  .lp01-payment__block > dt {
    display: block;
    width: 250px;
    font-size: 20px;
    line-height: 30px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #10180e;
  }
  .lp01-payment__block > dd {
    display: block;
    width: calc(100% - 250px);
    font-size: 18px;
    line-height: 30px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-payment__block > dd > small {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 30px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #10180e;
    text-align: justify;
    word-break: break-all;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .lp01-payment__block > dd {
    font-size: 17px;
  }
}
/*faq*/
@media screen and (max-width:767px) {
  .lp01-faq {
    display: block;
    width: 100%;
    padding: 60px 0;
    background-image: url(../images/lp01/faq-sp.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .lp01-faq__body {
    display: block;
    width: 100%;
  }
  .lp01-faq__header {
    display: block;
    width: 100%;
    font-size: 24px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #10180e;
    line-height: 40px;
    text-align: justify;
    word-break: break-all;
    margin-bottom: 40px;
  }
  .lp01-faq__list {
    display: block;
    width: 100%;
  }
  .lp01-faq__list > li {
    display: block;
    width: 100%;
  }
  .lp01-faq__list > li + li {
    margin-top: 50px;
  }
  .lp01-faq__question {
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #2689a0;
    text-align: justify;
    word-break: break-all;
    padding-left: 30px;
  }
  .lp01-faq__question::before {
    content: "Q";
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: #2689a0;
    font-size: 18px;
    line-height: 1;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: var(--white);
  }
  .lp01-faq__answer-warp {
    display: block;
    width: 100%;
    padding-top: 15px;
  }
  .lp01-faq__answer {
    position: relative;
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 24px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #000000;
    text-align: justify;
    word-break: break-all;
    padding-left: 30px;
  }
  .lp01-faq__answer::before {
    content: "A";
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    font-size: 18px;
    line-height: 1;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #2689a0;
  }
  .lp01-faq__columns {
    display: block;
    width: 100%;
    padding: 10px 15px;
    background-color: var(--white);
    margin-top: 15px;
  }
  .lp01-faq__columns > dt {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #2689a0;
  }
  .lp01-faq__columns > dd {
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 20px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #000000;
    text-align: justify;
    word-break: break-all;
    margin-top: 5px;
  }
  .lp01-faq__rows {
    display: block;
    max-width: 700px;
    width: 100%;
    padding: 10px 15px;
    background-color: var(--white);
    margin-top: 20px;
  }
  .lp01-faq__rows > dt {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #2689a0;
  }
  .lp01-faq__rows > dd {
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 20px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #000000;
    text-align: justify;
    word-break: break-all;
    margin-top: 5px;
  }
}
@media screen and (min-width:768px) {
  .lp01-faq {
    display: block;
    width: 100%;
    padding: 120px 0;
    background-image: url(../images/lp01/faq-pc.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .lp01-faq__body {
    display: block;
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
  }
  .lp01-faq__header {
    display: block;
    width: 100%;
    font-size: 34px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #10180e;
    line-height: 60px;
    text-align: justify;
    word-break: break-all;
    margin-bottom: 60px;
  }
  .lp01-faq__list {
    display: block;
    width: 100%;
  }
  .lp01-faq__list > li {
    display: block;
    width: 100%;
  }
  .lp01-faq__list > li + li {
    margin-top: 60px;
  }
  .lp01-faq__question {
    position: relative;
    display: block;
    width: 100%;
    font-size: 20px;
    line-height: 32px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #2689a0;
    text-align: justify;
    word-break: break-all;
    padding-left: 40px;
  }
  .lp01-faq__question::before {
    content: "Q";
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #2689a0;
    font-size: 20px;
    line-height: 1;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: var(--white);
  }
  .lp01-faq__answer-warp {
    display: block;
    width: 100%;
    padding-top: 20px;
  }
  .lp01-faq__answer {
    position: relative;
    display: block;
    width: 100%;
    font-size: 18px;
    line-height: 30px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #000000;
    text-align: justify;
    word-break: break-all;
    padding-left: 40px;
  }
  .lp01-faq__answer::before {
    content: "A";
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    font-size: 25px;
    line-height: 1;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #2689a0;
  }
  .lp01-faq__columns {
    display: grid;
    grid-template-columns: 70px calc(100% - 70px);
    column-gap: 10px;
    max-width: 700px;
    width: 100%;
    padding: 10px 20px;
    background-color: var(--white);
    margin-top: 20px;
  }
  .lp01-faq__columns > dt {
    font-size: 16px;
    line-height: 20px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #2689a0;
  }
  .lp01-faq__columns > dd {
    font-size: 15px;
    line-height: 25px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #000000;
    text-align: justify;
    word-break: break-all;
  }
  .lp01-faq__rows {
    display: block;
    max-width: 700px;
    width: 100%;
    padding: 10px 20px;
    background-color: var(--white);
    margin-top: 20px;
  }
  .lp01-faq__rows > dt {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #2689a0;
  }
  .lp01-faq__rows > dd {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 25px;
    font-family: var(--noto-serif);
    font-weight: 400;
    color: #000000;
    text-align: justify;
    word-break: break-all;
    margin-top: 10px;
  }
}
/*experience*/
@media screen and (max-width:767px) {
  .lp01-experience {
    display: block;
    width: 100%;
    padding: 50px 0;
    background: linear-gradient(105.7707063966355deg, #ffffff 0.0%, #eef8f6 100.0%),radial-gradient(circle at center, #82bcc3 0.0%, #82bcc3 28.0%);
  }
  .lp01-experience__header {
    display: block;
    width: 100%;
    font-size: min(22px + (24 - 22) * ((100vw - 320px) / (390 - 320)), 24px);
    line-height: 35px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #2689a0;
    text-align: center;
  }
  .lp01-experience__txt {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 28px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-top: 10px;
  }
}
@media screen and (min-width:768px) {
  .lp01-experience {
    display: block;
    width: 100%;
    padding: 70px 0;
    background: linear-gradient(90deg, #ffffff 0.0%, #eef8f6 100.0%),radial-gradient(circle at center, #82bcc3 0.0%, #82bcc3 28.0%);
  }
  .lp01-experience__header {
    display: block;
    width: 100%;
    font-size: 32px;
    line-height: 40px;
    font-family: var(--noto-serif);
    font-weight: 700;
    color: #2689a0;
    text-align: center;
  }
  .lp01-experience__txt {
    display: block;
    width: 100%;
    font-size: 20px;
    line-height: 40px;
    font-family: var(--noto-serif);
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-top: 20px;
  }
}