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

h1,
.h1-like {
  font-size: 36px;
  font-family: dnp-shuei-mincho-pr6n, sans-serif;
  font-weight: 400;
}
h1.front-h1,
.h1-like.front-h1 {
  font-size: 24px;
}

h2,
.h2-like {
  font-size: 28px;
  font-family: dnp-shuei-mincho-pr6n, sans-serif;
  font-weight: 400;
  color: #D0AE00;
}

h3,
.h3-like {
  font-size: 20px;
  font-weight: 700;
}

h4,
.h4-like {
  font-size: 16px;
  font-weight: 700;
  font-weight: bold;
}

p,
.p-like {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05rem;
  line-height: 180%;
}

.p-small {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.05rem;
  line-height: 180%;
}

ul li, ol li {
  font-size: 14px;
  letter-spacing: 0.05rem;
  font-weight: 400;
}

.p-28 {
  font-size: 24px;
}

@media screen and (min-width: 500px) {
  h1,
.h1-like {
    font-size: 48px;
  }
  h1.front-h1,
.h1-like.front-h1 {
    font-size: 28px;
  }

  h2,
.h2-like {
    font-size: 32px;
  }

  h3,
.h3-like {
    font-size: 20px;
  }

  h4,
.h4-like {
    font-size: 16px;
  }

  p,
.p-like {
    font-size: 14px;
  }

  .p-small {
    font-size: 10px;
  }

  ul li, ol li {
    font-size: 14px;
  }

  .p-28 {
    font-size: 24px;
  }
}
@media screen and (min-width: 800px) {
  h1,
.h1-like {
    font-size: 64px;
  }
  h1.front-h1,
.h1-like.front-h1 {
    font-size: 32px;
  }

  h2,
.h2-like {
    font-size: 36px;
  }

  h3,
.h3-like {
    font-size: 24px;
  }

  h4,
.h4-like {
    font-size: 18px;
  }

  p,
.p-like {
    font-size: 16px;
    line-height: 200%;
  }

  .p-small {
    font-size: 11px;
  }

  ul li, ol li {
    font-size: 16px;
  }

  .p-28 {
    font-size: 28px;
  }
}
@media screen and (min-width: 1200px) {
  h1,
.h1-like {
    font-size: 80px;
  }
  h1.front-h1,
.h1-like.front-h1 {
    font-size: 35px;
  }

  h2,
.h2-like {
    font-size: 40px;
  }

  h3,
.h3-like {
    font-size: 24px;
  }

  h4,
.h4-like {
    font-size: 18px;
  }

  p,
.p-like {
    font-size: 16px;
  }

  .p-small {
    font-size: 12px;
  }

  ul li, ol li {
    font-size: 16px;
  }

  .p-28 {
    font-size: 28px;
  }
}
.font-shuei-l {
  font-family: dnp-shuei-mincho-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font-yugothic {
  font-family: yu-gothic-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.hamburger {
  cursor: pointer;
  display: none;
  position: relative;
  width: 30px;
  height: 25px;
  z-index: 302;
  transform: rotate(0deg);
  transform-origin: bottom;
  transition: 0.5s ease-in-out;
}
.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #D3B413;
  border-radius: 6px;
  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: 11px;
  transform-origin: left center;
}
.hamburger span:nth-child(3) {
  top: 22px;
  transform-origin: left center;
}
.hamburger:hover span {
  background-color: #D0AE00;
}
.hamburger.active-ham {
  position: fixed;
  top: clamp(10px, 6vw, 36px);
  right: 6vw;
  margin-top: 2vw;
}
.hamburger.active-ham span {
  background: #3E3A27;
  filter: unset;
}
.hamburger.active-ham span:nth-child(1) {
  transform: rotate(45deg);
  top: -5px;
  left: 8px;
}
.hamburger.active-ham span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.hamburger.active-ham span:nth-child(3) {
  transform: rotate(-45deg);
  top: 16px;
  left: 8px;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  height: 200px;
  width: 100%;
  background-color: none;
  box-sizing: border-box;
  color: #ffffff;
  align-items: center;
  justify-content: space-between;
  z-index: 300;
}
header .header-logo {
  width: 114px;
  margin: 10px 0 10px 7.4vw;
}
header .nav-container {
  display: flex;
  justify-content: flex-end;
  margin-right: 6.5%;
}
header .nav-container .nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .nav-container ul {
  list-style: none;
  text-transform: uppercase;
}
header .nav-container ul li {
  margin: auto 4.6vw auto 0;
}
header .nav-container ul li:last-of-type {
  margin-right: 0;
}
header .nav-container ul li a {
  font-family: dnp-shuei-mincho-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  font-size: 25px;
}
header .nav-container ul li a:hover {
  opacity: 0.6;
}
header .nav-container .hamburger {
  display: none;
}
@media screen and (max-width: 1200px) {
  header .nav-container {
    display: flex;
    justify-content: flex-end;
    margin-right: 6.5%;
  }
  header .nav-container .nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  header .nav-container ul {
    list-style: none;
    text-transform: uppercase;
  }
  header .nav-container ul li {
    margin: auto 4.6vw auto 0;
  }
  header .nav-container ul li:last-of-type {
    margin-right: 0;
  }
  header .nav-container ul li a {
    font-family: dnp-shuei-mincho-pr6n, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    font-size: 16px;
  }
  header .nav-container ul li a:hover {
    opacity: 0.6;
  }
  header .nav-container .hamburger {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  header .header-logo {
    width: 102.6px;
  }
}
@media screen and (max-width: 800px) {
  header {
    position: fixed;
    height: 100px;
  }
  header .header-logo {
    width: 91.2px;
    margin: 0 0 0 2vw;
  }
  header .nav-container {
    align-items: center;
  }
  header .nav-container .nav-menu {
    display: none;
  }
  header .nav-container .hamburger {
    display: block;
  }
  header .nav-container.open-menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    margin-right: 0;
    z-index: 300;
    animation: slidein 0.2s ease-in-out;
    background-color: #FAF1C4;
    border-left: 1px solid #A8D7CC;
  }
  header .nav-container.open-menu .nav-menu {
    display: flex;
    margin: 70px 0 0 0;
    padding-top: 6vh;
    padding-left: 40px;
    z-index: 101;
    flex-direction: column;
    align-items: flex-start;
  }
  header .nav-container.open-menu .nav-menu li {
    margin: 2vh 0;
  }
  header .nav-container.open-menu .nav-menu li a {
    color: #464646;
    font-size: 20px;
  }
  header .nav-container.open-menu .nav-menu li a:before {
    content: "▶︎";
    font-size: 1em;
    margin-right: 0.5em;
  }
  header .nav-container.open-menu .nav-menu::before {
    content: "";
    display: block;
    position: absolute;
    top: 2vw;
    left: 2vw;
    width: 100px;
    height: 70px;
    z-index: 102;
    background: url(../img/logo.svg) center no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width: 600px) {
  header {
    height: 80px;
  }
  header .header-logo {
    width: 60px;
  }
  header .nav-container.open-menu {
    max-width: unset;
  }
}

.sns-icons {
  display: none;
}

@media screen and (min-width: 800px) {
  .sns-icons {
    display: block;
    position: fixed;
    top: 50%;
    right: 1.6%;
    transform: translateY(-50%);
    z-index: 200;
  }
  .sns-icons .icon-wrapper {
    width: 45px;
    height: 45px;
    background-color: #DEC53F;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px 0;
  }
  .sns-icons .icon-wrapper img {
    height: 25px;
    max-height: 80%;
    width: auto;
    margin: auto;
  }
}
@keyframes slidein {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0%);
  }
}
section.footer-contact {
  width: 100%;
  max-width: 100%;
  background: url(../img/common/contact-bg-banner.webp) center no-repeat;
  background-size: cover;
  padding: clamp(40px, 10vw, 100px) 0;
  margin-bottom: -1px;
}
section.footer-contact .contact-info {
  width: 500px;
  max-width: 85.5%;
  align-items: center;
}
section.footer-contact .contact-info .h2-group {
  align-items: center;
  align-self: center;
  margin-bottom: 24px;
}
section.footer-contact .contact-info .h2-group h2, section.footer-contact .contact-info .h2-group h4 {
  text-align: center;
  color: #ffffff;
}
section.footer-contact .contact-info .h2-group .bottom-line {
  background-color: #ffffff;
}
section.footer-contact .contact-info .text-body {
  color: #ffffff;
}
section.footer-contact .contact-info .contact-btn {
  background-color: #EFE197;
  text-align: center;
  line-height: 100%;
  padding: 1.1em 0;
  width: 426px;
  max-width: 90%;
  margin-top: 50px;
}
section.footer-contact .contact-info .contact-btn:hover {
  opacity: 0.6;
}

