@charset "UTF-8";
/* CSS Document */
/* 基本設定 */
/* --------------------------------------------------
	section size
-------------------------------------------------- */
/* 初期設定 */
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  font-size: 62.5%;
}

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  color: #333;
  position: relative;
  overflow-x: clip;
}

.en {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
}

a {
  text-decoration: none;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
a:hover {
  opacity: 0.5;
}

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

/* ----rem設定---- */
:root {
  --liquid-lgDesignRatio: calc(1920 / 10);
  --liquid-lmdDesignRatio: calc(840 / 10);
  --liquid-smDesignRatio: calc(390 / 10);
}

@media screen and (max-width: 1920px) {
  :root {
    --liquid-htmlroot: calc(100vw / var(--liquid-lgDesignRatio));
  }
  html {
    font-size: var(--liquid-htmlroot);
  }
}
@media screen and (max-width: 840px) {
  :root {
    --liquid-htmlroot: calc(100vw / var(--liquid-lmdDesignRatio));
  }
}
@media screen and (max-width: 520px) {
  :root {
    --liquid-htmlroot: calc(100vw / var(--liquid-smDesignRatio));
  }
}
/* --------- */
/* ----レスポンシブの表示非表示---- */
.sp {
  display: none;
}

@media (max-width: 520px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
}
/* --------- */
/* ----------------------------------------------------------------------
クラス名設定
---------------------------------------------------------------------- */
.Linner {
  width: 86%;
  max-width: 150rem;
  margin: 0 auto;
}

.Minner {
  width: 86%;
  max-width: 110rem;
  margin: 0 auto;
}

.comTtl {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5em;
}
@media screen and (max-width: 840px) {
  .comTtl {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  .comTtl {
    font-size: 1.2rem;
  }
}
.comTtl .subTtl {
  letter-spacing: 0;
  display: block;
  font-size: 888%;
  color: #b62013;
}
@media screen and (max-width: 520px) {
  .comTtl .subTtl {
    font-size: 700%;
    line-height: 0.9;
  }
}
.comTtl .txt {
  font-weight: 500;
  margin-top: 2em;
  line-height: 2;
}
.comTtl.wh {
  color: #fff;
}
.comTtl.wh .subTtl {
  color: #fff;
}

.comBtn {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: fit-content;
  min-width: 17em;
  text-align: center;
  padding: 1.5em 1em;
  border-radius: 999px;
  background-color: #b62013;
  color: #fff;
  margin: 3em auto 0;
  border: 0.1em solid #b62013;
}
@media screen and (max-width: 840px) {
  .comBtn {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  .comBtn {
    font-size: 1.2rem;
  }
}
.comBtn:hover {
  opacity: 1;
  background-color: transparent;
  color: #b62013;
}
.comBtn.wh {
  background-color: #fff;
  color: #b62013;
  border: 0.1em solid #fff;
}
.comBtn.wh:hover {
  opacity: 1;
  background-color: transparent;
  color: #fff;
}

/* ----------------------------------------------------------------------
アニメーション
---------------------------------------------------------------------- */
.delayScroll > * {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.buruburu {
  will-change: transform;
  backface-visibility: hidden;
}
.buruburu:hover {
  opacity: 1;
  animation: shake-horizontal 0.5s ease-in-out 1;
}

@keyframes shake-horizontal {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-3px, 1px) rotate(-2deg);
  }
  50% {
    transform: translate(3px, -1px) rotate(2deg);
  }
  75% {
    transform: translate(-3px, -1px) rotate(-2deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
/* ----------------------------------------------------------------------
ヘッダー
---------------------------------------------------------------------- */
header {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 840px) {
  header {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  header {
    font-size: 1.2rem;
  }
}
header .mainHd {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 1em;
  color: #fff;
  transition: 0.3s;
}
header .mainHd .logoBox {
  width: 19.4em;
}
header .mainHd .logoBox img.whBg {
  display: none;
}
@media screen and (max-width: 840px) {
  header .mainHd .logoBox {
    width: 17em;
  }
}
header .mainHd .rightBox .hdNav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2em;
}
header .mainHd .rightBox .hdNav a:hover {
  opacity: 1;
  color: #b62013;
}
header .mainHd .rightBox .hamburger {
  width: 3em;
  aspect-ratio: 1;
  position: relative;
  z-index: 999;
}
header .mainHd .rightBox .hamburger .line {
  display: block;
  height: 0.2em;
  position: absolute;
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  background-color: #fff;
  transition: 0.4s;
}
header .mainHd .rightBox .hamburger .line:before, header .mainHd .rightBox .hamburger .line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: #fff;
  transition: inherit;
}
header .mainHd .rightBox .hamburger .line:before {
  top: -0.6em;
}
header .mainHd .rightBox .hamburger .line:after {
  top: 0.6em;
}
header .mainHd .rightBox .hamburger .txt {
  position: absolute;
  inset: auto auto 0 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: 75%;
  line-height: 1;
}
header .mainHd .rightBox .hamburger .txt:before {
  content: "メニュー";
  color: #fff;
}
header .mainHd .rightBox .hamburger.active .line {
  background-color: transparent;
}
header .mainHd .rightBox .hamburger.active .line:before {
  top: 0;
  transform: rotate(45deg);
}
header .mainHd .rightBox .hamburger.active .line:after {
  top: 0;
  transform: rotate(-45deg);
}
header .mainHd .rightBox .hamburger.active .txt::before {
  content: "閉じる";
}
header .mainHd.active {
  background-color: #fff;
  color: #333;
}
header .mainHd.active .logoBox {
  filter: none;
}
header .mainHd.active .logoBox img.whBg {
  display: block;
}
header .mainHd.active .logoBox img.bkBg {
  display: none;
}
header .mainHd.active .rightBox .hamburger .line {
  background-color: #b62013;
}
header .mainHd.active .rightBox .hamburger .line:before, header .mainHd.active .rightBox .hamburger .line:after {
  background-color: #b62013;
}
header .mainHd.active .rightBox .hamburger .txt::before {
  color: #b62013;
}
header .mainHd.active .rightBox .hamburger.active .line {
  background-color: transparent;
}
header .fixBtn {
  position: fixed;
  inset: auto 0 2em auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 2em;
  z-index: 999;
}
@media screen and (max-width: 520px) {
  header .fixBtn {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 2%;
    inset: auto auto 1em 0;
  }
}
@media screen and (max-width: 520px) {
  header .fixBtn li {
    width: 46%;
  }
}
header .fixBtn li a {
  display: block;
  width: 4.9em;
  aspect-ratio: 98/237;
  letter-spacing: 0.05em;
  background-color: #b62013;
  color: #fff;
  border-radius: 0.5em 0 0 0.5em;
  overflow: hidden;
  padding-top: 0.5em;
  position: relative;
  box-shadow: 0px 0px 3px #e8e8e8;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  -webkit-line-break: after-white-space;
  line-break: normal;
}
@media screen and (max-width: 520px) {
  header .fixBtn li a {
    width: 100%;
    padding: 1.5em 0;
    aspect-ratio: initial;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    border-radius: 0.5em;
  }
}
header .fixBtn li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.5em;
  background-color: #fff;
  position: absolute;
  inset: 0 auto auto 0;
}
@media screen and (max-width: 520px) {
  header .fixBtn li a::after {
    content: none;
  }
}

#mainNav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 4em;
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 99;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  font-size: 140%;
  opacity: 0;
  pointer-events: none;
}
#mainNav.show {
  opacity: 1;
  pointer-events: visible;
}
#mainNav > a {
  display: block;
  position: relative;
}
#mainNav > a:before {
  content: "";
  display: block;
  width: 3em;
  height: 0.2em;
  background-color: #b62013;
  position: absolute;
  inset: 140% auto auto 50%;
  transform: translatex(-50%);
}
#mainNav > a:hover {
  opacity: 1;
  color: #b62013;
}

