@charset "UTF-8";

/* CSS Document */


/* サイト全体指定 */
body {
    font-family: "Arial", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    width: 100%;
    margin: 0;
}


/* naviメニュー用 */
#global-navi {
    background: #7E4600;
    top: 0px;
    right: 0px;
    width: 100%;
}

#wrapper nav ul li {
    display: inline-block;
    font-size: 16px;
    padding: 10px 5px 10px 28px;
}

#wrapper nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
}


/*スマホ画面で例１のハンバーガーメニューの形にする*/
@media screen and (max-width: 600px) {
    #wrapper nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100%;
        padding-top: 10px;
        background: #7E4600;
        font-size: 16px;
        box-sizing: border-box;
        z-index: 2
    }

    #wrapper nav ul li {
        display: block;
        padding: 15px 28px
    }

    #wrapper nav ul li a {
        text-decoration: none;
        color: #fff;
    }

    #wrapper .btn-gnavi {
        position: fixed;
        top: -20px;
        right: 20px;
        width: 30px;
        height: 0px;
        z-index: 3;
        box-sizing: border-box;
        cursor: pointer;
        -webkit-transition: all 400ms;
        transition: all 400ms
    }

    #wrapper .btn-gnavi span {
        position: absolute;
        width: 30px;
        height: 4px;
        background: #7E4600;
        border-radius: 10px;
        -webkit-transition: all 400ms;
        transition: all 400ms
    }

    #wrapper .btn-gnavi span:nth-child(1) {
        top: 0
    }

    #wrapper .btn-gnavi span:nth-child(2) {
        top: 10px
    }

    #wrapper .btn-gnavi span:nth-child(3) {
        top: 20px
    }

    #wrapper .btn-gnavi.open {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    #wrapper .btn-gnavi.open span {
        background: #fff
    }

    #wrapper .btn-gnavi.open span {
        width: 24px;
    }

    #wrapper .contents section p {
        position: absolute;
        top: 50%;
        width: 30%;
        line-height: 1.4;
        font-size: 20px;
        color: #fff;
        text-shadow: 0 0 6px #666
    }

    #wrapper .contents section:nth-child(odd) p {
        left: 10%
    }

    #wrapper .contents section:nth-child(even) p {
        right: 10%
    }
}

/* naviメニューここまで */

.center {
    text-align: center;
}

p {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 60px auto 40px;
}

.p1 {
    padding: 10px;
    text-align: center;
    background-color: #C9DDF7;
    color: #fff;
}

.font1 {
    color: #FF4A4C;
    font-size: 0.6em;
    font-family: "Arial", "メイリオ";
}

.font2 {
    color: #FF4A4C;
    font-family: "Arial", "メイリオ";
}

.font4 {
    background-color: antiquewhite;
    font-size: 16px;
    padding: 10px 10px 10px 28px;
    color: #222;
    text-decoration: none;
}

.font5 {
    background-color: #88abda;
    font-size: 16px;
    padding: 10px 10px 10px 28px;
    color: #fff;
    text-decoration: none;
}

.button {
    display: inline-block;
    border-radius: 50%;
    /* 角丸       */
    font-size: 0.8em;
    /* 文字サイズ */
    text-align: center;
    /* 文字位置   */
    cursor: pointer;
    /* カーソル   */
    padding: 10px 10px;
    /* 余白       */
    background: #88abda;
    /* 背景色     */
    color: #ffffff;
    /* 文字色     */
    line-height: 1em;
    /* 1行の高さ  */
    transition: .3s;
    /* なめらか変化 */
    border: 2px solid #88abda;
    /* 枠の指定 */
}

.button:hover {
    color: #88abda;
    /* 背景色     */
    background: #ffffff;
    /* 文字色     */
}

.button1 {
    display: inline-block;
    border-radius: 50%;
    /* 角丸       */
    font-size: 0.8em;
    /* 文字サイズ */
    text-align: center;
    /* 文字位置   */
    cursor: pointer;
    /* カーソル   */
    padding: 10px 10px;
    /* 余白       */
    background: #AAAAAA;
    /* 背景色     */
    color: #ffffff;
    /* 文字色     */
    line-height: 1em;
    /* 1行の高さ  */
    transition: .3s;
    /* なめらか変化 */
    border: 2px solid #AAAAAA;
    /* 枠の指定 */
}

