@charset "UTF-8";

/* fv */
.fv {
    background-image: url('/tanomu/assets/images/pc/fv_bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 60px;
}

.fv .inner {
    position: relative;
    width: 1400px;
    height: 565px;
}
/*
.fv-logo {
    position: absolute;
    top: 264px;
    left: 108px;
    width: 411px;
}

.fv-main-txt {
    position: absolute;
    top: 85px;
    left: 102px;
    display: inline-block;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.fv-sub-txt {
    position: absolute;
    top: 202px;
    left: 161px;
    display: inline-block;
    font-size: 26px;
    font-weight: bold;
}
*/
.fv-main-img {
    position: absolute;
    top: 106px;
    left: 557px;
    width: 607px;
}

.fv-bubble {
    position: absolute;
    top: 56px;
    left: 1177px;
    display: inline-block;
    font-size: 22px;
    color: #fff;
}

.fv-bubble::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -25px;
    left: -16px;
    background-image: url('/tanomu/assets/images/pc/fv_line.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 128px;
    height: 89px;
}

.fv-authority {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 1169px;
    width: 144px;
    height: 144px;
    background-color: #ffd73a;
    border-radius: 50%;
}

.fv-authority_01 {
    top: 156px;
}

.fv-authority_02 {
    top: 314px;
}

.fv-authority-inner {
    text-align: center;
    font-weight: bold;
}

.fv-authority_01 .num {
    font-size: 34px;
    letter-spacing: -0.05em;
    line-height: 1;
}

.fv-authority_02 .num {
    font-size: 52px;
    line-height: 1;
}

.fv-authority-inner .large {
    font-size: 28px;
}

.fv-btn {
    /*position: absolute;
    top: 390px;
    left: 107px; */
    background-color: #e8440b;
    width: 411px;
    height: 72px;
    border: 2px solid #e8440b;
    border-radius: 10px;
}

.fv-btn:hover {
    background-color: #fff;
}

.fv-btn-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-right: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.fv-btn-inner:hover {
    color: #e8440b;
}

.fv-btn-inner::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 50px;
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transition: all 0.3s;
    transform: rotate(45deg);
}

.fv-btn-inner:hover:after {
    top: 30px;
    border-bottom: 2px solid #e8440b;
    border-right: 2px solid #e8440b;
    transform: rotate(45deg);
}

@media (max-width: 1400px) {
    .fv {
        margin-top: calc(60vw / 1400 * 100);
    }

    .fv .inner {
        width: calc(1400vw / 1400 * 100);
        height: calc(565vw / 1400 * 100);
    }

/*
    .fv-logo {
        top: calc(264vw / 1400 * 100);
        left: calc(108vw / 1400 * 100);
        width: calc(411vw / 1400 * 100);
    }

    .fv-main-txt {
        /*top: calc(85vw / 1400 * 100);
        left: calc(102vw / 1400 * 100);
        font-size: calc(40vw / 1400 * 100);
    }

    .fv-sub-txt {
        top: calc(202vw / 1400 * 100);
        left: calc(161vw / 1400 * 100);
        font-size: calc(26vw / 1400 * 100);
    }
*/
    .fv-main-img {
        top: calc(106vw / 1400 * 100);
        left: calc(557vw / 1400 * 100);
        width: calc(607vw / 1400 * 100);
    }

    .fv-bubble {
        top: calc(56vw / 1400 * 100);
        left: calc(1177vw / 1400 * 100);
        font-size: calc(22vw / 1400 * 100);
    }

    .fv-bubble::after {
        bottom: calc(-25vw / 1400 * 100);
        left: calc(-16vw / 1400 * 100);
        width: calc(128vw / 1400 * 100);
        height: calc(89vw / 1400 * 100);
    }

    .fv-authority {
        left: calc(1169vw / 1400 * 100);
        width: calc(144vw / 1400 * 100);
        height: calc(144vw / 1400 * 100);
    }

    .fv-authority_01 {
        top: calc(156vw / 1400 * 100);
    }

    .fv-authority_02 {
        top: calc(314vw / 1400 * 100);
    }

    .fv-authority_01 .num {
        font-size: calc(34vw / 1400 * 100);
    }

    .fv-authority_02 .num {
        font-size: calc(52vw / 1400 * 100);
    }

    .fv-authority-inner .large {
        font-size: calc(28vw / 1400 * 100);
    }

    .fv-btn {
       /* top: calc(390vw / 1400 * 100);
        left: calc(107vw / 1400 * 100); */
        width: calc(411vw / 1400 * 100);
        height: calc(72vw / 1400 * 100);
        border: calc(2vw / 1400 * 100) solid #e8440b;
        border-radius: calc(10vw / 1400 * 100);
    }

    .fv-btn-inner {
        padding-right: calc(20vw / 1400 * 100);
        font-size: calc(20vw / 1400 * 100);
    }

    .fv-btn-inner::after {
        top: calc(20vw / 1400 * 100);
        right: calc(50vw / 1400 * 100);
        width: calc(20vw / 1400 * 100);
        height: calc(20vw / 1400 * 100);
        border-bottom: calc(2vw / 1400 * 100) solid #fff;
        border-right: calc(2vw / 1400 * 100) solid #fff;
    }

    .fv-btn-inner:hover:after {
        top: calc(30vw / 1400 * 100);
        border-bottom: calc(2vw / 1400 * 100) solid #e8440b;
        border-right: calc(2vw / 1400 * 100) solid #e8440b;
    }
}

