@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.en {
  font-family: "Poppins", sans-serif;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

body.fixed {
  overflow: hidden;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 900px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media (min-width: 900px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.6s ease;
}

a:hover {
  opacity: 0.5;
}

/* img */
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.--delay200 {
  animation-delay: 0.2s;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-fadeUp {
  opacity: 0;
}

/*
-----------------------------------
共通
-----------------------------------
*/
html {
  font-size: 62.5%;
}

body {
  color: #666666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  background-color: #f5f7fa;
}
@media screen and (max-width: 900px) {
  body {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 899px) {
  .sp {
    display: block !important;
  }
}
@media screen and (min-width: 900px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 899px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 900px) {
  .pc {
    display: block !important;
  }
}

.flex {
  display: flex;
}
@media screen and (max-width: 899px) {
  .flex {
    display: block;
  }
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 70px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-decoration: none;
  background-color: #189cbe;
  background: linear-gradient(90deg, #0acffe 0%, #495aff 100%);
  border-radius: 35px;
  position: relative;
  transition: 0.3s;
  margin: 0 auto;
}
.button:before {
  content: "";
  width: 12.5px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 27px;
  transform: translateY(-50%);
  background: no-repeat center top/cover url(../images/ico_arrow02.png);
  transition: all 0.2s;
  animation: moveArrowBack 0.3s forwards;
}
.button:hover {
  opacity: 1 !important;
  color: #fff;
}
.button:hover:before {
  animation: moveArrow 0.3s forwards;
}
@keyframes moveArrow {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(100%);
    opacity: 0;
  }
  51% {
    transform: translateY(-50%) translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
@keyframes moveArrowBack {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-100%);
    opacity: 0;
  }
  51% {
    transform: translateY(-50%) translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
@keyframes moveArrowLeft {
  0% {
    transform: translateY(-50%) translateX(0) scaleX(-1);
  }
  50% {
    transform: translateY(-50%) translateX(-100%) scaleX(-1);
    opacity: 0;
  }
  51% {
    transform: translateY(-50%) translateX(100%) scaleX(-1);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) translateX(0) scaleX(-1);
    opacity: 1;
  }
}
@keyframes moveArrowBackLeft {
  0% {
    transform: translateY(-50%) translateX(0) scaleX(-1);
  }
  50% {
    transform: translateY(-50%) translateX(100%) scaleX(-1);
    opacity: 0;
  }
  51% {
    transform: translateY(-50%) translateX(-100%) scaleX(-1);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) translateX(0) scaleX(-1);
    opacity: 1;
  }
}
@keyframes moveArrowUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-100%);
    opacity: 0;
  }
  51% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes moveArrowBackUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(100%);
    opacity: 0;
  }
  51% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (max-width: 900px) {
  .button {
    font-size: 1.4rem;
    width: 84%;
    height: 50px;
    border-radius: 25px;
  }
  .button:before {
    width: 15px;
    height: 10px;
  }
}
.button.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 70px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-decoration: none;
  background-color: #189cbe;
  background: linear-gradient(90deg, #0acffe 0%, #495aff 100%);
  border-radius: 35px;
  position: relative;
  transition: 0.3s;
  margin: 0 auto;
  width: 380px;
  height: 70px;
  font-size: 2rem;
  background-color: #1f6a98;
  border: 1px #1f6a98 solid;
  border-radius: 5px;
}
.button.btn:before {
  content: "";
  width: 12.5px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 27px;
  transform: translateY(-50%);
  background: no-repeat center top/cover url(../images/ico_arrow02.png);
  transition: all 0.2s;
  animation: moveArrowBack 0.3s forwards;
}
.button.btn:hover {
  opacity: 1 !important;
  color: #fff;
}
.button.btn:hover:before {
  animation: moveArrow 0.3s forwards;
}
@keyframes moveArrow {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(100%);
    opacity: 0;
  }
  51% {
    transform: translateY(-50%) translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
@keyframes moveArrowBack {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-100%);
    opacity: 0;
  }
  51% {
    transform: translateY(-50%) translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
@keyframes moveArrowLeft {
  0% {
    transform: translateY(-50%) translateX(0) scaleX(-1);
  }
  50% {
    transform: translateY(-50%) translateX(-100%) scaleX(-1);
    opacity: 0;
  }
  51% {
    transform: translateY(-50%) translateX(100%) scaleX(-1);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) translateX(0) scaleX(-1);
    opacity: 1;
  }
}
@keyframes moveArrowBackLeft {
  0% {
    transform: translateY(-50%) translateX(0) scaleX(-1);
  }
  50% {
    transform: translateY(-50%) translateX(100%) scaleX(-1);
    opacity: 0;
  }
  51% {
    transform: translateY(-50%) translateX(-100%) scaleX(-1);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) translateX(0) scaleX(-1);
    opacity: 1;
  }
}
@keyframes moveArrowUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-100%);
    opacity: 0;
  }
  51% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes moveArrowBackUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(100%);
    opacity: 0;
  }
  51% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (max-width: 900px) {
  .button.btn {
    font-size: 1.4rem;
    width: 84%;
    height: 50px;
    border-radius: 25px;
  }
  .button.btn:before {
    width: 15px;
    height: 10px;
  }
}
.button.btn:hover {
  color: #1f6a98;
}
@media screen and (max-width: 899px) {
  .button.btn:before {
    width: 20px;
    height: 20px;
  }
  .button.btn:after {
    width: 5px;
    height: 5px;
    right: 18px;
  }
}
.button.prev:before, .button.top:before {
  right: auto;
  left: 29px;
  background: no-repeat center top/cover url(../images/ico_arrow02.png);
  animation: moveArrowBackLeft 0.3s forwards;
}
.button.prev:hover:before, .button.top:hover:before {
  animation: moveArrowLeft 0.3s forwards;
}

