@charset "utf-8";
/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');*/
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 1em;
}
html {
    font-size: 62.5%;
}
body, table, input, textarea, select, option {
    font-family: noto-sans-cjk-jp, sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
    display: block;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
:focus {
    outline: 0;
}
ins {
    text-decoration: none;
}
del {
    text-decoration: line-through;
}
img {
    vertical-align: top;
    max-width: 100%;
    height: auto;
}
a, a:link {
    color: #3e3938;
    text-decoration: none;
    transition: .3s;
    -webkit-transition: .3s;
}
a:visited {
    color: #0A0A0A;
}
a:hover {
    color: #0A0A0A;
}
a:active {
    color: #0A0A0A;
}
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
/* flex */
.flex, .flexA, .flexB, .flexC {
    display: flex;
    flex-wrap: wrap;
}
.flexA {
    justify-content: space-around;
}
.flexB {
    justify-content: space-between;
}
.flexC {
    justify-content: center;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
    color: #0A0A0A;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.5;
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    background-color: #FFF;
    letter-spacing: 0.1em;
}
body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}
#container {
    overflow: hidden;
    text-align: left;
}
#main {}
a[href^="tel:"] {
    cursor: default;
/*    pointer-events: none;*/
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
    padding-top: 35px;
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}
.hBox {
    margin: 0 auto;
    width: 93.2%;
    display: flex;
    justify-content: space-between;
    align-content: center;
}
.hBox .logo {
    width: 295px;
}
#gNavi {
    margin-top: 9px;
    width: calc(100% - 250px);
    text-align: right;
}
#gNavi li {
    margin-left: 17.5px;
    display: inline-block;
    position: relative;
}
#gNavi li:first-child {
    margin-left: 0;
}
#gNavi li::after {
    height: 12px;
    width: 1px;
    background-color: #fff;
    position: absolute;
    right: -11px;
    top: 6px;
    content: '';
}
#gNavi li:last-child::after {
    display: none;
}
#gNavi li a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.16em;
}
#gNavi li a:hover {
    opacity: 0.7;
}
.header {
    padding: 14px 0 12px;
}
.header .hBox {
    margin: 0 auto;
    width: 1140px;
}
.naviUl {
    margin-top: 9px;
    width: calc(100% + 150px);
    text-align: right;
}
.naviUl li {
    margin-left: 12.5px;
    display: inline-block;
    position: relative;
}
.naviUl li::after {
    height: 12px;
    width: 1px;
    background-color: #D7D7D7;
    position: absolute;
    right: -11px;
    top: 6px;
    content: '';
}
.naviUl li:last-child::after {
    display: none;
}
.naviUl li a {
    color: #000;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.16em;
    position: relative;
}
.menu {
    height: 50px;
    width: 50px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 101;
    background: url("../images/common/menu_img01.png") no-repeat right top / 50px;
    cursor: pointer;
}
.menu.active {
    background: url("../images/common/menu_img02.png") no-repeat center / 30px;
    right: 0;
    top: 0;
    height: 46px;
    background-color: #fff;
}
.header {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 101;
    background-color: #fff;
}