.button1:hover {
    color: #AAAAAA;
    /* 背景色     */
    background: #ffffff;
    /* 文字色     */
}



.parent1 {
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
}

.child1 {
    background-color: #fff;
    width: 100%;
    text-align: center;
    margin: 10px 0px 10px 0px;
    padding: 10px 0px 10px 0px;
}

.parent2 {
    background-color: #000;
    width: 100%;
}

.child2 {
    background-color: #FFFFFF;
    padding: 2px 2px 2px 2px;
}

.parent3 {
    background-color: #FF0004;
    width: 100%;
}

.child3 {
    margin-right: 0;
    background-color: aqua;
    width: 30px;
    text-align: right;
    margin: 0 0 0 80%;
    padding: 2px;
    padding: 2px;
}

hr.space1 {
    margin: 5px 0 5px 0;
    border: none;
}

/* フォーム*/
.lead-form {
    text-align: center;
    font-size: 20px;
}

form {
    width: auto;
    margin: 0 auto;
}

.item {
    overflow: hidden;
    margin-bottom: 20px;
}

.label {
    float: left;
    margin-right: 20px;
    width: 50%;
    border-left: solid 3px #C76F00;
    padding-left: 10px;
}

.inputs {
    float: left;
    width: 50%;
}

input[type="text"],
input[type="email"] {
    border: solid 1px #aaa;
    border-radius: 5px;
    padding: 10px;
    font-size: 15px;
}

textarea {
    border: solid 1px #aaa;
    border-radius: 5px;
    padding: 10px;
    height: 160px;
    font-size: 15px;
}


/* parent4ここから */
@media screen and (max-width: 800px) {
    .parent {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 400px) {
    .parent {
        display: block;
    }
}

.parent4 {
    background: #fff;
    display: flex;
}

.child4 {
    background: #fff;
    width: 30px;
    text-align: center;
    margin-right: 0;
    padding: 2px;
}

.child41 {
    background: #fff;
    width: auto;
    text-align: center;
    margin-right: 0;
    padding: 2px;
}

.child42 {
    background: #fff;
    width: auto;
    text-align: center;
    margin-right: 0;
    padding: 2px;
}

/* parent4ここまで */




/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
    display: block !important;
}

.sp {
    display: none !important;
}


/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}

.footer {
    text-align: center;
    background-color: #C76F00;
    color: #fff;
    font-family: "Arial", "メイリオ";
    font-size: 0.6em;
}


/*===============================================
画面の横幅が641px以上（パソコン用）
===============================================*/