.fade {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 0.8s;
  transition-timing-function: ease-out;
}
.fade.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/*
-----------------------------------
header
-----------------------------------
*/
.gnavi__wrap {
  width: calc(100% - 320px);
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .gnavi__wrap {
    display: none;
  }
}

.gnavi__lists {
  display: flex;
  justify-content: flex-end;
}

.gnavi__list {
  width: fit-content;
  height: 60px;
  position: relative;
  transition: all 0.3s;
  margin-left: 34px;
}

.gnavi__list a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 1.5rem;
  background: linear-gradient(90.89deg, #666666 0%, #8f8f8f 15%, #9b9b9b 50%, #8f8f8f 85%, #666666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: all 0.3s;
}
.gnavi__list a:hover {
  background: linear-gradient(90deg, #0acffe 0%, #495aff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gnavi__list > a {
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.dropdown__lists {
  display: none;
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
}

.gnavi__list:hover .dropdown__lists {
  display: block;
}

.dropdown__list {
  height: 35px;
  transition: all 0.3s;
  position: relative;
}
.dropdown__list a {
  font-size: 1.2rem;
  align-items: center;
  position: relative;
  background: linear-gradient(90deg, #666666 0%, #666666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dropdown__list a:hover {
  background: linear-gradient(90deg, #666666 0%, #666666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
}

.dropdown__lists {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  min-width: 200px;
  width: 100%;
  padding: 20px;
  position: absolute;
  top: 60px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0 0 10px 10px;
}

.gnavi__list:hover .dropdown__lists {
  visibility: visible;
  opacity: 1;
}

.header {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px 0;
  position: fixed;
  transition: padding 0.5s, background-color 0.5s;
  width: 100%;
  z-index: 10;
}
.header.transform {
  padding: 15px 0;
}
.header .header__inner {
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.header .header__logo {
  width: 311px;
  display: block;
}
@media screen and (max-width: 900px) {
  .header {
    padding: 17px 5.333vw;
  }
  .header.transform {
    padding: 12px 5.333vw;
  }
  .header .header__inner {
    align-items: center;
  }
  .header .header__logo {
    width: 55.333vw;
    z-index: 101;
  }
  .header .btn {
    width: 7.467vw;
    height: 6.667vw;
    background: url("../images/ico_open.png") no-repeat center center/cover;
    transition: all 0.3s;
    z-index: 100;
  }
  .header .btn.close {
    width: 7.467vw;
    height: 6.667vw;
    background: url("../images/ico_close.png") no-repeat center center/cover;
  }
  .header .gnavi__wrap {
    display: none;
    background: url("../images/bg_gradation.png") no-repeat top center/cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 85px 5.333vw 0;
    text-align: center;
  }
  .header .gnavi__wrap .gnavi__list {
    height: auto;
    margin-left: 0;
  }
  .header .gnavi__wrap .gnavi__list + .gnavi__list {
    margin-top: 24px;
  }
  .header .gnavi__wrap .gnavi__lists {
    display: block;
  }
  .header .gnavi__wrap .gnavi__lists .dropdown__lists {
    opacity: 1;
    display: block;
    visibility: inherit;
    position: relative;
    top: auto;
    margin-top: 17.5px;
    background-color: inherit;
    padding: 0;
  }
  .header .gnavi__wrap .gnavi__lists .dropdown__lists .dropdown__list {
    height: 17.5px;
  }
  .header .gnavi__wrap .gnavi__lists .dropdown__lists .dropdown__list + .dropdown__list {
    margin-top: 17.5px;
  }
  .header .gnavi__wrap .gnavi__lists .dropdown__lists a {
    color: #666666;
  }
}

/*
-----------------------------------
footer
-----------------------------------
*/
footer {
  padding: 100px 0 40px;
  background: url("../images/bg_footer.png") repeat-x center top/cover;
}
footer .inner {
  max-width: 1000px;
  position: relative;
}
footer .footer__logo {
  display: block;
  margin-bottom: 40px;
  width: 260px;
}
footer .footer__nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
footer .footer__nav .flex.pc {
  display: flex !important;
}
footer .footer__nav .--link {
  margin-right: 40px;
}
footer .footer__nav .--link > a {
  font-size: 1.5rem;
  font-weight: 700;
}
footer .footer__nav .--link ul {
  margin-top: 14px;
}
footer .footer__nav .--link ul li {
  margin-bottom: 12px;
}
footer .footer__nav .--link ul li a {
  font-size: 1.2rem;
}
footer .footer__nav .--link.pc {
  margin-right: 0;
}
footer .copyright {
  display: block;
  width: 100%;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 900px) {
  footer {
    padding: 210px 0 20px;
  }
  footer .footer__logo {
    width: 55.333vw;
    margin-bottom: 30px;
  }
  footer .footer__nav {
    display: block;
    margin-bottom: 40px;
  }
  footer .footer__nav .flex.pc {
    display: none !important;
  }
  footer .footer__nav .flex.sp {
    display: flex !important;
  }
  footer .footer__nav .--link {
    width: 60%;
    margin-right: 0;
  }
  footer .footer__nav .--link > a {
    display: block;
    font-size: 1.4rem;
    margin-top: 14px;
  }
  footer .footer__nav .--link ul {
    margin-top: 14px;
  }
  footer .footer__nav .--link ul li {
    margin-bottom: 10px;
  }
  footer .footer__nav .--link:nth-child(2) {
    width: 40%;
  }
  footer .copyright {
    font-size: 1rem;
  }
}

.pagetop {
  display: block;
  width: 120px;
  height: 50px;
  color: #666666;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 50px;
  background-color: #fff;
  border-radius: 25px;
  padding-right: 20px;
  position: absolute;
  right: 0;
  top: 4px;
  z-index: 2;
}
.pagetop:before {
  content: "";
  width: 8px;
  height: 12.5px;
  position: absolute;
  top: 40%;
  right: 19px;
  transform: translateY(-50%);
  background: no-repeat center top/cover url(../images/ico_up.png);
  transition: all 0.2s;
  animation: moveArrowBackUp 0.3s forwards;
}
.pagetop:hover {
  opacity: 1 !important;
}
.pagetop:hover:before {
  animation: moveArrowUp 0.3s forwards;
}
@media (max-width: 900px) {
  .pagetop {
    width: 26.667vw;
    height: 10.667vw;
    line-height: 10.667vw;
    top: -40px;
    right: 20px;
  }
}

/*
-----------------------------------
main
-----------------------------------
*/
main.subpages {
  padding-top: 100px;
  background: linear-gradient(180deg, #fff 0%, #f5f7fa 100%);
}
main.subpages #information .information__area {
  margin: 120px auto 80px;
}
@media screen and (max-width: 900px) {
  main.subpages #information {
    padding-top: 20px;
  }
}

.inner {
  max-width: 850px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .inner {
    padding: 0 5.333vw;
  }
}

.section__title,
.company__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section__title .en,
.company__title .en {
  width: fit-content;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: linear-gradient(90.89deg, #666666 0%, #8f8f8f 15%, #9b9b9b 50%, #8f8f8f 85%, #666666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.section__title .title,
.company__title .title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
}
@media (max-width: 900px) {
  .section__title .en,
.company__title .en {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  .section__title .title,
.company__title .title {
    font-size: 1.2rem;
  }
}

.item__area {
  display: flex;
  flex-wrap: wrap;
}

/* トップMV */
#mv {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff url("../images/top/bg_mv.png") no-repeat right center/contain;
}
#mv .inner {
  max-width: 1000px;
}
#mv .mv__title {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#mv .mv__title .textanimation {
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(90deg, #0acefe 0%, #23a2ff 40%, #475dff 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#mv .mv__title .textanimation span {
  animation: showText 0.3s backwards;
  display: inline-block;
}
#mv .mv__title .textanimation > span {
  overflow: hidden;
}
#mv .mv__title .textanimation > span > span {
  animation: showTextFromBottom 0.5s backwards;
}
@keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0px);
  }
}
#mv .mv__text {
  display: flex;
  align-items: center;
  color: #666666;
  font-size: 6rem;
  font-weight: 700;
}
#mv .mv__text .schedule {
  color: #fff;
  font-size: 2.5rem;
  width: 160px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin-right: 20px;
  background-color: #666666;
  border-radius: 25px;
}
#mv .mv__text .day {
  font-size: 4rem;
}
@media (max-width: 900px) {
  #mv {
    justify-content: flex-start;
    background: #fff url("../images/top/bg_mv_sp.png") no-repeat right center/contain;
  }
  #mv .mv__title {
    margin-top: 120px;
  }
  #mv .mv__title .textanimation {
    font-size: 2.4rem;
    letter-spacing: 0;
  }
  #mv .mv__text {
    font-size: 2.6rem;
    flex-wrap: wrap;
  }
  #mv .mv__text .schedule {
    font-size: 1.5rem;
    width: 100px;
    height: 36px;
    line-height: 36px;
    margin: 10px 0;
    border-radius: 18px;
  }
  #mv .mv__text dd {
    width: 100%;
  }
  #mv .mv__text .day {
    font-size: 2rem;
  }
}

