@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
body {
    margin: 0;
}

.sp {
    display: none;
}

.pc {
    display: inherit;
}

.size{
    background-color: #EBEBEB;
    padding: 16px;
    margin-top: 16px;
    box-sizing: border-box;
}
.size_box{
    background-color: #fff;
    padding: 16px 0px;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: justify;
    align-items: center;
    font-size: 14px;
    box-sizing: border-box;
}
.size_box li:first-child {padding: 0px;box-sizing: border-box;}
.size_box li:last-child {padding: 0px 24px; border-left: 1px solid #333333;box-sizing: border-box;}
/*動き*/
.kv_fadein {
    opacity: 0;
    transform: translateY(20px);
}

.kv_fadein.animate {
    animation: kv_fadein 1s ease forwards;
}

@keyframes kv_fadein {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/**/
/* 新しく追加するふわふわアニメーション */
.kv_fadein.fuwafuwa {
    animation: fuwafuwa 3s ease-in-out infinite alternate;
    opacity: 1;
}

@keyframes fuwafuwa {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    30% {
        transform: translate(0, 0) rotate(2deg);
    }

    70% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(0, 0) rotate(2deg);
    }
}

/**/

.fadein_element {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s, visibility 1s, transform 1s;
}

.fadein_element_is_fadein {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    left: 0;
    right: 0;
}

/* slidein_shu_right */
.slidein_shu_right {
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    position: relative;
}

.slidein_shu_right_move {
    animation: slidein_shu_right_move 3s 1;
    opacity: 1;
    visibility: visible;
}

@keyframes slidein_shu_right_move {
    0% {
        opacity: 0;
        transform: translateX(1000px);
    }

    60% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* slidein_shu_down */
.slidein_shu_down {
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    position: relative;
}

.slidein_shu_down_move {
    animation: slidein_shu_down_move 3s 1;
    opacity: 1;
    visibility: visible;
}

@keyframes slidein_shu_down_move {
    0% {
        opacity: 0;
        transform: translateY(1000px);
    }

    60% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes kurukuru {
    0% {
        transform: rotateY(0);
    }

    100% {
        transform: rotateY(360deg);
    }
}

/**/
/**/

#endbox {
    display: none;
}

/*共通*/
section#top {
    width: 100%;
    background: #fdebc7;
    font-family: "Noto Sans", sans-serif;
    color: #4d4d4d;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 1px;
    box-sizing: border-box;
}

.asterisk {
    text-indent: -1em;
    margin-left: 1em;
}

.asterisk::before {
    content: '※';
}

.t-c {
    text-align: center;
}
#top section{box-sizing: border-box;}
/* #top section{} */
#top img {
    width: 100%;
}

.mm2 {
    font-size: 14px;
}

#top a {
    display: block;
    width: 100%;
    height: 100%;
}

#top img {
    margin-top: 0px;
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.section_wrapper {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
}

.section_title {
    max-width: 980px;
    margin: 40px auto 40px;
    width: 100%;
    box-sizing: border-box;
}

.top_title {
    max-width: 480px;
    width: 100%;
    margin: 60px auto 50px;
    box-sizing: border-box;
}

.inner {
    width: 100%;
    border-radius: 40px;
    background: #fff;
    padding: 60px;
    box-sizing: border-box;
}

/*nav*/
#top #nav {
    width: 100%;
    background-repeat: no-repeat;
    padding: 0 32px;
    margin-top: 60px;
    box-sizing: border-box;
}

#nav ul {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    background: #fff;
    max-width: 1200px;
    width: 100%;
    border-radius: 12px;
    padding: 16px 0px;
    align-items: center;
    box-sizing: border-box;
}

#nav ul li {
    width: calc(100% / 6);
    display: flex;
    padding: 0px 0px;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

#nav ul li a {
    padding: 8px 24px;
    flex-grow: 1;
    border-left: 1px solid #eb6100;
    align-items: center;
    box-sizing: border-box;
}

#nav ul li:first-child a {
    border-left: 0px solid #eb6100;
}

#nav ul li:hover a {
    opacity: 0.6;
}

@media screen and (max-width:840px) {
    #nav ul {
        flex-wrap: wrap;
        justify-content: center;
        padding: 12px 0px;
    }

    #nav ul li a {
        padding: 8px 8px;
        flex-grow: 1;
        border-left: 1px solid #eb6100;
        align-items: center;
    }
}

