/*共通*/
html {
    font-family: "Zen Old Mincho", serif;
}
#about,
#m-trailer,
#problem,
#feature,
#operation {
    padding-top: 150px;
}
#about,
#m-trailer,
#problem,
#feature,
#operation,
#contract,
#contact-form,
footer {
    background-color: #fff;
}
.inner {
    max-width: 1200px;
    margin: 0 auto;
}
.section-ttl p {
    font-size: 10px;
    padding-left: 10px;
}
.section-ttl h2{
    font-size: 35px;
    font-weight: bold;
}
.section-ttl .sub-ttl {
    padding: 20px 0;
    font-size: 18px;
}
.section-ttl-wh p {
    font-size: 10px;
    padding-left: 10px;
    color: #fff;
}
.section-ttl-wh h2{
    font-size: 35px;
    font-weight: bold;
    color: #fff;
}
.section-ttl-wh .sub-ttl {
    padding: 20px 0;
    color: #fff;
    font-size: 18px;
}
.sp_only {
    display: none;
}
.pc_only {
    display: block;
}

/**************************
        メインビジュアル
***************************/
#mv {
    width: 100%;
    position: relative;
}
#mv .txt-wrap {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 3;
}
#mv .txt-wrap h2 {
    margin-top: 60px;
    font-size: 30px;
}
#mv .bg-wrap {
    width: 100%;
    height: 100vh;
}
#mv .bg-wrap::after {
    content: '';
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}
#mv .bg-wrap img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
/*スクロールダウン全体の場所*/
.scrolldown{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  right:5%;
  bottom: 15%;
    /*全体の高さ*/
  height:50px;
  z-index: 3;
}
.scrolldown span{
    position: absolute;
    top: -100px;
    left: -73px;
    width: 151px;
    transform: rotate(90deg);
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.05em;
}
.scrolldown::after{
    content: "";
    position: absolute;
    top: -10px;
    width: 2px;
    height: 100px;
    background: #fff;
    animation: pathmove 1s  infinite;
    opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
    0%{
        height:0;
        top:0;
        opacity: 0;
    }
    20%{
        height:20px;
        opacity: .4;
    }
    40%{
        height:40px;
        opacity: .6;
    }
    80%{
        height:80px;
        opacity: .8;
    }
    100%{
        height:80px;
        top:70px;
        opacity: 0;
    }
}

/***************************
            About
***************************/
#about .about-contents {
    width: 80%;
    margin: 50px auto;
}

