@charset "UTF-8";

/*============
nav
=============*/

header nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--color-main);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 3;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
}

/*.header__nav_sp nav{
    left: -1200px;
}
*/
.open nav {
    transform: scaleY(1);
    opacity: 1;
}

.header__nav_sp.open nav{
    display: block;
}

header nav .inner {
    padding: 25px;
    margin-top: 45px;
    width: 90%;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}

header nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav .inner ul.sp_nvList{
    margin-bottom: 60px;
}

header nav .sp_nvText{
    margin-bottom: 20px;
}
header nav .sp_nvText p{
    font-weight: bold;
    font-size: 16px;
}

header nav .sp_LinkItem{
    margin-bottom: 20px;
    width: 100%;
}

header nav .sp_LinkItem a{
    display: block;
    width: 100%;
    max-width: 300px;
    margin-right: auto;
    margin-left: 0;
    padding: 20px 30px;
}

header nav .sp_LinkItem a img{
    width: 1em;
}

header nav .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #fff;
}

header nav .inner ul li:first-child {
    border-top: 1px solid #fff;
}

header nav .inner ul li a {
    display: block;
    color: var(--color-black1);
    font-size: 14px;
    padding: 1em;
    text-decoration: none;
    transition-duration: 0.2s;
    transition: .3s;
    font-weight: bold;
}

header nav .inner ul li a:hover {
    /*background: var(--color-yellow);*/
    color: var(--color-black1);
}

.header__tel {
    margin-left: auto;
    margin-right: 0;
    position: absolute;
    top: 30px;
    right: 80px;
}
.header__tel a{
    font-weight: bold;
    font-size: 16px;
}

.header__tel img{
    width: 1em;
    display: inline-block;
}


.header__nav__list__item.telLink{
    display: block;
}

.header__nav__list__item.telLink .telLinkFlex{
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    justify-content: center;
}

.header__nav__list__item.telLink .telLink_text{
    display: block;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
}


@media screen and (max-width: 767px) {
    header nav {
        /*left: -100vh;*/
        width: 100%;
    }
}


/*============
.toggle_btn
=============*/

.toggle_btn {
    display: block;
    position: fixed;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    transition: all .5s;
    cursor: pointer;
    z-index: 1200;
    background: var(--color-black1);
    padding: 10px;
    border-radius: 107px;
}

.toggle_btn span {
    display: block;
    position: absolute;
    left: 15px;
    width: 20px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    transition: all .5s;
}

.toggle_btn span:nth-child(1) {
    top: 16px;
}

.toggle_btn span:nth-child(2) {
    top: 24px;
}

.toggle_btn span:nth-child(3) {
    bottom: 16px;
}


.open .toggle_btn{
    background: #fff;
}

.open .toggle_btn span{
    background-color: var(--color-black1);
}

.open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
        top: 13px;
}

.open .toggle_btn span:nth-child(2) {
    opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
    bottom: 15px;
}

@media screen and (max-width: 768px) {
    header nav .sp_LinkItem a {
        max-width: inherit;
        width: auto;
        display: block;
   }
}


/*============
#mask
=============*/

#mask {
    display: none;
    transition: all .5s;
}

.open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .8;
    z-index: 2;
    cursor: pointer;
}


/*============
#header
=============*/
#header {
    position: fixed;
    top: 0;
    background-color: rgba(255,255,255,0);
    width: 100%;
    z-index: 999;
    height: 100px;
    transition: .3s;
}
#header .sp-show {
    display: none;
}

#header .header__nav_sp {
    display: none;
}

.header__wrap {
    max-width: 1860px;
    width: 100%;
    margin: 0 auto;
    height: 120px;
}

.header__logo {
    min-width: auto;
    width: 160px;
    /*margin-right: 35px;*/
}

.headerLeft .header__logo {
    display: flex;
    align-items: center;
    margin-left: 30px;
    width: 200px;
}

.headerLeft .header__logo img{
    height: auto;
    width: 200px;
}

