* {
  font-family: 'Noto Sans JP', sans-serif;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1280px;
}

._inner {
  max-width: 80%;
  margin: 0 auto;
}

.bg-primary { background-color: #3573b5!important; }
.color-primary { color: #3573b5!important; }
.btn-primary, .badge-primary {
  background-color: #3573b5!important;
  border-color: #3573b5!important;
}

.btn-primary:hover {
  background-color: #fff!important;
  color: #3573b5;
}

.btn-outline-primary {
  color: #3573b5;
  border-color: #3573b5;
}

.btn-outline-primary:hover {
  background-color: #3573b5;
  color: #fff;
}

.color-white { color: #fff; }
.btn-outline-white {
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover {
  background-color: #3573b5;
  color: #fff;
  border-color: #3573b5!important;
}

.bg-danger { background-color: #851218!important; }
.color-danger { color: #851218!important; }
.border-danger { border-color: #851218!important; }



.py-6 {
  padding-top: 4rem!important;
  padding-bottom: 4rem!important;
}

.py-7 {
  padding-top: 5rem!important;
  padding-bottom: 5rem!important;
}


/*
 * text
*/
.text.text-1 {
  font-weight: bold;
  font-size: 1.2rem;
}

.text.text-2 {
  font-weight: bold;
  font-size: 1.5rem;
}

.text.text-3 {
  font-weight: bold;
  font-size: 0.8rem;
}

.text.text-4 {
  font-weight: bold;
  font-size: 2rem;
}

.text-bold { font-weight: bold; }

.fs-7 { font-size: 0.8rem; }
.fs-8 { font-size: 0.7rem; }
.fs-9 { font-size: 0.6rem; }
.fs-10 { font-size: 0.5rem; }

.ttl_1 span {
  display: block;
  font-size: 0.8rem;
  padding-top: 2rem;
}

/* content */
.ttl span:nth-child(1) {
  border-left: 3px solid #3573b5;
  padding-left: 15px;
  letter-spacing: 0.1rem;
}

.ttl span:nth-child(2) {
  font-size: 0.5rem;
  display: block;
  padding-top: 10px;
  padding-left: 20px;
  letter-spacing: 0.1rem;
}

ul.list_01 {
  list-style: none;
}

ul.list_01 li {
  padding: 5px 0;
}

ul.list_01 li span{
  color: #3573b5;
  font-weight: bold;
}

header nav a {
  text-decoration: none;
  color: #000;
  display: inline-block;
  padding: 0 20px;
  font-weight: bold;
  height: 100%;
  display: flex;
  align-items: center;
}

header nav a:last-child {
}

header nav a.contact {
  background: #3573b5;
  color: #fff;
  padding: 0 40px;
}

#kv.sasshi { background: url("../img/bg_kv_sasshi.png"); }
#kv.glass { background: url("../img/bg_kv_glass.png"); }
#kv.company { background: url("../img/bg_kv_company.png"); }

#kv h1 {
  padding: 7vw 5vw;
  color: #fff;
}

#kv h1 span {
  display: block;
  font-size: 1rem;
  color: #3573b5;
}

#contact {
  background: #f5f5f5;
}

.dl-odd dl:nth-child(even) {
  background: #f5f5f5;
}

.bg_btn_sasshi { background: url("../img/bg_btn_sassi.png"); background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
.bg_btn_glass { background: url("../img/bg_btn_glass.png"); background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }


.menu-btn {
    position: fixed;
    top: 0px;
    right: 0px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #3573b5;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
#menu-btn-check {
  display: none;
}


.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #3573b5;
}
.menu-content ul {
  padding: 70px 10px 0;
}
.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color:#ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;/*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #3573b5;
  transition: all 0.5s;/*アニメーション設定*/
}
.menu-content ul {
  padding: 70px 10px 0;
}
.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color:#ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

#menu-btn-check:checked ~ .menu-content {
  left: 0;/*メニューを画面内へ*/
}

.sp-menu {
  display: none;
}
@media only screen and (max-width: 768px) {
  ._inner {
    max-width: 95%;
  }

  .sp-menu {
    display: block;
  }

  header nav {
    display: none !important;
  }
  
  header h1.logo {
    padding: 10px;
  }

  .badge {
    white-space: normal;
  }

  .container {
    padding: 0;
  }

  #insta {
    margin-top: 0 !important;
  }

  h4 {
    font-size: 1rem;
  }

  .text.text-2 {
    font-weight: bold;
    font-size: 0.75rem;
  }

  .ttl-3 {
    font-size: 1.1rem;
  }
}