@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;
}

.max-width-1120r {
  max-width: 1136px;
  margin-left: auto;
  margin-right: 0;
  padding-left: 16px;
  padding-right: 16px;
  transition-duration: 0.4s;
}
@media (max-width: 1360px) {
  .max-width-1120r {
    max-width: 936px;
  }
}
@media (max-width: 1170px) {
  .max-width-1120r {
    max-width: 836px;
  }
}

.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: 40px;
}
@media (max-width: 768px) {
  .articlebox {
    margin-top: 24px;
  }
}

/* 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: "noto-sans-cjk-jp", "futura-pt-bold", "shippori-mincho-b1", "Grape Nuts", cursive, Arial, Meiryo, sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  background-color: #EEF6FB;
  line-height: 1.6;
  color: #393939;
  margin: 0 auto;
  background: linear-gradient(rgba(80, 102, 109, 0.06), rgba(80, 102, 109, 0.06)), url(/assets/img/common/dot-grid.webp);
  background-size: auto;
  background-position: center;
  background-repeat: repeat;
  max-width: 100%;
}
body .grape-nuts-regular {
  font-family: "Grape Nuts", cursive;
  font-weight: 400;
  font-style: normal;
}

main {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: hidden;
}

section {
  margin-top: min(150px, 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: #50666D;
  text-align: justify;
}

a {
  transition-duration: 0.2s;
  transition-duration: 0.4s;
}
a:hover {
  color: #f39800;
}
a img {
  transition: transform 0.5s ease;
}
a:hover {
  cursor: pointer;
}
a:hover img {
  transform: scale(1.02);
}

span.notes {
  font-weight: 700;
  font-size: 10px !important;
  color: #5E5E5E;
  text-align: center;
  display: block;
}

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: 2;
}
@media (max-width: 768px) {
  p, li {
    line-height: 1.96;
  }
}

.en {
  font-family: "futura-pt";
  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-family: "noto-sans-cjk-jp", sans-serif;
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.8rem);
  font-weight: 900;
  text-align: center;
}

.ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.ttl p {
  color: #0092BB;
}
.ttl .ja {
  font-family: "noto-sans-cjk-jp";
  font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #006C8A;
  color: #0092BB;
}
.ttl .en {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  line-height: 1.5;
}
.ttl .grape-nuts {
  font-family: "Grape Nuts", cursive;
  font-size: clamp(3.5rem, 3.273rem + 1.14vw, 4.125rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  color: #0092BB;
}

.ttl-icon {
  width: -moz-fit-content;
  width: fit-content;
}

h3.en.ttl {
  font-size: clamp(1.5rem, 1.045rem + 2.27vw, 2.75rem);
  font-weight: 800;
  color: #0092BB;
  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: 800;
  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: #0092BB;
}
h3.ttl .ja {
  font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem);
}

.ppm h3.ttl, .hotel h3.ttl, .hresource h3.ttl, .postoffice h3.ttl, .partners-page h3.ttl, .thinktank h3.ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
  border-bottom: 2px solid #0092BB;
  border-width: 120%;
  padding: 0 0 4px 0;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .ppm h3.ttl, .hotel h3.ttl, .hresource h3.ttl, .postoffice h3.ttl, .partners-page h3.ttl, .thinktank h3.ttl {
    margin: 0 auto;
  }
}
.ppm span, .hotel span, .hresource span, .postoffice span, .partners-page span, .thinktank span {
  transition: color 0.3s ease;
}
.ppm .st-bold, .hotel .st-bold, .hresource .st-bold, .postoffice .st-bold, .partners-page .st-bold, .thinktank .st-bold {
  padding: 8px 0;
  font-size: 0.98em;
  line-height: 1.4;
}
.ppm a:hover .ttl, .ppm a:hover span, .hotel a:hover .ttl, .hotel a:hover span, .hresource a:hover .ttl, .hresource a:hover span, .postoffice a:hover .ttl, .postoffice a:hover span, .partners-page a:hover .ttl, .partners-page a:hover span, .thinktank a:hover .ttl, .thinktank a:hover span {
  color: #0092BB;
}

.hotel h3.ttl {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
}
.hotel h3.ttl span {
  line-height: 1;
  font-weight: 700;
  font-size: 0.7em;
}
.hotel h3.ttl .ja {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
}

/* header */
main {
  position: relative;
}

