@charset "UTF-8";

/** PC 用 */
@media (min-width: 1101px) {
  /** グローバルナビリスト (1階層目) */
  .global-nav-item-list {
    display: flex;
    /*justify-content: center;*/
    justify-content: space-between;
    align-items: center;
    width: 1080px;
    margin: 0 auto;
  }
  /** グローバルナビ項目 (1階層目) */
  .global-nav-item {
    width: calc(100%/5);
    border-right: 1px dotted #CCCCCC;
  }
  .global-nav-item:last-child {
    border-right: none;
  }
  .global-nav-item a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

  }
  .global-nav-item img{
    width: 30px;
    margin-right: 5px;
  }
  .global-nav-item > a {
    /*display: block;*/
    width: 100%;
    /*padding: 25px 10px 10px;*/
    text-align: center;
    text-decoration: none;
    line-height: 1.8em;
    /*transform: rotate(0.05deg);*/
  }
  .global-nav-item > a:hover {
    color: #E45A5A;
    opacity: 1;
  }
  .global-nav-item:hover > a::after {
    opacity: 1;
  }
  .global-nav-contact {
    margin-left: 10px;
    font-size: 1.1rem;
    line-height: 2.0em;
  }
  .global-nav-contact a{
    display: flex;
    align-items: flex-end;
    color: #E45A5A;
    font-size: 3.0rem;
    line-height: 1.0em;
  }
  .global-nav-contact a img{
    width: 23px;
    margin-right: 5px;
  }
  .global-nav-sub-item{
    display: none;
  }
  /** グローバルナビリスト (2階層目) */
  /** グローバルナビ項目 (2階層目) */
}
/** スマホ 用 */
@media (max-width: 1100px) {
  /** グローバルナビリスト (1階層目) */
  .global-nav-item-list {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 100%;
    margin: auto;
    overflow: auto;
    z-index: 100;
    /*background: rgba(255, 255, 255, 0.95);*/
    background: rgba(255,255,255,0.96);
    transition: 0.2s all;
    pointer-events: none;
  }
  .global-nav.open .global-nav-item-list {
    left: 0;
    pointer-events: all;
    padding-top: 60px;
  }
  /** グローバルナビ項目 (1階層目, 2階層目) のリンク */
  .global-nav-item img {
    width: 23px;
    margin-right: 8px;
  }
  .global-nav-item a {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    padding: 10px 30px;
    text-decoration: none;
    /*transform: rotate(0.05deg);*/
    transition: 0.5s all;
  }
  .global-nav-item a:hover {
    background: #EEC624;
  }
/*  .global-nav-item > a::before, .global-nav-sub-item-list.open a::before {
    box-sizing: border-box;
    content: "";
    display: block;
    margin-right: 10px;
    width: 10px;
    height: 10px;
    border: solid #EE9024;
    border-width: 0 3px 3px 0;
    transform-origin: center;
    transform: translateX(-25%) rotate(-45deg);
    transition: 0.2s all;
  }
  .global-nav-item > a.open::before {
    transform: translate(-25%, -2.5px) rotate(45deg);
  }*/
  .global-nav-sub-item{
    display: block;
  }
  .global-nav-sub-item a {
    padding-left: 50px;
    color: #FFF;
  }
  /** トグルボタン */
  .global-nav-button {
    box-sizing: border-box;
    position: fixed;
    top: 12px;
    right: 10px;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    background: #FFF;
    z-index: 101;
    cursor: pointer;
  }
  .global-nav-button-icon {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: calc(100% - 18px);
    height: 2px;
    margin-left: 9px;
    background: #EE9024;
    z-index: 100;
  }
  .global-nav-button-icon::before {
    position: relative;
    top: -8px;
    display: block;
    content: "";
    height: 2px;
    background: #EE9024;
    transition: 0.1s all;
  }
  .global-nav-button-icon::after {
    position: relative;
    top: 6px;
    display: block;
    content: "";
    height: 2px;
    background: #EE9024;
    transition: 0.1s all;
  }
  .global-nav-button.open .global-nav-button-icon {
    background: transparent;
  }
  .global-nav-button.open .global-nav-button-icon::before {
    top: -6px;
    transform: translateY(6px) rotate(45deg);
  }
  .global-nav-button.open .global-nav-button-icon::after {
    top: 3px;
    transform: translateY(-5px) rotate(-45deg);
  }
  .global-nav-contact {
    width: 600px;
    margin: 40px auto 0;
    font-size: 1.1rem;
    line-height: 2.0em;
    background-color: #FFF;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
  }
  .global-nav-contact a{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    color: #E45A5A;
    font-size: 3.0rem;
    line-height: 1.0em;
  }
  .global-nav-contact a img{
    width: 23px;
    margin-right: 5px;
  }
}
@media (max-width: 768px) {
  .global-nav-contact {
    width: 90%;
  }
}
.is-current{
  color: #E45A5A;
  font-weight: 700;
}

