@charset "utf-8";
/* =========================================================================================================================================== */
/* CSS変数                                                                                                                                      */
/* =========================================================================================================================================== */
:root {
    --webfont-meiryo :  'メイリオ', 'Meiryo', sans-serif;

    --font-size-normal    : 16px;

    --font-weight-regular : 400;
    --font-weight-bold    : 700;
    --font-weight-black   : 900;

    --width-100           : calc(100% - 110px);
    --content-width-1     : 1620px;
    --content-width-2     : 1400px;
    --content-width-3     : 1140px;
    --content-width-4     : 1010px;

    --content-width-5     : 735px;
    --content-width-6     : 460px;
    --content-width-7     : 1010px;     /* 問い合わせフォーム横幅 */

    --color-black1        : #555555;
    --color-black2        : #5d5d5d;
    --color-gray1         : #f6f6f6;
    --color-gray2         : #e7e7e7;
    --color-blue1         : #2bbced;
    --color-blue2         : #00afec;
    --color-blue3         : #edf6fa;
    --color-green1        : #8fc31f;
    --color-green2        : #49b985;
    --color-red1          : #c20000;
    --color-white         : #ffffff;

    --zindex-header       : 100;
    --zindex-gnavi        : 200;

    --header-height       : 140px;

    --gradient1           : linear-gradient(90deg, var(--color-blue1) 0%, var(--color-green1) 100%);

}
@media (max-width: 1600px) {
    :root {
        --content-width-1     : 1400px;
        --content-width-2     : 1100px;
        --content-width-3     :  900px;
        --content-width-4     :  800px;
    }
}
@media (max-width: 1023px){
    :root {
        --width-100           : calc(100% - 50px);
        --header-height       : 106px;
    }    
}


/* =========================================================================================================================================== */
/* サイト共通デザイン　                                                                                                                             */
/* =========================================================================================================================================== */
* {
    box-sizing: border-box;
}


/* ------------------------------------------------------------- */
/* 切り替え                                                        */
/* ------------------------------------------------------------- */
.pc_only   { display: block;  }
.pc_none   { display: none;   }
.pc_inline { display: inline; }
.sp_only   { display: none;   }
.sp_none   { display: block; }
@media (max-width: 1023px) {
    .pc_only   { display: none;  }
    .pc_none   { display: block; }
    .pc_inline { display: none;  }
    .sp_only   { display: none;  }
    .sp_none   { display: block; }
}
@media (max-width: 767px) {
    .pc_only   { display: none;  }
    .pc_none   { display: block; }
    .pc_inline { display: none;  }
    .sp_only   { display: block; }
    .sp_none   { display: none;  }
}


/* ------------------------------------------------------------- */
/* 全体                                                           */
/* ------------------------------------------------------------- */
html {
    font-size: 62.5%;
    overflow-y:scroll;
}
body{
    position: relative;
    margin: 0;
    font-family: var(--webfont-meiryo);
    font-size: var(--font-size-normal);
    font-weight: var(--font-weight-regular);
    line-height: 1.55;
    background-color: var(--color-white);
    color: var(--color-black1);
}


/* ------------------------------------------------------------- */
/* 装飾                                                           */
/* ------------------------------------------------------------- */
/* center */
@media all {
    .center {
        text-align: center !important;
    }
}

/* bold */
@media all {
    .bold {
        font-weight: var(--font-weight-bold) !important;
    }
}