.wrapper {
  position: absolute;
}

.header_mv {
  position: relative;
  max-width: 1600px;
}
.header_mv .wrapper {
  padding: 0;
}

.header_mv > .wrapper {
  padding: 0;
}

.header_contents {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  position: fixed;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  z-index: 20;
  top: 50px;
  margin-left: 160px;
  padding: 0 16px 0 0;
  transition-duration: 0.8s;
}
@media (max-width: 1490px) {
  .header_contents {
    left: initial;
    margin-left: 0;
  }
}
.header_contents .logo-img {
  width: clamp(220px, 14vw, 260px);
}
@media (max-width: 768px) {
  .header_contents .logo-img {
    width: 160px;
  }
}
@media (max-width: 1070px) {
  .header_contents {
    top: 44px;
    transform: translateY(0%);
  }
  .header_contents .header_menu {
    display: none;
  }
}

.header_menu {
  width: -moz-fit-content;
  width: fit-content;
  width: clamp(220px, 14vw, 260px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 0 auto 0;
  line-height: 1;
  text-align: center;
  display: flex;
  gap: 40px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 60px 30px;
}

@media (max-width: 1070px) {
  .header_menu {
    display: none;
  }
}
/* menulist */
.menulist {
  line-height: 1.3;
}
.menulist a {
  display: flex;
  gap: 12px;
}
.menulist .en {
  font-weight: 700;
  color: #0092BB;
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.14rem);
  letter-spacing: 0.1em;
}
.menulist .ja {
  font-weight: 700;
  font-size: 80%;
}
.menulist p.en, .menulist p.ja {
  transition: all 0.3s ease;
}
.menulist:hover p.en, .menulist:hover p.ja {
  color: #0092BB;
  scale: 1.1;
}
.menulist img {
  width: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
}

.openbtn {
  position: fixed;
  z-index: 9999;
  top: 10px;
  top: 34px;
  right: 12px;
  cursor: pointer;
  width: 52px;
  height: 52px;
  background: rgb(255, 251, 244);
  background: #0092BB;
  box-sizing: content-box;
  border-radius: 12px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.3s;
  position: absolute;
  right: 10px;
  height: 3px;
  border-radius: 4px;
  background-color: #fff;
  width: 32px;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
  width: 32px;
}
.openbtn span:nth-of-type(2) {
  top: 25px;
  width: 32px;
}
.openbtn span:nth-of-type(3) {
  top: 35px;
  width: 32px;
}
.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: 10px;
  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: 10px;
  transform: translateY(-6px) rotate(45deg);
  width: 32px;
}
@media (max-width: 1070px) {
  .openbtn {
    display: block;
  }
}

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

.header_nav_hum {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: #FFFDFA;
  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: 46%;
  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: 40px;
}
.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: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header_nav_hum_block ul {
  margin-top: 40px;
}
.header_nav_hum_block .menulist a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.header_nav_hum_block .menulist .ja {
  font-family: "shippori-mincho-b1", sans-serif;
  font-weight: 700;
  font-size: 1.4em;
  color: #50666D;
  letter-spacing: 0.04rem;
}
.header_nav_hum_block .menulist .enlist {
  display: flex;
  gap: 4px;
  justify-content: center;
}
.header_nav_hum_block .menulist .enlist .en {
  font-size: 1em;
}

