@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&amp;display=swap');

/*

Theme Name: smart fit FC
Version: 1.0

*/

/* A Modern CSS Reset */
*,*::before,*::after{box-sizing:border-box;}ul,ol{padding:0;list-style: none;}body,h1,h2,h3,h4,p,ul,ol,figure,blockquote,dl,dd{margin:0;font-weight:normal}body{min-height:100vh;scroll-behavior:smooth;text-rendering:optimizeSpeed;line-height:1.5}ul[class],ol[class]{list-style:none}a:not(){text-decoration-skip-ink:auto}img{max-width:100%;display:block}article>*+*{margin-top:1rem}input,button,textarea,select{font:inherit}img:not([]){filter:blur(10px)}@media(prefers-reduced-motion:reduce){*{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

.lato {
    font-family: 'Lato',sans-serif;
    font-weight: 700;
}
.impact {
    font-family:'Impact',sans-serif;
}
.maru {
    font-family:'ヒラギノ丸ゴ Pro W4','ヒラギノ丸ゴ Pro','Hiragino Maru Gothic Pro','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','HG丸ｺﾞｼｯｸM-PRO','HGMaruGothicMPRO',sans-serif;
}
body {
    font-size: 100%;
    font-family:'メイリオ','Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
    background-color: #fff;
}
section {
    padding: 3rem 0;
}
a {
    color: #000;
    text-decoration: none;
}
.inner {
    max-width: 1200px;
    margin: 0 auto;
}
.bg_white {
    background-color: #fff;
    color: #595757;
}
.bg_blue {
    background-color: #4EBCC7;
    color: #fff;
}
.bg_yellow {
    background-color: #FFED00;
    color: #000;
}
.bg_red {
    background-color: #D93755;
    color: #fff;
}
.bg_blue a {
    color: #fff;
}
a.bg_yellow {
    color: #000;
}
.blue {
    color: #4CBCC5;
}
.red {
    color: #DD304D;
}
.yellow {
    color: #FFF100;
}
.gray {
    color: #595757;
}
.cv_sec .inner {
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.cv_sec .inner span::before,
.cv_sec .inner span::after {
    position: absolute;
    content: "";
    display: block;
    background: #595757;
}
.cv_sec .inner.borderin span::before {
    width: 100%;
}
.cv_sec .inner.borderin  span::after {
    height: 100%;
}
.outline_top_right::before {
    width: 0;
    height: 1px;
    top: 0;
    left: 0;
    -webkit-transition: all .2s linear .2s;
    transition: all .2s linear .2s;
}
.outline_top_right::after {
    width: 1px;
    height: 0;
    top: 0;
    right: 0;
    -webkit-transition: all .2s linear .4s;
    transition: all .2s linear .4s;
}
.outline_bottom_left::before {
    width: 0;
    height: 1px;
    right: 0;
    bottom: 0;
    -webkit-transition: all .2s linear .6s;
    transition: all .2s linear .6s;
}
.outline_bottom_left::after {
    width: 1px;
    height: 0;
    left: 0;
    bottom: 0;
    -webkit-transition: all .2s linear .8s;
    transition: all .2s linear .8s;
}
.cv_sec h3{
    font-size: 3.6rem;
}
.cv_sec p {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.cv {
    display: flex;
    justify-content: center;
}
.cv a {
    display: block;
    font-size: 1.5rem;
    padding: 1.25rem;
    width: 40%;
    margin: 0 0.5%;
    text-align: center;
    transition: all .25s;
    box-shadow: 3px 3px 6px rgb(0 0 0 / 0.2);
}
.cv a:hover {
    transform: translate(1px, 2px);
}
section .inner h2 {
    text-align: center;
    font-weight: bold;
}
.sec_title {
    padding: 1.5rem 0;
    margin-bottom: 5rem;
}
.sec_title .inner h2 {
    position: relative;
    font-size: 3.5rem;
    text-align: left;
    font-weight: normal;
    margin-left: 7rem;
}
.fadein {
    opacity : 0;
    transform: translateY(40px);
    transition: all .5s;
}
.zoomin {
    opacity : 0;
    transform: scale(2.0);
    transition: all .3s;
}
.rotatein {
    opacity : 0;
    transform: rotate(90deg);
    transition: all .5s;
}

/* header
-----------------------------------------------*/
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: rgba(95, 193, 199, 0.9);
    color: #fff;
    z-index: 2;
}
#header_item {
    display: flex;
    margin: 0.5rem 2rem;
}
#header_logo {
    width: 200px;
    margin: 0 0.5rem;
}

#header_item h3 {
    margin: 0 0.5rem;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}
#header_item p {
    margin: 0 1rem;
}
#header_cv {
    margin: 0.5rem;
}
#header_cv a {
    white-space: nowrap;
    font-size: 1.25rem;
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem;
    width: auto;
    min-width: 15rem;
}

/* home
-----------------------------------------------*/
#home {
    height: 100vh;
}
#home::before {
    background: url(../img/home_bg.jpg) no-repeat center;
    background-size: cover;
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
}
#home_band {
    margin-top: 33vh;
    background-color: rgba(95, 193, 199, 0.9);
}
#home_band .inner {
    display: flex;
    justify-content: center;
    padding: 3rem 0;
}
#home_logo {
    width: 200px;
    margin: 0 3rem;
}