#mv02 {
  padding: 200px 0 180px;
  text-align: center;
  background: url("../images/bg_gradation.png") no-repeat top center/cover;
  margin-top: -200px;
}
#mv02 .mv02__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}
#mv02 .mv02__img {
  width: 429px;
  margin: 50px auto 30px;
}
#mv02 .button {
  margin-top: 30px;
}
@media (max-width: 900px) {
  #mv02 {
    padding-bottom: 30px;
  }
  #mv02 .mv02__title {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
  #mv02 .mv02__text,
#mv02 .text {
    font-size: 1.1rem;
  }
  #mv02 .mv02__img {
    width: 76%;
    margin: 10px auto;
  }
  #mv02 .button {
    margin-top: 30px;
  }
}

/* 参画企業・インタビュー */
#company {
  padding: 120px 0 20px;
}
#company .inner {
  max-width: 850px;
}
#company .item__area {
  margin-top: 80px;
  margin-right: -50px;
}
#company .item__area .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 250px;
  text-align: center;
  margin: 0 50px 60px 0;
}
#company .item__area .item .--image {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 15px;
}
#company .item__area .item img {
  height: auto;
  margin: 0 auto;
}
#company .item__area .item .button {
  width: 100%;
  height: 50px;
  font-size: 1.3rem;
  font-weight: 500;
  justify-content: flex-start;
  padding-left: 20px;
  margin-top: 20px;
}
#company .item__area .item .button:before {
  right: 19px;
}
#company .item__area .item:nth-child(1) img {
  width: 205px;
}
#company .item__area .item:nth-child(2) img {
  width: 194.79px;
}
#company .item__area .item:nth-child(3) img {
  width: 168.5px;
}
#company .item__area .item:nth-child(4) img {
  width: 185px;
}
#company .item__area .item:nth-child(5) img {
  width: 120.5px;
}
#company .item__area .item .--text .company {
  font-size: 1.38rem;
  font-weight: 500;
}
@media (max-width: 900px) {
  #company {
    padding-bottom: 30px;
  }
  #company .item__area {
    display: block;
    margin-top: 50px;
    margin-right: 0;
  }
  #company .item__area .item {
    width: 100%;
    margin: 0 0 50px;
  }
  #company .item__area .item .button {
    width: 75%;
    height: 40px;
    font-size: 1.2rem;
    margin-top: 20px;
    justify-content: center;
  }
}