@media screen and (max-width:768px) {
    #top #nav {
        width: 100%;
        background-repeat: no-repeat;
        padding: 0 20px;
        margin-top: 20px;
    }

    #nav ul {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 8px;
    }

    #nav ul li {
        width: 50%;
        display: flex;
        border-left: 0px solid #eb6100;
        border-bottom: 1px solid #eb6100;
        padding: 12px 0px;
        margin: 0px 0;
        justify-content: center;
        align-items: center;
    }

    #nav ul li a {
        padding: 8px 16px;
        flex-grow: 1;
        border-left: 1px solid #eb6100;
    }

    #nav ul li:nth-child(2n+1) a {
        border-left: 0px solid #eb6100;
    }

    #nav ul li:last-child,
    #nav ul li:nth-last-child(2) {
        border-bottom: 0px solid #eb6100;
    }
}

/*mv kv*/
#top section#kv {
    padding: 0;
    box-sizing: border-box;
}

/*about*/
section#about {
    max-width: 1200px;
    width: 100%;
    margin: 60px auto 0px;
    box-sizing: border-box;
}

.inner_a {
    width: 100%;
    box-sizing: border-box;
}

/*entry*/
section#entry,
section#entry2 {
    max-width: 1200px;
    width: 100%;
    margin: 60px auto 0px;
    box-sizing: border-box;
}

.entry_box {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    padding: 300px 30px 180px 30px;
    position: relative;
    background: url(../img/topimg2.png);
    background-repeat: no-repeat;
    background-size: contain;
    box-sizing: border-box;
}

.entry_box2 {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    padding: 300px 30px 180px 30px;
    position: relative;
    background: url(../img/topimg6.png);
    background-repeat: no-repeat;
    background-size: contain;
    box-sizing: border-box;
}

#entry .entry_text,
#entry2 .entry_text {
    text-align: center;
    font-size: 20px;
    line-height: 1.75;
    box-sizing: border-box;
}

.btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px auto;
    width: 100%;
    max-width: 770px;
    box-sizing: border-box;
}

.btn li {
    width: 48.179%;
    max-width: 400px;
    border-radius: 45px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 1px;
    position: relative;
    font-weight: 600;
    height: 70px;
    padding-top: 4px;
    box-sizing: border-box;
}

.btn li:first-child {
    background: #D70A1D;
    border: 3px solid #90040B;
    box-shadow: 0 8px 0 #90040B;
}

.btn li:last-child {
    background: #0A51D7;
    border: 3px solid #003293;
    box-shadow: 0 8px 0 #003293;
}

.btn li:hover {
    top: 8px;
    box-shadow: none;
}

.btn li a {
    padding: 10px 5px;
}

.btn li span {
    display: block;
    font-size: 12px;
    padding-bottom: 4px;
}

.btn li::after {
    content: '';
    background: url(../img/arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
    height: 25px;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    position: absolute;
}

#entry .asterisk,
#entry2 .asterisk {
    font-size: 12px;
    font-weight: 500;
    margin: 0px auto;
    width: 100%;
    max-width: 740px;
    line-height: 22px;
    box-sizing: border-box;
}

/*present*/
#present {
    max-width: 1200px;
    width: 100%;
    margin: 60px auto 0px;
    box-sizing: border-box;
}

.present_box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: justify;
    align-items: stretch;
    box-sizing: border-box;
}

.present_box2 {
    width: 100%;
    box-sizing: border-box;
}

.present_box2 .boxin_l {
    float: left;
    box-sizing: border-box;
}

.present_box2 .boxin_r {
    float: right;
    box-sizing: border-box;
}

.present_box h3,
.present_box2 h3 {
    font-size: 32px;
    text-align: justify;
    line-height: 1.5;
    box-sizing: border-box;
}

.present_box h4,
.present_box2 h4 {
    font-size: 26px;
    text-align: justify;
    line-height: 1.5;
    vertical-align: bottom;
    box-sizing: border-box;
}

.present_box h4 span,
.present_box2 h4 span {
    font-size: 36px;
    text-align: justify;
    line-height: 1;
    vertical-align: bottom;
    box-sizing: border-box;
}

.present_box h5,
.present_box2 h5 {
    font-size: 24px;
    text-align: justify;
    line-height: 1.5;
    box-sizing: border-box;
}

.mgt1 {
    margin-top: 60px;
    box-sizing: border-box;
}