/* outlook
-----------------------------------------------*/
#outlook .inner {
    margin-bottom: 1rem;
}
#outlook h2 {
    font-size: 4rem;
    line-height: 3;
}

/* problem
-----------------------------------------------*/
#problem {
    padding-bottom: 5rem;
}
#problem h2 {
    font-size: 3.2rem;
}
#problem h2 span {
    font-size: 4.5rem;
}
#problem_item {
    display: flex;
    justify-content: space-between;
    padding: 3rem;
    box-shadow: 5px 3px 6px 0 rgb(0 0 0 / 0.2);
}
#problem_item_img {
    width: 40%;
}
#problem_item_txt {
    width: 50%;
}
#problem_item_txt ul li {
    position: relative;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}
#problem_item_txt ul li::before {
    position: absolute;
    content: '';
    left: -3rem;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-image: url(../img/problem_check.png);
    background-size: contain;
}

/* solution
-----------------------------------------------*/
#solution {
    position: relative;
    padding: 8rem 0 0;
    text-align: center;
}
#solution::before {
    position: absolute;
    content: '▼';
    color: #FFF100;
    top: -6rem;
    left: calc(50% - 5rem);
    font-size: 10rem;
}
#solution h2 {
    font-size: 5rem;
    display: inline-block;
    position: relative;
    line-height: 1.05;
    margin-bottom: 4rem;
}
#solution h2::after {
    position: absolute;
    content: '';
    width: 0%;
    height: 16px;
    background-color: rgb(221 48 77 / 0.44);
    bottom: 10px;
    left: -1rem;
    transition: all .5s;
}
#solution h2.borderin::after {
    width: 100%;
}
#solution ul {
    text-align: left;
    display: inline-block;
}
#solution ul li {
    margin-bottom: 2rem;
}
#solution ul li a {
    display: block;
    font-size: 3.5rem;
    position: relative;
    line-height: 1;
}
#solution ul li a span {
    display: inline-block;
    font-size: 6rem;
    vertical-align: text-bottom;
}
#solution ul li:nth-child(1) a::before,
#solution ul li:nth-child(2) a::before,
#solution ul li:nth-child(4) a::before,
#solution ul li:nth-child(5) a::before,

#solution_01 h2::before,
#solution_02 h2::before,
#solution_03 h2::before,
#solution_04 h2::before {
    position: absolute;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    width: 5.5rem;
    height: 5.5rem;
    bottom: 0;
    left: -6.5rem;
}
#solution ul li:nth-child(1) a::before { background-image: url(../img/solution_01_number.png)}
#solution ul li:nth-child(2) a::before { background-image: url(../img/solution_02_number.png)}
#solution ul li:nth-child(4) a::before { background-image: url(../img/solution_03_number.png)}
#solution ul li:nth-child(5) a::before { background-image: url(../img/solution_04_number.png)}
#solution ul p:nth-child(3){
    line-height: 1;
    margin: -2rem 0 2rem;
}
#solution_01 h2::before { background-image: url(../img/solution_01_number.png)}
#solution_02 h2::before { background-image: url(../img/solution_02_number.png)}
#solution_03 h2::before { background-image: url(../img/solution_03_number.png)}
#solution_04 h2::before { background-image: url(../img/solution_04_number.png)}

/* solution_01
-----------------------------------------------*/
.solution_01_item {
    display: flex;
    margin-bottom: 5rem;
}
.solution_01_item:nth-child(2n) {
    flex-direction: row-reverse;
}
.solution_01_item_img {
    width: 45%;
}
.solution_01_item_img img {
    width: 100%;
    height: auto;
    border: 1px solid #595757;
}
.solution_01_item_txt {
    width: 55%;
}
.solution_01_item_txt h3 {
    font-size: 2.5rem;
    padding: 0 1rem;
    position: relative;
    transition: all .5s;
    color: #595757;
}
.solution_01_item_txt h3.borderin {
    color: #4EBCC7;
}
.solution_01_item_txt h3::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #595757;
    transition: all .5s;
}
.solution_01_item:nth-child(2n) .solution_01_item_txt h3::before {
    left: auto;
    right: 0;
}
.solution_01_item_txt h3.borderin::before {
    width: 100%;
}
.solution_01_item_txt p {
    padding: 1rem;
    font-size: 1.25rem;
    line-height: 1.8;
}

/* solution_02
-----------------------------------------------*/
#solution_02 {
    background-image: url(../img/solution_02_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 0;
}
#solution_02 > .inner {
    padding-bottom: 3rem;
}
#solution_02 > .inner img {
    margin-bottom: 3rem;
}
#solution_02 .cv_sec {
    padding: 2rem 0;
}

/* solution_03
-----------------------------------------------*/
/* features */
#features h3 {
    text-align: center;
    font-size: 3rem;
    line-height: 1.25;
    margin-bottom: 2rem;
}
#features p {
    width: 90%;
    margin: 0 auto 3rem;
    font-size: 1.5rem;
}
#features_box {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}
.features_item {
    width: 25%;
}
.features_item:nth-child(1) { transition-delay: 0s; }
.features_item:nth-child(2) { transition-delay: .25s; }
.features_item:nth-child(3) { transition-delay: .50s; }
.features_item:nth-child(4) { transition-delay: .75s; }
.features_item img {
    width: 100%;
}
#features_price {
    background-color: #fff;
    padding: 2rem 0;
}