/* padding-bottom */
@media all {
    .pb10 { padding-bottom: 10px !important; }
    .pb11 { padding-bottom: 11px !important; }
    .pb12 { padding-bottom: 12px !important; }
    .pb13 { padding-bottom: 13px !important; }
    .pb14 { padding-bottom: 14px !important; }
    .pb15 { padding-bottom: 15px !important; }
    .pb16 { padding-bottom: 16px !important; }
    .pb17 { padding-bottom: 17px !important; }
    .pb18 { padding-bottom: 18px !important; }
    .pb19 { padding-bottom: 19px !important; }
    .pb20 { padding-bottom: 20px !important; }
    .pb21 { padding-bottom: 21px !important; }
    .pb22 { padding-bottom: 22px !important; }
    .pb23 { padding-bottom: 23px !important; }
    .pb24 { padding-bottom: 24px !important; }
    .pb25 { padding-bottom: 25px !important; }
    .pb26 { padding-bottom: 26px !important; }
    .pb27 { padding-bottom: 27px !important; }
    .pb28 { padding-bottom: 28px !important; }
    .pb29 { padding-bottom: 29px !important; }
    .pb30 { padding-bottom: 30px !important; }
    .pb31 { padding-bottom: 31px !important; }
    .pb32 { padding-bottom: 32px !important; }
    .pb33 { padding-bottom: 33px !important; }
    .pb34 { padding-bottom: 34px !important; }
    .pb35 { padding-bottom: 35px !important; }
    .pb36 { padding-bottom: 36px !important; }
    .pb37 { padding-bottom: 37px !important; }
    .pb38 { padding-bottom: 38px !important; }
    .pb39 { padding-bottom: 39px !important; }
    .pb40 { padding-bottom: 40px !important; }
    .pb41 { padding-bottom: 41px !important; }
    .pb42 { padding-bottom: 42px !important; }
    .pb43 { padding-bottom: 43px !important; }
    .pb44 { padding-bottom: 44px !important; }
    .pb45 { padding-bottom: 45px !important; }
    .pb46 { padding-bottom: 46px !important; }
    .pb47 { padding-bottom: 47px !important; }
    .pb48 { padding-bottom: 48px !important; }
    .pb49 { padding-bottom: 49px !important; }
    .pb50 { padding-bottom: 50px !important; }
    .pb51 { padding-bottom: 51px !important; }
    .pb52 { padding-bottom: 52px !important; }
    .pb53 { padding-bottom: 53px !important; }
    .pb54 { padding-bottom: 54px !important; }
    .pb55 { padding-bottom: 55px !important; }
    .pb56 { padding-bottom: 56px !important; }
    .pb57 { padding-bottom: 57px !important; }
    .pb58 { padding-bottom: 58px !important; }
    .pb59 { padding-bottom: 59px !important; }
    .pb60 { padding-bottom: 60px !important; }
    .pb61 { padding-bottom: 61px !important; }
    .pb62 { padding-bottom: 62px !important; }
    .pb63 { padding-bottom: 63px !important; }
    .pb64 { padding-bottom: 64px !important; }
    .pb65 { padding-bottom: 65px !important; }
    .pb66 { padding-bottom: 66px !important; }
    .pb67 { padding-bottom: 67px !important; }
    .pb68 { padding-bottom: 68px !important; }
    .pb69 { padding-bottom: 69px !important; }
    .pb70 { padding-bottom: 70px !important; }
    .pb71 { padding-bottom: 71px !important; }
    .pb72 { padding-bottom: 72px !important; }
    .pb73 { padding-bottom: 73px !important; }
    .pb74 { padding-bottom: 74px !important; }
    .pb75 { padding-bottom: 75px !important; }
    .pb76 { padding-bottom: 76px !important; }
    .pb77 { padding-bottom: 77px !important; }
    .pb78 { padding-bottom: 78px !important; }
    .pb79 { padding-bottom: 79px !important; }
    .pb80 { padding-bottom: 80px !important; }
    .pb81 { padding-bottom: 81px !important; }
    .pb82 { padding-bottom: 82px !important; }
    .pb83 { padding-bottom: 83px !important; }
    .pb84 { padding-bottom: 84px !important; }
    .pb85 { padding-bottom: 85px !important; }
    .pb86 { padding-bottom: 86px !important; }
    .pb87 { padding-bottom: 87px !important; }
    .pb88 { padding-bottom: 88px !important; }
    .pb89 { padding-bottom: 89px !important; }
    .pb90 { padding-bottom: 90px !important; }
    .pb91 { padding-bottom: 91px !important; }
    .pb92 { padding-bottom: 92px !important; }
    .pb93 { padding-bottom: 93px !important; }
    .pb94 { padding-bottom: 94px !important; }
    .pb95 { padding-bottom: 95px !important; }
    .pb96 { padding-bottom: 96px !important; }
    .pb97 { padding-bottom: 97px !important; }
    .pb98 { padding-bottom: 98px !important; }
    .pb99 { padding-bottom: 99px !important; }
    .pb100 { padding-bottom: 100px !important; }
}


/* max-width */
@media all {
    .mw700  { max-width:  700px !important; }
    .mw710  { max-width:  710px !important; }
    .mw720  { max-width:  720px !important; }
    .mw730  { max-width:  730px !important; }
    .mw740  { max-width:  740px !important; }
    .mw750  { max-width:  750px !important; }
    .mw760  { max-width:  760px !important; }
    .mw770  { max-width:  770px !important; }
    .mw780  { max-width:  780px !important; }
    .mw790  { max-width:  790px !important; }
    .mw800  { max-width:  800px !important; }
    .mw810  { max-width:  810px !important; }
    .mw820  { max-width:  820px !important; }
    .mw830  { max-width:  830px !important; }
    .mw840  { max-width:  840px !important; }
    .mw850  { max-width:  850px !important; }
    .mw860  { max-width:  860px !important; }
    .mw870  { max-width:  870px !important; }
    .mw880  { max-width:  880px !important; }
    .mw890  { max-width:  890px !important; }
    .mw900  { max-width:  900px !important; }
    .mw910  { max-width:  910px !important; }
    .mw920  { max-width:  920px !important; }
    .mw930  { max-width:  930px !important; }
    .mw940  { max-width:  940px !important; }
    .mw950  { max-width:  950px !important; }
    .mw960  { max-width:  960px !important; }
    .mw970  { max-width:  970px !important; }
    .mw980  { max-width:  980px !important; }
    .mw990  { max-width:  990px !important; }
    .mw1000 { max-width: 1000px !important; }
}


/* margin: auto 0 */
@media all {
    .m-auto { margin: 0 auto; }
}


/* ------------------------------------------------------------- */
/* 画像                                                           */
/* ------------------------------------------------------------- */
img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}


/* ------------------------------------------------------------- */
/* リンク　                                                        */
/* ------------------------------------------------------------- */
a {
    text-decoration: none;
    color: var(--color-black1);
    cursor: pointer;
}
a:hover,
a:hover img {
    opacity: 0.7;
}