@media (max-width: 750px) {
    .fv {
        background-image: url('/tanomu/assets/images/sp/fv_bg.jpg');
        background-position: top center;
        background-size: contain;
        /*height: calc(1375vw / 750 * 100); */
        height: calc(1350vw / 750 * 100);
        margin-top: calc(110vw / 750 * 100);
    }

    .fv .inner {
        width: 100%;
        height: 100%;
    }

    .fv .inner::before {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #fff;
        width: 100%;
        height: calc(200vw / 750 * 100);
        z-index: 1;
    }
/*
    .fv-logo {
        width: calc(535vw / 750 * 100);
    }

    .fv-main-txt {
        top: calc(45vw / 750 * 100);
        left: 0;
        right: 0;
        font-size: calc(55vw / 750 * 100);
    }

    .fv-sub-txt {
        top: calc(211vw / 750 * 100);
        left: 0;
        right: 0;
        font-size: calc(36vw / 750 * 100);
        text-align: center;
    }
 */
    .fv-main-img {
        position: absolute;
        top: calc(650vw / 750 * 100);
        /*top: calc(679vw / 750 * 100); */
        left: 0;
        width: 100%;
    }

    .fv-bubble {
        top: calc(460vw / 750 * 100);
        /*top: calc(495vw / 750 * 100); */
        left: calc(539vw / 750 * 100);
        font-size: calc(32vw / 750 * 100);
        line-height: 1.4;
    }

    .fv-bubble::after {
        bottom: calc(-50vw / 750 * 100);
        left: calc(-33vw / 750 * 100);
        background-image: url('/tanomu/assets/images/sp/fv_line.png');
        width: calc(198vw / 750 * 100);
        height: calc(139vw / 750 * 100);
    }

    .fv-authority {
        top: calc(400vw / 750 * 100);
        /*top: calc(449vw / 750 * 100); */
        left: calc(73vw / 750 * 100);
        width: calc(205vw / 750 * 100);
        height: calc(205vw / 750 * 100);
    }

    .fv-authority_01 {
        left: calc(62vw / 750 * 100);
    }

    .fv-authority_02 {
        left: calc(284vw / 750 * 100);
    }

    .fv-authority-inner {
        font-size: calc(24vw / 750 * 100);
        line-height: 1;
    }

    .fv-authority_01 .num {
        font-size: calc(48vw / 750 * 100);
        line-height: 1.2;
    }

    .fv-authority_02 .num {
        font-size: calc(72vw / 750 * 100);
    }

    .fv-authority-inner .large {
        font-size: calc(44vw / 750 * 100);
    }
    .fv-btn {
        width: calc(574vw / 750 * 100);
        height: calc(113vw / 750 * 100);
    }
    .fv-btn-inner {
        font-size: calc(32vw / 750 * 100);
    }
    .fv-btn-inner::after {
        top: calc(37vw / 750 * 100);
        right: calc(33vw / 750 * 100);
        width: calc(25vw / 750 * 100);
        height: calc(25vw / 750 * 100);
        border-bottom: calc(2vw / 750 * 100) solid #fff;
        border-right: calc(2vw / 750 * 100) solid #fff;
    }

    .fv-btn-inner:hover:after {
        top: calc(30vw / 750 * 100);
        border-bottom: calc(2vw / 750 * 100) solid #e8440b;
        border-right: calc(2vw / 750 * 100) solid #e8440b;
    }
}

/* notice */
.notice {
    background-color: #e5e5e5;
    padding: 15px 0;
}