/* equipment */
#equipment {
    padding: 4rem 0;
    margin-bottom: 4rem;
}
#equipment h3 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 2rem;
}
#equipment_title img {
    display: inline-block;
    width: 640px;
}
#equipment_top {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}
.equipment_top_item {
    width: 30%;
    margin: 0 3%;
}
.equipment_top_item:nth-child(1) { transition-delay: 0s; }
.equipment_top_item:nth-child(2) { transition-delay: .25s; }
.equipment_top_item_img {
    margin-bottom: 1rem;
}
.equipment_top_item_desc {
    text-align: center;
    font-size: 1.5rem;
}
#equipment_box {
    display: flex;
    justify-content: center;
    flex-flow: wrap;
    margin-bottom: 2rem;
}
.equipment_item {
    width: 30%;
    margin: 1.666%;
}
.equipment_item:nth-child(3n+1) {transition-delay: 0s;}
.equipment_item:nth-child(3n+2) { transition-delay: .25s; }
.equipment_item:nth-child(3n) { transition-delay: .50s; }
.equipment_item_img {
    width: 100%;
    height: 360px;
    margin-bottom: 1rem;
}
.equipment_item_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.equipment_item_desc {
    text-align: center;
    font-size: 1.5rem;
}
#equipment_note {
    font-size: 1.5rem;
    text-align: center;
}

/* solution_04
-----------------------------------------------*/
#solution_04 > .inner {
    margin-bottom: 4rem;
}
#solution_04 h3 {
    text-align: center;
    font-size: 3rem;
    line-height: 1.25;
    margin-bottom: 2rem;
}
#solution_04 h4 {
    text-align: center;
    font-size: 2.25rem;
    line-height: 1.25;
    margin-bottom: 2rem;
}
.cost {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #B1AFAF;
}
#cost_balance .cost:nth-child(2n){
    background-color: #FFFCEF;
}
.cost_value {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
}
.cost_value span {
    font-size: 4rem;
}
#cost_balance {
    display: flex;
    justify-content: space-between;
    border: 1px solid #B1AFAF;
    margin-bottom: 1rem;
}
#cost_balance > div {
    width: 50%;
}
#cost_balance > div:first-child .cost:last-child {
    flex-direction: column;
    border-bottom: none;
    text-align: center;
    padding: 5rem 0;
    font-size: 1.5rem;
}
#cost_balance > div:last-child .cost {
    flex-direction: column;
    border-bottom: none;
    text-align: center;
}
#cost_balance > div:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #b1afaf;
}
#cost_balance > div:last-child .cost .cost_item {
    font-size: 2rem;
}
#cost_capex {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    border: 1px solid #B1AFAF;
    margin-bottom: 1rem;
}
#cost_capex .cost {
    width: 50%;
}
#cost_capex .cost:nth-child(4n+2),
#cost_capex .cost:nth-child(4n+3){
    background-color: #FFFCEF;
}
#cost_capex .cost:nth-child(2n){
    border-left: 1px solid #B1AFAF;
}
#cost_capex .cost:last-child {
    width: 100%;
    border-bottom: none;
    font-size: 1.5rem;
}
#cost_capex .cost:last-child .cost_value span{
    font-size: 3rem;
}
#solution_04 .note {
    margin-bottom: 4rem;
}

/* solution_05
-----------------------------------------------*/
#solution_05 h2 {
    text-align: center;
    margin-left: 0;
}
#solution_05 >  .inner {
    margin-bottom: 5rem;
}
#solution_05 h3 {
    text-align: center;
    font-size: 3rem;
    line-height: 1.25;
    margin-bottom: 2rem;
}
.solution_05_item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}
.solution_05_item_img {
    position: relative;
    width: 47.5%;
}
.solution_05_item_img::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: all .25s;
}
.solution_05_item_img.cutin::before {
    width: 0;
}
.solution_05_item_txt {
    width: 50%;
}
.solution_05_item_txt p {
    font-size: 1.25rem;
    line-height: 1.6;
}
#conversation {
    position: relative;
    padding: 4rem 0;
    margin-bottom: 4rem;
}
#conversation::before {
    position: absolute;
    content: '';
    top: -39px;
    left: calc(50% - 100px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100px 40px 100px;
    border-color: transparent transparent #4EBCC7 transparent;
}
#conversation h4 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: bold;
    margin: 3rem auto 2rem;
}
.conversation_he {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.conversation_he_img {
    width: 10rem;
    height: 10rem;
    border: 3px solid #fff;
    border-radius: 50%;
    overflow: hidden;
}
.conversation_he_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.conversation_he_txt {
    position: relative;
    width: calc(100% - 12.5rem);
    text-align: left;
    border-radius: 1.5rem;
    padding: 1.5rem 2rem 2rem;
    font-size: 1.2rem;
    line-height: 1.6;
}
.conversation_he_txt::before {
    position: absolute;
    content: '';
    top: 4rem;
    left: 4px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 26.0px 15px;
    border-color: transparent transparent #ffffff transparent;
    transform: rotate(30deg);
    transition: all .25s;
}
.conversation_he_txt.cutin::before {
    left: -20px;
}
.conversation_me {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.conversation_me img {
    display: block;
    margin: 0 auto 4rem;
    width: 100%;
}

/* solution_06
-----------------------------------------------*/
#solution_06 .inner {
}
#solution_06 h2 {
    text-align: center;
    margin-left: 0;
}
#solution_06 dl {
    display: flex;
    flex-flow: row wrap;
    font-size: 1.25rem;
    margin: 0 auto 5rem;
    width: 90%;
    letter-spacing: 0.1rem;
    line-height: 2;
}
#solution_06 dt {
    width: 30%;
    color: #4EBCC7;
    font-weight: bold;
    padding: 1.25rem;
    border-bottom: 1px dashed #4ebcc7;
}
#solution_06 dd {
    width: 70%;
    padding: 1.25rem;
    border-bottom: 1px dashed #4ebcc7;
}
#solution_06 dd a {
    color: #4ebcc7;
}