/* ------------------------------------------------------------- */
/* H1                                                            */
/* ------------------------------------------------------------- */
/* TYPE1 */
@media all {
    .h1_type1 {
        width: var(--width-100);
        margin: 0 auto;
        margin-top: -115px;
        background-image: url('../img/sub/sub_title_back.png');
        text-align: center;
        padding-top: 45px;
        padding-bottom: 17px;
        z-index: 1;
        background-size: 1620px;
        background-position: center top;
        position: relative;
        max-width: var(--content-width-1);
        margin-bottom: 29px;
    }
    
    .h1_type1 h1 {
        font-size: 32px;
        line-height: 1;
        font-weight: var(--font-weight-bold);
        padding-bottom: 7px;
    }
    
    .h1_type1 .en {
        font-size: 14px;
        line-height: 1;
    }
}
@media (max-width: 767px) {
    .h1_type1 {
        margin-top: -50px;
        background-size: 920px;
        padding-top: 32px;
        padding-bottom: 29px;
    }
    .h1_type1 h1 {
        font-size: 22px;
        padding-bottom: 2px;
    }
    .h1_type1 .en {
        font-size: 12px;
    }
    
}


/* ------------------------------------------------------------- */
/* H2                                                            */
/* ------------------------------------------------------------- */
/* TYPE1 */
@media all {
    .h2_type1 {
        max-width: var(--content-width-2);
        margin: 0 auto;
        width: var(--width-100);
        height: 64px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 26px;
        font-weight: var(--font-weight-bold);
        color: var(--color-white);
        background: var(--gradient1);
        margin-bottom: 42px;
    }
}
@media (max-width: 767px) {
    .h2_type1 {
        width: 100%;
        height: 54px;
        font-size: 20px;
        margin-bottom: 20px;
    }
}


/* TYPE2 */
@media all {
    .h2_type2 h2 {
        text-align: center;
        padding-bottom: 20px;
    }
    .h2_type2 .pc {
        max-width: 610px;
    }
    .h2_type2 .sp {
        display: none;
        max-width: 207px;
    }
}
@media (max-width: 767px) {
    .h2_type2 h2 {
        padding-bottom: 14px;
    }
    .h2_type2 .pc {
        display: none;
    }
    .h2_type2 .sp {
        display: initial;
    }
}


/* ------------------------------------------------------------- */
/* H3                                                            */
/* ------------------------------------------------------------- */
/* TYPE1 */
@media all {
    .h3_type1 {
        width: var(--width-100);
        max-width: 275px;
        margin: 0 auto;
        padding-bottom: 31px;
    }
    .h3_type1 h3 {
        width: 100%;
        border-bottom: solid 2px;
        border-image: var(--gradient1);
        border-image-slice: 1;
        text-align: center;
        font-size: 22px;
        line-height: 1;
        font-weight: var(--font-weight-bold);
        padding-bottom: 13px;
    }
}
@media (max-width: 767px) {
    .h3_type1 {
        padding-bottom: 23px;
    }
    .h3_type1 h3 {
        font-size: 16px;
        padding-bottom: 12px;
    }
}


/* ------------------------------------------------------------- */
/* H4                                                            */
/* ------------------------------------------------------------- */
/* TYPE1 */
@media all {
    .h4_type1 {
        padding-bottom: 25px;
    }
    .h4_type1 h4 {
        width: 100%;
        height: 49px;
        display: flex;
        justify-content: center;
        background-color: var(--color-blue3);
        align-items: center;
        font-size: 18px;
        font-weight: var(--font-weight-bold);
    }
}
@media (max-width: 767px) {
    .h4_type1 {
        padding-bottom: 18px;
    }
    .h4_type1 h4 {
        height: 42px;
        font-size: 14px;
    }
}


/* ------------------------------------------------------------- */
/* ページナビ　                                                     */
/* ------------------------------------------------------------- */
@media all {
    .page-navi {
        padding-bottom: 72px;
    }
    .page-navi ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .page-navi ul li {
        width: calc(100% / 3);
        max-width: 289px;
        padding: 0 9.5px;
        height: 70px;
    }
    .page-navi ul li a {
        display: flex;
        width: calc(100% - 4px);
        height: calc(100% - 4px);
        margin: 2px;
        position: relative;
        justify-content: center;
        align-items: center;
        background-color: var(--color-white);
        border-radius: 2px;
    }
    .page-navi ul li a::after {
        content: "";
        display: block;
        position: absolute;
        width: calc(100% + 4px);
        height: calc(100% + 4px);
        top: -2px;
        left: -2px;
        background: var(--gradient1);
        border-radius: 3px;
        z-index: -1;
    }
    .page-navi ul li a p {
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: var(--font-weight-bold);
    }
    .page-navi ul li a p::before {
        content: "";
        display: block;
        width: 28px;
        height: 28px;
        background-image: url('../img/sub/icon_arrow.png');
        margin-right: 11px;
        background-size: cover;
        background-repeat: no-repeat;
    }
    

    /* ホバー */
    .page-navi ul li a:hover {
        opacity: 1;
    }
    .page-navi ul li a:hover::after {
        opacity: 0.7;
    }
    .page-navi ul li a:hover p {
        opacity: 0.7;
    }
    
}
@media (max-width: 767px) {
    .page-navi {
        padding-bottom: 45px;
    }
    .page-navi ul {
        display: block;
    }
    .page-navi ul li {
        width: 100%;
        padding: 0;
        max-width: 219px;
        height: 51px;
        padding-bottom: 11px;
        margin:  0 auto;
    }
    .page-navi ul li a {
        border-radius: 0;
    }
    .page-navi ul li a::after {
        border-radius: 0;
    }
    .page-navi ul li a p {
        font-size: 14px;
        justify-content: left;
        width: 100%;
        line-height: 21px;
        padding: 0 5px;
    }
    .page-navi ul li a p::before {
        width: 21px;
        height: 21px;
        margin-right: 8px;
    }
}


