@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Noto+Sans+JP:wght@400;500;600;700&display=swap");
@font-face {
  font-family: "YuGothic";
  src: url(../fonts/yugothib.ttf);
}
/**
* @file _reset.scss
**/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  vertical-align: bottom;
  border: 0;
}

a {
  text-decoration: none;
}

html {
  font-size: 1.2px;
}
@media screen and (max-width: 1920px) {
  html {
    font-size: 0.0694444444vw;
  }
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 0.0694444444vw;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 0.09765625vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.1302083333vw;
  }
}

*::-moz-selection {
  color: white;
}

*::selection {
  color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  margin-bottom: 0;
}

ol,
ul {
  list-style: none;
}

*:focus {
  outline: none;
}

blockquote,
q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before,
q::after {
  content: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

button {
  cursor: pointer;
  border: 0;
  outline: none;
}

table td,
table th {
  padding: 0;
  border: 0;
}

img {
  max-width: 100%;
  line-height: 0;
  vertical-align: bottom;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

input:focus {
  outline: 0;
}

td,
th,
tr {
  vertical-align: middle;
}

*,
dd,
dl,
dt,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
img,
ol,
picture,
table,
ul {
  margin: 0;
}

ol,
ul {
  padding: 0;
  list-style-type: none;
}

textarea {
  resize: vertical;
}

fieldset,
legend {
  padding: 0;
}

figure {
  display: flex;
  align-items: center;
  justify-content: center;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #e8e8e8;
}

::-webkit-scrollbar-thumb {
  background: #1f1f1f;
  border-radius: 5px;
}

/**
* @file _common.scss
**/
.is-pc {
  display: block;
}
@media screen and (max-width: 1024px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .is-sp {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: none !important;
  }
}

.is-sm {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .is-sm {
    display: flex !important;
  }
}

.only-sm {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .only-sm {
    display: block !important;
  }
}

.not-sm {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .not-sm {
    display: none !important;
  }
}

.l-common {
  max-width: 968px;
  margin: 0 auto;
}

.col-reverse {
  flex-direction: row-reverse;
  justify-content: space-between;
  padding-left: 125rem;
  margin-right: 20%;
}
@media screen and (max-width: 1024px) {
  .col-reverse {
    padding-left: 0;
  }
}

.__deco {
  border-bottom: 2px solid #d38a33;
}

.__lefticon {
  width: 10px;
  height: 10px;
  position: fixed;
  left: -20rem;
  top: 60%;
  z-index: 1;
}

.__righticon {
  width: 10px;
  height: 10px;
  position: fixed;
  right: -20rem;
  top: 60%;
  z-index: 1;
}

.swiper-button-next::after {
  display: none;
}

.swiper-button-prev::after {
  display: none;
}

.shadow-box {
  box-shadow: 10px 10px 15px rgba(105, 104, 104, 0.5);
  margin-bottom: 20px;
}

.shadow-text {
  text-shadow: 5px 5px 10px rgba(105, 104, 104, 0.5);
}

.shadow-box_cookie {
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.5);
  margin-top: 20px;
}

.__Xrosspoint {
  position: relative;
}

.c-header {
  width: 100%;
  height: 80px;
  z-index: 20;
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 133rem;
  padding-left: 133rem;
  background-color: white;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  .c-header {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 50rem;
    padding-right: 50rem;
  }
}
.c-header .logo {
  -o-object-fit: cover;
     object-fit: cover;
}
.c-header .logo .pc-logo {
  display: block;
}
@media screen and (max-width: 768px) {
  .c-header .logo .pc-logo {
    display: none;
  }
}
.c-header .c-hedaer__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 100rem;
}
@media screen and (max-width: 1024px) {
  .c-header .c-hedaer__wrap {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 1440px) {
  .c-header .c-hedaer__wrap {
    gap: 80rem;
  }
}
@media screen and (max-width: 580px) {
  .c-header .c-hedaer__wrap {
    gap: 20rem;
  }
}
.c-header__dropdown {
  position: relative;
  display: inline-block;
}
.c-header__dropdown .dropbtn {
  border: none;
  cursor: pointer;
}
.c-header__dropdown .c-header__dropdown--content {
  display: none;
  position: absolute;
  width: 100vw;
  height: 100px;
  right: -50rem;
  top: 60px;
  background-color: #f1f1f1;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.c-header__dropdown .c-header__dropdown--content.collapsed {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .c-header__dropdown .c-header__dropdown--content {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding-left: 100rem;
  }
}
.c-header__dropdown .c-header__dropdown--content_logo {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-header__dropdown .c-header__dropdown--content_logo {
    display: block;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10%;
  }
}
.c-header__dropdown .c-header__dropdown--content_comname {
  width: 40%;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #1B4B66;
}
@media screen and (max-width: 768px) {
  .c-header__dropdown .c-header__dropdown--content_comname {
    font-size: 40px;
    letter-spacing: 0.2em;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .c-header__dropdown .c-header__dropdown--content {
    width: 100vw;
    height: 100vh;
    right: -50rem;
    padding-left: 30rem;
    padding-right: 30rem;
    padding-top: 200rem;
    padding-bottom: 200rem;
    transition: all ease 1s;
    flex-direction: column;
    justify-content: center;
  }
}
.c-header__dropdown .c-header__dropdown--content .__ttl-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-header__dropdown .c-header__dropdown--content .__ttl-wrap {
    flex-direction: column;
  }
}
.c-header__dropdown .c-header__dropdown--content .__ttl-wrap .c-header__dropdown--content_ttl {
  font-size: 20rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
@media screen and (max-width: 768px) {
  .c-header__dropdown .c-header__dropdown--content .__ttl-wrap .c-header__dropdown--content_ttl {
    font-size: 30px;
  }
}
.c-header__dropdown .c-header__dropdown--content .__ttl-wrap .c-header__dropdown--content_ttl:hover {
  background-color: #ddd;
}
.c-header__items {
  display: flex;
  align-items: center;
  gap: 40rem;
}
@media screen and (max-width: 1440px) {
  .c-header__items {
    gap: 20rem;
  }
}
@media screen and (max-width: 1024px) {
  .c-header__items {
    display: none;
  }
}
.c-header__items .__item a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 14rem;
  line-height: 21px;
  color: #111111;
}
.c-header__items .__item a:hover {
  font-weight: bold;
  color: #666666;
}
.c-header__la {
  width: 200px;
  height: 30px;
  padding: 10px;
  border-radius: 25px;
  background-color: #d38a33;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .c-header__la {
    width: 120px;
    height: 30px;
    padding: 0;
    gap: 5px;
  }
}
.c-header__la--icon {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  padding-top: 6px;
  z-index: 1;
}
.c-header__la p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 12px;
  line-height: 21px;
  color: #fff;
}