#about .about-contents h3 {
    font-size: 45px;
    margin-bottom: 50px;
}
#about .about-contents p {
    font-size: 18px;
    margin: 30px 0;
}
#about .slider {
    width: 100%;
    height: 500px;
    background-color: #000;
}
#about .slider p {
    color: #fff;
}
.a-slider {
    margin: 0 auto;
    width: 100%;
}
.a-slider .slider-img {
    margin: 0 10px;
}
.a-slider .slider-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/***************************
    トレーラーハウスのメリット
***************************/
#m-trailer {
    padding-bottom: 50px;
}
#m-trailer .mtrailer-top {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 50px 0;
}
#m-trailer .mtrailer-top .top-item {
    width: calc(100% / 3);
    aspect-ratio: 1 / 1;
    position: relative;
}
#m-trailer .mtrailer-top .top-item::after {
    content: '';
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
    transition: all .2s ease;
}
#m-trailer .mtrailer-top .top-item .item-txt {
    position: absolute;
    width: 73%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 3;
    transition: all .2s ease;
}
#m-trailer .mtrailer-top .top-item .item-txt p {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: left;
}
#m-trailer .mtrailer-top .top-item .item-txt h3 {
    font-size: 25px;
    text-align: left;
    margin-bottom: 20px;
}
#m-trailer .mtrailer-top .top-item .item-txt img {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: rotate(-90deg);
    width: 25px;
    height: auto;
    opacity: .8;
}
#m-trailer .mtrailer-top .top-item .item-txt .hover-txt {
    display: none;
    font-size: 18px;
    transition: all .2s ease;
}
#m-trailer .mtrailer-top .top-item:hover::after {
    background: none;
    transition: all .2s ease;
}
#m-trailer .mtrailer-top .top-item:hover .item-txt {
    background-color: rgba(0, 0, 0, .6);
    padding: 20px;
    width: 90%;
    border-radius: 20px;
    transition: all .2s ease;
}
#m-trailer .mtrailer-top .top-item:hover .item-txt .hover-txt {
    display: block;
    transition: all .2s ease;
}
#m-trailer .mtrailer-top .top-item:hover .item-txt img {
    display: none;
    transition: all .2s ease;
}
#m-trailer .mtrailer-top .top-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
    transition: all .2s ease;
}
#m-trailer .mtrailer-bottom {
    position: relative;
    margin-bottom: 100px;
    margin-top: 150px;
}
#m-trailer .mtrailer-bottom h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
}
#m-trailer .mtrailer-bottom .txt-box {
    border: 2px dashed #000;
    padding: 45px 250px 45px 45px;
    position: relative;
}
#m-trailer .mtrailer-bottom .txt-box p {
    margin-bottom: 15px;
}
#m-trailer .mtrailer-bottom img {
    position: absolute;
    top: -2%;
    right: -5%;
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
}
#m-trailer .mtrailer-bottom2 {
    position: relative;
    margin-bottom: 150px;
}
#m-trailer .mtrailer-bottom2 h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
}
#m-trailer .mtrailer-bottom2 .txt-box {
    border: 2px dashed #000;
    padding: 45px 250px 45px 45px;
    position: relative;
}
#m-trailer .mtrailer-bottom2 .txt-box .txt-area1 {
    margin-bottom: 50px;
}
#m-trailer .mtrailer-bottom2 .txt-box h4 {
    font-weight: bold;
    margin-bottom: 15px;
}
#m-trailer .mtrailer-bottom2 .txt-box p {
    margin-bottom: 15px;
    padding-left: 30px;
}
#m-trailer .mtrailer-bottom2 img {
    position: absolute;
    top: -2%;
    right: -5%;
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
}

.marker {
    background:linear-gradient(transparent 50%, rgba(255, 153, 0,0.5) 50%);
    display: inline;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition:background-size 1.5s;
}
/* マーカーが引かれる際に付与するクラス */
.marker.on {
    background-size: 100% 100%;
}
/***************************
    トレーラーハウスのお悩み
***************************/
#problem {
    background-color: #222222;
    padding-bottom: 150px;
}

#problem .prob-contents {
    position: relative;
    height: 600px;
}
#problem .prob-contents .place {
    position: absolute;
    top: 40%;
    left: 35%;
    transform: translate(-50%, -50%);
    width: 424px;
    height: 424px;
    border-radius: 50%;
    background: url(./img/prob_place.png);
    background-size: cover;
}
#problem .prob-contents .place::before {
    content: '';
    width: 424px;
    height: 424px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s;
}

#problem .prob-contents .place .txt-wrap {
    position: relative;
    height: 424px;
}
#problem .prob-contents .place .txt-wrap h3 {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 35px;
    font-weight: bold;
    color: #fff;
}
#problem .prob-contents .place .txt-wrap p {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #fff;
}

#problem .prob-contents .operation {
    position: absolute;
    top: 60%;
    left: 65%;
    transform: translate(-50%, -50%);
    width: 424px;
    height: 424px;
    border-radius: 50%;
    background: url(./img/prob_operation.png);
    background-size: cover;
}
#problem .prob-contents .operation::before {
    content: '';
    width: 424px;
    height: 424px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s;
}
#problem .prob-contents .operation .txt-wrap {
    position: relative;
    height: 424px;
    width: 100%;
}
#problem .prob-contents .operation .txt-wrap h3 {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 35px;
    font-weight: bold;
    color: #fff;
}
#problem .prob-contents .operation .txt-wrap p {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #fff;
}
#problem .solution-txt {
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}
#problem .solution-txt h4 {
    font-size: 25px;
    color: #fff;
}