.notice-txt {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.notice-txt a {
    text-decoration: underline;
}

.notice-txt a:hover {
    text-decoration: none;
}

@media (max-width: 1100px) {
    .notice {
        padding: calc(15vw / 1100 * 100) 0;
    }

    .notice-txt {
        font-size: calc(22vw / 1100 * 100);
    }
}

@media (max-width: 750px) {
    .notice {
        padding: calc(40vw / 750 * 100) 0;
    }

    .notice-txt {
        font-size: calc(27vw / 750 * 100);
    }
}

/* campany-logo-area */
.campany-logo-area {
    width: 100%;
    padding: 10px 0;
    overflow-x: hidden;
}

.campany-logo-list {
    display: flex;
}

.campany-logo-item {
    animation: slide-loop 25s infinite linear 0.5s both;
}

.reverse .campany-logo-item {
    animation: slide-loop-reverse 25s infinite linear 0.5s both;
}

.campany-logo-item img {
    width: auto;
    height: 77px;
}

@media (max-width: 1100px) {
    .campany-logo-area {
        padding: calc(10vw / 1100 * 100) 0;
    }

    .campany-logo-item img {
        height: calc(77vw / 1100 * 100);
    }
}

@media (max-width: 750px) {
    .campany-logo-area {
        padding: calc(40vw / 750 * 100) 0;
    }

    .campany-logo-item img {
        height: calc(77vw / 750 * 100);
    }
}

/* solution */
.solution {
    padding: 60px 0 120px;
    text-align: center;
}

.solution-head {
    font-size: 32px;
    font-weight: bold;
}

.solution-head .accent {
    font-size: 35px;
    color: #ed582d;
}

.solution-box-list {
    display: flex;
    justify-content: space-between;
    margin-top: 75px;
}

.solution-box {
    background-color: #fff;
    width: 295px;
    border-radius: 10px;
    border: 2px solid #efefef;
    border-radius: 5px;

}

.solution-box-top {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff3eb;
    width: 100%;
    height: 147px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    clip-path: polygon(100% 0, 100% 80%, 50% 100%, 0 80%, 0 0);
}

.solution-box-head {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.solution-box-head .accent {
    color: #ed582d;
}

.solution-box-img {
    width: 210px;
    height: 150px;
    margin: 20px auto 10px;
}

.solution-box:nth-child(3) .solution-box-img {
    width: 180px;
}

.solution-box-txt {
    width: 230px;
    margin: 0 auto;
    padding-bottom: 30px;
    line-height: 1.8;
    text-align: left;
}

@media (max-width: 1100px) {
    .solution {
        padding: calc(60vw / 1100 * 100) 0 calc(120vw / 1100 * 100);
    }

    .solution-head {
        font-size: calc(32vw / 1100 * 100);
    }

    .solution-head .accent {
        font-size: calc(35vw / 1100 * 100);
    }

    .solution-box-list {
        margin-top: calc(75vw / 1100 * 100);
    }

    .solution-box {
        width: calc(295vw / 1100 * 100);
        border-radius: calc(10vw / 1100 * 100);
        border: calc(2vw / 1100 * 100) solid #efefef;
        border-radius: calc(5vw / 1100 * 100);

    }

    .solution-box-top {
        height: calc(147vw / 1100 * 100);
        padding-bottom: calc(10vw / 1100 * 100);
        font-size: calc(20vw / 1100 * 100);
    }

    .solution-box-head {
        margin-top: calc(20vw / 1100 * 100);
        font-size: calc(20vw / 1100 * 100);
    }

    .solution-box-img {
        width: calc(210vw / 1100 * 100);
        height: calc(150vw / 1100 * 100);
        margin: calc(20vw / 1100 * 100) auto calc(10vw / 1100 * 100);
    }

    .solution-box:nth-child(3) .solution-box-img {
        width: calc(180vw / 1100 * 100);
    }

    .solution-box-txt {
        width: calc(230vw / 1100 * 100);
        padding-bottom: calc(30vw / 1100 * 100);
    }
}

@media (max-width: 750px) {
    .solution {
        padding: calc(45vw / 750 * 100) 0 calc(120vw / 750 * 100);
    }

    .solution-head {
        font-size: calc(48vw / 750 * 100);
    }

    .solution-head .accent {
        font-size: 1em;
    }

    .solution-box-list {
        display: block;
        margin-top: calc(75vw / 750 * 100);
    }

    .solution-box {
        width: 100%;
        border-radius: calc(10vw / 750 * 100);
        border: calc(2vw / 750 * 100) solid #efefef;
        border-radius: calc(5vw / 750 * 100);
    }

    .solution-box+.solution-box {
        margin-top: calc(50vw / 750 * 100);
    }

    .solution-box-top {
        height: calc(225vw / 750 * 100);
        padding-bottom: calc(20vw / 750 * 100);
        font-size: calc(32vw / 750 * 100);
        line-height: 1.7;
    }

    .solution-box-head {
        margin-top: calc(45vw / 750 * 100);
        font-size: calc(40vw / 750 * 100);
    }

    .solution-box-img {
        width: calc(380vw / 750 * 100);
        height: auto;
        margin: calc(45vw / 750 * 100) auto;
    }

    .solution-box:nth-child(3) .solution-box-img {
        width: calc(290vw / 750 * 100);
    }

    .solution-box-txt {
        width: calc(580vw / 750 * 100);
        padding-bottom: calc(55vw / 750 * 100);
        font-size: calc(28vw / 750 * 100);
        line-height: 1.6;
    }
}

/* about */
.about {
    background-color: #fff8f3;
    padding: 110px 0 170px;
}

.about-head {
    font-size: 34px;
    font-weight: bold;
    color: #ed582d;
    text-align: center;
}

.about-head .accent {
    font-size: 35px;
    color: #ed582d;
}

.about-box-list {
    display: flex;
    justify-content: space-between;
    margin-top: 75px;
}

.about-box {
    background-color: #fff;
    width: 295px;
    padding: 15px 0 25px;
    border: 2px solid #efefef;
    border-radius: 5px;
}

.about-box-head {
    margin-top: 16px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.about-box-head .accent {
    color: #ed582d;
}

.about-box-img {
    width: 160px;
    height: 115px;
    margin: 20px auto 0;
}

.about-box:nth-child(2) .about-box-img {
    width: 90px;
}

.about-box:nth-child(3) .about-box-img {
    width: 220px;
}

.about-box-txt {
    width: 230px;
    margin: 15px auto 0;
    line-height: 1.8;
    text-align: left;
}

.about-example {
    margin-top: 65px;
}

.about-example-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border: 2px solid #dcdcdc;
}

.about-example-box-img {
    width: 300px;
}

.about-example-box-txt-area {
    width: 510px;
}

.about-example-box-head {
    font-size: 24px;
    font-weight: bold;
}

.about-example-box-name {
    margin-top: 10px;
    font-weight: bold;
}

.about-example-box-txt {
    margin-top: 25px;
    line-height: 1.7;
}

.about-example-link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
}

.about-example-link::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-top: 1px solid #333333;
    border-right: 1px solid #333333;
    transform: rotate(45deg);
}

