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

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

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

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

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

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

.u-wrapper-medium {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px;
}

.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", "din-2014", "Helvetica Neue", sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  background-color: #FAF7F1;
  line-height: 1.6;
  color: #231815;
  margin: 0 auto;
  background-image: url(/assets/img/bg-sec.webp);
  background-size: auto;
  background-position: top center;
  background-repeat: no-repeat;
  max-width: 100%;
}

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

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

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

ul, ol, dl, li, strong, dt, dd, p, div, span, a, article, label, input, select, textarea {
  font-size: rf(14, 16);
  font-weight: normal;
  color: #14203F;
}

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

.articlebox {
  margin-top: min(60px, 10vw);
}

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

/* font-size */
p, li {
  font-weight: 500;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}

.en {
  font-family: "din-2014";
  font-size: clamp(1.25rem, 0.795rem + 2.27vw, 2.5rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.5px;
  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-outer-wh {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin: 0 auto;
  padding: 20px auto;
  background-color: #fff;
  border-bottom: 4px solid #1B284E;
}
.ttl-outer-wh h2 {
  font-size: 1.4rem;
  line-height: 1;
}
.ttl-outer-wh h3 {
  font-size: 1rem;
  line-height: 1;
}
.ttl-outer-wh p {
  color: #1B284E;
  margin: 16px 0;
}

.ttl-outer-wh.blue {
  background-color: #1B284E;
  border-bottom: none;
}
.ttl-outer-wh.blue h2, .ttl-outer-wh.blue h3 {
  color: #fff;
}

.ttl-outer-wh.place {
  border: 4px solid #1B284E;
}
.ttl-outer-wh.place p {
  margin: 14px 0;
}

.company-desc .ttl-outer-wh {
  padding: 8px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
}
.company-desc .ttl-outer-wh p {
  margin: 0;
}
.company-desc .ttl-outer-wh .company-name {
  display: flex;
  align-items: center;
  gap: 8px;
}
.company-desc .ttl-outer-wh .guest-name {
  margin: 4px 0 0 0;
  color: #fff;
  font-weight: 900;
  font-size: 0.9rem;
  line-height: 1;
}

[id*=modal] .ttl-outer-wh {
  padding: 8px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
}
[id*=modal] .ttl-outer-wh p {
  margin: 0;
}
[id*=modal] .ttl-outer-wh .company-name {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
[id*=modal] .ttl-outer-wh .company-name h2 {
  color: #fff;
  font-weight: 900;
  font-size: 1.1em;
  line-height: 1;
  padding-top: 4px;
}
[id*=modal] .ttl-outer-wh .guest-name {
  margin: 4px 0 0 0;
  color: #fff;
  font-weight: 900;
  font-size: 0.9rem;
  line-height: 1;
}

/* 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: space-between;
  gap: 40px;
  z-index: 20;
  top: 24px;
  padding: 0 16px 0 0;
}

.header_menu {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 auto 0;
  line-height: 1;
  text-align: center;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  background-color: #ffffff;
  border: solid 2px #F39800;
  border-radius: 10px;
  padding: 24px 40px;
  margin-right: 24px;
}

.header_logo img {
  height: 160px;
}

@media (max-width: 1280px) {
  .header_contents {
    top: 16px;
  }
  .header_logo img {
    height: 100px;
  }
  .header_menu {
    margin: 0 0 auto 0;
    line-height: 1;
    background-color: #ffffff;
    border: solid 0.5px #F39800;
    border-radius: 10px;
    padding: 16px 40px;
    margin-right: 16px;
  }
}
@media (max-width: 1024px) {
  .header_menu {
    display: none;
  }
}
/* menulist */
.menulist {
  line-height: 1.3;
}
.menulist .en {
  font-family: "din-2014";
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 1.5px;
}
.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: #f39800;
  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: 1px solid #f39800;
  background: rgb(255, 251, 244);
  box-sizing: content-box;
  border-radius: 10px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.3s;
  position: absolute;
  right: 8px;
  height: 2px;
  border-radius: 2px;
  background-color: #f39800;
  width: 32px;
}
.openbtn span:nth-of-type(1) {
  top: 16px;
  width: 32px;
}
.openbtn span:nth-of-type(2) {
  top: 24px;
  width: 26px;
}
.openbtn span:nth-of-type(3) {
  top: 32px;
  width: 22px;
}
.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: #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: 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: 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;
  flex-direction: column;
}

.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 {
  margin-top: min(20px, 4vw);
  padding-top: min(20px, 4vw);
  padding-bottom: 110px;
}

/* footer */
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_contents {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-top: 80px;
}

@media (max-width: 430px) {
  .footer_contents {
    margin-top: 40px;
    flex-direction: column;
    text-align: center;
  }
  .footer_logo img {
    width: 100px;
  }
}
.f_menu {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1;
  text-align: center;
  display: flex;
  justify-content: space-between;
  padding: 0 4%;
}
.f_menu .menulist p {
  padding: 0;
}
.f_menu .menulist p p.en, .f_menu .menulist p p.ja {
  transition: all 0.3s ease;
}
.f_menu .menulist p:hover p.en, .f_menu .menulist p:hover p.ja {
  color: #f39800;
  scale: 1.05;
}

.f_address {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 24px 0 80px 0;
}
.f_address .f_info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.f_address .f_info li {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.f_address .f_info li .info-ttl {
  padding: 1px 4px;
  background: #1B284E;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  width: 86px;
  text-align: center;
}
.f_address .f_info li .cts {
  font-size: 0.9rem;
  font-weight: 900;
}
.f_address .f_info p {
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .f_address {
    flex-direction: column;
  }
}

.company_info {
  line-height: 1;
}

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

.address {
  padding-bottom: 8px;
  font-weight: 500;
  display: flex;
}

.mail {
  align-items: center;
}

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

.address img, .sns_icon img {
  color: #393939;
}

.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;
  font-style: italic;
  background-color: #F6C800;
}

@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: #F6C800;
  border: 2px solid #1B284E;
  border-radius: 100px;
  transition-duration: 0.4s;
}
.btn:hover {
  color: #ffffff;
  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;
}
.btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mvbtn-area {
  margin-top: 24px;
}
.mvbtn-area .mvbtn-box {
  display: flex;
  justify-content: center;
  row-gap: 16px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 12px auto 0;
}
.mvbtn-area .mvbtn-box li {
  width: -moz-fit-content;
  width: fit-content;
}
.mvbtn-area .mvbtn-box .btn {
  margin: 0;
  padding: 10px 36px;
  width: 240px;
  justify-content: center;
}
.mvbtn-area .mvbtn-box .btn .ja {
  font-weight: 900;
  font-size: 16px;
}