#companyInterview {
  padding-top: 120px;
}
#companyInterview .company__title {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  line-height: 1;
  margin-bottom: 45px;
}
#companyInterview .company__title .en {
  margin: 0 10px 0 0;
}
#companyInterview .comingsoon {
  font-size: 1.8rem;
  text-align: center;
  padding-top: 120px;
}
#companyInterview #company__data {
  padding: 120px 0;
}
#companyInterview #company__data .flex {
  justify-content: space-between;
}
#companyInterview #company__data .flex .logo__area {
  width: 230px;
}
#companyInterview #company__data .flex .logo__area .--image.--01 {
  width: 205px;
}
#companyInterview #company__data .flex .logo__area .--image.--02 {
  width: 145px;
}
#companyInterview #company__data .flex .logo__area .--image.--03 {
  width: 168.5px;
}
#companyInterview #company__data .flex .logo__area .--image.--04 {
  width: 185px;
}
#companyInterview #company__data .flex .logo__area .--image.--05 {
  width: 120.5px;
}
#companyInterview #company__data .flex .logo__area .name {
  font-size: 1.6rem;
  margin: 20px 0 30px;
}
#companyInterview #company__data .flex .logo__area .button {
  justify-content: flex-start;
  width: 100%;
  height: 50px;
  font-size: 1.3rem;
  padding-left: 25px;
  border-radius: 25px;
}
#companyInterview #company__data .flex .main__area {
  width: 570px;
}
#companyInterview #company__data .flex .main__area .--text {
  font-size: 1.2rem;
  margin-top: 30px;
}
#companyInterview #company__product {
  padding-top: 180px;
}
#companyInterview #company__product .item__area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-content: center;
  gap: 50px;
}
#companyInterview #company__product .item__area .item {
  max-width: 400px;
  margin: 0 auto;
}
#companyInterview #company__product .item__area .item .--image {
  margin-bottom: 20px;
}
#companyInterview #company__product .item__area .item .--image img {
  height: 200px;
  object-fit: contain;
  object-position: center;
}
#companyInterview #company__product .item__area .item .--text .title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}
#companyInterview #company__product .item__area .item .--text .text {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
#companyInterview #company__interview {
  padding-top: 180px;
}
#companyInterview #company__interview .main-img {
  max-width: 80%;
  margin: 0 auto 30px;
}
#companyInterview #company__interview .item {
  margin-bottom: 40px;
}
#companyInterview #company__interview .item .text .text__q {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}
#companyInterview #company__interview .item .text .icon {
  display: inline-block;
  margin-right: 0.5em;
}
#companyInterview #company__interview .item .image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#companyInterview #company__interview .item .--image {
  width: 100%;
  max-width: 500px;
  margin: 30px auto;
}
#companyInterview #company__interview .item .--image.--wide {
  max-width: 80%;
}
#companyInterview #company__interview .item .--image img {
  height: auto;
}
#companyInterview .page_wrap {
  position: fixed;
  right: 30px;
  bottom: 40px;
}
#companyInterview .page_wrap li {
  text-align: right;
  margin-bottom: 20px;
}
#companyInterview .page_wrap li span {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(90.89deg, #666666 0%, #8f8f8f 15%, #9b9b9b 50%, #8f8f8f 85%, #666666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#companyInterview .page_wrap li a {
  padding-right: 20px;
  position: relative;
}
#companyInterview .page_wrap li a:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: linear-gradient(90.89deg, #666666 0%, #8f8f8f 15%, #9b9b9b 50%, #8f8f8f 85%, #666666 100%);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  right: 0;
}
#companyInterview .page_wrap li a.active:before {
  background: linear-gradient(90deg, #0acffe 0%, #495aff 100%);
}
#companyInterview + #company .item__area {
  margin-bottom: 150px;
}
@media (max-width: 900px) {
  #companyInterview {
    padding-top: 20px;
  }
  #companyInterview .company__title {
    margin-bottom: 40px;
  }
  #companyInterview .comingsoon {
    font-size: 1.5rem;
  }
  #companyInterview #company__data {
    padding: 60px 0;
  }
  #companyInterview #company__data .flex {
    display: block;
  }
  #companyInterview #company__data .flex .logo__area {
    width: 100%;
  }
  #companyInterview #company__data .flex .logo__area .--image {
    width: 62%;
  }
  #companyInterview #company__data .flex .logo__area .name {
    font-size: 1.6rem;
    margin: 15px 0 20px;
  }
  #companyInterview #company__data .flex .logo__area .button {
    justify-content: center;
    height: 40px;
    font-size: 1.2rem;
    padding-left: 0;
    border-radius: 20px;
    margin-bottom: 25px;
  }
  #companyInterview #company__data .flex .main__area {
    width: 100%;
  }
  #companyInterview #company__data .flex .main__area .--text {
    margin-top: 15px;
  }
  #companyInterview #company__product {
    padding-top: 120px;
  }
  #companyInterview #company__product .item__area {
    display: block;
  }
  #companyInterview #company__product .item__area .item {
    width: 100%;
    margin-bottom: 40px;
  }
  #companyInterview #company__product .item__area .item .--image {
    margin-bottom: 15px;
  }
  #companyInterview #company__product .item__area .item .--text .title {
    margin-bottom: 10px;
  }
  #companyInterview #company__interview {
    padding-top: 120px;
  }
  #companyInterview #company__interview .main-img {
    max-width: 100%;
  }
  #companyInterview #company__interview .item {
    margin-bottom: 20px;
  }
  #companyInterview #company__interview .item .image-wrap {
    gap: 10px;
  }
  #companyInterview #company__interview .item .--image {
    width: 80%;
    margin: 20px auto;
  }
  #companyInterview #company__interview .item .--image.--wide {
    width: 100%;
    max-width: 100%;
  }
  #companyInterview .page_wrap {
    display: none !important;
    position: fixed;
    right: 30px;
    bottom: 40px;
  }
  #companyInterview .page_wrap li {
    text-align: right;
    margin-bottom: 20px;
  }
  #companyInterview .page_wrap li span {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(90.89deg, #666666 0%, #8f8f8f 15%, #9b9b9b 50%, #8f8f8f 85%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  #companyInterview .page_wrap li a {
    padding-right: 20px;
    position: relative;
  }
  #companyInterview .page_wrap li a:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: linear-gradient(90.89deg, #666666 0%, #8f8f8f 15%, #9b9b9b 50%, #8f8f8f 85%, #666666 100%);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    right: 0;
  }
  #companyInterview .page_wrap li a.active:before {
    background: linear-gradient(90deg, #0acffe 0%, #495aff 100%);
  }
  #companyInterview + #company .item__area {
    margin-bottom: 150px;
  }
}

