@charset "utf-8";
/*--------------------------------------------------------------
>>> Common Setting:
--------------------------------------------------------------*/
/**
 * Common Setting for All Device
 **/
html {
  font-size: 10px;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
  letter-spacing: 0.1em;
  word-break: normal;
  text-align: justify;
}
main {
  display: block;
}
address {
  font-style: normal;
}
iframe {
  vertical-align: bottom;
}
img {
  vertical-align: bottom;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
img[ src$=".svg"] {
  max-width: 100%;
  height: auto;
}
/**
 * Common Setting for PC
 **/
@media only screen and (min-width: 1025px) {
  main {
    padding-top: 70px;
  }
}
/**
 * Common Setting for SP
 **/
@media only screen and (max-width: 1024px) {
  body {
    font-size: 1.4rem;
  }
  img {
    width: 100%;
    max-width: 100%;
  }
  main {
    padding-top: 61px;
  }
}
/**
 * Common Setting for SE
 **/
@media only screen and (max-width: 320px) {
  body {
    font-size: 1.2rem;
  }
}
/*--------------------------------------------------------------
>>> Common Class:
--------------------------------------------------------------*/
/**
 * Common Class All Device
 **/
.preload {
  transition: 0 !important;
}
.preload * {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
.of_hidden {
  overflow: hidden;
}
.gothic {
  font-family: 'Noto Sans JP', sans-serif;
}
.mincho {
  font-family: 'Noto Serif JP', serif;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.w10 {
  width: 10%;
}
.w20 {
  width: 20%;
}
.w30 {
  width: 30%;
}
.w40 {
  width: 40%;
}
.w50 {
  width: 50%;
}
.w60 {
  width: 60%;
}
.w70 {
  width: 70%;
}
.w80 {
  width: 80%;
}
.w90 {
  width: 90%;
}
.w100 {
  width: 100%;
}
.fw100 {
  font-weight: 100;
}
.fw200 {
  font-weight: 200;
}
.fw300 {
  font-weight: 300;
}
.fw400 {
  font-weight: 400;
}
.fw500 {
  font-weight: 500;
}
.fw600 {
  font-weight: 600;
}
.fw700 {
  font-weight: 700;
}
.fw900 {
  font-weight: 900;
}
.transition_03 {
  transition: 0.3s;
}
.transition_06 {
  transition: 0.6s;
}
.d-block {
  display: block;
}
.d-inline-block {
  display: inline-block;
}
.d-table {
  display: table;
}
.d-flex {
  display: flex;
}
.d-none {
  display: none;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-indent {
  padding-left: 1em;
  text-indent: -1em;
}
.justify {
  text-align: justify;
  text-justify: inter-ideograph;
}
.obfit {
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
.opacity:hover {
  opacity: 0.8 !important;
  filter: alpha(opacity=80);
  -ms-filter: "alpha( opacity=80 )";
  transition: .6s;
}
.list-unstyled {
  list-style: none;
}
.link {
  margin: 20px 0;
}
.link ul {
  display: flex;
}
.link li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
}
.link li a:hover {
  opacity: 0.8;
}
.link li:nth-child(1) a {
  background: #0000a0;
}
.link li:nth-child(2) a {
  background: #ff00dc;
}
.link li:nth-child(3) a {
  background: #fff000;
  color: #000;
}
.link li a:after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: block;
  width: 17px;
  height: 17px;
  background: url(../images/common/icon_glass_white.svg) 0 0 no-repeat;
  background-size: contain;
}
.link li:nth-child(3) a:after {
  background: url(../images/common/icon_glass_black.svg) 0 0 no-repeat;
  background-size: contain;
}
.att {
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 700;
  padding: 5px;
}
.att_y {
  background: #fff000;
}
.att_r {
  background: #e50012;
  color: #fff;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: url(../images/common/preloader.gif) no-repeat #fff 50%;
  ;
  background-size: 64px 64px;
}
#fNavi {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}
/**
 * Common Class for PC
 **/
@media only screen and (min-width: 1025px) {
  ._pc {
    display: block;
  }
  ._sp {
    display: none;
  }
  ._se {
    display: none;
  }
  .inner {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .hover_line {
    position: relative;
    display: inline-block;
    transition: 0.3s;
  }
  .hover_line::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background-color: #231815;
    opacity: 0;
    transition: 0.3s;
  }
  .hover_line:hover::after {
    opacity: 1;
  }
  .hover_line_center {
    position: relative;
    display: inline-block;
    transition: 0.4s;
  }
  .hover_line_center::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    content: '';
    width: 0;
    height: 1px;
    background-color: #231815;
    transition: 0.4s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .hover_line_center:hover::after {
    width: 100%;
  }
  .link li a {
    width: 375px;
    height: 60px;
  }
  .link li:nth-child(3) a {
    width: 250px;
  }
  .att {
    font-size: 1.2rem;
    text-align: center;
  }
}
/**
 * Common Class for SP
 **/
@media only screen and (max-width: 1024px) {
  ._sp {
    display: block;
  }
  ._pc {
    display: none;
  }
  ._se {
    display: none;
  }
  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  .inner.no-gutter {
    padding-left: 0;
    padding-right: 0;
  }
  .link ul {
    flex-wrap: wrap;
  }
  .link li,
  .link li a {
    width: 50vw;
    height: 45px;
  }
  .link li:nth-child(1),
  .link li:nth-child(1) a {
    width: 100vw;
  }
  .att {
    font-size: 1rem;
  }
}
/**
 * Common Class for SE
 **/
@media only screen and (max-width: 320px) {
  ._se {
    display: block;
  }
  ._pc {
    display: none;
  }
  ._se {
    display: none;
  }
}
/*--------------------------------------------------------------
>>> Header :
--------------------------------------------------------------*/
/**
 * Header All Device
 **/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  width: 100%;
  background: #fff;
  border-bottom: solid 1px #efefef;
  transition: 0.6s;
}
header .logo h1 a {
  display: block;
  width: 288px;
  padding-top: 70px;
  height: 0px;
  overflow: hidden;
  background: url(../images/common/logo.jpg) 0 0 no-repeat;
  background-size: contain;
}
header .menu a {
  text-decoration: none;
  color: #000;
}
/**
 * Header for PC
 **/
@media only screen and (min-width: 1025px) {
  header {
    height: 70px;
    box-sizing: content-box;
  }
  header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .inner {
    align-items: center;
  }
  header .logo .menu-trigger {
    display: none;
  }
  header .menu {
    /*width: 540px;*/
  }
  header .menu ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 540px;
    margin-right: -48px;
  }
  header .menu ul li {
    width: 270px;
    margin-bottom: 3px;
    /* margin-left: 1em; */
    white-space: nowrap;
  }
  /* header .menu ul li:nth-child(5) {
    position: relative;
    left: 0.26em;
  } */
  header .menu ul li a {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}
/**
 * Header for SP
 **/
@media only screen and (max-width: 1024px) {
  header {
    background: #fff;
    padding: 5px 0 5px 10px;
  }
  header .logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    position: relative;
  }
  header .logo h1 a {
    width: calc(288px * 0.7);
    padding-top: calc(70px * 0.7);
    background-size: contain;
    z-index: 1998;
  }
  header .logo .menu-trigger {
    z-index: 1999;
  }
  header .logo .menu-trigger,
  header .logo .menu-trigger span {
    display: inline-block;
    outline: none;
    transition: all 0.4s;
  }
  header .logo .menu-trigger {
    position: relative;
    z-index: 9999;
    width: 60px;
    height: 50px;
    padding: 15px;
  }
  header .logo .menu-trigger span {
    position: absolute;
    left: 15px;
    width: 30px;
    height: 2px;
    background-color: #c9caca;
  }
  header .logo .menu-trigger span:nth-of-type(1) {
    top: 15px;
  }
  header .logo .menu-trigger span:nth-of-type(2) {
    top: 23.5px;
  }
  header .logo .menu-trigger span:nth-of-type(3) {
    bottom: 15px;
  }
  header.open .logo .menu-trigger span:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }
  header.open .logo .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  header.open .logo .menu-trigger span:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }
  header .menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    min-height: 100vh;
    background: #fff;
    padding-top: 65px;
    transition: all 0.6s;
    visibility: hidden;
    opacity: 0;
    z-index: 1999;
    overflow-y: scroll;
    -ms-overflow-style: none;
    /* IE, Edge 対応 */
    scrollbar-width: none;
    /* Firefox 対応 */
  }
  header.open .menu {
    visibility: visible;
    opacity: 1;
  }
  header .menu .menu_logo {
    width: 70%;
    margin: auto;
  }
  header .menu ul {
    width: 100%;
    margin-top: 50px;
    text-align: center;
  }
  header .menu ul li {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: solid 1px #dcdddd;
  }
}
/*--------------------------------------------------------------
>>> Footer :
--------------------------------------------------------------*/
/**
 * Footer All Device
 **/
footer {
  background: #000;
  color: #fff;
  padding-top: 15px;
  /*margin-top: 100px;*/
}
/**
 * Footer for PC
 **/
@media only screen and (min-width: 1025px) {
  footer {
    padding-bottom: 75px;
  }
  footer small,
  footer span {
    font-size: 1.2rem;
  }
}
/**
 * Footer for SP
 **/
@media only screen and (max-width: 1024px) {
  footer {
    padding-bottom: 100px;
  }
  footer small,
  footer span {
    font-size: 1rem;
  }
  footer small,
  footer span {
    text-align: center;
    margin: 5px 0;
  }
}
/**
 * Header for SE
 **/
@media only screen and (max-width: 320px) {}
/*--------------------------------------------------------------
>>> Main :
--------------------------------------------------------------*/
main {
  margin-bottom: 100px;
}
main .banner {
  margin-bottom: 20px;
}
main .contents .box {
  margin-bottom: 20px;
}