.btn.modal-btn {
  color: #1B284E;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  padding: 10px 30px;
}

.contact .btn .ja {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.4rem);
  font-size: 1rem;
  font-weight: 900;
}

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

.mv_img {
  position: relative;
  width: 100%;
  margin: 40px auto;
}
.mv_img .mv_img-inner {
  top: 0%;
  left: 50%;
  margin: 0 auto;
}
.mv_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

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

.mvdesc_outer {
  position: absolute;
  min-width: 340px;
  color: #ffffff;
  z-index: 20;
  top: min(120px, 8vw);
  right: unset;
  left: 50%;
  transform: translateX(-50%);
}
.mvdesc_outer .ttl-box .sub-ttl {
  width: min(780px, 70vw);
  margin: 0 auto;
}
.mvdesc_outer .ttl-box .main-ttl {
  width: min(920px, 90vw);
  margin: min(24px, 2vw) auto 0;
}
.mvdesc_outer .desc-area {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: min(40px, 4vw) auto 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .mvdesc_outer .desc-area {
    gap: 4px;
  }
}
.mvdesc_outer .desc-area .event-desc img {
  height: min(43px, 6.4vw);
}

.mv_desc {
  font-size: clamp(0.875rem, 0.625rem + 1.25vw, 1.8rem);
  font-weight: 900;
  font-style: normal;
  line-height: 1.6;
  color: #fff;
  top: 0;
}