/*トップ用ナビ*/
/** PC 用 */
@media (min-width: 1101px) {
  /** グローバルナビリスト (1階層目) */
  .index-nav-item-list {
    display: flex;
    /*justify-content: center;*/
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }
  /** グローバルナビ項目 (1階層目) */
  .index-nav-item {
    width: calc(100%/4);
    border-right: 1px dotted #CCCCCC;
  }
  .index-nav-item:last-child {
    border-right: none;
  }
  .index-nav-item a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .index-nav-item img{
    width: 40px;
    margin-bottom: 5px;
  }
  .index-nav-item p{
    width: 100%;
  }
  .index-nav-item > a {
    /*display: block;*/
    width: 100%;
    /*padding: 25px 10px 10px;*/
    text-align: center;
    text-decoration: none;
    line-height: 1.8em;
    /*transform: rotate(0.05deg);*/
  }
  .index-nav-item > a:hover {
    color: #E45A5A;
    opacity: 1;
  }
  .index-nav-item:hover > a::after {
    opacity: 1;
  }
  .index-nav-contact {
    margin-left: 10px;
    font-size: 1.1rem;
    line-height: 2.0em;
  }
  .index-nav-contact a{
    display: flex;
    align-items: flex-end;
    color: #E45A5A;
    font-size: 3.0rem;
    line-height: 1.0em;
  }
  .index-nav-contact a img{
    width: 23px;
    margin-right: 5px;
  }
  .index-nav-sub-item{
    display: none;
  }
  /** グローバルナビリスト (2階層目) */
  /** グローバルナビ項目 (2階層目) */
}
/** スマホ 用 */
@media (max-width: 1100px) {
  /** グローバルナビリスト (1階層目) */
  .index-nav-item-list {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 100%;
    margin: auto;
    overflow: auto;
    z-index: 100;
    /*background: rgba(255, 255, 255, 0.95);*/
    background: rgba(255,255,255,0.96);
    transition: 0.2s all;
    pointer-events: none;
  }
  .index-nav.open .index-nav-item-list {
    left: 0;
    pointer-events: all;
    padding-top: 60px;
  }
  /** グローバルナビ項目 (1階層目, 2階層目) のリンク */
  .index-nav-item img {
    width: 23px;
    margin-right: 8px;
  }
  .index-nav-item a {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    padding: 10px 30px;
    text-decoration: none;
    /*transform: rotate(0.05deg);*/
    transition: 0.5s all;
  }
  .index-nav-item a:hover {
    background: #EEC624;
  }
/*
  .index-nav-item > a::before, .index-nav-sub-item-list.open a::before {
    box-sizing: border-box;
    content: "";
    display: block;
    margin-right: 10px;
    width: 10px;
    height: 10px;
    border: solid #EE9024;
    border-width: 0 3px 3px 0;
    transform-origin: center;
    transform: translateX(-25%) rotate(-45deg);
    transition: 0.2s all;
  }
  .index-nav-item > a.open::before {
    transform: translate(-25%, -2.5px) rotate(45deg);
  }
*/
  .index-nav-sub-item{
    display: block;
  }
  .index-nav-sub-item a {
    padding-left: 50px;
    color: #FFF;
  }
  /** トグルボタン */
  .index-nav-button {
    box-sizing: border-box;
    position: fixed;
    top: 12px;
    right: 10px;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    background: #FFF;
    z-index: 101;
    cursor: pointer;
  }
  .index-nav-button-icon {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: calc(100% - 18px);
    height: 2px;
    margin-left: 9px;
    background: #EE9024;
    z-index: 100;
  }
  .index-nav-button-icon::before {
    position: relative;
    top: -8px;
    display: block;
    content: "";
    height: 2px;
    background: #EE9024;
    transition: 0.1s all;
  }
  .index-nav-button-icon::after {
    position: relative;
    top: 6px;
    display: block;
    content: "";
    height: 2px;
    background: #EE9024;
    transition: 0.1s all;
  }
  .index-nav-button.open .index-nav-button-icon {
    background: transparent;
  }
  .index-nav-button.open .index-nav-button-icon::before {
    top: -6px;
    transform: translateY(6px) rotate(45deg);
  }
  .index-nav-button.open .index-nav-button-icon::after {
    top: 3px;
    transform: translateY(-5px) rotate(-45deg);
  }
  .index-nav-contact {
    width: 600px;
    margin: 40px auto 0;
    font-size: 1.1rem;
    line-height: 2.0em;
    background-color: #FFF;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
  }
  .index-nav-contact a{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    color: #E45A5A;
    font-size: 3.0rem;
    line-height: 1.0em;
  }
  .index-nav-contact a img{
    width: 23px;
    margin-right: 5px;
  }
}
@media (max-width: 768px) {
  .index-nav-contact {
    width: 90%;
  }
}
/*============
side-nav
=============*/
.side-box-inner-tel {
  display: block;
  position: fixed;
  bottom: 250px;
  right: -500px;
  width: 500px;
  height: 275px;
  background: #ffffff;
  /*overflow-x: hidden;
  overflow-y: auto;*/
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
  padding: 15px;
  box-sizing: border-box;
  z-index: 100;
}
.open-tel .side-box-inner-tel {
  right: 0;
  opacity: 1;
}
.side-box-inner-tel .inner {
  padding: 25px;
}
.side-box-inner-tel .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.side-box-inner-tel .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
.side-box-inner-tel .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
.side-box-inner-tel .inner ul li a:hover {
  background: #e4e4e4;
}
.side-box-inner-tel .icon-area{
  display: flex;
}
.side-box-inner-tel .icon-area img{
  width: 10px;
  margin-right: 3px;
}
@media screen and (max-width: 767px) {
  .side-box-inner-tel {
    display: block;
    position: fixed;
    bottom: -280.58px;
    right: 0;
    width: 100%;
    height: 250px;
    background: #ffffff;
    /*overflow-x: hidden;
    overflow-y: auto;*/
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 3;
    opacity: 0;
    padding: 15px;
    box-sizing: border-box;
    z-index: 100;
  }
  .open-tel .side-box-inner-tel {
    right: 0;
    bottom: 0;
    opacity: 1;
  }
/*
  .side-box-inner {
    left: -220px;
    width: 220px;
  }
*/
}
@media screen and (max-width: 479px) {
  .side-box-inner-tel {
    display: block;
    position: fixed;
    bottom: -255.31px;
    right: 0;
    width: 100%;
    height: 250px;
    background: #ffffff;
    /*overflow-x: hidden;
    overflow-y: auto;*/
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 3;
    opacity: 0;
    padding: 15px;
    box-sizing: border-box;
    z-index: 100;
  }
  .open-tel .side-box-inner-tel {
    right: 0;
    bottom: 0;
    opacity: 1;
  }
/*
  .side-box-inner {
    left: -220px;
    width: 220px;
  }
*/
}

