body,
html {
  margin: 0 !important;
  padding: 0;
  font-family: Arial, sans-serif;
  line-height: 1.5em;
  font-size: 14px;
  background: none;
}
.entry-content > *,
.mce-content-body > *,
.article p,
.demo .entry-content p,
.article dl,
.article ul,
.article ol,
.article blockquote,
.article pre,
.article table,
.article .toc,
.body .article,
.body .column-wrap,
.body .new-entry-cards,
.body .popular-entry-cards,
.body .navi-entry-cards,
.body .box-menus,
.body .ranking-item,
.body .rss-entry-cards,
.body .widget,
.body .author-box,
.body .blogcard-wrap,
.body .login-user-only,
.body .information-box,
.body .question-box,
.body .alert-box,
.body .information,
.body .question,
.body .alert,
.body .memo-box,
.body .comment-box,
.body .common-icon-box,
.body .blank-box,
.body .button-block,
.body .micro-bottom,
.body .caption-box,
.body .tab-caption-box,
.body .label-box,
.body .toggle-wrap,
.body .wp-block-image,
.body .booklink-box,
.body .kaerebalink-box,
.body .tomarebalink-box,
.body .product-item-box,
.body .speech-wrap,
.body .wp-block-categories,
.body .wp-block-archives,
.body .wp-block-archives-dropdown,
.body .wp-block-calendar,
.body .ad-area,
.body .wp-block-gallery,
.body .wp-block-audio,
.body .wp-block-cover,
.body .wp-block-file,
.body .wp-block-media-text,
.body .wp-block-video,
.body .wp-block-buttons,
.body .wp-block-columns,
.body .wp-block-separator,
.body .components-placeholder,
.body .wp-block-search,
.body .wp-block-social-links,
.body .timeline-box,
.body .blogcard-type,
.body .btn-wrap,
.body .btn-wrap a,
.body .block-box,
.body .wp-block-embed,
.body .wp-block-group,
.body .wp-block-table,
.body .scrollable-table,
.body .wp-block-separator,
.body .wp-block,
.body .video-container,
.comment-area,
.related-entries,
.pager-post-navi,
.comment-respond {
  margin-bottom: 0;
}
.body.public-page {
  margin: 0;
}
.page .entry-content {
  margin: 0;
}
.main-container .title {
  font-size: 1.5em;
}
.main-container .subtitle {
  text-align: center;
  color: #81ccdc;
  font-size: 0.8em;
  margin: 0 0 10px;
  text-transform: uppercase;
  font-weight: bold;
}
.main-container h2 {
  text-align: center;
  line-height: 1.5;
  margin: 0 0 47px;
  color: #000;
  font-size: 1em;
}
.main-container h3 {
  color: #000;
}
.main-container img {
  margin: 0;
  width: 100%;
}
.flex-box {
  display: flex;
}
.grid-box {
  display: grid;
}
.bg-yellow {
  background: #feed62;
}
.bg-white {
  background: #fff;
}
.main-container {
  background: #fff;
}
.main-container p {
  margin: 0;
}
.grecaptcha-badge {
  visibility: hidden;
}
.tab-db {
  display: none;
}
.fv img,
.main-container img {
  width: 100%;
  height: auto;
}
.fade-in {
  opacity: 0; /* 初期状態で透明 */
  transition: opacity 0.5s ease-in-out; /* ふわっと表示させるトランジション */
}

.fade-in.is-loaded {
  opacity: 1; /* 読み込み完了時に表示 */
}
/**************************
** Menu
**************************/
.tab-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3;
  display: flex;
  transition: transform 1s ease-in-out;
  /*transform: translateX(calc(100% - 40px));*/
  transform: translateX(100%);
}

#menuToggle {
  writing-mode: vertical-rl;
  /*padding: 15px 0;*/
  background-color: #80ccdc;
  color: #fff;
  border: none;
  cursor: pointer;
  letter-spacing: 2px;
  /*width: 40px;*/
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px 0 0 10px;
  margin-top: 20px;
  font-size: 20px;
  position: absolute;
  left: -40px;
  /*height: 50px;*/
  transition: height 1s ease-out;
  overflow-y: clip;
}
.toggle-clip {
  overflow-y: clip;
}
.toggle-icon {
  display: block;
  display: inline-block;
  text-orientation: upright;
  width: 40px;
  height: 40px;
  background: #80ccdc;
  border-radius: 10px 0 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.toggle-text {
  display: none;
  transform: rotate(180deg);
  text-transform: uppercase;
  color: #02050a;
  font-weight: bold;
  /* FVのみ全文表示 */
  display: inline-block;
  white-space: nowrap;
  transition: 1s ease-out;
  position: relative;
  z-index: 0;
}

#menu {
  width: 70vw;
  max-width: 400px;
  height: calc(100% - 40px);
  background-color: rgba(0, 0, 0, 0.8);
  overflow-y: auto;
  transition: 0.3s;
  margin: 20px 0;
  border-radius: 0 0 0 10px;
}
#closebtn {
  width: 32px;
  height: 32px;
  margin: 10px 10px 0 auto;
  border-radius: 50%;
  border: solid 2px #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
}
.tab-menu.open {
  transform: translateX(0);
}

.tab-menu.open #menuToggle {
  /*width: 12vw;*/
  flex-direction: row;
  justify-content: space-between;
  border-radius: 10px 0 0 10px;
  height: calc(45% - 40px);
}

.tab-menu.open .toggle-icon {
  margin-bottom: 0;
}

.tab-menu.open .toggle-text {
  display: block;
}

#menu ul {
  padding: 0 0 24px;
  margin: 0;
  list-style-type: none;
  position: relative;
}

#menu ul::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 29px; /* 上部の余白を追加 */
  width: 2px;
  height: calc(100% - 63px); /* 上下の余白を考慮して高さを調整 */
  background-color: #fff;
}

#menu li {
  position: relative;
}

#menu a {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 12px;
  padding: 14px 5px 14px 36px;
}
#menu a:hover {
  opacity: 1;
  text-decoration: line-through;
}
#menu li:last-child a {
  padding-bottom: 0;
}
#menu a.active {
  color: #ffff46;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 15px;
  transition: 0.3s;
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1; /* ドットを白い棒の上に表示 */
}

#menu li:last-child .dot {
  top: 72%;
}

.dot.active {
  /*transform: translateY(-50%) scale(2);*/
  width: 18px;
  height: 18px;
  left: 10px;
}

#menu::-webkit-scrollbar {
  width: 5px;
}

#menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

#menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}
.main-container * {
  box-sizing: border-box;
}
/**************************
** FV
**************************/
#lp-header {
  width: 100%;
  padding: 16px 12px 20px;
  box-sizing: border-box;
  background-color: #feeb00;
  background-size: contain;
  background-repeat: repeat-x;
  background-position: bottom;
  position: relative;
  z-index: 0;
}

