/************************/
html {
    font-size: 16px;
}

#container {
    overflow: hidden;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
    letter-spacing: 0.8px;
    line-height: 1.7;
}

.dib {
    display: inline-block;
}

.flex {
    display: flex;
    flex-flow: row wrap;
}

a {
    text-decoration: unset;
    display: block;
    color: #333;
}

a:hover {
    opacity: 0.8;
}

img {
    vertical-align: top;
    display: inline;
}

/*テーブル*/
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

caption {
    text-align: left;
    font-weight: bold;
    color: #993300;
}

th,
td {
    border: #ccc 1px solid;
    padding: 10px 20px;
    font-size: 1rem;
    vertical-align: top;
}

thead th,
tfoot th {
    background-color: #ccc;
    color: #fff;
}

thead td,
tfoot td {
    background-color: #999;
    color: #fff;
}

tbody th {
    background-color: #ccc;
    color: #fff;
}

tbody td {
    background-color: #fff;
}

/*グローバルナビゲーション
==================================================================================================================*/
/*ヘッダー*/
header {
    width: 100%;
    position: relative;
    background: transparent linear-gradient(0deg, #50BBF3 0%, #008CD5 100%) 0% 0% no-repeat padding-box;
    padding: 1em 0 0;
    margin: 0 0 2em;
}

.hdr_logo {
    text-align: left;
}

header h1.header_h1 {
    text-align: left;
    background: unset;
    margin: 0;
    padding: 0;
    border: unset;
    width: auto;
}

.hdr_logo a {
    margin: auto;
}

.hdr_logo a img {
    min-height: 50px;
    height: 4.2vw;
}

header .ilu_sun {
    width: 11vw;
    max-width: 134px;
    position: absolute;
    top: -10px;
    left: -5px;
    z-index: 1;
}

header .ilu_balloon {
    width: 5vw;
    max-width: 59px;
    position: absolute;
    top: 10px;
    right: 5px;
    z-index: 1;
}

.nav_menu {
    justify-content: space-evenly;
    position: relative;
}

.nav_menu>li a {
    display: block;
}


/*グローバルメニュー*/
#gnav_wrap {
    width: 100%;
    color: #333;
}

#gnav li {}

#gnav li a {
    display: block;
    overflow: hidden;
    color: inherit;
    margin: 0 1px 0 0;
}

#gnav li a span {
    color: #5BA4E4;
    font-size: 12px;
    padding: 0 2%;
    vertical-align: text-bottom;
}

.hamMenu {
    display: none;
}

.header .overlay {
    position: fixed;
    display: none;
    z-index: 20;
    top: 50px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 50px);
    background: rgba(200, 200, 200, .5);
}

@media (max-width:899px) {

    .hdr_logo {}

    .hdr_logo h1 {}



    .hdr_logo h1 a {}

    .hdr_logo a img {
        min-height: 40px;
        height: 4.2vw;
    }

    .header {
        position: relative;
        top: 0;
        width: 100%;
        height: 50px;
        z-index: 99999;
        padding: 0;
    }


    #gnav_wrap {
        display: block !important;
        transition: .5s ease-in-out;
        float: none;
        width: 100%;
        max-height: 100vh;
        padding-top: 50px;
        margin: 50px 0 0 0;
        position: absolute;
        top: 0;
        right: -900px;
        z-index: 1000;
        overflow: auto;
    }

    .menu-is-open #gnav_wrap {
        transform: translateX(-900px);
        background: #fff;
        padding: 0 0 50px 0;
        margin: 50px 0 0 0;
        width: 100%;

    }

    .hamMenu {
        display: block;
        width: 50px;
        height: 50px;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2000;
        text-indent: -9999px;
        margin: 0;
        background: none;
    }

    .hamMenu span {
        display: block;
        position: absolute;
        top: 14px;
        right: 10px;
        width: 30px;
        height: 22px;
        background: #FFF;
        border-top: 9px solid #1f9ee1;
        border-bottom: 9px solid #2fa8e7;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -moz-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .hamMenu span:before {
        content: '';
        position: absolute;
        width: 30px;
        height: 4px;
        background: #FFF;
        top: -9px;
        right: 0;
        -moz-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .hamMenu span:after {
        content: '';
        position: absolute;
        width: 30px;
        height: 4px;
        background: #fff;
        bottom: -9px;
        right: 0;
        -moz-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }


    .menu-is-open .hamMenu span {
        background: #FFF0;
    }

    .menu-is-open .hamMenu span:before {
        transform: rotate(-135deg);
        top: 0;
        right: 0;
    }

    .menu-is-open .hamMenu span:after {
        transform: rotate(135deg);
        bottom: 0;
        right: 0;
    }

    #gnav {
        border: none;
        flex-direction: column;
    }

    #gnav li {
        width: 100%;
        border: none;
        margin: 3px 0;
    }

    #gnav li a {
        font-size: 14px;
        padding: 10px;
        border-bottom: 1px #ccc dotted;
        width: 100%;
        text-align: center;
    }

    .menu-is-open .header .overlay {
        display: block;
    }
}