.present_box h6,
.present_box2 h6 {
    font-size: 20px;
    text-align: center;
    line-height: 1.5;
    padding: 12px 8px 13px 8px;
    background-color: #690b34;
    box-sizing: border-box;
}

.present_box h6.al_l,
.present_box2 h6.al_l {
    text-align: left;
    padding-left: 1.5em;
    
}

.present_box p.mm1,
.present_box2 p.mm1 {
    font-size: 14px;
    text-align: justify;
    line-height: 1.5;
    padding-top: 4px;
}

.ab1 {
    position: absolute;
    top: -90px;
    left: -20px;
    width: 320px;
    z-index: 10;
    box-sizing: border-box;
}

/*product*/
section#product {
    max-width: 1200px;
    width: 100%;
    margin: 60px auto 0px;
    box-sizing: border-box;
}

.prod1 {
    width: 100%;
    max-width: 760px;
    margin: 0px auto 0;
    box-sizing: border-box;
}

.product_box div ul {
    width: 40%;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.product_box p {
    font-size: 14px;
    line-height: 1.6;
    color: #754c24;
    text-align: justify;
    box-sizing: border-box;
}

.product_asterisk {
    text-align: left;
    font-size: 14px;
    color: #454545;
    line-height: 1.7;
    flex: auto;
    margin-top: 30px;
    box-sizing: border-box;
}

/*application*/
section#application {
    max-width: 1200px;
    width: 100%;
    margin: 60px auto 0px;
    box-sizing: border-box;
}

p.tx1 {
    font-size: 22px;
    line-height: 1.8;
    box-sizing: border-box;
}

.step_box {
    background: #fff;
    text-align: center;
    border-radius: 40px;
    background-color: #fff;
    margin: 0px auto 20px;
    padding: 0px 0px 40px 0px;
    max-width: 1200px;
    box-sizing: border-box;
}

.cp_t1 {
    border-radius: 36px 36px 0 0;
    background-color: #690b34;
    font-size: 28px;
    text-align: center;
    padding: 14px 16px 16px 16px;
    letter-spacing: 2px;
    box-sizing: border-box;
}

.step_box2 {
    background: #fff;
    text-align: center;
    border-radius: 40px;
    background-color: #fff;
    margin: 100px auto 20px;
    padding: 60px;
    max-width: 1140px;
    box-sizing: border-box;
}


.font_ki {
    width: 100%;
    max-width: 180px;
    margin: 0px auto 20px;
    box-sizing: border-box;
}


.step_inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: justify;
    align-items: stretch;
    padding: 40px 60px 0;
    box-sizing: border-box;
}

.col30 {
    width: 30%;
    box-sizing: border-box;
}

.col70 {
    width: 70%;
    padding: 16px 0px 40px 60px;
    box-sizing: border-box;
}

.col70 h3 {
    font-size: 26px;
    padding-bottom: 16px;
    box-sizing: border-box;
}

p.tx2 {
    font-size: 18px;
    padding-bottom: 16px;
    font-weight: 500;
    box-sizing: border-box;
}

p.tx3 {
    font-size: 14px;
    font-weight: 500;
    box-sizing: border-box;
}

p.tx3 span {
    font-size: 14px;
    font-weight: 400;
}


.title_box {
    background: #fff;
    text-align: center;
    border-radius: 40px;
    background-color: #fff;
    margin: 40px auto 40px;
    padding: 0px;
    max-width: 1200px;
    border: 6px solid #690b34;
    box-sizing: border-box;
}

.title_box h4.title {
    background-color: #690b34;
    border-radius: 32px 32px 0px 0px;
    padding: 14px 16px 16px 16px;
    color: #fff;
    font-size: 28px;
    letter-spacing: 2px;
    box-sizing: border-box;
}

.title_box .t_inn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: justify;
    align-items: stretch;
    padding: 40px 60px 40px;
    box-sizing: border-box;
}

.title_box .t_inn .col1 {
    width: 100%;
    box-sizing: border-box;
}

.title_box .t_inn .col40 {
    width: 40%;
    box-sizing: border-box;
}

.title_box .t_inn .col60 {
    width: 60%;
    padding: 16px 0px 24px 48px;
    box-sizing: border-box;
}

.title_box em.sp-hide {
    font-style: normal;
}

