@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;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%;
color: #343434;
font-family: "Zen Maru Gothic", sans-serif;
-webkit-text-size-adjust: 100%;
letter-spacing: 1.5px;
}
a {
	color: #343434;
    text-decoration: none;
    transition: all 0.3s;
}
ol > li {
    margin-left: 20px;
}
ul > li {
    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%;
}
tr {
    border-bottom: 1px solid #bfbfbf;
}
tr:first-child {
    border-top: 1px solid #bfbfbf;
}
th, td {
    display: block;
    text-align: left;
}
th {
    font-weight: normal;
    padding: 20px 0 0;
}
td {
    padding: 5px 0 20px;
}

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


/* レイアウト
------------------------------------*/
.inner {
	width: 96%;
	margin: 0 auto;
    max-width: 1200px;
}
.cassette {
	padding: 100px 0;
}
#main .cassette {
	padding-top: 0;
}
#pankuzu {
	padding-bottom: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 96%;
    display: none;
    gap: 5px 15px; 
    font-weight: bold;
}
#pankuzu > li:not(:last-child) {
    padding-right: 30px;
    position: relative;
}
#pankuzu > li:not(:last-child)::after {
    position: absolute;
    content: "＞";
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    color: #959595;
}
#pankuzu > li:last-child {
    color: #959595;
}
#pankuzu > li a {
    transition: all 0.3s;
}
#pankuzu > li a:hover {
    opacity: 0.6;
}

.flex {
    display: flex;
    flex-direction: column;
    gap: 40px 4%;
}
.link_txt {
    color: #ea6a98;
    text-decoration: underline;
}
.disc_li > li {
    list-style-type: disc;
}
.txtRed {
    color: #EA0000;
}
.t_bold {
    font-weight: bold;
}
.un_link span {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.un_link span::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background: #4eb9cd;
    bottom: 5px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}
.un_link:hover span::after {
    transform: scale(1, 1);
}
.un_link:hover {
    color: #4eb9cd;
    opacity: 1;
}
.btn01 {
    display: block;
    width: 100%;
    margin: 30px auto 0;
    border-radius: 50px;
    padding: 15px 50px 15px 0;
    max-width: 220px;
    position: relative;
    text-align: center;
    background-color: #fff;
    border: 2px solid #FF7C7C;
    color: #FF7C7C;
    font-weight: bold;
    transition: all 0.3s;
}
.btn01::before, .btn01::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    transition: all 0.3s;
}
.btn01::before {
    background-color: #FF7C7C;
    border-radius: 50%;
    right: 20px;
    width: 30px;
    height: 30px;
}
.btn01::after {
    width: 14px;
    height: 4px;
    border-bottom: solid 1px;
    border-right: solid 1px;
    transform: skew(45deg);
    top: calc(50% - 3px);
    right: 29px;
    color: #fff;
}
.btn01:hover {
    background-color: #FF7C7C;
    color: #fff;
}
.btn01:hover::before {
    background-color: #fff;
}
.btn01:hover::after {
    color: #FF7C7C;
    right: 23px;
}
.w_box {
    background-color: #fff;
    color: #707070;
    border-radius: 20px;
    padding: 40px 0;
}
.w_box .inner {
    width: 90%;
    max-width: 900px;
}
.t_center {
    text-align: center;
}
.column:not(:last-of-type) {
    margin-bottom: 60px;
}
.pdf_li > li a {
    display: inline-block;
    padding: 10px 0 10px 25px;
    position: relative;
    color: #FF7C7C;
}
.pdf_li > li a:hover {
    opacity: 0.6;
}
.pdf_li > li a::before {
    position: absolute;
    content: "";
    background: url("../img/pdf_icon01.png")no-repeat center center/cover;
    width: 21px;
    height: 29px;
    top: 8px;
    left: 0;
}
#link01 {
    padding-top: 100px;
    margin-top: -100px;
}
#main .property_li > li a {
    position: relative;
    display: block;
    height: 100%;
}
#main .property_li li a > div:last-child {
    padding-bottom: 60px;
}
#main .property_li > li .price {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            .flex {
                flex-direction: row;
                justify-content: space-between;
            }
            .flex.rev {
                flex-direction: row-reverse;
            }
            .flex.wrap {
                flex-wrap: wrap;
                justify-content: flex-start;
            }
            .flex_box01{
                width: calc(96% / 2);
            }
            .flex_box02{
                width: calc(92% / 3);
            }
            .flex_box03{
                width: calc(88% / 4);
            }
            .w_box {
                border-radius: 50px;
                padding: 60px 0;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 960px) {
            #pankuzu {
                font-size: 0.9rem;
                display: flex;
            }
        }
        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 1240px) {
            #link01 {
                padding-top: 125px;
                margin-top: -125px;
            }
        }


 /*----------------------------------------------------
	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
------------------------------------*/
.page_lead {
    display: none;
}
#header {
    position: fixed;
    width: 100%;
    left: 0;
    transition: top .3s ease;
    z-index: 9999;
    padding: 20px 0;
}
#header .h_btn01 {
    background-color: #007DC4;
    color: #fff;
    transition: all 0.3s;
    font-weight: bold;
    display: block;
}
#header .h_btn01:hover {
    background-color: #4BBEFF;
}
#header .logo img {
    max-width: 160px;
}
#header .menu .h_btn01, #header .menu .h_btn02 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 75px;
    text-align: center;
    font-weight: bold;
    border-radius: 10px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}