/***************************
        T-HOPの特徴
***************************/
#feature {
    padding-bottom: 50px;
}
#feature .feature-contents .contents-item {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    column-gap: 50px;
    align-items: center;
    margin: 50px 0 100px 0;
}
#feature .feature-contents .contents-item:nth-child(even) {
    flex-direction: row-reverse;
}
#feature .feature-contents .contents-item .img-wrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    column-gap: 10px;
    width: 40%;
}
#feature .feature-contents .contents-item .img-wrap .img-left {
    width: fit-content;
}
#feature .feature-contents .contents-item .img-wrap p {
    width: 250px;
    height: 170px;
    background-color: #fff;
    margin-bottom: 10px;
}
#feature .feature-contents .contents-item .img-wrap img {
    width: 250px;
    height: 170px;
    object-fit: cover;
    margin-bottom: 10px;
    vertical-align: middle;
}

#feature .feature-contents .contents-item .txt-wrap {
    padding: 50px;
    background-color: rgba(0, 0, 0, .1);
    border-radius: 10px;
    height: auto;
    width: 50%;
}
#feature .feature-contents .contents-item .txt-wrap h3 {
    text-align: center;
    font-size: 35px;
    font-weight: bold;
}
#feature .feature-contents .contents-item .txt-wrap h4 {
    text-align: center;
    font-size: 16px;
}
#feature .feature-contents .contents-item .txt-wrap ul {
    margin-top: 50px;
}

/***************************
        T-HOPのメリット
***************************/
#m-thop {
    height: fit-content;
    position: relative;
}
#m-thop::before {
    content:'';
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: url(./img/trailerhouse2.png) no-repeat center / cover;
    z-index: -1;
}
#m-thop .section-ttl {
    position: absolute;
    top: -2%;
}
#m-thop .scrollwrap {
    margin: 50px 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    column-gap: 110px;
}
#m-thop .scrollwrap .scroll-left {
    width: calc(100% / 2);
}
#m-thop .scrollwrap .scroll-right {
    width: calc(100% / 2);
    padding: 200px 0;
}
#m-thop .scrollwrap .scroll-item {
    background-color: #fff;
    padding: 50px;
    margin: 100px 0;
    height: 300px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
#m-thop .scrollwrap .scroll-item .ttl {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    column-gap: 35px;
}
#m-thop .scrollwrap .scroll-item .ttl img {
    width: 35px;
    height: 35px;
    object-fit: cover;
}
#m-thop .scrollwrap .scroll-item .ttl h3 {
    font-size: 25px;
}
#m-thop .scrollwrap .scroll-item p {
    margin-top: 35px;
    font-size: 18px;
}

/***************************
    T-HOP運用イメージ
***************************/
#operation .operation-contents{
    margin: 50px 0 0;
    background-color: #E5E5E5;
    padding: 65px 50px;
}

/***************************
    購入方法と契約の流れ
***************************/
#contract {
    padding-top: 150px;
}
#contract .contract-contents {
    margin: 50px 0 0;
    padding-bottom: 50px;
}
#contract .contract-contents .contract-item {
    margin-bottom: 50px;
    text-align: center;
}
#contract .contract-contents .contract-item h3 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 30px;
}
#contract .contract-contents .contract-item p {
    font-size: 18px;
}
#contract .contract-contents .contract-item p span {
    font-size: 16px;
}
#contract .contract-contents .contract-item img {
    margin: 30px 0;
}
#contract .contract-contents .contract-item .step-txt {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0 30px 0 20px;
    column-gap: 150px;
}
#contract .contract-contents .contract-item .item-img {
    margin: 50px 0;
    background-color: #E5E5E5;
    padding: 65px 50px;
}
#contract .contract-contents .contract-item .merideme {
    margin: 50px 0;
    background-color: #E5E5E5;
    padding: 100px;
}
#contract .contract-contents .contract-item .merideme .item-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    column-gap: 50px;
}
#contract .contract-contents .contract-item .merideme .item-inner .item-item {
    width: calc((100% - 50px) / 2);
    padding: 40px;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
}
#contract .contract-contents .contract-item .merideme .item-inner .item-item h4 {
    background-color: #21D2C4;
    border-radius: 10px;
    padding: 5px;
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
}
#contract .contract-contents .contract-item .merideme .item-inner .item-item li {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    column-gap: 30px;
    text-align: left;
}

