@charset "UTF-8";
/***
    The new CSS reset - version 1.7.3 (last updated 7.8.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
  vertical-align: bottom;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

.mob-show {
  display: none;
}
@media (max-width: 768px) {
  .mob-show {
    display: block !important;
  }
}

.mob-clear {
  display: block;
}
@media (max-width: 768px) {
  .mob-clear {
    display: none !important;
  }
}

.mob-hidden {
  visibility: visible;
}
@media (max-width: 768px) {
  .mob-hidden {
    visibility: hidden !important;
  }
}

.pad-show {
  display: none;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .pad-show {
    display: block !important;
  }
}

.pad-clear {
  display: block;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .pad-clear {
    display: none !important;
  }
}

.pad-hidden {
  visibility: visible;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .pad-hidden {
    visibility: hidden !important;
  }
}

.web-show {
  display: none;
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .web-show {
    display: block !important;
  }
}

.web-clear {
  display: block;
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .web-clear {
    display: none !important;
  }
}

.web-hidden {
  visibility: visible;
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .web-hidden {
    visibility: hidden !important;
  }
}

.max-show {
  display: none;
}
@media (min-width: 1281px) and (max-width: 1600px) {
  .max-show {
    display: block !important;
  }
}

.max-clear {
  display: block;
}
@media (min-width: 1281px) and (max-width: 1600px) {
  .max-clear {
    display: none !important;
  }
}

.max-hidden {
  visibility: visible;
}
@media (min-width: 1281px) and (max-width: 1600px) {
  .max-hidden {
    visibility: hidden !important;
  }
}

.mob-pad-show {
  display: none;
}
@media (max-width: 1024px) {
  .mob-pad-show {
    display: block !important;
  }
}

.mob-pad-clear {
  display: block;
}
@media (max-width: 1024px) {
  .mob-pad-clear {
    display: none !important;
  }
}

.mob-pad-hidden {
  visibility: visible;
}
@media (max-width: 1024px) {
  .mob-pad-hidden {
    visibility: hidden !important;
  }
}

.pad-web-show {
  display: none;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .pad-web-show {
    display: block !important;
  }
}

.pad-web-clear {
  display: block;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .pad-web-clear {
    display: none !important;
  }
}

.pad-web-hidden {
  visibility: visible;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .pad-web-hidden {
    visibility: hidden !important;
  }
}

.web-max-show {
  display: none;
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .web-max-show {
    display: block !important;
  }
}

.web-max-clear {
  display: block;
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .web-max-clear {
    display: none !important;
  }
}

.web-max-hidden {
  visibility: visible;
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .web-max-hidden {
    visibility: hidden !important;
  }
}

.mob-web-show {
  display: none;
}
@media (max-width: 1280px) {
  .mob-web-show {
    display: block !important;
  }
}

.mob-web-clear {
  display: block;
}
@media (max-width: 1280px) {
  .mob-web-clear {
    display: none !important;
  }
}

.mob-web-hidden {
  visibility: visible;
}
@media (max-width: 1280px) {
  .mob-web-hidden {
    visibility: hidden !important;
  }
}

.mob-max-show {
  display: none;
}
@media (max-width: 1600px) {
  .mob-max-show {
    display: block !important;
  }
}

.mob-max-clear {
  display: block;
}
@media (max-width: 1600px) {
  .mob-max-clear {
    display: none !important;
  }
}

.mob-max-hidden {
  visibility: visible;
}
@media (max-width: 1600px) {
  .mob-max-hidden {
    visibility: hidden !important;
  }
}

.pad-max-show {
  display: none;
}
@media (min-width: 769px) and (max-width: 1600px) {
  .pad-max-show {
    display: block !important;
  }
}

.pad-max-clear {
  display: block;
}
@media (min-width: 769px) and (max-width: 1600px) {
  .pad-max-clear {
    display: none !important;
  }
}

.pad-max-hidden {
  visibility: visible;
}
@media (min-width: 769px) and (max-width: 1600px) {
  .pad-max-hidden {
    visibility: hidden !important;
  }
}

.padding-16 {
  padding-left: 16px;
  padding-right: 16px;
}

.max-width-1080 {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.max-width-540 {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.vector-30 {
  width: 1000px;
  height: 0;
  left: calc(50% - 500px + 516.5px);
  top: 2121px;
  border: 4px dashed #1A2C61;
}

.bold {
  font-weight: bold !important;
}

.tal {
  text-align: left !important;
}

.tar {
  text-align: right !important;
}

.tac {
  text-align: center !important;
}

.articlebox {
  margin-top: min(40px, 1vw);
}

/* wrapper */
.wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 16px;
}

.contents_wrapper {
  max-width: 1024px;
  margin: 160px auto 0;
  padding: 0 16px;
}

@media (max-width: 768px) {
  .contents_wrapper {
    margin-top: 80px;
  }
}
.sec_wrapper {
  margin-top: 160px;
}

@media (max-width: 768px) {
  .sec_wrapper {
    margin-top: 80px;
  }
}
* {
  backface-visibility: hidden; /* animation時のにじみ防止 */
  -webkit-backface-visibility: hidden; /* animation時のにじみ防止 */
  -webkit-font-smoothing: antialiased; /* animation時の文字にじみ防止 */
  -moz-osx-font-smoothing: grayscale; /* animation時の文字にじみ防止 */
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Zen Maru Gothic", "Nunito", Arial, Meiryo, sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  background-color: #FFFCF5;
  line-height: 1.6;
  color: #393939;
  margin: 0 auto;
  background-color: #FFFCF5;
  background-size: auto;
  background-position: center;
  background-repeat: repeat;
  max-width: 100%;
}
body .zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body .zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}
body .zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}
body .zen-maru-gothic-black {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-style: normal;
}
body .nunito {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic;
}

main {
  margin: 0 auto;
  overflow-x: hidden;
}

section {
  margin-top: min(120px, 25vw);
}

input[type=checkbox] {
  border: 1px solid #393939;
  width: 16px;
  height: 16px;
  padding: 0;
}

ul, ol, dl, li, strong, dt, dd, p, div, span, a, article, label, input, select, textarea {
  font-size: calc(14px + (16 - 14) * (100vw - 414px) / (1280 - 414));
  font-weight: normal;
  color: #404459;
}

