@charset "UTF-8";
/* CSS Document */
/* 全共通 */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  color: #000; /* RGB */
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
a {
  text-decoration: none;
  color: inherit;
  display: block;
}
ul {
  list-style: none;
}
input, textarea {
  border: none;
  font-size: 1.6rem;
  padding: 1px 2px;
}
dl {
  font-size: 0;
}
dd, dt {
  font-size: 1.6rem;
}
/* チェックボックスデザイン */
input[type="checkbox"] {
  cursor: pointer;
  padding-right: 30px; /*label手前にチェックボックス用の余白を開ける*/
  vertical-align: middle;
  position: relative;
}
input[type="checkbox"]::before, input[type="checkbox"]::after {
  content: "";
  display: block;
  position: absolute;
}
input[type="checkbox"]::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #848484;
  width: 16px; /*チェックボックスの横幅*/
  height: 16px; /*チェックボックスの縦幅*/
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  top: 50%;
  left: 5px;
}
input[type="button"], input[type="text"], input[type="submit"], input[type="image"], input[type="button"], input[type="checkbox"], textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  border-radius: 0;
}
input:focus, textarea:focus {
  outline: none;
}
input[type="checkbox"]::after {
  border-bottom: 2px solid #fff; /*チェックの太さ*/
  border-left: 2px solid #fff; /*チェックの太さ*/
  opacity: 0; /*チェック前は非表示*/
  height: 7px; /*チェックの高さ*/
  width: 11px; /*チェックの横幅*/
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  bottom: 7px; /*チェック時の位置調整*/
  left: 8px; /*チェック時の位置調整*/
}
_::-webkit-full-page-media, _:future, :root input[type="checkbox"]::after {
  bottom: 5px;
}
input[type="checkbox"]:checked::after {
  opacity: 1; /*チェック後表示*/
}
input[type="checkbox"]:checked::before {
  background-color: #534741; /*チェック後表示*/
}
.normal_400 {
  font-weight: 400;
}
.bold_500 {
  font-weight: 500;
}
.bold_600 {
  font-weight: 600;
}
.bold_700 {
  font-weight: 700;
}
.bold_800 {
  font-weight: 800;
}
.wrapper_600px {
  max-width: 600px;
}
.wrapper_1000px {
  max-width: 1000px;
}
.wrapper_1100px {
  max-width: 1100px;
}
.zen-kaku_font_normal {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
}
.zen-kaku_font_bold {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 900;
}
.br_SP {
  display: none;
}
.br_SP600 {
  display: none;
}
.br_SP767 {
  display: none;
}
@media (max-width: 600px) {
  .br_SP600 {
    display: block
  }
}
@media (max-width: 767px) {
  .br_SP767 {
    display: block;
  }
}
/* pagetop */
.pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 15px;
  z-index: 1000;
}
.pagetop a {
  display: block;
}
.pagetop a img {
  width: 60px;
}
@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 10px;
    right: 10px;
  }
  .pagetop a img {
    width: 50px;
  }
}
/* header */
.header {
  z-index: 100;
  position: sticky;
  top: 0;
}
.header_place {
  position: relative;
  margin-top: -90px;
  padding-top: 90px;
}
.header_place_small {
  margin-top: -15px;
  padding-top: 15px;
  padding-bottom: 38px;
  vertical-align: middle;
  background-color: rgba(208, 202, 186, 0.80);
}
.header_msg {
  width: 100%;
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.01rem;
}
.header_msg_none {
  display: none;
}
.header_logo {
  position: absolute;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  max-width: 125px;
}
.header_logo_small {
  width: 75px;
  top: 10px;
}
.global_nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.global_nav ul {
  display: flex;
  justify-content: center;
}
.global_nav ul li {
  font-size: 1.4rem;
  color: #534741;
  margin-right: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 1px 0;
}
.global_nav ul li:last-child {
  margin-right: 0;
}
.global_nav ul li:hover {
  background-color: rgba(83, 71, 65, 0.8);
}
.global_nav ul li:nth-child(3) {
  margin-right: 112.5px;
}
.global_nav ul li:nth-child(4) {
  margin-left: 112.5px;
}
.global_nav ul li a {
  width: 125px;
}
.global_nav ul li:hover {
  background-color: rgba(83, 71, 65, 0.8);
}
.global_nav ul li a:hover {
  color: #fff;
}
@media (max-width: 1024px) {
  .header_logo_small {
    top: 5px;
    left: 3%;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
  }
}
@media screen and (max-width: 767px) {
  .header_msg {
    top: 60px;
    font-size: 1.4rem;
  }
  .header_logo {
    top: 130px;
    width: 100px;
  }
  .header_logo_small {
    top: 10px;
    width: 60px;
  }
}
/* ハンバーガーメニュー　*/
@media (max-width: 1024px) {
  .global_nav ul li:nth-child(3) {
    margin-right: 0;
  }
  .global_nav ul li:nth-child(4) {
    margin-left: 10%;
  }
  .global_nav_menu {
    padding-top: 95px;
    display: block;
    flex-flow: column;
  }
  .global_nav_menu li {
    margin: 0 0 20px 10%;
    text-align: left;
  }
  .global_nav_menu img {
    display: none;
  }
  #toggle {
    position: fixed;
    top: 21px;
    right: 25px;
  }
  #toggle-box {
    position: relative;
    width: 35px;
    height: 20px;
    cursor: pointer;
  }
  #toggle-box > span {
    width: 100%;
    height: 2px;
    left: 0;
    display: block;
    background: #fff;
    position: absolute;
    transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
  }
  #toggle-box > span:nth-child(1) {
    top: 0;
  }
  #toggle-box > span:nth-child(2) {
    top: 50%;
    transform: translatey(-50%);
  }
  #toggle-box > span:nth-child(3) {
    bottom: 0;
  }
  #toggle {
    z-index: 1000;
  }
  #body {
    position: relative;
    z-index: 990;
  }
  #nav-content {
    z-index: 900;
    overflow: auto;
    width: 60%;
    height: 100%;
    background: #FDFDFD;
    color: #555;
    position: fixed;
    top: 0;
    right: 0;
    text-align: center;
    transform: translateX(100%);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    box-shadow: 0px 3px 99px #1A1A1A29;
  }
  #nav-content ul {
    list-style: none;
  }
  #nav-content li {
    margin-bottom: 15px;
  }
  #nav-content li a {
    display: block;
    color: #222;
    text-decoration: none;
    margin: 0;
    transition: opacity .6s ease;
    letter-spacing: 0.1rem;
  }
  #nav-content a:hover {
    opacity: 0.6;
  }
  .is-open {
    overflow: hidden;
    z-index: 1000;
  }
  .is-open #toggle {
    top: 25px;
  }
  .is-open #toggle-box > span {
    background: #212121;
    width: 20px;
  }
  .is-open #toggle-box > span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg) translatey(-50%);
  }
  .is-open #toggle-box > span:nth-child(2) {
    width: 0;
  }
  .is-open #toggle-box > span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg) translatey(-50%);
  }
  .is-open #nav-content {
    z-index: 999;
    transform: translateX(0);
  }
  .overlay {
    background: black;
    height: 100vh;
  }
}
/* footer */
.footer {
  background-color: #534741;
  color: #fff;
  padding: 40px 3% 150px;
}
.footer_link {
  display: flex;
  justify-content: center;
  margin: 30px auto;
  max-width: 540px;
  padding: 0 1%
}
.footer_link div {
  width: 49%;
  margin-right: 2%;
}
.footer_link div:last-child {
  margin-right: 0;
}
.footer_link div:hover {
  opacity: 0.7;
}
.footer_link div img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer_content h2 img {
    width: 100px;
  }
  .footer_link {
    margin-bottom: 15px;
  }
  .footer_address, .footer_permission-number {
    font-size: 1.4rem;
  }
}