@charset "utf-8";

/* font face */
@font-face {
  font-family: 'Font Awesome 6 Pro';
  font-style: normal;
  font-weight: 100;
  font-display: block;
  src: url("../webfonts/fa-thin-100.woff2") format("woff2"), url("../webfonts/fa-thin-100.ttf") format("truetype");
}

@font-face {
  font-family: 'Font Awesome 6 Pro';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype");
}

html {
  font-size: 62.5%;
}

body {
	font-size: 1.6rem;/* 16px */
	font-family: -apple-system, blinkMacSystemFont, YuGothic-M, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  transition: .3s;
}

a:hover {
  opacity: 0.7;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, body {
		font-feature-settings: "pkna";
	}
}

body:not(#top) main {
  margin-top: 90px;
}

/* SP main */
@media (max-width: 767px) {
  main {
    margin-top: 60px;
  }

  body:not(#top) main {
    margin-top: 60px;
  }
}

.content_area {
  width: 100%;
  overflow: hidden;
}

/* Header */
#Header {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.Header_bg {
  background: rgba(0, 0, 0, 0.4);
}

.Header_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1520px;
  margin: auto;
}

.Header_logoWrap {
  display: flex;
  align-items: center;
}

.Header_logo img {
  width: 100%;
  height: auto;
}


.Header_associationName {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.Header_tel {
  background: rgba(96, 71, 30, 0.7);
}

.Header_telLink {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 90px;
  padding: 15px 40px 15px 90px;
  padding-left: 90px;
  color: #fff;
}

.Header_telLink::before {
  content: '\f095';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 39px;
  width: 38px;
  height: 38px;
  margin: auto;
  color: #fff;
  font-family: 'Font awesome 6 Pro';
  font-weight: 100;
  font-size: 3.8rem;
  line-height: 1;
}

.Header_telText {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.6;
  text-align: center;
}

.Header_telReception {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.8;
  color: #ccc;
  text-align: center;
}

@media (max-width: 767px) {
  #Header {
    height: 60px;
    background: #fff;
  }

  .Header_bg {
    background: #fff;
  }

  .Header_wrap {
    width: 100%;
    max-width: 100%;
  }

  .Header_logo {
    display: flex;
    align-items: center;
    width: 80%;
    height: 60px;
    margin-left: 15px;
  }

  .Header_logo img {
    width: 100%;
    height: auto;
  }
  
  .Header_item:first-of-type {
    width: calc(100% - 60px);
  }

  .Header_item:nth-of-type(2) {
    position: fixed;
    top: 0;
    right: calc(-100% + 59px);
    display: flex;
    width: 100%;
    height: 100vh;
    transition: .3s;
  }

  .Header_item.open:nth-of-type(2) {
    right: 0;
  }

  .Header_item:last-of-type {
    display: none;
  }
}

/* global navigation */
.globalNav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 627px;
}

.globalNav_link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
}

#Header.lower .globalNav_link {
  color: #60471E;
}

#Header.lower.Header_bg .globalNav_link {
  color: #fff;
}

.globalNav_link:hover {
  border-bottom: 1px solid #fff;
}

#Header.lower .globalNav_link:hover {
  border-color: #60471E;
}

.globalNav_link + .globalNav_link {
  margin-left: auto;
}

@media (max-width: 767px) {
  .globalNav_trigger {
    position: relative;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #60471E;
    transition: .3s;
  }

  .Header_item.open .globalNav_trigger {
    right: auto;
    left: 0;
  }

  .globalNav_border {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    margin: auto;
    background: #fff;
  }

  .globalNav_border:nth-of-type(1) {
    top: -20px;
  }

  .globalNav_border:nth-of-type(2) {
    top: 0;
    bottom: 0;
  }

  .globalNav_border:nth-of-type(3) {
    bottom: -20px;
  }

  .Header_item.open .globalNav_border:nth-of-type(1),
  .Header_item.open .globalNav_border:nth-of-type(3) {
    top: 0;
    bottom: 0;
  }

  .Header_item.open .globalNav_border:nth-of-type(1) {
    transform: rotate(45deg);
  }

  .Header_item.open .globalNav_border:nth-of-type(2) {
    display: none;
  }

  .Header_item.open .globalNav_border:nth-of-type(3) {
    transform: rotate(-45deg);
  }

  .globalNav {
    justify-content: flex-start;
    flex-direction: column;
    width: calc(100% - 60px);
    height: 100vh;
    padding-left: 30px;
    background: #60471E;
  }

  .globalNav_link {
    justify-content: flex-start;
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #fff;
  }

  .globalNav_link,
  #Header.lower .globalNav_link {
    color: #fff;
  }

  .globalNav_link + .globalNav_link {
    margin-left: 0;
  }
}

/* Footer */
#Footer {
  margin-top: 400px;
}

.Footer_wrap {
  padding: 70px 0 30px;
  text-align: center;
}