/***追加****************/


.header_top {
    padding: 0 2em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: #fff;
    width: 100%;
}

.triangle {
    background: linear-gradient(to top left, #F7F7F7 50%, transparent calc(50% + 1px)) top left/ 50% 100% no-repeat, linear-gradient(to top right, #F7F7F7 50%, transparent calc(50% + 1px)) top right / calc(50% + 1px) 100% no-repeat;

}

.header_top a {
    color: #fff;
}

.header_left {
    width: 50%;
}

.pc_right_area {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.pc_right_area img {
    min-height: 40px;
    height: 2.2vw;
}

.header .comment {
    margin: 0 0 0.5em;
    line-height: 1.2;
}

.pc_right_area .massage {
    background-color: #FFEB6B;
    padding: 0 1em;
    color: #008DD6;
    border-radius: 2em;
    display: inline-block;
    margin: 0;
}

.contact_list {
    margin: 0 0 0 25%;
}

.contact_list li {
    line-height: 1.4;
}

.contact_list dl {
    display: flex;
}

.contact_list dt {}

.contact_list dt:after {
    content: ":";
    padding: 0 0.5em;
}

.contact_list dd {}

.gnav_wrap .logo_02 {
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 1em 0;
    max-width: 70px;
    margin: 0 auto;
}

.gnav_wrap .nav_menu {
    display: flex;
    justify-content: center;
}

.gnav_wrap .nav_menu li {
    margin: 0 1em;
}

.gnav_wrap {
    width: 100%;
    margin: -4vw 0 0;
}

/*ヘッダー固定*************/
/*899px以上*/
@media (min-width: 899px) {
    header.on {
        position: fixed;
        z-index: 9999;
        margin: 0;
        padding: 0.8em;
        box-shadow: 0px 7px 6px -5px rgba(0, 0, 0, 0.19);
        top: -50px;
        transition: all 1s;
        transform: translateY(+50px);
        opacity: 1;
    }

    header.on h1 img {
        height: 60px;
        width: auto;
    }

    header.on .header_wrap {
        position: relative;
    }

    header.on .header_top {
        padding: 0;
        align-items: center;
    }

    header.on .gnav_wrap .logo_02,
    .header.on .comment {
        display: none;
    }

    header.on .triangle {
        background: none;
        position: absolute;
        top: 50%;
        left: 250px;
        width: calc(100% - 250px - 350px);
        transform: translateY(-50%);
    }

    header.on .gnav_wrap .nav_menu {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    header.on .pc_right_area {
        width: auto;
    }

    header.on .pc_right_area img {
        height: 40px;
        width: auto;
    }

    header.on #gnav li a {
        color: #fff;
    }

    header.on .header_left {
        width: auto;
    }

    header.on .gnav_wrap {
        margin: 0;
    }

    header.on .contact_list {
        display: none;
    }

    header.on .pc_right_area .massage {
        font-size: 0.8em;
    }

    header.on .gnav_wrap .nav_menu li {
        margin: 0 0.4em;
        position: relative;
        padding: 0 0.4em;
    }

    header.on .gnav_wrap .nav_menu li:before {
        content: "";
        display: inline-block;
        width: 1px;
        height: 1em;
        background-color: #FFF;
        position: absolute;
        top: 50%;
        right: -5px;
        transform: translateY(-50%);
    }
}

/*ブレイクポイント 以下*/
@media (max-width: 999px) {
    header.on #gnav li a {
        font-size: 0.9em;
    }
}

header.on .sp_triangle {
    display: none;
}

/*************/
@media (max-width: 899px) {

    .header .comment,
    .pc_right_area {
        display: none;
    }

    .header_top {
        padding: 0 1%;
        display: unset;
    }

    .header_left {
        width: 50%;
        height: 50px;
        position: absolute;
        top: 5px;
        left: 1%;
    }

    .header {
        position: relative;
        width: 100%;
        /*  height: calc(50px + 2em);
        padding: 0 0 2em;*/
        z-index: 1;
    }


    .sp_triangle {
        background: linear-gradient(to top left, #F7F7F700 50%, #4ebaf2 calc(50% + 1px)) top left/ 50% 100% no-repeat, linear-gradient(to top right, #F7F7F700 50%, #4fbbf3 calc(50% + 1px)) top right / 50% 100% no-repeat;
        position: absolute;
        width: 100vw;
        bottom: -7vw;
        height: 7vw;
        z-index: 1;
    }

    .header.on {
        position: fixed;
        top: -50px;
        transition: all 1s;
        transform: translateY(+50px);
        opacity: 1;
    }

    .header.on .sp_triangle {
        display: none
    }
}






/*page_top*/
#page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 9999;
    display: none;
    right: 2%;
    bottom: 6em;
}

#page_top.on {
    display: block;
}