#lp-header::before {
  content: "";
  display: block;
  position: absolute;
  top: -7%;
  left: 33%;
  width: 30%;
  height: 100%;
  background-image: url(/intern/img/intern_fv_bg_img_left.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

#lp-header::after {
  content: "";
  display: block;
  position: absolute;
  top: 29%;
  right: 3%;
  width: 25%;
  height: 100%;
  background-image: url(/intern/img/intern_fv_bg_img_right.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.fv-items {
  grid-template-columns: 34% 5% 19% 21% 17%;
  grid-template-rows: 55% 24% 17%;
  gap: 4px;
  max-height: 70vh;
  height: 65vh;
}
.fv-item {
  position: relative;
}
.fv-item1 {
  grid-column: 1/3;
  grid-row: 1/2;
}
.fv-item2 {
  grid-column: 1/2;
  grid-row: 2/3;
}
.fv-item3 {
  grid-column: 2/6;
  grid-row: 2/3;
}
.fv-item4 {
  grid-column: 1/4;
  grid-row: 3/4;
}
.fv-item5 {
  grid-column: 4/6;
  grid-row: 3/4;
}
.fv-item6 {
  grid-column: 3/6;
  grid-row: 1/2;
}
.fv_fade_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fv_fade_container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.fv_fade_container img.active {
  opacity: 1;
}
.fv-item6 img {
  object-position: left;
  max-height: 100%;
  object-fit: contain;
}
#lp-header .fv-locate {
  margin: 10px 0;
  text-align: center;
}
#lp-header .fv-locate span {
  position: relative;
  font-size: 17px;
  font-weight: bold;
}
#lp-header .fv-locate span::before {
  content: "";
  background-image: url(/intern/img/icon_area.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 16px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -16px;
}
.btn_entry_fv {
  background: #000;
  border-radius: 40px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.btn_entry_fv a {
  display: block;
  padding: 28px 0;
  color: #fff;
  text-decoration: none;
}
.btn_entry_fv a span {
  position: relative;
}
.btn_entry_fv a span::before,
.btn_entry_fv a span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  width: 8px;
  height: 5px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.btn_entry_fv a span::before {
  left: -26px;
}
.btn_entry_fv a span::after {
  right: -26px;
}
/**************************
** Main Lead
**************************/
.mainlead {
  width: 100%;
  position: relative;
  z-index: 0;
}
.mainlead_inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 47px 31px 59px;
  position: relative;
}
.mainlead_inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 2%;
  right: 0%;
  width: 20%;
  height: 100%;
  background-image: url(/intern/img/intern_mainlead_bg_img_top.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

.mainlead_inner::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 2%;
  left: 0%;
  width: 13%;
  height: 100%;
  background-image: url(/intern/img/intern_mainlead_bg_img_bottom.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  background-position: bottom;
}

.mainlead p {
  line-height: 2.6;
  margin: 0;
  font-size: 16px;
  margin-bottom: 65px;
  font-weight: bold;
  text-align: center;
}
.mainlead p:last-of-type {
  margin-bottom: 0;
}
.txt-wrap {
  white-space: nowrap;
}
/**************************
** Point
**************************/
#point {
  padding: 16px 0 120px;
  position: relative;
  z-index: 0;
  overflow-x: clip;
  margin-bottom: 20px;
}
#point::before {
  content: "";
  width: 100%;
  display: block;
  height: 108px;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%);
  background: white;
  position: absolute;
  left: 0;
  top: -1px;
  z-index: -1;
}
#point::after {
  content: "";
  width: 100%;
  display: block;
  height: 112px;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 0% 100%);
  background: white;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: -1;
}
.point-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}
.point-container::before {
  content: "";
  position: absolute;
  width: 5%;
  height: 100%;
  top: 8%;
  right: 10%;
  background-image: url(/intern/img/intern_bg_triangle_white.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
}

.point-item {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  margin-bottom: max(30px, 40%);
  padding: 0;
  position: relative;
  z-index: 1;
}
#point .text-content {
  background: rgb(255, 255, 255, 0.8);
  z-index: 2;
  padding: 27px;
  position: absolute;
  width: 90%;
  max-width: 440px;
  margin-top: auto;
  bottom: -35%;
}
#point .text-content p {
  margin: 0;
}
#point .text-title {
  font-weight: bold;
  margin: 0 0 15px;
  font-size: 17px;
  line-height: 1.5em;
}
#point .point_image-content {
  width: 80%;
  max-width: 640px;
  aspect-ratio: 34/29;
}
#point .point_image-content img {
  vertical-align: bottom;
  aspect-ratio: 34/29;
  object-fit: cover;
  object-position: center;
}
.point-item:nth-of-type(even) {
  flex-direction: row-reverse;
}
.point-item:nth-of-type(even) .text-content {
  left: 0;
  border-radius: 0 16px 16px 0;
  padding-left: 16px;
}
.point-item:nth-of-type(even) .point_image-content {
  text-align: right;
}
.point-item:nth-of-type(odd) .text-content {
  right: 0;
  border-radius: 16px 0 0 16px;
  padding-right: 16px;
}
.point-item:nth-of-type(even) .point_image-content img {
  border-radius: 16px 0 0 16px;
}
.point-item:nth-of-type(odd) .point_image-content img {
  border-radius: 0 16px 16px 0;
}
.point-item:last-of-type {
  margin-bottom: 0;
}
#point .point-item:nth-of-type(2)::before {
  content: "";
  position: absolute;
  width: 30%;
  height: 100vh;
  top: -15%;
  left: -16%;
  background-image: url(/intern/img/intern_point_bg_img_top.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

#point .point-item:nth-of-type(3)::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 100vh;
  top: -40%;
  right: -21%;
  background-image: url(/intern/img/intern_point_bg_img_middle.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

#point .point-item:nth-of-type(4)::before {
  content: "";
  position: absolute;
  width: 24%;
  height: 100vh;
  top: -30%;
  left: -2%;
  background-image: url(/intern/img/intern_point_bg_img_bottom.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

/**************************
** Wanted
**************************/
#wanted {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 12px 16px 56px;
}
.wanted-items {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.wanted-item {
  text-align: center;
  width: min(40%, 250px);
  font-weight: bold;
}
.img-bg {
  max-width: 150px;
  max-height: 150px;
  border-radius: 50%;
  margin: 10px auto;
}
/**************************
** People
**************************/
#people {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 22px 16px 68px;
}
.people-card_flex {
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1140px;
}
.people-card {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 23 / 12;
  margin-bottom: 30px;
  border-radius: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  cursor: pointer;
}

.people-card a {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.people-text {
  position: absolute;
  top: 0;
  left: 0;
  padding: 36px 22px 18px;
  color: #fff;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.main-container .people-text-head {
  font-weight: bold;
  line-height: 1.5em;
  margin: 0 0 24px;
  color: #fff;
}
.main-container .people-text-person {
  margin: 0 0 auto;
}
.main-container .people-text-readmore {
  margin: auto 0 0;
}
/*モーダルポップアップ*/
.modal {
  display: none;
  position: fixed;
  z-index: 4;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  overscroll-behavior: none;
}
.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 800px;
  position: relative;
  height: 94%;
  overflow-y: scroll;
}
#modalTitle {
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
  margin: 0 0 47px;
}
.message_image {
  width: 100%;
  height: auto;
  margin-bottom: 34px;
}
.modal-content .modal-innner p {
  margin-bottom: 40px;
}
.modal-content p {
  margin: 20px 0;
  line-height: 1.6;
}
.modal-content p:last-of-type {
  margin-bottom: 0;
}
.modal-close {
  color: #000;
  font-size: 25px;
  cursor: pointer;
  display: block;
  width: 32px;
  height: 32px;
  border: solid 1px #000;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  position: sticky;
  right: 20px;
  top: 0;
  left: 90%;
  background: #fff;
  z-index: 3;
}
.modal-close:hover,
.modal-close:focus {
  text-decoration: none;
  cursor: pointer;
}

/* インターン紹介ポップアップ「Timingoodってこんなとこ!」 */
.intern-intro-popup .intern-intro-popup-content {
  background: linear-gradient(165deg, #fdd835 0%, #fdd835 42%, #fff 48%, #fff 100%);
  margin: 8% auto;
  padding: 0;
  width: 92%;
  max-width: 480px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.intern-intro-popup .intern-intro-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  background: rgba(255, 255, 255, 0.9);
  z-index: 5;
}
.intern-intro-popup .intern-intro-popup-inner {
  padding: 28px 24px 32px;
  position: relative;
  z-index: 2;
}
.intern-intro-popup .intern-intro-popup-img-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.intern-intro-popup .intern-intro-popup-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  vertical-align: top;
}
.intern-intro-popup .intern-intro-popup-banner {
  display: inline-block;
  background: #fff;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  margin: 0 0 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.intern-intro-popup .intern-intro-popup-title {
  font-size: 22px;
  line-height: 1.35;
  margin: 0 0 24px;
  font-weight: 700;
}
.intern-intro-popup .intern-intro-popup-title-brand {
  color: #fdd835;
  -webkit-text-stroke: 1px #333;
  text-stroke: 1px #333;
  paint-order: stroke fill;
}
.intern-intro-popup .intern-intro-popup-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.intern-intro-popup .intern-intro-popup-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.intern-intro-popup .intern-intro-popup-list li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.intern-intro-popup .intern-intro-popup-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  background: #333;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
}
.intern-intro-popup .intern-intro-popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #333;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s;
}
.intern-intro-popup .intern-intro-popup-cta:hover,
.intern-intro-popup .intern-intro-popup-cta:focus {
  background: #555;
  color: #fff !important;
}
.intern-intro-popup .intern-intro-popup-cta-arrow {
  font-size: 18px;
}