/* navi
-----------------------------------------------*/
#navi_box {
    display: flex;
    justify-content: center;
}
.navi_item {
    color: #666;
    margin: 0 2rem;
}
.navi_item h4 {
    margin-bottom: 0.5rem;
}

.navi_item ul {
    margin-left: 1.5rem;
    line-height: 1.8;
    list-style: square;
    color: #ddd;
}
.navi_item ul li a {
    color: #666;
}

/* footer
-----------------------------------------------*/
footer {
    padding: 2rem 0;
}
footer .inner {
    display: flex;
    justify-content: center;
}
#footer_logo {
    margin: 0 1rem;
    width: 200px;
}
#footer_logo img {
    margin-bottom: 1rem;
}
#copyright {
    margin: 0 1rem;
    line-height: 1.8;
    font-size: 1.2rem;
}
#footer_cv {
    display: none;
}

@media screen and (max-width: 1280px){
.inner {
    width: 90%;
}
.sec_title .inner h2 {
    font-size: 3rem;
}
.cv_sec .inner {
    width: 90%;
}
.cv_sec h3 {
    font-size: 3rem;
}
.cv_sec p {
    font-size: 1.5rem;
    margin-bottom: 0;
}

/* header
-----------------------------------------------*/
#header_item {
    margin: 0.5rem 1rem;
}
#header_item h3 {
    font-size: 1.25rem;
}
#header_item p {
    margin: 0 0.5rem;
}

/* home
-----------------------------------------------*/
#home_band {
    margin-top: 33vh;
}
#home_logo {
    width: 150px;
}
#home_desc h1 {
    /* font-size: 3rem; */
    }
#home_desc h2 {
    font-size: 2rem;
}
#home_desc p {
    font-size: 1.25rem;
}

/* outlook
-----------------------------------------------*/
#outlook h2 {
    font-size: 3rem;
    line-height: 2;
}

/* problem
-----------------------------------------------*/
#problem {
}
#problem h2 {
    font-size: 2.5rem;
}
#problem h2 span {
    font-size: 3.5rem;
}
#problem_item {
    padding: 2.5rem 2rem;
}
#problem_item_txt ul li {
    font-size: 1.2rem;
}
#problem_item_txt ul li::before {
    width: 1.6rem;
    height: 1.6rem;
}

/* solution
-----------------------------------------------*/
#solution {
}
#solution h2 {
    font-size: 4rem;
}
#solution ul li a {
    font-size: 3rem;
}
#solution ul li a span {
    font-size: 5rem;
}
#solution ul li:nth-child(1) a::before,
#solution ul li:nth-child(2) a::before,
#solution ul li:nth-child(4) a::before,
#solution ul li:nth-child(5) a::before,

#solution_01 h2::before,
#solution_02 h2::before,
#solution_03 h2::before,
#solution_04 h2::before {
    width: 4.5rem;
    height: 4.5rem;
    bottom: 0;
    left: -5.5rem;
}
#solution ul p:nth-child(3){
    line-height: 1;
    margin: -2rem 0 2rem;
}

/* solution_01
-----------------------------------------------*/
.solution_01_item_txt h3 {
    font-size: 2.25rem;
}

/* solution_03
-----------------------------------------------*/
/* equipment */
.equipment_item_img {
    height: 240px;
}
.equipment_item_desc {
    font-size: 1.25rem;
}

/* solution_05
-----------------------------------------------*/
#solution_05 h3 {
    font-size: 2.5rem;
}
.solution_05_item_img {
    width: 40%;
}
.solution_05_item_txt {
    width: 57.5%;
}
.solution_05_item_txt p {
    font-size: 1.2rem;
}
#conversation h4 {
    font-size: 1.8rem;
}
.conversation_he_img {
    width: 8rem;
    height: 8rem;
}
.conversation_he_txt {
    font-size: 1.1rem;
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    width: calc(100% - 10rem);
}
.conversation_he_txt.cutin::before {
    top: 3rem;
}
.conversation_me {
    font-size: 1.1rem;
}

/* solution_06
-----------------------------------------------*/
#solution_06 .sec_title {
    margin-bottom: 3rem;
}
}

