:root {
  --fontFamily: "BIZ UDGothic", sans-serif;

  --colorBlue: #004ea2;
  --colorRightBlue: #f2f3f7;
  --colorDarkBlue: #001f4c;
  --colorOrange: #f39800;

  --fontSize14: clamp(0.813rem, 0.779rem + 0.14vw, 0.875rem);
  --fontSize15: clamp(0.813rem, 0.746rem + 0.28vw, 0.938rem);
  --fontSize16: clamp(0.875rem, 0.809rem + 0.28vw, 1rem); /* min14 max16 */
  --fontSize18: clamp(1rem, 0.934rem + 0.28vw, 1.125rem); /* min16 max18 */
  --fontSize22: clamp(1.125rem, 0.992rem + 0.57vw, 1.375rem); /* min18 max22 */
  --fontSize24: clamp(1.125rem, 0.926rem + 0.85vw, 1.5rem); /* min18 max24 */
  --fontSize26: clamp(1.125rem, 0.859rem + 1.13vw, 1.625rem); /* min18 max26 */
  --fontSize32: clamp(1.5rem, 1.234rem + 1.13vw, 2rem); /* min26 max32 */
}
/* ----------------------------------------------
    color
----------------------------------------------*/
.is-orange {
  color: var(--colorOrange);
}

/* ----------------------------------------------
    common
----------------------------------------------*/
body {
  background: var(--colorRightBlue);
  font-family: var(--fontFamily);
}

.main {
  overflow: hidden;
  padding-top: 100px;
}

.container {
  margin: 0 auto;
  max-width: 1080px;
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main {
    padding-top: 80px;
  }

  .container {
    padding: 0 20px;
    width: auto;
  }
}

@media screen and (max-width: 767px) {
  .main {
    padding-top: 80px;
  }

  .container {
    padding: 0 20px;
    width: auto;
  }
}

/* ----------------------------------------------
    Text
----------------------------------------------*/
.commonTitle {
  color: var(--colorDarkBlue);
  font-family: var(--fontFamily);
  font-size: var(--fontSize26);
  font-weight: 700;
  line-height: 1.3;
}

.commonWord {
  color: var(--colorDarkBlue);
  font-family: var(--fontFamily);
  font-size: var(--fontSize18);
  font-weight: 700;
  line-height: 1.5;
}

.commonText {
  color: var(--colorDarkBlue);
  font-family: var(--fontFamily);
  font-size: var(--fontSize14);
  font-weight: 400;
  line-height: 1.7;
}

/* ----------------------------------------------
    Button
----------------------------------------------*/
.button a {
  background: var(--colorOrange);
  border: 3px solid var(--colorOrange);
  border-radius: 40px;
  color: #fff;
  display: inline-block;
  font-family: var(--fontFamily);
  font-size: var(--fontSize16);
  font-weight: 700;
  max-width: 300px;
  padding: 16px 0;
  text-align: center;
  transition: 0.2s;
  width: 100%;
}

.button a:hover {
  background: #fff;
  color: var(--colorOrange);
}

.buttonMore a {
  background-color: var(--colorOrange);
  border: 3px solid var(--colorOrange);
  border-radius: 15px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: var(--fontFamily);
  font-size: var(--fontSize16);
  font-weight: 700;
  max-width: 370px;
  padding: 8px 0;
  position: relative;
  text-align: center;
  transition: 0.2s;
  width: 100%;
}

.buttonMore a::before,
.buttonMore a::after {
  background: #fff;
  content: "";
  height: 3px;
  margin-top: -2px;
  position: absolute;
  right: 50px;
  top: 50%;
  width: 15px;
}

.buttonMore a::after {
  transform: rotate(90deg);
}

.buttonMore a:hover {
  background: #fff;
  color: var(--colorOrange);
}

.buttonMore a:hover::before,
.buttonMore a:hover::after {
  background: var(--colorOrange);
}

@media screen and (max-width: 767px) {
  .button a {
    padding: 16px 0;
    width: 70%;
  }

  .buttonMore a {
    padding: 16px 0;
    width: 90%;
  }

  .buttonMore a::before,
  .buttonMore a::after {
    background: #fff;
    content: "";
    height: 3px;
    position: absolute;
    right: 50px;
    top: 50%;
    width: 15px;
  }

  .buttonMore a::after {
    transform: rotate(90deg);
  }
}