/*卒業後の進路*/
.people-course {
  border-radius: 20px;
  padding: 50px 8px 8px;
  margin-top: 30%;
  position: relative;
  z-index: 1;
}
.people-course::before {
  content: "";
  width: 14%;
  height: 100%;
  background-image: url(/intern/img/intern_bg_circle_blue_small.png);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 14%;
  left: 2%;
  z-index: -1;
}

.people-course::after {
  content: "";
  width: 12%;
  height: 100%;
  background-image: url(/intern/img/intern_bg_triangle_white2.png);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 14%;
  right: 2%;
  z-index: -1;
}

.people-course_inner {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
.main-container .course-title {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -20%;
  width: 80%;
  max-width: 500px;
  line-height: 1;
}
@media (max-width: 500px) {
  .main-container .people-course {
    margin-top: 15%;
  }
  .main-container .course-title {
    top: -10%;
  }
  .main-container .company_name {
    font-size: 0.7em;
  }
}
.occupation {
  text-align: center;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  align-items: baseline;
}
.company_name {
  background: #fff;
  padding: 6px;
  font-size: 14px;
  margin: 0;
}
.company_others {
  font-size: 12px;
  margin: 0;
}
.main-container .occupation_text {
  font-size: 24px;
  text-align: center;
  margin: 0 0 20px;
  font-weight: bold;
}
.occupation_text span {
  position: relative;
}
.occupation_text span::before,
.occupation_text span::after {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -10%;
  bottom: 0;
  margin: auto;
  width: 28px;
  height: 31px;
}
.occupation_text span::before {
  background-image: url(/intern/img/img_intern_people-course_title_icon01.png);
  left: -30px;
}

.occupation_text span::after {
  background-image: url(/intern/img/img_intern_people-course_title_icon02.png);
  right: -30px;
}

.course-card {
  border-radius: 16px;
  padding: 31px 11px 36px;
  position: relative;
  border: solid 3px #f2d949;
}
.course-card::before,
.course-card::after {
  content: "";
  width: 60px;
  height: 60px;
  display: block;
  background: #feed61;
  position: absolute;
}
.course-card::before {
  top: -10px;
  left: -10px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 100%);
  border-radius: 16px 0 0 0;
}
.course-card::after {
  bottom: -10px;
  right: -10px;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.main-container .course-card-title {
  text-align: center;
  margin: 0 0 20px;
  color: #000;
  font-size: 14px;
}
.main-container .course-card-title span {
  position: relative;
}
.main-container .course-card-title span::before,
.main-container .course-card-title span::after {
  content: "";
  width: 2px;
  height: 20px;
  border-left: dotted 2px #000;
  display: block;
  position: absolute;
}
.main-container .course-card-title span::before {
  transform: rotate(-37deg);
  left: -10px;
  bottom: -3px;
}
.main-container .course-card-title span::after {
  transform: rotate(37deg);
  right: -10px;
  bottom: -3px;
}
.course-card .flex-box {
  flex-wrap: nowrap;
  justify-content: center;
  gap: 16px;
}
.course-card .left {
  width: 35%;
  max-width: 100px;
}
.course-card .left img {
  border-radius: 50%;
  max-width: 100px;
}
.course-card .left .name {
  font-size: 14px;
  text-align: center;
  margin: 13px 0 0;
}
.course-card .right {
  width: 83%;
}
.course-card .right img {
  width: 24px;
  vertical-align: bottom;
}
.main-container .right-title {
  font-size: 14px;
  margin: 5px 0 15px;
  border: none;
  padding: 0;
}
.right-text {
  font-size: 12px;
  margin: 0;
}
/**************************
** Data
**************************/
#data {
  padding: 27px 16px 32px;
  position: relative;
  background: #fff6a4;
  z-index: 0;
}
#data::before {
  content: "";
  width: 100%;
  display: block;
  height: 106px;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%);
  background: white;
  position: absolute;
  left: 0;
  top: -1px;
  z-index: -1;
}
#data::after {
  content: "";
  width: 100%;
  display: block;
  height: 104px;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 0% 100%);
  background: white;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: -1;
}
.data-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
.data-item {
  background: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 18px 0 16px;
}
.data-grid {
  gap: 8px;
  width: 100%;
  grid-template-columns: repeat(6, 1fr);
}
.main-container .data-title {
  font-weight: bold;
  font-size: 14px;
  margin: 0 0 12px;
}
.data1 {
  grid-column: 1 / 3;
}
.data2 {
  grid-column: 3 / 7;
}
.data3 {
  grid-column: 1 / 4;
}
.data4 {
  grid-column: 4 / 7;
}
.data5 {
  grid-column: 1 / 7;
  padding-bottom: 20px;
}
.data5 p {
  margin: 0 30px;
  font-size: 13px;
}
.data5 p span {
  white-space: nowrap;
  margin-left: 3px;
}
.data5 .data-item_others {
  margin: 16px 26px 0;
  text-align: right;
}
.data6 {
  grid-column: 1 / 5;
}
.data7 {
  grid-column: 5 / 7;
}
#data .data_note {
  text-align: right;
  margin: 14px 0;
  font-size: 10px;
}
.moving-text {
  text-transform: uppercase;
  overflow-x: clip;
  display: flex;
  flex-wrap: nowrap;
  width: 100vw;
  margin: 40px -16px 0;
}
.moving-text p {
  -webkit-text-stroke: 2px #81ccdc;
  text-stroke: 1px #81ccdc;
  -webkit-text-fill-color: transparent;
  font-size: 5em;
  font-weight: bold;
  white-space: nowrap;
  animation: loop 30s infinite linear both;
  margin: 0;
  margin-right: 40%;
}
.moving-text p span {
  margin-left: 15px;
}
@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(calc(-100% - 40%) - 30px));
  }
}
/**************************
** Support
**************************/
#support {
  padding: 16px 0 28px;
  position: relative;
  z-index: 0;
  min-height: 600px;
}
.support-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
#support::after {
  content: "";
  width: 100%;
  height: 61%;
  border-radius: 50% 50% 0 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #feed62;
  z-index: -1;
}
.support_swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow-x: clip;
  list-style: none;
  padding: 0;
  z-index: 1;
}