.c-footer {
  width: 100%;
}
.c-footer__above {
  width: 100%;
  padding-left: 133rem;
  padding-right: 133rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 30rem;
  padding-bottom: 30rem;
  background-color: #CCCCCC;
}
@media screen and (max-width: 1024px) {
  .c-footer__above {
    padding-left: 50rem;
    padding-right: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .c-footer__above {
    flex-direction: column;
    gap: 30rem;
  }
}
.c-footer__above--logo {
  max-width: 230px;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-footer__above--wrap {
  display: flex;
  align-items: center;
  gap: 100rem;
}
@media screen and (max-width: 1440px) {
  .c-footer__above--wrap {
    gap: 80rem;
  }
}
@media screen and (max-width: 768px) {
  .c-footer__above--wrap {
    flex-direction: column;
    gap: 30rem;
  }
}
.c-footer__above--wrap_items {
  display: flex;
  gap: 70rem;
  align-items: baseline;
}
@media screen and (max-width: 1440px) {
  .c-footer__above--wrap_items {
    gap: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .c-footer__above--wrap_items {
    gap: 70rem;
  }
}
.c-footer__above--wrap_items .__item a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 14rem;
  line-height: 21px;
  color: #111111;
}
.c-footer__above--wrap_items .__item a:hover {
  font-weight: bold;
  color: #666666;
}
.c-footer__above--wrap_items .__item-wrap {
  display: flex;
  flex-direction: column;
  gap: 20rem;
}
.c-footer__above--wrap_items .__item-wrap_content a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 14rem;
  line-height: 21px;
  color: #111111;
}
.c-footer__above--wrap_items .__item-wrap_content a:hover {
  font-weight: bold;
  color: #666666;
}
.c-footer__above--wrap_la {
  width: 200px;
  height: 30px;
  border-radius: 25px;
  background-color: #d38a33;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.c-footer__above--wrap_la--icon {
  width: 20px;
  height: 20px;
}
.c-footer__above--wrap_la--ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 12px;
  line-height: 21px;
  color: #fff;
}
.c-footer__sub {
  width: 100%;
  padding-left: 133rem;
  padding-right: 133rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #1B4B66;
}
@media screen and (max-width: 1024px) {
  .c-footer__sub {
    flex-direction: column-reverse;
    justify-content: center;
    padding-right: 0;
    padding-left: 0;
    gap: 10rem;
  }
}
.c-footer__sub p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 12px;
  line-height: 21px;
  text-align: left;
  color: #fff;
}
.c-footer__sub--wrap {
  display: flex;
  gap: 10rem;
}
.c-footer__sub--wrap .__icon {
  width: 25px;
  height: 25px;
}

._mid--top {
  width: 100%;
  height: 60px;
  background-color: #DFF2F4;
  padding-left: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  text-align: left;
  color: #1b1464;
  display: flex;
  align-items: center;
}

._mid--footer {
  width: 100%;
  height: 60px;
  background-color: #DFF2F4;
  padding-left: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  text-align: left;
  color: #1b1464;
  display: flex;
  align-items: center;
}

.__slider-item {
  width: 100%;
  background-color: #DFF2F4;
  display: flex;
  flex-direction: column;
  gap: 20rem;
  padding: 20px;
  margin-top: 70px;
  overflow: hidden;
}
.__slider-item .__slider-ttl {
  font-family: "Source Han Sans JP";
  font-weight: 500;
  font-size: 30px;
  text-align: left;
  color: #000;
  border-bottom: 2px solid #555555;
}
@media screen and (max-width: 768px) {
  .__slider-item .__slider-ttl {
    font-size: 20px;
  }
}
.__slider-item .__slider-subttl {
  font-family: "Source Han Sans JP";
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  color: #000;
}

.__swiper-button-next {
  position: absolute;
  display: block !important;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}
@media screen and (max-width: 1440px) {
  .__swiper-button-next {
    right: -20px;
  }
}
@media screen and (max-width: 1024px) {
  .__swiper-button-next {
    display: none !important;
  }
}

.__swiper-button-prev {
  position: absolute;
  display: block !important;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}
@media screen and (max-width: 1440px) {
  .__swiper-button-prev {
    left: -20px;
  }
}
@media screen and (max-width: 1024px) {
  .__swiper-button-prev {
    display: none !important;
  }
}