footer {
  width: 100%;
  align-items: center;
  background-color: #727272;
  color: #ffffff;
}
footer li a {
  color: #ffffff;
}
footer li a:hover {
  color: #A8D7CC;
}
footer .footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 0 auto;
  flex-wrap: wrap;
  list-style-type: none;
  text-transform: capitalize;
  box-sizing: border-box;
  padding: clamp(60px, 10vw, 120px) calc(clamp(60px, 9vw, 114px) + 20px) clamp(60px, 10vw, 130px) calc(clamp(60px, 9vw, 114px) + 20px);
  background: url(../img/logo-b.svg) left top 30px no-repeat;
  background-size: clamp(60px, 9vw, 114px);
}
footer .footer-menu li {
  margin: clamp(5px, 1vw, 15px);
}
footer .footer-menu li a {
  font-family: dnp-shuei-mincho-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}
footer .footer-menu li:before {
  content: "ー";
  margin-right: 6px;
}
@media screen and (max-width: 600px) {
  footer .footer-menu {
    flex-direction: column;
  }
  footer .footer-menu li {
    margin: 16px 0;
  }
  footer .footer-menu li a {
    font-size: 16px;
  }
  footer .footer-menu li:before {
    content: "";
  }
}

body .img-container img {
  width: clamp(100px, 20vw, 200px);
}
body.page-loaded #load-screen {
  opacity: 0 !important;
  transition: opacity 1s ease-in 0.5s;
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.loading-circle {
  width: 60px;
  height: 60px;
  margin: 30px auto 0;
  border: solid 5px #000000;
  border-radius: 50%;
  border-right-color: transparent;
  border-bottom-color: transparent;
  -webkit-transition: all 0.5s ease-in;
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  transition: all 0.5s ease-in;
  animation-name: rotate;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

body {
  font-size: 16px;
  color: #464646;
  font-family: "Yu Gothic", "yu-gothic-pr6n", yu-gothic-pr6n, "Noto Sans JP", Noto Sans JP, YuGothic, Meiryo, sans-serif;
  font-weight: 500;
  letter-spacing: 0.075rem;
  margin: 0 0 0 0;
  overflow-x: hidden;
}

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

section {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  align-self: center;
}

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

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

.a-btn:link,
.a-btn:visited,
.a-btn:active,
.a-btn {
  border: 2px solid #A8D7CC;
  background-color: #ffffff;
  color: #A8D7CC;
  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 #F4F8F7;
  color: #F4F8F7;
  background-color: #EFEFEF;
}

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

.view-more-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.view-more-btn p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(60px, 10vw, 95px);
  height: clamp(60px, 10vw, 95px);
  text-align: center;
  line-height: 120%;
  border: 1px solid #727272;
  border-radius: 50%;
  z-index: 1;
}
.view-more-btn img {
  margin-left: -16px;
  width: clamp(40px, 8vw, 100px);
  z-index: 2;
}
.view-more-btn:hover {
  opacity: 0.6;
}