#support .slide_inner {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  /*width: 100%;*/
  background: #fff;
  border-radius: 0 48px 0 48px;
  box-shadow: 0 0 6px #bababa;
  margin: 0;
  height: 100%;
  min-height: 450px;
  /*height: auto;*/
}
#support .swiper-slide {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 300/193;
}
#support .support_swiper::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 8%;
  height: 100%;
  background: linear-gradient(to right, white, transparent);
  z-index: 2;
}
#support .support_swiper::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 8%;
  height: 100%;
  background: linear-gradient(to left, white, transparent);
  z-index: 2;
}
#support .slide_inner img {
  border-radius: 0 48px 0 0;
  margin: 0 auto;
  aspect-ratio: 300 / 193;
}
#support .slide_inner p {
  padding: 0 19px 46px;
}
#support .slide_inner .swiper-title {
  padding: 28px 19px 20px;
  font-size: 16px;
  margin: 0;
}
#support .swiper-controller {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: flex-end;
  margin-top: 3.2rem;
}
#support .swiper-button-prev,
#support .swiper-button-next {
  height: 40px;
  width: 40px;
  background: rgb(129 204 220 / 85%);
  border-radius: 50%;
}
#support .swiper-button-prev:after,
#support .swiper-button-next:after {
  font-size: 17px;
  color: #fff;
}
/**************************
** Parallax
**************************/
.parallax {
  min-height: 242px;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/**************************
** Office
**************************/
#office {
  padding: 16px 16px 59px;
  background: #fff;
}
.office-countainer {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.tab-wrap {
  position: relative;
}
.scroll-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow-x: scroll;
  /* IE, Edge 対応 */
  -ms-overflow-style: none;
  /* Firefox 対応 */
  scrollbar-width: none;
}
/* Chrome, Safari 対応 */
.scroll-wrap::-webkit-scrollbar {
  display: none;
}
.tab-wrap::after {
  content: "";
  width: 10%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}
.tab-area {
  list-style: none;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 0;
  width: clamp(500px, 100%, 980px);
  margin: 0 auto;
}
.tab-item {
  width: max(25%, 80px);
  padding: 10px;
  text-align: center;
  background: #e2e2e2;
  border-radius: 20px 20px 0 0;
  font-weight: bold;
  border: none;
  color: #000;
  cursor: pointer;
}
.tab-item.current {
  background: #81ccdc;
  color: #fff;
}
.content-area {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 0 0 20px 20px;
  border: solid 1px #e2e2e2;
  border-width: 0 4px 4px;
  box-sizing: border-box;
  display: none;
  padding: 24px 18px 20px;
}
.content-area.active {
  display: block;
}
.content__flex {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.office_swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
#office .swiper-wrapper {
  margin-top: 0;
  margin-left: 0;
}
#office .swiper-slide {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 831 / 581;
}
.content-area_img {
  margin-bottom: 10px;
  position: relative;
  width: 100%;
}
.content-area_img .nearest {
  position: absolute;
  width: 80px;
  height: 80px;
  bottom: 10px;
  right: 10px;
  z-index: 2;
}
.content_flex_right {
  width: 100%;
}
.main-container .content-area_title {
  font-weight: bold;
  font-size: 18px;
  margin: 0 0 10px;
}
.content-area p {
  font-size: 14px;
  margin: 0 0 18px;
}
.content-area_voice {
  gap: 15px;
  justify-content: center;
  padding: 0;
}
.office_left {
  text-align: center;
}
.office_left img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #bbb;
}
.office_left p {
  text-align: center;
  margin: 0;
}
.officename {
  font-size: 10px;
  display: block;
}
.office_right {
  width: 70%;
}
.office_right p {
  padding: 16px 13px;
  background: #fff6a4;
  border-radius: 12px;
  position: relative;
  font-size: 12px;
  margin-bottom: 0;
}
.office_right p::before {
  content: "";
  position: absolute;
  top: 30%;
  left: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-right: 19px solid #fff6a4;
}
/**** オフィス　スライド ****/
#office .swiper-pagination {
  position: absolute;
  bottom: 10px;
}
#office .swiper-pagination-bullet {
  background: #e2e2e2;
}
#office .swiper-pagination-bullet-active {
  background: #81ccdc;
}
/**************************
** Work・Skill
**************************/
#work {
  padding: 23px 16px 130px;
  position: relative;
  z-index: 0;
}
#work::before {
  content: "";
  width: 100%;
  display: block;
  height: 144px;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%);
  background: white;
  position: absolute;
  left: 0;
  top: -1px;
  z-index: -1;
}
#work::after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  background-image: url(/intern/img/ph_intern_work_bg-bottom.png);
  background-size: contain;
  background-position: bottom;
  background-repeat: repeat-x;
}