.about-example-btn {
    margin: 35px auto 0;
}

@media (max-width: 1100px) {
    .about {
        padding: calc(110vw / 1100 * 100) 0 calc(170vw / 1100 * 100);
    }

    .about-head {
        font-size: calc(34vw / 1100 * 100);
    }

    .about-head .accent {
        font-size: calc(35vw / 1100 * 100);
    }

    .about-box-list {
        margin-top: calc(75vw / 1100 * 100);
    }

    .about-box {
        width: calc(295vw / 1100 * 100);
        padding: calc(15vw / 1100 * 100) 0 calc(25vw / 1100 * 100);
        border: calc(2vw / 1100 * 100) solid #efefef;
        border-radius: calc(5vw / 1100 * 100);
    }

    .about-box-head {
        margin-top: calc(16vw / 1100 * 100);
        font-size: calc(20vw / 1100 * 100);
    }

    .about-box-img {
        width: calc(160vw / 1100 * 100);
        height: calc(115vw / 1100 * 100);
        margin: calc(20vw / 1100 * 100) auto 0;
    }

    .about-box:nth-child(2) .about-box-img {
        width: calc(90vw / 1100 * 100);
    }

    .about-box:nth-child(3) .about-box-img {
        width: calc(220vw / 1100 * 100);
    }

    .about-box-txt {
        width: calc(230vw / 1100 * 100);
        margin: calc(15vw / 1100 * 100) auto 0;
    }

    .about-example {
        margin-top: calc(65vw / 1100 * 100);
    }

    .about-example-box {
        padding: calc(30vw / 1100 * 100);
        border: calc(2vw / 1100 * 100) solid #dcdcdc;
    }

    .about-example-box-img {
        width: calc(300vw / 1100 * 100);
    }

    .about-example-box-txt-area {
        width: calc(510vw / 1100 * 100);
    }

    .about-example-box-head {
        font-size: calc(24vw / 1100 * 100);
    }

    .about-example-box-name {
        margin-top: calc(10vw / 1100 * 100);
    }

    .about-example-box-txt {
        margin-top: calc(25vw / 1100 * 100);
    }

    .about-example-link {
        margin-top: calc(20vw / 1100 * 100);
    }

    .about-example-link::after {
        width: calc(10vw / 1100 * 100);
        height: calc(10vw / 1100 * 100);
        margin-left: calc(10vw / 1100 * 100);
        border-top: calc(1vw / 1100 * 100) solid #333333;
        border-right: calc(1vw / 1100 * 100) solid #333333;
    }

    .about-example-btn {
        margin: calc(35vw / 1100 * 100) auto 0;
    }
}