.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 {
  margin-top: min(100px, 25vw);
  padding-top: 60px;
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: hidden;
}
footer .max-width-1120r {
  padding: 60px 0 0;
  background: linear-gradient(rgba(0, 108, 138, 0.7), #007b9d);
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
}
@media (max-width: 768px) {
  footer .max-width-1120r {
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
  }
}
@media (max-width: 768px) {
  footer .contents_wrapper {
    margin-top: 40px;
    padding: 40px 16px;
  }
}

.f_contents {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 430px) {
  .f_contents {
    margin-top: 40px;
    flex-direction: column;
    text-align: center;
  }
  .footer_logo img {
    width: 100px;
  }
}
.f_menu {
  max-width: 768px;
  margin: 0 auto;
  line-height: 1;
  text-align: center;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.f_menu .menulist a {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.f_menu .menulist a p {
  padding: 0;
  color: #fff;
  font-size: 0.8em;
}
.f_menu .menulist a:hover p, .f_menu .menulist a:hover img {
  color: #fff;
  scale: 1.05;
}

.f_address {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-direction: column;
  margin: 60px 0;
}
.f_address .f_logo {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .f_address .f_logo {
    width: 160px;
  }
}
@media (max-width: 768px) {
  .f_address {
    margin: 0 0 60px;
    flex-direction: column;
  }
  .f_address .company_info {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .f_address .address {
    line-height: 1.2;
  }
}

.company_info {
  line-height: 1;
}

.company {
  font-size: 20px;
  font-weight: 900;
}

.address {
  font-weight: 700;
  display: flex;
  justify-content: center;
  line-height: 1.5;
  color: #fff;
  margin-top: 12px;
}

.mail {
  align-items: center;
  display: flex;
  align-items: center;
}
.mail a {
  font-size: 1.2em;
  letter-spacing: 0.04em;
  color: #fff;
}

.address img {
  padding-right: 12px;
}

.company_info p:nth-child(4) {
  padding-bottom: 0px;
}

.sns {
  display: flex;
  justify-content: space-around;
  width: 112px;
  margin-top: 16px;
}

@media (max-width: 430px) {
  .sns {
    margin: 16px auto;
  }
}
.sns {
  display: none;
}

.footer_cr {
  width: 100%;
  align-items: center;
  color: #FFFDFA;
  text-align: center;
  font-weight: 600;
  font-size: 0.87rem;
  background-color: #0092BB;
}

@media (max-width: 768px) {
  .footer_cr {
    width: 100%;
    height: 30px;
    line-height: 30px;
  }
}
.btn {
  display: flex;
  gap: 16px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  padding: 12px 36px;
  color: #ffffff;
  background-color: #0092BB;
  border-radius: 100px;
  transition-duration: 0.4s;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.3);
}
.btn:hover {
  color: #ffffff;
  transform: scale(1.1);
}
.btn p {
  color: #fff;
  font-weight: 800;
}
.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;
}

.cardbox-outer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 80px;
       column-gap: 80px;
  row-gap: 80px;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .cardbox-outer {
    flex-direction: column;
    row-gap: 60px;
    -moz-column-gap: unset;
         column-gap: unset;
    margin-top: 32px;
  }
}

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

.cardbox {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 14px;
  max-width: 440px;
  margin: 0 auto;
}
.cardbox .imgbox {
  max-width: 440px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.3);
}
.cardbox .imgbox img {
  transition: transform 0.4s ease;
}
.cardbox .imgbox img:hover {
  cursor: pointer;
  transform: scale(1.08);
}
.cardbox .card-ttl {
  font-size: 1.14em;
  font-weight: 800;
  color: #0092BB;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 0 auto;
}
.cardbox .card-disc {
  margin-top: 4px;
  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;
  }
}

.works .articlebox {
  margin-top: 0;
}
.works .article {
  overflow: hidden;
  border-radius: 20px;
  height: auto;
}
.works .cardbox-outer {
  flex-wrap: nowrap;
  width: 100%;
}
.works .cardbox-list {
  background: #fff;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.01);
  border-radius: 20px;
  padding: 40px;
  min-width: 460px;
}
.works .imgbox {
  box-shadow: none;
  border-radius: 12px;
}
.works .card-ttl {
  width: 100%;
  color: #fff;
  background: #0092BB;
  background: linear-gradient(rgba(0, 108, 138, 0.7), #007b9d);
  padding: 12px 0;
  margin-top: 4px;
  border-radius: 12px;
  font-size: 1em;
  line-height: 1.5;
}
.works .member-area, .works .hashtag-area {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.works .member-tag {
  display: flex;
  gap: 12px;
  align-items: center;
}
.works .member-tag .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
}
.works .member-tag .en {
  color: #0092BB;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.works .membername-area {
  margin-left: 10px;
  display: flex;
  gap: 16px;
}
.works .membername-area .membername {
  padding: 4px 16px;
  background-color: #FFFCEE;
  border-radius: 40px;
  border: 2px solid #0092BB;
  font-size: 0.8em;
}
.works .hashtag-area li {
  gap: 12px;
  padding: 4px 16px;
  background-color: #fffeef;
  border-radius: 40px;
  font-size: 0.8em;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.01);
}