@media all and (min-width: 768px) and (max-width: 1024px) {
    .hBox .logo {
        width: 220px;
    }
    #gNavi li {
        margin-left: 7.9px;
    }
    #gNavi li::after {
        right: -8px;
    }
    .hBox {
        width: 95.9%;
    }
    .hBox .logo {
        width: 178px;
    }
    #gNavi {
        width: calc(100% - 190px);
    }
    #gNavi li a {
        font-size: 1.1rem;
        letter-spacing: 0.06em;
    }
}
@media all and (min-width: 768px) {
    .naviUl li a:hover::before {
        position: absolute;
        top: -26px;
        left: -4px;
        width: calc(100% + 8px);
        height: 2px;
        background-color: #000;
        content: '';
    }
}
@media all and (max-width: 767px) {
    #gHeader {
        padding: 6px 22px 0;
        width: 85%;
        left: 0;
        transform: none;
    }
    .hBox {
        display: none;
        width: 80%;
        background: #fff;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        overflow: auto;
        z-index: 100;
    }
    h1, #gHeader > .logo {
        width: 213px;
        display: block;
    }
    .hBox .logo {
        width: 177px;
        margin: 15px 0 0 15px;
        display: block;
    }
    #gNavi {
        margin-top: 37px;
        padding: 0 50px 60px;
        width: 100%;
        text-align: center;
    }
    #gNavi li {
        margin-left: 0;
        display: block;
        border-bottom: 2px solid #F7F7F7;
    }
    #gNavi li:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
    #gNavi li a {
        padding: 14px 0 11px;
        color: #000;
        font-size: 1.3rem;
        display: block;
    }
}
/*------------------------------------------------------------
    content
------------------------------------------------------------*/
@media all and (max-width: 767px) {
    .content {
        padding: 0 25px;
        max-width: inherit;
    }
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
.comLink {
    margin-bottom: 44px;
    background-color: #65AAC9;
}
.comLink a {
    padding: 25px 30px 27px;
    display: block;
    position: relative;
    box-sizing: border-box;
}
.comLink .ttl {
    margin-bottom: 7px;
    color: #FEFFB7;
    font-size: 2rem;
    font-weight: 400;
    background-image: none;
}
.comLink p {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 300;
    background: url("../images/index/arrow_img02.png") no-repeat right 168px center / 13px;
}
.comLink .img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 201px;
}
.comListUl {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.comListUl::after {
    position: absolute;
    width: 2px;
    background-color: #F8F8F8;
    top: 45px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: '';
}
.comListUl li {
    width: 360px;
}
.comListUl li h2 {
    margin-bottom: 18px;
    font-size: 1.8rem;
    color: #000;
    display: flex;
    align-items: center;
}
.comListUl li h2 img {
    margin: 6px 9px 0 0;
}
.comListUl ul {
    margin-bottom: 13px;
    border-top: 2px solid #F8F8F8;
}
.comListUl ul li {
    padding: 8px 5px 9px 25px;
    font-size: 1.4rem;
    font-weight: 300;
    border-bottom: 2px solid #F8F8F8;
    box-sizing: border-box;
    letter-spacing: 0.16em;
}
.comListUl p {
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.7;
}
.comListUl .telBox {
    margin-bottom: 9px;
    background-color: #F2F2F2;
}
.comListUl .telBox p {
    margin-bottom: 5px;
}
.comListUl .telBox .tel {
    color: #000;
    font-size: 2.7rem;
    font-family: copperplate, serif;
    font-weight: 500;
    font-style: normal;
    display: flex;
    align-items: center;
    line-height: 1;
    letter-spacing: 0.11em;
}
.comListUl .telBox .tel img {
    margin-right: 13px;
    width: 14px;
}
.comListUl .telBox a {
    display: inline-block;
    padding: 15px 10px 12px 38px;
}
.comListUl .map {
    margin: -23px 0 11px;
}
.comListUl .txt {
    margin-bottom: 0;
}
.comListUl .comBtn {
    padding-right: 15px;
}
.comListUl .comBtn a {
    margin-left: auto;
}

.mt30 {
	margin-top:15px
}

.comListUl .address p {
    margin-bottom: 18px;
}
.office {
    padding-top: 96px;
}
.office h2 {
    margin: 0 auto 67px;
    width: 300px;
}
.office .title {
    margin-bottom: 31px;
    font-size: 1.4rem;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.18em;
}
.office .comListUl {
    margin-bottom: 49px;
}
.office .comListUl::after {
    top: 0;
}
.office .comListUl .map {
    margin: 0 0 5px;
}
.office .comListUl p {
    letter-spacing: 0.15em;
}
.office .comBtn a {
    margin-left: auto;
}
.office .comLink {
    margin-bottom: 0;
    background-color: #78BEB4;
}
.office .comLink p {
    background-position: right 259px center;
}
.office .comLink .img {
    width: 230px;
}

#gFooter {
    margin-top: 101px;
    padding: 45px 0 20px;
    background: #F2F2F2 url("../images/common/f_logo.png") no-repeat right bottom / 410px;
}
#gFooter .fNavi {
    margin-bottom: 90px;
    display: flex;
}
#gFooter .fNavi a {
    font-size: 1.2rem;
    font-weight: 400;
}
#gFooter .fNavi > li {
    margin-right: 35px;
}
#gFooter .fNavi .innUl {
    margin-top: -9px;
}
#gFooter .fNavi .innUl li {
    margin-top: 9px;
}
#gFooter .fLinkUl a {
    padding-left: 27px;
    color: #AFAFAF;
    position: relative;
}
#gFooter .fLinkUl a::before {
    margin-top: 3px;
    position: absolute;
    width: 6px;
    height: 2px;
    top: 50%;
    left: 14px;
    content: '';
    transform: translateY(-50%);
    background-color: #AFAFAF;
}
#gFooter address {
    color: #000;
    font-size: 1.2rem;
    font-weight: 300;
    text-align: center;
    font-style: normal;
    letter-spacing: 0.06em;
}
@media all and (min-width: 768px) and (max-width: 1024px) {
    #gFooter {
        padding: 45px 20px 20px;
    }
    .office {
        padding: 96px 20px 0;
    }
}
@media all and (min-width: 768px) {
    #gFooter .fNavi a:hover {
        opacity: 0.7;
    }
    #gFooter .fLinkUl a:hover {
        opacity: 0.7;
    }
}
@media all and (max-width: 767px) {
    .office {
        padding-top: 45px;
    }
    .office h2 {
        margin-bottom: 41px;
        width: 250px;
    }
    .office .title {
        margin-bottom: 19px;
        letter-spacing: 0.1em;
        text-align: center;
    }
    .office .comListUl .list p {
        margin-bottom: 45px;
    }
    .office .comListUl {
        margin-bottom: 51px;
    }
    .office .comLink .img {
        width: 188px;
    }
    .office .comLink p {
        background-position: right 145px bottom 6px;
    }
    .comListUl::after {
        display: none;
    }
    .comListUl ul li {
        padding: 10px 5px 9px 18px;
		white-space: nowrap;
        font-size: 1.3rem;
    }
    .comListUl ul {
        margin-bottom: 9px;
    }
    .comListUl p {
        margin-bottom: 15px;
    }
    .comLink a {
        padding: 15px 20px 18px;
    }
    .comLink .ttl {
        margin-bottom: 7px;
    }
    .comLink p {
        font-size: 1.4rem;
        background: url("../images/index/arrow_img02.png") no-repeat right 145px bottom 6px/ 13px;
        line-height: 1.72;
    }
    .comLink .img {
        width: 180px;
    }
    .comLink {
        margin-bottom: 23px;
    }
    .comListUl {
        display: block;
    }
    .comListUl::after {
        display: none;
    }
    .comListUl li {
        width: auto;
    }
    .comListUl > li {
        margin-bottom: 25px;
        padding-bottom: 20px;
        width: auto;
        border-bottom: 2px solid #F8F8F8;
    }
    .comListUl > li:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
    .comListUl li h2 {
        margin-bottom: 15px;
        letter-spacing: 0.13em;
    }
    .comListUl .telBox a {
        padding: 14px 10px 11px 18px;
    }
    .comListUl .telBox p {
        letter-spacing: 0.06em;
    }
    .comListUl .map {
        margin: -20px -29px 7px 0;
    }
    .comListUl .address p {
        margin-bottom: 18px;
        letter-spacing: 0.15em;
    }
    .comListUl .comBtn a {
        margin: 0 auto;
    }
    #gFooter {
        margin-top: 51px;
        padding: 0 0 80px !important;
        background-image: none;
    }
    #gFooter .content {
        padding: 0;
    }
    #gFooter .innUl {
        display: flex;
        flex-wrap: wrap;
    }
    #gFooter .innUl li {
        width: 50%;
        margin-right: 0;
        text-align: center;
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
    }
    #gFooter .innUl li:nth-child(2n) {
        border-right: none;
    }
    #gFooter .innUl li a {
        display: block;
        padding: 12px 10px 11px;
        font-size: 1.2rem;
        font-weight: 300;
        letter-spacing: 0.08em;
    }
    #gFooter .innUl .link {
        width: 100%;
    }
    #gFooter address {
        margin: 0 !important;
        padding: 21px;
        font-size: 1.1rem;
	    padding-bottom: 10px;	
    }
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
    max-width: 800px;
    margin: 0 auto;
}
/*------------------------------------------------------------
    comLink
------------------------------------------------------------*/
@media all and (min-width: 768px) {
    .comLink:hover {
        background: #92C3D8;
    }
    .office .comLink:hover {
        background: #A0D1CA;
    }
}
/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/
.comBtn a {
    width: 205px;
    border: 1px solid #000;
    padding: 9px 24px;
    display: block;
    color: #000;
    font-size: 1.4rem;
    font-weight: 300;
    box-sizing: border-box;
    position: relative;
}
.comBtn a::after {
    position: absolute;
    width: 40px;
    height: 8px;
    background: url("../images/index/arrow_img03.png") no-repeat right center / 40px;
    top: 50%;
    right: -17px;
    transform: translateY(-50%);
    content: '';
    margin-top: -3px;
    transition: all .3s ease-out;
}