#header .menu .h_btn02 {
    background-color: #fff;
    border: 2px solid #FFB300;
    margin-top: 20px;
    line-height: 1.2;
}
#header .menu .h_btn01 span, #header .menu .h_btn02 .num, #footer .contact_flex .tel .num {
    display: inline-block;
    position: relative;
    padding-left: 35px;
}
#header .menu .h_btn01 span::before, #header .menu .h_btn02 .num::before, #footer .contact_flex .tel .num::before {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
#header .menu .h_btn01 span::before {
    background-image: url("../img/nav_icon06.png");
}
#header .menu .h_btn02 .num::before, #footer .contact_flex .tel .num::before {
    background-image: url("../img/tel_icon01.png");
}
#header .menu .h_btn02 .num, #footer .contact_flex .tel .num {
    font-size: 1.8rem;
    color:#EF3B15;
    font-weight: 900;
}
#header .menu .h_btn02 .s, #footer .contact_flex .tel .s {
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
    font-weight: bold;
}
#header .menu .sns_li, #footer .contact_flex .sns_li {
    display: flex;
    justify-content: center;
    gap: 0 20px;
    margin-top: 20px;
}
#header .menu .sns_li > li, #footer .contact_flex .sns_li > li {
    max-width: 35px;
}
#header .menu .copyright {
    color: #fff;
    margin-top: 20px;
    text-align: center;
    font-size: 0.7rem;
}



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

            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 1240px) {
                .page_lead {
                    padding: 10px 0;
                    position: absolute;
                    width: 100%;
                    top: 0;
                    left: 0;
                    display: block;
                    z-index: 999;
                }
                #header .logo {
                    width: 20%;
                }
                #header .logo img {
                    max-width: none;
                }
                #header #gNavi {
                    display: flex;
                    align-items: center;
                    justify-content: flex-end;
                    margin-left: 40px;
                    width: 78%;
                    gap: 0 2%;
                }
                #header #gNavi .common_menu {
                    background-color: #fff;
                    position: relative;
                    border-radius: 100px;
                    border: 2px solid #434343;
                    padding: 15px 30px;
                    width: calc(98% - 90px);
                    font-weight: bold;
                }
                #header #gNavi .common_menu::after {
                    position: absolute;
                    content: "";
                    width: 100%;
                    height: 100%;
                    border-radius: 100px;
                    background-color: #434343;
                    z-index: -1;
                    bottom: -5px;
                    left: 0;
                }
                #header #gNavi .common_menu > li a {
                    display: inline-block;
                    padding-left: 25px;
                    position: relative;
                    transition: all 0.3s;
                }
                #header #gNavi .common_menu > li a .icon {
                    position: absolute;
                    left: 0;
                    top: 50%;
                    width: 17px;
                    height: 17px;
                    transform: translateY(-50%);
                    background-size: cover;
                    background-position: center;
                    pointer-events: none;
                    transition: all 0.3s;
                }
                 #header #gNavi .common_menu > li a:hover {
                    color: #007DC4;
                }
                #header #gNavi .common_menu > li a .icon.default {
                    opacity: 1;
                    z-index: 1;
                }
                #header #gNavi .common_menu > li a .icon.hover {
                    opacity: 0;
                    z-index: 2;
                }
                /* ホバー状態 */
                #header #gNavi .common_menu > li a:hover .icon.default {
                    opacity: 0;
                }
                #header #gNavi .common_menu > li a:hover .icon.hover {
                    opacity: 1;
                }
                #header #gNavi .common_menu > li:nth-child(1) .default {
                    background-image: url("../img/nav_icon01.png");
                }
                #header #gNavi .common_menu > li:nth-child(1) .hover {
                    background-image: url("../img/nav_icon01a.png")
                }
                #header #gNavi .common_menu > li:nth-child(2) .default {
                    background-image: url("../img/nav_icon02.png");
                }
                #header #gNavi .common_menu > li:nth-child(2) .hover {
                    background-image: url("../img/nav_icon02a.png")
                }
                #header #gNavi .common_menu > li:nth-child(3) .default {
                    background-image: url("../img/nav_icon03.png");
                }
                #header #gNavi .common_menu > li:nth-child(3) .hover {
                    background-image: url("../img/nav_icon03a.png")
                }
                #header #gNavi .common_menu > li:nth-child(4) .default {
                    background-image: url("../img/nav_icon04.png");
                }
                #header #gNavi .common_menu > li:nth-child(4) .hover {
                    background-image: url("../img/nav_icon04a.png")
                }
                #header #gNavi .common_menu > li:nth-child(5) .default {
                    background-image: url("../img/nav_icon05.png");
                }
                #header #gNavi .common_menu > li:nth-child(5) .hover {
                    background-image: url("../img/nav_icon05a.png")
                }
                #header .h_btn01 {
                    width: 90px;
                    height: 90px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 50%;
                    font-size: 0.6rem;
                }
                #header .h_btn01 span {
                    padding-top: 25px;
                    position: relative;
                    display: inline-block;
                }
                #header .h_btn01 span::before {
                    position: absolute;
                    content: "";
                    background: url("../img/nav_icon06.png")no-repeat center center/cover;
                    width: 20px;
                    height: 20px;
                    left: 50%;
                    transform: translateX(-50%);
                    top: 0;
                }
                
            }