/* 小間位置 */
#booth {
  padding: 120px 0 80px;
}
#booth .section__title {
  margin-bottom: 50px;
}
#booth .text {
  font-size: 1.8rem;
  text-align: center;
}
@media (max-width: 900px) {
  #booth {
    padding-bottom: 30px;
  }
  #booth .text {
    font-size: 1.5rem;
  }
}

/* 新着情報 */
#information {
  padding: 120px 0 80px;
}
#information .information__area {
  margin: 50px auto 80px;
  border-top: 1px #d9d9d9 solid;
}
#information .information__area .item a {
  display: flex;
  align-items: center;
  padding: 33px 0 34px;
  border-bottom: 1px #d9d9d9 solid;
  position: relative;
}
#information .information__area .item a:before, #information .information__area .item a:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#information .information__area .item a:before {
  width: 30px;
  height: 30px;
  right: 30px;
  background: linear-gradient(90deg, #0acffe 0%, #495aff 100%);
  border-radius: 50%;
}
#information .information__area .item a:after {
  width: 12.5px;
  height: 8px;
  right: 39px;
  background: no-repeat center top/cover url(../images/ico_arrow02.png);
  transition: all 0.2s;
  animation: moveArrowBack 0.3s forwards;
}
#information .information__area .item a:hover {
  opacity: 1;
}
#information .information__area .item a:hover:after {
  animation: moveArrow 0.3s forwards;
}
#information .information__area .item .date {
  margin-right: 28px;
}
#information .information__area .item .tag {
  width: 118px;
  height: 23px;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  line-height: 23px;
  background-color: #666666;
  border-radius: 12.5px;
  margin-right: 50px;
}
#information .information__area .item .text {
  width: calc(100% - 330px);
}
#information .pagination {
  margin-bottom: 120px;
}
#information .pagination .wp-pagenavi {
  display: flex;
  justify-content: center;
}
#information .pagination .wp-pagenavi a,
#information .pagination .wp-pagenavi span {
  padding: 0;
  font-weight: 400;
}
#information .pagination .page,
#information .pagination .current {
  width: 30px;
  height: 30px;
  font-size: 1.4rem;
  font-family: "Poppins", sans-serif;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  border: 1px #666666 solid;
  margin: 0 10px;
  letter-spacing: 0;
}
#information .pagination .page.current, #information .pagination .page:hover,
#information .pagination .current.current,
#information .pagination .current:hover {
  opacity: 1;
  color: #fff;
  border: none;
  background: linear-gradient(90deg, #0acffe 0%, #495aff 100%);
}
#information .pagination .previouspostslink,
#information .pagination .nextpostslink {
  width: 12.5px;
  border: none;
  position: relative;
  color: transparent;
}
#information .pagination .previouspostslink:before,
#information .pagination .nextpostslink:before {
  content: "";
  width: 12.5px;
  height: 9px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/ico_arrow03.png") no-repeat center center/cover;
}
#information .pagination .previouspostslink:hover,
#information .pagination .nextpostslink:hover {
  opacity: 1;
  background: inherit;
}
#information .pagination .previouspostslink {
  margin-right: 20px;
}
#information .pagination .previouspostslink:before {
  left: 0;
  animation: moveArrowBackLeft 0.3s forwards;
}
#information .pagination .previouspostslink:hover:before {
  animation: moveArrowLeft 0.3s forwards;
}
#information .pagination .nextpostslink {
  margin-left: 20px;
}
#information .pagination .nextpostslink:before {
  animation: moveArrowBack 0.3s forwards;
}
#information .pagination .nextpostslink:hover:before {
  animation: moveArrow 0.3s forwards;
}
#information .information__more {
  padding: 120px 0;
}
#information .information__more .--title {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
#information .information__more .--title .title {
  width: 100%;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}
