@charset "UTF-8";
:root {
  --text-color: #030303;
  --profile-color: #1c1818;
  --background-color: #edf8fe;
  --font-heading: "Gelasio", serif;
  --font-paragraph: "Noto Serif JP", serif;
}

html {
  font-size: 100%;
  font-family: var(--font-paragraph);
  color: var(--text-color);
}

body {
  min-height: 100vh;
  position: relative;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  color: var(--text-color);
  text-decoration: none;
}

h1 {
  width: 120px;
}
@media (max-width: 500px) {
  h1 {
    width: 80px;
  }
}

h2 {
  color: #ff1e00;
  text-shadow: 1px 1px 0 #656565, -1px -1px 0 #656565, -1px 1px 0 #656565, 1px -1px 0 #656565, 0px 1px 0 #656565, -1px 0 #656565, -1px 0 0 #656565, 1px 0 0 #656565;
  font-family: var(--font-heading);
  font-weight: normal;
  font-size: 8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  h2 {
    font-size: clamp(5rem, 80px + 48 * (100vw - 500px) / 268, 8rem);
  }
}
@media (max-width: 500px) {
  h2 {
    top: 34%;
  }
}
h2::before {
  content: "燃え上がる";
  position: absolute;
  top: -90px;
  left: -150px;
  color: #f3f1f1;
  font-size: 4rem;
  opacity: 0.3;
  -webkit-animation: fade 5s infinite;
          animation: fade 5s infinite;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
@media (max-width: 768px) {
  h2::before {
    font-size: clamp(2rem, 32px + 32 * (100vw - 500px) / 268, 4rem);
    left: -70px;
    top: -70px;
  }
}
@media (max-width: 500px) {
  h2::before {
    top: -40px;
    left: -30px;
  }
}
h2::after {
  content: "輝く";
  position: absolute;
  bottom: -170px;
  left: 50px;
  color: #f3f1f1;
  font-size: 4rem;
  opacity: 0.3;
  -webkit-animation: fade 5s infinite;
          animation: fade 5s infinite;
}
@media (max-width: 768px) {
  h2::after {
    font-size: clamp(2.5rem, 40px + 24 * (100vw - 500px) / 268, 4rem);
    bottom: -70px;
  }
}
@media (max-width: 500px) {
  h2::after {
    bottom: -50px;
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}

@keyframes fade {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
h3 {
  font-size: 3rem;
  text-align: center;
  padding-block: 50px 30px;
}
@media (max-width: 500px) {
  h3 {
    font-size: clamp(2.5rem, 40px + 8 * (100vw - 320px) / 180, 3rem);
  }
}
h3 span {
  color: #d45925;
}

h4 {
  display: inline-block;
  font-size: 2.25rem;
  font-weight: normal;
  border: 5px solid #a28504;
  padding-inline: 100px;
  position: relative;
  z-index: 1;
}
@media (max-width: 500px) {
  h4 {
    padding-inline: 50px;
  }
}
h4::before {
  position: absolute;
  top: 6px;
  left: -12px;
  content: "";
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  border: 2px solid #5b4a03;
  z-index: 0;
}

h5 {
  font-size: 2.25rem;
  font-weight: normal;
}
@media (max-width: 768px) {
  h5 {
    font-size: clamp(1.75rem, 28px + 8 * (100vw - 500px) / 268, 2.25rem);
  }
}
h5 .post {
  font-size: 2rem;
}
@media (max-width: 768px) {
  h5 .post {
    font-size: clamp(1.5rem, 24px + 8 * (100vw - 500px) / 268, 2rem);
  }
}
h5 a {
  margin-left: 20px;
}
@media (max-width: 768px) {
  h5 a {
    margin-left: 10px;
  }
}

header {
  position: relative;
  z-index: 1000;
}
header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 0 20px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

.header-nav {
  display: none;
}

.toggle {
  width: 70px;
  height: 70px;
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
  position: relative;
  z-index: 1000;
  border-radius: 50%;
  transition: all 0.5s;
}
@media (max-width: 500px) {
  .toggle {
    width: 50px;
    height: 50px;
  }
}
.toggle .line {
  display: block;
  position: absolute;
  left: 0;
  background-color: #ffffff;
  width: 40px;
  height: 2px;
  border-radius: 4px;
  transition: all 0.5s;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 500px) {
  .toggle .line {
    width: 30px;
  }
}
.toggle .line:nth-of-type(1) {
  top: 30%;
}
.toggle .line:nth-of-type(2) {
  top: 50%;
}
.toggle .line:nth-of-type(3) {
  top: 70%;
}

.mask {
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
  transition: all 0.5s;
}

.open .toggle {
  background: linear-gradient(-45deg, #b99635, #fff9c3, #b99635);
}
.open .toggle .line {
  background-color: #030303;
}
.open .toggle .line:nth-of-type(1) {
  top: 50%;
  transform: translateX(-50%) rotate(-315deg);
}
.open .toggle .line:nth-of-type(2) {
  opacity: 0;
}
.open .toggle .line:nth-of-type(3) {
  top: 50%;
  transform: translateX(-50%) rotate(315deg);
}
.open .header-nav {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.open .header-nav li:not(:first-of-type) {
  margin-top: 50px;
}
.open .header-nav a {
  position: relative;
  overflow: hidden;
  font-size: 1.25rem;
}
.open .header-nav a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--text-color);
  border-radius: 5px;
  transition: all 0.5s;
}
.open .header-nav a:hover::before {
  width: 100%;
}
.open .mask {
  top: 0;
}

footer {
  background-color: var(--background-color);
  text-align: center;
  font-size: 1.25rem;
  padding-bottom: 20px;
  padding-top: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 500px) {
  footer {
    font-size: 0.85rem;
  }
}
footer ul {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 500px) {
  footer ul {
    gap: clamp(20px, 20px + 30 * (100vw - 320px) / 180, 50px);
  }
}
footer ul a {
  transition: all 0.5s;
}
footer ul a:hover {
  opacity: 0.5;
}

#top {
  background-image: url(../img/header-bg.jpg);
  background-size: cover;
  height: 100vh;
}
#top .inner {
  position: relative;
  height: 100%;
}
#top .inner .burn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}
@media (max-width: 768px) {
  #top .inner .burn {
    width: 100%;
  }
}
@media (max-width: 500px) {
  #top .inner .burn {
    top: 20%;
    transform: translateX(-50%);
  }
}