.Footer_nav {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.Footer_navLink {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  border-left: 1px solid #B7AD9C;
}

.Footer_nav .Footer_navLink:last-child {
  border-right: 1px solid #B7AD9C;
}

.Footer_copyRight {
  display: inline-block;
  margin-top: 70px;
  color: #B7AD9C;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
}

@media (max-width: 767px) {
  #Footer {
    margin-top: 70px;
  }

  .Footer_wrap {
    padding: 20px 0 70px;
  }

  .Footer_nav {
    display: none;
  }

  .Footer_logo img {
    width: 100%;
    height: auto;
  }

  .Footer_copyRight {
    margin-top: 20px;
  }
}

/* Footer Contact */
.contact {
  padding: 80px;
  background: url(../images/bg_contact.jpg) top left no-repeat;
  background-size: cover;
}

.contact_title {
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
}

.contact_titleMain {
  font-weight: 400;
  font-size: 3.6rem;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

.contact_titleSub {
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 3.5;
}

.contact_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact_item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: calc(100% / 2);
  margin-top: 80px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #fff;
}

.contact_item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 107px;
  margin: auto;
  background: #EEEEEE;
}

.contact_item:last-child::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 107px;
  margin: auto;
  background: #EEEEEE;
}

.contact_itemTitle {
  position: relative;
  font-size: 2rem;
}

.contact_item.-mail .contact_itemTitle {
  margin-bottom: 20px;
}

.contact_itemTitle::before {
  content: '';
  position: absolute;
  top: -58px;
  right: 0;
  left: 0;
  width: 38px;
  height: 38px;
  margin: auto;
  color: #fff;
  font-family: 'Font Awesome 6 Pro';
  font-weight: 100;
  font-size: 3.8rem;
  line-height: 1;
}

.contact_item.-mail .contact_itemTitle::before {
  content: '\f0e0';
}

.contact_item.-tel .contact_itemTitle::before {
  content: '\f095';
}

.contact .btn {
  background: #fff;
}

.contact_itemTel {
  font-size: 6rem;
}

.contact_itemReception {
  font-weight: 400;
  font-size: 1.4rem;
}

@media (max-width: 767px) {
  .contact {
    padding: 20px 0;
  }

  .contact_wrap {
    flex-direction: column;
  }

  .contact_item {
    width: 100%;
  }

  .contact_item:first-child {
    padding-bottom: 30px;
  }

  .contact_item::before,
  .contact_item:last-child::after {
    content: none;
  }

  .contact_item:first-child::before {
    content: '';
    position: absolute;
    top: unset;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
  }

  .contact_titleMain {
    font-size: 2rem;
    line-height: 1.45;
  }

  .contact_titleSub {
    font-size: 1rem;
  }

  .contact_itemTitle {
    font-size: 1.6rem;
  }

  .contact .btn::after {
    width: 14px;
    height: 16px;
    font-size: 1.6rem;
  }

  .contact_itemTel {
    font-size: 4rem;
  }
}

/* page top */
#page_top {
  z-index: 10000;
  position: fixed;
  bottom: 0;
  right: 0;
  display: none;
  width: 80px;
  height: 80px;
  background: rgba(96, 71, 30, 0.7);
  transition: .3s;
  cursor: pointer;
}

#page_top::before,
#page_top::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 4px;
  margin: auto;
  background: #fff;
  border-radius: 2px;
}

#page_top::before {
  transform: rotate(40deg);
  margin-right:15px;
}
#page_top::after {
  transform: rotate(-40deg);
  margin-left: 15px;
}

#page_top:hover {
  opacity: 0.7;
}

#page_top > img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  #page_top {
    width: 60px;
    height: 60px;
  }

  #page_top::before,
  #page_top::after {
    width: 20px;
  }

  #page_top::before {
    margin-right:14px;
  }

  #page_top::after {
    margin-left: 14px;
  }
}

/* visual */
.visual {
  position: relative;
  width: 100%;
  height: auto;
}

.visual picture img {
  width: 100%;
  height: auto;
}

.visual.-lower {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 180px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #fff;
  background: #60471E;
}

.visual_titleMain {
  font-size: 3.6rem;
}

.visual_titleSub {
  font-size: 1.4rem;
}

@media (max-width: 767px) {
  .visual.-lower {
    height: 140px;
  }

  .visual_titleMain {
    font-size: 2.8rem;
  }
}

/* catch copy */
.copy_title {
  margin-top: 120px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .copy_title {
    margin-top: 30px;
    font-size: 2.6rem;
  }
}

.for_title {
  display: block;
  margin-bottom: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: #60471E;
}

/* bg truss */
.-bg_truss {
  position: relative;
}

.-bg_truss::before {
  content: '';
  position: absolute;
  width: 1490px;
  height: 692px;
  background: url(../images/bg_section.png) top left no-repeat;
  background-size: 100%;
}

@media (max-width: 767px) {
  .-bg_truss::before {
    content: none;
  }
}

/* title */
.title {
  font-family: 'Noto Sans JP', sans-serif;
}