#information .information__more .--title .date {
  margin-right: 20px;
}
#information .information__more .--title .tag {
  width: 118px;
  height: 24px;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  line-height: 24px;
  background-color: #666666;
  border-radius: 12px;
  margin-right: 50px;
}
#information .information__more .--text {
  margin-bottom: 80px;
}
#information .information__more .--images img {
  width: auto;
  margin: 0 auto 30px;
}
#information .information__more .--images + .--images {
  margin-top: 60px;
}
#information .information__more .pagere {
  width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px auto 0;
}
#information .information__more .pagere .prev,
#information .information__more .pagere .next {
  width: 12.5px;
  height: 9px;
  border: none;
  position: relative;
}
#information .information__more .pagere .prev:before,
#information .information__more .pagere .next:before {
  content: "";
  width: 12.5px;
  height: 9px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/ico_arrow03.png") no-repeat center center/cover;
}
#information .information__more .pagere .prev.prev,
#information .information__more .pagere .next.prev {
  left: -20px;
}
#information .information__more .pagere .prev.prev:before,
#information .information__more .pagere .next.prev:before {
  animation: moveArrowBackLeft 0.3s forwards;
}
#information .information__more .pagere .prev.prev:hover,
#information .information__more .pagere .next.prev:hover {
  background: inherit;
}
#information .information__more .pagere .prev.prev:hover:before,
#information .information__more .pagere .next.prev:hover:before {
  animation: moveArrowLeft 0.3s forwards;
}
#information .information__more .pagere .prev.next,
#information .information__more .pagere .next.next {
  right: -20px;
}
#information .information__more .pagere .prev.next:before,
#information .information__more .pagere .next.next:before {
  animation: moveArrowBack 0.3s forwards;
}
#information .information__more .pagere .prev.next:hover,
#information .information__more .pagere .next.next:hover {
  background: inherit;
}
#information .information__more .pagere .prev.next:hover:before,
#information .information__more .pagere .next.next:hover:before {
  animation: moveArrow 0.3s forwards;
}
#information .information__more .pagere .btn {
  width: 90px;
  position: relative;
}
#information .information__more .pagere .btn:before {
  content: "";
  width: 90px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: no-repeat center center/cover url(../images/information/btn_pager.png);
  transition: all 0.2s;
}
#information .information__more .pagere .btn:hover {
  opacity: 1;
}
#information .information__more .pagere .btn:hover:before {
  background: no-repeat center center/cover url(../images/information/btn_pager_on.png);
}
@media (max-width: 900px) {
  #information {
    padding-bottom: 30px;
  }
  #information .information__area {
    margin: 50px auto 40px;
  }
  #information .information__area .item a {
    flex-wrap: wrap;
    padding: 20px 0;
  }
  #information .information__area .item a:before {
    right: 0;
  }
  #information .information__area .item a:after {
    right: 9px;
  }
  #information .information__area .item .date {
    margin-right: 15px;
  }
  #information .information__area .item .tag {
    width: 80px;
    height: 20px;
    font-size: 1rem;
    line-height: 20px;
    border-radius: 10px;
    margin-right: 0;
  }
  #information .information__area .item .text {
    width: calc(100% - 40px);
    margin-top: 15px;
  }
  #information .button {
    width: 94%;
  }
  #information .pagination {
    margin-bottom: 100px;
  }
  #information .information__more {
    padding: 100px 0;
  }
  #information .information__more .--title {
    flex-direction: column;
    margin-bottom: 40px;
  }
  #information .information__more .--title .title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    order: 2;
  }
  #information .information__more .--title .date {
    width: 100%;
    margin-right: 20px;
    order: 3;
  }
  #information .information__more .--title .tag {
    width: 74px;
    height: 20px;
    font-size: 1rem;
    line-height: 20px;
    border-radius: 10px;
    margin: 0 0 12px;
    order: 1;
  }
  #information .information__more .--text {
    margin-bottom: 40px;
  }
  #information .information__more .--images img {
    max-height: 360px;
    height: auto;
    object-fit: cover;
  }
  #information .information__more .pagere {
    width: 80%;
    margin: 80px auto 0;
  }
  #information .information__more .pagere .prev.prev,
#information .information__more .pagere .next.prev {
    left: -10px;
  }
  #information .information__more .pagere .prev.next,
#information .information__more .pagere .next.next {
    right: -10px;
  }
  #information .information__more .pagere .btn {
    width: 125px;
    height: 35px;
  }
}