.h2-group {
  display: flex;
  flex-direction: column;
  width: fit-content;
}
.h2-group h2 {
  line-height: 200%;
}
.h2-group h4 {
  line-height: 100%;
  margin-bottom: 20px;
  color: #D0AE00;
  font-weight: bold;
}
.h2-group .bottom-line {
  display: block;
  width: 34px;
  height: 1px;
  background-color: #D0AE00;
}

.page-landing {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 660px;
}
.page-landing .annotation {
  display: flex;
  flex-direction: column;
  position: absolute;
  align-items: center;
  left: 4.6%;
  bottom: 6vh;
}
.page-landing .annotation p {
  writing-mode: vertical-lr;
  line-height: 100%;
  color: #DEC53F;
}
.page-landing .annotation:before {
  content: "";
  display: block;
  background-color: #DEC53F;
  width: 1px;
  height: clamp(40px, 10vw, 95px);
  margin-bottom: 10px;
}
.page-landing .title-container h1, .page-landing .title-container p {
  color: #ffffff;
}

section.concept {
  margin: clamp(100px, 20vw, 200px) auto clamp(180px, 16vw, 250px);
  background: url(../img/hotel/flower.svg) right 16% top 200px no-repeat;
  background-size: clamp(80px, 21%, 215px);
}
@media screen and (max-width: 1600px) {
  section.concept {
    background-position: right 6% top 0px;
  }
}
@media screen and (max-width: 1200px) {
  section.concept {
    background: unset;
  }
}
section.concept .img-container {
  position: relative;
  box-sizing: border-box;
  width: 880px;
  max-width: 50%;
  padding-left: clamp(32px, 33vw, 50px);
  padding-bottom: clamp(24px, 26vw, 40px);
  margin: 0 0 50px 8%;
}
section.concept .img-container .concept-img {
  width: 100%;
  object-fit: cover;
  z-index: 2;
}
section.concept .img-container .circle {
  position: absolute;
  width: clamp(100px, 14vw, 145px);
  top: clamp(-40px, -5vw, -60px);
  left: -20px;
  z-index: 3;
}
section.concept .img-container .img-bg {
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 95%;
  height: 86%;
  z-index: -1;
}
section.concept .text-container {
  width: 450px;
  max-width: 45%;
  margin: 0 3% 0 3%;
  align-self: flex-end;
}
section.concept .text-container .h2-group {
  margin-bottom: 32px;
}
section.concept .text-container h3 {
  margin-bottom: 1em;
}
section.concept.hotel-concept .img-container .img-bg {
  background-color: #FAEFAD;
}
section.concept.trimming-concept .img-container .img-bg {
  background-color: #85C7B8;
}
@media screen and (max-width: 1200px) {
  section.concept {
    flex-direction: column;
    align-items: center;
  }
  section.concept .img-container {
    margin: 0 auto 50px auto;
    max-width: 85.5%;
  }
  section.concept .text-container {
    margin: 0 auto;
    max-width: 85.5%;
  }
}
@media screen and (max-width: 600px) {
  section.concept .img-container {
    padding: 0 0 0 0;
  }
  section.concept .img-container .img-bg {
    display: none;
  }
}