.swiper02 {
  padding-bottom: 10px;
  margin: 0px auto;
  overflow: hidden;
  position: relative;
}
.swiper02 .swiper-wrapper {
  width: 100%;
}
.swiper02 .swiper-slide {
  width: 450px;
}
.swiper02 .swiper-pagination {
  position: absolute;
  bottom: -6px;
}
.swiper02 .cardbox-outer {
  gap: 0;
  justify-content: initial;
  flex-direction: initial;
  flex-wrap: nowrap;
}
.swiper02 .cardbox-list {
  flex: 0 0 auto;
  justify-content: center;
  background: none;
  border-radius: 20px;
  padding: 0;
  min-width: unset;
}
.swiper02 .cardbox {
  margin: 0 auto;
  width: 520px;
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.01);
  padding: 30px;
  height: 600px;
  text-align: center;
}
@media (max-width: 768px) {
  .swiper02 .cardbox {
    width: 340px;
    height: 560px;
    padding: 20px;
  }
}

.swiper03 {
  padding-bottom: 10px;
  margin: 0px auto;
  overflow: hidden;
  position: relative;
}
.swiper03 .swiper-wrapper {
  width: 100%;
}
.swiper03 .swiper-slide {
  width: 100%;
}
.swiper03 .swiper-pagination {
  position: absolute;
  bottom: -6px;
}
.swiper03 .cardbox-outer {
  gap: 0;
  justify-content: initial;
  flex-direction: initial;
  flex-wrap: nowrap;
}
.swiper03 .cardbox-list {
  flex: 0 0 auto;
  justify-content: center;
  background: none;
  border-radius: 20px;
  padding: 0;
  min-width: unset;
}
.swiper03 .cardbox {
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.01);
  height: auto;
  text-align: center;
}
@media (max-width: 768px) {
  .swiper03 .cardbox {
    width: inherit;
    padding: 20px;
    padding: 0;
    margin: 0;
  }
}

.access .cardbox-list, .hresource .cardbox-list {
  margin: 0;
}
.access .cardbox, .hresource .cardbox {
  padding: 10px;
  gap: 8px;
}
.access .cardbox .imgbox-outer360, .hresource .cardbox .imgbox-outer360 {
  max-width: 380px;
}
.access .cardbox .card-disc, .hresource .cardbox .card-disc {
  margin-top: 0;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.access .cardbox .map-iconbox, .hresource .cardbox .map-iconbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 4px 16px;
  background-color: #0092BB;
  border-radius: 20px;
  margin: 0 auto;
}
.access .cardbox figcaption, .hresource .cardbox figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.access .cardbox .btn-icon, .hresource .cardbox .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hresource .cardbox-outer {
  margin-top: 0;
}
@media (max-width: 768px) {
  .hresource .cardbox-outer {
    flex-direction: column;
    row-gap: 8px;
    -moz-column-gap: unset;
         column-gap: unset;
  }
}
.hresource .cardbox-list {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .hresource .cardbox-list {
    margin-top: 4px;
  }
}

/* top */
.mv {
  position: relative;
  max-width: 1600px;
  padding-bottom: clamp(400px, 44vw, 600px);
  width: 100%;
  margin: 50px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .mv {
    border-radius: 0;
    width: 100%;
  }
}

