@charset "UTF-8";

/* CSS Document */
/*common
────────────────────────────────────*/
a[href^="tel:"] {
  pointer-events: none;
  cursor: default;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

a {
    color: #333333;
    text-decoration: none;
    display: inline-block;
}

a:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    -webkit-transition: all .3s;
    transition: all .3s;
}

a.anchor {
    display: block;
    padding-top: 100px;
    margin-top: -100px;
    position: absolute;
}

br.br1041,
br.br1040,
br.br768,
br.br540,
br.br415 {
    display: none;
}

body {
    position: relative;
}

main {
    margin-top: -200px;
}

.inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

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

.nowrap {
    white-space: nowrap;
}

ul.dot li {
    position: relative;
    padding-left: 1.5rem;
}

ul.dot li::before {
    content: '・';
    position: absolute;
    top: 0;
    left: 0;
}

ul.list_kome li {
    position: relative;
    padding-left: 1.8rem;
}

ul.list_kome li::before {
    content: '※';
    position: absolute;
    top: 0;
    left: 0;
}

a.link_txt_arrow {
    color: #00A5E0;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

a.link_txt_arrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0px;
    border-top: solid 2px #00A5E0;
    border-right: solid 2px #00A5E0;
    border-radius: 2px;
    -ms-transform: rotate(45deg) translateY(-50%);
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 48%;
    left: 0;
}

.txt_red {
    color: red;
}

/*レスポンシブ
────────────────────────────────────*/
@media(min-width: 1041px) {
    br.br1041 {
        display: inline-block;
    }
}

@media screen and (max-width:1040px) {
    .inner {
        width: calc(100% - 40px);
    }

    br.br1041 {
        display: none;
    }

    br.br1040 {
        display: inline-block;
    }
}

@media(min-width: 769px) {

    /*769px以上の時は電話発信を無効*/
    a[href^="tel:"] {
        pointer-events: none;
    }
}

@media screen and (max-width:768px) {
    a.anchor {
        padding-top: 85px;
        margin-top: -85px;
    }

    br.br1040 {
        display: none;
    }

    br.br768 {
        display: inline-block;
    }

    main {
        margin-top: 0;
    }
}

@media screen and (max-width:540px) {
    html {
        font-size: 58.334%;
    }

    a.anchor {
        padding-top: 65px;
        margin-top: -65px;
    }

    br.br768 {
        display: none;
    }

    br.br540 {
        display: inline-block;
    }

    main {
        margin-top: 0;
    }

    .inner {
        width: calc(100% - 30px);
    }
}

@media screen and (max-width:415px) {
    br.br540 {
        display: none;
    }

    br.br415 {
        display: inline-block;
    }
}

/*header
────────────────────────────────────*/
header {
    background-color: #ffffff;
    /* background-image: linear-gradient(#ffffff, #ffffff 50%, transparent); */
    top: -100px;
    z-index: 10;
    margin-top: 100px;
    position: relative;
}

header .inner {
    height: 80px;
    align-items: center;
}

header .header_logo {
    width: 100%;
    max-width: 292px;
}

header .header_logo a {
    width: 100%;
}



/* .header_tel */

.header_tel .tel_num {
    font-size: 2.4rem;
    font-weight: bold;
    color: #ff006f;
    line-height: 1.2;
}

.header_tel .tel_icon {
    width: 24px;
    height: auto;
    margin: 0 8px 2px 0;
}

.header_tel .tel_time {
    font-size: 1.2rem;
    line-height: 2;
}

.drawerMenu .header_tel {
    margin: 30px auto 0;
    text-align: center;
}

/* header .global_nav */

header .gnav_ul {
    display: flex;
    justify-content: center;
}

header .gnav_li {
    position: relative;
    margin: 0 5px;
    font-weight: bold;
}

header .gnav_li>a {
    padding: 8px 10px;
    position: relative;
    line-height: 1.3;
    height: 100%;
    display: flex;
    align-items: center;
}

header .smenu_ul {
    position: absolute;
    top: 52px;
    left: 50%;
    width: max-content;
    padding: 5px 7px;
    background: #ffd276;
    opacity: 0;
    transform: translateY(8%) translateX(-50%);
    transition: all .3s ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    visibility: hidden;
    text-align: center;
}

header .gnav_li:hover .smenu_ul {
    opacity: 1;
    transform: translateY(0%) translateX(-50%);
    visibility: visible;
    z-index: 999;
    top: 45px;
    left: 50%;
}

header .smenu_ul::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    box-sizing: border-box;
    border: 5px solid transparent;
    border-bottom: 10px solid #ffd276;
}

header .smenu_ul::after {
    content: "";
    width: 100%;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    background: transparent;
    z-index: -1;
}

header .smenu_li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

header .smenu_li:last-of-type {
    border: none;
}

header .smenu_li>a {
    padding: 5px 20px;
}

header .drawerBtn {
    display: none;
}

/*---header 固定化されたときのCSS-----*/
header.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
    -o-transition: top 0.65s ease-in;
    width: 100%;
}

header.fixed .inner {
    height: 80px;
}

header.fixed .header_logo {
    width: 250px;
}

/*footer
────────────────────────────────────*/
footer {
    background: #B9ECFE;
    text-align: center;
    padding: 50px 0 10px;
    line-height: 1.6;
    margin-top: 85px;
}

footer address p {
    font-size: 1.4rem;
}