/***************************
            ご購入
***************************/
#purchase {
    background-color: #222222;
    padding: 50px 0;
    text-align: center;
    color: #fff;
}
#purchase h3 {
    font-size: 18px;
    margin-bottom:30px;
}
#purchase .btn-wrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    column-gap: 105px;
    margin: 30px;
}
#purchase .btn-wrap a {
    background-color: #C1957C;
    color: #fff;
    padding: 15px 40px 17px;
    font-size: 1.8em;
}
#purchase .btn-wrap a span {
    font-size: 12px;
    font-weight: 100;
}
/***************************
        お問い合わせ
***************************/
#contact-form {
    padding-top: 50px;
	width:100%;
	margin:0 auto;
}
#contact-form h3 {
    font-size: 18px;
    text-align: center;
    font-weight: bold;
}
#contact-form p {
    text-align: center;
}
#contact-form table.formTable{
	width:100%;
	margin:50px auto;
}
#contact-form table.formTable tr {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    column-gap: 100px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ccc;
}
#contact-form table.formTable th{
	text-align:left;
    width: 15%;
    margin-bottom: 20px;
}
#contact-form table.formTable td {
    width: 100%;
    margin-bottom: 20px;
}
#contact-form table.formTable td input,
#contact-form table.formTable td textarea {
    border: 2px solid #ccc;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background-color: #f6f8fa;
}
#contact-form .btn-wrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
}
#contact-form .submit-btn {
    width: 100%;
    margin: 0 auto;
}
#contact-form .submit-btn input {
    width: 100%;
    background: #0e2663;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 500px;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
#contact-form .submit-btn input:hover {
    opacity: 0.8;
    cursor: pointer;
}
#contact-form .submit-btn input:hover:after {
    right: 1.4rem;
}
#contact-form .submit-btn .back {
    width: 100%;
    background: #ccc;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 500px;
    padding: 10px 25px;
    color: #000;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
#contact-form .submit-complete p {
    margin: 20px auto;
}
#contact-form .submit-complete a {
    display: block;
    text-align: center;
    color: blue;
}
#contact-form .submit-complete a:hover {
    opacity: 0.8;
}
.error_messe {
    color: red;
    margin: 30px 0;
}
/***************************
        フッター
***************************/
footer {
    padding: 150px 0 20px 0;
    text-align: center;
}
footer img {
    width: 200px;
    height: auto;
}
footer ul {
    margin: 50px 0 150px 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 50px;
}
footer ul li {
    width: 160px;
}
footer ul li:hover {
    opacity: .8;
}

