@charset "UTF-8";

/* -------------------------------------------------
主に基本設定とヘッダーフッター関連のみ残してあります
------------------------------------------------- */

html {
  font-size: 100%;
}
body {
  color: #212529;
  font-size: 1rem;
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
}
a {
  color: #212529;
  text-decoration: none;
  transition: ease 0.3s;
}
a:hover {
  opacity: 0.7;
}
a.blue:link{ color:#0033FF;}
img {
  max-width: 100%;
}
li {
  list-style: none;
}



.sec-title {
  line-height: 1px;
  margin-bottom: 100px;
  text-align: center;
}
.sec-title .en {
  color: #00a3d2;
  font-size: 1.125rem;
  display: block;
  margin-bottom: 50px;
  letter-spacing: 0.1rem;
  display: flex;
  justify-content: center;
  font-weight: normal;
}
.sec-title .en::before,
.sec-title .en::after {
  content: "";
  background-color: #00a3d2;
  width: 10px;
}
.sec-title .en::before {
  margin-right: 10px;
}
.sec-title .en::after {
  margin-left: 10px;
}
.sec-title .ja {
  line-height: 45px;
  color: #212529;
  font-weight: bold;
  display: block;
  font-size: 2.1rem;
  /* letter-spacing: 0.1rem; */
}
.sec-title .dlc {
  font-size: 1rem;
  display: inline-block;
  margin-top: 20px;
  text-decoration: underline;
  font-weight: normal;
  position: relative;
  line-height: 22px;
}
.sec-title .dlc .br-sp {
  display: none;
}
.sec-title .dlc::before {
  content: "";
  border-top: 10px solid transparent;
  border-right: 10px solid #212529;
  position: absolute;
  top: 6px;
  left: -18px;
  transform: rotate(-45deg);
  transition: ease 0.3s;
}
.wrapper {
  max-width: 1000px;
  padding: 0 16px;
  margin: 0 auto;
}
.more {
  text-align: center;
  margin-top: 80px;
}
.more .btn {
  color: #fff;
  padding: 13px 70px 13px 40px;
  font-size: 1.2rem;
  background-color: #00a3d2;
  border-radius: 40px;
  border: 1px solid #00a3d2;
  position: relative;
}
.more .btn::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 22px;
  right: 35px;
  transition: 0.3s;
}
.more .btn:hover {
  background-color: #fff;
  color: #00a3d2;
}
.more .btn:hover::after {
  border-top: 2px solid #00a3d2;
  border-right: 2px solid #00a3d2;
  transform: rotate(405deg)
}

/* --------------------------------
header
-------------------------------- */
#header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  box-shadow: 0 0 5px rgb(0 0 0 / 10%);
}
#navi {
  height: 40px;
  line-height: 40px;
  background-color: #00a3d2;
}
#navi .menu {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-right: 10%;
}
#navi .menu > li {
  padding: 0 20px;
  position: relative;
}
#navi .menu > li:nth-child(1),
#navi .menu > li:nth-child(3) {
  margin-right: 8px;
} 
#navi .menu li a {
  color: #FFF;
  font-size: 1rem;
  display: block;
  transition: all 0.3s;
  line-height: 40px;
}
#navi .menu li a:hover {
  color: #fff;
}
#navi .menu .n-title {
  cursor: pointer;
  color: #fff;
  transition: ease 0.3s;
}
#navi .menu .n-title:hover {
  opacity: 0.7;
}
#navi .menu li li a {
  padding: 2px 0 2px 10px;
  text-align-last: left;
  font-size: 0.9rem;
  color: #212529;
}
#navi ul li.has-child::before {
	content:'';
	position: absolute;
	left: 6px;
	top: 17px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: ease 0.3s;
  transform: rotate(45deg);
}
#navi ul li.has-child:hover::before {
  transform: rotate(135deg);
  opacity: 0.8;
} 
#navi ul ul li.has-child::before {
	content:'';
	position: absolute;
	left: 6px;
	top: 17px;
	width: 6px;
	height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