.scrolldown {
  writing-mode: vertical-rl;
  position: absolute;
  bottom: 210px;
  right: 50px;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: bold;
}
@media (max-width: 500px) {
  .scrolldown {
    bottom: 110px;
    right: 20px;
  }
}
.scrolldown::before {
  position: absolute;
  bottom: -210px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 2px;
  height: 0;
  background-color: #ffffff;
  -webkit-animation: down 2s ease infinite;
          animation: down 2s ease infinite;
}
@media (max-width: 500px) {
  .scrolldown::before {
    bottom: -110px;
    -webkit-animation: down-sp 2s ease infinite;
            animation: down-sp 2s ease infinite;
  }
}

@-webkit-keyframes down {
  0% {
    height: 0;
    bottom: 0;
  }
  50% {
    height: 200px;
    bottom: -210px;
  }
  100% {
    height: 0;
    bottom: -210px;
  }
}

@keyframes down {
  0% {
    height: 0;
    bottom: 0;
  }
  50% {
    height: 200px;
    bottom: -210px;
  }
  100% {
    height: 0;
    bottom: -210px;
  }
}
@-webkit-keyframes down-sp {
  0% {
    height: 0;
    bottom: 0;
  }
  50% {
    height: 100px;
    bottom: -110px;
  }
  100% {
    height: 0;
    bottom: -110px;
  }
}
@keyframes down-sp {
  0% {
    height: 0;
    bottom: 0;
  }
  50% {
    height: 100px;
    bottom: -110px;
  }
  100% {
    height: 0;
    bottom: -110px;
  }
}
#concept {
  background-image: url(../img/copy-bg.jpg);
  background-size: cover;
  min-height: 100vh;
  padding: 0 3% 50px;
}
#concept .wrapper {
  max-width: 1200px;
  margin-inline: auto;
}
#concept p {
  font-size: clamp(1.55rem, 24.8px + 11.2 * (100vw - 768px) / 512, 2.25rem);
  line-height: 3;
  padding-inline: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  #concept p {
    font-size: clamp(1.1rem, 17.6px + 7.2 * (100vw - 320px) / 448, 1.55rem);
  }
}
@media (max-width: 500px) {
  #concept p {
    padding-inline: initial;
  }
}
#concept .lead {
  text-align: center;
  font-size: clamp(2.17rem, 34.72px + 13.28 * (100vw - 768px) / 512, 3rem);
  font-weight: 500;
}
@media (max-width: 768px) {
  #concept .lead {
    font-size: clamp(1.5rem, 24px + 12 * (100vw - 320px) / 448, 2.25rem);
    line-height: 1.5;
    margin-bottom: 20px;
  }
}
#concept .sp {
  display: none;
}
@media (max-width: 500px) {
  #concept .sp {
    display: block;
    line-height: 0;
  }
}
#concept .tb {
  display: none;
}
@media (max-width: 768px) {
  #concept .tb {
    display: block;
    line-height: 0;
  }
}
#concept .flame {
  color: #f90606;
}
#concept .shine {
  color: #e8811a;
}