/* footer
------------------------------------*/
#footer {
    padding: 40px 0 70px;
    background-color: #fff;
    text-align: center;
}
#pagetop {
	position: fixed;
	right: 20px;
	bottom: 90px;
	z-index: -1;
    opacity: 0;
    transition: all 0.3s;
}
#pagetop.scrolled {
	z-index: 999;
    opacity: 1;
}
#pagetop a {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #FF7C7C;
    color: #fff;
    position: relative;
}
#pagetop a::before {
    position: absolute;
    content: "";
    transition: all 0.3s;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url("../img/page_top.png")no-repeat center center/cover;
    width: 40px;
    height: 31px;
}
#pagetop a:hover::before {
    top: 5px;
    transform: translateX(-50%);
}
#footer .copyright {
    text-align: center;
    font-size: 0.8rem;;
}
#side_menu {
    display: none;
}
#footer .sp_btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 999;
}
#footer .sp_btn > li {
    width: calc(100% / 3);
}
#footer .sp_btn > li:not(:last-child) {
    border-right: 1px solid #fff;
}
#footer .sp_btn > li a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #fff;
    background-color: #007DC4;
    width: 100%;
    height: 60px;
    font-size: 0.8rem;
}
#footer .sp_btn > li a span {
    display: inline-block;
    padding-left: 23px;
    position: relative;
}
#footer .sp_btn > li a span::before {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
#footer .sp_btn > li:nth-child(1) a span::before {
    background-image: url("../img/sp_btn_icon02.png");
}
#footer .sp_btn > li:nth-child(2) a span::before {
    background-image: url("../img/sp_btn_icon01.png");
}
#footer .sp_btn > li:nth-child(3) a span::before {
    background-image: url("../img/nav_icon06.png");
}
#footer .f_nav {
    display: none;
}
#footer .contact_flex {
    margin: 30px auto;
    max-width: 470px;
    gap: 20px 4%;
}
#footer .contact_flex .tel {
    line-height: 1.2;
}
#footer .contact_flex .sns_li {
    margin-top: 0;
}
#footer .f_info_flex .co_name {
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 10px;
}
#footer .f_info_flex .map_btn {
    display: block;
    padding: 5px 0;
    max-width: 130px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: #FF7C7C;
    border-radius: 50px;
    border: 1px solid #FF7C7C;
    margin: 10px auto 0;
}
#footer .f_info_flex ul > li a {
    padding-left: 20px;
    position: relative;
    transition: all 0.3s;
    font-weight: bold;
    display: block;
}
#footer .f_info_flex ul > li a:hover {
    color: #007DC4;
}
#footer .f_info_flex ul > li a::before {
    position: absolute;
    content: "-";
    top: -2px;
    left: 0;
}
#footer .f_info_flex ul > li:not(:last-child) {
    margin-bottom: 10px;
}
.contact_cassette {
    background-color: #2F9A79;
    text-align: center;
}
.contact_cassette .w_box {
    margin: 0 auto;
    max-width: 950px;
}
.contact_cassette .btn01 {
    color: #2F9A79;
    border-color: #2F9A79;
}
.contact_cassette .btn01::before {
    background-color: #2F9A79;
}
.contact_cassette .btn01:hover {
    background-color: #2F9A79;
    color: #fff;
}
.contact_cassette .btn01:hover::before {
    background-color: #fff;
}
.contact_cassette .btn01:hover::after {
    color: #2F9A79;
}
.contact_cassette .b_txt {
    color: #895959;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.contact_cassette .tel .num {
    font-weight: bold;
    color: #7CB563;
    font-size: 2rem;
    display: inline-block;
    padding-left: 40px;
    position: relative;
}
.contact_cassette .tel .num::before {
    position: absolute;
    content: "";
    background: url("../img/tel_icon02.png")no-repeat center center/cover;
    width: 36px;
    height: 36px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.contact_cassette .tel .s {
    font-size: 1.1rem;
    font-weight: bold;
}
.contact_cassette .line_box {
    margin-top: 40px;
}
.contact_cassette .line_box a {
    display: block;
    max-width: 164px;
    margin: 0 auto 20px;
}
.contact_cassette .line_box .ttl {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.map_cassette {
    background-color: #fff;
}
.commonLayout .map_cassette {
    display: none;
}
.blog_bnr_cassette {
    padding-bottom: 0;
    background: url("../img/blog_bg.png");
    background-size: contain;
  padding: 50px 0;
}
.blog_bnr_cassette a {
    display: block;
    border-radius: 20px;
    background-color: #FF506F;
    padding: 10px;
    position: relative;
    margin: 0 auto;
    max-width: 870px;
}
.blog_bnr_cassette a:hover {
    background-color: #FF7C7C;
}
.blog_bnr_cassette a::before, .blog_bnr_cassette a::after {
    position: absolute;
    content: "";
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    bottom: -20px;
}
.blog_bnr_cassette a::before {
    background-image: url("../img/blog_img01.png");
    width: 77px;
  height: 79px;
  left: 10px;
}
.blog_bnr_cassette a::after {
    background-image: url("../img/blog_img02.png");
    width: 63px;
  height: 101px;
  right: 5px;
}
.blog_bnr_cassette a > div {
    border: 2px solid #fff;
    border-radius: 20px;
    width: calc(100% - 4px);
    margin: 0 auto;
    padding: 20px 0 50px;
    text-align: center;
    color: #fff;
}
.blog_bnr_cassette .btn01 {
    border-color: #fff;
    margin-top: 10px;
}
.blog_bnr_cassette .btn01::before {
    background-color: #FF506F;
}
.blog_bnr_cassette a:hover .btn01 {
    background-color: #FF7C7C;
    color: #fff;
}
.blog_bnr_cassette a:hover .btn01::before {
    background-color: #fff;
}
.blog_bnr_cassette a:hover .btn01::after {
    color: #FF7C7C;
    right: 23px;
}
.blog_bnr_cassette .ttl {
    font-size: 2.5rem;
    font-weight: normal;
    font-family: "M PLUS 1p", sans-serif;
}



            /* 【スマートフォン用のスタイル記述】 */
            @media screen and (min-width: 760px) {
                #footer {
                    text-align: left;
                }
                #pagetop a {
                    width: 80px;
                    height: 80px;
                }
                #pagetop a::before {
                    width: 54px;
                    height: 42px;
                }
                #footer .sp_btn > li a {
                    font-size: 1rem;
                }
                #footer .f_nav {
                    display: flex;
                }
                #footer .f_info_flex > .flex_box02:nth-child(1), #footer .f_info_flex > .flex_box02:nth-child(2) {
                    width: 24%;
                }
                #footer .f_info_flex > .flex_box02:nth-child(3) {
                    width: 48%;
                }
                #footer .contact_flex {
                    justify-content: center;
                    align-items: center;
                }
                #footer .f_info_flex .map_btn {
                    margin-left: 0;
                    font-size: 0.9rem;
                }
                .map_cassette {
                    background: #fff url("../img/common_bg02.png")no-repeat top center/cover;
                }
                .blog_bnr_cassette {
                    padding: 100px 0;
                    background-size: auto;
                }
                .blog_bnr_cassette .ttl {
                    font-size: 3.125rem;
                }
                .blog_bnr_cassette a::before, .blog_bnr_cassette a::after {
                    transform: translateX(-50%);
                    bottom: 30px;
                }
                .blog_bnr_cassette a::before {
                    width: 127px;
                    height: 129px;
                    left: calc(50% - 250px);
                }
                .blog_bnr_cassette a::after {
                    width: 149px;
                    height: 240px;
                    right: auto;
                    left: calc(50% + 250px);
                }
                .blog_bnr_cassette a > div {
                    padding: 20px 0;
                }
            }

            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 960px) {
                #footer {
                    padding: 40px 0 20px;
                }
                #footer .sp_btn {
                    display: none;
                }
                #pagetop {
                    bottom: 20px;
                }
                #side_menu {
                    position: fixed;
                    right: 0;
                    top: 25%;
                    padding: 30px 0;
                    background-color: #fff;
                    width: 70px;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    gap: 15px 0;
                    border: 1px solid #EDEDED;
                    border-right: none;
                    border-radius: 20px 0 0 20px;
                    z-index: 500;
                }
            }