.facility-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 95px;
  margin-bottom: clamp(160px, 22vw, 220px);
}
.facility-wrapper .facility-bg {
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  height: 66%;
  width: 100%;
  z-index: -1;
  background-color: #85C7B8;
  opacity: 0.38;
}
.facility-wrapper .facility-bg.trimming-facility-bg {
  background-color: #FAEFAD;
}

section.facility .h2-group {
  margin-bottom: clamp(40px, 8vw, 80px);
  margin-left: 20px;
}
section.facility .splide .splide__slide .slide-content {
  align-items: flex-end;
}
section.facility .splide .splide__slide .slide-content .img-container {
  width: 600px;
  height: clamp(280px, 33vw, 500px);
  max-width: 60%;
}
section.facility .splide .splide__slide .slide-content .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.facility .splide .splide__slide .slide-content .text-container {
  width: 325px;
  max-width: 35%;
  margin-left: 5%;
}
section.facility .splide .splide__slide .slide-content .text-container h3 {
  margin: auto 0 1em 0;
}
@media screen and (max-width: 600px) {
  section.facility .splide .splide__slide .slide-content {
    flex-direction: column;
    align-items: center;
  }
  section.facility .splide .splide__slide .slide-content .img-container {
    max-width: 80%;
    margin-bottom: 40px;
  }
  section.facility .splide .splide__slide .slide-content .text-container {
    width: 400px;
    max-width: 80%;
  }
}
@media screen and (max-width: 1280px) {
  section.facility .splide .splide__arrows .splide__arrow--prev {
    left: -1em;
  }
  section.facility .splide .splide__arrows .splide__arrow--next {
    right: -1em;
  }
}
@media screen and (max-width: 1000px) {
  section.facility .splide .splide__arrows .splide__arrow--prev {
    left: -2em;
  }
  section.facility .splide .splide__arrows .splide__arrow--next {
    right: -2em;
  }
}

section.price {
  align-items: center;
  margin-bottom: clamp(60px, 10vw, 100px);
}
section.price .h2-group {
  text-align: center;
  align-items: center;
}
section.price .table-container.trimming-tc {
  max-width: 92%;
}
section.price .table-container table {
  margin-top: 35px;
  width: 100%;
}
section.price .table-container table th, section.price .table-container table td {
  box-sizing: border-box;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  padding: 28px;
  border-bottom: 6px solid #ffffff;
  border-top: unset;
}
section.price .table-container table th {
  width: 24%;
  background-color: #3E3A27;
  color: #ffffff;
}
section.price .table-container table td {
  width: 76%;
  background-color: #EFEFEF;
  color: #D3B413;
}
@media screen and (max-width: 800px) {
  section.price .table-container table th, section.price .table-container table td {
    padding: 14px 5px;
    border-bottom: 3px solid #ffffff;
  }
  section.price .table-container table th {
    font-size: 14px;
    width: 40%;
  }
  section.price .table-container table td {
    font-size: 16px;
    width: 60%;
  }
}
section.price .table-container table.trimming-price {
  border-collapse: separate;
  border-spacing: 5px;
}
section.price .table-container table.trimming-price th, section.price .table-container table.trimming-price td {
  width: 25%;
  border-bottom: unset;
}
section.price .table-container table.trimming-price th.first-row, section.price .table-container table.trimming-price td.first-row {
  background-color: #A8D7CC;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  section.price .table-container table.trimming-price {
    border-spacing: 2px;
  }
  section.price .table-container table.trimming-price th, section.price .table-container table.trimming-price td {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  section.price .table-container table.trimming-price th, section.price .table-container table.trimming-price td {
    font-size: 10px;
  }
}