.work-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.main-container .work-text {
  text-align: center;
  width: 90%;
  margin: 0 auto;
  line-height: 1.8em;
}
.work-items {
  gap: 16px 6px;
  grid-template-columns: repeat(2, 1fr);
  margin: 32px 0 60px;
}
.work-item {
  background: #fff;
  padding: calc(60px / 2) 10px 12px;
  border-radius: 8px;
  margin-top: calc(84px / 2);
  position: relative;
  font-size: 12px;
}
.main-container .work-item_image {
  max-width: 84px;
  max-height: 84px;
  background: #eee;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: -25%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.work-item_title {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  margin: 18px 0 8px;
}
p.work-item_text {
  margin: 0;
  font-size: 12px;
}
/****Skill ****/
.skill-area {
  position: relative;
  z-index: 1;
}
.skill-area::before {
  content: "";
  background-image: url(/intern/img/intern_bg_triangle_white2.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 11%;
  height: 100%;
  top: -21%;
  left: 0%;
  position: absolute;
  z-index: -1;
}

.skill-area::after {
  content: "";
  background-image: url(/intern/img/intern_bg_circle_blue.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 14%;
  height: 100%;
  top: -14%;
  right: 0%;
  position: absolute;
  z-index: -1;
}

.skillarea-title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 28px;
}
.skillarea-title span {
  position: relative;
}
.skillarea-title span::before,
.skillarea-title span::after {
  content: "";
  width: 2px;
  height: 20px;
  border-left: solid 2px #000;
  display: block;
  position: absolute;
}
.skillarea-title span::before {
  transform: rotate(-37deg);
  left: -10px;
  bottom: -3px;
}
.skillarea-title span::after {
  transform: rotate(37deg);
  right: -10px;
  bottom: -3px;
}
.main-container .skill-grid {
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  gap: 5px;
  padding: 0;
  margin: 0;
}
.main-container .skill-grid li {
  border: solid 1px #000;
  background: rgb(255 255 255 / 70%);
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 0;
  margin: 0;
}
/**************************
** Schedule
**************************/
#schedule {
  padding: 72px 16px 52px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  position: relative;
}
.schedule-tab_area {
  flex-wrap: nowrap;
  justify-content: center;
  margin: -10px 0 0;
}
.schedule-tab {
  width: 50%;
  text-align: center;
  border-bottom: solid 3px #d6d6d6;
  cursor: pointer;
}
.schedule-tab.current {
  border-color: #feed62;
}
.schedule-tab h3,
.schedule-tab .schedule-tab__title {
  font-weight: normal;
  font-size: 16px;
  margin: 0 0 10px;
}
/* タブを実ボタンにしたときのリセット（スマホのタップしやすさ・iOS対策） */
button.schedule-tab {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  font: inherit;
  color: inherit;
  padding: 0;
  margin: 0;
  border: none;
  border-bottom: solid 3px #d6d6d6;
  border-radius: 0;
  touch-action: manipulation;
}
button.schedule-tab.current {
  border-bottom-color: #feed62;
}
/* 右端固定メニュー（幅約40px）と Case2 が重ならないよう余白を確保 */
@media (max-width: 832px) {
  #schedule .schedule-tab_area {
    padding-right: 52px;
    box-sizing: border-box;
  }
  #schedule .schedule-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
  }
  #schedule .schedule-tab h3,
  #schedule .schedule-tab .schedule-tab__title {
    margin: 0;
  }
}
.schedule-area {
  margin: 0 auto 14px;
  width: 100%;
  max-width: 800px;
}
.schedule-box {
  display: none;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.schedule-box.active {
  display: block;
}
.schedule_bottom {
  width: 100%;
  max-width: 800px;
  margin: auto;
}
.main-container .sche_pc {
  display: none;
}
.main-container .sche_sp {
  display: block;
}
/**************************
** Flow
**************************/
#flow {
  padding: 57px 16px 37px;
  position: relative;
  z-index: 0;
  background: #fff6a4;
}
#flow::before {
  content: "";
  width: 100%;
  display: block;
  height: 144px;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%);
  background: white;
  position: absolute;
  left: 0;
  top: -1px;
  z-index: -1;
}
.flow-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.flow-item {
  gap: 10px;
}
.flow-left {
  position: relative;
}
.flow-left::after {
  border-left: solid 3px #fff;
  content: "";
  height: 100%;
  width: 3px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 0;
}
.flow-step {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  color: #81ccdc;
  font-weight: bold;
  line-height: 1;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.stepcount {
  display: block;
  font-size: 10px;
  line-height: 1;
}
.flow-right h3 {
  font-size: 16px;
  margin: 16px 0;
}
.flow-right img {
  border-radius: 16px;
  width: 100%;
  max-width: 600px;
}
.flow-right_text {
  font-size: 14px;
  width: 100%;
  max-width: 600px;
}
.flow-right_text ul {
  padding-left: 1rem;
}
.flow-right_text p {
  margin: 20px 0;
}
.flow .text-note {
  margin: 0;
  font-size: 12px;
  list-style: 1.5;
}
.flow-right_text a {
  font-size: 12px;
  font-weight: bold;
  color: #000;
  margin: 20px 0;
  display: block;
  text-decoration: underline;
}
/**************************
** Conditions
**************************/
#conditions {
  padding: 32px 16px 20px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  position: relative;
}
table tr:nth-of-type(2n + 1) {
  background: none;
}
.conditions-table th,
.conditions-table td {
  display: block;
  padding: 12px;
  border: none;
}
.conditions-table th {
  background: #efefef;
  text-align: left;
  font-weight: bold;
  font-size: 16px;
}
.conditions-table td {
  font-size: 14px;
  padding-bottom: 44px;
}
.conditions-loc {
  margin-bottom: 34px;
}
.conditions-loc:last-of-type {
  margin-bottom: 0;
}
td p {
  margin: 0;
}
/**************************
** FAQ
**************************/
#faq {
  padding: 53px 16px 47px;
  background: url(/intern/img/img_intern_faq_bg.jpg) #ffefa1;
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: contain;
  position: relative;
  z-index: 1;
}

.faq-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.faq-container::after {
  width: 20%;
  height: 100%;
  content: "";
  position: absolute;
  bottom: -8%;
  right: -5%;
  background-image: url(/intern/img/intern_bg_circle_blue.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.faq h2 {
  font-size: 22px;
}
#faq .faq-inner {
  position: relative;
}
#faq .faq-inner::before {
  width: 18%;
  max-width: 200px;
  height: 100%;
  content: "";
  position: absolute;
  top: 6%;
  left: -11%;
  background-image: url(/intern/img/intern_faq_bg_img_left.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

#faq .faq-inner::after {
  width: 15%;
  max-width: 140px;
  height: 100%;
  content: "";
  position: absolute;
  top: -3%;
  right: 0%;
  background-image: url(/intern/img/intern_faq_bg_img_right.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq_item {
  background-color: #ffffff;
  margin-bottom: 8px;
  border-radius: 4px;
  overflow: hidden;
}
.faq-question {
  padding: 12px 16px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  margin: 0;
  color: #000;
}
.faq-question-text {
  /*white-space: nowrap;*/
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
  margin-right: 10px;
  font-size: 14px;
}
.faq-question-arrow {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
}

.faq-question-arrow::before,
.faq-question-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  left: 0;
  width: 2px;
  height: 10px;
  border-radius: 9999px;
  background-color: #81ccdc;
  transform-origin: 50% calc(100% - 1px);
}

.faq-question-arrow::before {
  transform: rotate(45deg);
}

.faq-question-arrow::after {
  transform: rotate(-45deg);
}
.faq-question.open .faq-question-arrow {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-answer p {
  margin: 0;
  padding: 0 0 12px;
  font-size: 12px;
}
/**************************
** Gallery
**************************/
#gallery {
  padding: 40px 0;
  width: 100%;
  background: #fff;
  position: relative;
}
.gallery_container {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow-x: clip; /* 横スクロールを防ぐ */
  position: relative;
}
.gallery_wrap {
  position: relative;
  width: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.gallery_box {
  width: 1980px;
  background-repeat: repeat-x;
  background-size: contain;
}
.gallery_box_top {
  height: 200px;
  background-position: top 0 right 45em;
}

.gallery_box_bottom {
  height: 100px;
  background-position: top 0 right -25em;
}

.gallery_text {
  -webkit-text-stroke: 2px #81ccdc;
  text-stroke: 1px #81ccdc;
  -webkit-text-fill-color: transparent;
  font-size: min(15vw, 180px);
  font-weight: bold;
  white-space: nowrap;
  position: absolute;
  text-transform: uppercase;
  margin: 0;
  z-index: 2;
}
.gallery_text_top {
  top: 0;
  left: 0;
  transform: translateY(-50%);
}
.gallery_text_bottom {
  bottom: 0;
  right: 0;
  transform: translateY(50%);
}
/**************************
** Form
**************************/
#form {
  padding: 46px 16px;
  position: relative;
}
.form-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  padding: 30px;
}
.form-area {
  width: 100%;
}

.form-wrap {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.form-header {
  text-align: center;
  margin-bottom: 10px;
}

.main-container h2.form-title {
  font-size: 22px;
  color: #000;
  line-height: 1.3em;
  margin-bottom: 20px;
}

.progress-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.progress-step {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e0e0e0;
  margin: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #fff;
  position: relative;
}

.progress-step.active {
  width: 34px;
  height: 34px;
  background-color: #000;
}

.progress-step.completed {
  background-color: #000;
}

.progress-step::after {
  content: "";
  width: 240%;
  border-top: solid 1px #e0e0e0;
  right: -30px;
  position: absolute;
  z-index: 0;
}

.progress-step.active::after {
  right: -39px;
  width: 115%;
}

.progress-step:last-child::after {
  border: none;
}

.progress-step.active i {
  display: block;
}

.progress-step i {
  display: none;
}

.progress-line {
  flex-grow: 1;
  height: 2px;
  background-color: #e0e0e0;
}

.form-content {
  margin-bottom: 20px;
}
.form_question {
  margin-bottom: 10px;
}
#form .form_question-title {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}

#form .office-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

#form .office-button {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 80px;
  background: #e5e5e5;
  color: #000;
}

.office-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.office-name {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 5px;
}
#form .office-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #231815;
  transition: background-color 0.3s;
}