@media screen and (max-width: 1024px){
.pc {
    display: none;
}
.cv_sec p {
    font-size: 1.2rem;
}
.cv a {
    width: 45%;
    font-size: 1.2rem;
}
.sec_title {
    margin-bottom: 3rem;
}
.sec_title .inner h2 {
    font-size: 2rem;
}

/* header
-----------------------------------------------*/
header {
    position: absolute;
}
#header_item {
    width: 100%;
    justify-content: center;
}
#header_cv {
    display: none;
}

/* home
-----------------------------------------------*/
#home::before {
    background: url(../img/home_sp_bg.jpg) no-repeat bottom;
    background-size: cover;
}

/* outlook
-----------------------------------------------*/
#outlook h2 {
    font-size: 2.25rem;
}

/* problem
-----------------------------------------------*/
#problem h2 {
    font-size: 2rem;
}
#problem h2 span {
    font-size: 3rem;
}
#problem_item {
    padding: 2rem 1.5rem;
}
#problem_item_img {
    width: 33%;
}
#problem_item_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#problem_item_txt {
    width: 58%;
}
#problem_item_txt ul li {
    font-size: 1rem;
    margin-bottom: 1rem;
}
#problem_item_txt ul li::before {
    width: 1.4rem;
    height: 1.4rem;
    left: -2rem;
}

/* solution
-----------------------------------------------*/
#solution {
    padding: 6rem 0 0;
}
#solution::before {
    top: -5rem;
    left: calc(50% - 4rem);
    font-size: 8rem;
}
#solution h2 {
    font-size: 3rem;
}
#solution h2.borderin::after {
    bottom: 7px;
    height: 12px;
}
#solution ul li {
    margin-bottom: 1rem;
}
#solution ul li a {
    font-size: 2rem;
}
#solution ul li a span {
    font-size: 4rem;
    font-weight: bold;
}
#solution ul li:nth-child(1) a::before,
#solution ul li:nth-child(2) a::before,
#solution ul li:nth-child(4) a::before,
#solution ul li:nth-child(5) a::before,

#solution_01 h2::before,
#solution_02 h2::before,
#solution_03 h2::before,
#solution_04 h2::before {
    width: 3.5rem;
    height: 3.5rem;
    left: -4.5rem;
}
#solution ul p:nth-child(3){
    margin: -1rem 0 1rem;
}

/* solution_01
-----------------------------------------------*/
.solution_01_item {
    margin-bottom: 2rem;
}
.solution_01_item_txt h3 {
    font-size: 1.5rem;
}
.solution_01_item_txt h3.borderin {
    font-size: 1.5rem;
}
.solution_01_item_txt p {
    font-size: 1rem;
    line-height: 1.8;
}

/* solution_03
-----------------------------------------------*/
/* features */
#features h3 {
    font-size: 2.5rem;
}
#features p {
    font-size: 1.2rem;
}

/* equipment */
#equipment {
    padding: 3rem 0;
}
#equipment h3 {
    font-size: 3rem;
}
.equipment_top_item_desc {
    font-size: 1.2rem;
}
.equipment_item_img {
    height: 180px;
}
.equipment_item_desc {
    font-size: 1rem;
}

/* solution_04
-----------------------------------------------*/
#solution_04 h3 {
    font-size: 2.5rem;
}
#solution_04 h4 {
    font-size: 1.5rem;
}

/* solution_05
-----------------------------------------------*/
#solution_05 h3 {
    font-size: 1.8rem;
}
.solution_05_item_txt p {
    font-size: 1rem;
}
#conversation h4 {
    font-size: 1.35rem;
}
.conversation_he_txt {
    font-size: 1rem;
    padding: 1.5rem 1rem 1.5rem 1.5rem;
}
.conversation_me {
    font-size: 1rem;
}

/* solution_06
-----------------------------------------------*/
#solution_06 dl {
    font-size: 1.1rem;
}

/* navi
-----------------------------------------------*/
.navi_item {
    margin: 0 1rem;
}
.navi_item ul li a {
    font-size: 0.9rem;
}

/* footer
-----------------------------------------------*/
footer {
    padding-bottom: 120px;
}
#copyright {
    font-size: 1rem;
}
#copyright span {
    display: inline-block;
    text-indent: -3rem;
    margin-left: 3rem;
}
#footer_cv {
    display: flex;
    padding: 0.5rem;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 2;
}
#footer_cv a {
    font-size: 1rem;
    box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.25);
}
}

@media screen and (max-width: 767px){
section {
    padding: 2rem 0;
}
.cv_sec .inner {
    padding: 1.5rem 1rem;
}
.cv_sec h3{
    font-size: 2rem;
}
.cv_sec p {
    font-size: 1rem;
}
.cv a {
    width: auto;
    font-size: 0.8rem;
    padding: 1rem 1.25rem;
}
.sec_title {
    margin-bottom: 2rem;
}
.sec_title .inner h2 {
    font-size: 1.3rem;
    margin-left: 2.5rem;
    font-weight: bold;
}

/* header
-----------------------------------------------*/
#header_item {
    flex-flow: row wrap;
}
#header_logo {
    width: 150px;
    margin-bottom: 0.5rem;
}

/* home
-----------------------------------------------*/
#home_band .inner {
    padding: 2rem 0;
}

/* outlook
-----------------------------------------------*/
#outlook h2 {
    font-size: 1.25rem;
}