.mv_img {
  position: absolute;
  right: 0;
  width: 100%;
  max-width: 1120px;
  width: 90vw;
}
.mv_img .mv_img-inner {
  position: absolute;
  top: 0;
  right: 0;
}
.mv_img .mv_img-inner img {
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}
@media (max-width: 768px) {
  .mv_img .mv_img-inner img {
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
  }
}
.mv_img .mv_img-inner .top_img {
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 400px;
}

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

.mvdesc_outer {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff;
  z-index: 20;
  bottom: max(1.4rem, 28px);
  right: max(1.4rem, 28px);
}
.mvdesc_outer .mv_desc {
  display: flex;
  justify-content: end;
}
.mvdesc_outer .mv_desc img {
  width: min(200px, 40vw);
}

.hero-txt {
  position: absolute;
  top: 16%;
  left: max(8%, 4vw);
  transition-duration: 0.4s;
}
@media (max-width: 1280px) and (min-width: 1068px) {
  .hero-txt {
    left: 14%;
  }
}
@media (max-width: 768px) {
  .hero-txt {
    left: 8%;
  }
}
.hero-txt h2, .hero-txt h3 {
  letter-spacing: 0.1rem;
}
.hero-txt h2 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1rem, 0.4rem + 3.18vw, 2.875rem);
  font-size: clamp(0.8rem, 0.75rem + 0.91vw, 1.5rem);
  letter-spacing: 0.24em;
}

.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);
}

section.about {
  margin-top: min(290px, 60vw);
}

.scroll-indicator {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 1;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.scroll-indicator span {
  font-size: 1.2em;
  letter-spacing: 0.2em;
  color: #0092BB;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  line-height: 1.5;
}
.scroll-indicator .circle {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #fff;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.01);
  width: 32px;
  height: 48px;
  margin: 4px auto 0;
  border-radius: 16px;
  overflow: hidden;
  animation: containerPulse 2.12s infinite ease-in-out;
}
.scroll-indicator .circle .line {
  display: block;
  width: 2px;
  height: 20px;
  margin-top: 8px;
  color: #0092BB;
  background: currentColor;
  position: relative;
  animation: stretch 2.12s infinite ease-in-out;
}
.scroll-indicator .circle .line::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.scroll-indicator.hidden {
  opacity: 0;
}

@keyframes stretch {
  0%, 100% {
    height: 16px;
  }
  50% {
    height: 30px;
  }
}
@keyframes containerPulse {
  0%, 100% {
    height: 38px;
  }
  50% {
    height: 56px;
  }
}
.about.max-width-1120r {
  padding-left: 36px;
  padding-right: 36px;
}

.about {
  position: relative;
}
.about .ttl {
  gap: 8px;
  align-items: initial;
  margin: 0;
}
@media (max-width: 768px) {
  .about .ttl {
    align-items: center;
    margin: 0 auto;
  }
  .about .ttl h2, .about .ttl p {
    text-align: center;
  }
}
.about .articlebox {
  display: grid;
  gap: 44px;
  grid-template-columns: repeat(2fr 1fr);
  grid-auto-rows: auto;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 960px) {
  .about .articlebox {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .about .articlebox {
    gap: 24px;
  }
}
.about .article {
  display: flex;
  flex-direction: column;
  justify-content: left;
  gap: 24px;
}
@media (max-width: 960px) {
  .about .imgbox-outer {
    max-height: unset;
    min-width: unset;
    margin: 0 auto;
  }
}
.about .imgbox-outer .imgbox {
  max-width: 440px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.3);
}
.about .philo-listbox {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .about .philo-listbox {
    margin-top: 40px;
    gap: 40px;
  }
}
.about .philo-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  margin: 0 auto;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.01);
}
.about .philo-ttlbox .philo-mark {
  display: flex;
  gap: 10px;
  align-items: center;
}
.about .philo-ttlbox .philo-mark h3 {
  font-size: 1.2em;
  letter-spacing: 0.04rem;
  color: #0092BB;
}
.about .philo-ttlbox .philo-ttl {
  color: #0092BB;
  font-weight: 800;
  font-size: 1.34em;
  margin-top: 4px;
}