.side-box-inner-tel  {
  text-align: center;
}
.side-box-inner-tel a {
  font-weight: 500;
  font-size: 5.0rem;
  line-height: 1.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FE9216;
}
.side-box-inner-tel img {
  margin-top: 5px;
  width: 35px;
  margin-right: 5px;
}
.side-box-inner-tel .info  {
  display: inline-block;
  text-align: left;
  padding: 15px;
  margin-top: 1em;
  font-size: 1.4rem;
  background-color: #FEF1E2;
}
.side-box-inner-tel .tel-area-time span {
  font-size: 1.2rem;
  margin-right: 8px;
  padding: 2px 8px;
  background-color: #FE9216;
  color: #FFF;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .side-box-inner-tel  {
    text-align: center;
  }
  .side-box-inner-tel a {
    font-size: 3.4rem;
  }
  .side-box-inner-tel img {
    width: 22px;
    margin-top: 3px;
  }
}
@media screen and (max-width: 480px) {
}

/*============
side-nav
=============*/
.side-box-inner {
  display: block;
  position: fixed;
  bottom: 250px;
  right: -500px;
  width: 500px;
  height: auto;
  background: #ffffff;
  /*overflow-x: hidden;
  overflow-y: auto;*/
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
  padding: 15px;
  box-sizing: border-box;
}
.open .side-box-inner {
  right: 0;
  opacity: 1;
}
.side-box-inner .inner {
  padding: 25px;
}
.side-box-inner .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.side-box-inner .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
.side-box-inner .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
.side-box-inner .inner ul li a:hover {
  background: #e4e4e4;
}
.side-box-inner .icon-area{
  display: flex;
}
.side-box-inner .icon-area img{
  width: 10px;
  margin-right: 3px;
}
@media screen and (max-width: 767px) {
  .side-box-inner {
    display: block;
    position: fixed;
    bottom: -280.58px;
    right: 0;
    width: 100%;
    height: auto;
    background: #ffffff;
    /*overflow-x: hidden;
    overflow-y: auto;*/
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 3;
    opacity: 0;
    padding: 15px;
    box-sizing: border-box;
    z-index: 100;
  }
  .open .side-box-inner {
    right: 0;
    bottom: 0;
    opacity: 1;
  }
/*
  .side-box-inner {
    left: -220px;
    width: 220px;
  }
*/
}
@media screen and (max-width: 479px) {
  .side-box-inner {
    display: block;
    position: fixed;
    bottom: -255.31px;
    right: 0;
    width: 100%;
    height: auto;
    background: #ffffff;
    /*overflow-x: hidden;
    overflow-y: auto;*/
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 3;
    opacity: 0;
    padding: 15px;
    box-sizing: border-box;
    z-index: 100;
  }
  .open .side-box-inner {
    right: 0;
    bottom: 0;
    opacity: 1;
  }
/*
  .side-box-inner {
    left: -220px;
    width: 220px;
  }
*/
}
.side-box-inner table {
  width: 100%;
  margin-bottom: 10px;
}
.side-box-inner table tr {
  border-bottom: 1px solid #D9D9D9;
}
.side-box-inner table th, .side-box-inner table td {
  font-weight: normal;
  padding: 6px 20px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 1100px) {
  .side-box-inner table th, .side-box-inner table td {
    padding: 6px 15px;
  }
}
@media screen and (max-width: 768px) {
  .side-box-inner table img {
    width: 15px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .side-box-inner table th, .side-box-inner table td {
    padding: 6px 10px;
  }
}
/*============
.toggle_btn
=============*/
.toggle_btn-tel {
  display: block;
  position: fixed;
  bottom: 390px;
  right: 0;
  width: 50px;
  padding: 15px 0;
  text-align: center;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
  background-color: #48A85E;
  color: #fff;
  line-height: 1.2em;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.toggle_btn-tel img{
  width: auto;
  height: 20px;
  margin: 8px auto 0;
}
.open-tel .toggle_btn-tel {
  right: 500px;
}
@media screen and (max-width: 767px) {
  .toggle_btn-tel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 50%;
    padding: 15px 0;
    text-align: center;
    transition: all .5s;
    cursor: pointer;
    line-height: 1.2em;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .toggle_btn-tel img{
    height: 23px;
    margin: 0 0 0 8px;
  }
  .open-tel .toggle_btn-tel {
    bottom: 250px;
    left: 0;
  }
}
@media screen and (max-width: 479px) {
  .open-tel .toggle_btn-tel {
    bottom: 255.31px;
    left: 0;
  }
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  bottom: 250px;
  right: 0;
  width: 50px;
  padding: 15px 0;
  text-align: center;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
  background-color: rgba(0,78,199,1.00);
  color: #fff;
  line-height: 1.2em;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.toggle_btn img{
  width: auto;
  height: 20px;
  margin: 8px auto 0;
}
.open .toggle_btn {
  right: 500px;
}
@media screen and (max-width: 767px) {
  .toggle_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 50%;
    padding: 15px 0;
    text-align: center;
    transition: all .5s;
    cursor: pointer;
    line-height: 1.2em;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .toggle_btn img{
    height: 23px;
    margin: 0 0 0 8px;
  }
  .open .toggle_btn {
    bottom: 280.58px;
    right: 0;
  }
}
@media screen and (max-width: 479px) {
  .open .toggle_btn {
    bottom: 255.31px;
    right: 0;
  }
}
/*============
#mask
=============*/
#mask-tel {
  display: none;
  transition: all .5s;
}
.open-tel #mask-tel {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}
/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}