.title_main {
  color: #60471E;
  font-weight: 400;
  font-size: 3.6rem;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

.title_sub {
  color: #B7AD9C;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 3.5;
}

@media (max-width: 767px) {
  .title_main {
    font-size: 2rem;
  }

  .title_sub {
    font-size: 1rem;
  }
}

/* text */
.text_section {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #373840;
  line-height: 2.5;
}

/* btn */
.btn_wrap {
  display: flex;
  flex-direction: column;
}

.btn_wrap.-center {
  align-items: center;
}

.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 470px;
  height: 80px;
  padding: 0 50px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #60471E;
  line-height: 3.1;
  background: #fff;
  border: 1px solid #B7AD9C;
}

.btn::after {
  content: '\f061';
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 14px;
  height: 16px;
  margin: auto;
  color: #60471E;
  font-family: 'Font Awesome 6 Pro';
  font-weight: 100;
  font-size: 1.6rem;
  line-height: 1;
}

.btn[href$=".pdf"]::after {
  content: '\f1c1';
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 14px;
  height: 16px;
  color: #60471E;
  font-family: 'Font Awesome 6 Pro';
  font-weight: 100;
  font-size: 1.6rem;
  line-height: 1;
}

.btn_wrap .btn + .btn {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .btn_wrap {
    align-items: center;
  }

  .btn {
    width: calc(100% - 60px);
    height: auto;
    padding: 0 30px;
    font-size: 1.4rem;
  }

  .btn::after {
    width: 10px;
    height: 11px;
    font-size: 1rem;
  }
}

/* news list */
.news_listItem {
  position: relative;
  border-top: 1px solid #EDEDED;
}

.news_listItem::before {
  content: '';
  position: absolute;
  top: -1px;
  width: 100px;
  height: 1px;
  background: #B7AD9C;
}

.news_listWrap .news_listItem:last-child {
  border-bottom: 1px solid #EDEDED;
}

.news_listWrap .news_listItem:last-child::after {
  content: '';
  position: absolute;
  bottom: -1px;
  width: 100px;
  height: 1px;
  background: #B7AD9C;
}

.news_listLink {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

.news_listLink::before {
  content: '\f061';
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 14px;
  height: 16px;
  margin: auto;
  color: #60471E;
  font-family: 'Font Awesome 6 Pro';
  font-weight: 100;
  font-size: 1.6rem;
  line-height: 1;
}

.news_listLink.-no_link::before {
  content: none;
}

.news_postDate {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  padding: 34px 20px;
  font-size: 1.4rem;
  color: #B7AD9C;
}

.news_postTitle {
  display: block;
  width: 100%;
  padding: 34px 50px 34px 20px;
  color: #373840;
}

@media (max-width: 767px) {
  .news_listWrap .news_listItem:last-child {
    border-bottom: 0;
  }

  .news_listWrap .news_listItem:last-child::after {
    content: none;
  }

  .news_listLink {
    flex-direction: column;
    align-items: flex-start;
  }

  .news_postDate,
  .news_postTitle {
    font-size: 1.4rem;
  }

  .news_postDate {
    width: auto;
    padding: 4px 0;
  }

  .news_postTitle {
    padding: 0 0 8px 0;
  }

  .news_listLink::before {
    content: none;
  }
}

/* table */
.table_title {
  margin-bottom: 32px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 2.6rem;
  color: #373840;
  line-height: 1.9;
}

.table_content {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

.table_head,
.table_description {
  padding: 34px;
}

.table_row {
  position: relative;
  border-top: 1px solid #EDEDED;
}

.table_row:last-of-type {
  border-bottom: 1px solid #EDEDED;
}

.table_row::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 170px;
  height: 1px;
  background: #B7AD9C;
}

.table_head {
  width: 170px;
  font-size: 1.4rem;
  letter-spacing: 0.12;
  line-height: 2;
  color: #B7AD9C;
  text-align: center;
}

.table_description.-name {
  width: 180px;
}

.table.-col2 .table_description a {
  color: #000;
  cursor: pointer;
}

@media (max-width: 767px) {
  .table_title {
    font-size: 1.8rem;
  }

  .table_content {
    width: 100%;
  }

  .table_row::before {
    width: 100px;
  }

  .table_head,
  .table_description {
    font-size: 1.4rem;
  }

  .table_head {
    display: block;
    width: 100%;
    padding: 10px 0 2px;
    text-align: left;
  }

  .table_description {
    display: inline-block;
    width: auto;
    padding: 0 0 10px;
  }

  .table_description.-name {
    width: auto;
  }

  .table.-col2 .table_head,
  .table.-col2 .table_description {
    display: block;
    width: 100%;
  }

  .table.-col2 .table_head,
  .table.-col2 .table_description,
  .table.-col2 a {
    color: #60471E;
  }

  .table.-col3 .table_description:first-of-type {
    min-width: 100px;
  }

  .table.-col3 .table_description + .table_description {
    padding-left: 20px;
    color: #60471E;
  }
}