#navi li.has-child .sub{
  overflow: hidden;
	position: absolute;
	left: 8px;
	top: 40px;
	z-index: 4;
	background:#fff;
	width:200px;
	transition: all .3s;
  border-radius: 0 0 5px 5px;
  min-height: 0;
  height: 0;
}
#navi li.has-child:hover .sub {
  border: 1px solid #d3d3d3;
}
#navi li.has-child:hover .sub-1{
  min-height: 135px;
}
#navi li.has-child:hover .sub-2 {
  min-height: 90px;
}
#navi li.has-child:hover .sub-3 {
  min-height: 180px;
}
#navi li.has-child:hover .sub-4 {
  min-height: 270px;
}
#navi li.has-child ul li a{
	border-bottom:solid 1px rgba(255,255,255,0.6);
}
#navi li.has-child ul li:last-child a{
	border-bottom:none;
}
#navi li.has-child ul li a:hover,
#navi li.has-child ul li a:active{
	background:#00a3d2;
}

/* header-sp */

#navi-sp {
  display: none;
}
#menu-sp {
  display: none;
}
#header .logo {
  height: 80px;
  padding: 10px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .logo .site-title {
  line-height: 1px;
  width: 140px;
}
#header .logo .site-title a {
  display: block;
}
#header .logo .link {
  display: flex;
  text-align: center;
}
#header .logo .link .support-tel {
  color: #00a3d2;
  /* width: 70%; */
}
#header .logo .link .support-tel .support-tel-title {
  font-size: 0.8rem;
  width: 55%;
  margin-bottom: 2px;
  background-color: #00a3d2;
  color: #FFF;
  padding: 1px 4px 2px;
  margin: 10px 0 5px 35px;
  border-radius: 5px;
}
#header .logo .link .support-tel .tell {
  display: flex;
  align-items: center;
}
#header .logo .link .support-tel .tell .img {
  width: 17%;
}
#header .logo .link .support-tel .tell .tell-number {
  display: inline-block;
  font-size: 1.4rem;
  padding: 0 12px 0 3px;
  font-weight: 500;
}
#header .logo .link .support-tel .tel {
  font-size: 1.5rem;
  font-weight: 500;
}
#header .logo .link .support-tel .tel .phone {
  width: 20px;
  line-height: 30px;
}
#header .logo .link a {
  display: block;
  font-size: 0.7rem;
  padding: 10px 10px 0 15px;
  color: #00a3d2;
}
#header .logo .link img {
  width: 35px;
}



/* ------------------------------------------------------------------
tb
------------------------------------------------------------------ */

/* --------------------------------
to-top
-------------------------------- */
#to-top {
  position: fixed;
  right: 30px;
  bottom: 50px;
  font-size: 3rem;
  color: #00a3d2;
  z-index: 30;
}
#to-top .fa-solid {
  text-shadow: #fff 3px 3px 0, #fff -3px -3px 0, #fff -3px 3px 0, #fff 3px -3px 0, #fff 0px 3px 0, #fff 0 -3px 0, #fff -3px 0 0, #fff 3px 0 0;
}

/* --------------------------------
footer
-------------------------------- */
#footer {
  background-color: #fff;
  padding-bottom: 25px;
}
#footer .footer-menu {
  background-color: #00a3d2;
  color: #fff;
  padding: 80px 0;
}
#footer .footer-menu .inner {
  display: flex;
  justify-content: space-between;
}
#footer .footer-menu .inner .menu .title {
  margin-bottom: 20px;
}
#footer .footer-menu .inner .menu .title::before {
  content: "＞";
  display: inline-block;
  margin-right: 5px;
}
#footer .footer-menu .inner .inner-menu li {
  margin-bottom: 20px;
  font-size: 0.9rem;
}
#footer .footer-menu .inner .inner-menu .fa-brands {
  margin-right: 10px;
  font-size: 1.4rem;
}
#footer .footer-menu .inner .inner-menu li::before {
  content: "-";
  display: inline-block;
  margin-right: 5px;
}
#footer .footer-menu .inner a {
  color: #fff;
}
#footer .adress {
  margin-left: 10%;
  padding: 30px 0;
  display: flex;
  align-items: flex-start;
}
#footer .adress .logo {
  width: 110px;
  margin-right: 50px;
  object-fit: contain;
  object-position: center;
}
#footer .adress .loca .text {
  margin-bottom: 8px;
}
#footer .adress .loca span {
  margin-right: 10px;
}
#footer .br {
  display: none;
}
#footer .copy {
  display: flex;
  margin-left: 10%;
}
#footer .copy li {
  margin-right: 40px;
  font-size: 0.8rem;
}
.footer-menu-sp {
  display: none;
}