@media screen and (min-width: 641px) {
    .logo {
        position: absolute;
        margin-top: 0px;
        margin-left: 0px;
        width: 530px;
    }

    .box2 {
        display: flex;
        justify-content: space-between;
    }

    .flimg {
        background-color: #fff;
        width: 40px;
        margin-right: 30px;
        padding: 3px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    h1 {
        background: #C76F00;
        font-size: 16px;
        padding: 10px 10px 10px 28px;
        color: #FFFFFF;
        text-decoration: none;
        margin: 0.5em 0 0.5em 0;
    }

    h2 {
        color: #272727;
        font-size: 120%;
        margin-left: 5px;
        margin-right: 50%;
        padding: .5em .75em;
        background-color: #FFFBE4;
    }

    h3 {
        border-bottom: solid 3px #AA5300;
        position: relative;
    }

    h3:after {
        position: absolute;
        content: " ";
        display: block;
        border-bottom: solid 3px #5B2900;
        bottom: -3px;
        width: 20%;
    }

    .buttonlink {
        text-align: center;
        color: #fff;
        /*文字色*/
        border: solid 3px #C76F00;
        /*線色*/
        padding: 0.5em;
        /*文字周りの余白*/
        border-radius: 0.5em;
        /*角丸*/
        background: #C76F00;
        margin-left: auto;
        margin-right: auto;
        width: 70%;
        font-size: 100%;
    }

    .buttonlink a:link {
        text-decoration: none;
        color: #fff;
    }

    .buttonlink a:active {
        text-decoration: none;
        color: #fff;
    }

    .buttonlink a:hover {
        text-decoration: none;
        color: #fff;
    }

    .buttonlink a:visited {
        text-decoration: none;
        color: #fff;
    }

    h6 {
        text-align: center;
        color: #EE0003;
        /*文字色*/
        border: solid 3px #EE0003;
        /*線色*/
        padding: 0.5em;
        /*文字周りの余白*/
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        font-size: 100%;
    }

    h7 {
        text-align: center;
        color: #EEE;
        /*文字色*/
        border: solid 3px #88abda;
        /*線色*/
        padding: 0.5em;
        /*文字周りの余白*/
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        font-size: 100%;
    }

    .h8 {
        font-size: 100%;
        color: #000;
        font-family: serif;
        padding: 1.4rem 2.5rem;
        border-left: 5px dotted #C76F00;
        background: #FFFAF5;
    }

    .h9 {
        border-bottom: solid 3px #AA5300;
        position: relative;
    }

    .h9:after {
        position: absolute;
        content: " ";
        display: block;
        border-bottom: solid 3px #5B2900;
        bottom: -3px;
        width: 20%;
    }

    .h10 {
        border-bottom: solid 3px #cce4ff;
        position: relative;
    }

    .h10:after {
        position: absolute;
        content: " ";
        display: block;
        border-bottom: solid 3px #5472cd;
        bottom: -3px;
        width: 20%;
    }

    .pic {
        color: #878787;
        font-size: 0.3em;
        text-align: right;
    }

    .img0 {
        width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .img1 {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .img2 {
        height: 10vw;
    }

    .img3 {
        width: 95vw;
    }

    .img4 {
        text-align: center;
        width: 150px;
    }

    .img5 {
        width: 300px;
    }

    .copyright {
        text-align: center;
        font-size: 200%;
    }

    .bar1 {
        display: block;
        width: 100%;
        height: 1px;
        border: 0;
        border-top: 1px dashed #C76F00;
    }

    .parent1 {
        background-color: #fff;
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .child1 {
        background-color: #fff;
        width: 450px;
        text-align: center;
        margin: 10px;
        padding: 10px;
        margin-left: auto;
        margin-right: auto;
    }

    .table-b {
        border-collapse: collapse;
        width: 70%;
        font-size: 1em;
        margin: 20px 100px 20px 100px;
        text-align: left;
    }

    .table-b th {
        color: #FFF;
        color: #FFF;
        width: 30%;
        background-color: #88abda;
        font-weight: 400;
        padding: 10px;
        border-bottom: 1px solid #fff;
    }

    .table-b td {
        width: 70%;
        padding: 10px;
        color: #666;
        border-bottom: 1px solid #CCC;
    }

    .table-c {
        border-collapse: collapse;
        width: 70%;
        font-size: 1em;
        margin: 20px 100px 20px 100px;
        text-align: left;
    }

    .table-c th {
        color: #FFF;
        color: #FFF;
        width: 30%;
        background-color: #88abda;
        font-weight: 400;
        padding: 10px;
        border-bottom: 1px solid #fff;
    }

    .table-c td {
        width: 70%;
        padding: 10px;
        color: #666;
        border-bottom: 1px solid #CCC;
    }
}


/*===============================================
画面の横幅が640pxまで（スマホ用）
===============================================*/

@media screen and (max-width:640px) {


    img {
        max-width: 100%;
    }

    .header {
        background-color: #fff;
        height: 150px;
        position: fixed;
    }

    .logo {
        width: 100%;
    }

    .flimg {
        width: 30px;
        margin-right: 70px;
        background-color: #fff;
        padding: 1px;
        margin-top: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .box2 {
        display: flex;
        justify-content: space-between;
    }

    .box {
        float: left;
        align-items: center;
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 5px;
        margin-bottom: 5px;
        color: #C76F00;
        text-align: center;
        text-decoration: none;
        /* hover text-decoration: underline; */
        /* hover background-color: #C76F00; */
        font-size: 150%;

    }

    .tab {
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .tab__label {
        color: #fff;
        background: #FFFAF1;
        margin-right: auto;
        padding: 6px 16px;
        order: -1;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        font-size: 0.3em;

        align-content: stretch;
        /* 折り返し時の配置指定 */
        border: 1px solid #fff;
        width: 10%;
    }

    .tab__label1 {
        color: #fff;
        background: #FFFAF1;
        margin-right: auto;
        padding: 6px 16px;
        order: -1;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        font-size: 0.3em;

        align-content: stretch;
        /* 折り返し時の配置指定 */
        border: 1px solid #fff;
        width: 10%;
    }

    .tab__content {
        width: 100%;
        display: none;
        border: 1px solid #ccc;
        padding: 16px;
    }

    .tab__switch {
        display: none;
    }

    .tab__switch:checked+.tab__label {
        width: 100%;
        background: #FFF0D5;
    }

    .tab__switch:checked+.tab__label+.tab__content {
        width: 100%;
        display: block;
    }

    h1 {
        background: #C76F00;
        /*背景色*/
        padding: 0.5em;
        /*文字まわり（上下左右）の余白*/
        font-size: 120%;
        color: #ffffff;
        font-family: serif;
        margin: 0.5em 0 0.5em 0;
    }

    h2 {
        color: #272727;
        font-size: 120%;
        margin-left: 5px;
        margin-right: 50%;
        padding: .5em .75em;
        background-color: #FFFBE4;
    }

    h4 {
        color: #272727;
        font-size: 120%;
        padding: 1em;
        border: 1px solid #5D8961;
        background-color: #fff;
        margin-left: 5px;
        margin-right: 60%;
        border-radius: 3em .7em 2em .7em/.7em 2em .7em 3em;
    }

    .buttonlink {
        text-align: center;
        color: #fff;
        /*文字色*/
        border: solid 8px #fff;
        /*線色*/
        padding: 0.5em;
        /*文字周りの余白*/
        border-radius: 1.1em;
        /*角丸*/
        background: #C76F00;
        margin-left: auto;
        margin-right: auto;
        width: 70%;

        font-size: 100%;
    }

    .buttonlink a:link {
        text-decoration: none;
        color: #fff;
    }

    .buttonlink a:active {
        text-decoration: none;
        color: #fff;
    }

    .buttonlink a:hover {
        text-decoration: none;
        color: #fff;
    }

    .buttonlink a:visited {
        text-decoration: none;
        color: #fff;
    }

    h6 {
        text-align: center;
        color: #EE0003;
        /*文字色*/
        border: solid 3px #EE0003;
        /*線色*/
        padding: 0.5em;
        /*文字周りの余白*/
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        font-size: 100%;
    }

    h7 {
        text-align: center;
        color: #EEE;
        /*文字色*/
        border: solid 3px #88abda;
        /*線色*/
        padding: 0.5em;
        /*文字周りの余白*/
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        font-size: 100%;
    }

    .h8 {
        font-size: 100%;
        color: #000;
        font-family: serif;
        padding: 1.4rem 2.5rem;
        border-left: 5px dotted #C76F00;
        background: #FFFAF5;
    }

    h3 {
        border-bottom: solid 3px #AA5300;
        position: relative;
    }

    h3:after {
        position: absolute;
        content: " ";
        display: block;
        border-bottom: solid 3px #5B2900;
        bottom: -3px;
        width: 20%;
    }

    .h10 {
        border-bottom: solid 3px #cce4ff;
        position: relative;
    }

    .h10:after {
        position: absolute;
        content: " ";
        display: block;
        border-bottom: solid 3px #5472cd;
        bottom: -3px;
        width: 20%;
    }

    .pic {
        color: #878787;
        font-size: 0.3em;
        text-align: right;
    }

    .img0 {
        width: 100vw;
        /* 画面幅の100％ */
    }

    .img1 {
        width: 100vw;
        /* 画面幅の100％ */
    }

    .img2 {
        height: 10vw;
    }

    .img3 {
        width: 95vw;
    }

    .img4 {
        text-align: center;
        height: 5vw;
    }

    .copyright {
        text-align: center;
        font-size: 200%;
    }

    .bar1 {
        display: block;
        width: 100%;
        height: 1px;
        border: 0;
        border-top: 1px dashed #C76F00;
    }

    .table-b {
        border-collapse: collapse;
        width: 90%;
        font-size: 1em;
        margin: 10px 0px 10px 3px;
        text-align: left;
    }

    .table-b th {
        color: #FFF;
        background-color: #88abda;
        font-weight: 400;
        padding: 5px;
        border-bottom: 1px solid #fff;
    }

    .table-b td {
        padding: 5px;
        color: #666;
        border-bottom: 1px solid #CCC;
    }

    .table-c {
        border-collapse: collapse;
        width: 100%;
        font-size: 0, 8em;
        text-align: left;
    }

    .table-c th {
        color: #FFF;
        background-color: #88abda;
        border-bottom: 1px solid #fff;
        display: block;
        width: 100%;
    }

    .table-c td {
        color: #666;
        border-bottom: 1px solid #CCC;
        display: block;
        width: 100%;
    }

    .last td:last-child {
        border-bottom: solid 1px #ccc;
        width: 100%;
    }

    /* チェックボックスを非表示 */
    .menu-checkbox {
        display: none;
    }


    .button {
        display: inline-block;
        border-radius: 50%;
        /* 角丸       */
        font-size: 0.8em;
        /* 文字サイズ */
        text-align: center;
        /* 文字位置   */
        cursor: pointer;
        /* カーソル   */
        padding: 10px 10px;
        /* 余白       */
        background: #88abda;
        /* 背景色     */
        color: #ffffff;
        /* 文字色     */
        line-height: 1em;
        /* 1行の高さ  */
        transition: .3s;
        /* なめらか変化 */
        border: 2px solid #88abda;
        /* 枠の指定 */
    }

    .button:hover {
        color: #88abda;
        /* 背景色     */
        background: #ffffff;
        /* 文字色     */
    }

    .button1 {
        display: inline-block;
        border-radius: 50%;
        /* 角丸       */
        font-size: 0.8em;
        /* 文字サイズ */
        text-align: center;
        /* 文字位置   */
        cursor: pointer;
        /* カーソル   */
        padding: 10px 10px;
        /* 余白       */
        background: #AAAAAA;
        /* 背景色     */
        color: #ffffff;
        /* 文字色     */
        line-height: 1em;
        /* 1行の高さ  */
        transition: .3s;
        /* なめらか変化 */
        border: 2px solid #AAAAAA;
        /* 枠の指定 */
    }

    .button1:hover {
        color: #AAAAAA;
        /* 背景色     */
        background: #ffffff;
        /* 文字色     */
    }
}


/*==Dropdown Menu==*/
.menu {
    /* display: inline; */
    padding-inline-end: 60px;
}
.sub-menu {
    display: none;
    position: absolute;
    padding-inline-start: 4px !important;
    margin-top: 6px;
}

.menu li {
    position: relative;
}

.menu li:hover .sub-menu {
    display: block;
}
.menu li:active .sub-menu {
    display: block;
}

.sub-menu li {
    margin-left: 17px !important;
}

.menu .sub-menu a {
    text-decoration: none;
    color: #fff;
    display: block;
}

.menu .sub-menu a:hover {
    color: #333;
    background: #7E4600;
}

.menu .sub-menu li {
    color: #f1f1f1;
    display: inline-block;
    width: 120px;
    height: 32px;
    line-height: 1.5rem;
    margin-left: 0px;
    padding: 0 !important;
}

.menu .sub-menu {
    background: #7E4600;
    list-style-type: none;
    text-align: left;
}

.menu .sub-menu li a::before {
    /* content: '\276F'; */
}
.menu-lang li {
    padding: 0 !important;
}


@media only screen and (min-width: 768px) {
    .menu .menu-item-right {
        float: right;
    }
}

.menu-lang-mobile {
    display: none !important;
}
@media only screen and (max-width: 768px) {
    .menu-lang-mobile {
        display: block !important;
    }

    .flimg {
        /* display: none; */
    }
}

.thimage1 {
    object-fit: contain;
}
