@charset "UTF-8";
/* CSS Document */
/* ============================================ */
/*
768〜1200pxでフォントサイズ24px(2.4rem)〜36px(3.6rem)で可変　

計算式
calc(ZZ + ((1vw - XX) * YY))
ZZ = 24 * 0.1rem = 2.4rem
XX = (768 / 100 * 0.1rem) = 0.768rem
YY = 100 * (36 - 24) / (1200 - 768) = 2.777

font-size: calc(2.4rem + ((1vw - (768 / 100 * 0.1rem)) * 100 * (36 - 24) / (1200 - 768)));
*/
/* ============================================ */

.main-contents {
    padding-top: 80px;
}
/*style.css から*/
.text-variable {
    font-size: 3.6rem;
 font-size: calc(2.4rem + ((1vw - 0.768rem) * 2.777));
}
.con-img {
    width: 50vw;
}

@media only screen and (min-width: 1200px) {
.text-variable {
    font-size: 3.6rem;
}
}

@media only screen and (max-width: 959px) {
.text-variable {
    font-size: 2.4rem;
}
/*style.css から 終わり*/
}
/* 下層ページ */
/* ============================================ */
/* リスト +字数分.pl-1～ */
.txt-list {
    position: relative;
}
.txt-list span {
    position: absolute;
    left: 0;
}
/*ページタイトル*/
.heading-page {
    font-size: 2.4rem;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.heading-page::before, .heading-page::after {
    content: "";
    display: block;
    width: 1px;
    height: 20px;
    background: #333;
}
.heading-page::before {
    margin-bottom: .5rem;
}
.heading-page::after {
    margin-top: 1rem;
}
/*コンテンツ*/
.container-ttl {
    font-size: 3.6rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.25em;
}
.container-ttl::after {
    content: "";
    display: block;
    width: 8rem;
    height: 4px;
    background: linear-gradient( 90deg, #80221b 0%, #80221b 50%, #00522a 50%, #00522a 100%);
    margin-top: 2rem;
}
.container-inner-cont {
    margin-left: 6rem;
}
.container-inner-cont section {
    margin-bottom: 6rem;
}
.container-inner-cont section:last-of-type {
    margin-bottom: 0;
}
.container-inner-cont section .cont-ttl {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: .8rem;
}
@media only screen and (max-width: 959px) {
.container-ttl {
    font-size: 2.8rem;
}
}
/* サイト制作   システム　ページ */
/* ============================================ */
.page-title .service-link {
    position: absolute;
    right: 0;
    bottom: 0;
}
.page-title .service-link li {
    position: relative;
}
.page-title .service-link a {
    font-size: 13px;
	padding-bottom: 4px;
}
.page-title .service-link a:after {
    content: '';
	position: absolute;
	width: 0;
	left: 0;
	bottom: 0;
	transition: all 0.3s ease;
	border-bottom: 4px solid #000;
	display: block;
	opacity: 0;
}
.page-title .service-link a:hover:after {
	width: 100%;
	border-bottom: 4px solid #000;
	opacity: 1;
}
.page-title .service-link li {
    font-size: 13px;
}
.page-title .service-link {
    display: flex;
}

.page-title .service-link li:first-child {
    margin-right: 4rem;
}
.page-title .service-link li.active {
    border-bottom: solid 4px #111;
    padding-bottom: 4px;
}
main.web .service-upper {
    /*background-image: url("../img/service_img1.png");*/
    padding-top: 8rem;
    padding-bottom: 30rem;
    margin-top: -5rem;
	overflow-x: clip;
}
main.web .service-upper.system {
    /*background-image: url("../img/system_img1.png");*/
    padding-top: 8rem;
    padding-bottom: 30rem;
    margin-top: -5rem;
	overflow-x: clip;
}
.service-upper {
    background-repeat: no-repeat;
    background-position: left top;
}
.service-upper .container-inner {
    position: relative;
}
.service-upper .main-title {
    width: 53%;
    margin-left: auto;
	position: relative;
	z-index: 2;
}
.service-upper .main-title h2 {
    font-size: 8rem;
    font-weight: bold;
    line-height: normal;
}
.service-upper .main-title span {
    font-weight: bold;
}
.service-upper .main-title > div:after {
    content: "";
    display: block;
    width: 8rem;
    height: 4px;
    background: linear-gradient( 90deg, #80221b 0%, #80221b 50%, #00522a 50%, #00522a 100%);
    margin-top: 3rem;
}
.service-upper .main-title > div {
    margin-bottom: 4rem;
}
.service-upper .container-inner figure {
    position: absolute;
    left: -200px;
    top: -50px;
    z-index: 1;
}
.page-title.service {
    margin: 40px auto 40px;
}
.service-middle {
    background: #f3f3f3;
    position: relative;
    padding-bottom: 8rem;
}
.service-middle .middle_title {
    position: absolute;
    top: -2.8rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    font-size: 3.6rem;
    font-weight: bold;
    width: 100%;
    text-align: center;
}
.service-middle .design {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}
.service-middle .design .col {
    flex-basis: 30%;
    background: #fff;
    box-shadow: 0px 0px 12px 3px #ddd;
    border-radius: 6px;
    padding: 3.5rem 3rem;
}
.service-middle .design h4 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
}
.service-middle .design img {
    display: block;
    margin: auto;
    margin-bottom: 3rem;
}
.service-middle .design p.indent:before {
    content: "● ";
}
.service-middle .design p.indent {
    text-indent: -1em;
    padding-left: 1em;
}
.service-about {
    /*background-image: url(../img/service_img5.png);*/
    background-repeat: no-repeat;
    background-position: right bottom;
	overflow-x: clip;
}
.service-about.system {
    /*background-image: url(../img/system_img2.png);*/
    background-repeat: no-repeat;
    background-position: right bottom;
	overflow-x: clip;
}
.service-about .container-inner {
    position: relative;
}
.service-about .layout {
    width: 68%;
	position: relative;
	z-index: 2;
}
.service-about h3 {
    font-size: 3.6rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 5rem;
}
.service-about ul li {
    font-weight: bold;
}
.service-about ul {
    margin-bottom: 1rem;
}
.service-about .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.service-about .flex .col {
    flex-basis: 47%;
    margin-bottom: 6rem;
}
.service-about .flex .col h4 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}
.service-about .flex .col h4:before {
    content: "";
    display: block;
    width: 8rem;
    height: 4px;
    background: linear-gradient( 90deg, #80221b 0%, #80221b 50%, #00522a 50%, #00522a 100%);
    margin: auto;
    position: relative;
    bottom: 1rem;
}
.service-about .container-inner figure {
    position: absolute;
    right: -380px;
    bottom: 0;
    z-index: 1;
}
.icon-link {
    color: #00522a;
    position: relative;
    margin: 0 0 0 1.2rem;
}
.icon-link:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0px;
    border-top: solid 2px #00522a;
    border-right: solid 2px #00522a;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate( 45deg );
    transform: rotate( 45deg );
    position: absolute;
    top: 50%;
    left: -1.5rem;
    margin-top: -4px;
}
.service-about .flex .col:nth-child(n + 3) {
    margin-bottom: 0;
}
section.service-flow {
    padding: 12rem 0rem;
}
.service-flow .title {
    margin-bottom: 6rem;
    text-align: center;
}
.service-flow .title span {
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: center;
    width: 21rem;
    margin: auto;
}
.service-flow .title h3 {
    font-size: 3.6rem;
    font-weight: bold;
    margin-bottom: 2rem;
}
.service-flow .title span:before {
    background-color: #00522a;
}
.service-flow .title span:after, .service-flow .title span:before {
    content: "";
    height: 4px;
    flex-grow: 1;
    margin: 1.5rem;
}
.service-flow .title span:after {
    background: #80221b;
}
.service-flow .step {
    border-top: solid 1px #dddddd;
    margin: 0 10rem;
}
.service-flow .step .col {
    display: flex;
    justify-content: space-between;
    border-bottom: solid 1px #dddddd;
    padding: 3rem 0;
}
.service-flow .step .col .more {
    width: calc(100% - 15rem);
    display: flex;
    align-items: center;
}
.service-flow .step .col .step-title {
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

@media only screen and (max-width: 959px) {
.heading-page {
    font-size: 2rem;
}
.container-inner-cont {
    margin-left: 0;
}
}
/*概要*/
.item-dl01 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.item-dl01 dt {
    width: 12em;
    font-weight: bold;
    padding: 1em;
    text-align: center;
}
.item-dl01 dt span {
    font-weight: normal;
    display: block;
}
.item-dl01 dd {
    width: calc(100% - 13.5em);
    padding: 1em 0;
    position: relative;
}
.item-dl01 dd::after {
    content: '';
    border-bottom: 1px solid #dddddd;
    position: absolute;
    bottom: 0;
    left: -13.5em;
    width: calc(100% + 13.5em);
}
.summary_list > li {
    flex-basis: calc(50% - 20px);
    margin-bottom: .5em;
    min-width: 300px;
}
.summary_list ul.unit-row-wrap.col-2 li:not(:last-of-type) {
    margin-bottom: 0;
}

@media only screen and (max-width: 959px) {
.item-dl01 dt {
    background: #333;
    color: #fff;
    width: 100%;
    padding: .25em .5em;
    text-align: left;
}
.item-dl01 dt span {
    display: inline-block;
}
.item-dl01 dd {
    width: 100%;
    padding: .5em .5em 1.5em;
}
.item-dl01 dd::after {
    width: 100%;
    left: 0;
}
.summary_list > li {
    flex-basis: 100%;
    min-width: inherit;
}
}
/*google map*/
.gmap {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}
.gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
/*プライバシーポリシー*/
ol.list-num.policy-list > li {
    margin-bottom: 2em;
}
ol.list-num.policy-list > li:before {
    font-size: 2rem;
    font-weight: bolder;
}
ol.list-num.policy-list > li h3 {
    font-size: 2rem;
    font-weight: bolder;
    padding-bottom: .5em;
}
ol.list-num.policy-list > li h4 {
    font-weight: bolder;
    margin-bottom: .4em;
}
ol.list-num.policy-list > li h4 + .list-num {
    margin-bottom: 1.2em;
}
ol.list-num > li > .txt-list li {
    margin-top: .2em;
    margin-bottom: .5em;
}

@media only screen and (max-width: 959px) {
ol.list-num.policy-list > li:before {
    font-size: 1.8rem;
}
ol.list-num.policy-list > li h3 {
    font-size: 1.8rem;
}
/* サイト制作  システム　ページ */
/* ============================================ */
.page-title .service-link {
    position: relative;
    margin-top: 2rem;
}
main.web .service-upper {
    background: none;
    padding-bottom: 15rem;
    padding-top: 0rem;
    margin-top: 0;
}
main.web .service-upper.system {
    background: none;
}
.service-upper .main-title {
    width: 100%;
}
.service-upper .main-title h2 {
    font-size: 5.5rem;
}
.service-upper .main-title > div:after {
    margin-top: 2rem;
}
.service-upper .main-title p {
    margin-bottom: 4rem;
}
.service-upper .main-title img {
    display: block;
    margin: auto;
}
.service-upper .container-inner figure {
    position: initial;
}
.service-middle .middle_title {
    font-size: 2.8rem;
    top: -3rem;
    line-height: 3rem;
}
.service-middle .design {
    display: block;
    margin-bottom: 5rem;
}
.service-middle .design .col {
    margin-bottom: 2rem;
}
.service-middle .design h4 {
    font-size: 2rem;
}
.service-about {
    background: none;
}
.service-about.system {
    background: none;
}
.service-about .layout {
    width: auto;
}
.service-about h3 {
    font-size: 2.8rem;
}
.service-about .flex {
    display: block;
}
	
	.service-about .flex .col:last-child{
	margin-bottom: 4rem !important;
	}
	
.service-about .flex .col h4 {
    font-size: 2rem;
}
.service-about .flex .col:nth-child(n + 3) {
    margin-bottom: 6rem;
}
.service-about .layout img {
    display: block;
    margin: auto;
}
.service-about .container-inner figure {
    position: initial;
}
section.service-flow {
}
.service-flow .title {
    margin-bottom: 6rem;
}
.service-flow .title span {
}
.service-flow .title h3 {
    font-size: 2.8rem;
}
.service-flow .title span:before {
}
.service-flow .title span:after, .service-flow .title span:before {
}
.service-flow .title span:after {
}
.service-flow .step {
    margin: 0;
}
.service-flow .step .col {display: block;}
.service-flow .step .col .more {
    width: 100%;
    max-width: 60rem;
    margin: auto;
}
.service-flow .step .col .step-title {
}
.service-flow .step .col .thumb {text-align: center;margin-bottom: 1rem;}
}

/* 404　ページ */
/* ============================================ */
.contents-404 .container-inner div {
	text-align: left;
    max-width: 480px;
    margin: 0 auto 60px;
}
.btn-404 a{
	width:100%;
	max-width: 250px;
	height:40px;
	border: 1px solid #dddddd;
	border-radius: 4px;
	margin: auto;
	text-align:center;
	font-weight:bold;
	color:#333;
	background-image:linear-gradient(to right, #00522a 50%, #FFF 50%);
	background-position:100% 0;
	background-size:200% auto;
	transition:0.3s;
	background-color:transparent;
	position:relative;
	display: flex;
    justify-content: center;
    align-items: center;
	}
	
.btn-404 a:hover {
	background-position:0 0;
	color:#FFF;
	text-decoration:none;
	transition: 0.3s;
	}

.btn-404 a:before{
    content: '';
	width: 0;
	height: 0;
	border-left: 7px solid #333;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	position: absolute;
    right: .5em;

	top: 0;
    bottom: 0;
    margin: auto;
	transition: 0.3s;
	}

.btn-404 a:hover:before{
    border-left: 7px solid #fff;
	transition: 0.3s;
	}