/* ------------------------------------------------------------- */
/* ページナビ　スクロール先位置調整                                      */
/* ------------------------------------------------------------- */
/*
@media all {
    section#c1,
    section#c2,
    section#c3 {
        margin-top: calc( -1 * var(--header-height));
        padding-top: var(--header-height);
    }
}
*/

/* ------------------------------------------------------------- */
/* P:文字                                                         */
/* ------------------------------------------------------------- */
/* TYPE1 */
@media all {
    p.type1 {
        font-size: 20px;
        max-width: var(--width-100);
        margin: 0 auto;
        padding-bottom: 10px;
    }
}
@media (max-width: 767px) {
    p.type1 {
        font-size: 18px;
        line-height: 24px;
        text-align: left !important;
    }
}


/* TYPE2 */
@media all {
    p.type2 {
        font-size: 18px;
        line-height: 28px;
        width: var(--width-100);
        margin: 0 auto;
    }
}
@media (max-width: 767px) {
    p.type2 {
        font-size: 16px;
        line-height: 22px;
        text-align: left !important;
    }
}


/* TYPE3 */
@media all {
    p.type3 {
        font-size: 18px;
        line-height: 28px;
        width: var(--width-100);
        max-width: var(--content-width-4);
        margin: 0 auto;
    }
}
@media (max-width: 767px) {
    p.type3 {
        font-size: 16px;
        line-height: 22px;
    }
}


/* TYPE4 */
@media all {
    p.type4 {
        font-size: 22px;
        line-height: 32px;
    }
}
@media (max-width: 767px) {
    p.type4 {
        font-size: 18px;
        line-height: 24px;
    }
}


/* ------------------------------------------------------------- */
/* ボタン　                                                        */
/* ------------------------------------------------------------- */
/* TYPE1 */
@media all {
    .button_type1 {
        width: 100%;
        max-width: 407px;
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--gradient1);
        border-radius: 3px;
        cursor: pointer;
        position: relative;
        margin: 0 auto;
        padding: 2px;
    }    
    .button_type1:hover {
        opacity: 0.7;
    }
    .button_type1 button {
        -webkit-appearance: none;
        display: block;
        width: 100%;
        height: 100%;
        border: none;
        background-color: var(--color-white);
        border-radius: 2px;
        font-size: 18px;
        font-weight: var(--font-weight-bold);
        color: var(--color-black1);
    }
    .button_type1 a {
        -webkit-appearance: none;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        border: none;
        background-color: var(--color-white);
        border-radius: 2px;
        font-size: 18px;
        font-weight: var(--font-weight-bold);
        color: var(--color-black1);
        text-align: center;
    }
    .button_type1 a:hover {
        opacity: 1;
    }
}
@media (max-width: 767px) {
    .button_type1 {
        max-width: 263px;
        height: 57px;
    }
    .button_type1 button {
        font-size: 16px;
    }
}


/* TYPE2 */
@media all {
    .button_type2 button {
        border: none;
        background-color: unset;
        font-size: 18px;
        margin: 0 auto;
        display: block;
        border-bottom: solid 1px;
        line-height: 1;
        cursor: pointer;
        padding-top: 30px;
    }
    .button_type2 button:hover {
        opacity: 0.7;
    }
}
@media (max-width: 767px) { 
    .button_type2 button {
        font-size: 16px;
    }

}


/* ------------------------------------------------------------- */
/* SECTION HEADER                                                */
/* ------------------------------------------------------------- */
@media all {
    .section_header {
        width: var(--width-100);
        margin: 0 auto;
        max-width: var(--content-width-3);
        padding-bottom: 60px;
    }
    .section_header figure {
        position: relative;
        z-index: -1;
    }
    .section_header .content {
        width: var(--width-100);
        max-width: var(--content-width-4);
        margin: 0 auto;
        background-color: var(--color-gray1);
        margin-top: -100px;
        padding: 40px;
        border-radius: 3px;
    }
    .section_header .title {
        font-size: 24px;
        text-align: center;
        font-weight: var(--font-weight-bold);
    }
    .section_header .subtitle {
        text-align: center;
    }
    .section_header .subtitle p {
        display: inline-block;
        padding: 0 18px;
        padding-bottom: 6px;
        border-bottom: solid 2px;
        border-image: var(--gradient1);
        border-image-slice: 1;
    }

    /* table版 */
    .section_header .table {
        margin-top: -94px;
    }
}
@media (max-width: 767px) {
    .section_header {
        width: 100%;
        padding-bottom: 30px;
    }
    .section_header .content {
        margin-top: -45px;
        padding: 25px 30px;
    }
    .section_header .title {
        font-size: 18px;
    }
    .section_header .subtitle {
        font-size: 14px;
    }
    .section_header .subtitle p {
        padding: 0 33px;
        padding-bottom: 8px;
    }


    /* table版 */
    .section_header .table {
        margin-top: -39px;
    }
}