@media screen and (max-width: 767px) {
/*共通*/
#about,
#m-trailer,
#problem,
#feature,
#operation {
    padding-top: 50px;
}
.section-ttl p {
    font-size: 8px;
    padding-left: 5px;
}
.section-ttl h2{
    font-size: 25px;
}
.section-ttl .sub-ttl {
    padding: 5px 0 10px 0;
    font-size: 14px;
}
.section-ttl-wh p {
    font-size: 8px;
    padding-left: 5px;
}
.section-ttl-wh h2{
    font-size: 25px;
}
.section-ttl-wh .sub-ttl {
    padding: 5px 0 10px 0;
    font-size: 14px;
}
.inner {
    padding: 0 20px;
}
.sp_only {
    display: block;
}
.pc_only {
    display: none;
}
/**************************
        メインビジュアル
***************************/
#mv .txt-wrap {
    width: 360px;
}
#mv img {
    width: 100px;
    height: auto;
}
#mv .txt-wrap h2 {
    font-size: 20px;
}
#mv .bg-wrap {
    height: 500px;
}
#mv .bg-wrap img {
    height: 500px;
}
/*スクロールダウン全体の場所*/
.scrolldown{
    width: 113px;
    height: 20px;
    right:50%;
    transform: translateX(50%);
}
.scrolldown span{
    top: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    font-size: 14px;
}
.scrolldown::after{
    top: -10px;
    left: 50%;
    height: 50px;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
    0%{
        height:0;
        top:25px;
        opacity: 0;
    }
    20%{
        height:10px;
        opacity: .4;
    }
    40%{
        height:20px;
        opacity: .6;
    }
    80%{
        height:35px;
        opacity: .8;
    }
    100%{
        height:50px;
        top:40px;
        opacity: 0;
    }
}
/***************************
            About
***************************/
#about .about-contents {
    width: 100%;
    margin: 30px auto;
}
#about .about-contents h3 {
    font-size: 25px;
    margin-bottom: 20px;
}
#about .about-contents .txt-area {
    width: 350px;
}
#about .about-contents p {
    font-size: 16px;
    margin: 20px 0;
}
.a-slider {
    margin: 0 auto;
    width: 100%;

}
.a-slider .slider-img {
    margin: 0 10px;
}
.a-slider .slider-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
/***************************
    トレーラーハウスのメリット
***************************/
#m-trailer .mtrailer-top {
    display: block;
    margin: 30px 0;
}
#m-trailer .mtrailer-top .top-item {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 20px;
}
#m-trailer .mtrailer-top .top-item::after {
    background: none;
}
#m-trailer .mtrailer-top .top-item .item-txt {
    position: static;
    transform: none;
    width: 100%;
    background: none;
    padding: 20px;
    border-radius: 10px;
    color: #000;
}
#m-trailer .mtrailer-top .top-item .item-txt p {
    font-size: 18px;
    margin-bottom: 10px;
}
#m-trailer .mtrailer-top .top-item .item-txt h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: bold;
}
#m-trailer .mtrailer-top .top-item .item-txt .hover-txt {
    display: block;
    font-size: 18px;
    width: 100%;
    border-radius: 0;
}
#m-trailer .mtrailer-top .top-item img {
    height: 50%;
}
#m-trailer .mtrailer-bottom {
    margin-bottom: 50px;
    margin-top: 50px;
}
#m-trailer .mtrailer-bottom h3 {
    font-size: 22px;
    margin-bottom: 30px;
}
#m-trailer .mtrailer-bottom .txt-box {
    padding: 20px;
}
#m-trailer .mtrailer-bottom .txt-box p {
    margin-bottom: 10px;
    font-size: 18px;
}
#m-trailer .mtrailer-bottom img {
    display: none;
}
#m-trailer .mtrailer-bottom2 {
    margin-bottom: 0;
}
#m-trailer .mtrailer-bottom2 h3 {
    font-size: 22px;
}
#m-trailer .mtrailer-bottom2 .txt-box {
    padding: 20px;
}
#m-trailer .mtrailer-bottom2 .txt-box .txt-area1 {
    margin-bottom: 30px;
}
#m-trailer .mtrailer-bottom2 .txt-box h4 {
    font-size: 20px;
}
#m-trailer .mtrailer-bottom2 .txt-box p {
    margin-bottom: 10px;
    padding-left: 10px;
    font-size: 18px;
}
#m-trailer .mtrailer-bottom2 img {
    display: none;
}
/***************************
    トレーラーハウスのお悩み
***************************/
#problem {
    padding-bottom: 50px;
}

#problem .prob-contents {
    height: 350px;
}
#problem .prob-contents .place {
    top: 30%;
    left: 30%;
    width: 200px;
    height: 200px;
}
#problem .prob-contents .place::before {
    width: 200px;
    height: 200px;
}
#problem .prob-contents .place .txt-wrap {
    position: relative;
    height: 200px;
}
#problem .prob-contents .place .txt-wrap h3 {
    top: 45%;
    font-size: 25px;
}
#problem .prob-contents .place .txt-wrap p {
    width: 100%;
    font-size: 16px;
    text-align: center;
}