section.option {
  margin-bottom: clamp(180px, 24vw, 240px);
}
section.option .h2-group {
  margin-bottom: 30px;
}
section.option .content-container {
  width: 1020px;
}
section.option .option-row {
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
section.option .option-row .option-card {
  margin: 20px 10px;
  width: clamp(160px, 29%, 290px);
}
section.option .option-row .option-card img {
  width: 100%;
  height: clamp(160px, 25vw, 290px);
}
section.option .option-row .option-card .gold-h4 {
  width: 100%;
  margin: 1.5em 0;
  color: #D3B413;
  font-weight: bold;
}
@media screen and (max-width: 650px) {
  section.option .option-row {
    justify-content: space-evenly;
  }
}

section.p-information {
  align-items: center;
  margin-bottom: clamp(100px, 18vw, 180px);
}
section.p-information .h2-group {
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}
section.p-information .content-container .content-row {
  box-sizing: border-box;
  width: 100%;
  border-bottom: 1px solid #727272;
  padding: clamp(10px, 2vw, 20px) 0;
}
section.p-information .content-container .content-row .left-col {
  box-sizing: border-box;
  width: 40%;
  padding-right: 15px;
  text-align: start;
}
section.p-information .content-container .content-row .left-col p {
  font-weight: bold;
}
section.p-information .content-container .content-row .right-col {
  text-align: start;
  box-sizing: border-box;
  width: 60%;
  padding-right: 10px;
}

.two-col {
  width: 96%;
  max-width: 1200px;
  margin: auto;
  align-self: center;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
.two-col > * {
  width: 500px;
  max-width: 45%;
}
@media screen and (max-width: 1000px) {
  .two-col {
    flex-direction: column;
    justify-content: flex-start;
    margin: auto;
  }
  .two-col .left-col,
.two-col .right-col {
    width: 600px;
    max-width: 80%;
  }
}

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

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

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

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

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

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

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

.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: #727272;
}
.nav-elements a:hover {
  color: #EBD45B;
}
.nav-elements .return-btn img {
  position: absolute;
  width: clamp(24px, 4vw, 40px);
  left: calc(50% - 20px);
  top: 0;
}

.blog-main {
  min-height: 40vh;
  background-color: lightblue;
  padding: clamp(40px, 10vw, 100px) 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: clamp(20px, 5vw, 50px) clamp(20px, 5vw, 100px) clamp(40px, 10vw, 100px) clamp(20px, 5vw, 100px);
}
.bloglist-area .post-row {
  width: 100%;
  margin: 20px auto;
}
.bloglist-area .post-row .blog-title,
.bloglist-area .post-row .blog-date {
  padding: 5px;
}
.bloglist-area .post-row .blog-date {
  color: #727272;
  margin-right: 20px;
}
.bloglist-area .blog-excerpt-row .post-row {
  border-bottom: 2px solid #A8D7CC;
  line-height: 180%;
  margin-bottom: 0;
}
.bloglist-area .blog-excerpt-row .blog-excerpt {
  box-sizing: border-box;
  overflow-x: hidden;
  width: 100%;
  padding: 5px;
}
.bloglist-area .blog-excerpt-row .more-btn {
  color: #727272;
  font-size: 0.8em;
  margin-left: 5px;
}
.bloglist-area .blog-excerpt-row .more-btn:hover {
  color: lightgray;
}
@media screen and (max-width: 800px) {
  .bloglist-area .post-row {
    flex-direction: column;
    max-width: 600px;
  }
  .bloglist-area .post-row.excerpt-row {
    line-height: 140%;
  }
  .bloglist-area .post-row.excerpt-row .blog-date {
    line-height: 100%;
    font-size: 0.6em;
    padding-bottom: 0;
  }
  .bloglist-area .post-row:not(.excerpt-row) .blog-date {
    border-bottom: 2px solid #A8D7CC;
    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: #A8D7CC;
  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: #A8D7CC;
}
.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 #A8D7CC;
}
.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: #727272;
}
.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 */