@media (max-width: 750px) {
    .about {
        padding: calc(110vw / 750 * 100) 0 calc(130vw / 750 * 100);
    }

    .about-head {
        font-size: calc(50vw / 750 * 100);
    }

    .about-head .accent {
        font-size: calc(35vw / 750 * 100);
    }

    .about-box-list {
        display: block;
        margin-top: calc(75vw / 750 * 100);
    }

    .about-box {
        width: 100%;
        padding: calc(65vw / 750 * 100) 0 calc(45vw / 750 * 100);
        border: calc(2vw / 750 * 100) solid #efefef;
        border-radius: calc(5vw / 750 * 100);
    }

    .about-box+.about-box {
        margin-top: calc(60vw / 750 * 100);
    }

    .about-box-head {
        margin-top: calc(45vw / 750 * 100);
        font-size: calc(34vw / 750 * 100);
        line-height: 1.6;
    }

    .about-box-img {
        width: calc(240vw / 750 * 100);
        height: auto;
        margin: 0 auto;
    }

    .about-box:nth-child(2) .about-box-img {
        width: calc(190vw / 750 * 100);
        transform: translateX(calc(29vw / 750 * 100));
    }

    .about-box:nth-child(3) .about-box-img {
        width: calc(340vw / 750 * 100);
    }

    .about-box-txt {
        width: calc(580vw / 750 * 100);
        margin: calc(25vw / 750 * 100) auto 0;
        font-size: calc(27vw / 750 * 100);
    }

    .about-example {
        margin-top: calc(55vw / 750 * 100);
    }

    .about-example-box {
        display: block;
        padding: calc(45vw / 750 * 100);
        border: calc(2vw / 750 * 100) solid #dcdcdc;
    }

    .about-example-box-img {
        width: 100%;
    }

    .about-example-box-txt-area {
        width: 100%;
        margin-top: calc(40vw / 750 * 100);
        font-size: calc(27vw / 750 * 100);
    }

    .about-example-box-head {
        font-size: calc(33vw / 750 * 100);
        line-height: 1.6;
    }

    .about-example-box-name {
        margin-top: calc(30vw / 750 * 100);
    }

    .about-example-box-txt {
        margin-top: calc(25vw / 750 * 100);
    }

    .about-example-link {
        margin-top: calc(15vw / 750 * 100);
        padding-right: calc(20vw / 750 * 100);
        font-size: calc(28vw / 750 * 100);
    }

    .about-example-link::after {
        width: calc(15vw / 750 * 100);
        height: calc(15vw / 750 * 100);
        margin-left: calc(10vw / 750 * 100);
        border-top: calc(1vw / 750 * 100) solid #333333;
        border-right: calc(1vw / 750 * 100) solid #333333;
    }

    .about-example-btn {
        margin: calc(85vw / 750 * 100) auto 0;
    }
}

/* improvement */
.improvement {
    background-color: #f5f5f5;
    padding: 110px 0 135px;
}

