@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,200,300,400,500,600,700');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

/* !HTML5 elements
---------------------------------------------------------- */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section
{ display: block;}

body, div, p,
dl, dt, dd, ul, ol, li,
h1, h2, h3, h4, h5, h6,
pre,
form, input, textarea,
table, th, td{ 
margin:0px; 
padding:0px; 
}
body{
font-size: 100%;
text-align: left;
color: #000;
font-family: "Zen Kaku Gothic New", sans-serif;
-webkit-text-size-adjust: 100%;
letter-spacing: 1.5px;
}
a {
	color: #000;
    text-decoration: none;
}
ul {
    list-style-type: none;
}
img{
    border:0px;
    margin: 0 auto;
    padding: 0;
    width: auto;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    display: block;
}
iframe {
    border: 0;
    overflow: hidden;
}
table{
    border-collapse:collapse;
    width: 100%;
    table-layout: fixed;
}
tr{
    border-bottom: 1px solid #b9b9b9;
}
th, td {
    display: block;
    width: calc(100% - 40px);
}
th {
    font-weight: bold;
    padding: 20px 20px 0;
    color: #0163ab;
}
td {
    padding: 5px 20px 20px;
}

            /* 【スマートフォン用のスタイル記述】 */
            @media screen and (min-width: 760px) {
                th, td {
                    display: table-cell;
                    padding: 30px 20px;
                }
                th {
                    width: 30%;
                }
                td {
                    width: 70%;
                }
            }

            /* 【スマートフォン用のスタイル記述】 */
            @media screen and (min-width: 1200px) {
                body {
                    display: flex;
                    justify-content: space-between;
                }
            }


/* レイアウト
------------------------------------*/
#main {
    overflow: hidden;
}
.inner {
	width: 92%;
	margin: 0 auto;
    max-width: 1200px;
}
.cassette {
	padding: 100px 0;
}
.commonLayout #c01 {
    padding: 60px 0;
}
.commonLayout .cassette:not(:first-child) {
	padding: 0 0 100px;
}
#pankuzu {
	padding: 10px 0;
}
#menu ul {
	display: flex;
    flex-wrap: wrap;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 30px;
}
#menu li:not(:last-child) a {
    display: inline-block;
    padding-right: 40px;
    position: relative;
    color: #0164ab;
}
#menu li:not(:last-child) a::after {
    position: absolute;
    content: "＞";
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
}
.link_txt {
    color: #0164ab;
    padding-left: 25px;
    position: relative;
    transition: all 0.3s;
}
.link_txt:hover {
    opacity: 0.8;
}
.link_txt::before {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    left: 0;
    top: 5px;
    background: url("../img/icon04.png")no-repeat center center/cover;
}
.flex_box01:not(:last-child), .flex_box02:not(:last-child), .flex_box03:not(:last-child) {
    margin-bottom: 30px;
}
.disc_li li {
    margin-left: 20px;
    list-style-type: disc;
}
.cir_li > li {
    position: relative;
    padding-left: 20px;
}
.cir_li > li::before {
    position: absolute;
    content: "●";
    top: 0;
    left: 0;
    font-weight: 500;
}
.en {
    display: block;
    font-weight: bold;
}
.btn01 {
    background-color: #fff;
    padding: 20px 0;
    border-radius: 50px;
    color: #0163ab;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    display: block;
    max-width: 400px;
    margin-top: 40px;
    font-weight: bold;
    transition: all 0.3s;
}
.btn01:hover {
    background-color: #0163ab;
    color: #fff;
}
.btn01 span {
    display: block;
    padding: 0 40px 0 50px;
    position: relative;
}
.btn01 span::before, .btn01 span::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
}
.btn01 span::before {
    content: "";
    background: url("../img/pdf_icon01.png")no-repeat center center/cover;
    width: 19px;
    height: 20px;
    left: 20px;
}
.btn01 span::after {
    content: "→";
    right: 20px;
}
.btn01:hover span::after {
    right: 10px;
}
.page_ttl .en {
    letter-spacing: 0.2em;
    opacity: 0;
    transition: 0.8s;
}
.page_ttl.active .en {
    letter-spacing: 0.05em;
    opacity: 1;
}
.marker_ttl span {
    display: inline-block;
    position: relative;
}
.marker_ttl span::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 11px;
    background: #efc652;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.8s;
    z-index: -1;
}

