@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Sawarabi+Mincho&display=swap");
a:link,
a:visited,
a:hover,
a:active,
a {
  text-decoration: none !important;
  color: inherit;
}

h1,
.h1-like {
  font-family: Futura, "Futura", sans-serif;
  font-size: clamp(24px, 5vw, 50px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h2,
.h2-like {
  font-family: Futura, "Futura", sans-serif;
  font-size: 50px;
  font-weight: 500;
}

h3,
.h3-like {
  font-family: Futura, "Futura", sans-serif;
  font-size: clamp(25px, 3.5vw, 35px);
  font-weight: 700;
}

h4,
.h4-like {
  font-size: clamp(20px, 2.5vw, 25px);
  font-weight: 700;
}

p,
.p-like {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 250%;
}

.p-small,
.p-16 {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 180%;
}

ul li, ol li {
  font-size: clamp(16px, 1.8vw, 18px);
}

.p-64 {
  font-size: clamp(32px, 6vw, 64px);
}

.p-60 {
  font-size: clamp(50px, 6vw, 60px);
}

.p-50 {
  font-size: clamp(20px, 2.8vw, 50px);
}

.p-45 {
  font-size: clamp(20px, 4vw, 45px);
}

.p-35 {
  font-size: clamp(18px, 3vw, 35px);
}

.p-24 {
  font-size: clamp(16px, 2vw, 24px);
}

.p-20 {
  font-size: clamp(16px, 2vw, 20px);
}

.hamburger {
  cursor: pointer;
  display: none;
  position: relative;
  width: 25px;
  height: 14px;
  z-index: 302;
  transform: rotate(0deg);
  transform-origin: bottom;
  transition: 0.5s ease-in-out;
}
.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #707070;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}
.hamburger span:nth-child(2) {
  top: 12px;
  transform-origin: left center;
}
.hamburger:hover span {
  background-color: rgba(112, 112, 112, 0.8);
}
.hamburger.active-ham {
  position: fixed;
  top: 70px;
  right: 50px;
}
.hamburger.active-ham span {
  background: #707070;
  filter: unset;
}
.hamburger.active-ham span:nth-child(1) {
  transform: rotate(30deg);
  top: 0px;
  left: 8px;
}
.hamburger.active-ham span:nth-child(2) {
  transform: rotate(-30deg);
  top: 12.5px;
  left: 8px;
}

header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: unset;
  box-sizing: border-box;
  color: #2F2F2F;
  align-items: flex-start;
  justify-content: space-between;
}
header .header-logo {
  display: block;
  width: 156px;
  height: 156px;
  margin: clamp(10px, 3vh, 30px) 0 0 clamp(20px, 6vw, 80px);
  background: url(../img/logo.svg) center no-repeat;
  background-size: contain;
}
header .header-logo:hover {
  opacity: 0.6;
}
header .nav-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: clamp(24px, 6vw, 60px) clamp(22px, 4.2vw, 42px) 0 0;
}
header .nav-container .nav-menu {
  display: none;
}
header .nav-container ul {
  list-style: none;
  text-transform: uppercase;
}
header .nav-container .hamburger {
  display: block;
}
header .nav-container .sns-link {
  display: flex;
  align-items: center;
  margin: 0 clamp(10px, 3vw, 40px) 0 0;
}
header .nav-container .sns-link .sns-label {
  display: none;
}
header .nav-container .sns-link .insta-link {
  width: clamp(20px, 3vw, 28.8px);
}
header .nav-container .sns-link .youtube-link {
  width: clamp(24px, 3vw, 32.3px);
}
header .nav-container.open-menu {
  box-sizing: border-box;
  padding: 0 0 5px 0;
  margin: 0 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: clamp(50px, 20vh, 220px) 1fr clamp(100px, 20vh, 220px);
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin-right: 0;
  z-index: 300;
  animation: fadein 0.2s ease-in-out;
  border-left: 1px solid #D7EBD3;
  background-color: #F3FCEC;
  background-image: url(../img/logo.svg);
  background-position: left calc(25% - clamp(60px, 21vw, 394px) / 2) center;
  background-size: clamp(60px, 21vw, 394px);
  background-repeat: no-repeat;
  color: #2F2F2F;
  opacity: 1;
}
header .nav-container.open-menu .nav-menu {
  grid-column: 2/3;
  grid-row: 2/3;
  display: flex;
  margin: 0 5% 0 0;
  height: 100%;
  z-index: 101;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
}
header .nav-container.open-menu .nav-menu li {
  margin: 0.1em 0;
}
header .nav-container.open-menu .nav-menu li p {
  color: #575757;
  line-height: 140%;
}
header .nav-container.open-menu .nav-menu li .topline {
  font-family: Futura, "Futura", sans-serif;
}
header .nav-container.open-menu .sns-row {
  grid-column: 2/3;
  grid-row: 3/4;
  flex-wrap: wrap;
}
header .nav-container.open-menu .sns-row:before {
  content: "SNS";
  width: 100%;
  margin: 0 0 0.4em 0;
  color: #575757;
  font-family: Futura, "Futura", sans-serif;
  font-size: clamp(20px, 3vw, 30px);
}
header .nav-container.open-menu .sns-link img {
  margin-right: 0.5em;
}
header .nav-container.open-menu .sns-link .sns-label {
  display: block;
  color: #575757;
  font-family: Futura, "Futura", sans-serif;
}
@media screen and (max-width: 800px) {
  header .header-logo {
    width: 158px;
    height: 41px;
    margin: 16px 0 0 20px;
    background: url(../img/logo-mobile.svg) center no-repeat;
    background-size: contain;
  }
  header .nav-container {
    align-items: center;
  }
  header .nav-container.open-menu {
    grid-template-columns: 1fr 2fr;
    grid-template-rows: clamp(40px, 8vh, 100px) 1fr clamp(80px, 20vh, 150px);
  }
}
@media screen and (max-width: 600px) {
  header .nav-container.open-menu {
    max-width: unset;
  }
}