/* ----------------------------------------------
    modal
----------------------------------------------*/
.itemScheduleModal {
  display: none;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.itemScheduleModal__bg {
  /*background-color: rgba(0, 78, 162, 0.7);*/
  height: 100vh;
  position: absolute;
  width: 100%;
  z-index: 1000;
}

.itemScheduleModal__inner {
  background: #fff;
  /*border-radius: 15px;*/
  height: 100%;
  left: 50%;
  max-width: 1130px;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1100;
}

.itemScheduleModal__close {
  align-items: center;
  background: var(--colorDarkBlue);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  color: #fff;
  font-family: var(--fontFamily);
  font-size: var(--fontSize14);
  font-weight: 700;
  height: 80px;
  justify-content: center;
  position: absolute;
  right: -20px;
  top: -20px;
  width: 80px;
  z-index: 1200;
}

.itemScheduleModal__head {
  background: #f2f3f7;
  /*border-radius: 20px 20px 0 0;*/
  padding: 40px;
}

.itemScheduleModal__head--title {
  color: var(--colorDarkBlue);
  font-family: var(--fontFamily);
  font-size: var(--fontSize16);
  font-weight: 700;
}

.itemScheduleModal__head--title.is-orange {
  color: var(--colorOrange);
}

.itemScheduleModal__head--title span {
  color: var(--colorDarkBlue);
  margin-left: 16px;
}

.itemScheduleModal__head--word {
  color: var(--colorDarkBlue);
  font-family: var(--fontFamily);
  font-size: var(--fontSize22);
  font-weight: 700;
  margin-top: 24px;
}

.itemScheduleModal__main {
  height: auto;
  padding: 40px;
}

.itemScheduleModal__main__inner {
  height: 100%;
  overflow-y: scroll;
}

.itemScheduleModal__main__profile {
  align-items: flex-start;
  border-top: 10px solid #f2f3f7;
  column-gap: 30px;
  display: flex;
  margin-top: 40px;
  padding-top: 40px;
  width: 100%;
}

.itemScheduleModal__main__profile--icon img {
  border: 10px solid #f2f3f7;
  border-radius: 50%;
  /* height: 180px; */
  height: 120px;
  width: auto;
}

.itemScheduleModal__main__profile__content--name {
  color: var(--colorDarkBlue);
  font-family: var(--fontFamily);
  font-size: var(--fontSize18);
  font-weight: 700;
  line-height: 1.7;
}

.itemScheduleModal__main__profile__content--name span {
  font-size: var(--fontSize14);
  margin-left: 8px;
}

.itemScheduleModal__main__profile__content--company {
  color: var(--colorDarkBlue);
  font-family: var(--fontFamily);
  font-size: var(--fontSize14);
  font-weight: 700;
  line-height: 1.7;
  margin-top: 16px;
}

.itemScheduleModal__main__profile__content--text {
  color: var(--colorDarkBlue);
  font-family: var(--fontFamily);
  font-size: var(--fontSize14);
  font-weight: 400;
  line-height: 1.7;
  margin-top: 16px;
}

.itemScheduleModal__button {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .itemScheduleModal__inner {
    width: 90%;
  }

  .itemScheduleModal__close {
    height: 60px;
    right: -30px;
    top: -30px;
    width: 60px;
  }
}

@media screen and (max-width: 767px) {
  .itemScheduleModal__inner {
    height: 90%;
    overflow-y: scroll;
    padding-bottom: 50px;
    width: 90%;
  }

  .itemScheduleModal__close {
    display: none;
  }

  .itemScheduleModal__head {
    padding: 32px;
  }

  .itemScheduleModal__head--title span {
    margin-left: 8px;
  }

  .itemScheduleModal__head--word {
    line-height: 1.7;
    margin-top: 16px;
  }

  .itemScheduleModal__main {
    padding: 32px;
  }

  .itemScheduleModal__main__profile {
    border-top: 5px solid #f2f3f7;
    column-gap: 0;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 32px;
    width: 100%;
  }

  .itemScheduleModal__main__profile--icon {
    text-align: center;
    width: 100%;
  }

  .itemScheduleModal__main__profile--icon img {
    border: 5px solid #f2f3f7;
    height: 100px;
  }

  .itemScheduleModal__main__profile__content--name {
    margin-top: 16px;
    text-align: center;
  }

  .itemScheduleModal__main__profile__content--name span {
    margin-left: 8px;
  }

  .itemScheduleModal__main__profile__content--company {
    margin-top: 24px;
  }

  .itemScheduleModal__main__profile__content--text {
    margin-top: 24px;
  }

  .itemScheduleModal__button {
    display: block;
    text-align: center;
  }

  .itemScheduleModal__button span {
    background: var(--colorDarkBlue);
    color: #fff;
    display: inline-block;
    font-family: var(--fontFamily);
    font-size: var(--fontSize15);
    font-weight: 700;
    max-width: 300px;
    padding: 15px 0;
    text-align: center;
    width: 100%;
  }
}

/* ----------------------------------------------
    scroll anime
----------------------------------------------*/
.js-scrollFadeIn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.js-scrollFadeIn.is-second {
  transition: opacity 2s, visibility 2s, transform 2s;
}

.js-scrollFadeIn.is-third {
  transition: opacity 3s, visibility 3s, transform 3s;
}

.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
