@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: 32px;
}

/* 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", Arial, Meiryo, sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  background-color: #FFFFFA;
  line-height: 1.6;
  color: #33354D;
  margin: 0 auto;
  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;
}

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

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

input[type=checkbox] {
  border: 1px solid #33354D;
  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: #2a2a2a;
}

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

.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: 500;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  line-height: 1.6;
  letter-spacing: 0.02rem;
}
@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;
  color: #FFF000;
  line-height: 1.4;
}

.point {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 40px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #E550AC;
}

h2.ttl {
  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;
  align-items: center;
}
h2.ttl .ja {
  font-weight: 900;
  font-size: clamp(1.25rem, 0.886rem + 1.82vw, 2.25rem);
  line-height: 1.4;
}
h2.ttl .en {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  line-height: 1;
}

.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: #FFF000;
  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: #FFF000;
}
h3.ttl .ja {
  font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem);
}

/* header */
h1 {
  width: 100%;
  max-width: 280px;
  top: 0px;
  left: 60px;
}
@media (max-width: 1024px) {
  h1 {
    max-width: 200px;
  }
}

.header_mv {
  position: relative;
}
.header_mv .wrapper {
  padding: 0;
}

.header_mv > .wrapper {
  padding: 0;
}

.header_contents {
  width: 100%;
  max-width: 1500px;
  position: fixed;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  z-index: 20;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 24px;
}
.header_contents .fixed-btn {
  height: -moz-fit-content;
  height: fit-content;
  font-size: clamp(0.875rem, 0.739rem + 0.68vw, 1.25rem);
}

.header_menuouter {
  display: flex;
  gap: 20px;
}
@media (max-width: 1024px) {
  .header_menuouter p, .header_menuouter a {
    font-size: 0.9em;
  }
  .header_menuouter .fixed-btn {
    padding: 12px 20px;
  }
}

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

@media (max-width: 1080px) {
  .header_contents {
    top: 16px;
  }
  .header_logo img {
    height: 100px;
  }
  .header_menu {
    line-height: 1;
    padding: 12px 18px;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .header_menu {
    display: none;
  }
}
/* menulist */
.menulist {
  line-height: 1.3;
}
.menulist p {
  color: #2a2a2a;
  font-weight: 700;
}
.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);
}
.menulist p.en, .menulist p.ja {
  transition: all 0.3s ease;
}
.menulist:hover p.en, .menulist:hover p.ja {
  color: #FFF000;
  scale: 1.05;
}

.openbtn {
  position: fixed;
  z-index: 9999;
  top: 10px;
  top: 24px;
  right: 12px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border: 1px solid #2a2a2a;
  box-shadow: 0 0px 8px rgba(90, 90, 90, 0.1);
  background-color: #FFF000;
  box-sizing: content-box;
  border-radius: 4px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.3s;
  position: absolute;
  right: 10px;
  height: 2px;
  border-radius: 4px;
  background-color: #454545;
  width: 32px;
}
.openbtn span:nth-of-type(1) {
  top: 16px;
  width: 28px;
}
.openbtn span:nth-of-type(2) {
  top: 24px;
  width: 28px;
}
.openbtn span:nth-of-type(3) {
  top: 32px;
  width: 28px;
}
.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: 40px;
  max-width: 200px;
}
.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 .fixed-btn {
  margin: 0px auto 0;
}
.header_nav_hum_block .fixed-btn p {
  color: #fff;
}