#profile {
  background-image: url(../img/profile-bg.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--profile-color);
  padding: 30px 3%;
}
#profile ul {
  max-width: 1200px;
  margin-inline: auto;
}
#profile .representative {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-block: 30px 100px;
}
@media (max-width: 768px) {
  #profile .representative {
    gap: 20px;
  }
}
@media (max-width: 500px) {
  #profile .representative {
    flex-direction: column-reverse;
  }
}
#profile .representative:nth-of-type(2) {
  flex-direction: row-reverse;
  margin-block: 150px;
}
@media (max-width: 500px) {
  #profile .representative:nth-of-type(2) {
    flex-direction: column-reverse;
    margin-block: 0 100px;
  }
}
#profile .representative .text {
  text-align: left;
  width: 60%;
}
@media (max-width: 500px) {
  #profile .representative .text {
    width: 100%;
  }
}
#profile .representative .text p {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: 30px;
}
@media (max-width: 768px) {
  #profile .representative .text p {
    font-size: clamp(1rem, 16px + 8 * (100vw - 500px) / 268, 1.5rem);
  }
}
#profile .representative .portrait {
  width: 40%;
  position: relative;
  margin-top: 70px;
}
@media (max-width: 500px) {
  #profile .representative .portrait {
    width: 280px;
    margin-inline: auto;
  }
}
#profile .representative .portrait::before {
  position: absolute;
  content: "";
  inset: -15px;
  background: linear-gradient(-45deg, #b99635, #fff9c3, #b99635);
  z-index: 0;
}
#profile .representative .portrait img {
  position: relative;
  z-index: 1;
}

#notice {
  background-color: var(--background-color);
  text-align: center;
  padding: 30px 3% 100px;
}
#notice ul {
  max-width: 1100px;
  margin: 70px auto 0;
  text-align: left;
  font-size: clamp(1.6rem, 25.6px + 6.4 * (100vw - 768px) / 512, 2rem);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #notice ul {
    flex-direction: column;
    font-size: 1.7rem;
  }
}
@media (max-width: 500px) {
  #notice ul {
    font-size: clamp(1.2rem, 19.2px + 8 * (100vw - 320px) / 180, 1.7rem);
  }
}
#notice li {
  width: 100%;
}
#notice .inner {
  display: flex;
  transition: all 0.5s;
}
@media (max-width: 768px) {
  #notice .inner {
    flex-direction: column;
  }
}
#notice .inner:hover {
  opacity: 0.5;
}
#notice .dt,
#notice .content {
  width: 48%;
}
#notice .dt:not(:first-of-type),
#notice .content:not(:first-of-type) {
  margin-top: 25px;
}
@media (max-width: 768px) {
  #notice .dt,
#notice .content {
    width: 100%;
  }
  #notice .dt:not(:first-of-type),
#notice .content:not(:first-of-type) {
    margin-top: initial;
  }
}
#notice .dt {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #notice .dt:not(:first-of-type) {
    margin-top: 50px;
  }
}
#notice .day,
#notice .category {
  width: 47%;
}
@media (max-width: 768px) {
  #notice .day {
    width: 35%;
  }
}
#notice .category {
  display: inline-block;
}
@media (max-width: 768px) {
  #notice .category {
    width: 60%;
  }
}

.single {
  background-color: #fff;
}
.single .wrapper {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 3%;
  margin-bottom: 100px;
}
.single h2 {
  margin-bottom: initial;
  text-align: left;
}
.single .day {
  margin-bottom: 50px;
}
.single .content {
  line-height: 2;
  font-size: 1.25rem;
}
.single .btn {
  text-align: center;
}
@media (max-width: 500px) {
  .single .btn {
    margin-bottom: 110px;
  }
}
.single .btn a {
  background-color: var(--background-color);
  border: 1px solid #266689;
  border-radius: 50px;
  padding: 10px 100px;
  transition: all 0.5s;
}
.single .btn a:hover {
  background-color: #fff;
}

#contact {
  background-color: var(--background-color);
  text-align: center;
  padding: 30px 3% 200px;
}
#contact .lead {
  margin-top: 50px;
  font-size: clamp(1.5rem, 24px + 8 * (100vw - 768px) / 512, 2rem);
  line-height: 1.5;
  letter-spacing: 0.3rem;
}
@media (max-width: 500px) {
  #contact .lead {
    text-align: left;
    font-size: clamp(0.875rem, 14px + 10 * (100vw - 320px) / 180, 1.5rem);
    margin-block: 30px;
  }
}