#form .office-button:hover .office-overlay {
  background-color: rgba(255, 255, 255, 0.7);
}

#form .office-button.selected {
  background: #feed62;
}
#form .office-button.selected .office-overlay {
  background: none;
  text-shadow: 0 0 5px #fff;
}

#form .question {
  margin-bottom: 25px;
}

.form .question .item {
  font-size: 18px;
  color: #333;
}
#form .question .item-interests,
.question .item-reasons {
  display: block;
  margin-bottom: 20px;
}

#form label {
  display: flex;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
  font-size: 16px;
  line-height: 1.5em;
  align-items: center;
  flex-wrap: wrap;
}
#form .question label {
  font-size: 20px;
  line-height: 1.5;
}

#form .question .radio-option label {
  font-size: 14px;
}

#form .radio-option label {
  cursor: pointer;
  position: relative;
  padding: 10px;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border-color: #3498db;
  outline: none;
}

.radio-option {
  margin-bottom: 10px;
  background: #e3e3e3;
  border-radius: 6px;
  width: 100%;
}
.radio-option:has(input:checked) {
  background: #fcf5b9;
}

#form .form-navigation {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 10px auto 0;
}
#form .form-navigation button {
  padding: 0;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  color: #000;
}
#form .form-navigation #back-button::before {
  /*白いひし型 */
  display: block;
  content: "";
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  left: -13px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border: solid 3px #000;
  border-width: 0 0 2px 2px;
}
#form .form-navigation #next-button::before {
  /*白いひし型 */
  display: block;
  content: "";
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 43%;
  right: -13px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border: solid 3px #000;
  border-width: 2px 2px 0 0;
}

#form .form-navigation #next-button.submit::before,
#form .form-navigation #next-button.submit::after {
  content: none;
}
#form .form-navigation #back-button:disabled:before {
  border-color: rgba(16, 16, 16, 0.3);
}
#form .form-navigation #next-button:disabled:before {
  border-color: rgba(16, 16, 16, 0.3);
}
#form .form-navigation button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  color: #b7b7b7;
}
#form .submit_container {
  margin-top: 10px;
}
.main-container #form .personalInfo {
  font-size: 15px;
  text-align-last: left;
  margin-bottom: 15px;
}
.main-container #form .btn_entry input[type="submit"],
.main-container #form .btn_entry button.submit {
  width: 100%;
  background: #000;
  display: block;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  margin: 0 auto 2em;
  font-size: 1.2em;
}
.main-container #form .btn_entry input[type="submit"]:hover,
.main-container #form .btn_entry button.submit:hover {
  cursor: pointer;
  opacity: 0.7;
}
.main-container #form .btn_entry button[type="submit"]:disabled {
  background: #c2c2c2;
  border: none;
}

.main-container #form .btn_entry input[type="submit"]:disabled:hover,
.main-container #form .btn_entry button.submit:disabled:hover {
  cursor: auto;
  opacity: 1;
}
#form .visually-hidden {
  /* コンテンツの流れから切り離す */
  position: absolute;
  /* 誤ったコードに対処するための回避策 */
  white-space: nowrap;
  /* 可能な限り文字サイズを小さくするための処理
     * (スクリーンリーダー中には height と width が 0 のものを無視するため)
     */
  width: 1px;
  height: 1px;
  /* オーバーフローしているコンテンツを隠す */
  overflow: hidden;
  /* 要素サイズを変更しうるプロパティのリセット */
  border: 0;
  padding: 0;
  /* 要素のどの部分が表示されるかを定義するもの */
  /* 古いブラウザでは使用できない */
  clip: rect(0 0 0 0);
  /* 最近のブラウザ用
     * コンテンツを非表示にする設定  */
  clip-path: inset(50%);
  /* 今現在なぜ-1pxがここで設定されるかは分かっていないそうです。
     * それに加えていくつか問題もあるそうです 
     * (参考: https://github.com/h5bp/html5-boilerplate/issues/1985)
     */
  margin: -1px;
}
.main-container select {
  color: #000;
}
::placeholder {
  font-size: 14px;
}
#form .required {
  background: #dd5f5f;
  color: #fff;
  padding: 4px 6px;
  margin-right: 10px;
  font-size: 10px;
  display: inline-block;
  line-height: 1em;
  text-align: center;
}
#form .optional {
  background: #c1c1c1;
  color: #fff;
  padding: 4px 6px;
  margin-right: 10px;
  font-size: 10px;
  display: inline-block;
  line-height: 1em;
  text-align: center;
}
#form .note {
  font-size: 12px;
}
#form .career_link {
  font-size: 12px;
  line-height: 1.5em;
  margin-top: 10px;
}
#form .mail_note {
  font-size: 12px;
  line-height: 1.5em;
  margin-top: 1em;
}
.slide-container {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.slide {
  flex: 0 0 100%;
  padding: 20px;
}

#form .error {
  background-color: #ffe0e0; /* エラーが発生したフィールドに赤背景を追加 */
}
#form .error_note {
  font-size: 10px;
  color: #dd5f5f;
}
.fukuoka-container #form .office-button[data-office="熊本"],
.fukuoka-container #form .office-button[data-office="目黒"] {
  display: none;
}