.marker_ttl.active span::after {
    transform: scale(1, 1);
}



        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            .flex {
                display: flex;
                justify-content: space-between;
                gap: 60px 6%;
            }
            .flex.rev {
                flex-direction: row-reverse;
            }
            .flex.wrap {
                flex-wrap: wrap;
            }
            .flex_box01{
                width: calc(94% / 2);
            }
            .flex_box02{
                width: calc(88% / 3);
            }
            .flex_box03{
                width: calc(82% / 4);
            }
            .flex_box01:not(:last-child), .flex_box02:not(:last-child), .flex_box03:not(:last-child) {
                margin-bottom: 0;
            }
            #menu ul {
                margin-top: 15px;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 960px) {
            .tel {
                pointer-events: none;
            }
            .flex {
                gap: 60px 10%;
            }
            .flex_box01{
                width: calc(90% / 2);
            }
            .flex_box02{
                width: calc(80% / 3);
            }
            .flex_box03{
                width: calc(70% / 4);
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 1200px) {
            #container {
                width: calc(100% - 255px);
                margin-left: auto;
            }
        }
        


 /*----------------------------------------------------
	margin set
----------------------------------------------------*/
.mgt5 { margin-top: 5px!important;}
.mgt10 { margin-top: 10px!important;}
.mgt15 { margin-top: 15px!important;}
.mgt20 { margin-top: 20px!important;}
.mgt25 { margin-top: 25px!important;}
.mgt30 { margin-top: 30px!important;}
.mgt35 { margin-top: 35px!important;}
.mgt40 { margin-top: 40px!important;}

.mgb5 { margin-bottom: 5px!important;}
.mgb10 { margin-bottom: 10px!important;}
.mgb15 { margin-bottom: 15px!important;}
.mgb20 { margin-bottom: 20px!important;}
.mgb25 { margin-bottom: 25px!important;}
.mgb30 { margin-bottom: 30px!important;}
.mgb35 { margin-bottom: 35px!important;}
.mgb40 { margin-bottom: 40px!important;}
.mgb50 { margin-bottom: 50px!important;}
.mgb60 { margin-bottom: 60px!important;}


/* responsive
------------------------------------*/
.pcTab, .pc, .tab { display: none;}
.sp, .tabSp { display: block;}

            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 760px) {
                .pc, .sp { display: none;}
                .tab, .pcTab, .tabSp { display: block;}
            }
            /* 【PC用のスタイル記述】 */
            @media screen and (min-width: 960px) {
                .sp, .tab, .tabSp { display: none;}
                .pcTab, .pc { display: block;}
            }


/* header
------------------------------------*/
#header {
    display: none;
}

            /* 【スマートフォン用のスタイル記述】 */
            @media screen and (min-width: 760px) {
            }

            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 1200px) {
                #header {
                    display: block;
                    width: 255px;
                    position: fixed;
                    z-index: 9999;
                    background-color: #fff;
                }
                #header .inner {
                    width: 80%;
                    max-width: 200px;
                    padding-top: 30px;
                    height: calc(100vh - 30px);
                }
                #header .btn02 {
                    position: absolute;
                    padding: 10px 0;
                    bottom: 0;
                    left: 0;
                    z-index: 10;
                }
                #header .btn02 > div {
                    display: flex;
                    align-items: center;
                }
                #header .btn02 .en {
                    font-size: 1.6rem;
                    line-height: 1.2;
                }
                #header .btn02 .jp {
                    font-size: 0.8rem;
                }
                #header .btn02 img {
                    margin-left: 0;
                    margin-right: 20px;
                    max-width: 22px;
                }
            }


/* footer
------------------------------------*/
#footer {
    padding-bottom: 70px;
}
#pagetop {
	position: fixed;
	right: 20px;
	bottom: 90px;
	z-index: -1;
    transition: all 0.3s;
    opacity: 0;
}
#pagetop.scrolled {
	z-index: 100;
    opacity: 1;
}
#pagetop a {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
#pagetop a::after {
    position: absolute;
    content: "↑";
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    color: #0572ae;
    font-size: 0.8rem;
    transition: all 0.3s;
}
#pagetop a:hover::after {
    top: 5px;
    transform: translateX(-50%);
}