.comBtn2 a {
    width: 205px;
    border: 1px solid #000;
    padding: 9px 24px;
    display: block;
    color: #000;
    font-size: 1.4rem;
    font-weight: 300;
    box-sizing: border-box;
    position: relative;
    margin-top: 50px;
}
.comBtn2 a::after {
    position: absolute;
    width: 40px;
    height: 8px;
    background: url("../images/index/arrow_img03.png") no-repeat right center / 40px;
    top: 50%;
    right: -17px;
    transform: translateY(-50%);
    content: '';
    margin-top: -3px;
    transition: all .3s ease-out;
}


.comBtn3 a {
    width: 205px;
    border: 1px solid #000;
    padding: 9px 24px;
    display: block;
    color: #000;
    font-size: 1.4rem;
    font-weight: 300;
    box-sizing: border-box;
    position: relative;
   margin: 30px auto;
}



.comBtn3 a::after {
    position: absolute;
    width: 40px;
    height: 8px;
    background: url("../images/index/arrow_img03.png") no-repeat right center / 40px;
    top: 50%;
    right: -17px;
    transform: translateY(-50%);
    content: '';
    margin-top: -3px;
    transition: all .3s ease-out;
}






@media all and (min-width: 768px) {
    .comBtn a:hover::after {
        right: -26px;
    }
}
@media all and (max-width: 767px) {
    .comBtn a {
        margin: 0 auto;
    }
    
    .comBtn2 a {
        margin: 0 auto 60px auto;
    }
    
    
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
    margin-bottom: 26px;
    color: #fff;
    font-family: copperplate, serif;
    font-size: 2.2rem;
    font-style: normal;
}
.headLine01 .jp {
    margin-top: 9px;
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    font-family: 'Noto Sans JP', sans-serif;
}
@media all and (max-width: 767px) {
    .headLine01 {
        margin-bottom: 29px;
        font-size: 2rem;
    }
}
/*------------------------------------------------------------
	txtList
------------------------------------------------------------*/
.txtList {
    position: fixed;
    right: 0;
    top: 150px;
    z-index: 100;
}
.txtList li {
    margin-bottom: 16px;
    width: 73px;
}
.txtList a {
    display: block;
}
.linkUl li {
    margin-top: 19px;
    border: 1px solid #fff;
}
.linkUl li a {
    padding: 9px 24px;
    display: block;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 300;
    position: relative;
}
.linkUl li a::after {
    position: absolute;
    width: 40px;
    height: 8px;
    background: url("../images/index/arrow_img04.png") no-repeat right center / 40px;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
    content: '';
    margin-top: -2px;
    transition: all .3s ease-out;
}
@media all and (min-width: 768px) {
    .linkUl li a:hover::after {
        right: -26px;
    }
    .txtList li {
        background: #fff;
    }
    .txtList li a:hover {
        opacity: 0.7;
    }
}
@media all and (max-width: 767px) {
    .txtList {
        width: 100%;
        right: auto;
        left: 0;
        top: auto;
        z-index: 100;
        bottom: -5px;
        display: flex;
    }
	.txtList li:first-child { background-color: #2c2a2a; }
	.txtList li:first-child a { color: #fff; }
    .txtList li {
        margin-bottom: 0;
        width: 100%;
        background-color: #000;
        border-right: 1px solid #141414;
		height: 64px;
    }
    .txtList li a {
        padding: 20px 0 ;
        display: block;
        color: #fff;
        font-size: 1.4rem;
        text-align: center;
        font-weight: 200;
        background: url("../images/common/list_icon01.png") no-repeat left 32px top 10px/ 14px;
    }
	.txtList li a span{ margin-left: 36px;}
    .txtList li .list {
        background: url("../images/common/list_icon02.png") no-repeat left 52px top 19px/ 20px;
    }
	
	.grecaptcha-badge {
    bottom: 70px !important;
}

	
}

.hBox >  h1 >.pc  img{
width: 65%;	
}

.comListUl .telBox .tel{
white-space: nowrap;
}



/*------------------------------------------------------------
	221223
------------------------------------------------------------*/

.comListUl .hour { margin-bottom:9px }