@media (max-width: 768px) {
  .office-grid {
    grid-template-columns: 1fr;
  }

  .internship-form-container {
    padding: 20px;
  }
}
/****************************
タブレットサイズ
****************************/
@media (min-width: 700px) and (max-width: 832px) {
  br.sp-br {
    display: none;
  }
  .tab-db {
    display: block;
  }
  .tab-dn {
    display: none;
  }
  /**************************
** Main Lead
**************************/
  .mainlead p {
    margin-bottom: 40px;
  }
  /**************************
** Point
**************************/
  #point {
    padding-bottom: 200px;
    margin-bottom: 60px;
  }
  .point-item {
    margin-bottom: max(30px, 25%);
  }
  #point .point_image-content {
    width: 60%;
  }
  #point .text-content {
    bottom: -10%;
  }

  /**************************
** Wanted
**************************/
  .wanted-item {
    width: calc(calc(100% / 4) - 25px);
  }
  /**************************
** People
**************************/
  .people-card {
    height: 235px;
    width: 48%;
    background-size: cover;
  }
  .people-text {
    text-shadow: 0 0 3px #868686;
  }
  .people-course {
    padding-top: 16%;
    margin-top: 8%;
  }
  .main-container .course-title {
    top: -10%;
    width: 65%;
  }
  .people-course_inner {
    width: 80%;
  }
  .course-card {
    padding: 31px 15px 36px;
  }
  .main-container .course-card-title {
    font-size: 18px;
  }
  .right-text {
    font-size: 14px;
  }
  /**************************
** Data
**************************/
  .data-grid {
    grid-template-columns:
      calc(21% - 8px) 2% calc(19% - 8px) calc(11% - 8px) calc(28% - 8px)
      calc(19% - 8px);
    width: 100%;
  }
  .data-item {
    padding: 20px 0 10px;
  }
  .data1 {
    grid-row: 1/2;
    grid-column: 1/2;
  }
  .data2 {
    grid-row: 1/2;
    grid-column: 2 / 5;
  }
  .data3 {
    grid-row: 2/3;
    grid-column: 1/3;
  }
  .data4 {
    grid-row: 2/3;
    grid-column: 3/4;
  }
  .data5 {
    grid-row: 1/2;
    grid-column: 5/7;
  }
  .data6 {
    grid-row: 2/3;
    grid-column: 4/6;
  }
  .data7 {
    grid-row: 2/3;
    grid-column: 6/7;
  }
  .data5 p {
    font-size: 14px;
    line-height: 1.5;
  }
  .data5 p span {
    margin-right: 0;
  }
  .data5 .data-item_others {
    margin: 10px 20px 0;
  }
  /****************************
Office
****************************/
  .content__flex {
    flex-wrap: nowrap;
    gap: 15px;
  }
  .content-area_img {
    width: 50%;
    margin-bottom: 0;
  }
  .office_right {
    margin-top: 1%;
  }
  .office_right p {
    font-size: 14px;
    padding: 20px;
  }
  .content-area_voice {
    gap: 30px;
    padding: 20px 0 10px;
  }
  /****************************
Work
****************************/
  .work-items {
    gap: 16px;
  }
  .main-container .work-item_image {
    top: -30%;
  }
  .work-item_textarea {
    width: 90%;
    margin: 0 auto;
  }
  .main-container .skill-grid li {
    padding: 10px;
  }
  /****************************
Schedule
****************************/
  .main-container .sche_pc {
    display: block;
    margin-top: 20px;
  }
  .main-container .sche_sp {
    display: none;
  }
  /****************************
Flow
****************************/
  .flow-item {
    gap: 25px;
    justify-content: center;
  }
  .flow-right img,
  .flow-right_text {
    width: 90%;
  }
  /****************************
Conditions
****************************/
  table.conditions-table {
    width: 85%;
    margin: 0 auto;
  }
  /****************************
FAQ
****************************/
  .faq-list {
    width: 90%;
  }
  .faq-question-text {
    font-size: 16px;
  }
  .faq-answer p {
    font-size: 14px;
  }
  /****************************
Gallery
****************************/
  #gallery {
    padding: 70px 0 60px;
  }
}
/****************************
PCサイズ
****************************/
@media (min-width: 833px) {
  body {
    font-size: 16px;
    line-height: 1.5em;
  }
  .sp-br {
    display: none;
  }
  .main-container h2 {
    font-size: 1.7em;
  }
  /**************************
** FV
**************************/
  #lp-header {
    padding: 60px 10px;
  }
  #lp-header::before {
    width: 13%;
    left: 69%;
    top: 0%;
  }
  #lp-header::after {
    top: 43%;
    right: 0%;
    width: 9%;
  }
  .fv-items {
    grid-template-columns: 17% 19% 14% 22% 25%;
    grid-template-rows: 50% 36% 11%;
    gap: 10px;
    height: 65vh;
  }
  .fv-item1 {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .fv-item2 {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .fv-item3 {
    grid-column: 3/5;
    grid-row: 1/2;
  }
  .fv-item4 {
    grid-column: 2/4;
    grid-row: 2/3;
  }
  .fv-item5 {
    grid-column: 4/5;
    grid-row: 2/3;
  }
  .fv-item6 {
    grid-column: 5/6;
    grid-row: 1/4;
  }
  .fv-item6 img {
    object-position: top;
  }
  #lp-header .fv-locate {
    margin-bottom: 25px;
    position: relative;
  }
  #lp-header .fv-locate span {
    font-size: 30px;
  }
  #lp-header .fv-locate span::before {
    width: 25px;
    height: 35px;
    left: -36px;
  }
  .btn_entry_fv a {
    font-size: 20px;
  }
  .btn_entry_fv a span::before,
  .btn_entry_fv a span::after {
    width: 8px;
    height: 8px;
  }
  .btn_entry_fv a span::before {
    left: -60px;
  }
  .btn_entry_fv a span::after {
    right: -60px;
  }
  #lp-header .fv-locate::before {
    content: "";
    display: block;
    position: absolute;
    top: -221%;
    left: -3%;
    width: 21%;
    height: 100vh;
    background-image: url(/intern/img/intern_fv_bg_img_pc.png);
    background-repeat: no-repeat;
    background-size: contain;
  }

  /**************************
** Menu
**************************/
  #menu ul {
    width: auto;
    padding-right: 40px;
  }
  /**************************
** Main Lead
**************************/
  .mainlead {
    padding: 89px 31px;
  }
  /*.mainlead::before{
    content: "";
    background-image: url();
    position: absolute;
    top: 0;
    left: 0;
  }
  .mainlead::after{
    content: "";
    background-image: url();
    position: absolute;
    top: 0;
    right: 0;
  }*/
  .mainlead p {
    font-size: 18px;
  }
  /**************************
** Point
**************************/
  #point {
    padding-bottom: 200px;
    margin-bottom: 60px;
  }
  .point-item {
    margin-bottom: 80px;
    position: relative;
  }
  #point .text-title {
    font-size: 20px;
  }
  #point .point_image-content {
    aspect-ratio: auto;
  }
  #point .point_image-content img,
  #point .text-content {
    border-radius: 16px;
  }
  #point .point_image-content img {
    aspect-ratio: 32 / 21;
    max-width: 640px;
  }
  #point .text-content {
    width: 60%;
    bottom: 30px;
    padding: 30px 40px;
  }
  .point-item:nth-of-type(odd) .text-content {
    right: 10%;
  }
  .point-item:nth-of-type(even) .text-content {
    left: 10%;
  }
  #point .point-item:nth-of-type(2)::before {
    width: 20%;
    top: -24%;
    left: -4%;
  }
  #point .point-item:nth-of-type(3)::before {
    width: 30%;
    top: -20%;
    right: -11%;
  }
  #point .point-item:nth-of-type(4)::before {
    top: -14%;
    left: 2%;
  }
  /**************************
** Wanted
**************************/
  #wanted {
    padding: 12px 40px 112px;
  }
  .wanted-items {
    justify-content: space-between;
  }
  .wanted-item {
    width: calc(calc(100% / 4) - 25px);
  }
  /**************************
** People
**************************/
  #people {
    padding: 22px 40px 100px;
  }
  .people-card {
    height: 235px;
    width: 48%;
    background-size: cover;
  }
  .main-container .people-text-head {
    font-size: 24px;
    line-height: 1.5em;
  }
  .modal-content p {
    margin: 30px 0;
    line-height: 1.6;
  }
  #modalTitle {
    font-size: 40px;
  }
  .people-course {
    padding: 65px 20px 20px;
    margin-top: 65px;
  }
  .people-course::before {
    top: 13%;
    left: 7%;
  }
  .people-course::after {
    right: 10%;
  }
  .people-course_inner {
    padding: 0 10%;
  }
  .occupation {
    max-width: 880px;
    margin: 40px auto 30px;
    gap: 10px;
  }
  .company_name {
    font-size: 20px;
    padding: 10px;
  }
  .company_others {
    font-size: 20px;
  }
  .main-container .occupation_text {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 30px;
  }
  .main-container .occupation_text span::before,
  .main-container .occupation_text span::after {
    height: 45px;
    width: 38px;
  }
  .main-container .occupation_text span::before {
    left: -50px;
  }
  .main-container .occupation_text span::after {
    right: -40px;
  }
  .course-card {
    padding: 50px 30px 20px;
    max-width: 880px;
    margin: 0 auto;
  }
  .main-container .course-card-title {
    font-size: 24px;
  }
  .main-container .course-card-title span::before,
  .main-container .course-card-title span::after {
    height: 40px;
    border-width: 4px;
  }
  .main-container .course-card-title span::before {
    left: -20px;
  }
  .main-container .course-card-title span::after {
    right: -20px;
  }
  .main-container .course-title {
    top: -10%;
    width: 65%;
  }
  .course-card .left .name {
    font-size: 16px;
  }
  course-card .right img {
    width: 45px;
  }
  .main-container .right-title {
    font-size: 22px;
    margin-top: 10px;
  }

  .right-text {
    font-size: 16px;
  }
  /**************************
** Data
**************************/
  #data {
    padding: 67px 40px 86px;
  }
  #data::after {
    height: 250px;
  }
  .main-container .data-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .data-grid {
    grid-template-columns:
      calc(21% - 8px) 2% calc(19% - 8px) calc(11% - 8px) calc(28% - 8px)
      calc(19% - 8px);
    width: 100%;
  }
  .data-item {
    padding: 30px 0 10px;
    /*min-width: 150px;*/
  }
  .data1 {
    grid-row: 1/2;
    grid-column: 1/2;
  }
  .data2 {
    grid-row: 1/2;
    grid-column: 2 / 5;
  }
  .data3 {
    grid-row: 2/3;
    grid-column: 1/3;
  }
  .data4 {
    grid-row: 2/3;
    grid-column: 3/4;
  }
  .data5 {
    grid-row: 1/2;
    grid-column: 5/7;
  }
  .data6 {
    grid-row: 2/3;
    grid-column: 4/6;
  }
  .data7 {
    grid-row: 2/3;
    grid-column: 6/7;
  }
  .data5 p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 5px;
  }
  .data5 p span {
    margin-right: 5px;
  }
  .moving-text {
    margin: 80px -40px 0;
  }
  .moving-text p {
    font-size: 7em;
  }
  /**************************
** Support
**************************/
  #support .slide_inner {
    min-height: 520px;
  }
  /**************************
** Office
**************************/
  #office {
    padding: 18px 40px 100px;
    background: #fff;
    position: relative;
  }
  .content-area {
    padding: 24px 30px 30px;
  }
  .content__flex {
    flex-wrap: nowrap;
    gap: 30px;
  }
  .content__flex .content-area_img {
    width: 60%;
    margin-bottom: 0;
  }
  .content_flex_right {
    width: 40%;
  }
  .content-area_img .nearest {
    width: 120px;
    height: 120px;
  }
  .main-container .content-area_title {
    font-size: 20px;
    line-height: 1.5;
    margin: 20px 0 22px;
  }
  .content-area_voice {
    gap: 30px;
    padding: 20px 0 10px;
  }
  .office_left {
    width: 20%;
  }
  .office_left img {
    width: 130px;
    height: 130px;
  }
  .content-area p {
    font-size: 16px;
  }
  .officename {
    font-size: 13px;
  }
  .office_right {
    width: 80%;
    margin-top: 3%;
  }
  .office_right p {
    padding: 20px;
    font-size: 16px;
  }
  /**************************
** Parallax
**************************/
  .parallax {
    min-height: 500px;
    /* fixed はビューポート基準で帯内が真っ白に見えやすいため scroll */
    background-attachment: scroll;
    background-position: center center;
  }
  /**************************
** Work
**************************/
  #work {
    padding: 23px 40px 180px;
  }
  #work::after {
    height: 130px;
  }
  .work-items {
    gap: 36px 20px;
  }
  .work-item {
    padding: calc(84px / 2) 40px 40px;
    font-size: 16px;
  }
  .main-container .work-item_image {
    width: 100px;
    height: 100px;
    top: -15%;
  }
  .work-item_title {
    margin: 20px 0 15px;
    font-size: 25px;
  }
  p.work-item_text {
    font-size: 16px;
  }
  .skill-area::before {
    top: -14%;
  }
  .skill-area::after {
    width: 8%;
    right: 10%;
  }
  .skillarea-title {
    font-size: 25px;
  }
  .skillarea-title span::before,
  .skillarea-title span::after {
    height: 40px;
    border-width: 4px;
  }
  .skillarea-title span::before {
    left: -20px;
  }
  .skillarea-title span::after {
    right: -20px;
  }
  .main-container .skill-grid li {
    font-size: 18px;
    padding: 15px;
  }
  /**************************
** Schedule
**************************/
  #schedule {
    padding: 72px 40px 52px;
  }
  .main-container .sche_sp {
    display: none;
  }
  .main-container .sche_pc {
    display: block;
    margin-top: 40px;
  }
  /**************************
** Flow
**************************/
  #flow {
    padding: 57px 40px 48px;
  }
  .flow-item {
    gap: 30px;
  }
  .flow-step {
    font-size: 27px;
    width: 60px;
    height: 60px;
  }
  .flow-step span {
    font-size: 15px;
  }
  .flow-right h3 {
    font-size: 24px;
  }
  .flow-right_text {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .flow .text-note {
    font-size: 14px;
  }
  .flow-right_text a {
    font-size: 16px;
  }
  /**************************
** Conditions
**************************/
  #conditions {
    padding: 24px 0 100px;
  }
  #conditions .conditions-table th,
  #conditions .conditions-table td {
    display: table-cell;
    border-bottom: solid 1px #ccc;
    font-size: 16px;
  }
  #conditions .conditions-table th:first-of-type,
  #conditions .conditions-table td:first-of-type {
    border-top: solid 1px #ccc;
  }
  .conditions-table th {
    padding: 25px 20px 25px;
    vertical-align: top;
    width: 20%;
    text-align: center;
  }
  .conditions-table td {
    padding: 25px 30px;
  }
  /**************************
** FAQ
**************************/
  #faq {
    padding: 100px 40px;
  }
  .faq-container::after {
    bottom: -15%;
    right: -8%;
  }
  .faq-question {
    padding: 20px;
  }
  .faq-question-text {
    font-size: 20px;
  }
  .faq-answer p {
    font-size: 16px;
    padding: 0 0 25px;
  }
  /**************************
** Gallery
**************************/
  #gallery {
    padding: 90px 0 80px;
  }
  .gallery_box_top {
    height: 300px;
    background-position: top 0 right 35em;
  }
  .gallery_box_bottom {
    height: 170px;
    background-position: right;
  }
  /**************************
** Form
**************************/
  #form {
    padding: 100px 40px;
  }
  .form-container {
    min-height: 650px;
  }
  .main-container h2.form-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .progress-bar {
    margin-bottom: 20px;
  }
  #form .office-grid {
    gap: 20px;
    width: 100%;
  }
  .form-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #form .form_question-title {
    width: 100%;
  }
  #form .form_question {
    width: 48%;
  }
  #form .form_question:nth-of-type(3n) {
    width: 100%;
  }
  #form .form_question:has(.radio-option) {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  #form .form_question:has(label[for="spamPrevention"]),
  #form .form_question:has(textarea) {
    width: 100%;
  }
  .radio-option {
    width: 47%;
  }
  label[for="reasons"],
  label[for="interests"] {
    width: 100%;
  }
  .other-details {
    width: 100%;
  }
  .main-container #form .personalInfo {
    text-align: center;
  }
}