#footer .copyright {
    font-size: 0.7em;
    margin-top: 10px;
}
#footer .footer_wrap {
    display: block;
    position: relative;
    z-index: 0;
    overflow: hidden;
    color: #fff;
    background-color: #000;
    padding: 40px 0 280px;
}
#footer .footer_wrap::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 100%;
    height: 230px;
    background: url("../img/footer_bg_sp.png")no-repeat top center/cover;
    z-index: 0;
    transition: all 0.3s;
}
#footer .footer_wrap:hover::after {
    transform:scale(1.2,1.2);
}
#footer .footer_wrap .inner {
    position: relative;
    z-index: 1;
}
#footer .footer_wrap p {
   font-weight: bold;
   line-height: 1.8;
    font-size: 0.8rem;
}
#footer .footer_wrap p:not(:last-child) {
    margin-bottom: 10px;
}
#footer .footer_wrap .tel_t {
    font-size: 2.2rem;
}
#footer .f_menu {
    padding: 40px 0;
    font-size: 0.9rem;
    gap: 60px 4%;
}
#footer .f_menu .flex_box02:nth-child(2) {
    font-weight: bold;
    padding-bottom: 30px;
    border-bottom: 1px solid #b9b9b9;
    text-align: center;
}
#footer .f_menu .flex_box02:nth-child(2), #footer .f_menu .flex_box02:nth-child(2) a {
    color: #0163ab;
}
#footer .f_menu .flex_box02:nth-child(2) .map_btn {
    display: inline-block;
    background-color: #0163ab;
    padding: 4px 15px;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    margin-top: 10px;
    font-size: 0.6rem;
    border: 2px solid #0163ab;
    transition: all 0.3s;
}
#footer .f_menu .flex_box02:nth-child(2) .map_btn:hover {
    color: #0163ab;
    background-color: #fff;
}