/* ----------------------------------------------------------------------
フッター
---------------------------------------------------------------------- */
footer #ftInfo {
  font-size: 4.7rem;
  line-height: 1.0638297872;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (max-width: 840px) {
  footer #ftInfo {
    font-size: 3rem;
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  footer #ftInfo {
    font-size: 2.4rem;
  }
}
footer #ftInfo .Minner {
  width: 90%;
}
footer #ftInfo .Minner .bnrBox {
  display: block;
  margin-bottom: 2em;
}
footer #ftInfo .Minner .snsBox {
  margin-bottom: 2em;
}
footer #ftInfo .Minner .snsBox > p {
  margin-bottom: 1em;
  text-align: center;
}
footer #ftInfo .Minner .snsBox .snsList {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5em;
}
footer #ftInfo .Minner .snsBox .snsList .snsItem {
  width: 2.1em;
}
footer #ftInfo .Minner .snsBox .snsList .snsItem > a {
  display: block;
}
footer #footer .obi {
  background-color: #b62013;
  text-align: center;
  padding: 1rem 0;
}
footer #footer .obi img {
  width: 10%;
  max-width: 6.5rem;
}
footer #footer .kyosan {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 600;
  background-color: transparent;
  padding: 5em 0;
}
@media screen and (max-width: 840px) {
  footer #footer .kyosan {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  footer #footer .kyosan {
    font-size: 1.2rem;
  }
}
footer #footer .kyosan .Linner {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1em 1.25%;
}
@media screen and (max-width: 840px) {
  footer #footer .kyosan .Linner {
    gap: 1em 2%;
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  footer #footer .kyosan .Linner {
    gap: 0.6em 1%;
  }
}
footer #footer .kyosan .Linner .kyosanItem {
  width: 19%;
  aspect-ratio: 25/6;
}
@media screen and (max-width: 840px) {
  footer #footer .kyosan .Linner .kyosanItem {
    width: 32%;
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  footer #footer .kyosan .Linner .kyosanItem {
    width: 49%;
  }
}
footer #footer .kyosan .Linner .kyosanItem a {
  display: block;
}
@media screen and (max-width: 840px) {
  footer #footer .kyosan .Linner .kyosanItem.tsunagulogo {
    order: 999;
    margin: 0 5%;
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  footer #footer .kyosan .Linner .kyosanItem.tsunagulogo {
    width: 90%;
    margin: 11% auto 0;
  }
}
footer #footer small {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #fff;
  padding: 1em 0;
  display: block;
  width: 100%;
  text-align: center;
  background-color: #333;
}
@media screen and (max-width: 520px) {
  footer #footer small {
    font-size: 1.2rem;
    padding: 1em 0 6.5em;
  }
}

