@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  color: #000;
  font-size: 16px;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

b {
  font-weight: bold;
}

/* ---------------------------------------------------------
ヘッダー
----------------------------------------------------------*/
.header {
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 101;
}
.header > .container {
  max-width: none;
  height: 130px;
  display: flex;
  justify-content: space-between;
  padding: 35px 100px 0 45px;
}
.header .logo {
  width: 192px;
}
.header .gnav ul {
  display: flex;
  gap: 0 50px;
}
.header .gnav ul li {
  font-size: 13px;
}
.header .gnav ul li a {
  color: #fff;
}
.header .gnav ul li.tel::before {
  content: "";
  display: inline-block;
  background: url(../images/icon_tel.svg);
  background-size: cover;
  height: 12px;
  width: 16px;
  margin-right: 5px;
}

/* ---------------------------------------------------------
フッター
----------------------------------------------------------*/
#totop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 57px;
  width: 57px;
  z-index: 9999;
}

.footer_banner .container {
  padding: 100px;
}
.footer_banner ul {
  display: flex;
  flex-direction: column;
  gap: 80px 0;
}

.sub .footer_banner .container {
  position: relative;
}
.sub .footer_banner .container::after {
  content: "";
  background: url(../images/footer_image.png) 0 0 no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 550px;
  width: 498px;
}
.sub .footer_banner ul {
  width: 680px;
}

.footer {
  background: #000;
  color: #fff;
}
.footer .container {
  padding: 0 100px;
}
.footer .footer_top {
  display: flex;
  padding: 50px 0 20px;
}
.footer .footer_top .logo {
  margin-right: 43px;
  width: 90px;
}
.footer .footer_top ul {
  display: flex;
  gap: 0 32px;
  margin-top: 6px;
}
.footer .footer_top ul li {
  font-size: 11px;
  position: relative;
}
.footer .footer_top ul li a {
  color: #fff;
}
.footer .footer_top ul li::after {
  content: "";
  border-right: 1px solid #fff;
  position: absolute;
  height: 10px;
  right: -16px;
  top: 4px;
}
.footer .footer_top ul li:last-child::after {
  display: none;
}
.footer .footer_bottom {
  border-top: 1px solid #fff;
  display: flex;
  justify-content: space-between;
  padding: 30px 0 60px;
}
.footer .footer_bottom .company {
  display: flex;
  gap: 0 22px;
}
.footer .footer_bottom .company .name {
  font-size: 15px;
  font-weight: bold;
}
.footer .footer_bottom .company .address {
  font-size: 12px;
  line-height: 2;
}
.footer .footer_bottom .banner {
  font-size: 12px;
  display: flex;
  align-items: flex-end;
  gap: 0 7px;
}

.pagetop {
  position: absolute;
  bottom: 110px;
  right: 35px;
  height: 95px;
  width: 71px;
  z-index: 100;
}
.pagetop .pagetop-1 {
  fill: #fff;
}
.pagetop .pagetop-2 {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
}
.pagetop .pagetop-3 {
  fill: #780b11;
  stroke: #fff;
  stroke-miterlimit: 10;
}
.pagetop a {
  display: block;
}
.pagetop a:hover .pagetop-2 {
  stroke: #780b11;
}
.pagetop a:hover .pagetop-3 {
  fill: #fff;
  stroke: #780b11;
}

/* ---------------------------------------------------------
汎用レイアウト
----------------------------------------------------------*/
.en {
  font-family: "Plantagenet Cherokee", Century, Times;
}

.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "Hiragino 明朝 ProN", serif;
}

.hover:hover {
  opacity: 0.7;
}

.container {
  margin: 0 auto;
  max-width: 1300px;
}

/* 入力フォーム */
.error {
  color: #f00 !important;
  font-size: 13px;
}

a.error {
  text-decoration: underline;
}

.input_row {
  display: flex;
  justify-content: space-between;
  gap: 0 10px;
}
.input_row .label {
  font-size: 24px;
  padding-top: 10px;
}
.input_row .unit {
  font-size: 24px;
  vertical-align: bottom;
}

.input input {
  padding-left: 20px;
}

.input input, .select select {
  font-size: 16px;
  height: 55px;
}