.header__nav.header__nav_pc {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.headerLeft {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.headerRight {
    width: calc(100% - 300px);
    height: 100%;
}

.header__nav__list {
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    text-decoration: none;
    list-style: none;
    align-items: center;
    font-size: 14px;
    white-space: nowrap;
    margin-bottom: 0;
    margin-top: 0;
}
.header__nav__list__item{
    text-align: center;
}
.header__nav__list__item a{
    color: #fff;
    display: block;
    width: 100%;
    padding: 40px 0;
    font-size: 14px;
}

.header__nav__list__item a:hover{
    color: var(--color-main);
}

.headerLeft .header__nav__list {
    align-items: center;
    margin-right: 20px;
}

.headerRight.header__nav__list {
    align-items: flex-start;
}

.headerRight.header__nav__list .header__nav__list__item a {
    margin-top: 27px;
    display: flex;
    align-items: center;
}

.header_world {
    width: 14px;
    height: 14px;
    margin-right: 5px;
    margin-bottom: 3px;
}

.header__nav__list__item {
    padding: 0 15px;
}

.header__logo{
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.header__logo a{
    padding: 10px 0;
    display: block;
    height: 82px;
    transition: .3s;
    display: flex;
    align-items: center;
}

.header__logo__img {
    width: auto;
    height: 100%;
}

.hoverColorGreen:hover {
    transition: 0.3s ease-in-out;
    color: var(--color-main);
}

/* tel LINK */
.header__nav__list__item.telLink {
    font-weight: bold;
}

/*.header__nav__list__item.telLink a{
    display: flex;
    align-items: center;
    font-size: 18px;
}*/

.header__nav__list__item.telLink{
    display: block;
}

.header__nav__list__item.telLink .telLinkFlex{
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    justify-content: center;
}

.header__nav__list__item.telLink .telLink_text{
    display: block;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
}

.header__nav__list__item a .telLinkFlex:before{
    content: '';
    height: 1em;
    width: 1em;
    background: url(../img/common/header_tel_icon.svg) no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
    padding-right: 5px;
}

.header__nav__list__item a:hove .telLinkFlexr:before {
    background: url(../img/common/header_tel_icon_hover.svg) no-repeat;
    background-size: contain;
    background-position: center;
}

.header__nav__list__item.telLink img{
    height: 1em;
    width: auto;
    max-width: auto;
    padding-right: 5px;
}


/* お問い合せLINK */
/*.header__nav__list__item.orangeLink{
    margin-right: 20px;
}
*/
.scroll_header .header__nav__list__item.orangeLink a{
    border-radius: 100px;
    color: #fff;
    text-align: center;
    padding: 12px 15px;
    background: var(--color-black1);
    transition: .3s;
    width: 160px;
    display: block;
}


.scroll_header .header__nav__list__item.orangeLink a:hover{
    color: var(--color-black1);
    background: var(--color-main);
}

.scroll_header .header__nav__list__item.lineLink a {
    border-radius: 100px;
    color: #fff;
    text-align: center;
    padding: 12px 15px;
    background: #06C755;
    transition: .3s;
    width: 210px;
    display: block;
}

.scroll_header .header__nav__list__item.lineLink a:before {
    content: '';
    background: url(../img/common/line_icon.svg) no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}


/* dropnmenu -------- */
.dropmenu_item{
    position: relative;
}
.header_innerNav{
    padding: 10px;
}
.dropmenu_item .header_innerNav{
    position: absolute;
    left: 10px;
    top: 100px;
    z-index: +1;
    background: #fff;
    width: auto;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
}
.dropmenu_item{
    position: relative;
}

.dropmenu_item .dropmenu_link{
    padding-right: 20px;
    position: relative;
}
.dropmenu_item .dropmenu_link:before{
    content: '';
    height: 1px;
    width: 10px;
    background-color: #fff;
    transition: .3s;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 0;
}
.dropmenu_item .dropmenu_link:after{
    content: '';
    height: 10px;
    width: 1px;
    background-color: #fff;
    transition: .3s;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5px;
    margin: auto 0;
}

.dropmenu_item .dropmenu_link:hover:before,
.dropmenu_item .dropmenu_link:hover:after{
    background-color: var(--color-yellow);
}

.dropmenu_item.active .dropmenu_link:after{
    opacity: 0;
}

nav .dropmenu_item .dropmenu_link:before,
nav .dropmenu_item .dropmenu_link:after{
    background-color: var(--color-black1);
}

.header__nav_pc .dropmenu_item:hover > ul,
.header__nav_pc .dropmenu_item ul li:hover > ul,
.header__nav_pc .dropmenu_item:active > ul,
.header__nav_pc .dropmenu_item ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

.header__nav_pc .dropmenu_item ul li a{
    color: #000;
    text-align: left;
    padding: 20px 20px;
    width: 100%;
    transition: .3s;
}

.header__nav_pc .dropmenu_item ul li a:hover{
    color:  var(--color-yellow);
}

.header__nav_sp .dropmenu_item ul,
.header__nav_sp .dropmenu_item ul ul{
    background: #f6f6f6;
    position: relative;
    left:0;
    top:0;
    width:100%;
    visibility:visible;/*JSで制御するため一旦表示*/
    opacity:1;/*JSで制御するため一旦表示*/
    display: none;/*JSのslidetoggleで表示させるため非表示に*/
    transition:none;/*JSで制御するためCSSのアニメーションを切る*/
}

.header__nav_sp .dropmenu_item ul li:last-child{
    border-bottom: 0;
}


/* schroll_header -------- */
#header.scroll_header{
    background-color: #fff;
    box-shadow: 0px 0px 3px 0px rgb(0 0 0 / 30%);
}

.scroll_header .header__nav__list__item a{
    color: #000;
    transition: .3s;
    font-weight: bold;
}

.scroll_header .header__nav__list__item a:hover{
    color: var(--color-main);
}
.scroll_header .dropmenu_item a:before,
.scroll_header .dropmenu_item a:after{
    background-color: #000;
}

.scroll_header .dropmenu_item a:hover:before,
.scroll_header .dropmenu_item a:hover:after{
    background-color: var(--color-yellow);
}


@media screen and (max-width: 1600px) {
    .header__nav__list__item{
        padding: 0 10px;
    }
}

@media screen and (max-width: 1450px) {
    .scroll_header .header__nav__list__item a{
        letter-spacing: .3px;
    }
    .headerLeft .header__nav__list{
        padding-left: 0;
    }
}


@media screen and (max-width: 1400px) {
    .headerLeft .header__logo{
        margin-left: 20px;
    }
    .headerLeft .header__logo img{
        width: 100%;
    }
}


@media screen and (max-width: 1366px) {
    .headerLeft .header__logo{
        width: 160px;
    }
    .headerLeft .header__logo{
        margin-left: 15px;
    }
    .header__nav__list__item{
        padding: 0 7px;
    }
    .headerLeft .header__nav__list{
        margin-right: 20px;
    }
    .scroll_header .header__nav__list__item a{
        letter-spacing: .1px;
    }
    .header__nav__list__item.telLink a{
        font-size: 16px;
    }
    .header__nav__list__item.orangeLink{
        margin-right: 0px;
    }
   .header__nav__list__item.orangeLink a{
        padding: 12px 6px;
    }
}


@media screen and (max-width: 1150px) {
    .headerLeft .header__nav__list {
        margin-right: 10px;
        font-size: 14px;
    }
    .header__nav__list__item {
        padding: 0 5px;
    }
}


@media screen and (max-width: 1100px) {
    #header{
        height: 80px;
    }
    #header .sp-hide {
        display: none;
    }
    #header .sp-show {
        display: block;
        display: inline-flex;
    }
    .header__logo a{
        height: 80px;
    }
    #header .header__nav_sp {
        display: block;
    }
    .header__nav.header__nav_pc {
        display: none;
    }
    .header__wrap {
        height: 60px;
        align-items: center;
        display: flex;
    }
    .header__logo {
        /* max-width: 133px; */
        /*width: 223px;*/
        margin-left: 10px;
        /* min-width: unset; */
    }
    .header__logo__img {
        width: 100%;
        margin: auto;
        height: auto;
    }
}



