@charset "utf-8";
/* CSS Document */

html,body {
  font-family: "Noto Sans JP", sans-serif;
}

/* コンテナ */
.container {
  max-width: 1100px;
  width: calc(100% - (20px *2));
  margin: 0 auto;
}

/* 見出し */
.section {
  padding-bottom: 90px;
  border-bottom: solid 1px #707070;
}
.title_section {
  margin-top: 100px;
  display: flex;
  flex-direction: column; 
}
.title_section-en {
  font-size: 40px;
  font-weight: bold;
}
.title_section-jp {
  font-size: 14px;
  color: #A93034;
}

/* ページヒーロー */
.page_hero {
  margin-bottom: 90px;
}

/* 追尾ヘッダー用 */
html {
  scroll-padding-top: 100px;
}
@media (max-width:936px) {
  html {
    scroll-padding-top: 50px;
  }
}


/* ヘッダー */
.header { 
  display: flex;
  width: 100%;
  height: 100px;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  position: fixed;
  z-index: 1000;
  background: rgba(91,91,91,0.5)
}
@media (max-width:936px) {
  .header {
    height: 50px;
    background: rgba(91,91,91,1)
    /*position: relative;
    z-index: 0;*/
  }
  .is-spMenuOpen .header {
    background: #5B5B5B;
  }
}