.improvement-head {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.improvement-head .accent {
    font-size: 35px;
    color: #ed582d;
}

.improvement-box-list {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
}

.improvement-box {
    background-color: #fff;
    width: 295px;
    padding: 15px 0 25px;
    border: 2px solid #efefef;
    border-radius: 5px;
}

.improvement-box-head {
    margin-top: 16px;
    font-size: 20px;
    font-weight: bold;
    color: #ed582d;
    text-align: center;
}

.improvement-box-img {
    width: 90px;
    margin: 20px auto 0;
}

.improvement-box:nth-child(3) .improvement-box-img {
    width: 130px;
}

.improvement-box-txt {
    width: 230px;
    margin: 15px auto 0;
    line-height: 1.8;
    text-align: left;
}

.improvement-example-btn {
    margin: 85px auto 0;
}

@media (max-width: 1100px) {
    .improvement {
        padding: calc(110vw / 1100 * 100) 0 calc(135vw / 1100 * 100);
    }

    .improvement-head {
        font-size: calc(24vw / 1100 * 100);
    }

    .improvement-head .accent {
        font-size: calc(35vw / 1100 * 100);
    }

    .improvement-box-list {
        margin-top: calc(70vw / 1100 * 100);
    }

    .improvement-box {
        width: calc(295vw / 1100 * 100);
        padding: calc(15vw / 1100 * 100) 0 calc(25vw / 1100 * 100);
        border: calc(2vw / 1100 * 100) solid #efefef;
        border-radius: calc(5vw / 1100 * 100);
    }

    .improvement-box-head {
        margin-top: calc(16vw / 1100 * 100);
        font-size: calc(20vw / 1100 * 100);
    }

    .improvement-box-img {
        width: calc(90vw / 1100 * 100);
        margin: calc(20vw / 1100 * 100) auto 0;
    }

    .improvement-box:nth-child(3) .improvement-box-img {
        width: calc(130vw / 1100 * 100);
    }

    .improvement-box-txt {
        width: calc(230vw / 1100 * 100);
        margin: calc(15vw / 1100 * 100) auto 0;
    }

    .improvement-example-btn {
        margin: calc(85vw / 1100 * 100) auto 0;
    }
}

@media (max-width: 750px) {
    .improvement {
        padding: calc(110vw / 750 * 100) 0 calc(135vw / 750 * 100);
    }

    .improvement-head {
        font-size: calc(32vw / 750 * 100);
        line-height: 1.7;
    }

    .improvement-head .accent {
        font-size: calc(50vw / 750 * 100);
    }

    .improvement-box-list {
        display: block;
        margin-top: calc(60vw / 750 * 100);
    }

    .improvement-box {
        width: 100%;
        padding: calc(85vw / 750 * 100) 0 calc(50vw / 750 * 100);
        border: calc(2vw / 750 * 100) solid #efefef;
        border-radius: calc(5vw / 750 * 100);
    }

    .improvement-box+.improvement-box {
        margin-top: calc(50vw / 750 * 100);
    }

    .improvement-box-head {
        margin-top: calc(56vw / 750 * 100);
        font-size: calc(36vw / 750 * 100);
    }

    .improvement-box-img {
        width: calc(130vw / 750 * 100);
        margin: 0 auto;
    }

    .improvement-box:nth-child(3) .improvement-box-img {
        width: calc(210vw / 750 * 100);
    }

    .improvement-box-txt {
        width: calc(580vw / 750 * 100);
        margin: calc(20vw / 750 * 100) auto 0;
        font-size: calc(28vw / 750 * 100);
        line-height: 1.7;
    }

    .improvement-example-btn {
        margin: calc(100vw / 750 * 100) auto 0;
    }
}

/* intro */
.intro {
    padding: 110px 0 125px;
}

.intro-head {
    font-size: 34px;
    font-weight: bold;
    color: #ed582d;
    text-align: center;
}

.intro-head .accent {
    font-size: 35px;
    color: #ed582d;
}

.intro-box-list {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
}

.intro-box {
    background-color: #fff8f3;
    width: 295px;
    padding: 50px 0 20px;
    border-radius: 5px;
}

.intro-box-head {
    margin-top: 26px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
}

.intro-box-img {
    width: 120px;
    margin: 0 auto;
}

.intro-box:nth-child(2) .intro-box-img {
    width: 100px;
}

.intro-box-txt {
    width: 230px;
    margin: 25px auto 0;
    line-height: 1.8;
    text-align: left;
}

.intro-example-btn {
    margin: 75px auto 0;
}

@media (max-width: 1100px) {
    .intro {
        padding: calc(110vw / 1100 * 100) 0 calc(125vw / 1100 * 100);
    }

    .intro-head {
        font-size: calc(34vw / 1100 * 100);
    }

    .intro-head .accent {
        font-size: calc(35vw / 1100 * 100);
    }

    .intro-box-list {
        margin-top: calc(70vw / 1100 * 100);
    }

    .intro-box {
        width: calc(295vw / 1100 * 100);
        padding: calc(50vw / 1100 * 100) 0 calc(20vw / 1100 * 100);
        border-radius: calc(5vw / 1100 * 100);
    }

    .intro-box-head {
        margin-top: calc(26vw / 1100 * 100);
        font-size: calc(24vw / 1100 * 100);
    }

    .intro-box-img {
        width: calc(120vw / 1100 * 100);
    }

    .intro-box:nth-child(2) .intro-box-img {
        width: calc(100vw / 1100 * 100);
    }

    .intro-box-txt {
        width: calc(230vw / 1100 * 100);
        margin: calc(25vw / 1100 * 100) auto 0;
    }

    .intro-example-btn {
        margin: calc(75vw / 1100 * 100) auto 0;
    }
}

@media (max-width: 750px) {
    .intro {
        padding: calc(110vw / 750 * 100) 0 calc(125vw / 750 * 100);
    }

    .intro-head {
        font-size: calc(50vw / 750 * 100);
    }

    .intro-head .accent {
        font-size: calc(35vw / 750 * 100);
    }

    .intro-box-list {
        display: block;
        margin-top: calc(45vw / 750 * 100);
    }

    .intro-box {
        width: 100%;
        padding: calc(50vw / 750 * 100);
        border-radius: calc(5vw / 750 * 100);
    }

    .intro-box+.intro-box {
        margin-top: calc(50vw / 750 * 100);
    }

    .intro-box-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .intro-box-img {
        width: calc(153vw / 750 * 100);
        margin: 0;
    }

    .intro-box-head {
        width: calc(355vw / 750 * 100);
        margin-top: 0;
        font-size: calc(36vw / 750 * 100);
        text-align: left;
    }

    .intro-box-img {
        width: calc(160vw / 750 * 100);
    }

    .intro-box:nth-child(2) .intro-box-img {
        width: calc(120vw / 750 * 100);
        transform: translateX(calc(25vw / 750 * 100));
    }

    .intro-box-txt {
        width: 100%;
        margin: calc(20vw / 750 * 100) auto 0;
        font-size: calc(28vw / 750 * 100);
    }

    .intro-example-btn {
        margin: calc(95vw / 750 * 100) auto 0;
    }
}

/* 20240823_TANOMU製品TOP改修 */
/* merit */
.merit {
    background-color: #f5f5f5;
    padding: 110px 0 135px;
}

.merit-head {
    font-size: 34px;
    font-weight: bold;
    color: #ed582d;
    text-align: center;
}

.merit-head .accent {
    font-size: 35px;
    color: #ed582d;
}

.merit-box-list {
    display: flex;
	flex-flow: wrap;
    justify-content: space-between;
    margin-top: 70px;
}

.merit-box {
    display: flex;
	flex-flow: column;
    justify-content: space-around;
	align-items: center;
    width: 295px;
	margin-bottom: 20px;
    padding: 20px 0;
    background-color: #fff;
    border: 2px solid #efefef;
    border-radius: 5px;
}

.merit-box-img {
	align-self: center;
    margin: 0 auto;
    width: 160px;
	height: 160px;
}

.merit-box-txt {
	align-self: center;
    width: 240px;
}

.merit-box-head {
    margin-top: 16px;
    font-size: 20px;
    font-weight: bold;
	text-align: center;
}

.merit-box-link a {
	display: block;
    width: auto;
	height: 40px;
    margin: 10px 12px 4px;
	padding: 4px 0;
	border-radius: 22px;
	background-color: #ed582d;
    text-align: center;
	font-size: 16px;
	font-weight: 600;
    line-height: 32px;
	color: #fff;
}
.merit-box-link a:hover {
	padding: 2px 0;
	background-color: #fff8f3;
	color: #ed582d;
	border: 2px solid #ed582d;
}

.cta-btn {
    background-color: #ED9E2C;
    width: 316px;
    height: 54px;
    margin: 35px auto 0;
    border: 2px solid #ED9E2C;
    border-radius: 5px;
}

.cta-btn:hover {
	background-color: #ed582d;
}

.cta-btn-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-weight: bold;
    color: #fff;
}