/* 見出し
------------------------------------*/
h1 {
    font-size: 0.3rem;
    color: #FFA0A0;
}
.h2_wrap h2 {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    font-size: 1.3rem;
}
.h2_wrap h2 span {
    display: inline-block;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    background-color: #FFC104;
    position: relative;
    min-width: 260px;
}
.h2_wrap h2 span::after {
    position: absolute;
    content: "";
    background: url("../img/common_line02.png")repeat-x top left/contain;
    width: 100%;
    height: 6px;
    left: 0;
    bottom: -20px;
}
.title01 {
    text-align: center;
    background: url("../img/title_bg01.png")no-repeat center center/contain;
    padding: 15px 0 35px;
    margin-bottom: 25px;
    color: #F5A100;
    font-weight: bold;
    font-size: 1.3rem;
}
.title02 {
    padding-left: 50px;
    position: relative;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 500;
}
.title02::before {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: solid 12px #FF7C7C;
    top: -5px;
    left: 0;
}

            /* 【スマートフォン用のスタイル記述】 */
            @media screen and (min-width: 760px) {
                h1 {
                    font-size: 0.8rem;
                }
                .h2_wrap h2 {
                    font-size: 1.5rem;
                }
                .title01 {
                    font-size: 1.8rem;
                    padding: 15px 0 45px;
                }
                .title02 {
                    font-size: 1.25rem;
                }
            }

            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 960px) {
                .title01 {
                    font-size: 2rem;
                    padding: 15px 0 40px;
                    background-size: auto;
                }
            }