/* ------------------------------------------------------------- */
/* list: リスト　                                                  */
/* ------------------------------------------------------------- */
/* TYPE1 */
@media all {
    .list_type1 {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .list_type1 ul {
        padding: 0 20px;
        width: 50%;
        max-width: 425px;
    }

    .list_type1 ul li {
        position: relative;
        line-height: 38px;
        padding-left: 29px;
        font-size: 18px;
        font-weight: var(--font-weight-bold);
    }
    /* @@@ */
    .list_type1 ul li {
        line-height: 24px;
        padding-bottom: 14px;
    }
    .list_type1 ul li small {
        font-size: 14px;
        font-weight: var(--font-weight-regular);
    }

    .list_type1 ul li::before {
        content: "";
        display: block;
        width: 8px;
        height: 8px;
        position: absolute;
        left: 10px;
        top: 13px;
        border-radius: 50%;
        background-color: var(--color-blue2);
    }
    /* @@@ */
    .list_type1 ul li::before {
        top: 7px;
    }
}
@media (max-width: 1600px) {
    .list_type1 ul li small {
        display: block;
    }
}
@media (max-width: 1023px) {
    .list_type1 ul li {
        line-height: 20px;
        padding-left: 16px;
        padding-bottom: 10px;
    }
    .list_type1 ul li::before {
        left: 0;
        top: 4px;
    }
}
@media (max-width: 767px) {
    .list_type1 ul {
        width: 100%;
        padding: 0;
    }
    .list_type1 ul li {
        font-size: 16px;
        line-height: 18px;
    }
    .list_type1 ul:last-child li:last-child {
        padding-bottom: 0;
    }
}


/* TYPE2 */
@media all {
    .list_type2 ul li {
        position: relative;
        line-height: 24px;
        padding-left: 29px;
        font-size: 18px;
        font-weight: var(--font-weight-bold);
        padding-bottom: 14px;
    }
    .list_type2 ul li:last-child {
        padding-bottom: 0;
    }
    .list_type2 ul li::before {
        content: "";
        display: block;
        width: 8px;
        height: 8px;
        position: absolute;
        left: 10px;
        top: 7px;
        border-radius: 50%;
        background-color: var(--color-blue2);
    }
    .list_type2 ul li small {
        font-size: 16px;
        font-weight: var(--font-weight-regular);
    }
}
@media (max-width: 1023px) {
    .list_type2 ul li {
        line-height: 20px;
        padding-left: 16px;
        padding-bottom: 10px;
    }
    .list_type2 ul li::before {
        left: 0;
        top: 4px;
    }
}
@media (max-width: 767px) {
    .list_type2 ul li {
        font-size: 16px;
        line-height: 18px;
    }
    .list_type2 ul li small {
        font-size: 14px;
    }
}


/* TYPE3 */
@media all {
    .list_type3 {
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
    }
    .list_type3 ul {
        display: grid;
        grid-template-columns: repeat(3, auto);
    }
    .list_type3 ul li {
        position: relative;
        line-height: 28px;
        padding-left: 16px;
    }
    .list_type3 ul li::before {
        content: "○";
        font-size: 12px;
        position: absolute;
        left: 0;
    }
}
@media (max-width: 767px) {
    .list_type3 ul {
        grid-template-columns: auto;
        max-width: 200px;
        margin: 0 auto;
    }
}


/* TYPE4 */
@media all {
    .list_type4 ul {
        display: grid;
        grid-template-columns: repeat(3, 180px);
        max-width: 540px;
        margin: 0 auto;
    }

    .list_type4 ul li {
        position: relative;
        line-height: 38px;
        padding-left: 29px;
        font-size: 18px;
        font-weight: var(--font-weight-bold);
    }

    .list_type4 ul li::before {
        content: "";
        display: block;
        width: 8px;
        height: 8px;
        position: absolute;
        left: 10px;
        top: 13px;
        border-radius: 50%;
        background-color: var(--color-blue2);
    }
}
@media (max-width: 1023px) {
    .list_type4 ul li {
        line-height: 20px;
        padding-left: 16px;
        padding-bottom: 10px;
    }
    .list_type4 ul li::before {
        left: 0;
        top: 4px;
    }
}
@media (max-width: 767px) {
    .list_type4 ul {
        grid-template-columns: repeat(2, 150px);
        max-width: 300px;
        padding: 0;
    }
    .list_type4 ul li {
        font-size: 16px;
        line-height: 18px;
    }
    .list_type4 ul:last-child li:last-child {
        padding-bottom: 0;
    }
}


/* TYPE5 */
@media all {
    .list_type5 ul li {
        position: relative;
        padding-left: 32px;
        font-size: 18px;
        line-height: 24px;
        padding-bottom: 10px;
    }
    .list_type5 ul li::before {
        content: "";
        display: block;
        width: 8px;
        height: 8px;
        position: absolute;
        left: 15px;
        top: 7px;
        border-radius: 50%;
        background-color: var(--color-blue2);
    }
}
@media (max-width: 767px) {
    .list_type5 {
        padding-bottom: 20px;
    }
    .list_type5 ul li {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 8px;
        padding-left: 13px;
    }
    .list_type5 ul li::before {
        left: 2px;
        top: 6px;
        width: 6px;
        height: 6px;
    }
}

/* ------------------------------------------------------------- */
/* figure: 画像リスト　                                             */
/* ------------------------------------------------------------- */
/* TYPE1 */
@media all {
    .figure_type1 {
        width: var(--width-100);
        max-width: var(--content-width-2);
        margin: 0 auto;
    }
    .figure_type1 figure {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding-bottom: 80px;
        margin: 0 -20px
    }

    .figure_type1 figure .img {
        width: calc((100% - 80px) / 2);
        margin: 0 20px;
        margin-bottom: 40px;
    }
    .figure_type1.has_caption figure .img {
        margin-bottom: 80px;
    }
    .figure_type1 figure .img figcaption {
        text-align: center;
        padding-bottom: 10px;
    }
    
    .figure_type1 figure .img figcaption p {
        display: block;
        max-width: 340px;
        margin: 0 auto;
        font-weight: var(--font-weight-bold);
        padding: 0 18px;
        padding-bottom: 6px;
        border-bottom: solid 2px;
        border-image: var(--gradient1);
        border-image-slice: 1;
    }

    
    /* 装飾あり */
    /*
    .figure_type1 figure .img.type2 {
        padding-right: 15px;
        padding-bottom: 15px;
        position: relative;
    }
    .figure_type1 figure .img.type2::after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-top: solid 180px transparent;
        border-right: solid 175px var(--color-green2);
        position: absolute;
        z-index: -1;
        bottom: 0;
        right: 0;
    }
    */
    .figure_type1 figure .img.type2 {
        position: relative;
        padding-top: calc((100% - 80px) / 2 * (451 / 680));
        border: solid 1px var(--color-black1);
    }
    
    .figure_type1 figure .img.type2 img {
        position: absolute;
        top: 15px;
        height: calc(100% - 30px);
        object-fit: contain;
    }


    /* GRID */
    .figure_type1.grid figure {
        margin-left: 0;
        margin-right: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 40px;
    }
    .figure_type1.grid figure .img {
        width: 100%;
        margin: 0;
        margin-bottom: 34px;
    }
    .figure_type1.grid figure .img.row1_3 {
        grid-row: 1/3;
    }
}
@media (max-width: 767px) {
    .figure_type1 figure {
        display: block;
        margin: 0;
        padding-bottom: 47px;
    }
    .figure_type1 figure .img {
        width: 100%;
        margin: 0;
        margin-bottom: 24px;
    }
    .figure_type1.has_caption figure .img {
        margin-bottom: 50px;
    }
    .figure_type1 figure .img figcaption {
        padding-bottom: 7px;
    }
    .figure_type1 figure .img figcaption p {
        font-size: 12px;
        padding: 0 18px;
        padding-bottom: 6px;
        max-width: 270px;
    }
    



    .figure_type1 figure .img.type2 {
        /* padding-bottom: 10px; */
        /* padding-right: 10px; */
        padding-top: calc((451 / 680) * 100%);
    }
    .figure_type1 figure .img.type2::after {
        border-top-width: 113px;
        border-right-width: 111px;
    }


    /* GRID */
    .figure_type1.grid figure {
        display: block;
    }
}


/* ------------------------------------------------------------- */
/* flex_type                                                     */
/* ------------------------------------------------------------- */
/* TYPE1 */
@media all {
    .flex_type1 {
        display: flex;
    }

    .flex_type1 .list_type1 {
        width: 534px;
    }
    .flex_type1 .list_type1 ul:first-child {
        width: 247px;
    }
    .flex_type1 .list_type1 ul:last-child {
        width: calc(100% - 247px);
    }
    

    .flex_type1 figure.type2 {
        width: calc(100% - 550px);
        z-index: auto;
        display: grid;
        grid-template-columns: repeat(3, auto);
        align-items: end;
        column-gap: 10px;
    }
    .flex_type1 figure.type2 .img1 {
        max-width: 101px;
    }
    .flex_type1 figure.type2 .img2 {
        max-width: 71px;
    }
    .flex_type1 figure.type2 .img3 {
        max-width: 50px;
    }
}
@media (max-width: 1023px) {
    .flex_type1 .list_type1 {
        display: block;
        width: 300px;
    }
    .flex_type1 .list_type1 ul:first-child,
    .flex_type1 .list_type1 ul:last-child {
        width: 100%;}
    
    .flex_type1 figure.type2 {
        width: calc(100% - 300px);
    }
}
@media (max-width: 767px) {
    .flex_type1 figure.type2 {
        grid-template-columns: 70px 40px;
        grid-template-rows: auto auto;
        row-gap: 13px;
        width: calc(100% - 230px);
    }
    
    .flex_type1 figure.type2 .img1 {
        max-width: 68px;
        grid-column: 1/2;
        grid-row: 1/2;
    }
    
    .flex_type1 figure.type2 .img3 {
        max-width: 33px;
        grid-column: 2/3;
        grid-row: 1/3;
    }
    
    .flex_type1 figure.type2 .img2 {
        max-width: 48px;
        grid-column: 1/2;
        grid-row: 2/3;
    }
    
    .flex_type1 .list_type1 {
        width: 228px;
        padding-right: 20px;
    }
}
@media (max-width: 440px) {
    .flex_type1 {
        display: block;
    }
    
    .flex_type1 .list_type1 {
        width: 100%;
    }
    
    .flex_type1 figure.type2 {
        width: 100%;
        grid-template-columns: repeat(3, auto);
        justify-content: center;
        column-gap: 20px;
    }
    
    .flex_type1 figure.type2 .img1,
    .flex_type1 figure.type2 .img2,
    .flex_type1 figure.type2 .img3 {
        grid-column: auto;
        grid-row: auto;
    }
}


/* ------------------------------------------------------------- */
/* grid_type                                                     */
/* ------------------------------------------------------------- */
/* TYPE1 */
@media all {
    .grid_type1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 30px;
        width: var(--width-100);
        max-width: var(--content-width-4);
        margin: 0 auto;
        padding-bottom: 80px;
    }
}