/* --------------------------------
tb
-------------------------------- */
@media screen and (max-width: 1024px) {
  
  /* --------------------------------
  header
  -------------------------------- */
  #navi .menu {
    margin-right: 5%;
  }
  #header .logo {
    padding: 10px 5%;
  }



  /* --------------------------------
  to-top
  
  #to-top {
    bottom: 120px;
  }
  -------------------------------- */

  /* --------------------------------
  footer
  -------------------------------- */
  #footer {
    /* margin-bottom: 150px; */
    padding-bottom: 150px;
  }
}

/* --------------------------------
sp
-------------------------------- */
@media screen and (max-width: 799px) {
  .sec-title {
    line-height: 1px;
    margin-bottom: 60px;
  }
  .sec-title .en {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  .sec-title .ja {
    font-size: 1.5rem;
    line-height: 40px;
  }
  .sec-title .dlc .br-sp {
    display: block;
  }
  .more {
    margin-top: 60px;
  }
  .more .btn {
    padding: 10px 50px 10px 30px;
    font-size: 1rem;
  }
  .more .btn::after {
    content: "";
    width: 10px;
    height: 10px;
    top: 16px;
    right: 28px;
    transition: 0.3s;
  }
  .more .btn:hover {
    background-color: #fff;
    color: #00a3d2;
  }
  .more .btn:hover::after {
    border-top: 2px solid #00a3d2;
    border-right: 2px solid #00a3d2;
    transform: rotate(405deg)
  }



  /* --------------------------------
  header
  -------------------------------- */
  #header {
    height: 60px;
  }
  #header .logo {
    display: none;
  }
  #header #navi {
    display: none;
  }
  #header #navi-sp {
    display: block;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px 0 16px;
  }
  #header #navi-sp .support-tel {
    color: #00a3d2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 10px;
    text-align: right;
  }
  #header #navi-sp .support-tel span {
    display: none;
    font-size: 0.4rem;
    /* display: inline-block; */
    margin-bottom: 0px;
    background-color: #00a3d2;
    color: #FFF;
    padding: 1px 4px 2px;
    border-radius: 5px;
  }
  #header #navi-sp .support-tel .sp-tel {
    display: flex;
  }
  #header #navi-sp .support-tel .tel {
    font-size: 1.2rem;
    font-weight: 500;
    color: #00a3d2;
    display: inline-block;
  }
  #header #navi-sp .support-tel .mail {
    font-size: 0.9rem;
    font-weight: 400;
    color: #00a3d2;
    display: inline-block;
  }
  #header #navi-sp .support-tel img {
    width: 5%;
    /* display: inline-block; */
  }
  #header #navi-sp .site-title {
    width: 110px;
    margin-top: 7px;
    line-height: 1;
  }
  #header #navi-sp .site-title a {
    display: block;
  }
  #header #navi-sp .logo-sp {
    display: flex;
    align-items: center;
  }
  #header #navi-sp .logo-sp .store {
    width: 40px;
    margin-right: 5px;
  }
  #header #navi-sp .business {
    width: 40px;
    margin-right: 0;
  }

/* header-hamburger */

  input[type="checkbox"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
  }
  
  .hamburger {
    width: 60px;
    height: 60px;
    display: block;
    background-color: #00a3d2;
    position: fixed;
    top: 0;
    right: 0;
    cursor: pointer;
    transition: 0.5s;
    z-index: 20;
  }
  #navi-sp input[type="checkbox"]:checked + .hamburger {
    background-color: #fff;
  }
  .hamburger span {
    width: 35px;
    height: 2px;
    border-radius: 4px;
    background-color: #fff;
    position: absolute;
    left: 12px;
    transition: 0.5s;
  }
  #header .hamburger span:nth-child(1) {
    top: 19px;
  }
  #header .hamburger span:nth-child(2) {
    top: 30px;
  }
  #header .hamburger span:nth-child(3) {
    bottom: 17px;
  }
  #navi-sp input[type="checkbox"]:checked + .hamburger span:nth-child(1) {
    transform: translateY(11px) rotate(-315deg);
    background-color: #00a3d2;
  }
  #navi-sp input[type="checkbox"]:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }
  #navi-sp input[type="checkbox"]:checked + .hamburger span:nth-child(3) {
    transform: translateY(-11px) rotate(315deg);
    background-color: #00a3d2;
  }