/* commonLayout
------------------------------------*/
.commonLayout #main {
    background-image: url("../img/common_bg01.png");
    padding: 30px 0 100px;
    margin-top: 100px;
    position: relative;
    z-index: 0;
    overflow-x: clip;
}
.commonLayout #main::before, .commonLayout #main::after, .commonLayout #common_bg::before {
    position: absolute;
    content: "";
}
.commonLayout #main::before, .commonLayout #main::after {
    background: url("../img/common_bgImg01.png")no-repeat center center/cover;
    width: 208px;
    height: 110px;
    z-index: -2;
}
.commonLayout #main::before {
    top: 20px;
    left: 20px;
}
.commonLayout #main::after {
    bottom: 20px;
    right: 20px;
    transform: scale(-1, -1);
}
.commonLayout #common_bg {
    background-color: #fff;
    border-radius: 20px;
    padding: 60px 0;
    max-width: 1200px;
    width: 96%;
    margin: 0 auto;
    position: relative;
    color: #707070;
}
.commonLayout #common_bg::before {
    width: 100%;
    border-radius: 20px;
    height: 10%;
    background-color: #FCC800;
    bottom: -10px;
    left: 0;
    z-index: -1;
    min-height: 100px;
}
.commonLayout #common_bg .cassette > .inner {
    max-width: 900px;
    width: calc(96% - 30px);
}
.commonLayout #common_bg >.cassette:last-of-type {
    padding-bottom: 0;
}


            /* 【スマートフォン用のスタイル記述】 */
            @media screen and (min-width: 760px) {
                .commonLayout #common_bg, .commonLayout #common_bg::before {
                    border-radius: 30px;
                }
                .commonLayout #main::before, .commonLayout #main::after {
                    width: 368px;
                   height: 195px;
                }
            }

            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 960px) {
                .commonLayout #main::before, .commonLayout #main::after {
                    width: 458px;
                    height: 243px;
                }
            }

            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 1240px) {
                .commonLayout #main {
                    margin-top: 180px;
                    padding: 20px 0 100px;
                }
            }