@media (max-width: 1280px) {
  .mv_desc {
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .sp-tab {
    display: none;
  }
}

.btn-outer {
  position: fixed;
  z-index: 999;
  bottom: 0;
  padding: 30px 0 24px;
  width: 100vw;
  background: linear-gradient(to bottom, #fff 0%, #fff 5%, #d6d6da 60%, #d6dbea 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 5%, rgba(214, 214, 218, 0.9) 60%, rgba(214, 219, 234, 0.9) 100%);
  border-top: 2px solid #1B284E;
}

.btn.fix {
  margin: 0 auto;
}
.btn.fix p {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1.3rem);
  font-weight: 900;
}

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

.about {
  margin-top: min(40px, 10vw);
}
.about .articlebox {
  max-width: 760px;
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.about .article > p {
  line-height: 2;
}
.about .article .reccomended-disc {
  margin-top: 24px;
}
.about .reccomended-box {
  width: 100%;
  max-width: 460px;
  margin: 24px auto 0;
  padding: min(20px, 4vw);
  background-color: #F6C800;
}
.about .reccomended-box .ttl-outer-wh p {
  margin: min(15px, 4vw) 0;
}
.about .reccomended-box .ttl-outer-wh h3 {
  padding-top: 2px;
}
@media (max-width: 430px) {
  .about .reccomended-box .ttl-outer-wh h3 {
    font-size: 90%;
  }
}
.about .reccomended-box .reccomended-list {
  margin-top: 16px;
}
.about .reccomended-box .reccomended-list li {
  margin-top: 8px;
  display: flex;
  align-items: center;
}
.about .reccomended-box .reccomended-list li img {
  width: 20px;
}

section.partners {
  margin-top: min(150px, 25vw);
}

.partners h3 {
  font-size: 1.4rem;
  font-weight: 900;
}
.partners .articlebox {
  max-width: 880px;
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 60px;
}
.partners .article {
  width: min(400px, 100vw);
  margin: 0 auto;
}
.partners .article > p {
  line-height: 2;
}
.partners .article .desc-list {
  margin: 16px 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.partners .article .program-ttl-outer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.partners .article .program-ttl {
  color: #fff;
  text-align: center;
  font-weight: 900;
  padding: 2px 8px;
  background-color: #1B284E;
  width: 64px;
}
.partners .article .program-ttl.place {
  max-height: 28px;
}
.partners .article .note {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
}
.partners .article .note p {
  width: -moz-fit-content;
  width: fit-content;
}
.partners .article .note .en {
  font-size: clamp(1.25rem, 0.795rem + 2.27vw, 1.5rem);
  letter-spacing: 0;
}
.partners .article .note .ja_bold {
  padding-top: 0.2em;
  font-weight: 900;
}
.partners .article .note.place {
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.partners .article .note.place p {
  text-align: left;
  line-height: 1.4;
}
.partners .article .note.place .en {
  font-size: clamp(1.25rem, 0.795rem + 2.27vw, 1.5rem);
  letter-spacing: 0;
}
.partners .article .note.place .ja_bold {
  padding-top: 0;
  font-size: 1.2rem;
}
.partners .article .company-desc {
  margin-top: 16px;
  flex-direction: column;
}
.partners .article .company-desc h4 {
  color: #fff;
  font-weight: 900;
  font-size: 1.1em;
  line-height: 1;
  padding-top: 4px;
}
.partners .article .company-desc .img-box {
  border: 4px solid #1B284E;
  position: relative;
}
.partners .article .company-desc .img-box .modal-btn {
  position: absolute;
  z-index: 1;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  transition-duration: 0.4s;
}
.partners .article .company-desc .img-box .modal-btn:hover {
  font-size: 1.1rem;
  padding: 12px 32px;
  bottom: 26px;
}
.partners .article .guest-ttl {
  font-size: 1.2rem;
  font-weight: 900;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .partners .article .guest-ttl {
    margin: 0 auto;
    text-align: center;
  }
}
.partners .article .guest-cts {
  margin-top: 8px;
  display: flex;
  gap: 8px;
}
@media (max-width: 768px) {
  .partners .article .guest-cts {
    flex-direction: column;
  }
  .partners .article .guest-cts > p {
    display: flex;
    justify-content: center;
    width: 240px;
    margin: 16px auto 0;
  }
}
.partners .reccomended-box {
  width: 100%;
  max-width: 420px;
  margin: 24px auto 0;
  padding: min(20px, 4vw);
  background-color: #F6C800;
}
.partners .reccomended-box .ttl-outer-wh p {
  margin: min(15px, 4vw) 0;
}
.partners .reccomended-box .ttl-outer-wh h3 {
  padding-top: 2px;
}
.partners .reccomended-box .reccomended-list {
  margin-top: 16px;
}
.partners .reccomended-box .reccomended-list li {
  margin-top: 8px;
  display: flex;
  align-items: center;
}
.partners .reccomended-box .reccomended-list li img {
  width: 20px;
}

.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;
}
.modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}
.modal-overlay.is-active .modal-content {
  transform: translateY(0);
  opacity: 1;
}
.modal-overlay .modal-content {
  background: #fff;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  position: relative;
  transform: translateY(-30px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
@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: #F6C800;
  border: #1B284E 2px solid;
  border-radius: 2px;
  padding: 10px 12px;
  cursor: pointer;
}
.modal-overlay .modal-content .modal-close p {
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 2px;
}
.modal-overlay .modal-content .modal-close .icon-close {
  font-size: 3rem;
  line-height: 0.5;
  text-align: center;
}
.modal-overlay .img-box {
  margin: 24px auto 0;
  max-width: 80%;
}
@media (max-width: 768px) {
  .modal-overlay .img-box {
    margin: 20px auto 0;
    max-width: 70%;
  }
}
.modal-overlay .txt {
  margin-top: 24px;
  text-align: justify;
  line-height: 1.9;
  font-weight: 600;
}
@media (max-width: 768px) {
  .modal-overlay .txt {
    margin-top: 20px;
    line-height: 1.7;
    font-size: 14px;
  }
}

section.service {
  margin-top: 0;
  padding-top: min(160px, 30vw);
  padding-bottom: min(80px, 14vw);
  background-image: url(/assets/svg/program-bg.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  height: -moz-fit-content;
  height: fit-content;
}

.service .articlebox {
  max-width: 760px;
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.service .articlebox:last-of-type {
  margin-top: 60px;
}
.service .article > p {
  line-height: 2;
}
.service .article .en {
  letter-spacing: 0;
}
.service .article .program-ttl-outer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service .article .program-ttl-outer .note {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
}
.service .article .program-ttl-outer .note p {
  width: -moz-fit-content;
  width: fit-content;
}
.service .article .program-ttl-outer .note .ja_bold {
  padding-top: 0.4vw;
}
.service .article .program-ttl {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  padding: 2px 20px;
  background-color: #1B284E;
  width: -moz-fit-content;
  width: fit-content;
}
.service .article .program-cts > p:last-of-type {
  margin-top: 8px;
}
.service .article .program-cts .ctw-outer {
  margin-top: 16px;
}
.service .article .program-cts .ctw-outer > p {
  margin-top: 8px;
  text-align: justify;
}
.service .article .program-cts .ctw-outer .cts-ttl {
  display: flex;
  align-items: center;
  gap: 4px;
}
.service .article .program-cts .ctw-outer .cts-ttl img {
  display: flex;
  align-items: center;
  width: 20px;
}
.service .article .program-cts .ctw-outer .cts-ttl h4 {
  font-size: 1.2rem;
  font-weight: 900;
  padding: 2px 8px;
  background-color: #F6C800;
}
@media (max-width: 768px) {
  .service .article .program-cts .ctw-outer .cts-ttl h4 {
    font-size: 1rem;
  }
}
.service .article .program-cts .consulting-desc {
  margin-top: 8px;
}
.service .article .program-cts .reccomended-txt {
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0;
  font-weight: 900;
  margin-top: 0;
  text-decoration: underline;
}
.service .article .guest-ttl {
  font-size: 1.2rem;
  font-weight: 900;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .service .article .guest-ttl {
    margin: 0 auto;
    text-align: center;
  }
}
.service .article .guest-cts {
  margin-top: 8px;
  display: flex;
  gap: 8px;
}
@media (max-width: 768px) {
  .service .article .guest-cts {
    flex-direction: column;
  }
  .service .article .guest-cts > p {
    display: flex;
    justify-content: center;
    width: 240px;
    margin: 16px auto 0;
  }
}
.service .article .guest-img {
  min-width: 240px;
}
.service .reccomended-box {
  width: 100%;
  max-width: 420px;
  margin: 24px auto 0;
  padding: min(20px, 4vw);
  background-color: #F6C800;
}
.service .reccomended-box .ttl-outer-wh p {
  margin: min(15px, 4vw) 0;
}
.service .reccomended-box .ttl-outer-wh h3 {
  padding-top: 2px;
}
.service .reccomended-box .reccomended-list {
  margin-top: 16px;
}
.service .reccomended-box .reccomended-list li {
  margin-top: 8px;
  display: flex;
  align-items: center;
}
.service .reccomended-box .reccomended-list li img {
  width: 20px;
}

.contact {
  margin-bottom: 16px;
}
.contact .contact-img {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.contact .lead {
  margin: 40px auto 0;
}
.contact .lead:last-of-type p {
  margin-top: 8px;
}
.contact .lead p {
  font-weight: 900;
}
.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;
}/*# sourceMappingURL=style.css.map */