@charset "UTF-8";

html {
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #604C3F;
}
@media screen and (max-width: 768px) {
    html {
        font-size: 90%;
    }
}

body {
    min-width: 1100px;
    overflow-x: hidden;
}
@media only screen and (max-width: 768px) {
    body {
        min-width: initial;
    }
}
body.fixed {
    height: 100%;
    overflow: hidden;
}

/* --------------------------------------
基本設定
---------------------------------------*/
a {
    text-decoration: none;
    color: #127cb2;
    transition: 0.5s;
}

a:hover,a p:hover {
    color: #FF5500!important;
    transition: 0.5s;
}
a img:hover {
    opacity: 0.7;
    transition: 0.5s;
}
li {
    list-style: none;
}
img {
    width: 100%;
    height: auto;
}
.none {
    display: none !important;
}

@media screen and (min-width: 768px){
    .sp {
        display: none!important;
    }
}
@media screen and (max-width: 768px){
    .pc {
        display: none!important;
    }
}


/* --------------------------------------
セクション・文字幅
---------------------------------------*/
section {
    height: auto;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
}
section._01 {
    height: auto;
    width: 100%;
    padding: 100px 0 0;
    overflow: hidden;
}
section._02 {
    height: auto;
    width: 100%;
    padding: 0 0 100px;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    section {
        height: auto;
        width: 100%;
        padding: 80px 0;
        overflow: hidden;
    }
    section._01 {
        height: auto;
        width: 100%;
        padding: 80px 0 0;
        overflow: hidden;
    }
    section._02 {
        height: auto;
        width: 100%;
        padding: 0 0 80px;
        overflow: hidden;
    }
}
.main_bk {
    width: 100%;
    height: 100%;
    background-image: url(../img/home/main_bk.png);
    background-size: 100% 100%;
}
.bg_wt {
    background-color: #fff;
}
.bg_contact {
    background-color: #eef2f5;
}
.bg_orange {
    background-color: #FFF8EB;
}
.sec_inner {
    width: 100%;
    max-width: 1100px;
    height: 100%;
    margin: auto;
    /* background-color: rgba(255, 238, 0, 0.411); */
}
@media screen and (max-width: 1100px) {
    .sec_inner {
        width: 96%;
        height: 100%;
        margin: auto;
    }
}
.w800_wrap {
    width: 800px;
    margin: auto;
}
@media screen and (max-width: 800px) {
    .w800_wrap {
        width: 100%;
        margin: auto;
    }
}
.w600_wrap {
    width: 100%;
    max-width: 600px;
    margin: auto;
}
.center {
    text-align: center;
}
.left {
    text-align: left;
}
.right {
    text-align: right;
}

/* --------------------------------------
 マージン
---------------------------------------*/
.mgn5rem {
    width: 100%;
    height: 5rem;
}
.mgn3rem {
    width: 100%;
    height: 3rem;
}
.mgn2rem {
    width: 100%;
    height: 2rem;
}
.mgn1rem {
    width: 100%;
    height: 1rem;
}
@media screen and (max-width: 768px) {
    .mgn5rem {
        height: 3rem;
    }
    .mgn3rem {
        height: 2rem;
    }
    .mgn2rem {
        height: 1.5rem;
    }
}

/* --------------------------------------
仕切り線
---------------------------------------*/
.partition_bar {
    width: 100%;
    height: 1px;
    border-top: 1px dashed #604C3F;
}

/* --------------------------------------
カラム設定
---------------------------------------*/
.two_column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.two_column_re {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .two_column {
        display: block;
    }
    .two_column_re {
        display: block;
    }
}


/* --------------------------------------
svg
---------------------------------------*/
@media screen and (max-width: 768px) {
  svg {
    width: 100%;
    height: auto;
  }
}