@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
.a {
  cursor: pointer;
}
a:link {
  color: inherit; /*文字の色を親要素から継承する*/
}
a:visited {
  color: inherit; /*文字の色を親要素から継承する*/
}
a:hover {
  opacity: 0.5;
}
.main {
  background-color: #fbf8f0;
}
.header {
  box-sizing: border-box;
  background-color: #ffffff;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  height: 100px;
  margin: 0 auto;
  padding: 10px 80px 0;
  align-items: end; /*上下から見た真ん中*/
  justify-content: space-between; /*各アイテムを均等に配置し最初のアイテムは先頭（ロゴ）に寄せ、最後のアイテム（ナビゲーション）は末尾に寄せる*/
}
.header h1 {
  height: 80px;
}
.header h1 img {
  height: 100%;
}
.header_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_tool {
  color: #6a6a6a;
  font-size: 1.4rem;
  font-weight: 300;
  list-style: none;
  display: flex;
  gap: 40px;
  margin-top: 15px;
}
.header_menu {
  color: #333333;
  font-size: 1.6rem;
  display: flex;
  gap: 40px;
  justify-content: end;
}
.header_menu a {
  text-decoration-line: none;
}

/*パンくずリスト*/
.breadcrumb-001 {
  display: flex;
  gap: 0 22px;
  list-style: none;
  padding: 10px 0 10px 80px;
  font-size: 1.4rem;
  flex-wrap: wrap;
}

.breadcrumb-001 li {
  display: flex;
  align-items: center;
}

.breadcrumb-001 li:not(:last-child)::after {
  display: inline-block;
  transform: rotate(45deg);
  width: 0.3em;
  height: 0.3em;
  margin-left: 10px;
  border-top: 1px solid #6a6a6a;
  border-right: 1px solid #6a6a6a;
  content: "";
}

.breadcrumb-001 a {
  color: #3a3a3a;
  text-decoration: none;
}

@media (max-width: 767px) {
  .header {
    padding-right: 25px;
    padding-left: 25px;
  }
  .breadcrumb-001 {
    padding-left: 25px;
    font-size: 1.2rem;
  }
  .header {
    height: 120px;
  }
  .header_tool {
    font-size: 1.2rem;
  }
  .header_menu {
    font-size: 1.2rem;
    justify-content: space-between;
    margin-top: 10px;
    gap: 0;
  }
}
body {
  color: #5f4a22;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  width: 100%;
}
.section_white {
  background-color: #fff;
  padding: 80px;
}
h2 {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 40px;
}
.detail a {
  color: #5f4a22;
  margin-left: 10px;
}
.detail img {
  width: 17px;
  margin-bottom: -3px;
  margin-left: 5px;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
  .section_white {
    padding: 60px 25px;
  }
  h2 {
    font-size: 2.4rem;
  }
}

.footer {
  padding: 60px 80px;
}
.footer_container {
  box-sizing: border-box;
  background-color: #ffffff;
  font-family: "Hiragino Kaku Gothic Pro";
  margin: 0 auto 40px;
  display: flex;
  vertical-align: top;
  justify-content: space-between;
}
.footer_left {
  height: 100px;
}
.footer_left img {
  height: 100%;
}
.footer_right {
  color: #333;
  text-align: right;
}
.footer_tool {
  display: flex;
  color: #6a6a6a;
  font-size: 1.4rem;
  font-weight: 300;
  list-style: none;
  justify-content: space-between;
  max-width: 740px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}
address {
  font-style: normal;
}
@media (max-width: 767px) {
  .footer {
    padding: 30px 25px;
  }
  .footer_left {
    height: 90px;
  }
  .footer_tool {
    font-size: 1.2rem;
  }
}