#page_top a {
    position: relative;
    width: 50px;
    height: 50px;
    text-decoration: none;
    text-align: center;
    background-color: #0f5b83;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    padding: 3px 0 0;
}

#page_top a::before {
    content: "▲";
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 0.5em;
}

/**************************************************************/
section {
    padding: 2em 0;
}

body {
    background: #F7F7F7 0% 0% no-repeat padding-box;
}

/*600px以上*/
@media (min-width: 600px) {}

/*900px以上*/
@media (min-width: 900px) {
    section {
        padding: 5em 0;
    }
}

/*font*/
.biz-udpgothic-regular {
    font-family: "BIZ UDPGothic", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.biz-udpgothic-bold {
    font-family: "BIZ UDPGothic", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.inner {
    width: 92%;
    max-width: 1260px;
    margin: 0 auto;
}

h1.title {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    margin: 0 0 0.7em;
    line-height: 1.7;
}

h2 {
    font-size: 1.2em;
    margin: 0 0 0.6em;
    font-weight: bold;
    line-height: 1.3;
    margin: 0 auto 1.2em;
}

h3 {
    font-weight: bold;
    font-size: 1.3em;
    margin: 0 0 1em;
}

p {
    font-size: 14px;
    margin: 0 auto 1em;
}

.small {
    font-size: 0.7em;
}

/*600px以上*/
@media (min-width: 600px) {
    p {
        font-size: 16px;
    }

    h2 {
        font-size: 1.7em;
        line-height: 1.6;
        margin: 0 auto 1.3em;
    }

    h3 {
        font-size: 1.7em;
    }

}

/*900px以上*/
@media (min-width: 900px) {
    h2 {
        font-size: 36px;
        margin: 0 auto 2em;
        text-align: center;
    }

    h3 {
        font-size: 2.3em;
    }
}

/*カラー*/
.yellow {
    color: #F6D606;
}

.bg_white {
    background-color: #fff;
}

.bg_blue {
    background: #BBE8FF 0% 0% no-repeat padding-box;
}

.bg_blue_gradation {
    background: transparent linear-gradient(0deg, #50BBF3 0%, #008CD5 100%) 0% 0% no-repeat padding-box;
}

.bg_blue_gradation h2 {
    color: #fff;
}

/*only*/
.pc_only {
    display: none;
}

.sp_only {}

/*600px以上*/
@media (min-width: 600px) {
    .sp_only {
        display: none;
    }
}

/*900px以上*/
@media (min-width: 900px) {
    .pc_only {
        display: block;
    }
}

/*ルビ*/
ruby {
    position: relative;
}

rt {
    position: absolute;
    top: -0.4em;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 0.3em;
}

/*600px以上*/
@media screen and (min-width: 600px) {
    h1.title {}

    .reverse {
        flex-direction: row-reverse;
    }
}

/*900px以上*/
@media screen and (min-width: 900px) {
    h1.title {
        font-size: 2.5em;
    }
}

/*1300px以上*/
@media screen and (min-width: 1300px) {
    h1.title {
        font-size: 72px;
        letter-spacing: 3.6px;
        text-align: left;
    }
}

/*ボタン*/
.btn_01 {
    margin: 2em 0;
    width: 100%;
    display: flex;
    justify-content: center;
}


.btn_01 a {
    font-weight: bold;
    letter-spacing: 0.9px;
    padding: 0.6em;
    position: relative;
    background-color: #F6D606;
    display: block;
    max-width: 250px;
    width: 70%;
}

.btn_01 a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -10px;
    margin: auto;
    width: 40px;
    height: 2px;
    background: #333;
    transition: .3s;
}

.btn_01 a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -10px;
    margin: auto;
    width: 8px;
    height: 8px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(-135deg);
    transition: .3s;
}

.btn_01 a:hover::before {
    right: -20px;
    width: 50px;
}

.btn_01 a:hover::after {
    right: -20px;
}

/*600px以上*/
@media (min-width: 600px) {
    .btn_01 {}
}

.btn_02 {
    text-align: center;
    margin: 1em auto;
    max-width: 480px;
    width: 100%;
}

.btn_02 a {
    background-color: #F6D606;
    font-weight: bold;
    border-radius: 2em;
    padding: 0.7em 0;
}

.btn_03 {}

.btn_03 a {
    color: #38A7E1;
}

/*900px以上*/
@media (min-width: 900px) {
    .btn_01 {
        justify-content: end;
        width: 100%;
        padding: 0 2em;
    }
}

/*flex*/
.text_area,
.img_area {
    margin: 0 0 1em;
}

.flex_area {
    margin: 0 0 1em;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

/*600px以上*/
@media (min-width: 600px) {
    .flex_area .img_area {
        text-align: center;
    }

    .flex_area img {
        max-width: 560px;
        width: 100%;
    }

    .text_area,
    .img_area {
        margin: 0;
    }
}

/***soudan***********************************/
.soudan {}

.soudan h2 {
    background-color: #51D162;
    padding: 1em 0.5em;
    color: #fff;
    margin: 0 !important;
}

.soudan .bg_white {
    padding: 1em .8em;
    box-shadow: 0px 3px 6px #00000029;
}

.soudan .flex_area {}

.soudan .text_area {
    font-weight: bold;
}

.soudan .text_area p {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.soudan_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 1.2em;
    width: 18em;
}

.soudan_list li {
    width: calc(100% / 2);
}

.soudan .img_area {}

.contact_area {}

.contact_area .free {}


.contact_area {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.contact_area .contact_list {
    margin: 0 0 1em 2.5em;
    font-weight: bold;
}

.contact_area .contact_list li {}

.contact_area .contact_list dl {}

.contact_area .contact_list dt {}

.contact_area .contact_list dd {}


/*600px以上*/
@media screen and (min-width: 600px) {
    .soudan .flex_area {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 860px;
        margin: 0 auto 2em;
    }

    .soudan .bg_white {
        padding: 2em 2.8em;
    }

    .soudan .text_area {
        width: 50%;
    }

    .soudan .img_area {
        width: 47%;
        max-width: 400px;
    }

    .contact_area .contact_list {
        margin: 0 0 1em 24%;
    }
}

/*900px以上*/
@media screen and (min-width: 900px) {}

/*footer**********/
.bread {
    background-color: #333;
}

.bread a {
    color: #fff;
    display: inline-block;
    font-size: 13px;
}

.bread ul {
    display: flex;
}

.bread li {}

.bread li:not(:last-child):after {
    content: ">";
    color: #fff;
    padding: 1em;
}

/***footer*********************************/
.footer .left_area a {
    color: #38A7E1;
    text-decoration: underline;
    display: inline;
}

.footer .contact_list {
    margin: 0;
}

.footer_area {
    display: flex;
    padding: 4em 0;
    justify-content: space-between;
}

.footer .left_area {
    width: 35%;
}

.footer .left_area h1 {
    margin: 0 0 1em;
}

.footer .left_area .add {}

.footer .soudan {
    width: 60%;
}

.footer .soudan .bg_white {
    padding: 2em 1em;
}

.footer .soudan h2 {
    font-size: 24px;
    text-align: center;
    padding: 0.2em 0.5em;
}

.footer .soudan .flex_area {
    align-items: end;
    margin: 0;
}

.footer .soudan .tel_area {
    width: 50%;
    text-align: center;
}

.footer .soudan .tel_area img {
    max-width: 350px;
    width: 100%;
}

.footer .soudan .tel_area dl,
.footer .soudan .mail_area dl {
    display: flex;
    justify-content: center;
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1.05px;
    flex-wrap: wrap;
}

.footer .soudan .tel_area dl dt {}

.footer .soudan .tel_area dl dd a {
    display: inline-block;
}

.footer .soudan .mail_area {
    width: 44%;
}

.footer .soudan .mail_area dl {
    font-size: 21px;
}


@media (min-width:899px) and (max-width:1099px) {

    .footer .soudan .tel_area,
    .footer .soudan .mail_area {
        width: 100%;
    }
}

@media (max-width: 899px) {

    .footer .left_area,
    .footer .soudan {
        width: 100%;
    }

    .footer_area {
        flex-direction: column;
        padding: 0 0;
    }

    .footer .contact_list {}

    .footer .contact_list li {
        margin: 0 5% 0 0;
        display: inline-block;
    }

    .footer .soudan h2 {
        font-size: 1.2em;
    }
}

.sp_btn_area {
    display: none;
}

.footer .sp_only.text {
    color: #5A7787;
    padding: 0.6em 0;
}

.footer .ban_area {
    margin: 1em 0;
}

.footer .ban_area ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.footer .ban_area li {
    width: calc(100% / 3 - 2%);
    max-width: 240px;
    text-align: center;
    margin: 0.5em 1%;
}

.footer .ban_area li a {}

.footer .ban_area li img {}

@media (max-width: 600px) {
    .footer .ban_area {
        margin: 1em 0 1em;
    }

    .footer .ban_area ul {
        justify-content: flex-start;
    }

    .footer .ban_area li {
        width: calc(100% / 2 - 2%);
    }


    .footer {
        margin: 0 0 100px;
    }

    .footer .left_area,
    .footer .soudan {
        max-width: 390px;
        margin: 0 auto;
    }

    .footer .soudan {
        display: none;
    }

    .sp_btn_area {
        display: unset;
        position: fixed;
        bottom: 0;
        width: 100%;
    }

    .sp_btn_area h3 {
        background: #51D162 0% 0% no-repeat padding-box;
        font-size: 0.9em;
        letter-spacing: 4.2px;
        color: #FFFFFF;
        text-align: center;
        margin: 0;
        padding: 3px 0;
    }

    .sp_btn_area ul {
        background-color: #333;
        width: 100%;
        display: flex;
        padding: 5px 0 10px;
    }

    .sp_btn_area li {
        width: calc(100% / 3 - 2%);
        background: transparent linear-gradient(180deg, #2DB93F 0%, #1B982B 100%) 0% 0% no-repeat padding-box;
        border-radius: 5px;
        color: #fff;
        margin: 0 1%;
        text-align: center;
    }

    .sp_btn_area li a {
        color: #fff;
        letter-spacing: 0px;
        line-height: 1.2;
        padding: 7px 0;
        font-size: 12px;
    }

    .sp_btn_area li:nth-child(2) {
        background: transparent linear-gradient(180deg, #F6D606 0%, #E1B400 100%) 0% 0% no-repeat padding-box;
    }

    .sp_btn_area li:nth-child(3) {
        background: transparent linear-gradient(180deg, #38A7E1 0%, #0088CF 100%) 0% 0% no-repeat padding-box;
    }


}



#copy {
    font-size: 12px;
    text-align: center;
}


/***動き**********************************/

/*フェード*/
.fadein {
    display: block;
    transition: 2s;
    /*効果時間*/
    transition-timing-function: ease;
    /*開始と完了を滑らかにする*/
    transform: translateY(50px);
    /*下から表示させる*/
    opacity: 0;
    /*不透明度*/
}

.fadein.on {
    transform: none;
    /*active時に拡大解除*/
    opacity: 1;
    /*不透明度を元に戻す*/
}



/*サブページ
-------------------------------------------------------------------------------------------------------------------*/
.sub_page {}

.sub_page article h1 {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    color: #44b4ef;
    position: relative;
    margin: 0 0 1.3em;
    padding: 0.5em 0 0;
}

.sub_page article h1:before {
    position: absolute;
    bottom: -10px;
    left: calc(50% - 30px);
    width: 60px;
    height: 5px;
    content: '';
    border-radius: 3px;
    background: #44b4ef;
}

/*600px以上*/
@media screen and (min-width: 600px) {
    .sub_page article h1 {
        font-size: 2em;
    }
}

/*900px以上*/
@media screen and (min-width: 900px) {
    .sub_page article h1 {
        font-size: 2.6em;
    }
}