.form {
  max-width: 900px;
  margin-inline: auto;
  text-align: left;
  font-size: 1.25rem;
}
@media (max-width: 500px) {
  .form {
    font-size: clamp(1rem, 16px + 4 * (100vw - 320px) / 180, 1.25rem);
  }
}
.form label {
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
}
.form input,
.form textarea {
  background-color: #ffffff;
  padding: 10px;
  margin-top: 10px;
  width: 100%;
}
.form fieldset {
  border: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.form fieldset label {
  display: flex;
  align-items: center;
}
.form fieldset label input {
  width: 20px;
  height: 20px;
  margin-top: initial;
}
.form fieldset label:last-of-type {
  margin-right: 20px;
}
.form fieldset legend {
  margin-bottom: 10px;
}
.form .agree {
  display: flex;
  align-items: center;
}
.form .agree .wpcf7-list-item-label {
  display: none;
}
.form .agree input {
  width: 20px;
  height: 20px;
  margin-top: initial;
  margin-right: 10px;
}
.form .agree a {
  text-decoration: underline;
  transition: all 0.5s;
}
.form .agree a:hover {
  opacity: 0.5;
}

.required {
  display: inline-block;
  background-color: #c2282d;
  color: #ffffff;
  border-radius: 10px;
  padding-inline: 10px;
  margin-left: 30px;
}

.submit {
  display: inline-block;
  margin: 50px auto 0;
  font-size: 1.25rem;
  position: relative;
  transition: all 0.5s;
}
.submit:hover {
  opacity: 0.5;
}
.submit::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #030303;
  border-width: 10px 0px 10px 17.32px;
}
.submit input {
  background-color: #ffffff;
  border-radius: 50px;
  padding: 10px 100px;
}
@media (max-width: 500px) {
  .submit input {
    padding: 10px 50px;
  }
}
.submit .wpcf7-spinner {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  margin: initial;
}

.lower .toggle {
  background: linear-gradient(-45deg, #b99635, #fff9c3, #b99635);
}
.lower .toggle .line {
  background-color: #030303;
}

article {
  background-color: var(--background-color);
  padding-block: 150px 250px;
}
article .wrapper {
  max-width: 1000px;
  margin-inline: auto;
  line-height: 1.8;
  padding-inline: 3%;
}
article .lead {
  font-size: 1rem;
}
@media (max-width: 500px) {
  article .lead {
    font-size: clamp(0.875rem, 14px + 2 * (100vw - 320px) / 180, 1rem);
  }
}
article h2 {
  color: var(--text-color);
  text-shadow: none;
  font-size: 2rem;
  font-weight: bold;
  position: initial;
  transform: initial;
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 500px) {
  article h2 {
    margin-bottom: 40px;
  }
}
article h2::before, article h2::after {
  display: none;
}
article h3 {
  font-size: 1.5rem;
  text-align: initial;
  display: inline-block;
  padding-block: initial;
  margin-bottom: 10px;
}
@media (max-width: 500px) {
  article h3 {
    font-size: clamp(1rem, 16px + 8 * (100vw - 320px) / 180, 1.5rem);
  }
}
article ol li {
  list-style-type: decimal;
  list-style-position: inside;
  font-size: 1.5rem;
}
@media (max-width: 500px) {
  article ol li {
    font-size: clamp(1rem, 16px + 8 * (100vw - 320px) / 180, 1.5rem);
  }
}
article ol li p,
article ol li ol {
  font-size: 1rem;
}
@media (max-width: 500px) {
  article ol li p,
article ol li ol {
    font-size: clamp(0.875rem, 14px + 2 * (100vw - 320px) / 180, 1rem);
  }
}
article ol li p li,
article ol li ol li {
  font-size: 1rem;
  margin-left: 20px;
}
@media (max-width: 500px) {
  article ol li p li,
article ol li ol li {
    font-size: clamp(0.875rem, 14px + 2 * (100vw - 320px) / 180, 1rem);
  }
}
article .list {
  margin-top: 50px;
  padding-left: 10px;
  position: relative;
}
article .list::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 2px;
  height: 50px;
  background-color: var(--text-color);
}
@media (max-width: 500px) {
  article .list::before {
    height: clamp(30px, 30px + 20 * (100vw - 320px) / 180, 50px);
  }
}
/*# sourceMappingURL=main.css.map */