@charset "UTF-8";
/* CSS Document */
.main {
    background-color: #f9f8f6;
    margin: 0 auto;
    padding-top: 60px;
}
.main h2 {
    padding: 30px 0;
}
.top_img {
    background-image: url("../images/title_picture.jpg");
    background-size: auto;
    background-repeat: no-repeat;
    background-position: top;
    padding: 150px 0;
    position: relative;
}
.top_img h1 {
    font-size: 6.0rem;
    padding: 10px;
    color: #f9f8f6;
    position: relative;
    z-index: 1;
}
.top-text {
    font-size: 2.0rem;
    color: #fdf3e8;
    margin: 20px;
    display: inline-block;
}
.section_work {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 70px 0;
}
/*.section_partner h2 {
    color: #605445;
    font-size: 3.0rem;
    padding: 50px 0 30px;
}
*/ .top_read {
    padding: 50px;
}
.work_wrapper {
    margin-bottom: 100px;
}
.space {
    display: block;
}
.heading {
    padding: 10px 0 30px;
}
.Point_detail {
    display: flex;
    justify-content: center;
}
.Point_detail p {
    padding: 30px 50px 0 10px;
    text-align: left;
}
.work_wrapper span, .information span {
    display: block;
}
.Point_detail__icon {
    padding-top: 25px;
}
.information_inner {
    background-color: #f8f5ed;
    padding: 50px;
}
.Point_detail h3 {
    color: #7A604D;
    padding: 5px 10px 10px;
}
.Point_detail02 {
    background-color: #f8f5ed;
    padding: 50px;
}
@media only screen and (max-width: 768px) {
    .main {}
    .top_read {
        padding: 50px 10px;
    }
    span.space {
        display: inline;
    }
    .Point_detail p {
        padding: 10px 0;
        font-size: 1.6rem;
        text-align: center;
    }
    .service_list,.service_listtitle {
        padding: 0 20px;
    }
    .Point_detail {
        display: block;
    }
    .information_inner {
        padding: 30px;
    }
    .Point_detail02 {
        background-color: #f8f5ed;
        padding: 25px;
    }
}
@media only screen and (max-width: 599px) {
    .main {
        max-width: 100%;
        padding: 60px 15px;
    }
    .top_img {
        background-image: url("../images/title_picture__sp@2x.jpg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        padding: 0;
        position: relative;
    }
    .top_img h1 {
        padding-top: 20px;
        font-size: 2.5rem;
    }
    .titlelogo img {
        width: 10%;
    }
    .top-title {
        font-size: 1.6rem;
        padding-bottom: 40px;
        margin: 0;
    }
    .main h2 {
        padding: 20px 0 0;
    }
    .work_wrapper {
        margin-bottom: 30px;
    }
    .section_work {
        max-width: 100%;
        padding: 0;
    }
    .service_list,.service_listtitle {
        padding: 0;
    }
	.service_listtitle{
		width: 80%;
		margin:0 auto;
	}
    .information_inner {
        padding: 20px;
    }
    .information_inner p {
        font-size: 1.5rem;
    }
    .Point_detail02 {
        padding: 15px;
        margin-top: 10px;
    }
}
/*== ボタン共通設定 */
.btn02 {
    /*背景の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    display: inline-block;
    width: 95%;
    max-width: 400px;
    height: 50px;
    line-height: 50px;
    margin-top: 20px;
    text-align: center;
    outline: none;
}
/*ボタン内側の設定*/
.btn02 span {
    display: block;
    position: absolute;
    border-radius: 50px;
    width: 100%;
    height: 100%;
    border: 5px solid #6fbc5a;
    /* 重なりを3Dで表示 */
    transform-style: preserve-3d;
    /* アニメーションの設定 数字が少なくなるほど早く回転 */
    transition: 0.5s;
}
/*== くるっと回転（奥に） */
/* 回転前 */
.rotateback span:nth-child(1) {
    background: #fdfcf8;
    color: #000;
    transform: rotateX(0deg); /*はじめは回転なし*/
    transform-origin: 0 50% -25px; /* 回転する起点 */
}
/*hoverをした後の形状*/
.rotateback:hover span:nth-child(1) {
    transform: rotateX(90deg); /* X軸に90度回転 */
}
/* 回転後 */
.rotateback span:nth-child(2) {
    background: #604e48;
    color: #fff;
    border: 1px solid #604e48;
    transform: rotateX(-90deg); /*はじめはX軸に-90度回転*/
    transform-origin: 0 50% -25px; /* 回転する起点 */
}
/*hoverをした後の形状*/
.rotateback:hover span:nth-child(2) {
    transform: rotateX(0deg); /* X軸に0度回転 */
}
.previous_btn{
	padding-top: 50px;
}