/* spNavi
------------------------------------*/
#gNavi {
    display: none;
}
#spNavi {
	position: fixed;
    z-index: 900;
    width: 100%;
    top: 0;
}
.drawer-btn {
	position: absolute;
	z-index: 900;
	top: 20px;
    right: 20px;
}
.openbtn {
	position: relative;
	cursor: pointer;
    width: 35px;
    height:35px;
	border-radius: 5px;
    padding: 10px;
    background-color: #007DC4;
}
.openbtn::after {
    position: absolute;
    content: "MENU";
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    bottom: 5px;
    transition: all 0.3s;
    font-size: 0.7rem;
  font-weight: bold;
}
.openbtn span {
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    border-radius: 2px;
	background: #fff;
  	width: calc(100% - 20px);
}
.openbtn span:nth-of-type(1) {
	top: 10px;
}
.openbtn span:nth-of-type(2) {
	top: 19px;
}
.openbtn span:nth-of-type(3) {
	top: 28px;
}
.openbtn.active {
    background-color: #fff;
}
.openbtn.active span {
    height: 3px;
    width: calc(100% - 25px);
    background-color: #007DC4;
}
.openbtn.active::after {
    content: "CLOSE";
    color: #007DC4;
}
.openbtn.active span:nth-of-type(1) {
    top: 13px;
    transform: translateX(-50%) translateY(6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 25px;
    transform: translateX(-50%) translateY(-6px) rotate(45deg);
}
.pull-down-list {
	display: block;
    position: absolute;
    width: 100%;
    top: 0;
    background-color: #8BDBF3;
}
.pull-down-list > div {
    height: calc(100vh - 15px);
    padding-top: 15px;
}
.pull-down-inner {
	width: 100%;
	position: relative;
	padding: 15px;
	box-sizing: border-box;
}
.pull-down-list .index_menu > li a, .pull-down-list.menu .accordion span {
	display: block;
	width: 100%;
	position: relative;
	padding: 10px 30px 10px 10px;
	box-sizing: border-box;
	color: #fff;
    font-weight: bold;
}
.pull-down-list .index_menu > li a::before, .pull-down-list.menu .accordion span::before,
.pull-down-list .index_menu > li a::after, .pull-down-list.menu .accordion span::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: "";
}
.pull-down-list .index_menu > li a::before, .pull-down-list.menu .accordion span::before {
    background-color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    right: 15px;
}
.pull-down-list .index_menu > li a::after, .pull-down-list.menu .accordion span::after {
    width: 14px;
    height: 4px;
    right: 21px;
    color: #007ACC;
    border-bottom: solid 1px;
    border-right: solid 1px;
    transform: skew(45deg);
    top: calc(50% - 3px);
    transition: all 0.3s;
}
.pull-down-list .index_menu > li a:hover::after, .pull-down-list.menu .accordion span:hover::after {
    right: 18px;
}
.menu .index_menu > li {
    border-bottom: 1px solid #fff;
}
.menu .index_menu > li.accordion > ul {
  display: none;
}
.menu .index_menu > li.accordion {
    position: relative;
}
.menu .index_menu > li.accordion::before, .menu .index_menu > li.accordion::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 1px;
    background-color: #000;
    transition: all .4s;
    top: 25px;
}
.menu .index_menu > li.accordion::before {
    right: 20px;
}
.menu .index_menu > li.accordion::after {
    transform: rotate(90deg);
    right: 20px;
}
.menu .index_menu > li.accordion.open::after {
    transform: rotate(0deg);
}
.menu .index_menu > li.accordion.open > ul {
    border-top: 1px solid #eee;
    background-color: rgba(246, 246, 246, 0.5);
}
.menu .index_menu > li.accordion.open > ul li:last-child {
    border-bottom: none;
}
.pull-down-list .index_menu {
    padding-top: 10px;
    padding-bottom: 20px;
}



            /* 【スマートフォン用のスタイル記述】 */
            @media screen and (min-width: 760px) {
            }
            @media only screen and (min-width: 1240px) {
                #spNavi {
                    display: none;
                }
                .pull-down-list {
                    display: none;
                }
            }





/* wp-paginate
------------------------------------*/
.wp-paginate {
    display: flex;
    gap: 5px 10px;
    justify-content: center;
    margin-top: 40px;
}
.wp-paginate > li {
    margin: 0;
}
.wp-paginate > li a, .wp-paginate .current {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #FFC104;
    color: #fff;
    background-color: #FFC104;
    padding: 0;
    font-size: 1.2rem;
    font-weight: 500;
}
.wp-paginate .current {
    color: #FFC104;
    background-color: #fff;
}
.wp-paginate > li a:hover {
    background-color: #ffeaaa;
    color: #FFC104;
}



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

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




/* 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 */