#footer .f_menu .cont_t {
    margin: 5px 0 20px;
    font-size: 1.05rem;
    line-height: 1.2;
}
#footer .f_menu .cont_t:first-of-type {
    margin-bottom: 30px;
}
#footer .f_menu .disc_li {
    font-weight: bold;
    margin: 0 auto 20px;
    max-width: 300px;
    flex-wrap: wrap;
    gap: 5px 2%;
}
#footer .f_menu .disc_li > li:not(:last-child) {
    margin-right: 0;
}
#footer .f_menu .disc_li > li:nth-child(odd) {
    width: calc(55% - 20px);
}
#footer .f_menu .disc_li > li:nth-child(even) {
    width: calc(43% - 20px);
}
#footer .f_menu .disc_li a {
    transition: all 0.3s;
}
#footer .f_menu .disc_li a:hover {
    color: #0163ab;
}
.sp_menu {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 900;
}
.sp_menu > ul {
    width: calc(100% - 70px);
    display: flex;
    justify-content: space-between;
}
.sp_menu > ul > li {
    width: 50%;
}
.sp_menu > ul > li a {
    color: #fff;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.sp_menu > ul > li .icon {
    max-width: 20px;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 20px;
}
#footer .f_menu .bnr {
    display: block;
    width: calc(96% / 2);
    max-width: 130px;
}
#footer .f_menu .bnr img {
    max-height: 65px;
}
#footer .bnr_flex {
    display: flex;
    gap: 10px 4%;
    justify-content: center;
}



            /* 【スマートフォン用のスタイル記述】 */
            @media screen and (min-width: 760px) {
                #pagetop a::after {
                    font-size: 1rem;
                }
                #footer .footer_wrap {
                    padding: 40px 0 310px;
                }
                #footer .footer_wrap .flex {
                    align-items: center;
                }
                #footer .footer_wrap::after {
                    height: 490px;
                }
                #footer .footer_wrap .flex_box01:first-child {
                    width: 30%;
                    padding-right: 20%;
                    margin-right: 0;
                    position: relative;
                }
                #footer .footer_wrap .flex_box01:first-child::after {
                    position: absolute;
                    content: "";
                    height: 220px;
                    width: 2px;
                    background-color: #fff;
                    right: 30px;
                    top: 50%;
                    transform: translateY(-50%);
                }
                #footer .footer_wrap .flex_box01:last-child {
                    width: 50%;
                }
                #footer .footer_wrap p {
                   line-height: 2.3;
                    font-size: 1rem;
                }
                #footer .footer_wrap p:not(:last-child) {
                    margin-bottom: 0;
                }
                #footer .footer_wrap .tel_t {
                    font-size: 2.4rem;
                }
                #footer .f_menu .flex_box02:nth-child(1) {
                    width: 20%;
                }
                #footer .f_menu .flex_box02:nth-child(2) {
                    width: 50%;
                    padding-bottom: 0;
                    padding-right: 2%;
                    border-right: 1px solid #b9b9b9;
                    border-bottom: none;
                    text-align: left;
                }
                #footer .f_menu .flex_box02:nth-child(3) {
                    width: 30%;
                }
                #footer .f_menu .cont_t {
                    font-size: 1.2rem;
                }
                #footer .f_menu .disc_li {
                    max-width: none;
                }
                #footer .f_menu .bnr {
                    max-width: 100px;
                    width: 100%;
                }
                #footer .bnr img {
                    max-width: 100%;
                }
                #footer .bnr_flex {
                    flex-direction: column;
                    justify-content: flex-start;
                }
            }

            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 1200px) {
                #pagetop a {
                    width: 60px;
                    height: 60px;
                }
                #footer {
                    padding-bottom: 0;
                }
                .sp_menu {
                    display: none;
                }
                #footer .footer_wrap::after {
                    height: 100%;
                    background-image: url("../img/footer_bg.png");
                }
                #footer .footer_wrap {
                    padding: 110px 0;
                }
                #footer .footer_wrap .flex_box01:first-child {
                    padding-right: 15%;
                }
                #footer .footer_wrap .flex_box01:last-child {
                    width: 55%;
                }
                #footer .footer_wrap .tel_t {
                    font-size: 3.4rem;
                }
                #footer .f_menu .flex_box02:nth-child(2) .map_btn {
                    font-size: 0.8rem;
                }
                #footer .f_menu {
                    padding: 60px 0;
                }
                #footer .f_menu .cont_t {
                    font-size: 1.6rem;
                }
                #pagetop {
                    bottom: 20px;
                }
            }
            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 1400px) {
                #footer .footer_wrap::after {
                    width: 1745px;
                }
            }
            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 1470px) {
                #footer .f_menu .flex_box02:nth-child(2) .map_btn {
                    margin-left: 10px;
                    margin-top: 0;
                }
            }



/* 見出し
------------------------------------*/
h2 {
    font-weight: bold;
    line-height: 1.1;
}
h2 .en {
    font-size: 4rem;
}
h2 .jp {
    font-size: 0.75rem;
    display: inline-block;
    padding-left: 20px;
    position: relative;
}
h2 .jp::before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url("../img/icon03.png")no-repeat center center/cover;
    width: 12px;
    height: 12px;
}
h3 {
    color: #0164ab;
    margin-bottom: 20px;
    font-size: 2rem;
}
h3.marker_ttl  {
    font-size: 2rem;
}
h3.marker_ttl span:not(:last-child) {
    margin-bottom: 5px;
}
.g_bg .g_ttl h3 {
    font-size: 1.7rem;
    margin-bottom: 0;
}
.g_bg .g_ttl h3 .s {
    font-size: 1.1rem;
    display: block;
    margin-top: 5px;
}
.commonLayout h4 {
    font-size: 1.6rem;
    position: relative;
    padding-left: 20px;
    margin-bottom: 30px;
    border-bottom: 4px solid #0164ab;
}
.commonLayout h4 span {
    display: inline-block;
    padding-bottom: 10px;
}
.commonLayout h4::before {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    top: 15px;
    left: 0;
    background-color: #0164ab;
    border-radius: 50%;
}
.commonLayout h5 {
    color: #0164ab;
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: bold;
}


            /* 【スマートフォン用のスタイル記述】 */
            @media screen and (min-width: 760px) {
                h2 {
                    line-height: 1.3;
                }
                h2 .en {
                    font-size: 4rem;
                }
                h2 .jp {
                    font-size: 1rem;
                    padding-left: 25px;
                }
                h2 .jp::before {
                    width: 15px;
                    height: 15px;
                }
                h3 {
                    font-size: 2.0rem;
                }
                .commonLayout h4 {
                    font-size: 1.6rem;
                }
                .g_bg .g_ttl h3 {
                    font-size: 2.0rem;
                }
                .g_bg .g_ttl h3 .s {
                    font-size: 1.3rem;
                    margin-top: 10px;
                }
            }

            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 1200px) {
                h1 {
                    margin-bottom: 15px;
                }
                h2 .en {
                    font-size: 5rem;
                }
                h3 {
                    font-size: 2.2rem;
                }
            }