/* ハンバーガーボタン */
.header_hamburger {
  display: none;
}
@media (max-width:936px) {
  .header_hamburger {
    display: block;
    width: 50px;
    height: 50px;
    background: #A93034;
    border: none;
    position: relative;
  }
  .header_hamburger span {
    display: block;
    width: 20px;
    height: 1px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  .header_hamburger span:nth-child(1) {
    background: #FFFFFF;
    top: -16px;
    transition: opacity .3s;
  }
  .header_hamburger span:nth-child(3) {
    background: #FFFFFF;
    bottom: -16px;
    transition: opacity .3s;
  }
  .header_hamburger span:nth-child(2)::before,
  .header_hamburger span:nth-child(2)::after {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: #FFFFFF;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transition: transform .3s;
    transform-origin: center;
  }
}

/* メニュー */
.header_menu {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0 40px;
}
@media (max-width:936px) {
  .header_menu {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background: #5B5B5B;
    width: 100%;
    padding: 30px 20px;
    margin: 0;
    flex-direction: column;
    gap: 40px;
  }
}

/* ヘッダーロゴ */
.header_logo {
  margin: 0 40px;
  flex-shrink: 0;
}
@media (max-width:936px) {
  .header_logo {
    margin: 0 10px;
  }
  .header_logo img {
    height: 30px;
  }
}





/* ナビゲーションリスト */
.header_list {
  display: flex;
  gap: 40px;
}
@media (max-width:936px) {
  .header_list {
    flex-direction: column;
  }
}

.header_item a {
  color: #FFFFFF;
}
.header_item-contact {
  width: 130px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 5px;
  background: #A93034;
  align-items: center;
  justify-content: center;
  padding: 5px 23px;
  text-decoration: none;
}
.header_item-contact:hover {
  background: #DF0007;
}

.header_item-contact a {
  color: #FFFFFF;
  text-decoration: none;
}
@media (max-width:936px) {
  .header_item-contact {
    width: 100%;
    text-align: center;
    margin-top: 40px;
  }
}

/* スマホメニューを開いたときの設定 */
@media (max-width:936px) {
  .is-spMenuOpen .header_menu {
    display: block;
  }
  .is-spMenuOpen .header_hamburger span:nth-child(1),
  .is-spMenuOpen .header_hamburger span:nth-child(3) {
    opacity: 0;
  }
  .is-spMenuOpen .header_hamburger span:nth-child(2)::before {
    transform: rotate(45deg);
  }
  .is-spMenuOpen .header_hamburger span:nth-child(2)::after {
    transform: rotate(-45deg);
  }
}

/* リンクテキスト */
.link_text {
  display: flex;
  gap: 45px;
  width: 150px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  border: solid 1px #333333;
  text-decoration: none;
}
@media(max-width:767px) {
  .link_text {
    width: 100%;
  }
}
.link_text span {
  line-height: 1;
}

.link_text:hover {
  background: #A93034;
  color: #FFFFFF;
  border: none;
}

/* フォームのレイアウト */
.form_parts {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767px) {
  .form_parts {
    flex-direction: column;
  }
}
.form_parts:not(:first-child) {
  margin-top: 20px;
}
.form_parts-input {
  max-width: 400px;
  width: 100%;
}
.form_parts-label {
  flex-shrink: 0;
  display: flex;
  gap: 10px;
  align-items: center;
}
.form_parts-label span {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 3px;
}
.form_parts-label .is-require {
  background: #A93034;
  color: #FFFFFF;
}
.form_privacy {
  margin-top: 50px;
  height: 280px;
  border: 1px solid #CCCCCC;
  padding: 20px;
  border-radius: 3px;
  overflow: auto;
}
@media (max-width: 767px) {
  .form_privacy {
    margin-top: 50px;
  }
}
.form_privacy h2 {
  font-size: 20px;
  color: #A93034;
  margin-bottom: 15px;
}
.form_privacy h3 {
  font-size: 20px;
  color: #A93034;
  margin: 20px 0 10px;
}
.form_privacy ol {
  list-style: decimal;
  padding-left: 1em;
}
.form_privacy li {
  display: list-item;
  margin-top: 10px;
}
.form_privacy dl {
  margin-top: 10px;
}
.form_privacy dl > div {
  display: flex;
}
.form_privacy dt {
  flex-shrink: 0;
}
.form_privacy dt::after {
  content: "：";
}
.form_privacy-check {
  margin-top: 30px;
  text-align: center;
}
input.form_send {
  margin-top: 40px;
  width: 100%;
  background: #5B5B5B;
  color: #FFFFFF;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  padding: 13px;
  transition: background-color .3s;
}
.form_send:hover {
  background: #A93034;
}

.form_send-confirm:hover {
  background: #A93034;
}


/* フッター */
.footer a {
  color: #333333;
}
.footer_flex {
  margin-top: 50px; 
  display: flex;
  justify-content: space-between;
}
  @media (max-width: 767px) {
    .footer_flex {
      flex-direction: column;
    }
  }
.footer_address {
  margin-top: 20px;
  font-style: normal;
}
.footer_information {
  display: flex;
  flex-direction: column;
}
.footer_information-item {
  display: flex;
  gap: 10px;
}
.footer_map {
  margin-top: 2px;
}
.footer_map img {
  width: 18px;
  margin-right: 5px;
  flex-shrink: 0;
}
.footer_tel {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
}
.footer_tel img {
  width: 18px;
  margin-right: 5px;
  flex-shrink: 0;
}
.footer_information-item {
  margin-top: 2px;
}
.footer_contents {
  display: flex;
  align-items: baseline;
  gap: 40px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .footer_contents {
    flex-direction: column;
  } 
}  
.footer_nav {
  width: 100%;
}
.footer_nav-list {
  display: flex;
  gap: 40px;
}
@media (max-width: 767px) {
  .footer_nav-list {
    margin-top: 50px;
    gap: normal;
    justify-content: space-between;
  }
}

.footer_copyright {
  display: block;
  text-align: center;
  color: #FFFFFF;
  background: #5B5B5B;
  font-size: 12px;
  padding: 12px 0; 
  margin-top: 40px;
}
.footer_item-contact {
  width: 130px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 5px;
  background: #A93034;
  align-items: center;
  justify-content: center;
  padding: 5px 23px;
  text-decoration: none;   
}
@media (max-width: 767px) {
  .footer_item-contact {
    width: 100%;
    text-align: center;
  }
}
.footer_item-contact:hover {
  background: #DF0007;
}
.footer_item-contact a {
  color: #FFFFFF;
  text-decoration: none;
}