#problem .prob-contents .operation {
    top: 70%;
    left: 70%;
    width: 200px;
    height: 200px;
}
#problem .prob-contents .operation::before {
    width: 200px;
    height: 200px;
}
#problem .prob-contents .operation .txt-wrap {
    height: 200px;
}
#problem .prob-contents .operation .txt-wrap h3 {
    top: 45%;
    font-size: 25px;
}
#problem .prob-contents .operation .txt-wrap p {
    width: 100%;
    font-size: 16px;
}
#problem .solution-txt h4 {
    font-size: 16px;
    margin-top: 14px;
}
/***************************
        T-HOPの特徴
***************************/
#feature {
    padding-bottom: 100px;
}
#feature .feature-contents .contents-item {
    display: block;
    margin: 30px 0 50px 0;
}
#feature .feature-contents .contents-item .img-wrap {
    width: 100%;
}
#feature .feature-contents .contents-item .img-wrap .img-left {
    width: calc(( 100% - 10px ) / 2);
}
#feature .feature-contents .contents-item .img-wrap .img-right {
    width: calc(( 100% - 10px ) / 2);
}
#feature .feature-contents .contents-item .img-wrap p {
    display: none;
}
#feature .feature-contents .contents-item .img-wrap img {
    width: 100%;
    height: 150px;
}
#feature .feature-contents .contents-item .txt-wrap {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}
#feature .feature-contents .contents-item .txt-wrap h3 {
    font-size: 30px;
}
#feature .feature-contents .contents-item .txt-wrap h4 {
    font-size: 14px;
}
#feature .feature-contents .contents-item .txt-wrap ul {
    margin-top: 20px;
}
/***************************
        T-HOPのメリット
***************************/
#m-thop {
    padding-bottom: 50px;
}
#m-thop .ttl-bg {
    height: 70px;
}
#m-thop .ttl-bg img {
    height: 70px;
}
#m-thop .section-ttl {
    position: absolute;
    top: -3%;
}
#m-thop .scrollwrap {
    margin: 50px 0;
    display: block;
}
#m-thop .scrollwrap .scroll-left {
    width: 100%;
}
#m-thop .scrollwrap .scroll-right {
    width: 100%;
    padding: 0;
}
#m-thop .scrollwrap .scroll-item {
    padding: 40px;
    margin: 50px 0;
}
#m-thop .scrollwrap .scroll-item p {
    font-size: 16px;
}
/***************************
    T-HOP運用イメージ
***************************/
#operation {
    padding-bottom: 30px;
}
#operation .operation-contents{
    margin: 30px 0;
    padding: 35px 10px;
}
/***************************
    購入方法と契約の流れ
***************************/
#contract {
    padding-top: 50px;
    padding-bottom: 30px;
}
#contract .contract-contents {
    margin: 30px 0;
    padding-bottom: 0;
}
#contract .contract-contents .contract-item {
    margin-bottom: 0;
}
#contract .contract-contents .contract-item h3 {
    font-size: 22px;
    margin-bottom: 20px;
}
#contract .contract-contents .contract-item p {
    font-size: 16px;
    margin-bottom: 15px;
}
#contract .contract-contents .contract-item p span {
    font-size: 14px;
}
#contract .contract-contents .contract-item img {
    margin: 0 0 20px 0;
}
#contract .contract-contents .contract-item .item-img {
    margin: 0;
    padding: 45px 15px;
}
#contract .contract-contents .contract-item .item-img ul li {
    text-align: left;
    margin: 5px 0;
}
/***************************
            ご購入
***************************/
#purchase {
    padding: 50px 20px;
    text-align: center;
}
#purchase h3 {
    font-size: 16px;
}
#purchase .btn-wrap {
    margin: 15px;
    display:block;
}
#purchase .btn-wrap a {
    padding: 10px 30px;
    font-size: 18px;
    font-weight: bold;
    display:block;
    margin:10px;
}
#purchase .btn-wrap a span {
    font-size: 12px;
    font-weight: 100;
}
/***************************
        お問い合わせ
***************************/
#contact-form h3 {
    font-size: 16px;
}
#contact-form p {
    font-size: 14px;
}
#contact-form table.formTable{
	margin: 30px auto;
}
#contact-form table.formTable tr {
    flex-wrap: wrap;
    column-gap: 0;
}
#contact-form table.formTable th{
    width: 100%;
    margin-bottom: 10px;
}
#contact-form table.formTable td {
    width: 100%;
    margin-bottom: 20px;
}
#contact-form .btn-wrap {
    column-gap: 15px;
}
#contact-form .submit-complete p {
    margin: 20px auto;
}
#contact-form .submit-complete a {
    display: block;
    text-align: center;
    color: blue;
}
#contact-form .submit-complete a:hover {
    opacity: 0.8;
}
/***************************
        フッター
***************************/
footer {
    padding: 50px 0 10px 0;
}
footer img {
    width: 100px;
}
footer ul {
    margin: 50px 0;
    display: block;
}
footer ul li {
    margin: 15px auto;
}
}