/* ------------------------------------------------------------- */
/* BOX                                                           */
/* ------------------------------------------------------------- */
/* TYPE1 */
@media all {
    .box_type1 {
        width: 100%;
        border-top: solid 2px;
        border-bottom: solid 2px;
        border-image: var(--gradient1);
        border-image-slice: 1;
        background-color: var(--color-white);
        padding-top: 26px;
        padding-bottom: 26px;
    }
    .box_type1 p {
        font-size: 18px;
        text-align: center;
        line-height: 1;
        font-weight: var(--font-weight-bold);
        padding-bottom: 19px;
    }
}


/* TYPE2 */
@media all {
    .box_type2 {
        width: var(--width-100);
        max-width: var(--content-width-2);
        margin: 0 auto;
        padding-bottom: 63px;
    }
    
    .box_type2-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .box_type2-inner > * {
        width: 50%;
    }
    
    .box_type2-inner figure {
        position: relative;
        padding-top: calc(50% * (370 / 700));
    }
    
    .box_type2-inner figure img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        top: 0;
        left: 0;
    }
    
    .box_type2-inner .content {
        display: flex;
        background-color: var(--color-blue2);
        justify-content: center;
        align-items: center;
    }
    
    .box_type2-inner .content p {
        font-size: 28px;
        line-height: 44px;
        color: var(--color-white);
        font-weight: var(--font-weight-bold);
        padding-bottom: 41px;
    }
    
    .box_type2-inner .content .name {
        font-size: 18px;
        color: var(--color-white);
        text-align: center;
    }
    
    .box_type2-inner .content .name span {
        padding-right: 20px;
    }
    
    .box_type2-inner .content .name img {
        width: 227px;
    }
}
@media (max-width: 1023px) {
    .box_type2-inner .content p {
        font-size: 20px;
        line-height: 30px;
        padding-bottom: 25px;
    }
    
    .box_type2-inner .content .name {
        font-size: 16px;
    }
    
    .box_type2-inner .content .name span {
        padding-right: 12px;
    }
    
    .box_type2-inner .content .name img {
        width: 165px;
    }
}
@media (max-width: 767px) {
    .box_type2 {
        padding-bottom: 47px;
    }
    .box_type2-inner > * {
        width: 100%;
    }
    .box_type2-inner figure {
        padding: 0;
    }
    .box_type2-inner figure img {
        position: initial;
    }
    .box_type2-inner .content {
        padding-top: 22px;
        padding-bottom: 28px;
    }
}