@keyframes slidein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
footer {
  width: 100%;
  flex-wrap: wrap;
  padding: clamp(40px, 10vw, 100px) 0 clamp(16px, 3.2vw, 32px) 0;
  align-items: center;
  justify-content: center;
  background-color: #F3FCEC;
  color: #2F2F2F;
}
footer .logo-container {
  width: clamp(80px, 12vw, 160px);
  margin: auto 4% auto auto;
}
footer .footer-logo {
  width: clamp(100px, 16vw, 160px);
  margin: clamp(16px, 3vw, 30px) auto;
}
footer .menu-container {
  width: 900px;
  max-width: 85.5%;
  margin-right: auto;
}
footer .footer-menu {
  margin: 0;
  flex-wrap: wrap;
  list-style-type: none;
  text-transform: uppercase;
}
footer .footer-menu li {
  margin: 1em auto 1em 0;
}
footer .footer-menu li a {
  color: #2F2F2F;
}
footer .footer-menu.btm-row li {
  margin: 1em 1em 1em 0;
}
footer .footer-copy {
  width: 100%;
  align-self: center;
  margin: 0 0 clamp(20px, 2vw, 40px) 0;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  footer {
    flex-direction: column !important;
  }
  footer .logo-container {
    margin: 0 auto;
  }
  footer .menu-container {
    margin: 20px 1em 40px 1em;
  }
}
@media screen and (max-width: 600px) {
  footer .menu-container {
    width: 300px;
    max-width: 70%;
  }
  footer .menu-container .footer-menu {
    flex-direction: column;
    align-items: flex-start;
  }
}

body {
  font-size: 16px;
  color: #2F2F2F;
  font-family: "Noto Sans JP", Noto Sans JP, YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0 0 0 0;
  overflow-x: hidden;
}

main {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  align-items: center;
}

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