.header_nav_hum_title {
  padding: 8px 16px;
  border-radius: 10px;
  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 {
  margin-top: min(98px, 25vw);
  padding-top: 60px;
}

.f_logo img {
  height: 160px;
}

/* 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;
  }
}

.ope-info {
  display: flex;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 600;
  margin-top: 16px;
  line-height: 1.5;
}

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

@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: #fff;
  font-weight: 600;
  background-color: #fff;
  border-radius: 100px;
  transition-duration: 0.4s;
}
.btn:hover {
  background: #EB7A00;
  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;
  align-items: center;
  padding: 20px 0 32px;
  background: linear-gradient(to top, rgba(42, 42, 42, 0.6) 0%, rgba(42, 42, 42, 0) 100%);
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  line-height: 1.3;
}

.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: #fff;
  border-radius: 100px;
  transition-duration: 0.4s;
  box-shadow: 0 0px 12px rgba(229, 80, 72, 0.7);
  margin: 20px auto 0;
  padding: 16px 40px;
  background-color: #EB7A00;
  border-radius: 8px;
  display: flex;
  align-items: center;
}
.fixed-btn:hover {
  background: #EB7A00;
  transform: scale(1.1);
}
.fixed-btn .btntxt {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
.fixed-btn p {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.3rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
.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;
}

/* top */
.mv {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.mv::before {
  position: absolute;
  content: "";
  background-image: url(/assets/img/svg/bg_line.svg);
  width: 173px;
  height: 220px;
  top: 30%;
  left: 0%;
}
.mv::after {
  position: absolute;
  content: "";
  background-image: url(/assets/img/svg/bg_line.svg);
  width: 173px;
  height: 220px;
  top: 50%;
  right: 0%;
  z-index: -1;
}
.mv .mv_img {
  position: relative;
  max-width: 1200px;
  width: calc(100% - 42px);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: min(14vw, 88px) auto 0;
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #2a2a2a;
}
@media (max-width: 768px) {
  .mv .mv_img {
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.2);
  }
}
.mv .mv_img source, .mv .mv_img img {
  border-radius: 8px;
}

h2 {
  position: relative;
}
@media (max-width: 768px) {
  h2 img {
    max-height: max(4vw, 18px);
  }
}
h2::before {
  position: absolute;
  content: "";
  background-image: url(/assets/img/common/ttl_line.png);
  width: 100px;
  height: 6px;
  top: 50%;
  left: -124px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  h2::before {
    background-image: url(/assets/img/common/ttl_sp_line.png);
    width: 40px;
    height: 5px;
    left: -54px;
  }
}
h2::after {
  position: absolute;
  content: "";
  background-image: url(/assets/img/common/ttl_line.png);
  width: 100px;
  height: 6px;
  top: 50%;
  right: -124px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  h2::after {
    background-image: url(/assets/img/common/ttl_sp_line.png);
    width: 40px;
    height: 5px;
    right: -54px;
  }
}

.ttlbox {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.ttlbox .categorytxt01 {
  font-size: 1.4em;
  font-weight: 700;
}

h3.category01 {
  font-size: 1.5em;
  font-weight: 700;
  width: 102px;
  padding: 4px 8px;
  border: 1px solid;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.categorytxt01.bold {
  font-size: 1.2em;
  line-height: 1.4;
  margin-top: 0;
}

.desc {
  margin-top: 8px;
  max-width: 760px;
}

.articlebox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 44px;
}

.category-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.category-box a {
  font-weight: 500;
  color: #EB7A00;
  text-decoration: underline;
}

.category-list {
  display: flex;
  align-items: center;
  gap: 16px;
}

.category01 {
  font-weight: 600;
  width: 88px;
  height: 38px;
  padding: 10px auto;
  border: 1px solid #2a2a2a;
  background-color: #FFF000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box_img {
  max-width: 300px;
  margin: 0 auto;
}
.box_img img {
  border-radius: 4px;
}
@media (max-width: 760px) {
  .box_img {
    max-height: unset;
  }
}

.flowbox {
  max-width: 680px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .flowbox .category-list {
    flex-direction: column;
    gap: 8px;
  }
}

.schebox {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}
@media (max-width: 1024px) {
  .schebox {
    flex-direction: column;
  }
}
.schebox .category01 {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 16px;
}
.schebox .schedule {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  justify-content: left;
  gap: 8px;
}
.schebox .schedule-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.schebox .schedule-list p {
  font-size: 1.1em;
}

.about {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.about .desc {
  max-width: 760px;
  text-align: center;
  margin-top: 0;
}
.about .articlebox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.about .category01 {
  font-weight: 600;
  width: 88px;
  height: 38px;
  padding: 10px auto;
  border: 1px solid #2a2a2a;
  background-color: #FFF000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow span, .talk span {
  font-weight: 600;
}
.flow .articlebox:not(:first-of-type), .talk .articlebox:not(:first-of-type) {
  margin-top: 60px;
}
.flow .day2 .category01, .talk .day2 .category01 {
  background-color: #009DFF;
  color: #fff;
  border: 1px solid #2a2a2a;
}
.flow .day2 .category01 span, .talk .day2 .category01 span {
  color: #fff;
}
.flow .day3 .category01, .talk .day3 .category01 {
  background-color: #FF6200;
  color: #fff;
  border: 1px solid #2a2a2a;
}
.flow .day3 .category01 span, .talk .day3 .category01 span {
  color: #fff;
}

.recom .articlebox {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 40px;
  max-width: 660px;
}
.recom .articlebox .box_img {
  max-width: 300px;
}

.ctaarea {
  margin: 40px 0 0 0;
}
.ctaarea .cta_msg {
  margin-bottom: 4px;
}
.ctaarea .box_img {
  max-width: 500px;
}
.ctaarea .box_img img {
  border: 1px solid #2a2a2a;
}

.talk .ttlbox {
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.talk .ttlbox .category01 {
  width: -moz-fit-content;
  width: fit-content;
  gap: 8px;
  padding: 8px 16px;
}
.talk .articlebox {
  gap: 16px;
}
.talk .desc {
  margin-top: 0;
}
.talk .talkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.talk .category-box {
  gap: 4px;
}
.talk .category-box:last-child {
  margin-top: 16px;
}
.talk .talksessionbox {
  min-width: 420px;
}
@media (max-width: 1024px) {
  .talk .talksessionbox {
    min-width: unset;
  }
}
.talk .talksessionbox .category01 {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px;
}
.talk .talksessionbox .categorytxt01.bold {
  margin: 6px 0 2px;
}

.region .articlebox {
  max-width: 670px;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}
.region .desc {
  margin: 16px auto 0;
}
.region .category01 {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  font-size: 1.2em;
}

.contact {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 20px;
}
.contact .category01 {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 12px;
  margin: 0 auto 4px;
}
.contact .maillink {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.contact .maillink p {
  display: flex;
  align-items: center;
}

.register .articlebox {
  margin-top: 24px;
}
.register .box_img {
  max-width: 450px;
}
.register .box_img img {
  border-radius: 10px;
}
.register .cta_box {
  width: -moz-fit-content;
  width: fit-content;
  margin: 36px auto 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.register .cta_box .ctatxt {
  position: relative;
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  font-weight: 900;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  line-height: 1;
}
.register .cta_box .ctatxt::before {
  position: absolute;
  content: "";
  background-image: url(../assets/img/common/svg/icon-polygon-left.svg);
  width: 22px;
  height: 40px;
  bottom: 0;
  left: -1em;
}
.register .cta_box .ctatxt::after {
  position: absolute;
  content: "";
  background-image: url(../assets/img/common/svg/icon-polygon-right.svg);
  width: 22px;
  height: 40px;
  bottom: 0;
  right: -1em;
}
@media (max-width: 1024px) {
  .register .cta_box .ctatxt {
    line-height: 1.4;
  }
  .register .cta_box .ctatxt::before {
    left: -1.4em;
  }
  .register .cta_box .ctatxt::after {
    right: -1.4em;
  }
}
.register .cta-note {
  margin: 24px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
.register .cta-note li {
  font-size: 0.8em;
}

.cta_box {
  width: -moz-fit-content;
  width: fit-content;
  margin: 36px auto 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.cta_box .ctatxt {
  position: relative;
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  font-weight: 900;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  line-height: 1;
}
.cta_box .ctatxt::before {
  position: absolute;
  content: "";
  background-image: url(../assets/img/common/svg/icon-polygon-left.svg);
  width: 22px;
  height: 40px;
  bottom: 0;
  left: -1em;
}
.cta_box .ctatxt::after {
  position: absolute;
  content: "";
  background-image: url(../assets/img/common/svg/icon-polygon-right.svg);
  width: 22px;
  height: 40px;
  bottom: 0;
  right: -1em;
}
@media (max-width: 1024px) {
  .cta_box .ctatxt {
    line-height: 1.4;
  }
  .cta_box .ctatxt::before {
    left: -1.4em;
  }
  .cta_box .ctatxt::after {
    right: -1.4em;
  }
}/*# sourceMappingURL=style.css.map */