.cta-btn-inner:hover {
    color: #fff;
}

.cta-btn-inner::after {
    content: "";
    position: absolute;
    top: 21px;
    right: 25px;
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transition: all 0.3s;
    transform: rotate(45deg);
}

.cta-btn-inner:hover:after {
    right: 20px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}


@media (max-width: 1100px) {
    .merit {
        padding: calc(110vw / 1100 * 100) 0 calc(135vw / 1100 * 100);
    }

    .merit-head {
        font-size: calc(34vw / 1100 * 100);
    }

    .merit-box-list {
        margin-top: calc(70vw / 1100 * 100);
    }

    .merit-box {
        width: calc(295vw / 1100 * 100);
        padding: calc(15vw / 1100 * 100) 0 calc(25vw / 1100 * 100);
        border: calc(2vw / 1100 * 100) solid #efefef;
        border-radius: calc(5vw / 1100 * 100);
    }

    .merit-box-img {
        width: calc(160vw / 1100 * 100);
		height: calc(160vw / 1100 * 100);
        margin: calc(20vw / 1100 * 100) auto 0;
    }

    .merit-box-txt {
        width: calc(240vw / 1100 * 100);
        margin: calc(15vw / 1100 * 100) auto 0;
    }

    .merit-box-head {
        margin-top: calc(16vw / 1100 * 100);
        font-size: calc(20vw / 1100 * 100);
    }

	.merit-box-link a {
		display: block;
		width: auto;
		height: calc(40vw / 1100 * 100);
		font-size: calc(16vw / 1100 * 100);
		line-height: calc(32vw / 1100 * 100);
		padding-top: calc(4vw / 1100 * 100) calc(4vw / 1100 * 100);
		border-radius: calc(22vw / 1100 * 100);
	}
	.merit-box-link a:hover {
		padding: calc(4vw / 1100 * 100);
		background-color: #fff8f3;
		color: #ed582d;
		border: none;
}

	.cta-btn {
        width: calc(316vw / 1100 * 100);
        height: calc(54vw / 1100 * 100);
        border: calc(2vw / 1100 * 100) solid #ED9E2C;
        border-radius: calc(5vw / 1100 * 100);
    }

    .cta-btn-inner::after {
        top: calc(21vw / 1100 * 100);
        right: calc(25vw / 1100 * 100);
        width: calc(10vw / 1100 * 100);
        height: calc(10vw / 1100 * 100);
        border-top: calc(2vw / 1100 * 100) solid #fff;
        border-right: calc(2vw / 1100 * 100) solid #fff;
    }

    .cta-btn-inner:hover:after {
        right: calc(20vw / 1100 * 100);
        border-top: calc(2vw / 1100 * 100) solid #fff;
        border-right: calc(2vw / 1100 * 100) solid #fff;
    }
}