/*notes*/
#notes {
    background: #fff;
    border-radius: 13px;
    width: 100%;
    margin: 10px auto auto auto;
    position: relative;
    text-align: left;
    color: #333333;
    border: 2px solid #1873B5;
    font-weight: 500;
    box-sizing: border-box;
}

#notes .notes_box_title {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    background: #1873B5;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 20px 1em;
    box-sizing: border-box;
}

#notes .notes_inner {
    width: 89.03%;
    margin: 0 auto;
    padding: 30px 0;
    box-sizing: border-box;
}

#notes .notes_inner .t-c {
    font-size: 16px;
    line-height: 1.625;
    box-sizing: border-box;
}

#notes .notes_inner .receipt {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
    box-sizing: border-box;
}

#notes .notes_inner .receipt li:first-child {
    width: 48.31%;
    box-sizing: border-box;
}

#notes .notes_inner .receipt li:last-child {
    width: 46.62%;
    box-sizing: border-box;
}

#notes .notes_inner .receipt li:last-child span {
    width: 89.12%;
    display: block;
    margin-bottom: 18px;
    box-sizing: border-box;
}

#notes .notes_inner .receipt_2,
#notes .notes_inner .receipt_3 {
    margin-top: 50px;
    box-sizing: border-box;
}

#notes .notes_inner .receipt_2 .notes_inner_title,
#notes .notes_inner .receipt_3 .notes_inner_title {
    border-bottom: 1px solid #454545;
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 0;
    line-height: 1;
    font-weight: 700;
    box-sizing: border-box;
}

#notes .notes_inner .receipt_2 ul {
    font-size: 16px;
    line-height: 1.75;
    box-sizing: border-box;
}

#notes .notes_inner .receipt_2 .disc::before {
    content: '・';
}

#notes .notes_inner .receipt_2 .disc {
    text-indent: -1em;
    margin-left: 1em;
}

#notes .notes_inner .receipt_2 .asterisk {
    color: #F00000;
}

#notes .notes_inner .receipt_3 ul {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

#notes .notes_inner .receipt_3 ul li {
    width: 15.6%;
    box-sizing: border-box;
}

/*faq*/
section#faq {
    padding-bottom: 0;
    box-sizing: border-box;
}

#faq p {
    text-align: center;
    font-size: 20px;
    line-height: 1.75;
}

.accordion_header,
.accordion_content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    box-sizing: border-box;
}

.accordion_header {
    cursor: pointer;
    background-color: #eb6100;
    border: 0px solid #bba1cb;
    color: #fff;
    position: relative;
    border-radius: 40px;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 1px;
    box-sizing: border-box;
}

.accordion_content {
    display: none;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}

.accordion_content div.kiyaku {
    background-color: #fff;
    border-radius: 40px;
    margin-top: 20px;
    height: 480px;
    overflow-y: scroll;
    overflow-x: hidden;
    word-break: break-all;
    box-sizing: border-box;
}


.accordion_header:nth-child(n+1) {
    margin-top: 30px;
}

.accordion_header::before {
    position: absolute;
    content: '▼';
    top: 16px;
    right: 30px;
    width: 20px;
    color: #fff;
    transform: rotate(0deg);
    transition: all .3s ease-in-out;
}

.accordion_header.open::before {
    transform: rotate(180deg);
}

.accordion_header.open::after {
    opacity: 0;
}

/*terms*/
section#terms {
    padding-bottom: 50px;
    box-sizing: border-box;
}

.terms_box {
    height: 330px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 25px;
    margin: 0 auto;
    text-align: left;
    width: 100%;
    background: #fff;
    word-break: break-all;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.7;
    font-weight: 500;
    box-sizing: border-box;
}

.notes_asterisk::before {
    content: '※';
}

.notes_asterisk {
    text-indent: -1em;
    margin-left: 1em;
}

.notes_asterisk_2::before {
    content: '※';
}

.notes_asterisk_2 {
    text-indent: -1.1em;
    margin-left: 2em;
}

.maru::before {
    content: '●'
}

.maru {
    text-indent: -1em;
    margin-left: 1em;
}

.terms_box a {
    text-decoration: underline;
    font-weight: normal;
    color: #109DE1;
    display: inline !important;
}

.notes_disc {
    /*    list-style: disc;*/
    /*    margin-left: 30px;*/
    text-indent: -1em;
    margin-left: 1em;
}

.notes_disc::before {
    content: '・';
}


/*お問い合わせ*/
section#contact {
    margin: 60px auto 0px;
    padding-bottom: 60px;
    box-sizing: border-box;
}