/* ------------------------------------------------------------- */
/* TABLE                                                         */
/* ------------------------------------------------------------- */
/* TYPE1 */
@media all {
    .table_type1 {
        width: var(--width-100);
        max-width: var(--content-width-4);
        margin: 0 auto;
    }
    
    .table_type1 tr th {
        width: 264px;
        background-color: var(--color-blue3);
        border-right: solid 3px var(--color-white);
        border-bottom: solid 3px var(--color-white);
        font-size: 16px;
        font-weight: var(--font-weight-bold);
        line-height: 16px;
        padding: 21px 0;
        vertical-align: middle;
    }
    
    .table_type1 tr td {
        background-color: var(--color-gray1);
        font-size: 18px;
        line-height: 28px;
        padding: 15px 15px;
        border-bottom: solid 3px var(--color-white);
    }
    
    .table_type1 table {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .table_type1 tr th {
        width: 130px;
        font-size: 12px;
        line-height: 12px;
        padding: 17px 0;
        border-right-width: 2px;
    }
    
    .table_type1 tr td {
        font-size: 14px;
        line-height: 18px;
        padding: 14px 5px;
    }
    
}


/* TYPE2 */
@media all {
    .table_type2 {
        width: var(--width-100);
        max-width: var(--content-width-4);
        margin: 0 auto;
        padding-bottom: 80px;
    }
    .table_type2 table {
        width: 100%;
    }
    .table_type2 tr {
        display: flex;
        flex-wrap: wrap;
    }
    .table_type2 tr th {
        width: 264px;
        height: 77px;
        background-color: var(--color-blue3);
        border-right: solid 3px var(--color-white);
        border-bottom: solid 3px var(--color-white);
        font-size: 16px;
        font-weight: var(--font-weight-bold);
        line-height: 16px;
        vertical-align: middle;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .table_type2 tr th .year {
        width: 60px;
        text-align: right;
    }
    .table_type2 tr th .month {
        width: 42px;
        text-align: right;
    }
    
    
    .table_type2 tr td {
        width: calc(100% - 264px);
        height: 77px;
        background-color: var(--color-gray1);
        border-bottom: solid 3px var(--color-white);
        display: flex;
        font-size: 18px;
        line-height: 26px;
        justify-content: flex-start;
        align-items: center;
        padding-left: 18px;
    }
}
@media (max-width:767px) {
    .table_type2 {
        padding-bottom: 50px;
    }
    .table_type2 tr th {
        width: 100%;
        height: 36px;
        font-size: 14px;
        line-height: 14px;
        border-right: none;
    }
    
    .table_type2 tr th .month {
        width: 36px;
    }
    
    .table_type2 tr td {
        width: 100%;
        height: 63px;
        font-size: 14px;
        line-height: 22px;
        padding-left: 15px;
    }
}


/* TYPE3 */
@media all {
    .table_type3 table {
        width: 100%;
    }
    .table_type3 table tr {
        display: flex;
        height: 68px;
        border-bottom: solid 3px var(--color-white);
    }
    .table_type3 table tr th {
        width: calc(100% - 83px);
        background-color: var(--color-blue3);
        border-right: solid 3px var(--color-white);
        display: flex;
        justify-content: flex-start;
        align-items: center;
        font-size: 18px;
        line-height: 24px;
        padding-left: 15px;
        text-align: left;
    }
    .table_type3 table tr th span {
        font-size: 14px;
    }
    .table_type3 table tr td {
        width: 83px;
        height: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        background-color: var(--color-gray1);
        font-size: 18px;
        padding-right: 20px;
    }


    .table_type3 table tr:nth-child(even) th,
    .table_type3 table tr:nth-child(even) td {
        background-color: var(--color-white);
    }
}
@media (max-width: 767px) {
    .grid_type1 {
        grid-template-columns: 1fr;
        padding-bottom: 50px;
    }
    .table_type3 table tr th {
        font-size: 14px;
        line-height: 20px;
        width: calc(100% - 50px);
    }
    .table_type3 table tr td {
        width: 50px;
        font-size: 14px;
        padding-right: 12px;
    }
    .table_type3 table tr {
        height: 45px;
    }
    

    .table_type3 table tr:nth-child(even) th{
        background-color: var(--color-blue3);
    }
    .table_type3 table tr:nth-child(even) td {
        background-color: var(--color-gray1);
    }
}


/* TYPE4 */
@media all {
    .table_type4 {
        width: var(--width-100);
        max-width: var(--content-width-3);
        margin: 0 auto;
        padding-bottom: 120px;
    }
    .table_type4 table {
        width: 100%;
    }
    .table_type4 tr th {
        width: 264px;
        background-color: var(--color-blue3);
        border-right: solid 3px var(--color-white);
        border-bottom: solid 3px var(--color-white);
        font-size: 14px;
        font-weight: var(--font-weight-bold);
        line-height: 1;
        padding: 18px 0 19px;
        vertical-align: middle;
    }
    .table_type4 tr td {
        background-color: var(--color-gray1);
        font-size: 16px;
        line-height: 26px;
        padding: 12px 15px 13px;
        border-bottom: solid 3px var(--color-white);
    }
    .table_type4 tr td.flex {
        display: flex;
        flex-wrap: wrap;
    }


    /* リスト */
    .table_type4 tr td ul li {
        position: relative;
        padding-left: 15px;
        padding-bottom: 4px;
    }
    .table_type4 tr td ul li::before {
        content: "●";
        font-size: 10px;
        position: absolute;
        left: 0;
    }


    /**/
    .table_type4 tr td p {
        padding-bottom: 10px;
        width: 100%;
    }
    .table_type4 tr td .tel a {
        display: flex;
        justify-content: flex-start;
        align-items: flex-end;
        padding-right: 43px;
    }
    .table_type4 tr td .tel .icon {
        width: 23px;
        margin-right: 10px;
    }
    .table_type4 tr td .tel .text {
        font-size: 18px;
        line-height: 1;
        font-weight: var(--font-weight-bold);
    }
    .table_type4 tr td .mail {
        display: flex;
        justify-content: flex-start;
        align-items: flex-end;
    }
    .table_type4 tr td .mail .icon {
        width: 25px;
        margin-right: 8px;
    }
    .table_type4 tr td .mail .text {
        width: 190px;
    }
}
@media (max-width: 767px) {
    .table_type4 {
        padding-bottom: 50px;
    }
    .table_type4 tr th {
        width: 100%;
        display: block;
        text-align: left;
        font-size: 14px;
        padding: 11px 17px;
        border-right: none;
    }
    
    .table_type4 tr {
        display: block;
    }
    
    .table_type4 tr td {
        display: block;
        width: 100%;
        font-size: 14px;
        line-height: 22px;
        padding: 8px 17px 7px;
    }
    
    .table_type4 tr td ul li::before {
        font-size: 8px;
    }
    
    .table_type4 tr td ul li {
        padding-left: 12px;
    }
    
    .table_type4 tr td .tel {
        width: 100%;
        padding-bottom: 9px;
        padding-right: 0;
    }
    
    .table_type4 tr td .tel .icon {
        width: 17px;
    }
    
    .table_type4 tr td .tel .text {
        font-size: 16px;
    }
    
    .table_type4 tr td .mail {
        width: 100%;
        padding-bottom: 10px;
    }
    
    .table_type4 tr td .mail .icon {
        width: 17px;
        margin-right: 10px;
    }
    
    .table_type4 tr td .mail .text {
        width: 172px;
    }
    
    .table_type4 tr td .mail .icon img {
        vertical-align: middle;
    }
}