/* common
------------------------------------*/
.txtRed {
    color: #EA0000;
}
.b {
    font-weight: bold;
    color: #0164ab;
}
.btn {
    position: relative;
    padding: 20px 30px;
    width: calc(100% - 60px);
    display: block;
    max-width: 240px;
    border-radius: 50px;
    background-color: #fff;
    border: 1px solid #fff;
    color: #0163ab;
    box-shadow: 0 0 15px rgba(210, 210, 210, 0.35);
    transition: all 0.3s;
    margin-top: 40px;
    font-weight: bold;
}
.btn::after {
    position: absolute;
    content: "→";
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    transition: all 0.3s;
}
.btn:hover {
    background-color: #0163ab;
    color: #fff;
    box-shadow: none;
}
.btn:hover::after {
    right: 10px;
}
.btn02 {
    width: 100%;
    color: #fff;
    position: relative;
    display: block;
}
.btn02::before, .btn02::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: all 0.6s;
}
.btn02::after {
    background-image: linear-gradient(90deg, rgb(0, 97, 171), rgb(67, 145, 205));
    z-index: -2;
}
.btn02::before {
    background-image: linear-gradient(90deg, rgb(10, 131, 176), rgb(0, 97, 171));
    z-index: -1;
}
.btn02:hover::before {
    opacity: 0;
}
.btn02 > div {
    position: relative;
    padding: 0 20px;
}
.btn02 > div::after {
    position: absolute;
    content: "→";
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    transition: all 0.3s;
}
.btn02:hover > div::after {
    right: 10px;
}
.h2_wrap {
    padding: 60px 0 110px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: #fff;
}
.h2_wrap::after {
    position: absolute;
    content: "";
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    right: 10px;
    bottom: -25px;
}
.commonLayout .g_bg:not(:first-child) {
    padding-bottom: 0;
}
.g_bg .g_wrap {
    padding-top: 0;
    background: url("../img/common_bg01.png")no-repeat bottom left/contain;
    background-color: #f8f8f8;
    padding: 100px 0;
}
.g_bg .g_ttl {
    position: relative;
    overflow: hidden;
    padding: 40px 0 40px 30px;
    background-color: #e9eef2;
}
.g_bg .g_ttl::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    border-width: 210px 35px 0 0;
}
.w_box {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 20px;
}
#main .img_box01 {
    position: relative;
    display: inline-block;
}
#main .img_box01::after {
    position: absolute;
    content: "";
    z-index: -1;
    width: 85%;
    height: 25px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 10px 15px -4px rgba(0, 0, 0, 0.3);
}

            /* 【スマートフォン用のスタイル記述】 */
            @media screen and (min-width: 760px) {
                .h2_wrap {
                    padding: 60px 0;
                }
                .h2_wrap .en {
                    font-size: 4.5rem;
                }
                .h2_wrap::after {
                    right: 40px;
                    bottom: -120px;
                }
                .commonLayout #c01 {
                    padding-top: 100px;
                }
                .w_box {
                    padding: 40px;
                }
                .g_bg .g_wrap {
                    background-size: auto;
                }
                .g_bg .g_ttl {
                    padding: 60px 0 60px 70px;
                }
                .g_bg .g_ttl::after {
                    border-width: 210px 55px 0 0;
                }
            }

            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 1200px) {
                .commonLayout #c01 {
                    padding-top: 70px;
                }
                .g_bg .g_ttl::after {
                    border-width: 260px 65px 0 0;
                }
            }


/* spNavi
------------------------------------*/
#gNavi {
    display: none;
}
#spNavi {
}

