@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;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
.noto {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

@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: #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;
}
.none {
    display: none !important;
}

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

/* --------------------------------------
文字
---------------------------------------*/
p {
    font-size: 1rem;
    font-weight: 400;
    font-feature-settings: "palt";
    line-height: 200%;
    text-align: justify;
}
p.text_title {
    font-size: 1.5rem;
    font-weight: 600;
}
p.text_title.noto {
    font-weight: 400;
}
p.indent_text {
    padding-left: 1em;
    text-indent: -1em;
    text-align: justify;
}
.wt {
    color: #fff;
}
.small_tx {
    font-size: 12px;
}

/* --------------------------------------
セクション・文字幅
---------------------------------------*/
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!important;
}
.left {
    text-align: left!important;
}
.right {
    text-align: right!important;
}


/* --------------------------------------
 マージン
---------------------------------------*/
.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;
  }
}



/* --------------------------------------
トップへ戻る
---------------------------------------*/
/*リンクの形状*/
#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #127cb2;
    background: #fff;
    color: #127cb2;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.6rem;
    transition: all 0.3s;
}

#page-top a:hover {
    border: 1px solid #fff;
    background: #127cb2;
    color: #fff;
}

/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*　下に下がる動き　*/

#page-top.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(100px);
    }
}

i.fas.fa-angle-up {
    font-size: 2rem;
}
@media screen and (max-width: 768px) {
    /*リンクを右下に固定*/
    #page-top {
        position: fixed;
        right: 10px;
        bottom: 10px;
        z-index: 2;
        /*はじめは非表示*/
        opacity: 0;
        transform: translateY(200px);
    }
    /*　上に上がる動き　*/
    #page-top.UpMove {
        animation: UpAnime 0.5s forwards;
        bottom: 100px;
        transition: 0.5s;
    }
    @keyframes UpAnime {
        from {
            opacity: 0;
            transform: translateY(200px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /*　下に下がる動き　*/
    #page-top.DownMove {
        animation: DownAnime 0.5s forwards;
        bottom: 10px;
        transition: 0.5s;
    }
    @keyframes DownAnime {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 1;
            transform: translateY(200px);
        }
    }
}