/* problem
-----------------------------------------------*/
#problem {
    padding-bottom: 3rem;
}
#problem h2 {
    font-size: 1.1rem;
}
#problem h2 span {
    font-size: 1.5rem;
}
#problem_item {
    flex-direction: column;
    padding: 1rem;
}
#problem_item_img {
    width: 100%;
    margin-bottom: 1rem;
}
#problem_item_txt {
    width: 100%;
}
#problem_item_txt ul {
    margin-left: 1.5rem;
}
#problem_item_txt ul li {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}
#problem_item_txt ul li::before {
    width: 1rem;
    height: 1rem;
    left: -1.5rem;
}

/* solution
-----------------------------------------------*/
#solution {
    padding: 3rem 0 0;
}
#solution::before {
    top: -2.5rem;
    left: calc(50% - 2rem);
    font-size: 4rem;
}
#solution h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}
#solution h2.borderin::after {
    bottom: 0;
    height: 6px;
    left: -0.5rem;
}
#solution ul {
    margin-left: 2.5rem;
}
#solution ul li a {
    font-size: 1.2rem;
}
#solution ul li a span {
    font-size: 2.5rem;
}
#solution ul li:nth-child(1) a::before,
#solution ul li:nth-child(2) a::before,
#solution ul li:nth-child(4) a::before,
#solution ul li:nth-child(5) a::before,

#solution_01 h2::before,
#solution_02 h2::before,
#solution_03 h2::before,
#solution_04 h2::before {
    width: 2.5rem;
    height: 2.5rem;
    left: -3rem;
    bottom: -0.25rem;
}
#solution ul p:nth-child(3){
    margin: -0.5rem 0 1rem;
}

/* solution_01
-----------------------------------------------*/
.solution_01_item {
    display: block;
}
.solution_01_item_img {
    width: 100%;
    margin-bottom: 1rem;
}
.solution_01_item_txt {
    width: 100%;
}
.solution_01_item_txt h3 {
    text-align: center;
}
.solution_01_item_txt h3.borderin {
    text-align: center;
}
.solution_01_item:nth-child(2n) .solution_01_item_txt h3::before {
    left: 0;
    right: auto;
}
.solution_01_item_txt h3.borderin::before {
    background-color: #4ebcc7;
}
.solution_01_item_txt p {
    font-size: 0.9rem;
}

/* solution_03
-----------------------------------------------*/
/* features */
#features {
    margin-bottom: 2rem;
}
#features h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
#features p {
    font-size: 0.9rem;
}
#features_box {
    flex-flow: row wrap;
    margin-bottom: 1rem;
}
.features_item {
    width: 46%;
    margin: 2%;
}
.features_item:nth-child(1) { transition-delay: 0s; }
.features_item:nth-child(2) { transition-delay: .25s; }
.features_item:nth-child(3) { transition-delay: .25s; }
.features_item:nth-child(4) { transition-delay: .50s; }

/* equipment */
#equipment h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* equipment
-----------------------------------------------*/
#equipment {
    padding: 2rem 1rem 1rem;
    margin-bottom: 3rem;
}
#equipment > .inner {
    width: 100%;
}
#equipment::before {
    top: -4rem;
    height: 7rem;
}
#equipment_title img {
    width: 80%;
}
.equipment_top_item {
    width: 50%;
}
.equipment_top_item_desc {
    font-size: 0.9rem;
}
#equipment_box {
    justify-content: space-between;
    margin-bottom: 0;
}
.equipment_item {
    width: 48%;
    margin: 0 auto 1.5rem;
}
.equipment_item:nth-child(2n+1)  { transition-delay: 0s; }
.equipment_item:nth-child(2n) { transition-delay: 0.25s; }
.equipment_item_img {
    height: 160px;
    margin-bottom: 0.5rem;
}
.equipment_item_desc {
    font-size: 0.85rem;
}
#equipment_note {
    font-size: 0.9rem;
}

/* solution_04
-----------------------------------------------*/
#solution_04 h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
#solution_04 h4 {
    font-size: 1rem;
}
.cost {
    flex-direction: column;
    padding: 0.5rem;
}
#cost_balance .cost:nth-child(2n){}
.cost_item {
    text-align: center;
}
.cost_value {
    font-size: 1rem;
}
.cost_value span {
    font-size: 2rem;
}
#cost_balance {
    font-size: 0.75rem;
}
#cost_balance > div:first-child .cost:last-child .cost_item {
    font-size: 1.2rem;
}
#cost_balance > div:last-child .cost .cost_value {
    font-size: 0.8rem;
}
#cost_capex {
    font-size: 0.75rem;
}
#cost_capex .cost:last-child {
    font-size: 1rem;
}
#cost_capex .cost:last-child .cost_value span{
    font-size: 1.5rem;
}
#solution_04 .note {
    font-size: 0.8rem;
    margin-bottom: 2rem;
}