.drawer-btn {
	position: fixed;
	bottom: 0;
    right: 0;
    background-color: #ebebeb;
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.openbtn{
	position: relative;
	cursor: pointer;
    width: 100%;
    height: 100%;
	border-radius: 5px;
}
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    border-radius: 2px;
	background: #0572ae;
  	width: 50%;
}
.openbtn span:nth-of-type(1) {
	top: 23px;
}
.openbtn span:nth-of-type(2) {
	top: 35px;
}
.openbtn span:nth-of-type(3) {
	top: 48px;
}
.openbtn.active span:nth-of-type(1) {
    top: 29px;
    transform: translateX(-50%) translateY(6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 41px;
    left: 50%;
    transform: translateX(-50%) translateY(-6px) rotate(45deg);
}
.menu > div > ul > li:not(:last-child) {
    margin-bottom: 10px;
}
.menu > div > ul > li.accordion > ul {
    display: none;
    padding: 10px 0;
    margin-top: 10px;
}
.menu > div > ul > li.accordion {
    position: relative;
}
.menu > div > ul > li.accordion::before, .menu > div > ul > li.accordion::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 1px;
    background-color: #fff;
    transition: all .4s;
    top: 15px;
}
.menu > div > ul > li.accordion::before {
    right: 20px;
}
.menu > div > ul > li.accordion::after {
    transform: rotate(90deg);
    right: 20px;
}
.menu > div > ul > li.accordion.open::after {
    transform: rotate(0deg);
}
.menu > div > ul > li.accordion > ul {
    background-color: rgba(255, 255, 255, 0.3);
}
.menu > div > ul > li.accordion > ul li:not(:last-child) {
    margin-bottom: 5px;
}
.menu > div > ul > li.accordion > ul li {
    margin-left: 30px;
}
.menu > div > ul > li.accordion > ul a {
    display: inline-block;
    padding-left: 30px;
    color: #fff;
    position: relative;
}
.menu > div > ul > li.accordion > ul a::before {
    position: absolute;
    content: "→";
    transition: all 0.3s;
    top: 2px;
    left: 0;
}
.menu > div > ul > li.accordion > ul a:hover::before {
    left: 8px;
}
.menu .btn_nav {
    display: block;
    padding: 10px 30px 13px 60px;
    color: #0163ab;
    background-color: #fff;
    position: relative;
    width: calc(100% - 90px);
    max-width: 210px;
    margin-top: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1.2;
    transition: all 0.3s;
    border: 1px solid #0163ab;
}
.menu .btn_nav:hover {
    background-color: #0163ab;
    color: #fff;
    border-color: #fff;
}
.menu .btn_nav::before {
    position: absolute;
    content: "";
    background: url("../img/icon01a.png")no-repeat center center/cover;
    width: 22px;
    height: 15px;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    transition: all 0.3s;
}
.menu .btn_nav:hover::before {
    background-image: url("../img/icon01.png");
}
.menu .btn_nav::after {
    position: absolute;
    content: "→";
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    transition: all 0.3s;
    font-size: 1rem;
}
.menu .btn_nav:hover::after {
    right: 10px;
}
.menu .btn_nav img {
    margin-left: 0;
    margin-right: 20px;
}
.menu .btn_nav .en {
    font-size: 1.8rem;
}


/*アクティブクラスがついたら位置を0に*/
#spNavi.panelactive #gnav_list {
    right: 0;
}
#spNavi #gnav_list {
    transition: all 0.6s;
    position: fixed;
    width: 80%;
    top: 0;
    right: -80%;
    background-image: linear-gradient(90deg, rgb(0, 97, 171), rgb(67, 145, 205));
    height: 100vh;
    z-index: 999;
}
#spNavi #gnav_list > div {
    padding: 40px 20px;
    font-weight: bold;
}
#spNavi #gnav_list > div > ul > li > a, #spNavi #gnav_list > div > ul > li > span {
    display: inline-block;
    padding-left: 30px;
    position: relative;
    color: #fff;
    width: 100%;
}
#spNavi #gnav_list > div > ul > li > a::before, #spNavi #gnav_list > div > ul > li > a::after,
#spNavi #gnav_list > div > ul > li > span::before, #spNavi #gnav_list > div > ul > li > span::after {
    position: absolute;
    left: 0;
}
#spNavi #gnav_list > div > ul > li > a::before, #spNavi #gnav_list > div > ul > li > span::before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    top: 2px;
    left: 0;
}
#spNavi #gnav_list > div > ul > li > a::after, #spNavi #gnav_list > div > ul > li > span::after {
    content: "→";
    top: 2px;
    left: 4px;
    color: #0163ab;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.8rem;
}
#spNavi #gnav_list > div > ul > li > a:hover::after, #spNavi #gnav_list > div > ul > li > span:hover::after {
    left: 8px;
}