section {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

button {
  font-family: "Noto Sans JP", Noto Sans JP, YuGothic, "Yu Gothic", sans-serif;
}

.font-noto {
  font-family: "Noto Sans JP", Noto Sans JP, sans-serif;
}

.font-sawarabi {
  font-family: "Sawarabi Mincho", serif;
}

.font-futura {
  font-family: Futura, "Futura", sans-serif;
}

a:hover {
  opacity: 0.6;
  text-decoration: none;
}

.a-btn:link,
.a-btn:visited,
.a-btn:active,
.a-btn {
  border: 2px solid #D7EBD3;
  background-color: #ffffff;
  color: #D7EBD3;
  cursor: pointer;
  font-weight: 500;
  padding: 10px 20px;
}
.a-btn:link:hover,
.a-btn:visited:hover,
.a-btn:active:hover,
.a-btn:hover {
  border: 2px solid #F3FCEC;
  color: #F3FCEC;
  background-color: #FDFBF8;
}

.submit-btn {
  appearance: unset;
  -webkit-appearance: unset;
  border: 2px solid #D7EBD3;
  background-color: #ffffff;
  color: #D7EBD3;
  cursor: pointer;
  font-weight: 500;
  padding: 10px 20px;
}
.submit-btn:hover {
  border: 2px solid #F3FCEC;
  color: #F3FCEC;
  background-color: #FDFBF8;
}

.width1920 {
  width: 1920px;
  max-width: 100%;
  margin: auto;
}

.width1400 {
  width: 1400px;
  max-width: 96%;
  margin: auto;
}

.width1200-855 {
  width: 1200px;
  max-width: 85.5%;
  margin: auto;
}

.width1200 {
  width: 1200px;
  max-width: 96%;
  margin: auto;
}

.width1000-855 {
  width: 1000px;
  max-width: 85.5%;
  margin: auto;
}

.width1000 {
  width: 1000px;
  max-width: 96%;
  margin: auto;
}

.width800 {
  width: 800px;
  max-width: 96%;
  margin: auto;
}

.width600 {
  width: 600px;
  max-width: 96%;
  margin: auto;
}

.table-container {
  max-width: 96%;
}
.table-container table {
  table-layout: auto;
  width: 100%;
  margin: clamp(40px, 10vw, 100px) auto;
}
.table-container table th, .table-container table td {
  font-weight: 500;
  border-top: 1px solid #D7EBD3;
  border-bottom: 1px solid #D7EBD3;
  padding: 24px 0;
  text-align: center;
}
.table-container table th.first-line, .table-container table td.first-line {
  border-top: 5px solid #D7EBD3;
}
.table-container table th.last-line, .table-container table td.last-line {
  border-bottom: 5px solid #D7EBD3;
}
.table-container table th {
  background-color: #FFDBA5;
  color: #ffffff;
  padding: 1vw;
}
.table-container table td {
  background-color: #ffffff;
}
.table-container table td a {
  width: fit-content;
  border-bottom: 1px solid #D7EBD3;
  padding-bottom: 6px;
}
.table-container table td a a {
  color: #D7EBD3;
}
.table-container table td a a:hover {
  color: #F3FCEC;
}
.table-container table td ul {
  text-align: start;
}
@media screen and (max-width: 1600px) {
  .table-container table th, .table-container table td {
    font-size: 18px;
    padding: 20px 0;
  }
}
@media screen and (max-width: 1200px) {
  .table-container table th, .table-container table td {
    font-size: 16px;
    padding: 16px 0;
  }
}
@media screen and (max-width: 800px) {
  .table-container table {
    filter: drop-shadow(1px 1px 5px #D7EBD3);
  }
  .table-container table th, .table-container table td {
    font-size: 14px;
    padding: 12px 0;
  }
}

.page-landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(120px, 20vw, 260px) 0 clamp(60px, 10vw, 100px) 0;
}
.page-landing .h1-group {
  width: 1200px;
  max-width: 85.5%;
  border-bottom: 1px solid #707070;
}
.page-landing .h1-group h1 {
  margin-bottom: 0.3em;
}
.page-landing .h1-group p {
  margin-bottom: clamp(20px, 4vw, 40px);
}

.fx-center-self {
  align-self: center;
  justify-self: center;
}

.fx-center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fx-row {
  display: flex;
  flex-direction: row;
}

.fx-row-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.fx-row-rev {
  display: flex;
  flex-direction: row-reverse;
}

.fx-col {
  display: flex;
  flex-direction: column;
}

.fx-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.block-break {
  display: inline-block;
}

@media screen and (min-width: 400px) {
  .max-400 {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .min-400 {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .max-600 {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .min-600 {
    display: none;
  }
}
@media screen and (min-width: 800px) {
  .max-800 {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .min-800 {
    display: none;
  }
}
.nav-elements {
  position: relative;
  width: 100%;
  min-height: clamp(24px, 4vw, 40px);
  margin-top: clamp(40px, 10vw, 100px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
.nav-elements a {
  color: #707070;
}
.nav-elements a:hover {
  color: #FFDBA5;
}
.nav-elements .return-btn img {
  position: absolute;
  width: clamp(24px, 4vw, 40px);
  left: calc(50% - 20px);
  top: 0;
}

.blog-main {
  min-height: 40vh;
  padding: 0 0 clamp(60px, 12vw, 120px) 0;
}
.blog-main .h1-group {
  margin-bottom: clamp(20px, 5vw, 50px);
}

.bloglist-area {
  width: 1400px;
  max-width: 90%;
  margin: 0 auto;
  align-self: center;
  background-color: #ffffff;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 100px) 0 clamp(20px, 5vw, 100px);
}
.bloglist-area .post-row {
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #707070;
  padding: 1.5em 0;
}
.bloglist-area .post-row:first-child {
  border-top: 1px solid #707070;
}
.bloglist-area .post-row .blog-title,
.bloglist-area .post-row .blog-date {
  padding: 0 1em;
  line-height: 180%;
}
.bloglist-area .post-row .blog-date {
  color: #707070;
}
@media screen and (max-width: 800px) {
  .bloglist-area .post-row {
    flex-direction: column;
    max-width: 600px;
    border-bottom: unset;
  }
  .bloglist-area .post-row:first-child {
    border-top: unset;
  }
  .bloglist-area .post-row:not(.excerpt-row) .blog-date {
    border-bottom: 2px solid #D7EBD3;
    line-height: 200%;
    padding-left: 10px;
  }
  .bloglist-area .post-row:not(.excerpt-row) .blog-title {
    padding-left: 5px;
    margin-top: 10px;
  }
}

.blogcard-area {
  width: 1400px;
  max-width: 90%;
  margin: 0 auto;
  align-self: center;
  background-color: #ffffff;
  box-sizing: border-box;
  margin: 0 auto;
  padding: clamp(20px, 5vw, 50px) clamp(20px, 5vw, 100px) clamp(40px, 10vw, 100px) clamp(20px, 5vw, 100px);
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.blogcard-area .post-card {
  position: relative;
  width: clamp(240px, 30%, 320px);
  margin: 20px 10px;
  padding-bottom: 40px;
  background-color: lightgrey;
}
.blogcard-area .post-card img {
  width: 100%;
  align-self: center;
  margin: 0 auto;
}
.blogcard-area .post-card .post-categories,
.blogcard-area .post-card .card-headline,
.blogcard-area .post-card .card-excerpt {
  width: 92%;
  margin: 0 auto;
  align-self: center;
}
.blogcard-area .post-card .post-categories {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 0px auto;
  padding-top: 10px;
}
.blogcard-area .post-card .post-categories li {
  background-color: #D7EBD3;
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.7em;
  list-style-type: none;
  line-height: 100%;
  margin: 5px 5px 5px 0;
  padding: 5px 10px;
}
.blogcard-area .post-card .card-headline {
  margin: 30px auto 10px auto;
}
.blogcard-area .post-card .card-excerpt {
  overflow-x: hidden;
  margin-bottom: 20px;
}
.blogcard-area .post-card .continue-link {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.blogcard-area .post-card .continue-link:hover {
  color: #D7EBD3;
}
.blogcard-area.featured-blogcard {
  flex-wrap: wrap;
  margin-top: 50px;
}
.blogcard-area.featured-blogcard h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}
.blogcard-area.featured-blogcard .post-card {
  width: 30%;
  min-width: 140px;
  margin: 10px clamp(2px, 1vw, 10px);
}
.blogcard-area.featured-blogcard .post-card .post-categories,
.blogcard-area.featured-blogcard .post-card .card-excerpt {
  display: none;
}
@media screen and (max-width: 600px) {
  .blogcard-area.featured-blogcard .post-card {
    width: 280px;
    max-width: 90%;
  }
}

.author-main .h1-group {
  margin: clamp(40px, 10vw, 100px) auto clamp(30px, 6vw, 60px) auto;
}
.author-main .author-profile {
  justify-content: center;
}
.author-main .author-profile .left-col .img-container {
  width: clamp(60px, 20vw, 150px);
  height: clamp(60px, 20vw, 150px);
  margin-bottom: 20px;
}
.author-main .author-profile .left-col .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 4px solid #D7EBD3;
}
.author-main .author-profile .right-col {
  width: 800px;
  max-width: 90%;
  margin: 0 0 clamp(40px, 10vw, 100px) 40px;
}
.author-main .author-profile .right-col .author-intro {
  box-sizing: border-box;
  padding: 0px 10px 20px 10px;
}
.author-main .author-profile .right-col .author-intro h3 {
  margin-bottom: 16px;
}
.author-main .author-profile .right-col .author-intro p {
  text-align: justify;
}
@media screen and (max-width: 500px) {
  .author-main .author-profile {
    flex-direction: column;
    align-items: center;
  }
  .author-main .author-profile .right-col {
    margin-left: 0;
  }
}

.search-input-group input {
  min-width: clamp(100px, 25vw, 240px);
  line-height: 200%;
  padding-left: 5px;
}
.search-input-group input[type=submit] {
  width: 50px;
  margin: auto 10px;
  min-width: unset;
}

.search-main .h1-group,
.search-main .no-search {
  word-break: break-word;
}
.search-main .h1-group {
  margin-top: clamp(70px, 10vw, 140px);
}
.search-main .h1-group h3 {
  background-color: #eeeeee;
  box-sizing: border-box;
  padding: clamp(10px, 1vw, 20px);
  align-items: center;
  line-height: 160%;
}
.search-main .h1-group h3 input {
  height: 100%;
  background-color: white;
  border: none;
  margin-left: 10px;
  padding: 10px 5px;
  font-size: 1em;
  line-height: 160%;
}
.search-main .searchlist-area {
  margin: 40px auto;
}
.search-main .searchlist-area .total-results {
  color: #707070;
}
.search-main .searchlist-area .no-search {
  text-align: center;
  line-height: 160%;
}
.search-main .searchlist-area .search-confirm {
  align-items: center;
  margin: 40px auto clamp(40px, 10vw, 100px) auto;
}
.search-main .searchlist-area .search-confirm input {
  margin-right: 20px;
}
.search-main .searchlist-area .search-hint {
  margin-bottom: 10px;
}
.search-main .searchlist-area ul.hint-list {
  padding-left: 20px;
}
.search-main .searchlist-area ul.hint-list li {
  line-height: 180%;
}
@media screen and (max-width: 500px) {
  .search-main .search-confirm {
    flex-direction: column-reverse;
  }
  .search-main .search-confirm input {
    margin-top: 10px;
  }
}

/*# sourceMappingURL=main.css.map */