/* solution_05
-----------------------------------------------*/
#solution_05 >  .inner {
    margin-bottom: 3rem;
}
#solution_05 h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.solution_05_item {
    display: block;
    margin-bottom: 0;
}
.solution_05_item_img {
    width: 100%;
    margin-bottom: 1rem;
}
.solution_05_item_txt {
    width: 100%;
}
.solution_05_item_txt p {
    font-size: 0.9rem;
}
#conversation {
    margin-bottom: 3rem;
    padding: 4rem 0 2rem;
}
#conversation h4 {
    text-align: left;
}
.conversation_he {
    margin-bottom: 1rem;
}
.conversation_he_img {
    width: 5rem;
    height: 5rem;
}
.conversation_he_txt {
    font-size: 0.8rem;
    padding: 0.8rem 1rem;
    width: calc(100% - 6rem);
    border-radius: 0.8rem;
}
.conversation_he_txt::before {
    top: 1.5rem;
    left: -5px;
}
.conversation_he_txt.cutin::before {
    border-width: 0 10px 18px 10px;
    top: 1.5rem;
    left: -0.5rem;
}
.conversation_me {
    font-size: 0.8rem;
    margin-bottom: 1rem;
}
.conversation_me img {
    margin: 0 auto 1.5rem;
}

/* solution_06
-----------------------------------------------*/
#solution_06 .sec_title {
    margin-bottom: 2rem;
}
#solution_06 dl {
    width: 100%;
    font-size: 0.8rem;
    margin-bottom: 3rem;
}
#solution_06 dt {
    width: 22.5%;
    padding: 0.5rem 0.5rem 0.5rem 0;
    white-space: nowrap;
}
#solution_06 dd {
    width: 77.5%;
    padding: 0.5rem 0.5rem 0.5rem 0;
}

/* navi
-----------------------------------------------*/
#navi_box {
    display: block;
}
.navi_item {
    margin: 0 0.5rem;
}
.navi_item ul li a {
    font-size: 0.8rem;
}

/* footer
-----------------------------------------------*/
footer .inner {
    display: block;
}
#footer_logo {
    margin: 0 auto;
}
#footer_logo img {
    margin: 0 auto 1rem;
}
#copyright {
    font-size: 0.8rem;
}
#footer_cv a {
    font-size: 0.8rem;
    padding: 1rem 0.8rem;
    width: auto;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.25);
}
}

@media screen and (max-width: 413px){
section {
    padding: 2rem 0 1rem;
}
.cv_sec .inner {
    padding: 1.5rem 0.5rem;
}
.cv_sec h3{
    font-size: 1.75rem;
}
.cv a {
    padding: 1rem;
}
.sec_title .inner h2 {
    font-size: 1.2rem;
}

/* home
-----------------------------------------------*/
#home_band .inner {
    padding: 1.5rem 0;
}

/* outlook
-----------------------------------------------*/
#outlook h2 {
    font-size: 1.1rem;
}

/* problem
-----------------------------------------------*/
#problem h2 {
    font-size: 1rem;
}
#problem_item_txt ul li {
    margin-bottom: 0.5rem;
}

/* solution
-----------------------------------------------*/
#solution h2 {
    font-size: 1.5rem;
}
#solution ul li a {
    font-size: 1rem;
}
#solution ul li a span {
    font-size: 2rem;
}
#solution ul li:nth-child(1) a::before,
#solution ul li:nth-child(2) a::before,
#solution ul li:nth-child(4) a::before,
#solution ul li:nth-child(5) a::before,

#solution_01 h2::before,
#solution_02 h2::before,
#solution_03 h2::before,
#solution_04 h2::before {
    bottom: -0.5rem;
}
#solution ul p:nth-child(3){
    font-size: 0.75rem;
}

/* solution_01
-----------------------------------------------*/
.solution_01_item_txt h3 {
    font-size: 1.2rem;
}
.solution_01_item_txt h3.borderin {
    font-size: 1.4rem;
}

/* solution_03
-----------------------------------------------*/
/* equipment */
#equipment {margin-bottom: 2rem;}

/* equipment
-----------------------------------------------*/
.equipment_item_desc {
    font-size: 0.8rem;
}

/* solution_04
-----------------------------------------------*/
#solution_04 h4 {
    font-size: 0.9rem;
}
#cost_balance .cost:nth-child(2n){}
#cost_balance {
}
#cost_capex .cost:nth-child(4n+2),
#cost_capex .cost:nth-child(4n+3){}
#cost_capex .cost:nth-child(2n){}
#cost_capex .cost:last-child .cost_value span{}

/* solution_05
-----------------------------------------------*/
#solution_05 h3 {
    font-size: 0.9rem;
    line-height: 1.5;
}
.solution_05_item_txt p {
    font-size: 0.8rem;
}
#conversation h4 {
    font-size: 1.2rem;
}

/* solution_06
-----------------------------------------------*/
#solution_06 dl {
    font-size: 0.7rem;
}

/* navi
-----------------------------------------------*/
.navi_item ul li a {
    font-size: 0.7rem;
}

/* footer
-----------------------------------------------*/
#footer_cv {
    padding: 0.5rem 0.25rem 0.25rem;
}
#footer_cv a {
    padding: 1rem 0.5rem;
}
}


@media screen and (max-width: 374px){
.cv_sec p {
    font-size: 0.8rem;
}
.cv a {
    padding: 1rem 0.5rem;
    font-size: 0.75rem;
}
.sec_title .inner h2 {
    font-size: 1rem;
}

/* outlook
-----------------------------------------------*/
#outlook h2 {
    font-size: 0.9rem;
}

/* problem
-----------------------------------------------*/
#problem h2 {
    font-size: 0.9rem;
}
#problem h2 span {
    font-size: 1.2rem;
}

