@charset "UTF-8";
/* ===================================================================
CSS information
 file name  :  common.css
 style info :  サイト全体共通css
=================================================================== */
/*----------------------------------------------------------------------------------
		 								body、リンク色etc
------------------------------------------------------------------------------------*/
/* pc sp */
@media only screen and (min-width: 1200px) {
  .pc {
    display: block;
  }
  .sp {
    display: none !important;
  }
}
.pc {
  display: block;
}

.sp {
  display: none;
}

@media only screen and (min-width: 851px) and (max-width: 1149px) {
  .pc {
    display: block;
  }
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 850px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
}
/* pc sp txt*/
.pcTxt {
  display: block;
}

@media only screen and (max-width: 850px) {
  .pcTxt {
    display: inline;
  }
  .spTxt {
    display: block;
  }
}
/* style */
.fw-b {
  font-weight: 500;
}

.ta-c {
  text-align: center !important;
}

/* 基本リンク色 */
a {
  text-decoration: none;
  cursor: pointer;
  color: #000;
  transition: all 0.5s ease;
}

a:hover {
  opacity: 0.65;
  transition: all 0.5s ease;
  cursor: pointer;
}
@media only screen and (max-width: 850px) {
  a:hover {
    opacity: 1;
  }
}

body {
  box-sizing: border-box;
  color: #000;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  overflow: hidden;
  webkit-font-smoothing: antialiased;
}
body div {
  box-sizing: border-box;
}

@media only screen and (min-width: 1200px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
#pagetop {
  position: fixed;
  z-index: 10;
  right: 3%;
  bottom: 50px;
  width: 40px;
}
@media only screen and (min-width: 851px) and (max-width: 1149px) {
  #pagetop {
    right: 3%;
  }
}
@media only screen and (max-width: 850px) {
  #pagetop {
    right: 3%;
  }
}
#pagetop img {
  width: 100%;
}

img {
  pointer-events: none;
}

a img {
  pointer-events: auto;
}

main {
  padding-top: 80px;
}
@media only screen and (max-width: 850px) {
  main {
    padding-top: 60px;
  }
}

.home main {
  padding-top: 0;
}

/*----------------------------------------------------------------------------------
		 								header 
------------------------------------------------------------------------------------*/
#header {
  box-sizing: border-box;
  position: fixed;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 98;
  width: 100%;
  height: 80px;
  background-color: #000;
}
@media only screen and (max-width: 850px) {
  #header {
    height: 60px;
  }
}
#header .header_logo {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  margin: auto;
  width: 50px;
  height: 29px;
  margin: auto;
  line-height: 1;
}
@media only screen and (max-width: 850px) {
  #header .header_logo {
    left: 20px;
  }
}
#header .header_logo .header_logo_top {
  display: inline-block;
  line-height: 0;
}
#header .header_logo img {
  width: 100%;
  height: auto;
}
#header .globalNav {
  display: flex;
  margin-right: 50px;
}
@media only screen and (max-width: 850px) {
  #header .globalNav {
    display: block;
    text-align: center;
    margin-right: 0;
  }
}
#header .globalNav li {
  margin: 15px;
  font-family: "Crimson Text", serif;
  font-size: 20px;
  cursor: pointer;
}
@media only screen and (max-width: 850px) {
  #header .globalNav li {
    font-size: 20px;
    text-align: center;
  }
  #header .globalNav li + li {
    margin-top: 30px;
  }
}
#header .globalNav li a {
  position: relative;
  color: #fff;
}
#header .globalNav li a::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  bottom: -8px;
  left: 0;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#header .globalNav li a:hover {
  opacity: 1;
}
#header .globalNav li a:hover::after {
  transform: scale(1, 1);
}

.header_logo_scroll {
  display: none;
}

.menuBar.scroll {
  height: 80px !important;
  background-color: #000 !important;
}
@media only screen and (max-width: 850px) {
  .menuBar.scroll {
    height: 50px !important;
  }
}
.menuBar.scroll .header_logo_top {
  display: none !important;
}
.menuBar.scroll .header_logo_scroll {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px;
  margin: auto;
  display: inline-block;
  width: 53px;
  height: 31px;
}
@media only screen and (max-width: 850px) {
  .menuBar.scroll .header_logo_scroll {
    left: 20px;
    width: 33px;
    height: 28px;
  }
}
.menuBar.scroll .header_logo_scroll img {
  width: 100%;
}

.header_logo_menu {
  width: 100px;
  margin: 0 auto 60px;
}
.header_logo_menu img {
  width: 100%;
}

.home #header {
  background-color: transparent;
}

/*----------------------------------------------------------------------------------
		 								footer 
------------------------------------------------------------------------------------*/
#footer {
  position: relative;
  z-index: 3;
  background-color: #000;
  padding: 60px 0 20px;
  text-align: center;
}
#footer .footer_logo {
  width: 80px;
  margin: 0 auto 60px;
}
#footer .footer_logo img {
  width: 100%;
}
#footer .globalNav {
  display: inline-flex;
  margin: 0 25px;
}
@media only screen and (max-width: 850px) {
  #footer .globalNav {
    display: block;
  }
}
#footer .globalNav li {
  margin: 10px;
  font-family: "Crimson Text", serif;
  font-size: 20px;
  text-align: right;
  cursor: pointer;
}
@media only screen and (max-width: 850px) {
  #footer .globalNav li {
    margin: 0 0 25px;
    font-size: 16px;
    text-align: center;
  }
}
#footer .globalNav li a {
  color: #fff;
}
#footer .footer_bottom {
  margin-top: 120px;
  text-align: center;
}
@media only screen and (max-width: 850px) {
  #footer .footer_bottom {
    margin-top: 60px;
  }
}
#footer .footer_bottom .privacy-policy {
  font-family: "Crimson Text", serif;
  font-size: 16px;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 850px) {
  #footer .footer_bottom .privacy-policy {
    font-size: 12px;
  }
}
#footer .footer_bottom .privacy-policy a {
  color: #fff;
}
#footer .footer_bottom .copyRight {
  margin-top: 20px;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 850px) {
  #footer .footer_bottom .copyRight {
    margin-top: 30px;
    font-size: 10px;
  }
}
#footer .footer_bottom .copyRight sub {
  position: relative;
  top: -2px;
  font-size: 14px;
}/*# sourceMappingURL=common.css.map */