/* header-hamburger-menu */

  #navi-sp .menu {
    color: #000;
    display: block;
    width: 295px;
    background-color: #fff;
    padding: 30px;
    position: fixed;
    top: 0;
    left: -280px;
    bottom: 0;
    opacity: 0;
    overflow-y: auto;
    z-index: 20;
    transition: 0.5s;
  }
  #navi-sp input[type="checkbox"]:checked ~ .menu {
    left: 0;
    opacity: 1;
    /* font-size: 0.9rem; */
  }
  #navi-sp .menu > li {
    margin-bottom: 21px;
  }
  #navi-sp .menu li ul li {
    margin-bottom: 5px;
    font-size: 0.9rem;
  }
  #navi-sp .menu .support-menu {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  #navi-sp li a {
    color: #000;
  }
  /*
  #navi-sp .menu {
    margin-bottom: 40px;
  }
  */
  #navi-sp .menu .title {
    margin: 15px 0 10px;
  }
  #navi-sp .menu .support li::before,
  #navi-sp .menu .company li::before, 
  #navi-sp .menu .recruit li::before {
    content: "-";
    margin: 0 5px 0 2px;
  }
  #navi-sp .shop li {
    margin-bottom: 10px;
  } 

/* header-hamburger-mask */

  #mask {
    display: none;
  }
  #navi-sp input[type="checkbox"]:checked ~ #mask {
    width: 100%;
    height: 100%;
    background-color: #000;
    cursor: pointer;
    display: block;
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }



  /* --------------------------------
  footer
  -------------------------------- */ 
  #footer {
    padding-bottom: 100px;
  }
  #footer .footer-menu .inner {
    flex-direction: column;
  }
  #footer .footer-menu {
    display: none;
  }
  #footer .adress {
    flex-direction: column;
    margin: 0 0 15px 16px;
    padding: 40px 0 0 0;
  }
  #footer .adress .loca p {
    line-height: 25px;
  }
  #footer .text {
    margin-top: 15px;
  }
  #footer .slash {
    display: none;
  }
  #footer .br {
    display: block;
  }
  #footer .copy {
    flex-direction: column;
    margin-left: 16px;
  }
  #footer .copy li {
    margin-bottom: 8px;
  }

  /*===================================
  アコーディオン
  ===================================*/
  .footer-menu-sp {
    padding: 0 10px;
    background-color: #00a3d2;
    display: block;
  }
  .footer-menu-sp .accordion-area{
    list-style: none;
    margin:0 auto;
    color: #fff;
  }
  .footer-menu-sp .accordion-area section {
    border-bottom: 1px solid #ccc;
  }
  .footer-menu-sp .acd-title {
    display: block;
    position: relative;
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 20px 15px 20px 50px;
    transition: all .5s ease;
  }
  .footer-menu-sp .acd-title::before,
  .footer-menu-sp .acd-title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #fff;    
  }
  .footer-menu-sp .acd-title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
  }
  .footer-menu-sp .acd-title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);
  }
  input[type="checkbox"]:checked + .acd-title::before{
    transform: rotate(45deg);
  }
  input[type="checkbox"]:checked + .acd-title::after{
    transform: rotate(-45deg);
  }

  /* acd-box */

  .footer-menu-sp .box {
    display: none;
    background: #00a3d2;
    margin:0 12px 0 12px;
    padding: 0 15px 15px 15px;
  }
  input[type="checkbox"]:checked ~ .box{
    display: block;
  }
  .footer-menu-sp .box .menu .item {
    margin-bottom: 7px;
    color: #00a3d2;
  }
  .footer-menu-sp .box .menu .item:last-child {
    margin-bottom: 0;
  }
  .footer-menu-sp .box .menu .item a {
    color: #fff;
  }
  .footer-menu-sp .box .menu .item a::before {
    content: "-";
    margin-right: 3px;
  }

}

/* --------------------------------
s-sp
-------------------------------- */
@media screen and (max-width: 499px) {
  #navi-sp .store,
  #navi-sp .business {
    display: none;
  }
  #header #navi-sp .support-tel {
    margin-right: 0px;
  }
  #header #navi-sp .support-tel span {
    font-size: 0.4rem;
  }
  #header #navi-sp .support-tel .tel {
    font-size: 1.1rem;
  }
  #header #navi-sp {
    padding: 0 68px 0 10px
  }
}