/* solution
-----------------------------------------------*/
#solution h2 {
    font-size: 1.2rem;
}
#solution ul li a {
    font-size: 0.9rem;
}
#solution ul li a span {
    font-size: 1.75rem;
}
#solution ul li:nth-child(1) a::before,
#solution ul li:nth-child(2) a::before,
#solution ul li:nth-child(4) a::before,
#solution ul li:nth-child(5) a::before,

#solution_01 h2::before,
#solution_02 h2::before,
#solution_03 h2::before,
#solution ul p:nth-child(3){
    font-size: 0.66rem;
}

/* solution_01
-----------------------------------------------*/
.solution_01_item_txt h3 {
    font-size: 1rem;
}
.solution_01_item_txt h3.borderin {
    font-size: 1.2rem;
}
.solution_01_item_txt p {
    font-size: 0.8rem;
}

/* solution_03
-----------------------------------------------*/
/* features */
#features h3 {
    font-size: 1.25rem;
}
#features p {
    font-size: 0.8rem;
}

/* equipment */
.equipment_top_item_desc {
    font-size: 0.7rem;
}
.equipment_item_desc {
    font-size: 0.7rem;
}

/* solution_04
-----------------------------------------------*/
#solution_04 h3 {
    font-size: 1.2rem;
}
#solution_04 h4 {
    font-size: 0.7rem;
}
#cost_balance .cost:nth-child(2n){}
.cost_value span {
    font-size: 1.5rem;
}
#cost_balance {
    font-size: 0.65rem;
}
#cost_balance > div:last-child .cost .cost_item {
    font-size: 1.4rem;
}
#cost_capex {
    font-size: 0.65rem;
}
#cost_capex .cost:nth-child(4n+2),
#cost_capex .cost:nth-child(4n+3){}
#cost_capex .cost:nth-child(2n){}
#cost_capex .cost:last-child .cost_value span{}
#solution_04 .note {
    font-size: 0.7rem;
}

/* solution_05
-----------------------------------------------*/
#solution_05 h3 {
    font-size: 0.8rem;
}
.solution_05_item_txt p {
    font-size: 0.7rem;
}
#conversation h4 {
    font-size: 1.1rem;
}
.conversation_he_txt {
    font-size: 0.7rem;
}
.conversation_me {
    font-size: 0.7rem;
}

/* solution_06
-----------------------------------------------*/
#solution_06 dl {
    font-size: 0.65rem;
}

/* footer
-----------------------------------------------*/
#copyright {
    font-size: 0.7rem;
}
#footer_cv a {
    font-size: 0.66rem;
}
}

/* thanks
-----------------------------------------------*/



/*form
-----------------------------------------------*/
.pagettl {
    padding-top: 0;
    margin: 0 auto;
    background: url(../img/subpage-background.jpg) no-repeat center left;
    background-size: cover;
    height: 200px;
}
.pagettl-text {
    margin: 0 auto;
    padding-top: 80px;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 30px;
    line-height: 3rem;
    text-align: left;
    font-weight: bold;
    color: #FFFFFF;
}
.pagettl h1{
	font-size: 2.5rem;
}
#entry {
  padding: 0 0 3rem 0;
}
.cform th {
	font-size: 14px;
	width: 20%; /*変なところで改行される場合はここの数字を変更します。*/
	border-bottom: solid 1px #d6d6d6;
	padding: 10px 0 10px 15px;
	font-weight: normal;
	text-align: left;
}

.cform td {
	font-size: 14px;
	line-height: 150%;
	border-bottom: solid 1px #d6d6d6;
	padding: 10px 5px;
}

.cform {
	width: 100%;
	margin: auto;
}

.cform [type=submit] {
	display: inline-block;
	font-size: 20px;
	padding: 10px 30px;
	text-decoration: none;
	background: #ff8f00;
	color: #FFF;
	border-bottom: solid 4px #B17C00;
	border-radius: 3px;
}

.cform option,
.cform textarea,
.cform input[type=text],
.cform input[type=email],
.cform input[type=search],
.cform input[type=url] {
	width: 100%;
}

.required-srt {
	font-size: 8pt;
	padding: 5px;
	background: #ce0000;
	color: #fff;
	border-radius: 3px;
	margin-left: 10px;
	vertical-align: middle;
}
.privacy-wrap{
  max-width: 550px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  padding: 5px;
  border: 1px dotted #CCCCCC;
  font-size: 14px;
}


@media only screen and (max-width:767px) {
	.cform th,
	.cform td {
		width: 100%;
		display: block;
		border-top: none;
	}
    .pagettl h1{
        font-size: 1.5rem;
    }
  	.privacy-wrap{
      	width: 90%;
  	}
}

.submit-btn input {
	background: #00142c;
	width: 60%;
	max-width: 550px;
	min-width: 220px;
	margin: 30px auto;
	display: block;
	border: 1px #00142c solid;
	text-align: center;
	padding: 5px;
	color: #fff;
	transition: all 0.4s ease;
}

.submit-btn input:hover {
	background: #fff;
	color: #00142c;
}
.privacy-btm a::before {
    box-sizing: border-box;
    width: 5px;
    height: 5px;
    border: 5px solid transparent;
    border-left: 5px solid #4EBCC4;
}