a {
  transition-duration: 0.2s;
  transition-duration: 0.4s;
}
a img {
  transition: transform 0.3s ease;
}
a:hover {
  cursor: pointer;
}
a:hover img {
  transform: scale(1.05);
}

p.desc {
  margin-top: min(4px, 0.4vw);
  text-align: justify;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

/* font-size */
p, li {
  font-weight: 600;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  line-height: 1.6;
  letter-spacing: 0.04rem;
}
@media (max-width: 768px) {
  p, li {
    line-height: 1.6;
    text-align: justify;
  }
}

.en {
  font-size: clamp(1.5rem, 1.045rem + 2.27vw, 2.75rem);
  font-size: clamp(1.25rem, 0.795rem + 2.27vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.4rem;
  text-align: center;
}

.ja {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.8rem);
  font-weight: 900;
  text-align: center;
}

h2.ttl {
  font-size: clamp(1.5rem, 1.227rem + 1.36vw, 2.25rem);
  font-weight: 700;
  text-shadow: 0 0 0.4px currentColor;
  color: #218B7F;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
h2.ttl .ttl-inner {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
}
@media (max-width: 768px) {
  h2.ttl .ttl-inner {
    gap: 8px;
  }
}
h2.ttl .ja {
  font-weight: 600;
  font-size: clamp(1.063rem, 0.813rem + 1.25vw, 1.75rem);
  letter-spacing: 0.08rem;
}
h2.ttl .en {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  line-height: 1.5;
}

.ttl-icon {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-items: center;
}
@media (max-width: 768px) {
  .ttl-icon {
    max-width: 24px;
  }
}

h3.en.ttl {
  font-size: clamp(1.5rem, 1.045rem + 2.27vw, 2.75rem);
  font-weight: 600;
  color: #218B7F;
  letter-spacing: 0.1em;
  padding-bottom: 16px;
}

h3.ttl {
  font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem);
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  font-weight: 600;
  padding-bottom: 16px;
}

.st-bold {
  font-size: 1rem;
  font-weight: 800;
  padding: 16px 0;
}

h3.ttl .en {
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
}
h3.ttl .en span {
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  font-weight: 800;
  color: #218B7F;
}
h3.ttl .ja {
  font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem);
}

/* header */
.header_mv {
  position: relative;
}
.header_mv .wrapper {
  padding: 0;
}

.header_mv > .wrapper {
  padding: 0;
}

.header_contents {
  width: 100%;
  max-width: 1600px;
  position: fixed;
  display: flex;
  justify-content: center;
  gap: min(40px, 4vw);
  z-index: 20;
  top: 24px;
  padding: 0 16px 0 0;
}
@media (max-width: 768px) {
  .header_contents {
    justify-content: left;
    gap: 16px;
  }
}

.header_menu {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border-radius: 40px;
  padding: 16px 40px;
  box-shadow: 0 0px 8px rgba(90, 90, 90, 0.1);
}

.header_logo img {
  height: 64px;
}

@media (max-width: 1024px) {
  .header_menu {
    line-height: 1;
    padding: 12px 20px;
  }
}
@media (max-width: 768px) {
  .header_contents {
    top: 28px;
  }
  .header_logo img {
    height: 40px;
  }
}
@media (max-width: 768px) {
  .header_menu {
    display: none;
  }
}
/* menulist */
.menulist {
  line-height: 1.3;
}
.menulist:not(:last-of-type) {
  border-right: 1.6px solid #7ea9a4;
  padding-right: 24px;
}
.menulist:not(:first-of-type) {
  padding-left: 24px;
}
@media (max-width: 1024px) {
  .menulist:not(:last-of-type) {
    border-right: 1.2px solid #7ea9a4;
    padding-right: 10px;
  }
  .menulist:not(:first-of-type) {
    padding-left: 10px;
  }
}
.menulist .en {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 1.5px;
}
.menulist .ja {
  font-weight: 700;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-size: clamp(0.688rem, 0.574rem + 0.57vw, 1rem);
}
.menulist p.en, .menulist p.ja {
  transition: all 0.3s ease;
}
.menulist:hover p.en, .menulist:hover p.ja {
  color: #218B7F;
  scale: 1.05;
}