@media (max-width: 750px) {
    .merit {
        padding: calc(110vw / 750 * 100) 0 calc(135vw / 750 * 100);
    }

    .merit-head {
        font-size: calc(50vw / 750 * 100);
    }

    .merit-head .accent {
        font-size: calc(50vw / 750 * 100);
    }

    .merit-box-list {
        display: flex;
		flex-wrap: wrap;
        margin-top: calc(50vw / 750 * 100);
    }

    .merit-box {
		width: 48%;
        padding: calc(20vw / 750 * 100) 0;
        border: calc(2vw / 750 * 100) solid #efefef;
        border-radius: calc(5vw / 750 * 100);
    }

/*
    .merit-box+.merit-box {
        margin-top: calc(50vw / 750 * 100);
    }

    .merit-box {
        width: calc(295vw / 1100 * 100);
        padding: calc(15vw / 1100 * 100) 0 calc(25vw / 1100 * 100);
        border: calc(2vw / 1100 * 100) solid #efefef;
        border-radius: calc(5vw / 1100 * 100);
    }
*/
    .merit-box-img {
        width: calc(160vw / 750 * 100);
		height: calc(160vw / 750 * 100);
        margin: calc(20vw / 750 * 100) auto 0;
    }

    .merit-box-txt {
        width: calc(240vw / 750 * 100);
        margin: calc(15vw / 750 * 100) auto 0;
    }

    .merit-box-head {
        margin-top: calc(16vw / 750 * 100);
        font-size: calc(22vw / 750 * 100);
    }

	.merit-box-link a {
		height: calc(40vw / 750 * 100);
		font-size: calc(24vw / 750 * 100);
		line-height: calc(32vw / 750 * 100);
		padding-top: calc(4vw / 750 * 100);
		padding-bottom: calc(4vw / 750 * 100);
		border-radius: calc(22vw / 750 * 100);
	}
	.merit-box-link a:hover {
		padding: calc(4vw / 750 * 100);
		border: none;
}

    .cta-btn {
        width: calc(545vw / 750 * 100);
        height: calc(120vw / 750 * 100);
        border: calc(2vw / 750 * 100) solid #ED9E2C;
        border-radius: calc(5vw / 750 * 100);
    }

    .cta-btn-inner {
        padding-right: calc(40vw / 750 * 100);
        font-size: calc(28vw / 750 * 100);
    }

    .cta-btn-inner::after {
        top: calc(49vw / 750 * 100);
        right: calc(55vw / 750 * 100);
        width: calc(20vw / 750 * 100);
        height: calc(20vw / 750 * 100);
        border-top: calc(2vw / 750 * 100) solid #fff;
        border-right: calc(2vw / 750 * 100) solid #fff;
    }

    .cta-btn-inner:hover:after {
        right: calc(20vw / 750 * 100);
        border-top: calc(2vw / 750 * 100) solid #fff;
        border-right: calc(2vw / 750 * 100) solid #fff;
    }
}


.fv_contents {
    position: absolute;
    top: 85px;
    left: 70px;
    display: flex;
    flex-flow: column;
    align-items: center;
}
h1 > span {
    font-feature-settings: "palt";
    font-weight: bold;
    letter-spacing: .025em;
    line-height: 1.4;
}
h1 .fv-sub-txt {
    display: block;
    font-size: clamp(16px, 2.0vw, 28px);
    letter-spacing: 0;
    letter-spacing: .025em;
}
h1 .fv-main-txt {
    display: block;
    margin-top: calc(15vw / 1400 * 100);
    font-size: clamp(20px, 2.5vw, 40px);
    text-align: center;
}
.fv-logo {
    margin-top: calc(18vw / 1400 * 100);
    width: clamp(148px, 15vw, 240px);
}
.fv-btn-area {
    margin-top: 30px;
}
@media (max-width:1400px) {
    .fv_contents {
        top: calc(85vw / 1400 * 100);
        left: calc(70vw / 1400 * 100);
    }
    .fv-btn-area {
        margin-top: calc(30vw / 1400 * 100);
    }
}
@media (max-width: 750px) {
    .fv_contents {
        position: static;
        top: 0;
        left: 0;
    }
    .fv-logo {
        margin-top: calc(35vw / 750 * 100);
        width: calc(460vw / 750 * 100);
     }

    h1 .fv-main-txt {
        margin-top: calc(25vw / 750 * 100);
        font-size: calc(50vw / 750 * 100);
    }
    h1 .fv-sub-txt {
        font-size: calc(36vw / 750 * 100);
        text-align: center;
    }
    .fv-btn-area {
        position: absolute;
        top: calc(1175vw / 750 * 100);
        left: auto;
        right: auto;
        margin-top: 0;
        z-index: 2;
    }
}
.slash {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: .5em;
    font-size: clamp(12px, 2.0vw, 18px);
    font-weight: 700;
    letter-spacing: .05em;
}
.slash::before,
.slash::after {
    background-color: #333;
    border-radius: 5px;
    content: "";
    height: 2px;
    width: 1.25em;
}
.slash::before {
    margin-right: .25em;
    transform: rotate(60deg);
}
.slash::after {
    margin-left: .25em;
    transform: rotate(-60deg);
}
@media (max-width:1400px) {
    .slash {
        font-size: calc(20vw / 1400 * 100);
    }
}
@media (max-width:750px) {
    .slash {
        font-size: calc(25vw / 750 * 100);
    }
}