/* プレゼン */
#presentation {
  padding: 120px 0 80px;
}
#presentation .content_area {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 50px 0 30px;
}
#presentation .tab-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  background: url("../images/bg_gradation.png") no-repeat center center/cover;
}
#presentation .tab {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  width: 25%;
  cursor: pointer;
}
#presentation .tab.active {
  color: #fff;
  background-color: #666666;
  border-radius: 25px;
}
#presentation .content {
  display: none;
}
#presentation .content.show {
  display: block;
}
#presentation .information__area {
  margin: 50px auto 60px;
  border-top: 1px #d9d9d9 solid;
}
#presentation .information__area .item {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 50px;
  border-bottom: 1px #d9d9d9 solid;
}
#presentation .information__area .item p {
  padding-left: 50px;
  position: relative;
}
#presentation .information__area .item p:before, #presentation .information__area .item p:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#presentation .information__area .item p:before {
  width: 40px;
  height: 40px;
  left: 0;
  background: linear-gradient(90deg, #0acffe 0%, #495aff 100%);
  border-radius: 50%;
}
#presentation .information__area .item p:after {
  width: 12.5px;
  height: 8px;
  background: no-repeat center top/cover url(../images/ico_arrow02.png);
}
#presentation .information__area .item .time {
  width: 160px;
  font-size: 1.8rem;
  font-weight: 700;
  padding-right: 10px;
}
#presentation .information__area .item .time:after {
  width: 20px;
  height: 20px;
  left: 10px;
  background: no-repeat center top/cover url(../images/ico_time.png);
}
#presentation .information__area .item .name {
  width: 200px;
  padding-right: 20px;
}
#presentation .information__area .item .name:after {
  width: 14px;
  height: 19px;
  left: 13px;
  background: no-repeat center top/cover url(../images/ico_name.png);
}
#presentation .information__area .item .text {
  width: calc(100% - 360px);
}
#presentation .information__area .item .text:after {
  width: 16px;
  height: 20px;
  left: 12px;
  background: no-repeat center top/cover url(../images/ico_text.png);
}
#presentation .presentation__text {
  text-align: center;
  margin-bottom: 30px;
}
#presentation .text {
  font-size: 1.8rem;
  text-align: center;
  margin: 50px 0 200px;
}
@media (max-width: 900px) {
  #presentation {
    padding-bottom: 30px;
  }
  #presentation .content_area {
    padding: 30px 0;
  }
  #presentation .tab {
    font-size: 1.2rem;
  }
  #presentation .tab span {
    font-size: 1rem;
  }
  #presentation .information__area {
    margin: 40px auto 30px;
  }
  #presentation .information__area .item {
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 5.333vw 20px 2.5vw;
  }
  #presentation .information__area .item p {
    padding-left: 50px;
    position: relative;
  }
  #presentation .information__area .item p:before, #presentation .information__area .item p:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  #presentation .information__area .item p:before {
    width: 35px;
    height: 35px;
    left: 0;
    background: linear-gradient(90deg, #0acffe 0%, #495aff 100%);
    border-radius: 50%;
  }
  #presentation .information__area .item .time {
    width: 120px;
    font-size: 1.4rem;
  }
  #presentation .information__area .item .time:after {
    width: 17.5px;
    height: 17.5px;
    left: 8px;
  }
  #presentation .information__area .item .name {
    width: calc(100% - 120px);
    padding-right: 0;
  }
  #presentation .information__area .item .name:after {
    width: 12px;
    height: 16.5px;
    left: 11px;
  }
  #presentation .information__area .item .text {
    width: 100%;
    margin-top: 20px;
  }
  #presentation .information__area .item .text:after, #presentation .information__area .item .text:before {
    top: 20px;
  }
  #presentation .information__area .item .text:after {
    width: 14px;
    height: 17.5px;
    left: 11px;
  }
  #presentation .presentation__text {
    text-align: center;
    margin-bottom: 30px;
  }
  #presentation .button {
    width: 94%;
  }
  #presentation .text {
    font-size: 1.5rem;
  }
}

/* プライバシーポリシー */
#privacypolicy {
  padding: 120px 0 80px;
}
#privacypolicy .privacypolicy__area {
  margin: 110px 0 80px;
}
#privacypolicy .privacypolicy__area li {
  padding: 30px 0;
  border-bottom: 1px #d9d9d9 solid;
}
#privacypolicy .privacypolicy__area li:first-child {
  border-top: 1px #d9d9d9 solid;
}
#privacypolicy .privacypolicy__text {
  margin-bottom: 120px;
}
@media (max-width: 900px) {
  #privacypolicy {
    padding-bottom: 30px;
  }
  #privacypolicy .privacypolicy__area {
    margin: 50px 0 40px;
  }
  #privacypolicy .privacypolicy__area li {
    padding: 20px 0;
  }
  #privacypolicy .privacypolicy__text {
    margin-bottom: 100px;
  }
}

/* お問合せ */
#contact {
  padding: 120px 0 80px;
}
#contact .contact__text {
  text-align: center;
  margin: 40px 0 50px;
}
#contact .contact__text a {
  background: linear-gradient(to right, #0acffe, #495aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#contact .complete__text {
  width: fit-content;
  margin: 120px auto 50px;
  text-align: left;
}
#contact .button__area {
  display: flex;
  justify-content: center;
}
@media (max-width: 900px) {
  #contact {
    padding-bottom: 30px;
  }
  #contact .complete__text {
    margin: 80px auto;
  }
  #contact .button {
    max-width: 400px;
    width: 94%;
  }
}

table.form {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 50px;
}
table.form th,
table.form td {
  font-size: 1.6rem;
  text-align: left;
  padding: 20px;
  vertical-align: top;
}
table.form th {
  width: 330px;
  padding-top: 28px;
  padding-right: 15px;
  position: relative;
}
table.form th .flex {
  display: flex;
  justify-content: space-between;
}
table.form th .flex span {
  width: 50px;
  height: 24px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  line-height: 22px;
  border-radius: 12px;
  background: linear-gradient(90deg, #0acffe 0%, #495aff 100%);
}
table.form td {
  width: calc(100% - 330px);
}
table.form tr:last-child td {
  padding-bottom: 0;
}
@media (max-width: 900px) {
  table.form th,
table.form td {
    font-size: 1.2rem;
    padding: 0;
  }
  table.form th {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
  }
  table.form th .flex {
    width: 100%;
  }
  table.form th .flex span {
    width: 40px;
    height: 16px;
    font-size: 1rem;
    line-height: 16px;
    border-radius: 8px;
  }
  table.form td {
    font-size: 1.4rem;
    display: block;
    width: 100%;
    padding-bottom: 30px;
  }
}

#contact.confirm .contact__text {
  margin: 120px 0 50px;
}
#contact.confirm table.form {
  border-top: solid 1px #666666;
}
#contact.confirm table.form th,
#contact.confirm table.form td {
  font-size: 1.6rem;
  padding: 30px 0;
  border-bottom: solid 1px #666666;
}
#contact.confirm table.form th {
  padding-right: 30px;
}
#contact.confirm table.form th .flex span {
  display: block !important;
}
#contact.confirm table.form tr:last-child td {
  padding-bottom: 30px;
}
@media (max-width: 900px) {
  #contact.confirm .contact__text {
    margin: 100px 0 50px;
  }
  #contact.confirm table.form th,