@media (max-width: 1280px) {
  .menulist .en {
    font-size: 16px;
  }
}
.openbtn {
  position: fixed;
  z-index: 9999;
  top: 10px;
  top: 24px;
  right: 12px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border: 0px solid #404459;
  box-shadow: 0 0px 8px rgba(90, 90, 90, 0.1);
  background: rgb(255, 251, 244);
  box-sizing: content-box;
  border-radius: 4px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.3s;
  position: absolute;
  right: 10px;
  height: 3px;
  border-radius: 4px;
  background-color: #404459;
  width: 32px;
}
.openbtn span:nth-of-type(1) {
  top: 16px;
  width: 28px;
  background-color: #218B7F;
}
.openbtn span:nth-of-type(2) {
  top: 24px;
  width: 28px;
  background-color: #218B7F;
}
.openbtn span:nth-of-type(3) {
  top: 32px;
  width: 28px;
  background-color: #218B7F;
}
.openbtn:hover span:nth-of-type(1) {
  top: 14px;
}
.openbtn:hover span:nth-of-type(3) {
  top: 34px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 8px;
  transform: translateY(6px) rotate(-45deg);
  width: 32px;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 8px;
  transform: translateY(-6px) rotate(45deg);
  width: 32px;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

.header_nav_hum {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: rgba(244, 244, 244, 0.94);
  background-size: cover;
  background-position: left left;
  background-repeat: no-repeat;
  transition: all 0.6s;
  background-repeat: repeat-x;
  background-size: cover;
  animation: bgScroll 200s linear infinite;
}
.header_nav_hum.panelactive {
  right: 0;
}
.header_nav_hum.panelactive .header_nav_hum_wrapper {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.header_nav_hum .header_nav_hum_block {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 16px);
  text-align: center;
}
@keyframes bgScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.header_nav_hum_block .header_logo_mob {
  margin-bottom: 28px;
  max-width: 80px;
}
.header_nav_hum_block .header_nav_hum_list {
  margin-top: 120px;
}
.header_nav_hum_block li:not(:last-of-type) {
  padding-bottom: 36px;
}
.header_nav_hum_block a {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.header_nav_hum_block .menulistbox {
  margin-top: 40px;
}
.header_nav_hum_block .menulist {
  padding-left: 0;
  padding-right: 0;
}

.header_nav_hum_title {
  padding: 8px 16px;
  border-radius: 40px;
  border: 2px solid #404459;
  background-color: #fff;
  font-size: 16px;
  width: 80%;
  margin: 0 auto;
}

.header_nav_hum_img {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.header_nav_hum_img .header_nav_hum_img-inner img {
  width: 80%;
}

/* footer */
footer {
  position: relative;
  margin-top: min(98px, 25vw);
  padding-top: 60px;
  overflow-x: hidden;
  padding-top: 8.82vw;
}
footer .contents_wrapper {
  margin: 80px auto 0;
  max-width: 550px;
  padding: 80px 16px;
}
@media (max-width: 768px) {
  footer .contents_wrapper {
    margin-top: 40px;
    padding: 40px 16px;
  }
}
footer .bgtop {
  margin-top: -0.2px;
  z-index: 0;
  width: 100vw;
}
footer .bgtop img {
  width: 100vw;
}

section.footer-area {
  margin-top: -3px;
  padding-top: 3px;
  background-color: #218B7F;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  section.footer-area {
    padding-top: 24px;
  }
}
section.footer-area p, section.footer-area a {
  color: #fff;
  font-weight: 600;
}
section.footer-area a {
  text-decoration: underline;
}
section.footer-area .f_logo {
  width: 100%;
  max-width: 100px;
}
section.footer-area .sns-area {
  display: flex;
  gap: 16px;
}
section.footer-area .sns-area .btn {
  margin: 0;
  padding: 0;
}

.footer_cr {
  width: 100%;
  align-items: center;
  color: #218B7F;
  text-align: center;
  font-weight: 500;
  font-size: 0.87rem;
}

@media (max-width: 768px) {
  .footer_cr {
    width: 100%;
    height: 30px;
    line-height: 30px;
    color: #218B7F;
  }
}
.btn {
  display: flex;
  gap: 16px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  padding: 12px 36px;
  color: #fff;
  font-weight: 600;
  background-color: #1C8B7E;
  border-radius: 100px;
  transition-duration: 0.4s;
}
.btn:hover {
  background: #F6AA00;
  color: #404459;
  transform: scale(1.1);
}
.btn .btn-inner .en {
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.btn .btn-inner .ja {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.2px;
  line-height: 1.1;
}
.btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed-btn-outer {
  position: fixed;
  z-index: 990;
  width: 100%;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  padding: 20px 0 32px;
  background: linear-gradient(to top, rgba(253, 253, 253, 0.4) 0%, rgba(253, 253, 253, 0) 70%);
}

.fixed-btn {
  display: flex;
  gap: 16px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  padding: 12px 36px;
  color: #fff;
  font-weight: 600;
  background-color: #1C8B7E;
  border-radius: 100px;
  transition-duration: 0.4s;
  margin: 0;
  padding: 16px 40px;
  font-size: 1.1rem;
}
.fixed-btn:hover {
  background: #F6AA00;
  color: #404459;
  transform: scale(1.1);
}
.fixed-btn .btn-inner .en {
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.fixed-btn .btn-inner .ja {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.2px;
  line-height: 1.1;
}
.fixed-btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.box_img {
  border-radius: 20px;
  overflow: hidden;
}

.imgbox-outer {
  background-color: #F6AA00;
  padding: 8px;
  border-radius: 8px;
  width: 420px;
}
@media (max-width: 768px) {
  .imgbox-outer {
    width: 100%;
    min-width: unset !important;
  }
}
.imgbox-outer .imgbox {
  width: 100%;
}
.imgbox-outer .imgbox img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .imgbox-outer .imgbox {
    min-width: unset;
    max-height: 100%;
    width: 100%;
  }
}

.imgbox-outer360 {
  background-color: #F6AA00;
  padding: 8px;
  border-radius: 8px;
  max-width: 360px;
}
.imgbox-outer360 .imgbox {
  -webkit-mask-image: url(../assets/svg/common/mask_box_360.svg);
          mask-image: url(../assets/svg/common/mask_box_360.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 100%;
}
.imgbox-outer360 .imgbox img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .imgbox-outer360 .imgbox {
    min-width: unset;
    max-height: 100%;
    width: 100%;
  }
}

.cardbox-outer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 60px;
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cardbox-outer {
    justify-content: center;
    row-gap: 60px;
  }
}

.cardbox-list {
  min-width: 400px;
}
@media (max-width: 768px) {
  .cardbox-list {
    min-width: unset;
    margin: 0 auto;
  }
}

.cardbox {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  box-shadow: 0 0px 8px rgba(90, 90, 90, 0.1);
  max-width: 300px;
  background-color: #FDFDFD;
  padding: 32px 40px;
}
.cardbox .card-ttl {
  font-size: 20px;
  width: 100%;
  position: relative;
  line-height: 1.6;
}
.cardbox:nth-of-type(3n-2) .card-ttl {
  color: #218B7F;
}
.cardbox:nth-of-type(3n-1) .card-ttl {
  color: #218B7F;
}
.cardbox .card-disc {
  margin-top: 16px;
  text-align: justify;
  letter-spacing: 0;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-size: 0.88rem;
}
.cardbox .imgbox-outer360 {
  padding: 0;
  max-width: 360px;
}
@media (max-width: 768px) {
  .cardbox .imgbox-outer360 {
    max-width: unset;
  }
}
.cardbox a > img {
  transition: transform 0.3s ease;
  border-radius: 20px;
}
.cardbox a > img:hover {
  cursor: pointer;
  transform: scale(1.02);
}
.cardbox img {
  border-radius: 20px;
}

/* top */
.mv {
  position: relative;
  max-width: 1600px;
  padding-bottom: clamp(380px, 55vw, 600px);
  width: 100%;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .mv {
    border-radius: 0;
    width: 100%;
  }
}
.mv .fixed-btn {
  position: absolute;
  top: 60%;
  left: 70%;
  transform: translate(-50%);
  min-width: 370px;
  z-index: 10;
  padding: 10px 36px;
  font-size: 110%;
  transition-duration: 0.4s;
}
@media (max-width: 768px) {
  .mv .fixed-btn {
    top: 20%;
    left: 50%;
  }
}
.mv .fixed-btn:hover {
  padding: 12px 44px;
  font-size: 114%;
}

.mv_img {
  position: absolute;
  left: 0;
  width: 100%;
  max-width: 1080px;
  width: calc(100% - 32px);
  min-width: 375px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .mv_img {
    left: unset;
  }
}
.mv_img .mv_img-inner {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  min-height: 380px;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 5s ease, transform 8s ease;
}
.mv_img .mv_img-inner img {
  min-height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
@media (max-width: 768px) {
  .mv_img .mv_img-inner img {
    border-radius: 8px;
    -o-object-position: 100% 50%;
       object-position: 100% 50%;
  }
}
@media (max-width: 430px) {
  .mv_img .mv_img-inner img {
    -o-object-position: 80% 50%;
       object-position: 80% 50%;
  }
}
.mv_img .mv_img-inner.active {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
}
.mv_img .mv_img-inner.fadeout {
  opacity: 0;
  transform: scale(1.02);
  z-index: 1;
}

.mv_parts {
  position: absolute;
}
.mv_parts img {
  z-index: 20;
}

.mvdesc_outer {
  position: absolute;
  width: min(560px, 50vw);
  max-width: 560px;
  min-width: 370px;
  z-index: 20;
  top: 44%;
  left: 70%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .mvdesc_outer {
    top: 37%;
    left: 68%;
    max-width: 60vw;
    min-width: 220px;
    padding-right: 2vw;
  }
}
.mvdesc_outer .mv_ttl {
  font-size: clamp(0.875rem, 0.648rem + 1.14vw, 1.5rem);
  font-size: clamp(1rem, 0.648rem + 1.14vw, 1.5rem);
}
.mvdesc_outer .mv_subttl {
  font-size: clamp(0.563rem, 0.494rem + 0.34vw, 0.75rem);
  line-height: 1.5;
  padding-bottom: 0.14rem;
}
.mvdesc_outer .mv_desc {
  display: flex;
  justify-content: end;
}
.mvdesc_outer .mv_desc img {
  width: min(200px, 20vw);
}

.hero-txt h2, .hero-txt h3 {
  color: #218B7F;
}
.hero-txt h2 {
  font-weight: 900;
  font-size: clamp(1.5rem, 1rem + 2.5vw, 2.875rem);
  letter-spacing: 0.3rem;
  margin-bottom: max(60px, 2vw);
}
.hero-txt h3 {
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
}
.mvttl_outer {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}
.mvttl_outer .mv_ttl {
  background-color: rgba(43, 43, 43, 0.7);
  border-radius: 8px;
  padding: 8px 42px;
}
@media (max-width: 768px) {
  .mvttl_outer .mv_ttl {
    padding: 8px 32px;
    min-width: 240px;
  }
}
.mvttl_outer .mv_ttl p {
  color: #fff;
}
.mvttl_outer .mv_ttl .en {
  font-size: clamp(1.5rem, 1.227rem + 1.36vw, 2.25rem);
}
.mvttl_outer .mv_ttl .ja {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}

h2.ttl {
  flex-direction: column;
  color: #F6AA00;
}
h2.ttl .nunito {
  font-size: 28px;
  color: #218B7F;
  line-height: 1;
}

.greeting h2.ttl, .access h2.ttl, .sns h2.ttl {
  color: #218B7F;
}

.ttlbox {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.ttlbox img {
  display: block;
  max-width: 100px;
  margin: 0 auto;
}

p.desc.contsdesc {
  text-align: center;
}
@media (max-width: 768px) {
  p.desc.contsdesc {
    text-align: justify;
  }
}

.about.max-width-1080 {
  margin-top: max(60px, 4vw);
}

.about h2.ttl {
  color: #218B7F;
  line-height: 1.33;
}
.about .articlebox {
  display: flex;
  flex-direction: column;
  gap: min(24px, 1vw);
  justify-content: space-between;
  background: #FDFDFD;
  box-shadow: 0 0px 8px rgba(90, 90, 90, 0.1);
  border-radius: 20px;
  margin: 0;
  padding: 2rem 4rem;
}
@media (max-width: 960px) {
  .about .articlebox {
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem;
  }
}
.about .cardbox-outer {
  max-width: 760px;
}
.about .articlebox.aboutbox {
  flex-direction: row;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
@media (max-width: 768px) {
  .about .articlebox.aboutbox {
    flex-direction: column;
  }
}
.about .box_img {
  max-width: 320px;
  margin: 0 auto;
}
.about .cardbox-outer {
  gap: min(24px, 3vw);
}

.support .articlebox:not(:first-of-type) {
  margin-top: min(80px, 14vw);
}
.support h3.card-ttl {
  color: #218B7F;
}
.support .cardbox-outer {
  margin-top: min(40px, 12vw);
}
.support .pgrm01 .cardbox {
  position: relative;
  padding: 70px 30px 20px;
}
.support .pgrm01 .cardbox .support_img {
  position: absolute;
  z-index: 2;
  max-width: 120px;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.support .pgrm02 h3.card-ttl {
  font-size: 16px;
  padding: 4px;
  max-width: 240px;
  background-color: #218B7F;
  color: #fff;
  border-radius: 4px;
}
@media (max-width: 1024px) {
  .support .pgrm02 h3.card-ttl {
    margin: 0 auto;
  }
}
.support .pgrm02 .cardbox-outer {
  flex-direction: column;
  margin-top: min(32px, 6vw);
}
.support .pgrm02 .cardbox {
  flex-direction: row;
  align-items: center;
  max-width: 640px;
  gap: 32px;
}
@media (max-width: 1024px) {
  .support .pgrm02 .cardbox {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
}
.support .pgrm02 .cardbox img {
  max-width: 132px;
  margin: 0 auto;
}
.support .pgrm02 .descbox {
  display: flex;
  flex-direction: column;
  gap: min(4px, 1vw);
}
.support .pgrm03 .cardbox-outer {
  max-width: 740px;
}
.support .pgrm03 .cardbox {
  box-shadow: none;
  background-color: unset;
  padding: 0;
  max-width: 330px;
  gap: 12px;
}
.support .pgrm03 h3.card-ttl {
  color: #333;
  line-height: 1.33;
  padding: 4px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 60px;
  background-color: #FFCD5C;
  border-radius: 8px;
  gap: 2px;
}
.support .pgrm03 h3.card-ttl span {
  line-height: 1;
  font-size: 0.6em;
  font-weight: 600;
}
.support .pgrm03 .box_img {
  box-shadow: 0 0px 8px rgba(90, 90, 90, 0.1);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  background-color: #FDFDFD;
}
.support .pgrm03 .box_img img {
  max-width: 200px;
}

.schedule {
  position: relative;
}
.schedule .bgtop {
  margin-top: -2px;
  z-index: 1;
  max-width: 100vw;
}
.schedule .bgtop img {
  width: 100vw;
}
.schedule .bgbtm {
  margin-top: -0.8px;
  z-index: 1;
  max-width: 100vw;
}
.schedule .bgbtm img {
  width: 100vw;
}
.schedule h2.ttl {
  color: #218B7F;
}
.schedule h3.ttl {
  display: flex;
  gap: 8px;
  padding-bottom: 0;
}
.schedule .btn {
  position: relative;
  z-index: 2;
}
.schedule .cardbox-outer {
  position: relative;
  margin-top: min(32px, 6vw);
  max-width: 760px;
  flex-wrap: nowrap;
  flex-direction: column;
  z-index: 1;
}
.schedule .cardbox-outer::before {
  position: absolute;
  content: "";
  color: #218B7F;
  width: 2px;
  border: solid 2px currentColor;
  height: calc(100% - 100px);
  z-index: -2;
  top: 0;
  left: 50%;
}
.schedule .cardbox-outer .cardbox {
  max-width: unset;
  padding: min(40px, 6vw) min(50px, 6vw);
  gap: 8px;
}
.schedule .cardbox-outer .cardbox:nth-of-type(4n-3) {
  margin: 0 auto 0 0;
}
.schedule .cardbox-outer .cardbox:nth-of-type(4n-3) .card-ttl {
  color: #218B7F;
}
.schedule .cardbox-outer .cardbox:nth-of-type(4n-2) {
  margin: 0 0 0 auto;
}
.schedule .cardbox-outer .cardbox:nth-of-type(4n-2) .card-ttl {
  color: #218B7F;
}
.schedule .cardbox-outer .cardbox:nth-of-type(4n-1) {
  margin: 0 auto;
}
.schedule .cardbox-outer .cardbox:nth-of-type(4n-1) .card-ttl {
  color: #218B7F;
}
.schedule .cardbox-outer .cardbox:nth-of-type(4n) {
  margin: 0 0 0 auto;
}
.schedule .cardbox-outer .cardbox:nth-of-type(4n) .card-ttl {
  color: #218B7F;
}
.schedule .cardbox-outer .timebox {
  display: flex;
  align-items: center;
  gap: 24px;
}
.schedule .cardbox-outer .timebox img {
  max-width: 100px;
  border-radius: 4px;
}
.schedule .cardbox-outer .timebox .time.nunito {
  width: 160px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  background-color: #218B7F;
  padding: 8px 16px 6px;
  border-radius: 20px;
  height: -moz-fit-content;
  height: fit-content;
}
.schedule .cardbox-outer .desc {
  min-width: 390px;
}
@media (max-width: 768px) {
  .schedule .cardbox-outer .desc {
    min-width: unset;
  }
}
.schedule .wrapper {
  background-color: #F7E9D0;
  max-width: unset;
  margin-top: -1px;
  margin-bottom: -1px;
}
@media (max-width: 768px) {
  .schedule .wrapper {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.greeting {
  max-width: 760px;
  padding: max(3em, 20px);
  background: #FDFDFD;
  box-shadow: 0 0px 8px rgba(90, 90, 90, 0.1);
  border-radius: 16px;
}
.greeting h3.ttl {
  color: #218B7F;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0;
  line-height: 1.1;
  gap: 8px;
}
.greeting h3.ttl span {
  line-height: 1.1;
  font-weight: 700;
  color: #218B7F;
}
.greeting .articlebox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.greeting .articlebox .box_img {
  max-width: 330px;
  border-radius: 8px;
}

.access .articlebox {
  margin: min(40px, 4vw) auto 0;
  max-width: 760px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(24px, 4vw);
}
.access .articlebox h3.ttl {
  color: #218B7F;
  padding-bottom: 0;
}
.access .accessimg {
  max-width: 300px;
}
.access .accessimg img {
  border-radius: 8px;
}
@media (max-width: 768px) {
  .access .accessimg {
    max-width: 360px;
  }
}
.access .mapbox {
  margin-top: min(16px, 4vw);
  max-height: 400px;
  overflow: hidden;
}

.sns {
  padding-bottom: 8px;
}
.sns .ig-boxouter {
  margin: min(40px, 4vw) auto 0;
  max-width: 480px;
}
.sns .btn {
  font-size: 20px;
  gap: 8px;
  align-items: center;
  line-height: 1;
}

.fixed-btn-outer .fixed-btn {
  border: 1px solid #FFFCF5;
}

.partners .articlebox {
  display: flex;
  gap: 32px;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-rows: auto;
  justify-content: space-between;
}
@media (max-width: 960px) {
  .partners .articlebox {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
.partners .article {
  max-width: 50%;
}
@media (max-width: 960px) {
  .partners .article {
    max-width: 100%;
  }
}

.partner-box {
  position: relative;
  overflow: hidden;
  width: 480px;
  width: 100%;
}
@media (max-width: 960px) {
  .partner-box {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 600px;
  }
}
.partner-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 80%;
  background-color: #F6AA00;
  z-index: 0;
  border-radius: 16px;
}
@media (max-width: 960px) {
  .partner-box::before {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 80%;
    height: 70%;
  }
}
.partner-box .partner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .partner-box .partner-inner {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }
}
.partner-box .partner-list {
  overflow: hidden;
  height: 300px;
  width: 220px;
  margin: 0 auto;
  padding: 10px 0;
}
.partner-box .partner-list.list01 .partner-slider {
  animation: slideUp 20s linear infinite;
  padding-left: 16px;
}
.partner-box .partner-list.list02 .partner-slider {
  animation: slideDown 20s linear infinite;
  padding-right: 16px;
}
@media (max-width: 768px) {
  .partner-box .partner-list {
    width: 100%;
    height: 140px;
    margin: 0;
  }
  .partner-box .partner-list.list01 .partner-slider {
    animation: slideLeft 20s linear infinite;
    padding-left: unset;
  }
  .partner-box .partner-list.list02 .partner-slider {
    animation: slideRight 20s linear infinite;
    padding-right: unset;
  }
}
.partner-box .partner-slider {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .partner-box .partner-slider {
    flex-direction: row;
  }
}
.partner-box .partner-item {
  width: 200px;
  display: flex;
  height: 120px;
  border-radius: 8px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.partner-box .partner-item img {
  border-radius: 8px;
}
@media (max-width: 768px) {
  .partner-box .partner-item {
    min-width: 200px;
    gap: unset;
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes slideRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
.contact {
  margin-bottom: 16px;
}
.contact .contact-img {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.contact .lead {
  margin: 40px auto 0;
}
.contact .address.mail {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 16px auto 0;
}
.contact .address.mail a {
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.2;
  display: flex;
}
.contact .address.mail .mail-icon {
  display: flex;
  align-items: center;
  padding-right: 8px;
}

.philosophy {
  margin-top: min(100px, 15vw);
}
.philosophy h3.philo-maintxt.ttl {
  padding-bottom: 0;
}
.philosophy .philo-box {
  margin-top: 40px;
}
.philosophy .philo-box:not(:first-of-type) {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .philosophy .philo-box:not(:first-of-type) {
    margin-top: 32px;
  }
}
.philosophy .philo-ttl {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.4px;
  text-align: center;
}
.philosophy .philo-ttl .orange {
  font-size: 1.4rem;
  font-weight: 800;
  color: #218B7F;
}
.philosophy .st-bold {
  padding: 4px 0 0;
}
.philosophy .st-bold span {
  font-size: 0.87rem;
}
.philosophy .val-box {
  margin-top: 12px;
}
.philosophy .val-box:last-of-type {
  margin-top: 18px;
}
.philosophy .val-box .st-bold:last-of-type {
  font-size: clamp(0.813rem, 0.767rem + 0.23vw, 0.938rem);
  font-size: 0.9rem;
  font-weight: 500;
  max-width: 500px;
  margin: 0 auto;
  text-align: justify;
}

.company .tablelist-outer, .hotel.recruit .tablelist-outer {
  max-width: 700px;
  margin: 0 auto;
}
.company .tablelist-inner, .hotel.recruit .tablelist-inner {
  display: flex;
  border-bottom: 1px solid #DDCDB0;
  padding: 0 0 0 80px;
}
@media (max-width: 768px) {
  .company .tablelist-inner, .hotel.recruit .tablelist-inner {
    flex-direction: column;
    padding: 0 8px;
    max-width: 450px;
    margin: 0 auto;
  }
}
.company .list-name, .company .list-cts, .hotel.recruit .list-name, .hotel.recruit .list-cts {
  font-weight: 500;
  font-size: 1rem;
  margin: 16px;
  padding: 4px 8px;
}
@media (max-width: 768px) {
  .company .list-name, .company .list-cts, .hotel.recruit .list-name, .hotel.recruit .list-cts {
    margin: 8px auto;
  }
}
.company .list-name, .hotel.recruit .list-name {
  font-weight: 600;
  text-align: center;
  width: 120px;
  max-height: -moz-fit-content;
  max-height: fit-content;
  background-color: #218B7F;
  color: black;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .company .list-name, .hotel.recruit .list-name {
    margin: 16px auto 0;
  }
}
.company .list-address, .hotel.recruit .list-address {
  text-align: left;
  font-weight: 500;
}
@media (max-width: 768px) {
  .company .list-address, .hotel.recruit .list-address {
    text-align: center;
  }
}
.company .list-address .address, .hotel.recruit .list-address .address {
  font-size: 0.8em;
  padding-bottom: 16px;
  line-height: 1.35;
}
@media (max-width: 768px) {
  .company .list-address .address, .hotel.recruit .list-address .address {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding-bottom: 20px;
  }
}
.company a, .hotel.recruit a {
  text-decoration: underline;
}

.ppm {
  margin-top: min(100px, 15vw);
}
.ppm .articlebox {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .ppm .articlebox {
    margin-top: 24px;
  }
}
.ppm .article-list .article-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .ppm .article-list .article-inner {
    gap: 8px;
    flex-direction: column;
  }
}
.ppm .article-list:not(:first-of-type) {
  margin-top: 60px;
}
.ppm .article-list:not(:first-of-type) .article-inner {
  margin-top: 60px;
  flex-flow: row-reverse;
}
@media (max-width: 768px) {
  .ppm .article-list:not(:first-of-type) .article-inner {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .ppm .discbox {
    max-width: 400px;
    margin: 0 auto;
  }
}
.ppm .discbox .disc-txt {
  max-width: 780px;
  margin: 16px auto 0;
  text-align: justify;
}
.ppm .imgbox-outer {
  min-width: 400px;
}
@media (max-width: 768px) {
  .ppm .imgbox-outer {
    min-width: unset;
    max-width: 400px;
    margin: 0 auto;
  }
}
.ppm .works-outer {
  margin: 24px auto 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 700px;
}
.ppm .works-outer .works .pref {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1em;
  font-weight: 700;
  padding: 2px 8px;
  color: #fff;
  background-color: #218B7F;
  border-radius: 4px;
  margin-right: 4px;
}
.ppm .works-outer .works .notes {
  font-size: 0.9em !important;
  color: #fff;
  display: inline-block;
  margin-left: 4px;
}
.ppm .partner {
  display: flex;
  position: relative;
  gap: 24px;
  width: 100%;
  margin: 40px auto 0;
}
.ppm .partner::before {
  position: absolute;
  content: "";
  width: 80%;
  height: 140%;
  background-color: #F6AA00;
  z-index: -1;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ppm .partner .partner-item img {
  border-radius: 10px;
}
.ppm .partner-box {
  width: min(480px, 80vw);
  margin: 24px auto 0;
}
.ppm .partner-box::before {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 80%;
  height: 100%;
}
@media (max-width: 768px) {
  .ppm .partner-box {
    max-width: 80%;
    height: 140px;
  }
}
.ppm .partner-inner {
  grid-template-columns: 1fr;
}
.ppm .partner-list {
  overflow: hidden;
  margin: 0 auto;
  padding: 10px 0;
  width: 100%;
  height: auto;
  margin: 0;
}
.ppm .partner-list.list01 .partner-slider {
  animation: slideLeft 20s linear infinite;
  padding-left: unset;
}
.ppm .partner-list.list02 .partner-slider {
  animation: slideRight 10s linear infinite;
  padding-right: unset;
}
.ppm .partner-slider {
  display: flex;
  gap: 16px;
  flex-direction: row;
  gap: 0;
  animation: slideLeft var(--slide-duration, 30s) linear infinite;
  animation: slideRight var(--slide-duration, 30s) linear infinite;
}
.ppm .partner-item {
  flex-shrink: 0;
  min-width: 300px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}
.ppm .partner-item img {
  border-radius: 8px;
}
@media (max-width: 768px) {
  .ppm .partner-item {
    min-width: 150px;
    height: 120px;
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(var(--slide-distance));
  }
}
@keyframes slideRight {
  0% {
    transform: translateX(var(--slide-distance));
  }
  100% {
    transform: translateX(0);
  }
}

.hotel:first-of-type .articlebox p {
  padding: 4px 0 0;
}
.hotel .article-list .article-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .hotel .article-list .article-inner {
    gap: 8px;
    flex-direction: column;
  }
}
.hotel .article-list:not(:first-of-type) {
  margin-top: 60px;
}
.hotel .article-list:nth-of-type(even) .article-inner {
  flex-flow: row-reverse;
}
.hotel .article-list:not(:first-of-type) .article-inner {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .hotel .article-list:not(:first-of-type) .article-inner {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .hotel .discbox {
    max-width: 400px;
    margin: 0 auto;
  }
}
.hotel .discbox .disc-txt {
  max-width: 780px;
  margin: 16px auto 0;
  text-align: justify;
}
.hotel .imgbox-outer {
  min-width: 460px;
}
@media (max-width: 768px) {
  .hotel .imgbox-outer {
    min-width: unset;
    max-width: 400px;
    margin: 0 auto;
  }
}
.hotel .works-outer {
  width: -moz-fit-content;
  width: fit-content;
  margin: 16px auto 0;
}
.hotel .partner {
  display: flex;
  position: relative;
  gap: 24px;
  width: 100%;
  margin: 40px auto 0;
}
.hotel .partner::before {
  position: absolute;
  content: "";
  width: 80%;
  height: 140%;
  background-color: #F6AA00;
  z-index: -1;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hotel .partner .partner-item img {
  border-radius: 10px;
}
.hotel .recruit-imgbox {
  display: flex;
  gap: 24px;
}

.recruit-info .descbox {
  margin: 16px auto 0;
}
.recruit-info .descbox p {
  font-weight: 600;
}

.hotel.recruit .list-cts {
  text-align: left;
}
@media (max-width: 768px) {
  .hotel.recruit .list-cts {
    padding: 4px 0px;
  }
}

.hresource:first-of-type .articlebox article {
  max-width: 840px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hresource:first-of-type .articlebox article {
    padding: 0 0 16px;
  }
}
.hresource:first-of-type .articlebox article p {
  padding-top: 16px;
  text-align: justify;
}
.hresource .articlebox:not(:first-of-type) {
  margin-top: min(100px, 15vw);
}
.hresource .article-list .article-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .hresource .article-list .article-inner {
    gap: 8px;
    flex-direction: column;
  }
}
.hresource .article-list:not(:first-of-type) {
  margin-top: 60px;
}
.hresource .article-list:nth-of-type(even) .article-inner {
  flex-flow: row-reverse;
}
.hresource .article-list:not(:first-of-type) .article-inner {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .hresource .article-list:not(:first-of-type) .article-inner {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .hresource .discbox {
    max-width: 400px;
    margin: 0 auto;
  }
}
.hresource .discbox .disc-txt {
  max-width: 780px;
  margin: 16px auto 0;
  text-align: justify;
}
.hresource .imgbox-outer {
  min-width: 460px;
}
@media (max-width: 768px) {
  .hresource .imgbox-outer {
    min-width: unset;
    max-width: 400px;
    margin: 0 auto;
  }
}
.hresource .works-outer {
  width: -moz-fit-content;
  width: fit-content;
  margin: 16px auto 0;
}
.hresource .partner {
  display: flex;
  position: relative;
  gap: 24px;
  width: 100%;
  margin: 40px auto 0;
}
.hresource .partner::before {
  position: absolute;
  content: "";
  width: 80%;
  height: 140%;
  background-color: #F6AA00;
  z-index: -1;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hresource .partner .partner-item img {
  border-radius: 10px;
}

.hresource-contact {
  background-color: #FFFDFA;
  margin: 16px auto 0;
  max-width: 400px;
  padding: 16px 40px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .hresource-contact {
    margin: 0 auto;
  }
}
.hresource-contact .st-bold {
  text-align: center;
  padding: 0;
}
.hresource-contact ul {
  width: -moz-fit-content;
  width: fit-content;
  margin: 8px auto 0;
}
.hresource-contact .bold {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hresource-contact .bold:not(:last-of-type) {
  padding-bottom: 4px;
}

.postoffice:first-of-type .articlebox article {
  max-width: 840px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .postoffice:first-of-type .articlebox article {
    padding: 8px 0 0;
  }
}
.postoffice:first-of-type .articlebox article p {
  text-align: justify;
}
.postoffice .articlebox:not(:first-of-type) {
  max-width: unset;
  margin-top: min(100px, 15vw);
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
}
.postoffice .articlebox:not(:first-of-type) p {
  padding-bottom: 16px;
}
@media (max-width: 768px) {
  .postoffice .articlebox:not(:first-of-type) {
    flex-direction: column-reverse;
    gap: 8px;
  }
}
.postoffice .article-list {
  margin-top: min(100px, 15vw);
}
.postoffice .article-list .article-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .postoffice .article-list .article-inner {
    gap: 8px;
    flex-direction: column;
  }
}
.postoffice .article-list:not(:first-of-type) {
  margin-top: 60px;
}
.postoffice .article-list:nth-of-type(even) .article-inner {
  flex-flow: row-reverse;
}
.postoffice .article-list:not(:first-of-type) .article-inner {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .postoffice .article-list:not(:first-of-type) .article-inner {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .postoffice .discbox {
    max-width: 400px;
    margin: 0 auto;
  }
}
.postoffice .discbox .disc-txt {
  max-width: 780px;
  margin: 16px auto 0;
  text-align: justify;
}
.postoffice .imgbox-outer {
  min-width: 420px;
}
@media (max-width: 768px) {
  .postoffice .imgbox-outer {
    min-width: unset;
    max-width: 400px;
    margin: 0 auto;
  }
}
.postoffice .works-outer {
  width: -moz-fit-content;
  width: fit-content;
  margin: 16px auto 0;
}
.postoffice .partner {
  display: flex;
  position: relative;
  gap: 24px;
  width: 100%;
  margin: 40px auto 0;
}
.postoffice .partner::before {
  position: absolute;
  content: "";
  width: 80%;
  height: 140%;
  background-color: #F6AA00;
  z-index: -1;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.postoffice .partner .partner-item img {
  border-radius: 10px;
}

.office-info {
  background-color: #FFFDFA;
  margin: 0 auto;
  max-width: 400px;
  padding: 16px 40px;
  border-radius: 10px;
  margin: 8px auto 0;
}
.office-info .st-bold {
  text-align: center;
  padding: 0;
}
.office-info .bold {
  display: flex;
  align-items: center;
  gap: 8px;
}
.office-info .bold:not(:last-of-type) {
  padding-bottom: 4px;
}

.partners-page .articlebox:first-of-type .article p {
  padding-top: 0;
}
@media (max-width: 768px) {
  .partners-page .articlebox:first-of-type .article p {
    padding-top: 12px;
  }
}
.partners-page .articlebox:not(:first-of-type) {
  margin-top: min(120px, 15vw);
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.partners-page .articlebox:not(:first-of-type) .ttl {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .partners-page .articlebox:not(:first-of-type) {
    flex-direction: column;
  }
}
.partners-page .articlebox:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .partners-page .articlebox:nth-of-type(even) {
    flex-direction: column;
  }
}
.partners-page .article {
  max-width: unset;
  width: 100%;
}
.partners-page .article p {
  display: flex;
  justify-content: center;
  text-align: justify;
  padding-top: 8px;
}
@media (max-width: 768px) {
  .partners-page .article p {
    padding-top: 12px;
  }
}
.partners-page .partner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  height: 200px;
}
.partners-page .partner-box {
  width: 480px;
}
.partners-page .partner-box::before {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 80%;
  height: 100%;
}
@media (max-width: 768px) {
  .partners-page .partner-box {
    max-width: 80%;
    height: 140px;
  }
}
.partners-page .partner-list {
  overflow: hidden;
  margin: 0 auto;
  padding: 10px 0;
  width: 100%;
  height: auto;
  margin: 0;
}
.partners-page .partner-list.list01 .partner-slider {
  animation: slideLeft 20s linear infinite;
  padding-left: unset;
}
.partners-page .partner-list.list02 .partner-slider {
  animation: slideRight 10s linear infinite;
  padding-right: unset;
}
.partners-page .partner-slider {
  display: flex;
  gap: 16px;
  flex-direction: row;
  gap: 0;
  animation: slideLeft var(--slide-duration, 30s) linear infinite;
  animation: slideRight var(--slide-duration, 30s) linear infinite;
}
.partners-page .partner-item {
  flex-shrink: 0;
  min-width: 300px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}
.partners-page .partner-item img {
  border-radius: 8px;
}
@media (max-width: 768px) {
  .partners-page .partner-item {
    min-width: 150px;
    height: 120px;
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(var(--slide-distance));
  }
}
@keyframes slideRight {
  0% {
    transform: translateX(var(--slide-distance));
  }
  100% {
    transform: translateX(0);
  }
}
.partners-page .article-list .article-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .partners-page .article-list .article-inner {
    gap: 8px;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .partners-page .discbox {
    max-width: 400px;
    margin: 0 auto;
  }
}
.partners-page .discbox .disc-txt {
  max-width: 780px;
  margin: 16px auto 0;
  text-align: justify;
}
.partners-page .imgbox-outer {
  min-width: 460px;
}
@media (max-width: 768px) {
  .partners-page .imgbox-outer {
    min-width: unset;
    max-width: 400px;
    margin: 0 auto;
  }
}
.partners-page .works-outer {
  width: -moz-fit-content;
  width: fit-content;
  margin: 16px auto 0;
}
.partners-page .partner {
  display: flex;
  position: relative;
  gap: 24px;
  width: 100%;
  margin: 40px auto 0;
}
.partners-page .partner::before {
  position: absolute;
  content: "";
  width: 80%;
  height: 140%;
  background-color: #F6AA00;
  z-index: -1;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.partners-page .partner .partner-item img {
  border-radius: 10px;
}
.partners-page .recruit-imgbox {
  display: flex;
  gap: 24px;
}

.thinktank .articlebox p {
  padding: 12px 0 0;
}
.thinktank .article-list .article-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .thinktank .article-list .article-inner {
    gap: 8px;
    flex-direction: column;
  }
}
.thinktank .article-list:not(:first-of-type) {
  margin-top: 60px;
}
.thinktank .article-list:nth-of-type(even) .article-inner {
  flex-flow: row-reverse;
}
.thinktank .article-list:not(:first-of-type) .article-inner {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .thinktank .article-list:not(:first-of-type) .article-inner {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .thinktank .discbox {
    max-width: 400px;
    margin: 0 auto;
  }
}
.thinktank .discbox .disc-txt {
  max-width: 780px;
  margin: 16px auto 0;
  text-align: justify;
}
.thinktank .imgbox-outer {
  min-width: 460px;
  margin: 40px auto 0;
}
@media (max-width: 768px) {
  .thinktank .imgbox-outer {
    min-width: unset;
    max-width: 400px;
  }
}
.thinktank .contact-link {
  font-weight: 700;
  -webkit-text-decoration: underline 1px solid;
          text-decoration: underline 1px solid;
}/*# sourceMappingURL=style.css.map */