.contact {
    max-width: 860px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
    background: #fff;
    text-align: center;
    border-radius: 40px;
    border: 4px solid #690b34;
    box-sizing: border-box;
}

.contact li:first-child {
    width: 92.28%;
    font-size: 22px;
    color: #690b34;
    line-height: 1.6;
    margin: 0 auto 24px auto;
    font-weight: 500;
    box-sizing: border-box;
}

.contact li:nth-child(2) {
    line-height: 1.6;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 22px 11px 24px;
    color: #fff;
    background: #690b34;
    display: inline-block;
    width: 350px;
    box-sizing: border-box;
}

.contact li:nth-child(3) {
    padding-top: 16px;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
    color: #690b34;
    box-sizing: border-box;
}

.contact li:nth-child(3) em {
    font-size: 26px;
    font-style: normal;
}

.contact li:nth-child(4) {
    font-size: 16px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.contact li.asterisk {
    line-height: 1.5;
    font-size: 14px;
    box-sizing: border-box;
}

.copy {
    max-width: 370px;
    width: 100%;
    padding: 40px 16px;
    margin: 0 auto;
    box-sizing: border-box;
}

@media screen and (max-width:767px) {

    .size_box{
        font-size: 12px;
        padding: 8px 16px;
    }
    .size_box li:first-child {
        padding: 8px 0px;
    }
    .size_box li:last-child {
        padding: 8px 0px;
        border-left: 0px solid #333333;
        border-top: 1px solid #333333;
    }
    /*about*/
    section#about {
        max-width: 1200px;
        width: 90%;
        margin: 20px auto 0px;
    }

    .inner_a {}

    .top_title {
        width: 90%;
        margin: 40px auto 30px;
    }

    .inner {
        width: 100%;
        border-radius: 16px;
        background: #fff;
        padding: 24px;
    }

    .section_title {
        margin: 0px auto 40px;
        width: 90%;
    }

    .entry_box {
        padding: 70% 30px 180px 30px;
        position: relative;
        background: url(../img/sp/topimg2_sp.png);
        background-repeat: no-repeat;
        background-size: contain;
    }

    .mm2 {
        font-size: 11px;
    }

    .pc {
        display: none !important;
    }

    .sp {
        display: inherit;
    }

    /*entry*/
    section#entry {
        padding: 0 0 20px 0;
        margin: 0px auto 0px;
        width: 90%;
    }

    section#entry2 {
        padding: 0 0 20px 0;
        margin: 40px auto 0px;
    }

    #entry .section_title,
    #entry2 .section_title {
        max-width: 264px;
        margin: auto auto 15px auto;
    }

    #entry .entry_text,
    #entry2 .entry_text {
        font-size: 14px;
    }

    .btn {
        display: block;
        max-width: 400px;
        margin: 20px auto;
    }

    .btn li {
        width: 100%;
        font-size: 16px;
        padding-top: 0px;
        height: 60px;
    }

    .btn li:first-child {
        margin-bottom: 16px;
    }

    .btn li:first-child {
        box-shadow: 0 5px 0 #90040B;
    }

    .btn li:last-child {
        box-shadow: 0 5px 0 #003293;
    }

    .btn li:hover {
        top: 5px;
        box-shadow: none;
    }

    .btn li span {
        font-size: 11px;
        padding-bottom: 2px;
    }

    .btn li::after {
        content: '';
        background: url(../img/arrow.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 16px;
        height: 16px;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        position: absolute;
    }

    #entry .asterisk,
    #entry2 .asterisk {
        font-size: 12px;
        line-height: 1.6;
    }

    /*present*/
    #present {
        width: 90%;
        margin: 40px auto 0px;
    }

    .present_box2 h6.al_l {
        text-align: justify;
        padding-left: 1em;
        font-size: 14px;
        /* 箇条書きが綺麗に見えるように少し左を空ける */
    }

    .present_box h3,
    .present_box2 h3 {
        font-size: 21px;
    }

    .present_box h4,
    .present_box2 h4 {
        font-size: 18px;
    }

    .present_box h4 span,
    .present_box2 h4 span {
        font-size: 24px;
    }

    .present_box h5,
    .present_box2 h5 {
        font-size: 16px;
    }

    .mgt1 {
        margin-top: 60px;
    }

    .present_box h6,
    .present_box2 h6 {
        font-size: 18px;
    }

    .present_box p,
    .present_box2 p {
        font-size: 13px;
    }

    .present_box p.mm1,
    .present_box2 p.mm1 {
        font-size: 13px;
    }

    .mgt1 {
        margin-top: 40px;
    }

    .ab1 {
        position: absolute;
        top: -50px;
        left: -10px;
        width: 180px;
        z-index: 10;
    }

    /*product*/
    section#product {
        width: 90%;
        margin: 40px auto 0px;
    }

    /*application*/
    section#application {
        width: 90%;
        margin: 40px auto 0px;
    }

    #product p {
        font-size: 14px;
        line-height: 1.5;
    }

    .ft18 {
        font-size: 18px !important;
        line-height: 1.4;
        text-align: center;
    }

    p.tx1 {
        font-size: 16px;
        line-height: 1.5;
        /* text-align: justify; */
        padding: 24px 0 8px 0;
    }

    .step_box {
        background: #fff;
        text-align: center;
        border-radius: 16px;
        background-color: #fff;
        margin: 0px auto 20px;
        padding: 0px 0px 16px 0px;
        max-width: 1200px;
    }

    .cp_t1 {
        border-radius: 16px 16px 0 0;
        background-color: #690b34;
        font-size: 20px;
        text-align: center;
        padding: 14px 16px 16px 16px;
        letter-spacing: 2px;
        line-height: 1.5;
    }

    .font_ki {
        width: 100%;
        max-width: 140px;
        margin: 0px auto 20px;
    }

    .step_inner {
        padding: 24px 24px 8px 24px;
    }

    .col30 {
        width: 100%;
    }

    .col70 {
        width: 100%;
        padding: 16px 0px 0px 0px;
    }

    p.tx2 {
        font-size: 16px;
        padding-bottom: 16px;
        font-weight: 500;
    }

    p.tx3 {
        font-size: 12px;
        font-weight: 500;
    }

    p.tx3 span {
        font-size: 12px;
        font-weight: 400;
    }

    .title_box {
        border-radius: 16px;
        margin: 20px auto 40px;
        border: 3px solid #690b34;
    }

    .title_box h4.title {
        border-radius: 14px 14px 0px 0px;
        padding: 14px 16px 16px 16px;
        color: #fff;
        font-size: 18px;
        letter-spacing: 2px;
    }

    .title_box .t_inn {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        text-align: justify;
        align-items: stretch;
        padding: 24px 24px 8px 24px;
    }

    .title_box .t_inn .col1 {
        width: 100%;
    }

    .title_box .t_inn .col40 {
        width: 100%;
    }

    .title_box .t_inn .col60 {
        width: 100%;
        padding: 16px 0px 0px 0px;
    }

    .title_box em.sp-hide {
        display: none;
        font-style: normal;
    }

    .accordion_header {
        width: 90%;
        font-size: 18px;
    }

    .accordion_content {
        display: none;
        width: 90%;
        padding: 16px 0px;
    }

    .accordion_content div.kiyaku {
        margin-top: 0px;
        border-radius: 16px;
    }

    .entry_box2 {
        max-width: 1080px;
        width: 100%;
        margin: 0 auto;
        padding: 75% 30px 180px 30px;
        background: url(../img/sp/topimg6_sp.png);
        background-repeat: no-repeat;
        background-size: contain;
    }



    /*お問い合わせ*/
    section#contact {
        margin: 20px auto 0px;
        padding-bottom: 40px;
        width: 90%;
    }

    .contact {
        border-radius: 24px;
        border: 3px solid #690b34;
    }

    .contact li:first-child {
        width: 100%;
        font-size: 16px;
        line-height: 1.5;
        font-weight: 700;
        margin: 0 auto 16px auto;
    }

    .contact li:nth-child(2) {
        margin: 0 auto 0 auto;
        line-height: 1.6;
        font-size: 14px;
        font-weight: 500;
        padding: 7px 16px 8px 17px;
        color: #fff;
        background: #690b34;
        display: inline-block;
        width: 250px;
    }

    .contact li:nth-child(3) {
        padding-top: 16px;
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 8px;
        letter-spacing: 0.03em;
        color: #690b34;
    }

    .contact li:nth-child(3) em {
        font-size: 18px;
        font-style: normal;
    }

    .contact li:nth-child(4) {
        font-size: 12px;
        margin-bottom: 0px;
    }
}