html { 
    font-family: "Noto Sans JP", serif;
    color: #282828;
}

body {
    min-width: 375px;
}

main {
    position: relative;
    overflow: hidden;
}

span {
    display: inline-block;
}

picture {
    display: block;
}

img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

a {
    display: inline-block;
}

@media screen and (min-width: 901px) {
    .hover-nomal {
        transition: opacity .5s 0s cubic-bezier(.44,.14,.09,1.02);
    }

    .hover-nomal:hover {
        opacity: .7;
    }
}

/* utility */
.u-en {
    font-family: "Outfit", sans-serif;
}

.u-color-orange {
    color: #ff9500;
}

.u-linear-orange {
    background: linear-gradient(90deg, #fca611 0%, #fc5f11 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* layout */
.l-wrapper {
    padding-left: 45px;
    padding-right: 45px;
}

.l-inner {
    margin: 0 auto;
    max-width: 1060px;
}

@media screen and (max-width: 900px) {
    .l-wrapper {
        padding-left: 25px;
        padding-right: 25px;
    }

    .l-inner {
        max-width: 500px;
    }
}

/* common */
.pc-only {
    display: block;
}

.br-pc-only {
    display: inline;
}

.sp-only {
    display: none;
}

.br-sp-only {
    display: none;
}

@media screen and (max-width: 900px) {
    .pc-only {
        display: none;
    }
    
    .br-pc-only {
        display: none;
    }
    
    .sp-only {
        display: block;
    }
    
    .br-sp-only {
        display: inline;
    }
}

@keyframes slideAnimation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes slideAnimation02 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes slideAnimation03 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}
@keyframes slideAnimation04 {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

.c-btn {
    position: relative;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 56px;
    padding-bottom: 3px;
    max-width: 358px;
    height: 69px;
    border-radius: 100vh;
    background: linear-gradient(273deg, #EF2A10 3.48%, #FC9611 83.44%);
}

.c-btn__tag {
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translate(0, -50%);
    width: 61px;
    height: 61px;
    background-color: #fff;
    border-radius: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-feature-settings: 'calt' off;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.01em;
}

.c-btn__txt {
    font-feature-settings: 'calt' off;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #fff;
}

.c-subHead {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.c-h2 {
    margin-top: 20px;
    text-align: center;
    font-feature-settings: 'calt' off;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.3;
}

@media screen and (max-width: 900px) {
    .c-btn {
        padding-left: 44px;
        padding-bottom: 2px;
        max-width: 325px;
        height: 58px;
    }
    
    .c-btn__tag {
        left: 3px;
        width: 51px;
        height: 51px;
        font-size: 16px;
    }
    
    .c-btn__txt {
        font-size: 18px;
    }

    .c-subHead {
        font-size: 17px;
    }
    
    .c-h2 {
        margin-top: 15px;
        font-size: 32px;
    }
}

/*===========================================================================*/
/*  header  */
/*===========================================================================*/
.p-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 30px;
    z-index: 90;
    transition: transform .6s 0s cubic-bezier(.43,.23,.55,.75),opacity .2s 0s cubic-bezier(.43,.23,.55,.75);
    background-color: #fff;
}

.p-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.p-header__left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.p-header__logo {
    display: flex;
    width: 138px;
    position: relative;
    z-index: 1;
    position: relative;
}

.p-header__txt {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

@media screen and (max-width: 900px) {
    .p-header {
        padding: 10px 25px;
    }
    
    .p-header__left {
        gap: 16px;
    }
    
    .p-header__logo {
        width: 92px;
    }
    
    .p-header__txt {
        font-size: 12px;
    }
}

/* hamburger */
.p-hamburger {
    width: 40px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.p-hamburger__trigger {
    cursor: pointer;
    height: 22px;
    position: relative;
    width: 40px;
    z-index: 99;
}

.p-hamburger__trigger span {
    background-color: #282828;
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
    -webkit-border-radius: 100vh;
    -moz-border-radius: 100vh;
    -ms-border-radius: 100vh;
    -o-border-radius: 100vh;
}

.p-hamburger__trigger, 
.p-hamburger__trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.p-hamburger__trigger span:nth-of-type(1) {
    top: 0;
}

.p-hamburger__trigger span:nth-of-type(2) {
    top: 10px;
}

.p-hamburger__trigger span:nth-of-type(3) {
    bottom: 0;
}

.p-hamburger__trigger.js-active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
    -webkit-transform: translateY(10px) rotate(-45deg);
    -moz-transform: translateY(10px) rotate(-45deg);
    -ms-transform: translateY(10px) rotate(-45deg);
    -o-transform: translateY(10px) rotate(-45deg);
    background-color: #fff;
}

.p-hamburger__trigger.js-active span:nth-of-type(2) {
    opacity: 0;
    background-color: #fff;
}

.p-hamburger__trigger.js-active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
    -webkit-transform: translateY(-10px) rotate(45deg);
    -moz-transform: translateY(-10px) rotate(45deg);
    -ms-transform: translateY(-10px) rotate(45deg);
    -o-transform: translateY(-10px) rotate(45deg);
    background-color: #fff;
}

@media screen and (max-width: 900px) {
    .p-hamburger {
        width: 30px;
        height: 18px;
    }
    
    .p-hamburger__trigger {
        width: 30px;
        height: 18px;
    }

    .p-hamburger__trigger span:nth-of-type(2) {
        top: 8px;
    }

    .p-hamburger__trigger.js-active span:nth-of-type(1) {
        transform: translateY(8px) rotate(-45deg);
        -webkit-transform: translateY(8px) rotate(-45deg);
        -moz-transform: translateY(8px) rotate(-45deg);
        -ms-transform: translateY(8px) rotate(-45deg);
        -o-transform: translateY(8px) rotate(-45deg);
    }

    .p-hamburger__trigger.js-active span:nth-of-type(3) {
        transform: translateY(-8px) rotate(45deg);
        -webkit-transform: translateY(-8px) rotate(45deg);
        -moz-transform: translateY(-8px) rotate(45deg);
        -ms-transform: translateY(-8px) rotate(45deg);
        -o-transform: translateY(-8px) rotate(45deg);
    }
}

.p-hamburger__content {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 99;
    background: rgba(59, 64, 70, .97);
    backdrop-filter: blur(15.8px);
    padding: 60px 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .7s 0s cubic-bezier(.44,.14,.09,1.02);
}
.p-hamburger__content.js-active {
    opacity: 1;
    pointer-events: all;
}

.p-hamburger__head {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-hamburger__head .p-header__txt {
    color: #fff;
}

.p-hamburger__inner {
    width: 100%;
}

.p-header__navs {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
}

.p-header__navs {
    display: flex;
    flex-wrap: wrap;
    font-feature-settings: 'calt' off;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .01em;
    row-gap: 39px;
}

.p-header__navs li {
    width: 50%;
}

.p-hamburger__btn--wrapper {
    text-align: center;
    margin-top: 106px;
}

@media screen and (max-width: 900px) {
    .p-hamburger__content {
        padding: 80px 25px 0;
        display: block;
    }
    
    .p-hamburger__head {
        padding: 10px 25px;
    }
    
    .p-header__navs {
        max-width: 580px;
    }
    
    .p-header__navs {
        flex-direction: column;
        font-size: 15px;
        row-gap: 30px;
    }
    
    .p-header__navs li {
        width: 100%;
    }
    
    .p-hamburger__btn--wrapper {
        margin-top: 40px;
    }
}

.p-floatSp {
    display: none;
}

@media screen and (max-width: 900px) {
    .p-floatSp {
        display: block;
        position: fixed;
        z-index: 90;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 0 10px 10px;
        text-align: center;
        transform: translate(0, 101%);
        transition: transform .7s 0s cubic-bezier(.44,.14,.09,1.02);
    }

    .p-floatSp.js-active {
        transform: translate(0, 0);
    }
}

/*===========================================================================*/
/*  mv  */
/*===========================================================================*/
.p-mv {
    margin-top: 88px;
    padding-top: 135px;
    padding-bottom: 136px;
    background: url('../img/mv-bg.webp') no-repeat center center/cover;
    overflow: hidden;
    position: relative;
}

.p-mv__contents {
    max-width: 505px;
    position: relative;
    z-index: 3;
}

.p-mv__head {
    display: flex;
    flex-direction: column;
    color: #fff;
    margin-top: 5px;
}

.p-mv__head .u-en {
    font-feature-settings: 'calt' off;
    font-size: 78px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .03em;
}

.p-mv__head .--ja {
    font-feature-settings: 'calt' off;
    font-size: 67px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .01em;
}

.p-mv__badge {
    max-width: 498px;
    margin: 20px auto 0;
}

.p-mv__caution {
    margin-top: -2px;
    font-feature-settings: 'palt' on, 'calt' off;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-align: center;
}

.p-mv__img {
    position: absolute;
    bottom: 0;
    left: calc(50% + 26px);
    z-index: 1;
    width: 542px;
}

.p-mv__logo {
    position: absolute;
    bottom: 0;
    left: calc(50% - 104px);
    z-index: 0;
    width: 992px;
}

@media screen and (max-width: 900px) {
    .p-mv {
        margin-top: 52px;
        padding-top: 30px;
        padding-bottom: 269px;
        background: url('../img/mv-bg-sp.webp') no-repeat center center/cover;
    }
    
    .p-mv__contents {
        max-width: 325px;
        position: relative;
        z-index: 3;
        margin: 0 auto;
    }
    
    .p-mv__head {
        margin-top: 0;
        text-align: center;
    }
    
    .p-mv__head .u-en {
        font-size: 50px;
    }
    
    .p-mv__head .--ja {
        font-size: 43px;
    }
    
    .p-mv__badge {
        margin: 3px auto 0;
    }
    
    .p-mv__img {
        left: calc(50% - 9px);
        width: 390px;
        transform: translate(-50%, 0);
    }
    
    .p-mv__logo {
        left: 50%;
        width: 375px;
        transform: translate(-50%, 0);
    }
}

/*===========================================================================*/
/*  logos  */
/*===========================================================================*/
.p-logos {
    overflow: hidden;
    padding: 36px 0;
}

.p-logos__inner {
    display: flex;
    gap: 20px;
}

.p-logos__img {
    width: 1830px;
    min-width: 1830px;
    animation: slideAnimation 30s infinite linear 0.2s both;
}

@media screen and (max-width: 900px) {
    .p-logos {
        padding: 5px 0 0;
    }
    
    .p-logos__inner {
        gap: 10px;
    }
    
    .p-logos__img {
        width: 1346px;
        min-width: 1346px;
        animation: slideAnimation 30s infinite linear 0.2s both;
    }
}

/*===========================================================================*/
/*  float  */
/*===========================================================================*/
.p-floatPc {
    position: fixed;
    z-index: 90;
    width: 350px;
    padding: 24px 20px 26px;
    border-radius: 14px;
    right: 23px;
    bottom: 23px;
    background-color: rgba(255,255,255,.4);
}

.p-floatPc::before {
    background-color: #fff;
    content: '';
    height: calc(100% - 14px);
    left: 50%;
    position: absolute;
    top: 50%;
    width: calc(100% - 14px);
    border-radius: 14px;
    transform: translate(-50%, -50%);
}

.p-floatPc__inner {
    position: relative;
    z-index: 2;
}

.p-floatPc__head {
    text-align: center;
    font-feature-settings: 'calt' off;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.p-floatPc__head span {
    position: relative;
    padding: 0 17px;
}
.p-floatPc__head span::before {
    background: url('../img/float-head-left.svg') no-repeat center center/contain;
    content: '';
    height: 20px;
    left: 0;
    position: absolute;
    bottom: -2px;
    width: 12px;
}
.p-floatPc__head span::after {
    background: url('../img/float-head-right.svg') no-repeat center center/contain;
    content: '';
    height: 20px;
    right: 0;
    position: absolute;
    bottom: -2px;
    width: 12px;
}

.p-floatPc__img {
    max-width: 285px;
    margin: 3px auto 0;
    transform: translate(-11px, 0);
}

.p-floatPc__btn--wrapper {
    text-align: center;
    margin-top: 8px;
}

@media screen and (min-width: 901px) {
    .p-floatPc__btn--wrapper .c-btn {
        max-width: 266px;
        height: 58px;
        padding-left: 42px;
    }

    .p-floatPc__btn--wrapper .c-btn__tag {
        width: 51px;
        height: 51px;
        font-size: 16px;
    }

    .p-floatPc__btn--wrapper .c-btn__txt {
        font-size: 16px;
    }
}

@media screen and (max-width: 900px) {
    .p-floatPc {
        position: relative;
        z-index: 90;
        width: 100%;
        padding: 15px 25px 30px;
        border-radius: 0;
        right: unset;
        bottom: unset;
    }
    
    .p-floatPc::before {
        display: none;
    }
    
    .p-floatPc__inner {
        position: relative;
        z-index: 2;
    }
    
    .p-floatPc__head {
        font-size: 15px;
    }
    
    .p-floatPc__head span::before {
        height: 18px;
        bottom: -2px;
        width: 11px;
    }
    .p-floatPc__head span::after {
        height: 18px;
        bottom: -2px;
        width: 11px;
    }
    
    .p-floatPc__img {
        max-width: 325px;
        margin: 6px auto 0;
        transform: translate(0, 0);
    }
    
    .p-floatPc__btn--wrapper {
        margin-top: 12px;
    }
}

/*===========================================================================*/
/*  sv  */
/*===========================================================================*/
.p-sv {
    position: relative;
    overflow: hidden;
    background-color: #f4f2ef;
    padding-top: 80px;
    padding-bottom: 80px;
}

.p-sv__bg01 {
    position: absolute;
    width: 1276px;
    top: 0;
    right: calc(50% - 26px);
}
.p-sv__bg02 {
    position: absolute;
    width: 1276px;
    top: 0;
    left: calc(50% - 26px);
}

.p-sv__inner {
    position: relative;
    z-index: 2;
}

.p-sv__head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    font-feature-settings: 'calt' off;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
}
.p-sv__head.sp-only {
    display: none;
}

.p-sv__head span {
    padding: 1px 10px 2px;
    background-color: #fff;
    border-radius: 4px;
}

.p-sv__badges {
    margin: 20px auto 0;
    max-width: 1023px;
    display: flex;
    justify-content: space-between;
}

.p-sv__badges li:nth-of-type(1) {
    width: calc(100%*(308/1023));
}
.p-sv__badges li:nth-of-type(2) {
    width: calc(100%*(331/1023));
}
.p-sv__badges li:nth-of-type(3) {
    width: calc(100%*(364/1023));
}

.p-sv__caution {
    margin-top: 20px;
    font-feature-settings: 'palt' on, 'calt' off;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

@media screen and (max-width: 900px) {
    .p-sv {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .p-sv__bg01 {
        width: 480px;
        right: calc(50% - 10px);
    }
    .p-sv__bg02 {
        width: 480px;
        left: calc(50% - 10px);
    }
    
    .p-sv__head {
        gap: 5px;
        font-size: 22px;
    }
    .p-sv__head.sp-only {
        display: flex;
    }
    .p-sv__head.pc-only {
        display: none;
    }
    
    .p-sv__head span {
        padding: 0 6px 1px;
        border-radius: 3px;
    }
    
    .p-sv__badges {
        max-width: 1023px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 5px;
        column-gap: 5px;
    }
    
    .p-sv__badges li:nth-of-type(1) {
        width: 100%;
        max-width: 154px;
    }
    .p-sv__badges li:nth-of-type(2) {
        width: 100%;
        max-width: 165px;
    }
    .p-sv__badges li:nth-of-type(3) {
        width: 100%;
        max-width: 181px;
    }
    
    .p-sv__caution {
        margin-top: 20px;
        font-feature-settings: 'palt' on, 'calt' off;
        font-size: 10px;
        font-weight: 700;
        line-height: 1.2;
        text-align: center;
    }
}

/*===========================================================================*/
/*  reason  */
/*===========================================================================*/
.p-reason {
    padding-top: 100px;
    padding-bottom: 100px;
}

.p-reason__head {
    margin-top: 20px;
    text-align: center;
    font-feature-settings: 'calt' off;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.3;
}

.p-reason__head span {
    position: relative;
}
.p-reason__head span::before {
    background: url('../img/reason-head-left.webp') no-repeat center center/contain;
    content: '';
    height: 52px;
    left: -44px;
    position: absolute;
    bottom: 5px;
    width: 43px;
}
.p-reason__head span::after {
    background: url('../img/reason-head-right.webp') no-repeat center center/contain;
    content: '';
    height: 52px;
    right: -44px;
    position: absolute;
    bottom: 5px;
    width: 43px;
}

.p-reason__list {
    margin-top: 80px;
}

.p-reason__list--num {
    font-feature-settings: 'calt' off;
    font-size: 19px;
    font-weight: 600;
    line-height: 1;
}

.p-reason__list--num span {
    position: relative;
    padding-bottom: 7px;
}
.p-reason__list--num span::before {
    background: linear-gradient(90deg, #fca611 0%, #fc5f11 100%);
    content: '';
    height: 2px;
    left: 50%;
    position: absolute;
    bottom: 0;
    width: 100%;
    transform: translate(-50%, 0);
}

.p-reason__list--head {
    margin-top: 15px;
    font-feature-settings: 'calt' off;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.35;
}

.p-reason__list--tag {
    margin-top: 20px;
    font-feature-settings: 'calt' off;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.p-reason__list--tag span {
    padding: 3px 10px 5px;
    border-radius: 2px;
    background: linear-gradient(90deg, #fca611 0%, #fc5f11 100%);
}

.p-reason__list--txt {
    font-feature-settings: 'palt' on, 'calt' off;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
    margin-top: 15px;
}

.p-reason__list--content01 {
    margin-bottom: 78px;
}

.p-reason__list--content01 .p-reason__list--num,
.p-reason__list--content01 .p-reason__list--head,
.p-reason__list--content01 .p-reason__list--tag,
.p-reason__list--content01 .p-reason__list--txt {
    text-align: center;
}

.p-reason__list--content02 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-reason__list--content02.--02 {
    margin-top: 60px;
    flex-direction: row-reverse;
}

.p-reason__list--txts {
    width: 46%;
}

.p-reason__list--img {
    width: 48.4%;
}

.p-reason__slide--wrapper {
    overflow: hidden;
    margin-top: 32px;
    border-radius: 10px;
    background: #F4F2EF;
    padding: 48px 0 52px;
}

.p-reason__slide--head {
    text-align: center;
}

.p-reason__slide--head>span {
    position: relative;
}

.p-reason__slide--txt {
    padding-bottom: 10px;
    position: relative;
    font-feature-settings: 'calt' off;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .01em;
}
.p-reason__slide--txt::before {
    background-color: #282828;
    content: '';
    height: 2px;
    left: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.p-reason__slide--caution {
    position: absolute;
    font-feature-settings: 'palt' on, 'calt' off;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    left: calc(100% + 4px);
    bottom: 10px;
    white-space: nowrap;
}

.p-reason__slide--inner {
    padding-top: 30px;
}

.p-reason__slide--content {
    width: 278px;
    padding: 25px 20px;
    border-radius: 16px;
    border: 1px solid #EBEBEB;
    background: #FFF;
    box-shadow: 6.6px 6.6px 24.7px 0px rgba(0, 0, 0, 0.05);
    height: auto !important;
}

.p-reason__slide--head02 {
    font-feature-settings: 'calt' off;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .01em;
}

.p-reason__slide--table {
    margin-top: 16px;
    padding: 12px 0;
    border-top: #e4e4e4 solid 1px;
    border-bottom: #e4e4e4 solid 1px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.p-reason__slide--table dl {
    display: flex;
}

.p-reason__slide--table dl dt {
    width: 67px;
    font-feature-settings: 'calt' off;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .01em;
    padding-top: 4px;
}

.p-reason__slide--table dl dd {
    width: calc(100% - 67px);
}

.p-reason__slide--table dl dd span {
    font-feature-settings: 'calt' off;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .01em;
    padding: 4px 10px 5px;
    border: #dfdfdf solid 1px;
    border-radius: 100vh;
}

.p-reason__slide--head03 {
    font-feature-settings: 'calt' off;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .01em;
    position: relative;
    padding-left: 17px;
    margin-top: 12px;
}
.p-reason__slide--head03::before {
    background: url('../img/icon-point.svg') no-repeat center center/contain;
    content: '';
    height: 13px;
    left: 0;
    position: absolute;
    top: 2px;
    width: 13px;
}

.p-reason__slide--tags {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

.p-reason__slide--tags span {
    padding: 2px 6px 3px;
    background-color: #FFEFD3;
    border-radius: 4px;
    font-feature-settings: 'calt' off;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .01em;
}

.p-reason__slide--link {
    max-width: 211px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
    height: 42px;
    background-color: #FC6F11;
    border-radius: 100vh;
    padding-bottom: 1px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #fff;
}

.p-reason__slide--prev,
.p-reason__slide--next {
    display: none;
}

.p-reason__slide--pagination {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 20px 0 0 !important;
    gap: 6px;
}

.p-reason__slide--pagination .swiper-pagination-bullet {
    margin: 0 !important;
    width: 38px !important;
    height: 3px !important;
    border-radius: 0 !important;
    background: #EEE9E2 !important;
    opacity: 1 !important;
}

.p-reason__slide--pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #CDC0AE !important;
}

@media screen and (max-width: 900px) {
    .p-reason {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .p-reason__head {
        margin-top: 10px;
        font-size: 36px;
    }

    .p-reason__head span::before {
        height: 48px;
        left: -38px;
        bottom: 3px;
        width: 39px;
    }
    .p-reason__head span::after {
        height: 48px;
        right: -38px;
        bottom: 3px;
        width: 39px;
    }
    
    .p-reason__list {
        margin-top: 25px;
    }
    
    .p-reason__list--num {
        font-size: 17px;
        text-align: center;
    }
    
    .p-reason__list--num span {
        padding-bottom: 6px;
    }
    
    .p-reason__list--head {
        margin-top: 10px;
        font-size: 28px;
        text-align: center;
    }
    
    .p-reason__list--tag {
        margin-top: 10px;
        font-size: 18px;
        text-align: center;
    }
    
    .p-reason__list--txt {
        font-size: 13px;
    }
    
    .p-reason__list--content01 {
        margin-bottom: 40px;
    }
    
    .p-reason__list--content01 .p-reason__list--txt {
        text-align: left;
    }
    
    .p-reason__list--content02 {
        display: block;
    }
    
    .p-reason__list--content02.--02 {
        margin-top: 40px;
    }
    
    .p-reason__list--txts {
        width: 100%;
    }
    
    .p-reason__list--img {
        width: 100%;
        margin-top: 15px;
    }
    
    .p-reason__slide--wrapper {
        overflow: hidden;
        margin-top: 15px;
        border-radius: 8px;
        padding: 25px 0 25px;
    }
    
    .p-reason__slide--txt {
        padding-bottom: 8px;
        font-size: 20px;
    }
    
    .p-reason__slide--caution {
        font-size: 10px;
        left: calc(100% + 4px);
        bottom: 6px;
    }
    
    .p-reason__slide--inner {
        padding-top: 15px;
        position: relative;
    }
    
    .p-reason__slide--content {
        width: 226px;
        padding: 15px;
        border-radius: 9px;
        box-shadow: 6.6px 6.6px 13px 0px rgba(0, 0, 0, 0.05);
    }
    
    .p-reason__slide--head02 {
        font-size: 13px;
    }
    
    .p-reason__slide--table {
        margin-top: 12px;
        padding: 10px 0;
        gap: 5px;
    }
    
    .p-reason__slide--table dl dt {
        width: 55px;
        font-size: 10px;
        padding-top: 3px;
    }
    
    .p-reason__slide--table dl dd {
        width: calc(100% - 55px);
    }
    
    .p-reason__slide--table dl dd span {
        font-size: 10px;
        padding: 2px 8px 3px;
    }
    
    .p-reason__slide--head03 {
        font-size: 11px;
        padding-left: 14px;
        margin-top: 12px;
    }
    .p-reason__slide--head03::before {
        height: 12px;
        top: 2px;
        width: 12px;
    }
    
    .p-reason__slide--tags {
        margin-top: 6px;
        gap: 3px;
    }
    
    .p-reason__slide--tags span {
        padding: 1px 5px 2px;
        border-radius: 3px;
    }
    
    .p-reason__slide--link {
        max-width: 176px;
        margin: 15px auto 0;
        height: 36px;
        font-size: 10px;
    }
    
    .p-reason__slide--pagination {
        gap: 4px;
    }
    
    .p-reason__slide--pagination .swiper-pagination-bullet {
        width: 15px !important;
    }
}

/*===========================================================================*/
/*  voice  */
/*===========================================================================*/
.p-voice {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #F4F2EF;
    overflow: hidden;
    position: relative;
}

.p-voice__bg01 {
    position: absolute;
    width: 1276px;
    top: 0;
    right: calc(50% + 198px);
    height: 100%;
}
.p-voice__bg02 {
    position: absolute;
    width: 1276px;
    top: 0;
    left: calc(50% - 26px);
    height: 100%;
}
.p-voice__bg01 img,
.p-voice__bg02 img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.p-voice__inner {
    position: relative;
    z-index: 2;
}

.p-voice__slide--wrapper {
    padding-top: 45px;
}

.p-voice__slide {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
}

.p-voice__slide--content {
    width: calc(50% - 17px);
    background-color: #fff;
    padding: 25px;
    position: relative;
    border-radius: 10px;
    cursor: pointer;
}

.p-voice__slide--upper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.p-voice__slide--img {
    width: 80px;
    padding-top: 13px;
}

.p-voice__slide--txts {
    width: calc(100% - 95px);
}

.p-voice__slide--age {
    font-feature-settings: 'palt' on, 'calt' off;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    color: #7c7c7c;
}

.p-voice__slide--head {
    margin-top: 5px;
    font-feature-settings: 'palt' on, 'calt' off;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: .02em;
}

.p-voice__slide--head span {
    display: inline;
}

.p-voice__slide--table {
    padding-right: 50px;
    margin-top: 20px;
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
}

.p-voice__slide--table dl {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.p-voice__slide--table dl dt {
    color: #AA9373;
    font-feature-settings: 'calt' off;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .01em;
}
.p-voice__slide--table dl:nth-of-type(2) dt {
    color: #ff9500;
}

.p-voice__slide--table dl dd {
    padding: 4px 11px 5px;
    font-feature-settings: 'calt' off;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .01em;
    border: #dfdfdf solid 1px;
    border-radius: 100vh;
}

.p-voice__slide--icon {
    width: 30px;
    height: 30px;
    background-color: #ff9500;
    border-radius: 100vh;
    right: 10px;
    bottom: 10px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-voice__slide--icon figure {
    display: flex;
    width: 12px;
}

.p-voice__slide--prev,
.p-voice__slide--next,
.p-voice__slide--pagination {
    display: none;
}

.p-voice__head02 {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 11px;
    color: #fff;
    font-feature-settings: 'calt' off;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
}
.p-voice__head02.sp-only {
    display: none;
}

.p-voice__head02>span {
    padding: 0 10px 3px;
    background: linear-gradient(90deg, #FCA611 0%, #FC5F11 100%);
}
.p-voice__head02>span:nth-of-type(2n) {
    background: linear-gradient(270deg, #FCA611 0%, #FC5F11 100%);
}

.p-voice__txt {
    margin-top: 20px;
    text-align: center;
    font-feature-settings: 'palt' on, 'calt' off;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: .02em;
}

@media screen and (max-width: 900px) {
    .p-voice {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .p-voice__bg01 {
        width: 287px;
        right: calc(50% - 10px);
    }
    .p-voice__bg02 {
        width: 287px;
        left: calc(50% - 10px);
    }
    
    .p-voice__inner {
        max-width: unset;
    }
    
    .p-voice__slide--wrapper {
        padding-top: 20px;
        width: calc(100% + 50px);
        left: -25px;
        position: relative;
    }
    
    .p-voice__slide {
        flex-wrap: nowrap;
        gap: 0;
    }
    
    .p-voice__slide--content {
        width: 305px;
        padding: 20px;
        border-radius: 8px;
        height: auto;
    }
    
    .p-voice__slide--img {
        width: 50px;
        padding-top: 0;
    }
    
    .p-voice__slide--txts {
        width: calc(100% - 60px);
    }
    
    .p-voice__slide--age {
        font-size: 10px;
    }
    
    .p-voice__slide--head {
        margin-top: 3px;
        font-size: 18px;
    }
    
    .p-voice__slide--table {
        margin-top: 20px;
        flex-direction: column;
        gap: 5px;
    }
    
    .p-voice__slide--table dl dt {
        font-size: 11px;
    }
    
    .p-voice__slide--table dl dd {
        padding: 2px 8px 3px;
        font-size: 10px;
    }
    
    .p-voice__slide--icon {
        width: 24px;
        height: 24px;
        right: 20px;
        bottom: 20px;
    }
    
    .p-voice__slide--icon figure {
        width: 11px;
    }
    
    .p-voice__slide--prev,
    .p-voice__slide--next {
        display: block;
        width: 38px;
        height: 38px;
        position: absolute;
        top: calc(50% - 29px);
        z-index: 3;
        border-radius: 100vh;
    }

    .p-voice__slide--prev {
        background: url('../img/btn-prev.webp') no-repeat center center/contain;
        right: calc(50% + 143px);
        border-radius: 38px;
        box-shadow: 4px 10px 17px 0px rgba(46, 129, 121, 0.30);
    }

    .p-voice__slide--next {
        background: url('../img/btn-next.webp') no-repeat center center/contain;
        left: calc(50% + 143px);
        box-shadow: 4px 10px 17px 0px rgba(46, 129, 121, 0.30);
    }

    .p-voice__slide--pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
    }

    .p-voice__slide--pagination .swiper-pagination-bullet {
        margin: 0 !important;
        width: 6px !important;
        height: 6px !important;
        border-radius: 100vh !important;
        background: #CFCAC4 !important;
        opacity: 1 !important;
    }
    
    .p-voice__slide--pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #FF9500 !important;
    }
    
    .p-voice__head02 {
        margin-top: 45px;
        gap: 6px;
        font-size: 31px;
    }
    .p-voice__head02.sp-only {
        display: flex;
    }
    .p-voice__head02.pc-only {
        display: none;
    }
    
    .p-voice__head02>span {
        padding: 0 5px 3px;
    }
    
    .p-voice__txt {
        margin: 20px auto 0;
        text-align: left;
        font-size: 14px;
        max-width: 500px;
    }
}

.p-voiceModal {
    width: 100%;
    height: 100vh;
    position: fixed;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    transition: opacity .5s 0s cubic-bezier(.44,.14,.09,1.02);
    opacity: 0;
    pointer-events: none;
    top: 0;
    left: 0;
}
.p-voiceModal.js-active {
    opacity: 1;
    pointer-events: all;
}

.p-modal__close {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: #282828;
    opacity: .7;
    left: 0;
    top: 0;
}

.p-voiceModal__inner {
    position: relative;
    width: 100%;
    max-width: 900px;
    background-color: #fff;
    border-radius: 10px;
    padding: 0 60px;
}

.p-voiceModal__btn {
    position: absolute;
    z-index: 2;
    width: 54px;
    right: -10px;
    top: -10px;
    cursor: pointer;
}

.p-voiceModal__wrap {
    max-height: calc(100vh - 60px);
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.p-voiceModal__wrap::-webkit-scrollbar {
    display: none;
}

.p-voiceModal__contents {
    padding: 50px 0;
}

.p-voiceModal__head {
    padding-left: 109px;
    font-feature-settings: 'palt' on, 'calt' off;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .02em;
    min-height: 72px;
}

.p-voiceModal__head span {
    display: inline;
}

.p-voiceModal__infos {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: -78px;
}

.p-voiceModal__infos--imgs {
    width: 84px;
}

.p-voiceModal__name {
    text-align: center;
    margin-top: 6px;
    color: #7c7c7c;
    font-feature-settings: 'palt' on, 'calt' off;
    font-size: 13px;
    font-weight: 700;
    line-height: 135%;
}

.p-voiceModal__name .--small {
    font-size: 12px;
}

.p-voiceModal__table {
    width: calc(100% - 109px);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 6px;
}

.p-voiceModal__table dl {
    display: flex;
    align-items: center;
    gap: 9px;
}

.p-voiceModal__table dl dt {
    color: #AA9373;
    font-feature-settings: 'calt' off;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .01em;
}
.p-voiceModal__table dl:nth-of-type(2) dt {
    color: #FF9500;
}

.p-voiceModal__table dl dd {
    font-feature-settings: 'calt' off;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .01em;
    padding: 4px 11px 5px;
    border-radius: 100vh;
    border: #dfdfdf solid 1px;
}

.p-voiceModal__content {
    position: relative;
    margin-top: 30px;
    padding-top: 5px;
    border-top: #a9a9a9 solid 1px;
}
.p-voiceModal__content::before {
    background: url('../img/media-deco-left.png') no-repeat center center/contain;
    content: '';
    height: 6px;
    left: 0;
    position: absolute;
    top: -3.5px;
    width: 5px;
}
.p-voiceModal__content::after {
    background: url('../img/media-deco-right.png') no-repeat center center/contain;
    content: '';
    height: 6px;
    right: 0;
    position: absolute;
    top: -3.5px;
    width: 5px;
}

.p-voiceModal__content h4 {
    position: relative;
    margin-top: 25px;
    font-feature-settings: 'palt' on, 'calt' off;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.65;
    padding-left: 16px;
}
.p-voiceModal__content h4::before {
    background: linear-gradient(90deg, #FFE4B4 0%, #FCA611 100%);
    content: '';
    height: 8px;
    left: 0;
    position: absolute;
    top: 10px;
    width: 8px;
    border-radius: 100vh;
}

.p-voiceModal__content p {
    margin-top: 10px;
    font-feature-settings: 'palt' on, 'calt' off;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
}

@media screen and (max-width: 900px) {
    .p-voiceModal {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .p-voiceModal__inner {
        max-width: 500px;
        border-radius: 8px;
        padding: 0 20px;
    }
    
    .p-voiceModal__btn {
        width: 28px;
        right: -5px;
        top: -5px;
    }
    
    .p-voiceModal__wrap {
        max-height: calc(100vh - 80px);
    }
    
    .p-voiceModal__contents {
        padding: 30px 0;
    }
    
    .p-voiceModal__head {
        padding-left: 0;
        font-size: 20px;
        min-height: unset;
    }
    
    .p-voiceModal__infos {
        display: flex;
        align-items: center;
        margin-top: 10px;
    }
    
    .p-voiceModal__infos--imgs {
        width: 50px;
    }
    
    .p-voiceModal__name {
        margin-top: 4px;
        font-size: 11px;
    }
    
    .p-voiceModal__name .--small {
        font-size: 10px;
    }
    
    .p-voiceModal__table {
        width: calc(100% - 65px);
        gap: 5px;
        padding-bottom: 0;
        flex-direction: column;
    }
    
    .p-voiceModal__table dl dt {
        font-size: 11px;
    }
    
    .p-voiceModal__table dl dd {
        font-size: 10px;
        padding: 2px 7px 3px;
    }
    
    .p-voiceModal__content {
        margin-top: 20px;
    }
    
    .p-voiceModal__content h4 {
        margin-top: 15px;
        font-size: 14px;
        padding-left: 12px;
    }
    .p-voiceModal__content h4::before {
        height: 6px;
        top: 10px;
        width: 6px;
    }
    
    .p-voiceModal__content p {
        margin-top: 6px;
        font-size: 13px;
    }
}

/*===========================================================================*/
/*  cta  */
/*===========================================================================*/
.p-cta {
    background: url('../img/cta-bg.webp') no-repeat center center/cover;
    overflow: hidden;
    position: relative;
    padding-top: 75px;
    padding-bottom: 75px;
}

.p-cta__imgs01 {
    overflow: hidden;
    position: absolute;
    width: 360px;
    height: 100%;
    top: 0;
    right: calc(50% + 330px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.p-cta__imgs02 {
    overflow: hidden;
    position: absolute;
    width: 360px;
    height: 100%;
    top: 0;
    left: calc(50% + 330px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.p-cta__imgs--inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.p-cta__imgs01 .p-cta__imgs--inner {
    animation: slideAnimation03 30s infinite linear 0.2s both;
}
.p-cta__imgs02 .p-cta__imgs--inner {
    animation: slideAnimation04 30s infinite linear 0.2s both;
}

.p-cta__inner {
    position: relative;
    z-index: 2;
}

.p-cta__head {
    color: #fff;
    text-align: center;
    font-feature-settings: 'calt' off;
    text-shadow: 11px 11px 28px rgba(159, 79, 0, 0.14);
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
}

.p-cta__list {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.p-cta__list li:nth-of-type(1) {
    width: 136px;
}
.p-cta__list li:nth-of-type(2) {
    width: 122px;
}
.p-cta__list li:nth-of-type(3) {
    width: 260px;
}

.p-cta__btn--wrapper {
    text-align: center;
    margin-top: 24px;
}

.p-cta__btn--wrapper .c-btn {
    background: #fff;
    box-shadow: 7.263px 7.263px 18.156px rgba(145, 58, 0, 0.20);
}

.p-cta__btn--wrapper .c-btn__tag {
    background: linear-gradient(90deg, #FCA611 0%, #FC5F11 100%);
    color: #fff;
}

.p-cta__btn--wrapper .c-btn__txt {
    color: #FC6F11;
}

@media screen and (max-width: 900px) {
    .p-cta {
        background: url('../img/cta-bg-sp.webp') no-repeat center center/cover;
        padding-top: 130px;
        padding-bottom: 130px;
    }
    
    .p-cta__imgs01 {
        width: 100%;
        height: 100px;
        top: 5px;
        right: unset;
        left: 0;
        flex-direction: row;
        gap: 5px;
    }
    .p-cta__imgs02 {
        width: 100%;
        height: 100px;
        top: unset;
        bottom: 5px;
        left: 0;
        display: flex;
        flex-direction: row;
        gap: 5px;
    }
    
    .p-cta__imgs--inner {
        gap: 5px;
        flex-direction: row;
    }
    .p-cta__imgs01 .p-cta__imgs--inner {
        animation: slideAnimation 30s infinite linear 0.2s both;
    }
    .p-cta__imgs02 .p-cta__imgs--inner {
        animation: slideAnimation02 30s infinite linear 0.2s both;
    }

    .p-cta__imgs--inner picture {
        width: 150px;
        min-width: 150px;
    }
    
    .p-cta__inner {
        position: relative;
        z-index: 2;
    }
    
    .p-cta__head {
        font-size: 32px;
    }
    
    .p-cta__list {
        margin: 10px auto 0;
        flex-wrap: wrap;
        gap: unset;
        max-width: 320px;
        column-gap: 5px;
        row-gap: 3px;
    }
    
    .p-cta__list li:nth-of-type(1) {
        width: 133px;
    }
    .p-cta__list li:nth-of-type(2) {
        width: 120px;
    }
    .p-cta__list li:nth-of-type(3) {
        width: 256px;
    }
    
    .p-cta__btn--wrapper {
        text-align: center;
        margin-top: 10px;
    }
}

/*===========================================================================*/
/*  message  */
/*===========================================================================*/
.p-message {
    overflow: hidden;
    position: relative;
    background-color: #F4F2EF;
    padding-top: 100px;
    padding-bottom: 100px;
}

.p-message__bg01 {
    position: absolute;
    width: 1276px;
    top: 0;
    right: calc(50% + 142px);
    height: 100%;
}
.p-message__bg02 {
    position: absolute;
    width: 1276px;
    top: 0;
    left: calc(50% - 101px);
    height: 100%;
}
.p-message__bg01 img,
.p-message__bg02 img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.p-message__inner {
    position: relative;
    z-index: 2;
}

.p-message__content {
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    max-width: 900px;
}

.p-message__img {
    width: 33.5%;
}

.p-message__txts {
    width: 65%;
}

.p-message__head02 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-feature-settings: 'calt' off;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}
.p-message__head02.sp-only {
    display: none;
}

.p-message__head02 span {
    padding: 3px 10px 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #FCA611 0%, #FC5F11 100%);
}

.p-message__txt {
    margin-top: 20px;
    font-feature-settings: 'palt' on, 'calt' off;
    font-size: 15px;
    line-height: 1.65;
}

.p-message__name {
    margin-top: 20px;
    font-feature-settings: 'palt' on, 'calt' off;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.65;
}

.p-message__video {
    max-width: 900px;
    margin: 30px auto 0;
    aspect-ratio: 560/315;
}

.p-message__video iframe {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 900px) {
    .p-message {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .p-message__bg01 {
        width: 400px;
        right: calc(50% - 10px);
    }
    .p-message__bg02 {
        width: 400px;
        left: calc(50% - 10px);
    }
    
    .p-message__content {
        margin: 20px auto 0;
        display: block;
    }
    
    .p-message__img {
        width: 100%;
    }
    
    .p-message__txts {
        width: 100%;
        position: relative;
        z-index: 2;
        margin-top: -16px;
    }
    
    .p-message__head02 {
        gap: 4px;
    }
    .p-message__head02.sp-only {
        display: flex;
    }
    .p-message__head02.pc-only {
        display: none;
    }
    
    .p-message__head02 span {
        padding: 3px 10px 4px;
        border-radius: 5px;
        background: linear-gradient(90deg, #FCA611 0%, #FC5F11 100%);
    }
    
    .p-message__txt {
        margin-top: 10px;
        font-size: 13px;
    }
    
    .p-message__name {
        margin-top: 10px;
        font-size: 13px;
    }
    
    .p-message__video {
        margin: 20px auto 0;
    }
}

/*===========================================================================*/
/*  cta02  */
/*===========================================================================*/
.p-cta02 {
    overflow: hidden;
    padding-top: 87px;
    padding-bottom: 85px;
    background: url('../img/cta02-bg.webp') no-repeat center center/cover;
}

.p-cta02__inner {
    position: relative;
}

.p-cta02__subHead {
    color: #fff;
    font-feature-settings: 'calt' off;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.p-cta02__subHead span {
    position: relative;
    padding: 0 25px;
}
.p-cta02__subHead span::before {
    background: url('../img/cta-grass01.webp') no-repeat center center/contain;
    content: '';
    height: 45px;
    left: 0;
    position: absolute;
    bottom: -10px;
    width: 28px;
}
.p-cta02__subHead span::after {
    background: url('../img/cta-grass02.webp') no-repeat center center/contain;
    content: '';
    height: 45px;
    right: 0;
    position: absolute;
    bottom: -10px;
    width: 28px;
}

.p-cta02__head {
    margin-top: 10px;
    color: #fff;
    font-feature-settings: 'calt' off;
    font-size: 47px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.p-cta02__img {
    position: absolute;
    width: 707px;
    top: 28px;
    left: calc(50% - 57px);
}

.p-cta02__btn--wrapper {
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

.p-cta02__btn--wrapper .c-btn {
    background: #fff;
    box-shadow: 7.263px 7.263px 18.156px rgba(145, 58, 0, 0.20);
}

.p-cta02__btn--wrapper .c-btn__tag {
    background: linear-gradient(90deg, #FCA611 0%, #FC5F11 100%);
    color: #fff;
}

.p-cta02__btn--wrapper .c-btn__txt {
    color: #FC6F11;
}

@media screen and (max-width: 1080px) {
    .p-cta02__subHead {
        text-align: center;
    }
    
    .p-cta02__head {
        text-align: center;
    }
    
    .p-cta02__img {
        position: relative;
        width: 707px;
        top: unset;
        left: unset;
        margin: 0 auto;
    }
    
    .p-cta02__btn--wrapper {
        text-align: center;
    }
}

@media screen and (max-width: 900px) {
    .p-cta02 {
        padding-top: 40px;
        padding-bottom: 30px;
        background: url('../img/cta02-bg-sp.webp') no-repeat center center/cover;
    }
    
    .p-cta02__subHead {
        font-size: 21px;
    }
    
    .p-cta02__subHead span {
        position: relative;
        padding: 0 25px;
    }
    .p-cta02__subHead span::before {
        height: 40px;
        bottom: -8px;
        width: 23px;
    }
    .p-cta02__subHead span::after {
        height: 40px;
        bottom: -8px;
        width: 23px;
    }
    
    .p-cta02__head {
        margin-top: 10px;
        font-size: 33px;
    }
    
    .p-cta02__img {
        width: 312px;
        margin: 6px auto 0;
        transform: translate(-7px, 0);
    }
    
    .p-cta02__btn--wrapper {
        margin-top: 25px;
        position: relative;
        z-index: 2;
    }
}

/*===========================================================================*/
/*  interview  */
/*===========================================================================*/
.p-interview {
    background-color: #3B4046;
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
    position: relative;
}
.p-interview::before {
    background: url('../img/interview-logo.webp') no-repeat center center/contain;
    content: '';
    height: 629px;
    left: calc(50% - 9px);
    position: absolute;
    bottom: 0;
    width: 982px;
}

.p-interview__inner {
    position: relative;
    z-index: 2;
}

.p-interview__upper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.p-interview__btns {
    display: flex;
    gap: 25px;
}

.p-interview__subHead {
    text-align: left;
}

.p-interview__head {
    text-align: left;
    color: #fff;
}

.p-interview__slide--wrapper {
    padding-top: 40px;
}

.p-interview__slide--content {
    width: 330px;
    cursor: pointer;
}

.p-interview__slide--img {
    aspect-ratio: 330/186;
    overflow: hidden;
    border-radius: 5px;
}

.p-interview__slide--img img {
    transition: transform .5s 0s cubic-bezier(.44,.14,.09,1.02);
    height: 100%;
    object-fit: cover;
}

.p-interview__slide--head {
    margin-top: 11px;
    font-feature-settings: 'calt' off;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
}

.p-interview__slide--more {
    margin-top: 15px;
    font-feature-settings: 'palt' on;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: .1em;
    color: #bbb;
}

.p-interview__slide--more span {
    text-decoration: underline;
    position: relative;
}
.p-interview__slide--more span::before {
    background: url('../img/blank-gray.svg') no-repeat center center/contain;
    content: '';
    height: 10px;
    left: calc(100% + 5px);
    position: absolute;
    top: 6px;
    width: 14px;
}

.p-interview__slide--prev,
.p-interview__slide--next {
    width: 46px;
    height: 46px;
    cursor: pointer;
}
.p-interview__slide--prev {
    background: url('../img/btn-prev02.webp') no-repeat center center/contain;
}
.p-interview__slide--next {
    background: url('../img/btn-next02.webp') no-repeat center center/contain;
}

.p-interview__slide--pagination {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 50px 0 0 !important;
    gap: 6px;
}

.p-interview__slide--pagination .swiper-pagination-bullet {
    margin: 0 !important;
    width: 38px !important;
    height: 3px !important;
    border-radius: 0 !important;
    background: #838486 !important;
    opacity: 1 !important;
}

.p-interview__slide--pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #F8F8F8 !important;
}

@media screen and (min-width: 901px) {
    .p-interview__slide--content:hover .p-interview__slide--img img {
        transform: scale(1.1);
    }
}

@media screen and (max-width: 900px) {
    .p-interview {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .p-interview::before {
        height: 306px;
        left: calc(50% - 166px);
        width: 477px;
    }
    
    .p-interview__inner {
        max-width: unset;
        width: calc(100% + 50px);
        left: -25px;
    }
    
    .p-interview__upper {
        display: block;
    }
    
    .p-interview__btns {
        display: none;
    }
    
    .p-interview__subHead {
        text-align: center;
    }
    
    .p-interview__head {
        text-align: center;
    }
    
    .p-interview__slide--wrapper {
        padding-top: 20px;
    }
    
    .p-interview__slide--content {
        width: 300px;
    }
    
    .p-interview__slide--head {
        margin-top: 10px;
        font-size: 15px;
    }
    
    .p-interview__slide--more {
        margin-top: 12px;
        font-size: 12px;
    }
    
    .p-interview__slide--more span::before {
        height: 10px;
        left: calc(100% + 4px);
        position: absolute;
        top: 4px;
        width: 13px;
    }
    
    .p-interview__slide--pagination {
        gap: 4px;
        margin-top: 20px !important;
    }
    
    .p-interview__slide--pagination .swiper-pagination-bullet {
        width: 15px !important;
    }
}

.p-interviewModal {
    width: 100%;
    height: 100vh;
    position: fixed;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    transition: opacity .5s 0s cubic-bezier(.44,.14,.09,1.02);
    opacity: 0;
    pointer-events: none;
    top: 0;
    left: 0;
}
.p-interviewModal.js-active {
    opacity: 1;
    pointer-events: all;
}

.p-interviewModal__inner {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.p-interviewModal__btn {
    position: absolute;
    z-index: 2;
    width: 54px;
    right: -10px;
    top: -10px;
    cursor: pointer;
}

.p-interviewModal__video {
    aspect-ratio: 560/315;
    width: 100%;
}

.p-interviewModal__video iframe {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 900px) {
    .p-interviewModal__btn {
        width: 28px;
        right: -5px;
        top: -5px;
    }
}

/*===========================================================================*/
/*  data  */
/*===========================================================================*/
.p-data {
    padding-top: 100px;
    padding-bottom: 46px;
}

.p-data__txt {
    margin-top: 20px;
    text-align: center;
    font-feature-settings: 'calt' off;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3; 
}

.p-data__btns {
    margin: 42px auto 0;
    max-width: 900px;
    display: flex;
    gap: 9px;
}

.p-data__btn {
    width: calc(100%/3 - 18px/3);
    height: 74px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px;
    background-color: #e6e6e6;
    border-radius: 8px 8px 0 0;
    font-feature-settings: 'calt' off;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    transition: color .5s 0s cubic-bezier(.44,.14,.09,1.02), background-color .5s 0s cubic-bezier(.44,.14,.09,1.02);
}
.p-data__btn.js-active {
    background-color: #f4f2ef;
    color: #ff9500;
}
.p-data__btn::before {
    background: linear-gradient(90deg, #FCA611 0%, #FC5F11 100%);
    content: '';
    height: 3px;
    left: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    opacity: 0;
}
.p-data__btn::after {
    background: url('../img/data-tri.svg') no-repeat center center/contain;
    content: '';
    height: 10px;
    left: 50%;
    position: absolute;
    top: 100%;
    width: 17px;
    transform: translate(-50%, 0);
    opacity: 0;
}
.p-data__btn.js-active::before {
    opacity: 1;
}
.p-data__btn.js-active::after {
    opacity: 1;
}

.p-data__contents {
    background-color: #f4f2ef;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 17px;
    border-radius: 0 0 12px 12px;
}

.p-data__content {
    max-width: 774px;
    margin: 0 auto;
    display: none;
}
.p-data__content.js-active {
    display: block;
}

.p-data__content--head {
    font-feature-settings: 'calt' off;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    text-align: center;
}

.p-data__content--head span {
    padding: 3px 10px 5px;
    border-radius: 4px;
    background: linear-gradient(90deg, #FCA611 0%, #FC5F11 100%);
}

.p-data__content--txt {
    margin-top: 15px;
    text-align: center;
    font-feature-settings: 'calt' off;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.p-data__content--img {
    margin-top: 25px;
}

.p-data__content--caution {
    margin-top: 17px;
    text-align: right;
    font-feature-settings: 'calt' off;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

@media screen and (min-width: 901px) {
    .p-data__btn:hover {
        color: #ff9500;
    }
}

@media screen and (max-width: 900px) {
    .p-data {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .p-data__txt {
        margin-top: 15px;
        text-align: left;
        font-size: 18px;
    }
    
    .p-data__btns {
        margin: 30px auto 0;
        gap: 5px;
    }
    
    .p-data__btn {
        width: calc(100%/3 - 10px/3);
        height: 52px;
        padding: 5px 2px;
        border-radius: 6px 6px 0 0;
        font-size: 12px;
    }
    .p-data__btn::before {
        height: 2px;
    }
    .p-data__btn::after {
        height: 8px;
        top: 100%;
        width: 14px;
    }
    
    .p-data__contents {
        padding: 20px 20px 10px;
        border-radius: 0 0 10px 10px;
    }
    
    .p-data__content--head {
        font-size: 22px;
    }
    
    .p-data__content--head span {
        padding: 2px 5px 3px;
        border-radius: 2px;
    }
    
    .p-data__content--txt {
        margin-top: 15px;
        text-align: left;
        font-size: 11px;
    }
    
    .p-data__content--img {
        margin-top: 20px;
    }
    
    .p-data__content--caution {
        margin-top: 10px;
        font-size: 10px;
    }
}

/*===========================================================================*/
/*  faq  */
/*===========================================================================*/
.p-faq {
    padding-top: 100px;
    padding-bottom: 100px;
}

.p-faq__list {
    max-width: 765px;
    margin: 45px auto 0;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.p-faq__list--question {
    cursor: pointer;
    position: relative;
    padding: 22px 52px 24px 76px;
    background-color: #F4F2EF;
    border-radius: 7px;
}

.p-faq__list--question .u-en {
    width: 34px;
    height: 34px;
    border-radius: 100vh;
    background: linear-gradient(90deg, #FCA611 0%, #FC5F11 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    left: 30px;
    top: 20px;
    position: absolute;
}

.p-faq__list--question .--txt {
    font-feature-settings: 'calt' off;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.p-faq__list--question .--plus {
    width: 14px;
    height: 14px;
    position: absolute;
    right: 20px;
    top: 30px;
}
.p-faq__list--question .--plus::before {
    background-color: #282828;
    content: '';
    height: 2px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    border-radius: 100vh;
}
.p-faq__list--question .--plus::after {
    background-color: #282828;
    content: '';
    height: 100%;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 2px;
    transform: translate(-50%, -50%);
    border-radius: 100vh;
}

.p-faq__list li.js-active .p-faq__list--question .--plus::after {
    opacity: 0;
}

.p-faq__list--answer {
    padding: 15px 0 0 30px;
    display: none;
}

.p-faq__list--answer .--txt {
    font-feature-settings: 'calt' off;
    font-size: 15px;
    line-height: 1.65;
}

.p-faq__list--answer .--caution {
    font-feature-settings: 'calt' off;
    font-size: 12px;
    line-height: 1.65;
    margin-top: 15px;
}

@media screen and (max-width: 900px) {
    .p-faq {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .p-faq__list {
        max-width: 765px;
        margin: 30px auto 0;
        gap: 20px;
    }
    
    .p-faq__list--question {
        padding: 12px 34px 12px 42px;
    }
    
    .p-faq__list--question .u-en {
        width: 20px;
        height: 20px;
        font-size: 12px;
        left: 12px;
        top: calc(50% - 10px);
    }
    
    .p-faq__list--question .--txt {
        font-size: 16px;
    }
    
    .p-faq__list--question .--plus {
        width: 12px;
        height: 12px;
        right: 12px;
        top: calc(50% - 6px);
    }
    
    .p-faq__list--answer {
        padding: 12px 0 0;
    }
    
    .p-faq__list--answer .--txt {
        font-size: 13px;
    }
    
    .p-faq__list--answer .--caution {
        font-size: 10px;
        margin-top: 8px;
    }
}

/*===========================================================================*/
/*  p-flow  */
/*===========================================================================*/
.p-flow{
    padding-top: 100px;
    padding-bottom: 100px;
}

.p-flow__list{
    max-width: 1060px;
    padding-top: 40px;
    margin: 0 auto;
    display: flex;
    gap: 35px;
    justify-content: space-between;
}

.p-flow__list li{
    width: 100%;
    background-color: #F4F2EF;
    padding: 32px 2px 33px;
    border-radius: 7px;
    position: relative;
}

.p-flow__list li::after{
    background: url('../img/flow-tri.svg') no-repeat center center/contain;
    position: absolute;
    content: '';
    width: 24px;
    height: 32px;
    right: -23px;
    top: 115px;
}

.p-flow__list li:last-child::after{
    content: none;
}

.p-flow__list--img{
    margin: 0 auto;
    width: 118px;
}

.p-flow__list--head{
    font-feature-settings: 'palt' on;
    margin-top: 15px;
    color:#231815;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.02em;
}

.p-flow__list--head.--row01{
    padding: 13px;
}

@media screen and (max-width: 900px) {
    .p-flow{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .p-flow__list{
        padding-top: 30px;
        gap: 19px;
        flex-direction: column;
    }
    
    .p-flow__list li{
        width: 100%;
        background-color: #F4F2EF;
        padding: 15px 5px 15px 20px;
        border-radius: 7px;
        display: flex;
        justify-content: space-between;
        gap: 15px;
        align-items: center;
    }
    
    .p-flow__list li::after{
        background: url('../img/flow-tri-sp.svg') no-repeat center center/contain;
        position: absolute;
        content: '';
        width: 30px;
        height: 12px;
        right: calc(50% - 15px);
        top: calc(100% - 1px);
    }
    
    .p-flow__list li:last-child::after{
        content: none;
    }
    
    .p-flow__list--img{
        margin: 0;
        width: 70px;
    }

    .p-flow__list--head{
        width: calc(100% - 85px);
        margin-top: 0px;
        font-size: 16px;
        letter-spacing: 0.02em;
        text-align: left;
    }
    
    .p-flow__list--head.--row01{
        padding: 0px;
    }
}


/*===========================================================================*/
/*  p-media  */
/*===========================================================================*/
.p-media{
    background-color: #F4F2EF;
    padding-top: 100px;
    padding-bottom: 65px;
}

.p-media__table{
    margin-top: 45px;
}

.p-media__table dl{
    width: 100%;
    display: flex;
    padding-top: 35px;
    padding-bottom: 50px;
    border-top: #a9a9a9 solid 1px;
    position: relative;
}

.p-media__table dl::before{
    background: url('../img/media-deco-left.png') no-repeat center center/contain;
    position: absolute;
    content: '';
    width: 6px;
    height: 5px;
    left: -4px;
    top: -3px;
}

.p-media__table dl::after{
    background: url('../img/media-deco-right.png') no-repeat center center/contain;
    position: absolute;
    content: '';
    width: 6px;
    height: 5px;
    right: -4px;
    top: -3px;
}

.p-media__table dl dt{
    width: 294px;
}

.p-media__table dl dt figure {
    max-width: 185px;
}

.p-media__table dl dd {
    width: calc(100% - 294px);
}

.p-media__list{
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.p-media__list li{
    width: calc(50% - 20px);
}

.p-media__list--img{
    overflow: hidden;
    border-radius: 5px;
    aspect-ratio: 363/191;
}

.p-media__list--img img{
    height: 100%;
    object-fit: cover;
    transition: transform .5s 0s cubic-bezier(.44,.14,.09,1.02);
}

.p-media__list--head{
    font-feature-settings: 'calt' off;
    margin-top: 15px;
    text-align: justify;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.p-media__list--more {
    margin-top: 15px;
}

.p-media__list--more span{
    font-feature-settings: 'palt' on;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.1em;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: black;
    position: relative;
}

.p-media__list--more span::before{
    background: url('../img/blank-black.svg') no-repeat center center/contain;
    position: absolute;
    content: '';
    width: 15px;
    height: 11px;
    left: calc(100% + 5px);
    top: 6px;
}

@media screen and (min-width: 901px) {
    .p-media__list--link:hover .p-media__list--img img {
        transform: scale(1.1);
    }
}

@media screen and (max-width: 900px) {
    .p-media{
        padding-top: 40px;
        padding-bottom: 10px;
    }
    
    .p-media__table{
        margin-top: 30px;
    }
    
    .p-media__table dl{
        padding-top: 30px;
        padding-bottom: 30px;
        border-top: #a9a9a9 solid 1px;
        flex-direction: column;
    }
    
    .p-media__table dl::before{
        background: url('../img/media-deco-left.png') no-repeat center center/contain;
        position: absolute;
        content: '';
        width: 6px;
        height: 5px;
        left: -4px;
        top: -3px;
    }
    
    .p-media__table dl::after{
        background: url('../img/media-deco-right.png') no-repeat center center/contain;
        position: absolute;
        content: '';
        width: 6px;
        height: 5px;
        right: -4px;
        top: -3px;
    }
    
    .p-media__table dl dt{
        width: 100%;
    }
    
    .p-media__table dl dt figure {
        max-width: 120px;
    }
    .p-media__table dl:nth-of-type(2) dt figure {
        max-width: 199px;
    }
    
    .p-media__table dl dd {
        width: 100%;
        padding-top: 20px;
    }
    
    .p-media__list{
        flex-direction: column;
        gap: 25px;
    }
    
    .p-media__list li{
        width: 100%;
    }
    
    .p-media__list--head{
        margin-top: 10px;
        font-size: 15px;
    }

    .p-media__list--more {
        margin-top: 12px;
    }
    
    .p-media__list--more span{
        font-size: 14px;
    }
    
    .p-media__list--more span::before{
        width: 15px;
        height: 11px;
        left: calc(100% + 5px);
        top: 6px;
    }
}


/*===========================================================================*/
/*  footer  */
/*===========================================================================*/
.p-footer__inner{
    width: 100%;
    padding: 50px 80px;
    z-index: 90;
    background-color: #fff;
}

.p-footer__logo{
    width: 206px;
    height: 100%;
    margin: 0 auto;
}

.p-footer__nav{
    justify-content: center;
    padding-top: 40px;
    display: flex;
    gap: 36px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.7;
    text-decoration-line: underline;
    text-decoration-style: solid;
}

@media screen and (max-width: 900px) {
    .p-footer {
        margin-bottom: 60px;
    }

    .p-footer__inner{
        padding: 40px 56px;
        max-width: 375px;
    }

    .p-footer__logo{
        width: 130px;
    }

    .p-footer__nav{
        padding-top: 25px;
        gap: 15px;
        flex-wrap: wrap;
        font-size: 12px;
    }
}