#contact.confirm table.form td {
    font-size: 1.2rem;
  }
  #contact.confirm table.form th {
    padding: 20px 0 0;
    border-bottom: none;
  }
  #contact.confirm table.form td {
    padding: 0 0 20px;
  }
  #contact.confirm table.form tr:last-child td {
    padding-bottom: 30px;
  }
  #contact.confirm .button.next, #contact.confirm .button.prev {
    width: 47%;
    height: 60px;
    border-radius: 30px;
  }
  #contact.confirm .button:before {
    right: 10px;
  }
  #contact.confirm .button.prev {
    text-align: left;
  }
  #contact.confirm .button.prev:before {
    left: 10px;
  }
  #contact.confirm .button.top.sp {
    display: flex !important;
    margin-top: 100px;
  }
}

input[type=text],
input[type=email] {
  width: 100%;
  border: solid 1px #666666;
  border-radius: 20px;
  background-color: #fff;
  padding: 7px 20px;
  font-size: 1.6rem;
}
@media (max-width: 900px) {
  input[type=text],
input[type=email] {
    font-size: 1.4rem;
  }
}

textarea {
  width: 100%;
  border: solid 1px #666666;
  border-radius: 20px;
  background-color: #fff;
  padding: 7px 20px;
  height: 200px;
  font-size: 1.6rem;
}
@media (max-width: 900px) {
  textarea {
    font-size: 1.4rem;
    height: 150px;
  }
}

.btn-area {
  text-align: center;
}

input[type=submit] {
  background: #e0505c;
  border: none;
  color: white;
  font-size: 1.6rem;
  padding: 7px 20px;
  margin: 0 5px;
}
@media (max-width: 900px) {
  input[type=submit] {
    font-size: 1.4rem;
  }
}

input[type=reset] {
  background: #666666;
  border: none;
  color: white;
  font-size: 1.6rem;
  padding: 7px 20px;
  margin: 0 5px;
}
@media (max-width: 900px) {
  input[type=reset] {
    font-size: 1.4rem;
  }
}

.selectbox {
  width: 100%;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.selectbox:after {
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  width: 14px;
  height: 12px;
  background-color: #666666;
  clip-path: polygon(0 93%, 7% 100%, 57% 50%, 7% 0, 0 7%, 43% 50%, 0 93%);
  transform: rotate(90deg);
  content: "";
  pointer-events: none;
}
.selectbox select {
  appearance: none;
  width: 100%;
  color: #666666;
  font-size: 1.6rem;
  line-height: 1;
  padding: 11px 20px;
  border: 1px solid #666666;
  border-radius: 20px;
  background-color: #fff;
  cursor: pointer;
  letter-spacing: 0.15em;
}
@media (max-width: 900px) {
  .selectbox select {
    font-size: 1.4rem;
  }
}

.error {
  display: block;
  color: #f43b47;
  margin-top: 10px;
  padding-left: 40px;
  position: relative;
}
.error:before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: no-repeat center top/cover url(../images/ico_error.png);
}
@media (max-width: 900px) {
  .error {
    font-size: 1.2rem;
    padding-left: 30px;
  }
  .error:before {
    width: 25px;
    height: 25px;
  }
}

#error-message {
  padding: 25px 25px 25px 65px;
  background-color: rgba(244, 59, 71, 0.1);
  border: 2px #f43b47 solid;
  border-radius: 20px;
  margin-bottom: 10px;
}
#error-message .error {
  margin: 0;
}
@media (max-width: 900px) {
  #error-message {
    padding: 10px 10px 10px 20px;
  }
  #error-message .error {
    margin: 0;
  }
}

.input-error input,
.input-error select,
.input-error textarea {
  border: 2px #f43b47 solid !important;
}

.mw_wp_form .error {
  color: rgb(244, 59, 71) !important;
  font-size: 16px !important;
  letter-spacing: 0.15em !important;
}
.mw_wp_form .error-box {
  border: 2px solid #f43b47;
  background: rgba(244, 59, 71, 0.1);
  border-radius: 20px;
  padding: 26px 50px;
  margin-bottom: 10px;
  display: none;
}
.mw_wp_form .error-box .error {
  margin-top: 0 !important;
}
@media (max-width: 900px) {
  .mw_wp_form .error {
    font-size: 12px !important;
    padding-left: 40px;
  }
  .mw_wp_form .error-box {
    border-radius: 10px;
    padding: 10px 45px 10px 20px;
    margin: -25px 0 25px;
  }
}

/*------------------------
開催概要
------------------------*/
.event-overview {
  padding: 20px 30px 30px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  margin: 40px auto;
}

.event-overview__title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.event-overview__detail {
  font-size: 15px;
}
.event-overview__detail dl {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.event-overview__detail dt {
  width: 4em;
  text-align: left;
}
.event-overview__detail dd {
  flex: 1;
  text-align: left;
}

@media (max-width: 768px) {
  .event-overview {
    padding: 20px;
    margin: 20px auto;
  }
  .event-overview__title {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .event-overview__detail {
    font-size: 12px;
  }
}
.pdf-btn.button {
  width: 100%;
  max-width: 400px;
  height: 50px;
  font-size: 1.3rem;
}
.pdf-btn.button::before {
  right: 19px;
}/*# sourceMappingURL=style.css.map */