/* ----------------------------------------------------------------------
メッセージ募集
---------------------------------------------------------------------- */
#form {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding: 14em 0;
}
@media screen and (max-width: 840px) {
  #form {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  #form {
    font-size: 1.2rem;
    padding: 9em 0;
  }
}
#form .Minner .condList {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 1em;
  row-gap: 1em;
}
#form .Minner .condList .condItem {
  width: 49%;
  padding: 2em 1em;
  background-color: #b62013;
  color: #fff;
  border-radius: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
@media screen and (max-width: 840px) {
  #form .Minner .condList .condItem {
    width: 100%;
  }
}
#form .Minner .condList .condItem dt {
  font-size: 150%;
  font-weight: bold;
  letter-spacing: 0.2em;
  width: 6em;
  text-align: center;
}
#form .Minner .condList .condItem dd {
  font-weight: bold;
  width: calc(100% - 10em);
}
#form .Minner .formBox {
  background-color: #f2f2f2;
  border-radius: 2em;
  padding: 6em 4%;
}

form {
  font-size: 125%;
}
form dl {
  margin-bottom: 3em;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
form dl dt {
  position: relative;
  width: fit-content;
  padding: 1em 0;
}
form dl dt.hissu:after {
  content: "必須";
  display: block;
  width: 4em;
  line-height: 1;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 0.2em 0;
  background-color: #b62013;
  position: absolute;
  border-radius: 999px;
  inset: 50% auto auto calc(100% + 0.5em);
  transform: translateY(-50%);
}
form dl dd {
  width: 67%;
}
@media screen and (max-width: 840px) {
  form dl dd {
    width: 100%;
  }
}
form dl dd input[type=text],
form dl dd textarea {
  width: 100%;
  background-color: #fff;
  padding: 1em;
}
form dl dd input[type=file] {
  margin: 1em 0;
}
form dl dd .notice {
  font-size: 70%;
  line-height: 1.5;
}
form .contact-btn input {
  display: block;
  font-size: 70%;
  width: 17em;
  text-align: center;
  padding: 1.5em 1em;
  border-radius: 999px;
  background-color: #b62013;
  color: #fff;
  border: 0.1em solid #b62013;
  margin: 0 auto;
}
form .contact-btn input:hover {
  opacity: 1;
  background-color: transparent;
  color: #b62013;
}

#confirmation form dl dd {
  padding: 1em 0;
}