.check label {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
}
.check label input[type=radio], .check label input[type=checkbox] {
  position: relative;
  appearance: none;
  font-size: 24px;
  width: 1em;
  margin: 0;
  color: inherit;
  outline: none;
  font-family: "Font Awesome 5 Free";
  transition: 0.3s ease-out;
}
.check label input[type=radio]:checked::after, .check label input[type=checkbox]:checked::after {
  font-weight: 900;
}
.check label input[type=radio]::after, .check label input[type=checkbox]::after {
  color: #780b11;
  content: "\f111";
  display: inline-block;
  text-align: center;
  width: 1em;
}
.check label input[type=radio] + span, .check label input[type=checkbox] + span {
  margin-left: 0.35em;
}
.check label input[type=radio]:checked::after {
  content: "\f192";
}
.check label input[type=checkbox]:checked::after {
  content: "\f058";
}

.button button {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #780b11;
  border-radius: 10px;
  color: #fff;
  font-size: 20px;
  height: 60px;
  width: 500px;
}
.button button:disabled {
  background: #999;
  opacity: 1 !important;
}
.button button:hover {
  opacity: 0.7;
}

.cancel button {
  border: 1px solid #780b11;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  color: #780b11;
  font-size: 20px;
  height: 60px;
  width: 300px;
}
.cancel button:hover {
  background: #780b11;
  color: #fff;
}

@media print {
  .wow {
    visibility: visible !important;
  }
}
@media screen and (min-width: 1301px) {
  .forSp {
    display: none !important;
  }
  .header .buttons {
    display: none;
  }
}
@media screen and (min-width: 1px) and (max-width: 1300px) {
  .forPc {
    display: none !important;
  }
  body {
    font-size: 13px;
  }
  .header > .container {
    height: 60px;
    padding: 0;
  }
  .header .logo {
    padding: 10px 10px 0 20px;
    width: 140px;
  }
  .header .gnav {
    display: none;
    background: #fff;
    color: #000;
    position: absolute;
    left: 0;
    top: 70px;
    width: 100%;
    z-index: 10001;
  }
  .header .gnav ul {
    display: block;
  }
  .header .gnav ul li a {
    display: block;
    border-bottom: 1px solid #780b11;
    color: #780b11;
    font-weight: bold;
    padding: 12px 15px;
  }
  .header .buttons ul {
    display: flex;
    justify-content: flex-end;
  }
  .header .buttons ul li a {
    display: block;
    padding: 15px;
    text-align: center;
    height: 70px;
    width: 70px;
    position: relative;
  }
  .header .buttons ul li img {
    height: 100%;
    vertical-align: middle;
  }
  .header .buttons ul li:nth-child(1) {
    background: #a57749;
  }
  .header .buttons ul li:nth-child(1) a {
    width: 140px;
  }
  .header .buttons ul li:nth-child(2) {
    background: #000;
  }
  .footer_banner .container {
    padding: 50px 20px;
  }
  .footer_banner ul {
    align-items: center;
    gap: 50px 0;
  }
  .sub .footer_banner .container::after {
    display: none;
  }
  .sub .footer_banner ul {
    width: 100%;
  }
  .footer > .container {
    padding: 0 20px;
  }
  .footer .footer_top {
    flex-direction: column;
    gap: 10px 0;
    padding-top: 40px;
  }
  .footer .footer_top .logo {
    margin-right: 20px;
  }
  .footer .footer_top ul {
    gap: 0 20px;
  }
  .footer .footer_top ul li::after {
    right: -10px;
  }
  .footer .footer_bottom {
    display: block;
    padding-bottom: 40px;
  }
  .footer .footer_bottom .company {
    flex-direction: column;
    gap: 20px 0;
    margin-bottom: 20px;
  }
  .footer .footer_bottom .banner img {
    width: 130px;
  }
  .pagetop {
    bottom: 80px;
    height: 74px;
    width: 50px;
  }
  .pagetop svg {
    height: auto;
    max-width: 100%;
  }
  /* 汎用レイアウト */
  .container {
    padding: 0 20px;
  }
  .input_row .label, .input_row .unit {
    font-size: 18px;
  }
  .input input, .select select, .check label {
    font-size: 14px;
  }
  .select select {
    max-width: 100%;
  }
  .button button {
    font-size: 18px;
    height: 40px;
    width: 100%;
  }
  .cancel button {
    font-size: 18px;
    height: 40px;
    width: 90%;
    margin-left: 5%;
  }
}