/*========= ナビゲーションのためのCSS ===============*/

#g_nav {
    position:relative;
    z-index: -1;
    /*ナビのスタート位置と形状*/
	top:0;
	width: 100%;
    height: 100vh;/*ナビの高さ*/
	background:#FF6739;
    /*動き*/
	
}

/*ナビゲーションの縦スクロール*/
#g_nav.panelactive #g_nav_list{
    /*ナビの数が増えた場合縦スクロール*/
    margin: 0 auto;
  width: 96%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g_nav_list > ul {
    width: calc(96% - 20px);
  margin: 0 auto;
    padding-top: 20px;
}

/*リストのレイアウト設定*/
#g_nav_list > ul li a {
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}



            /* 【スマートフォン用のスタイル記述】 */
            @media screen and (min-width: 760px) {
                #spNavi #gnav_list {
                    width: 500px;
                    right: -500px;
                }
                #spNavi #gnav_list > div {
                    padding: 40px 50px;
                }
            }
            @media screen and (min-width: 1200px) {
                #gNavi {
                    display: block;
                }
                #spNavi {
                    display: none;
                }
                .common_menu > li > a {
                    position: relative;
                    padding-left: 30px;
                    font-weight: bold;
                    transition: all 0.3s;
                    font-size: 0.9rem;
                }
                .common_menu > li a:hover {
                    color: #0163ab;
                }
                .common_menu > li > a::before, .common_menu > li > a::after {
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                }
                .common_menu > li > a::before {
                    content: "";
                    width: 18px;
                    height: 18px;
                    background-color: #0163ab;
                    left: 0;
                    border-radius: 50%;
                }
                .common_menu > li > a::after {
                    content: "→";
                    color: #fff;
                    left: 5px;
                    transition: all 0.3s;
                    font-size: 0.6rem;
                    line-height: 1;
                }
                .common_menu > li > a:hover::after {
                    left: 10px;
                }
                .common_menu li:not(:last-child) {
                    margin-bottom: 3px;
                }
                .common_menu .disc_li {
                    margin-left: 15px;
                    font-size: 0.8rem;
                    margin-top: 5px;
                }
                .common_menu .disc_li > li {
                    margin-bottom: 5px;
                }
                .common_menu .disc_li a {
                    transition: all 0.3s;
                    font-weight: 500;
                }
            }
            @media screen and (min-width: 1200px) and (max-height: 630px) {
                #gNavi {
                    overflow-y: auto;
                    max-height: 430px;
                    height: calc(80% - 80px);
                }
            }

/* navigation
------------------------------------*/
.navigation ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 2%;
    margin-top: 60px;
}
.navigation ol.wp-paginate > li {
    display: block;
}
.navigation ol.wp-paginate .current, .navigation ol.wp-paginate a {
    display: block;
    padding: 13px 15px;
    border-color: #0164ab;
    line-height: 1.5;
    margin-right: 0;
}
.navigation ol.wp-paginate .current {
    background-color: #0164ab;
    color: #fff;
}
.navigation ol.wp-paginate a {
    background-color: #fff;
    color: #0164ab;
    transition: all 0.3s;
}
.navigation ol.wp-paginate a:hover {
    background-color: #b1cde0;
}




            /* 【スマートフォン用のスタイル記述】 */
            @media screen and (min-width: 760px) {
                .navigation ol {
                    gap: 10px 1%;
                }
            }

            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 1200px) {
            }



/* clearfix
------------------------------------*/

.clearfix:after {
content: ".";
display: block;
clear: both;
height: 0;
visibility: hidden;
overflow:hidden;
}

.clearfix {
display: inline-block;
}

/* exlude MacIE5 \*/
* html .clearfix {
height: 1%
}

.clearfix {
display:block;
}
/* end MacIE5 */