.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: #006C8A;
  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%);
  }
}
.services.max-width-1120r {
  padding-left: 36px;
  padding-right: 36px;
}

@media (max-width: 768px) {
  .member figcaption {
    max-width: 180px;
    margin: 0 auto;
  }
}
.member .section-desc h3.ttl {
  font-family: "shippori-mincho-b1", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1rem;
  color: #006C8A;
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  line-height: 1.8;
}
.member .cardbox-outer {
  justify-content: center;
  row-gap: 60px;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
@media (max-width: 768px) {
  .member .cardbox-outer {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: initial;
    row-gap: clamp(20px, 1.5vw, 24px);
    -moz-column-gap: clamp(8px, 1.5vw, 12px);
         column-gap: clamp(8px, 1.5vw, 12px);
  }
}
.member .cardbox-list {
  min-width: 224px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .member .cardbox-list {
    min-width: 160px;
    margin: 0;
    max-width: 180px;
    flex: grid;
  }
}
.member .cardbox {
  max-width: unset;
  transition-duration: 0.6s;
  overflow: hidden;
  margin: 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .member .cardbox {
    max-width: unset;
    gap: 8px;
  }
}
.member .cardbox:hover .btn {
  scale: 1.04;
}
.member .cardbox .imgbox {
  box-shadow: none;
}
.member .cardbox .jobpost {
  font-size: 14px;
}
@media (max-width: 768px) {
  .member .cardbox .jobpost {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .member .cardbox .modal-btn .jobpost.card-ttl {
    font-size: 10px;
  }
}
.member .cardbox .card-ttl {
  line-height: 1.6;
}
.member .cardbox .card-disc {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .member .cardbox .card-disc {
    font-size: 10px;
    letter-spacing: inherit;
  }
}
.member .memberimg-box {
  margin: 0 auto;
  max-width: 180px;
}
@media (max-width: 768px) {
  .member .memberimg-box {
    max-width: 120px;
  }
}
.member .btn {
  margin-top: 0px;
  padding: 8px 32px;
}

.modal-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow-y: auto;
}
.modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}
.modal-overlay.is-active .modal-content {
  transform: translateY(0);
  opacity: 1;
}
.modal-overlay figcaption {
  max-width: unset;
}
.modal-overlay .modal-content {
  background: #fff;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  border-radius: 16px;
  position: relative;
  transform: translateY(-30px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  max-height: 90vh;
}
.modal-overlay .modal-content .jobpost {
  font-size: 0.86em;
}
@media (max-width: 768px) {
  .modal-overlay .modal-content {
    padding: 1.34rem;
  }
}
.modal-overlay .modal-content .modal-close {
  display: flex;
  align-items: center;
  gap: 4px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 16px auto 0;
  background: #0092BB;
  border-radius: 8px;
  padding: 4px 12px;
  cursor: pointer;
}
.modal-overlay .modal-content .modal-close p {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}
.modal-overlay .modal-content .modal-close .icon-close {
  font-size: 1rem;
  line-height: 0.5;
  text-align: center;
}
.modal-overlay .memberimg-box {
  margin: 24px auto 0;
}
.modal-overlay .content-inner {
  margin-top: 24px;
  overflow-y: auto;
  max-height: 500px;
  padding-right: 16px;
}
.modal-overlay .works_ttl {
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 16px;
  border-radius: 4px;
  background: #0092BB;
  color: #fff;
  font-size: 1em;
  letter-spacing: 0.08em;
}
.modal-overlay .txt, .modal-overlay .txt li {
  margin: 8px 0;
  text-align: justify;
  line-height: 1.8;
  font-weight: 600;
  font-size: 14px;
}
.modal-overlay .memberworks {
  margin-top: 24px;
}
.modal-overlay .memberworks .works_list a {
  text-align: justify;
  line-height: 1.8;
  font-weight: 600;
  font-size: 14px;
  text-decoration: underline;
}

.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: #0092BB;
}
.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: #0092BB;
  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: #0092BB;
  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: #006C8A;
  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: #006C8A;
  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: #006C8A;
  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: #006C8A;
  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: #006C8A;
  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 */