footer .copylight {
    font-size: 1.2rem;
    margin-top: 50px;
}


@media screen and (min-width:1041px) {
    .drawerMenu {
        display: none;
    }
}

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

    header .global_nav {
        display: none;
    }

    header .header_sp_logo {
        display: flex;
        align-items: center;
    }

    header .drawerBtn {
        width: 50px;
        height: 50px;
        cursor: pointer;
        background: #ff006f;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    header .drawerBtn>div {
        width: 27px;
        height: auto;
    }

    header .drawerBtn span {
        display: block;
        width: 100%;
        height: 2px;
        background: #ffffff;
        transition: .3s;
        border-radius: 2px;
    }

    header .drawerBtn span+span {
        margin-top: 7px;
    }

    header .drawerBtn.on span:nth-of-type(1) {
        transform: rotate(135deg) translate(6px, -6px);
    }

    header .drawerBtn.on span:nth-of-type(2) {
        opacity: 0;
    }

    header .drawerBtn.on span:nth-of-type(3) {
        transform: rotate(-135deg) translate(6.5px, 6px);
    }

    .drawerMenu {
        display: block;
        padding: 5px 0 150px;
        visibility: hidden;
        z-index: 11;
        position: fixed;
        top: 80px;
        right: 0;
        width: 80%;
        height: 100%;
        max-width: 350px;
        overflow-y: auto;
        background: #ffe8f2;
        transition: all .3s;
        transform: translateX(350px);
        font-size: 1.5rem;
    }

    .drawerMenu.on {
        visibility: visible;
        transition: all .3s;
        transform: translateX(0);
    }

    .drawerMenu_content {
        padding: 0 20px;
    }

    .drawerMenu_title {
        display: flex;
        position: relative;
        align-items: center;
    }

    .drawerMenu_title:nth-of-type(3) {
        margin-bottom: 10px;
    }

    .drawerMenu_title a {
        width: 100%;
        padding: 10px 20px 10px 5px;
        font-size: 1.6rem;
        display: flex;
        align-items: center;
    }

    .drawerMenu_title a:after {
        display: block;
        position: absolute;
        top: 43%;
        right: 6px;
        content: '';
        width: 9px;
        height: 9px;
        border-top: solid 2px #333333;
        border-right: solid 2px #333333;
        transform: rotate(45deg) translateY(0);
        pointer-events: none;
    }

    .drawerMenu_title p {
        padding: 10px 20px 10px 5px;
        font-size: 1.6rem;
        width: 100%;
    }

    .drawerMenu_title p::before,
    .drawerMenu_title p::after {
        display: block;
        position: absolute;
        background: #333;
        content: '';
    }

    .drawerMenu_title p::before {
        top: 50%;
        right: 2px;
        width: 13px;
        height: 2px;
        transform: translateY(-50%);
    }

    .drawerMenu_title p::after {
        top: 50%;
        right: 8px;
        width: 2px;
        height: 13px;
        transform: translateY(-50%);
        transition: all .3s;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -o-transition: all .3s;
    }

    .drawerMenu_title.on p:after {
        transform: rotate(90deg);
        top: 37.5%;
    }

    .drawerMenu_list {
        display: none;
        padding: 10px 0;
        border-bottom: 1px solid #333333;
    }

    .drawerMenu_list li {
        position: relative;
    }

    .drawerMenu_list li:after {
        display: block;
        position: absolute;
        top: 40%;
        right: 6px;
        content: '';
        width: 9px;
        height: 9px;
        border-top: solid 2px #333;
        border-right: solid 2px #333;
        transform: rotate(45deg) translateY(0);
        pointer-events: none;
    }

    .drawerMenu_list li a {
        display: block;
        padding: 7px 20px 7px 15px;
        font-size: 1.6rem;
    }

    .overlay {
        display: none;
        width: 100%;
        background: rgba(0, 0, 0, 0.6);
        height: 100%;
        position: absolute;
        z-index: 9;
    }

    .drawerMenu.on+.overlay {
        display: block;
        animation: show 0.2s linear 0s;
        margin-top: -180px;
    }

    footer {
        margin-top: 65px;
    }
}

@media screen and (max-width:768px) {
    header {
        position: fixed;
        top: 0;
        width: 100%;
        margin-top: 0;
    }

    header .header_tel {
        display: none;
    }
}

@media screen and (max-width:540px) {
    header .inner {
        height: 55px;
    }

    header .header_logo {
        width: 240px;
    }

    header .drawerBtn {
        width: 45px;
        height: 45px;
    }

    header .drawerBtn>div {
        width: 25px;
    }

    header .drawerBtn span+span {
        margin-top: 6px;
    }

    header .drawerBtn.on span:nth-of-type(3) {
        transform: rotate(-135deg) translate(5px, 5px);
    }

    .drawerMenu {
        top: 55px;
        padding: 5px 0 105px;
    }

    .drawerMenu_content {
        padding: 0 10px;
    }

    .drawerMenu_title a {
        padding: 15px 17px 15px 5px;
    }

    .drawerMenu_title p {
        padding: 7px 17px 7px 5px;
    }

    .drawerMenu_list li a {
        padding: 7px 17px 7px 13px;
    }

    footer {
        margin-top: 40px;
        padding: 20px 0 30px;
    }

    footer address p:first-of-type {
        font-size: 1.4rem;
        margin-top: 10px;
    }

    footer address p:nth-of-type(2) {
        font-size: 1.35rem;
    }
}

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