.cookie-bar {
  display: none;
  position: fixed;
  width: 100%;
  bottom: 0;
  background-color: transparent;
}
.cookie-bar__container {
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  .cookie-bar__container {
    flex-direction: column;
  }
}
.cookie-bar_ttl {
  width: 100%;
  padding: 30px 20px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  color: #111;
  text-align: center;
  line-height: 25px;
}
.cookie-bar_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 10px 20px;
}
@media screen and (max-width: 1440px) {
  .cookie-bar_wrap {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .cookie-bar_wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.cookie-consent__accept {
  font-size: 16px;
  background-color: rgb(30, 147, 224);
  color: #fff;
  padding: 10px 50px;
}
.cookie-consent__decline {
  font-size: 16px;
  background-color: #fff;
  border: 1px solid rgb(30, 147, 224);
  font-weight: normal;
  padding: 10px 50px;
}

.cookie-link {
  font-size: 16px;
  color: #fff;
  text-decoration: underline;
}

.p-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-main .p-fv {
  width: 100%;
  position: relative;
  padding-top: 80px;
}
.p-main .p-fv__figure {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-main .p-fv__figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-main .p-fv__wrap {
  position: absolute;
  top: 100rem;
  bottom: 100rem;
  right: 150rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-main .p-fv__wrap {
    left: 20rem;
    top: 10%;
    justify-content: left;
  }
}
@media screen and (max-width: 580px) {
  .p-main .p-fv__wrap {
    top: 13%;
    left: 20rem;
  }
}
.p-main .p-fv__wrap--topttl {
  font-family: "Noto Sans JP", sans-serif;
  padding-right: 20rem;
  padding-left: 20rem;
  padding-bottom: 20rem;
  font-weight: normal;
  font-size: 16rem;
  line-height: 28rem;
  text-align: left;
  color: #1b1464;
}
@media screen and (max-width: 768px) {
  .p-main .p-fv__wrap--topttl {
    padding-left: 10rem;
    padding-right: 10rem;
    padding-bottom: 10rem;
    font-size: 14px;
    line-height: 1.5;
  }
}
.p-main .p-fv__wrap--ttl {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 40rem;
}
@media screen and (max-width: 1440px) {
  .p-main .p-fv__wrap--ttl {
    max-width: 430px;
  }
}
@media screen and (max-width: 768px) {
  .p-main .p-fv__wrap--ttl {
    padding-bottom: 20rem;
    max-width: 350px;
  }
}
@media screen and (max-width: 580px) {
  .p-main .p-fv__wrap--ttl {
    max-width: 330px;
  }
}
.p-main .p-fv__wrap--ttl .__upttl {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 43rem;
  line-height: 75.25rem;
  text-align: center;
  color: #1b1464;
}
@media screen and (max-width: 768px) {
  .p-main .p-fv__wrap--ttl .__upttl {
    font-size: 40px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 580px) {
  .p-main .p-fv__wrap--ttl .__upttl {
    font-size: 35px;
    line-height: 1.5;
  }
}
.p-main .p-fv__wrap--ttl .__subttl {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 43rem;
  line-height: 75.25rem;
  text-align: center;
  color: #1b1464;
}
@media screen and (max-width: 768px) {
  .p-main .p-fv__wrap--ttl .__subttl {
    font-size: 40px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 580px) {
  .p-main .p-fv__wrap--ttl .__subttl {
    font-size: 35px;
    line-height: 1.5;
  }
}
.p-main .p-fv__wrap--link {
  width: 290px;
  height: 50px;
  border-radius: 25px;
  background-color: #d38a33;
  box-shadow: 6px 6px 4px rgba(124, 44, 20, 0.18);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.p-main .p-fv__wrap--link_ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  padding-top: 10rem;
  padding-bottom: 10rem;
  font-size: 16px;
  line-height: 21px;
  color: #fff;
}
.p-main .p-fv__wrap--link_arrow {
  position: absolute;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .p-main .p-fv__wrap--link {
    display: none;
  }
}
.p-main .p-fv__wrap--subttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16rem;
  line-height: 28rem;
  text-align: center;
  color: #1b1464;
  padding-top: 40rem;
}
@media screen and (max-width: 768px) {
  .p-main .p-fv__wrap--subttl {
    font-size: 14px;
    line-height: 1.5;
    padding-top: 20rem;
  }
}
.p-main .p-fv-sm {
  position: absolute;
  bottom: 120rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-main .p-fv-sm .p-fv__linkwrap {
  width: 290px;
  height: 50px;
  border-radius: 25px;
  background-color: #d38a33;
  box-shadow: 6px 6px 4px rgba(124, 44, 20, 0.18);
  position: relative;
}
.p-main .p-fv-sm .p-fv__linkwrap .p-fv-sm__link {
  text-align: center;
  align-items: center;
}
.p-main .p-fv-sm .p-fv__linkwrap .p-fv-sm__link_ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  padding-top: 10rem;
  padding-bottom: 10rem;
  font-size: 16px;
  color: #fff;
}
.p-main .p-fv-sm .p-fv__linkwrap .p-fv-sm__link_arrow {
  position: absolute;
  right: 20px;
  top: 17px;
  padding-left: 50px;
}
.p-main .p-intro {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40rem;
  padding-top: 150rem;
}
.p-main .p-intro__subttl {
  padding-top: 30rem;
  padding-right: 50rem;
  padding-left: 50rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #000;
  max-width: 1200px;
  padding-bottom: 100rem;
}
.p-main .p-selreason {
  width: 100%;
  padding-top: 30rem;
  padding-bottom: 60rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60rem;
  background-color: #DFF2F4;
}
.p-main .p-selreason h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 43px;
  text-align: left;
  color: #1b1464;
  border-bottom: 2px solid #d38a33;
}
@media screen and (max-width: 1440px) {
  .p-main .p-selreason h1 {
    font-size: 43rem;
  }
}
@media screen and (max-width: 768px) {
  .p-main .p-selreason h1 {
    font-size: 20px;
  }
}
.p-main .p-selreason__items {
  width: 90%;
  background-color: white;
  display: flex;
  margin-left: 10%;
}
@media screen and (max-width: 1024px) {
  .p-main .p-selreason__items {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: -moz-max-content;
    width: max-content;
    margin-right: 10%;
    background-color: #DFF2F4;
  }
}
@media screen and (max-width: 580px) {
  .p-main .p-selreason__items {
    width: 80%;
  }
}
.p-main .p-selreason__items--img {
  width: auto;
}
@media screen and (max-width: 768px) {
  .p-main .p-selreason__items--img {
    width: 100%;
  }
}
.p-main .p-selreason__items--wrap {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  .p-main .p-selreason__items--wrap {
    max-width: 507px;
  }
}
.p-main .p-selreason__items--wrap .__recommend-topttl {
  font-family: "BookAntiqua";
  font-weight: normal;
  font-size: 48px;
  text-align: left;
  color: #0071bc;
}
@media screen and (max-width: 1440px) {
  .p-main .p-selreason__items--wrap .__recommend-topttl {
    font-size: 48rem;
  }
}
@media screen and (max-width: 768px) {
  .p-main .p-selreason__items--wrap .__recommend-topttl {
    font-size: 20px;
  }
}
.p-main .p-selreason__items--wrap .__recommend-ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 30px;
  text-align: left;
  color: #0071bc;
}
@media screen and (max-width: 1440px) {
  .p-main .p-selreason__items--wrap .__recommend-ttl {
    font-size: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .p-main .p-selreason__items--wrap .__recommend-ttl {
    font-size: 20px;
  }
}
.p-main .p-selreason__items--wrap .__recommend-subttl {
  max-width: 650px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 1440px) {
  .p-main .p-selreason__items--wrap .__recommend-subttl {
    font-size: 16rem;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 580px) {
  .p-main .p-selreason__items--wrap .__recommend-subttl {
    font-size: 16px;
  }
}
.p-main .p-work {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80rem;
  padding-bottom: 70rem;
  padding-left: 50rem;
  padding-right: 50rem;
  gap: 60rem;
}
.p-main .p-work__ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50rem;
}
.p-main .p-work__ttl P {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16rem;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 580px) {
  .p-main .p-work__ttl P {
    font-size: 16px;
  }
}
.p-main .p-work__ttl--mark {
  width: 500px;
  height: 45px;
  border-bottom: 2px solid #d38a33;
}
@media screen and (max-width: 1024px) {
  .p-main .p-work__ttl--mark {
    width: 450px;
    height: 40px;
    border-bottom: 2px solid #d38a33;
  }
}
@media screen and (max-width: 768px) {
  .p-main .p-work__ttl--mark {
    width: 350px;
    height: 35px;
    border-bottom: 2px solid #d38a33;
  }
}
.p-main .p-work__content {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .p-main .p-work__content {
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .p-main .p-work__content {
    flex-direction: column;
  }
}
.p-main .p-work__content--img {
  width: 30%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p-main .p-work__content--img {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .p-main .p-work__content--img {
    width: 100%;
  }
}
.p-main .p-work__content--wrap {
  width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: left;
}
@media screen and (max-width: 1024px) {
  .p-main .p-work__content--wrap {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .p-main .p-work__content--wrap {
    width: 100%;
  }
}
.p-main .p-work__content--wrap_ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 30px;
  text-align: left;
  color: #2e3192;
  border-bottom: 2px solid #000;
}
@media screen and (max-width: 1440px) {
  .p-main .p-work__content--wrap_ttl {
    font-size: 30rem;
  }
}
.p-main .p-work__content--wrap_subttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  text-align: left;
  max-width: 800px;
  padding-top: 10px;
  letter-spacing: 0.1em;
  color: #000;
}
@media screen and (max-width: 1440px) {
  .p-main .p-work__content--wrap_subttl {
    font-size: 16rem;
  }
}
@media screen and (max-width: 580px) {
  .p-main .p-work__content--wrap_subttl {
    font-size: 16px;
  }
}
.p-main .p-cvchange {
  width: 100%;
  max-width: 1280px;
  padding-left: 50rem;
  padding-right: 50rem;
  padding-top: 70rem;
  padding-bottom: 70rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 20rem;
}
@media screen and (max-width: 768px) {
  .p-main .p-cvchange {
    padding-left: 20rem;
    padding-right: 20rem;
  }
}
.p-main .p-cvchange__ttl {
  font-family: "Source Han Sans JP";
  font-weight: 500;
  font-size: 43px;
  color: #1b1464;
  border-bottom: 2px solid #d38a33;
}
@media screen and (max-width: 1440px) {
  .p-main .p-cvchange__ttl {
    font-size: 43rem;
  }
}
@media screen and (max-width: 768px) {
  .p-main .p-cvchange__ttl {
    font-size: 20px;
  }
}
.p-main .p-cvchange__wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 20rem;
}
@media screen and (max-width: 768px) {
  .p-main .p-cvchange__wrap {
    padding-top: 60rem;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.p-main .p-cvchange__wrap--content {
  width: 100%;
  background-color: #DFF2F4;
  display: flex;
  flex-direction: row;
  gap: 20rem;
  padding: 20px;
  margin-top: 70px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-main .p-cvchange__wrap--content_img {
    position: absolute;
    top: -70rem;
    width: 94%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 580px) {
  .p-main .p-cvchange__wrap--content_img {
    top: -90rem;
  }
}
.p-main .p-cvchange__wrap--content_img img {
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .p-main .p-cvchange__wrap--content_img img {
    max-width: 120rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 580px) {
  .p-main .p-cvchange__wrap--content_img img {
    max-width: 90px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-main .p-cvchange__wrap--content_items {
  width: 100%;
  padding-right: 30rem;
}
@media screen and (max-width: 1024px) {
  .p-main .p-cvchange__wrap--content_items {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-main .p-cvchange__wrap--content_items {
    padding-top: 50px;
  }
}
.p-main .p-cvchange__wrap--content_items .__Mtype {
  width: 100%;
  padding-left: 30rem;
  padding-right: 20rem;
  padding-top: 10rem;
  padding-bottom: 10rem;
  border-radius: 20px;
  background-color: #0071BC;
}
.p-main .p-cvchange__wrap--content_items .__Mtype::before {
  width: 10px;
  height: 10px;
  background-color: #0071BC;
}
.p-main .p-cvchange__wrap--content_items .__Mtype--ttl {
  font-family: "Source Han Sans JP";
  font-weight: 500;
  font-size: 30px;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .p-main .p-cvchange__wrap--content_items .__Mtype--ttl {
    font-size: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .p-main .p-cvchange__wrap--content_items .__Mtype--ttl {
    font-size: 20px;
  }
}
.p-main .p-cvchange__wrap--content_items p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  text-align: left;
  color: #000;
  padding-top: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 1440px) {
  .p-main .p-cvchange__wrap--content_items p {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .p-main .p-cvchange__wrap--content_items p {
    font-size: 16px;
  }
}
.p-main .p-flow {
  width: 100%;
  max-width: 1280px;
  padding-top: 70rem;
  padding-left: 50rem;
  padding-right: 50rem;
  padding-bottom: 70rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-main .p-flow__ttl {
  font-family: "Source Han Sans JP";
  font-weight: 500;
  font-size: 43px;
  text-align: left;
  color: #1b1464;
  border-bottom: 2px solid #d38a33;
}
@media screen and (max-width: 1440px) {
  .p-main .p-flow__ttl {
    font-size: 43rem;
  }
}
@media screen and (max-width: 768px) {
  .p-main .p-flow__ttl {
    font-size: 20px;
  }
}
.p-main .p-flow__wrap {
  width: 100%;
  padding-top: 60rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30rem;
}
.p-main .p-flow__wrap--items {
  width: 100%;
  border: 1px solid #111111;
}
.p-main .p-flow__wrap--items .__item--head {
  width: 100%;
  background-color: #DFF2F4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #000;
}
.p-main .p-flow__wrap--items .__item--head h5 {
  font-family: "BookAntiqua-Italic";
  font-style: italic;
  font-weight: normal;
  font-size: 65.81px;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 1440px) {
  .p-main .p-flow__wrap--items .__item--head h5 {
    font-size: 65.81rem;
  }
}
@media screen and (max-width: 768px) {
  .p-main .p-flow__wrap--items .__item--head h5 {
    font-size: 40px;
  }
}
.p-main .p-flow__wrap--items .__item--head p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 30px;
  text-align: left;
  color: #000;
  padding-bottom: 10rem;
}
@media screen and (max-width: 1440px) {
  .p-main .p-flow__wrap--items .__item--head p {
    font-size: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .p-main .p-flow__wrap--items .__item--head p {
    font-size: 25px;
  }
}
.p-main .p-flow__wrap--items .__item--wrap {
  padding: 20rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30rem;
}
.p-main .p-flow__wrap--items .__item--wrap_content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-main .p-flow__wrap--items .__item--wrap_content {
    flex-direction: column-reverse;
    gap: 20rem;
  }
}
.p-main .p-flow__wrap--items .__item--wrap_content .__discription {
  display: flex;
  flex-direction: column;
  max-width: 50%;
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .p-main .p-flow__wrap--items .__item--wrap_content .__discription {
    max-width: 100%;
  }
}
.p-main .p-flow__wrap--items .__item--wrap_content .__discription--ttl {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-main .p-flow__wrap--items .__item--wrap_content .__discription--ttl .__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 20px;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 1440px) {
  .p-main .p-flow__wrap--items .__item--wrap_content .__discription--ttl .__title {
    font-size: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .p-main .p-flow__wrap--items .__item--wrap_content .__discription--ttl .__title {
    font-size: 18px;
  }
}
.p-main .p-flow__wrap--items .__item--wrap_content .__discription--ttl .__border-bottom {
  width: 100%;
  height: 3px;
  background: linear-gradient(#00a49f 0%, #0d0d0f 100%);
}
.p-main .p-flow__wrap--items .__item--wrap_content .__discription--subttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 1440px) {
  .p-main .p-flow__wrap--items .__item--wrap_content .__discription--subttl {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .p-main .p-flow__wrap--items .__item--wrap_content .__discription--subttl {
    font-size: 16px;
  }
}
.p-main .p-flow__wrap--items .__item--wrap_content .__discription--img {
  padding-left: 20rem;
}
@media screen and (max-width: 768px) {
  .p-main .p-flow__wrap--items .__item--wrap_content .__discription--img {
    padding-left: 0;
  }
}
.p-main .p-contact {
  width: 100%;
  max-width: 1280px;
  padding-top: 70rem;
  padding-left: 50rem;
  padding-right: 50rem;
  padding-bottom: 70rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-main .p-contact__ttl {
  font-family: "Source Han Sans JP";
  font-weight: 500;
  font-size: 43px;
  text-align: left;
  color: #1b1464;
  border-bottom: 2px solid #d38a33;
}
@media screen and (max-width: 1440px) {
  .p-main .p-contact__ttl {
    font-size: 43rem;
  }
}
@media screen and (max-width: 768px) {
  .p-main .p-contact__ttl {
    font-size: 40px;
  }
}
.p-main .p-contact__form {
  margin-top: 30rem;
  width: 100%;
  background: #e2e2e2;
  border-radius: 5px;
}
.p-main .p-contact__wrap {
  width: 100%;
  padding-top: 20rem;
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.p-main .p-contact__wrap--ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  text-align: center;
  color: #000;
  padding-bottom: 20rem;
}
@media screen and (max-width: 1440px) {
  .p-main .p-contact__wrap--ttl {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .p-main .p-contact__wrap--ttl {
    font-size: 16px;
  }
}
.p-main .p-contact__wrap--item {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.p-main .p-contact__wrap--item .__item--ttl {
  font-family: "Source Han Sans JP";
  font-weight: normal;
  font-size: 16px;
  text-align: left;
  padding-bottom: 10px;
  color: #000;
}
@media screen and (max-width: 1440px) {
  .p-main .p-contact__wrap--item .__item--ttl {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .p-main .p-contact__wrap--item .__item--ttl {
    font-size: 16px;
  }
}
.p-main .p-contact__wrap--item .__item-input {
  width: 100%;
  height: 40px;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 7px;
}
.p-main .p-contact__wrap--item .__item-input input {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  color: #8B979E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 142.857% */
  padding-left: 16px;
}
.p-main .p-contact__wrap--item .__item-input input:focus {
  border: 1px solid #a5a5a5;
  border-radius: 6px;
}
.p-main .p-contact__wrap--item .__item-input .input__error {
  background: #FFF8F8;
  border: 1px solid #FFD5D5;
}
.p-main .p-contact__wrap--item .__item-textarea {
  border-radius: 6px;
  border: 1px solid var(--border-gray, #DCDEE0);
  background: #FFF;
  width: 100%;
  height: 200px;
}
.p-main .p-contact__wrap--item .__item-textarea textarea {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  padding-top: 15px;
  padding-left: 16px;
}
.p-main .p-contact__wrap--item .__item-textarea textarea:focus {
  border: 1px solid #a5a5a5;
}
.p-main .p-contact__wrap--item .__item-textarea .input__error {
  background: #FFF8F8;
  border: 1px solid #FFD5D5;
}
.p-main .p-contact__wrap--item .__error {
  display: none;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  color: #B34040;
  margin-top: 4px;
}
.p-main .p-contact__wrap--item .__error.is-active {
  display: block;
}
@media screen and (max-width: 1024px) {
  .p-main .p-contact__wrap--item .__error {
    font-size: 12px;
  }
}
.p-main .p-contact__wrap .__submit-btn {
  margin-top: 10rem;
  margin-bottom: 10rem;
  width: 400px;
  height: 60px;
  border-radius: 28px;
  background: #d38a33;
  border: 1px solid #d38a33;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 18px;
  color: #fff;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .p-main .p-contact__wrap .__submit-btn {
    width: 400rem;
    height: 60rem;
    font-size: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .p-main .p-contact__wrap .__submit-btn {
    font-size: 16px;
  }
}
.p-main .p-contact__wrap .__submit-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: white;
  color: #d38a33;
  transition: all ease 0.35s;
  border-radius: 40px;
  cursor: pointer;
  z-index: -1;
}
.p-main .p-contact__wrap .__submit-btn:hover {
  z-index: 1;
  color: #d38a33;
}
.p-main .p-contact__wrap .__submit-btn:hover::after {
  width: 100%;
  transition: all ease 0.35s;
}

.c-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
}
.c-main .c-fv {
  width: 100%;
  position: relative;
}
.c-main .c-fv__figure {
  width: 100%;
}
.c-main .c-fv__figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-main .c-fv__wrap {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .c-main .c-fv__wrap {
    top: 35%;
    gap: 10px;
  }
}
.c-main .c-fv__wrap--ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 43px;
  color: #fff;
}
.c-main .c-fv__wrap--subttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-main .c-fv__wrap--subttl {
    display: none;
  }
}
.c-main .c-fv__wrap--subttl_sm {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 580px) {
  .c-main .c-fv__wrap--subttl_sm {
    font-size: 14px;
    line-height: 1.5;
  }
}
.c-main .c-content {
  width: 100%;
  padding-left: 20%;
  padding-right: 20%;
  padding-top: 120px;
  padding-bottom: 150px;
}
@media screen and (max-width: 1440px) {
  .c-main .c-content {
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media screen and (max-width: 768px) {
  .c-main .c-content {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.c-main .c-content-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 145px;
}
@media screen and (max-width: 768px) {
  .c-main .c-content-wrap {
    gap: 50px;
  }
}
.c-main .c-content__top {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.c-main .c-content__top--ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  text-align: left;
  color: #111;
}
.c-main .c-content__top--select {
  width: 250px;
  border: 1px solid #777;
}
@media screen and (max-width: 768px) {
  .c-main .c-content__top--select {
    width: 200px;
  }
}
.c-main .c-content__top--select select {
  width: 100%;
  padding: 10px;
}
.c-main .c-content__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .c-main .c-content__body {
    padding-top: 50px;
  }
}
.c-main .c-content__body .__content {
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  cursor: pointer;
  gap: 20px;
  transition: all ease-out 0.5s;
}
.c-main .c-content__body .__content:hover {
  background-color: #f1f1f1;
}
@media screen and (max-width: 768px) {
  .c-main .c-content__body .__content {
    flex-direction: column;
  }
}
.c-main .c-content__body .__content--img {
  width: 30%;
  max-width: 300px;
}
.c-main .c-content__body .__content--img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 768px) {
  .c-main .c-content__body .__content--img {
    width: 100%;
    max-width: 780px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.c-main .c-content__body .__content--wrap {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .c-main .c-content__body .__content--wrap {
    width: 100%;
  }
}
.c-main .c-content__body .__content--wrap .__content-ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 20px;
  text-align: left;
  color: #111;
}
.c-main .c-content__body .__content--wrap .__content-badge {
  width: 70px;
  height: 30px;
  border-radius: 15px;
  background-color: #AA3333;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-main .c-content__body .__content--wrap .__content-date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 12px;
  text-align: left;
  color: #000;
}

.e-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.e-main__wrap {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .e-main__wrap {
    padding-bottom: 100px;
  }
}
.e-main__wrap--head {
  width: 100%;
  height: 200px;
  background-color: #DFF2F4;
  padding-left: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .e-main__wrap--head {
    height: 100px;
    padding-left: 20rem;
  }
}
.e-main__wrap--head p {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  text-align: left;
  color: #000;
}
.e-main__wrap--head h1 {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 43px;
  text-align: left;
  color: #000;
}
.e-main__wrap--content {
  width: 100%;
  padding-left: 20%;
  padding-right: 20%;
  padding-top: 150rem;
}
@media screen and (max-width: 1440px) {
  .e-main__wrap--content {
    padding-left: 15%;
    padding-right: 15%;
  }
}
@media screen and (max-width: 1024px) {
  .e-main__wrap--content {
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media screen and (max-width: 580px) {
  .e-main__wrap--content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.e-main__wrap--content_ttl {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 30px;
  text-align: center;
  color: #111;
  padding-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .e-main__wrap--content_ttl {
    font-size: 25px;
  }
}
@media screen and (max-width: 580px) {
  .e-main__wrap--content_ttl {
    font-size: 20px;
  }
}
.e-main__wrap--content_top {
  width: 100%;
}
.e-main__wrap--content_top ._top--main {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.e-main__wrap--content_top ._top--main img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.e-main__wrap--content_top ._top--ttl {
  width: 90%;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #000;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .e-main__wrap--content_top ._top--ttl {
    padding-top: 50px;
  }
}
.e-main__wrap--content_mid {
  width: 100%;
  padding-top: 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  text-align: left;
  color: #000;
  white-space: pre-wrap;
  word-break: break-all;
}

.d-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.d-main__wrap {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .d-main__wrap {
    padding-bottom: 100px;
  }
}
.d-main__wrap--head {
  width: 100%;
  height: 200px;
  background-color: #DFF2F4;
  padding-left: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .d-main__wrap--head {
    height: 100px;
    padding-left: 20rem;
  }
}
.d-main__wrap--head p {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  text-align: left;
  color: #000;
}
.d-main__wrap--head h1 {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 43px;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 768px) {
  .d-main__wrap--head h1 {
    font-size: 30px;
  }
}
.d-main__wrap--content {
  width: 100%;
  padding-left: 20%;
  padding-right: 20%;
  padding-top: 150rem;
}
@media screen and (max-width: 1440px) {
  .d-main__wrap--content {
    padding-left: 15%;
    padding-right: 15%;
  }
}
@media screen and (max-width: 1024px) {
  .d-main__wrap--content {
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media screen and (max-width: 580px) {
  .d-main__wrap--content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.d-main__wrap--content_ttl {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 30px;
  text-align: center;
  color: #111;
  padding-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .d-main__wrap--content_ttl {
    font-size: 25px;
  }
}
@media screen and (max-width: 580px) {
  .d-main__wrap--content_ttl {
    font-size: 20px;
  }
}
.d-main__wrap--content_top {
  width: 100%;
  padding-bottom: 50px;
}
.d-main__wrap--content_top ._top--main {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.d-main__wrap--content_top ._top--main img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.d-main__wrap--content_top ._top--ttl {
  width: 90%;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #000;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .d-main__wrap--content_top ._top--ttl {
    padding-top: 50px;
  }
}
.d-main__wrap--content_mid {
  width: 100%;
  padding-top: 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  text-align: left;
  color: #000;
  padding-bottom: 30px;
  white-space: pre-wrap;
  word-break: break-all;
}
.d-main__wrap--content_mid__ttl {
  border-top: 1px solid #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 31px;
  text-align: left;
  color: #1b1464;
  padding-bottom: 10px;
  padding-top: 10px;
  white-space: pre-wrap;
  word-break: break-all;
}
@media screen and (max-width: 1440px) {
  .d-main__wrap--content_mid__ttl {
    font-size: 25px;
  }
}

.j-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
}
.j-main .j-fv {
  width: 100%;
  position: relative;
}
.j-main .j-fv__figure {
  width: 100%;
}
.j-main .j-fv__figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.j-main .j-fv__wrap {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .j-main .j-fv__wrap {
    top: 35%;
    gap: 10px;
  }
}
.j-main .j-fv__wrap--ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 43px;
  color: #fff;
}
.j-main .j-fv__wrap--subttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .j-main .j-fv__wrap--subttl {
    display: none;
  }
}
.j-main .j-fv__wrap--subttl_sm {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 580px) {
  .j-main .j-fv__wrap--subttl_sm {
    font-size: 14px;
    line-height: 1.5;
  }
}
.j-main .j-guide {
  width: 100%;
  padding-top: 50rem;
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 50rem;
}
@media screen and (max-width: 1440px) {
  .j-main .j-guide {
    padding-left: 8%;
    padding-right: 8%;
  }
}
.j-main .j-guide__wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.j-main .j-guide__wrap--ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 43px;
  color: #111;
}
@media screen and (max-width: 580px) {
  .j-main .j-guide__wrap--ttl {
    font-size: 25px;
  }
}
.j-main .j-guide__wrap--items {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 50px;
}
@media screen and (max-width: 1024px) {
  .j-main .j-guide__wrap--items {
    flex-direction: column;
    gap: 20px;
  }
}
.j-main .j-guide__wrap .j-guide__wrap--item {
  width: 28%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .j-main .j-guide__wrap .j-guide__wrap--item {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    border: 1px solid #707070;
    border-radius: 10px;
    padding: 10px;
  }
}
.j-main .j-guide__wrap .j-guide__wrap--item .--item__img {
  width: 100%;
  border-radius: 20%;
}
@media screen and (max-width: 1024px) {
  .j-main .j-guide__wrap .j-guide__wrap--item .--item__img {
    width: 50%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.j-main .j-guide__wrap .j-guide__wrap--item .--item__img img {
  width: 100%;
  max-width: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .j-main .j-guide__wrap .j-guide__wrap--item .--item__ttl__wrapper {
    width: 50%;
  }
}
.j-main .j-guide__wrap .j-guide__wrap--item .--item__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 20px;
  text-align: center;
  color: #111;
}
@media screen and (max-width: 1024px) {
  .j-main .j-guide__wrap .j-guide__wrap--item .--item__ttl {
    font-size: 25px;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .j-main .j-guide__wrap .j-guide__wrap--item .--item__arrow__wrapper {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .j-main .j-guide__wrap .j-guide__wrap--item .--item__arrow {
    display: none;
  }
}
.j-main .j-prepare {
  width: 100%;
  padding-top: 50rem;
  padding-bottom: 50rem;
  padding-left: 10%;
  padding-right: 10%;
}
@media screen and (max-width: 1440px) {
  .j-main .j-prepare {
    padding-left: 8%;
    padding-right: 8%;
  }
}
.j-main .j-prepare__wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.j-main .j-prepare__wrap--ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 43px;
  color: #111;
}
@media screen and (max-width: 768px) {
  .j-main .j-prepare__wrap--ttl {
    font-size: 35px;
  }
}
@media screen and (max-width: 580px) {
  .j-main .j-prepare__wrap--ttl {
    font-size: 25px;
  }
}
.j-main .j-prepare__wrap--subttl {
  padding-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  text-align: center;
  color: #111;
  white-space: pre-wrap;
  word-break: break-all;
}
@media screen and (max-width: 580px) {
  .j-main .j-prepare__wrap--subttl {
    font-size: 14px;
  }
}
.j-main .j-prepare__wrap--items {
  width: 100%;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .j-main .j-prepare__wrap--items {
    padding-top: 50px;
  }
}
.j-main .j-prepare__wrap--item {
  width: 100%;
  padding-right: 50rem;
  padding-left: 50rem;
  padding-top: 20px;
  padding-bottom: 20rem;
  background-color: #DFF2F4;
  border: 1px solid #eeeeee;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .j-main .j-prepare__wrap--item {
    padding: 20rem;
    padding-top: 0rem;
    flex-direction: column-reverse;
    gap: 30px;
  }
}
.j-main .j-prepare__wrap--item_content {
  width: 50%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: left;
  max-width: 700px;
}
@media screen and (max-width: 768px) {
  .j-main .j-prepare__wrap--item_content {
    width: 100%;
    max-width: 770px;
  }
}
.j-main .j-prepare__wrap--item_content h1 {
  font-family: "BookAntiqua";
  font-weight: normal;
  font-size: 48px;
  text-align: left;
  color: #111;
}
@media screen and (max-width: 768px) {
  .j-main .j-prepare__wrap--item_content h1 {
    font-size: 25px;
  }
}
.j-main .j-prepare__wrap--item_content h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 30px;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 768px) {
  .j-main .j-prepare__wrap--item_content h2 {
    font-size: 25px;
  }
}
.j-main .j-prepare__wrap--item_content p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  text-align: left;
  color: #000;
}
.j-main .j-prepare__wrap--item_content .j-prepare__link {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 20px;
  display: flex;
  align-items: left;
  cursor: pointer;
}
.j-main .j-prepare__wrap--item_content .j-prepare__link a {
  width: 200px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D38A33;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 12px;
  line-height: 24px;
  color: #fff;
  transition: all ease-out 0.5s;
}
.j-main .j-prepare__wrap--item_content .j-prepare__link a:hover {
  background-color: #fff;
  color: #D38A33;
}
@media screen and (max-width: 768px) {
  .j-main .j-prepare__wrap--item_content .j-prepare__link {
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
.j-main .j-prepare__wrap--item_img {
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 500px;
}
.j-main .j-prepare__wrap--item_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .j-main .j-prepare__wrap--item_img img {
    border-radius: 15px;
  }
}
@media screen and (max-width: 768px) {
  .j-main .j-prepare__wrap--item_img {
    max-width: 770px;
    width: 100%;
    padding-top: 20px;
  }
}

.w-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 150px;
}
@media screen and (max-width: 768px) {
  .w-main {
    gap: 90px;
  }
}
.w-main .w-fv {
  width: 100%;
  padding-top: 80px;
}
.w-main .w-fv__img {
  width: 100%;
  position: relative;
}
.w-main .w-fv__img img {
  width: 100%;
  min-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.w-main .w-fv__content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.w-main .w-fv__content--ttl {
  font-size: 43px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .w-main .w-fv__content--ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 580px) {
  .w-main .w-fv__content--ttl {
    max-width: 200px;
  }
}
.w-main .w-fv__content--subttl {
  font-size: 15px;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  max-width: 730px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .w-main .w-fv__content--subttl {
    max-width: 400px;
  }
}
@media screen and (max-width: 580px) {
  .w-main .w-fv__content--subttl {
    max-width: 300px;
  }
}
.w-main .w-candidate {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #707070;
  background-image: url("../../img/Correction/candidate_bg.png");
  background-position: right top;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 90px;
  padding-bottom: 100px;
}
.w-main .w-candidate__ttl {
  width: 100%;
  background-color: #1B1464;
  text-align: center;
  padding: 40px;
  font-size: 43px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #fff;
}
.w-main .w-candidate__ttl.sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .w-main .w-candidate__ttl.sm {
    display: block;
    font-size: 30px;
  }
}
@media screen and (max-width: 580px) {
  .w-main .w-candidate__ttl.sm {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .w-main .w-candidate__ttl {
    display: none;
  }
}
.w-main .w-candidate__content {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}
.w-main .w-candidate__content--subttl {
  text-align: center;
  font-size: 16px;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  padding-bottom: 5px;
  padding-top: 20px;
}
.w-main .w-candidate__content--ttl {
  width: 100%;
  text-decoration: underline;
  padding: 0 10px;
  font-size: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000;
  text-align: center;
}
.w-main .w-resume {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.w-main .w-resume__ttl {
  width: 100%;
  background-color: #1B1464;
  text-align: center;
  padding: 40px;
  font-size: 43px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #fff;
}
.w-main .w-resume__ttl.sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .w-main .w-resume__ttl.sm {
    display: block;
    font-size: 30px;
  }
}
@media screen and (max-width: 580px) {
  .w-main .w-resume__ttl.sm {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .w-main .w-resume__ttl {
    display: none;
  }
}
.w-main .w-resume__container {
  width: 100%;
  max-width: 1000px;
  padding: 70px 20px 0 20px;
}
.w-main .w-resume__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.w-main .w-resume__item {
  padding: 50px 30px;
  border: 1px solid #707070;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .w-main .w-resume__item {
    flex-direction: column;
    gap: 20px;
  }
}
.w-main .w-resume__item .__item-img {
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .w-main .w-resume__item .__item-img {
    padding: 0;
  }
}
.w-main .w-resume__item .__item-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.w-main .w-resume__item .__item-content {
  width: calc(100% - 250px);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .w-main .w-resume__item .__item-content {
    width: 100%;
  }
}
.w-main .w-resume__item .__item-content_ttl {
  font-size: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-align: left;
  color: #1B1464;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .w-main .w-resume__item .__item-content_ttl {
    font-size: 20px;
  }
}
.w-main .w-resume__item .__item-content_subttl {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  text-align: left;
  color: #000000;
}
.w-main .w-feature {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.w-main .w-feature__ttl {
  width: 100%;
  background-color: #1B1464;
  text-align: center;
  padding: 40px;
  font-size: 43px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #fff;
}
.w-main .w-feature__ttl.sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .w-main .w-feature__ttl.sm {
    display: block;
    font-size: 30px;
  }
}
@media screen and (max-width: 580px) {
  .w-main .w-feature__ttl.sm {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .w-main .w-feature__ttl {
    display: none;
  }
}
.w-main .w-feature__container {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 70px 20px;
}
.w-main .w-feature__items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 25px;
       column-gap: 25px;
}
@media screen and (max-width: 768px) {
  .w-main .w-feature__items {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }
}
.w-main .w-feature__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 20px;
  border: 1px solid #555555;
  border-radius: 5px;
}
.w-main .w-feature__item .__item-img {
  width: 100%;
}
.w-main .w-feature__item .__item-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.w-main .w-feature__item .__item-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.w-main .w-feature__item .__item-content_ttl {
  font-size: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-align: left;
  color: #1B1464;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .w-main .w-feature__item .__item-content_ttl {
    font-size: 20px;
  }
}
.w-main .w-feature__item .__item-content_subttl {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  text-align: left;
  color: #000000;
}
.w-main .w-feature__secttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.5;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 768px) {
  .w-main .w-feature__secttl {
    font-size: 20px;
  }
}
.w-main .w-feature__secsubttl {
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #1b1464;
  border-radius: 5px;
}
.w-main .w-feature__secsubttl .__secsubttl-ttl {
  font-size: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #1b1464;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .w-main .w-feature__secsubttl .__secsubttl-ttl {
    font-size: 20px;
  }
}
.w-main .w-feature__secsubttl .__secsubttl-subttl {
  font-size: 25px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 768px) {
  .w-main .w-feature__secsubttl .__secsubttl-subttl {
    font-size: 16px;
  }
}
.w-main .w-feature__section {
  width: 100%;
  background-color: #DFF2F4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}
.w-main .w-feature__section .section-ttl {
  padding-bottom: 60px;
  font-size: 40px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
}
@media screen and (max-width: 768px) {
  .w-main .w-feature__section .section-ttl {
    font-size: 30px;
  }
}
.w-main .w-feature__section .section-items {
  position: relative;
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  border: 2px solid #1b1464;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .w-main .w-feature__section .section-items {
    padding: 0;
  }
}
.w-main .w-feature__section .section-items::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 98%;
  height: 108%;
  background-color: #DFF2F4;
}
.w-main .w-feature__section .section-item {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(#3984b6 0%, #3a749a 24.08%, #3c5565 75.1%, #3d4951 100%);
  z-index: 10;
}
@media screen and (max-width: 580px) {
  .w-main .w-feature__section .section-item {
    width: 90px;
    height: 90px;
  }
}
.w-main .w-feature__section .section-item_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .w-main .w-feature__section .section-item_ttl {
    font-size: 12px;
  }
}
.w-main .w-feature__section .section-subttl {
  width: 100%;
  max-width: 1000px;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  color: #000;
  line-height: 1.5;
  text-align: left;
  padding-top: 20px;
}
.w-main .w-customvoice {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.w-main .w-customvoice__ttl {
  width: 100%;
  background-color: #1B1464;
  text-align: center;
  padding: 40px;
  font-size: 43px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #fff;
}
.w-main .w-customvoice__ttl.sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .w-main .w-customvoice__ttl.sm {
    display: block;
    font-size: 30px;
  }
}
@media screen and (max-width: 580px) {
  .w-main .w-customvoice__ttl.sm {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .w-main .w-customvoice__ttl {
    display: none;
  }
}
.w-main .w-customvoice__container {
  width: 100%;
  max-width: 1000px;
  position: relative;
}
.w-main .w-customvoice__container .workhistory-swiper {
  width: 100%;
  padding: 50px 20px;
  overflow: hidden;
}
.w-main .w-contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.w-main .w-contact__ttl {
  width: 100%;
  background-color: #1B1464;
  text-align: center;
  padding: 40px;
  font-size: 43px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #fff;
}
.w-main .w-contact__ttl.sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .w-main .w-contact__ttl.sm {
    display: block;
    font-size: 30px;
  }
}
@media screen and (max-width: 580px) {
  .w-main .w-contact__ttl.sm {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .w-main .w-contact__ttl {
    display: none;
  }
}
.w-main .w-contact__subttl {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
  color: #000;
  max-width: 600px;
  padding: 60px 20px;
}
.w-main .w-contact__img {
  width: 100%;
  position: relative;
}
.w-main .w-contact__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 300px;
}
.w-main .w-contact__img .__contact-content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.w-main .w-contact__img .__contact-content_ttl {
  font-size: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .w-main .w-contact__img .__contact-content_ttl {
    font-size: 20px;
    max-width: 300px;
  }
}
.w-main .w-contact__img .__contact-content_link {
  width: 100%;
  max-width: 300px;
  background-color: #D38A33;
  border-radius: 25px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  position: relative;
  padding: 20px;
}
.w-main .w-contact__img .__contact-content_link::after {
  content: url("../../img/Correction/contact_arrow.svg");
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}/*# sourceMappingURL=style.css.map */

.j-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.j-job-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top:60px;
}

.j-job-entry {

  background-color: #fff;
  padding: 20px;
  border: 1px solid  #fff;
  border-radius: 5px;
}

.j-job-field {
  display: grid;
  grid-template-columns: 200px 1fr;
  font-size: 16rem;
  padding: 10px;
  border: 1px solid #050505;
}

.j-job-field:last-child {
  border-bottom: none;
}

.j-field-title {
  font-weight: bold;
}

.j-field-value {
  padding-left: 10px;
}