@charset "utf-8";

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

div.container {
  margin: 0 auto;
  width: 100%;
  display : relative;
  overflow: hidden;
}

.mp {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 500;
}

.hidden {
  display: none;
}


/*----- 各種リンク先 -----*/
.slink,
.clink {
  display: block;
  width: 100%;
  height: 0;
  margin: -50px auto 0;
  padding-top: 50px;
}

@media screen and (min-width:960px) {
.slink,
.clink {
  padding-top: 110px;
  margin-top: -110px;
}
}/*-- 960px --*/


/*----- header -----*/
header {
  display: block;
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
  background-color: rgb(255,255,255);
  z-index: 101;
}

.logo {
  position: absolute;
  display: block;
  left: 5%;
  top: 12px;
  width: 130px;
  z-index: 13;
}

.logo a img.smp {
  display: block;
  width:100%;
}

.logo a img.pc {
  display: none;
}

/*--- hum-menu ---*/
.humMenu {
  position: absolute;
  right: 0;
  top: 0;
  display:block;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 15;
}

.menuTrigger,
.menuTrigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menuTrigger {
  position: relative;
  width: 50px;
  height: 50px;
}

.menuTrigger span {
  position: absolute;
  left: 20%;
  width: 60%;
  height: 4px;
  background-color: rgb(255,120,40);
  border-radius: 2px;
}

.menuTrigger span:nth-of-type(1){
   top:12px;
}

.menuTrigger span:nth-of-type(2){
   top: 22.5px;
}

.menuTrigger span:nth-of-type(3){
   bottom: 12px;
}

.menuTrigger.active span:nth-of-type(1){
  -webkit-transform: translateY(11.5px) rotate(-45deg);
  transform: translateY(11.5px) rotate(-45deg);
}

.menuTrigger.active span:nth-of-type(2){
  opacity: 0;
}

.menuTrigger.active span:nth-of-type(3){
  -webkit-transform: translateY(-11.5px) rotate(45deg);
  transform: translateY(-11.5px) rotate(45deg);
}

.menuTrigger.sport span:nth-of-type(1){
  -webkit-transform: translateY(11.5px) rotate(-45deg);
  transform: translateY(11.5px) rotate(-45deg);
}

.menuTrigger.sport span:nth-of-type(2){
  opacity: 0;
}

.menuTrigger.sport span:nth-of-type(3){
  -webkit-transform: translateY(-11.5px) rotate(45deg);
  transform: translateY(-11.5px) rotate(45deg);
}

/*--- menu-boad ---*/
.menu-bord {
  position: absolute;
  top: 50px;
  left: -100%;
  padding: 2em 15% 2em;
  width: 100%;
  box-sizing: border-box;
  z-index: 15;
}

.m-list {
  border-bottom: solid 2px rgb(255,120,40);
  padding-top: 15px;
  padding-bottom: 15px;
}

.m-list a {
  position: relative;
  display: block;
  padding: 0.3em 0 0.3em 0.3em;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 3px;
  text-align: left;
  text-decoration: none;
  color: rgb(255,120,40);
}

.m-list a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 0.4em;
  font-size: 0.8em;
  font-weight: 700;
  transform: translateY(-50%);
  color: rgb(255,120,40);
}

.overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: 13;
  background-color: rgb(255,255,255);
}

header p.lead {
  display: none;
}

header .contact {
  display: none;
}

header .tel {
  display: none;
}

header .pc-menus {
  display: none;
}

@media screen and (min-width:960px) {
header {
  height: 110px;
}

.logo {
  top: 18px;
  width: 270px;
}

.logo a img.smp {
  display: none;
}

.logo a img.pc {
  display: block;
  width: 100%;
}

header p.lead {
  display: block;
  position: absolute;
  bottom: 14px;
  left: 5%;
  font-size: 12px;
  font-weight: 500;
}

.humMenu {
  display: none;
}

header .contact {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 110px;
  background-color: rgb(255,120,40);
  transition: 0.5s;
}

header .contact a {
  padding-top: 28px;
  width: 100%;
  height: 100%;
}

header .contact img.mailic {
  width: 25px;
  margin: 0 auto 10px;
  transition: 0.5s;
}

header .contact:hover img.mailic {
  transform: rotate(360deg);
}

header .contact p.con {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1em;
  text-align: center;
  color: rgb(255,255,255);
}

header .tel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 5px;
  right: 125px;
}

header .tel .icons {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: rgb(255,120,40);
}

header .tel .icons img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
}

header .tel p {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1em;
  color: rgb(255,120,40);
}

header .pc-menus {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 150px;
}

header .pc-menu {
  position: relative;
  width: 110px;
  height: 60px;
  border-bottom: 5px solid rgb(255,255,255);
  transition: 0.4s;
}

header .pc-menu:hover {
  border-bottom: 5px solid rgb(255,120,40);
}

header .pc-menu::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 2px;
  height: 30px;
  background-color: rgb(205,205,205);
}

header .pc-menu:last-of-type::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 2px;
  height: 30px;
  background-color: rgb(205,205,205);
}

header .pc-menu img {
  width: 20px;
  margin: 0 auto;
}

header .pc-menu p {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}
}/*-- 960px --*/

@media screen and (min-width:1160px) {
header .pc-menu {
  width: 130px;
}
}/*-- 1160px --*/

@media screen and (min-width:1360px) {
header .contact {
  width: 130px;
}

header .tel {
  right: 150px;
}

header .pc-menus {
  right: 190px;
}

header .pc-menu {
  width: 160px;
}
}/*-- 1360px --*/
