@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: #000;
    background-color: #f4f4f4;
}
@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;
}

/* --------------------------------------
読み込み後表示フェードイン
---------------------------------------*/
body {
    opacity: 0;
    /* 最初は透明 */
    transition: opacity 1s ease;
    /* 1秒でフェードイン */
}
body.show {
    opacity: 1;
    /* 表示状態 */
}

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

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

@media screen and (min-width: 768px){
    .sp {
        display: none!important;
    }
}
@media screen and (min-width: 500px) {
    .spsp {
        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;
    }
}
.bg_wt {
    background-color: #fff;
}
.bg_contact {
    background-color: #eef2f5;
}
.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;
    }
}
.center {
    text-align: center;
}
.left {
    text-align: left;
}

/* --------------------------------------
 マージン
---------------------------------------*/
.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;
    background-color: #fff;
}

/* --------------------------------------
カラム設定
---------------------------------------*/
.two_column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.two_column_re {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
@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;
  }
}

/* --------------------------------------
リンク画像拡大
---------------------------------------*/
/*　画像の拡大　*/
.zoomIn img {
    transform: scale(1);
    transition: .3s ease-in-out;
		opacity: 0.9;
}
.zoomIn a:hover img {
    /*hoverした時の変化*/
    transform: scale(1.1)!important;
    /*拡大の値を変更したい場合はこの数値を変更*/
    opacity: 0.3;
}
/*　画像のマスク　*/
.mask {
	width: 100%;
	height: 100%;
	display: block;
	overflow: hidden;
	background-color: #000;
}