@media screen and (max-width: 768px) {
    .header__logo.sp-show{
        width: 140px;
    }
}

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

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

}



/*
LINE
-----------------------*/
/* commonLink_line
----------------------------------------- */
header .sp_LinkItem .commonLink_line{
    display: block;
    background: #06C755;
    color: #fff !important;
    position: relative;
    /* border: 1px solid var(--color-yellow); */
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 100px;
    transition: .3s;
    line-height: 1.7;
    /* max-width: 600px; */
    margin: 0 auto;
    letter-spacing: .2px;
    display: inline-block;
}

/*.commonLink07:after{
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-black1);
    border-right: 2px solid var(--color-black1);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto 0;
    transition: .3s;
}

.commonLink07:hover:after{
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}*/

header .sp_LinkItem .commonLink_line:visited,
header .sp_LinkItem .commonLink_line:link{
  color: var(--color-black1);
}
header .sp_LinkItem .commonLink_line:hover{
  background: var(--color-black1);
  color: #fff;
  transition: .3s;
}

header .sp_LinkItem .commonLink_line img{
  transition: .3s;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
  width: 1em;
}

header .sp_LinkItem .commonLink_line:hover img{
  filter: saturate(100%);
  filter: brightness(200%);
}

header .sp_LinkItem .commonLink01 {
    font-size: 16px;
    padding: 10px 30px;
}

header .sp_LinkItem .commonLink07 {
    font-size: 16px;
    padding: 10px 30px;
border: 1px solid var(--color-black1);
}

@media screen and (max-width:640px) {
  .commonLink_line{
    font-size: 18px;
    padding: 30px 20px;
  }
}



