@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&family=Roboto:wght@500;700&display=swap');
/* ------------------------------ CSS Document ------------------------------ */
*{
  font-family:'Hiragino Kaku Gothic ProN','Hiragino Sans','Meiryo',sans-serif;
  color: #3A414D;
}
body{
  position: relative;
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
  margin: 0;
  counter-reset: col-number 0;
  min-height: 100vh;
  position: relative;
  padding-bottom: 70px;
  box-sizing: border-box;
}
@media print, screen and (max-width: 767px) {
  body {
    padding-bottom: 120px; /* ←フッターの高さを指定 */
  }
}
ul,ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  transition: 0.3s all ease;
}
a:hover {
  opacity: 0.7;
}
p,h1,h2,h3,h4,h5,h6 {
  font-size: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
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: none;
}
input[type="checkbox"],
input[type="radio"] {
  margin: 0;
}
input[type="submit"],
input[type="button"],
button,
select {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
input::-webkit-calendar-picker-indicator {
  display: none;
  opacity:0;
}

/* ------------------------------ header ------------------------------ */
header{
  background-color: #fff;
  border-bottom: 1px solid #E7EEEC;
}
.header-area{
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
  padding: 20px 20px 20px;
  box-sizing: border-box;
}
.header-logo{
  margin-bottom: 20px;
}
.header-logo img{
  width: 105px;
}
.header-inner{
  display: flex;
  justify-content: space-between;
  align-items :center;
}
.header-menu a{
  font-size: 14px;
}
.header-menu a:hover{
  text-decoration: underline;
}
.header-menu ul{
  margin: 0;
  padding: 0;
  display: flex;
}
.header-menu li{
  padding: 0 20px;
  border-right: solid 1px #3A414D;
  list-style: none;
  font-size: 14px;
}
.header-menu li:last-child{
  padding-right: 0;
  border-right: none;
}
.header_icon{
  position: relative;
  padding-right: 15px;
}
.header_icon::after{
  content: '';
  display: inline-block;
  background-image: url(../img/share/icon_link_black.svg);
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
@media print, screen and (max-width: 767px) {
  .header-menu{
    display: none;
  }
  .header-area{
    width: 100%;
    margin: 0 auto;
    padding: 15px;
  }
}


/* ------------------------------ nav ------------------------------ */
.nav_content{
  display: none
}
.nav_list {
  list-style: none;
  box-sizing: border-box;
  margin: 20px;
  padding-top: 20px;
}
.nav_item {
  color: #3A414D;
  text-align: center;
  padding: 10px 0;
  box-sizing: border-box;
}
.nav_item:nth-child(2) {
  color: #10A3FF;
  border-top: solid 1px #3A414D;
}

/* ------------------------------ footer ------------------------------ */
footer{
  background-color: #fff;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.footer-area{
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
  padding: 20px 0;
  box-sizing: border-box;
}
.footer-area p{
  font-size: 12px;
}
.footer-inner{
  display: flex;
  /* justify-content: space-between; */
  align-items :center;
}
.footer-inner__logo_area{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items :center;
}
.footer-logo{
  margin-right: 30px;
}

.footer-logo img{
  width: 105px;
}
.footer__link {
  margin-left: auto;
}
.footer__link__item {
  margin: 0 4px 0 0;
  font-size: 12px;
  color: #808080;
}
.footer__link__item:first-child:after {
  content: "|";
  margin: 0 0 0 4px;
}

@media print, screen and (max-width: 767px) {
  .footer-area{
    width: 100%;
  }
  .footer-inner{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-inner__logo_area{
    display: block;
  }
  .footer-logo{
    text-align: center;
    margin: 0 0 15px;
    display: inline-block;
    vertical-align: middle;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .copy-area{
    display: inline-block;
    font-size: 12px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin: 4px 0;
  }
  .footer__link {
    margin-left: auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-right: auto;
  }
}
.caution {
  color: #1A69C6;
  font-size: 12px;
  text-align: center;
  }

/* ------ component hamburger-menu ------ */
.hamburger-menu__body .g-side {
  display: none;
  animation-duration: .2s;
}
@media print, screen and (max-width: 767px) {
  .hamburger-menu__body .g-side {
    display: block;
  }
  .hamburger-menu {
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    padding: 15px 10px;
    background-color: #BDC2CE;
    position: absolute;
    right: 12px;
    top: 15px;
    z-index: 1000;
  }

  .hamburger-menu__body {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    background-color: rgba(58, 65, 77, 0.50);
  }

  .hamburger-menu__line {
    display: inline-block;
    width: 28px;
    height: 2px;
    background-color: #fff;
    transition: all .4s;
  }

  .hamburger-menu--opened {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: initial;
  }

  .hamburger-menu--opened .hamburger-menu__line {
    position: absolute;
    background-color: #000;
  }

  .hamburger-menu--opened .hamburger-menu__line:nth-child(1) {
    transform: rotate(45deg);
  }

  .hamburger-menu--opened .hamburger-menu__line:nth-child(2) {
    display: none;
  }

  .hamburger-menu--opened .hamburger-menu__line:nth-child(3) {
    transform: rotate(-45deg);
  }

  .hamburger-menu__body .g-side {
    width: 285px;
    height: 100%;
    max-height: unset;
    margin-left: auto;
    border-radius: 0;
    right: 0;
  }

  .hamburger-menu__body .g-side::before {
    background-color: #fff;
    mix-blend-mode: normal;
    backdrop-filter: blur(5px);
  }

  .hamburger-menu__body .g-side__menu-item img {
    margin-right: 10px;
  }

  .hamburger-menu__body .g-side__menu-item {
    margin-right: 15px;
    margin-bottom: 18px;
    padding: 14px 0 14px 30px;
  }

  .hamburger-menu__body .g-side__menu-item--current {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .hamburger-menu__body--close {
    display: none;
  }
}

.overflow-hidden {
  overflow: hidden;
}

/* animation */
.fadein {
  animation-name: fadeInAnime;
  animation-duration: .6s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  opacity:0;
}
.fadein--right-to-left {
  animation-name: fadeInAnime--right-to-left;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes fadeInAnime--right-to-left {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

/* ------ sidebar ------ */
.g-side__wrapper {
  width: 240px;
}
.g-side {
  overflow: hidden;
  width: 240px;
  height: 650px;
  border-radius: 20px;
  padding-top: 40px;
  background-color: var(--off-white);
}
.g-side::before {
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  mix-blend-mode: multiply;
  z-index: -1;
}
.g-side--left {
  margin-right: 45px;
}
.g-side__title {
  margin-bottom: 50px;
}
.g-side__title img {
  margin-bottom: 8px;
}
.g-side__menu-item {
  font-weight: 600;
  opacity: .6;
  margin-right: 10px;
  margin-bottom: 8px;
  transition: background-color .2s;
  transition: opacity .2s;
}
.g-side__menu-item:last-of-type {
  margin-bottom: 0;
}
.g-side__menu-item:not(.g-side__menu-item--current):hover {
  opacity: 1;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: rgba(255, 255, 255, 0.2);
}
.g-side__menu-item--current {
  opacity: 1;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #fff;
}
.g-side__menu-item img {
  margin-right: 12px;
}
.g-side__menu-item a {
  display: flex;
  align-items: center;
  padding: 10px 0 10px 20px;
}

/* ------ nav_item ------ */
.nav_items {
  text-align: center;
  padding: 10px 0;
  box-sizing: border-box;
}
.nav_items a{
  font-size: 16px;
}
.nav_items_link a{
  font-size: 16px;
  margin-left: 20px;
}
.nav_items a:hover{
  text-decoration: underline;
}
.nav_items_link{
  border-top: solid 1px #BDC2CE;
  line-height:4rem;
}
.nav_items_link:last-child{
  border-bottom: solid 1px #BDC2CE;
  line-height:4rem;
}
.nav_items_img{
  position: absolute;
  right: 20px;
  transform: translate(10px, 20px);
  width: 10px;
}
.nav_list{
  position: relative;
}

/* ------ main_contents ------ */
.ai-theme-chatroom {
  background-color: #FFFDDF;
  background-image: url("../../_share/img/bg_chatroom_deco01.svg");
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: auto;
}

.ai-interview {
  background-color: #F5FBE5;
  background-image: url("../../_share/img/bg_ai-interview_deco01.svg");
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: auto;
}

.ai-exploration {
  background-color: #E8FFF9;
  background-image: url("../../_share/img/bg_ai-exploration_deco01.svg");
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: auto;
}
.main_contents {
  width: 100%;
  position: relative;
}
.ai-theme-chatroom .main_contents {
  background-image: url("../../_share/img/bg_chatroom_deco02.svg");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: auto;
}
.ai-interview .main_contents {
  background-image: url("../../_share/img/bg_ai-interview_deco02.svg");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: auto;
}
.ai-exploration .main_contents {
  background-image: url("../../_share/img/bg_exploration_deco02.svg");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: auto;
}
.main_wrap {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 20px 75px;
  box-sizing: border-box;
}
.main_wrap--subordinate {
  padding: 38px 20px 75px;
}
@media print, screen and (max-width: 767px) {
  .ai-theme-chatroom {
    background-position: left bottom 29.333vw;
    background-size: 96vw auto;
  }
  .main_contents {
    width: 100%;
    position: relative;
  }
  .ai-theme-chatroom .main_contents {
    background-image: url("../../_share/img/bg_chatroom_deco02.svg");
    background-position: right top;
    background-repeat: no-repeat;
    background-size: 64vw auto;
  }
  .ai-interview .main_contents {
    background-image: url("../../_share/img/bg_ai-interview_deco02.svg");
    background-position: right top;
    background-repeat: no-repeat;
    background-size: 64vw auto;
  }
  .ai-exploration .main_contents {
    background-image: url("../../_share/img/bg_ai-exploration_deco02.svg");
    background-position: right top;
    background-repeat: no-repeat;
    background-size: 64vw auto;
  }
  .main_wrap {
    padding: 8vw 4vw 13.333vw;
  }
  .main_wrap--subordinate {
    padding: 8vw 4vw 5.333vw;
  }
}

/* ------ g-btn ------ */
.g-btn{
  color: #FFFFFF;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  border-radius: 28px;
  max-width: 312px;
  width: 100%;
  min-height: 56px;
  position: relative;
}
.g-btn a{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.g-btn-next::after{
  content: "";
  background-image: url("../img/icon_arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  aspect-ratio: 1/1;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.ai-theme-chatroom .g-btn{
  background: linear-gradient(to right, #F6AA15, #FFBBAE);
  background: -webkit-linear-gradient(left, #F6AA15, #FFBBAE);
  background: -moz-linear-gradient(left, #F6AA15, #FFBBAE);
}
.ai-theme-chatroom .g-btn::before{
  content: "";
  background: linear-gradient(to right, #D56700, #FFAB66);
  background: -webkit-linear-gradient(left, #D56700, #FFAB66);
  background: -moz-linear-gradient(left, #D56700, #FFAB66);
  transition: opacity 0.5s;
  border-radius: 28px;
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
}
.ai-theme-chatroom .g-btn:hover::before{
  opacity: 1;
}
.ai-theme-chatroom .g-btn:active{
  background: linear-gradient(to right, #D56700, #FFAB66);
  background: -webkit-linear-gradient(left, #D56700, #FFAB66);
  background: -moz-linear-gradient(left, #D56700, #FFAB66);
}
.ai-interview .g-btn{
  background: linear-gradient(to right,#00B289, #30E9CA );
  background: -webkit-linear-gradient(left,#00B289, #30E9CA);
  background: -moz-linear-gradient(left, #00B289, #30E9CA);
}
.ai-interview .g-btn::before{
  content: "";
  background: linear-gradient(to right, #00B289, #30E9CA);
  background: -webkit-linear-gradient(left, #00B289, #30E9CA);
  background: -moz-linear-gradient(left, #00B289, #30E9CA);
  transition: opacity 0.5s;
  border-radius: 28px;
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
}
.ai-interview .g-btn:active{
  background: linear-gradient(to right,#00795C, #0CC0A2);
  background: -webkit-linear-gradient(left,#00795C, #0CC0A2);
  background: -moz-linear-gradient(left, #00795C, #0CC0A2);
}

.ai-exploration .g-btn{
  background: linear-gradient(to right,#11A5E4, #8BFFF4);
  background: -webkit-linear-gradient(left,#11A5E4, #8BFFF4);
  background: -moz-linear-gradient(left, #11A5E4, #8BFFF4);
}
.ai-exploration .g-btn::before{
  content: "";
  background: linear-gradient(to right, #11A5E4, #8BFFF4);
  background: -webkit-linear-gradient(left, #11A5E4, #8BFFF4);
  background: -moz-linear-gradient(left, #11A5E4, #8BFFF4);
  transition: opacity 0.5s;
  border-radius: 28px;
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
}

.ai-exploration .g-btn:active{
  background: linear-gradient(to right,#1083B5, #7DEBE0);
  background: -webkit-linear-gradient(left,#1083B5, #7DEBE0);
  background: -moz-linear-gradient(left, #1083B5, #7DEBE0);
}
.ai-exploration .g-contents_area-top_button_item a:active {
  background: linear-gradient(to right,#1083B5, #7DEBE0);
  background: -webkit-linear-gradient(left,#1083B5, #7DEBE0);
  background: -moz-linear-gradient(left, #1083B5, #7DEBE0);
}

@media print, screen and (max-width: 767px) {
  .g-btn{
    font-size: 4.8vw;
    border-radius: 7.467vw;
    max-width: 83.2vw;
    width: 100%;
    min-height: 14.933vw;
  }
  .g-btn-next::after{
    width: 3.2vw;
    aspect-ratio: 1/1;
    position: absolute;
    right: 6.4vw;
    top: 50%;
    transform: translateY(-50%);
  }
}


/* ------ g-top ------ */
.g-top {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #2C2C2C;
  padding-left: 16px;
  margin-bottom: 13px;
  position: relative;
}
.g-top::before {
  content: "";
  background-image: url("../img/icon_arrow_back.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media print, screen and (max-width: 767px) {
  .g-top {
    display: inline-flex;
    align-items: center;
    min-height: 6.133vw;
    font-size: 3.2vw;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #2C2C2C;
    padding-left: 4.267vw;
    margin-bottom: 5.333vw;
    position: relative;
  }
  .g-top::before {
    content: "";
    background-image: url("../img/icon_arrow_back.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 3.733vw;
    aspect-ratio: 1/1;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* ------ g-title-area ------ */
.g-title-area{
  margin-bottom: 50px;
}
.g-title-area__title_guide{
  font-size: 14px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 1.37;
  margin-bottom: 12px;
}
.ai-theme-chatroom .g-title-area__title_guide{
  color: #FFB92F;
}
.ai-interview .g-title-area__title_guide{
  color: #25C3B2;
}
.ai-exploration .g-title-area__title_guide{
  color: #60B8EF;
}
.g-title-area__title_main{
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  color: #3A414D;
  letter-spacing: 0.05em;
}
@media print, screen and (max-width: 767px) {
  .g-title-area{
    margin-left: 4vw;
    margin-bottom: 8vw;
  }
  .g-title-area__title_guide{
    font-size: 2.933vw;
    margin-bottom: 1.6vw;
  }
  .g-title-area__title_main{
    font-size: 5.333vw;
  }
}
/* ------ g-contents_area-col1_white ------ */

.g-contents_area-col1_white {
  display: grid;
  row-gap: 40px;
  max-width: 912px;
  width: 100%;
  padding: 60px 48px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 24px;
  box-sizing: border-box;
  box-shadow: 0 16px 40px rgba(49, 50, 51, 0.12);
}
.g-contents_area-top_flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-contents_area-top_button_list {
  max-width: 396px;
  width: 100%;
  display: grid;
  align-items: flex-start;
  row-gap: 10px;
}
.g-contents_area-top_button_item a {
  display: flex;
  align-items: center;
  width: calc( 100% - 40px );
  min-height: 130px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.05em;
  padding: 0 20px;
  border-radius: 12px;
  position: relative;
}
.g-contents_area-top_button_item a::before {
  content: "";
  background-image: url("../img/icon_arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  aspect-ratio: 1/1;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.ai-theme-chatroom .g-contents_area-top_button_item a {
  background: linear-gradient(to right, #F6AA15, #FFBBAE);
  background: -webkit-linear-gradient(left, #F6AA15, #FFBBAE);
  background: -moz-linear-gradient(left, #F6AA15, #FFBBAE);
}
.ai-theme-chatroom .g-contents_area-top_button_item a::after {
  content: "";
  background: linear-gradient(to right, #D56700, #FFAB66);
  background: -webkit-linear-gradient(left, #D56700, #FFAB66);
  background: -moz-linear-gradient(left, #D56700, #FFAB66);
  transition: opacity 0.5s;
  border-radius: 12px;
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
}
.ai-interview .g-contents_area-top_button_item a {
  background: linear-gradient(to right,#00B289, #30E9CA );
  background: -webkit-linear-gradient(left,#00B289, #30E9CA);
  background: -moz-linear-gradient(left, #00B289, #30E9CA);
}
.ai-interview .g-contents_area-top_button_item a::after {
  content: "";
  background: linear-gradient(to right,#00B289, #30E9CA );
  background: -webkit-linear-gradient(left,#00B289, #30E9CA);
  background: -moz-linear-gradient(left, #00B289, #30E9CA);
  transition: opacity 0.5s;
  border-radius: 12px;
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
}
.ai-exploration .g-contents_area-top_button_item a {
  background: linear-gradient(to right, #11A5E4, #8BFFF4);
  background: -webkit-linear-gradient(left, #11A5E4, #8BFFF4);
  background: -moz-linear-gradient(left, #11A5E4, #8BFFF4);
}
.ai-exploration .g-contents_area-top_button_item a::after {
  content: "";
  background: linear-gradient(to right, #11A5E4, #8BFFF4);
  background: -webkit-linear-gradient(left, #11A5E4, #8BFFF4);
  background: -moz-linear-gradient(left, #11A5E4, #8BFFF4);
  transition: opacity 0.5s;
  border-radius: 12px;
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
}
.ai-theme-chatroom .g-contents_area-top_button_item a:hover::after {
  opacity: 1;
}
.ai-interview .g-contents_area-top_button_item a:hover::after {
  opacity: 1;
}
.ai-exploration .g-contents_area-top_button_item a:hover::after {
  opacity: 1;
}

@media print, screen and (max-width: 767px) {
  .g-contents_area-col1_white  {
    display: grid;
    row-gap: 6.667vw;
    width: 100%;
    padding: 5.333vw 8vw 6.933vw;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 6.4vw;
    box-sizing: border-box;
    box-shadow: 0 4.267vw 10.667vw rgba(49, 50, 51, 0.12);
  }
  .g-contents_area-top_flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .g-contents_area-top_button_list {
    width: 100%;
    display: grid;
    row-gap: 2.667vw;
  }
  .g-contents_area-top_button_item a {
    width: calc( 100% - 10.667vw );
    min-height: 26.667vw;
    font-size: 4.267vw;
    padding: 0 5.333vw;
    border-radius: 3.2vw;
  }
  .g-contents_area-top_button_item a::before {
    width: 4.8vw;
    aspect-ratio: 1/1;
    position: absolute;
    right: 5.333vw;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* ------ g-contents_area-col1_white ------ */
.g-contents_area-attempt {
  display: grid;
  row-gap: 10px;
}
.g-contents_area-attempt_title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.g-contents_area-attempt_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 10px;
}
.g-contents_area-attempt_item {
  max-width: 314px;
  width: 100%;
}
.g-contents_area-attempt_item a {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 48px;
  font-size: 18px;
  font-weight: 600;
  color: #3A414D;
  letter-spacing: 0.05em;
  padding: 0 30px;
  border: 1px solid #3A414D;
  border-radius: 28px;
  box-sizing: border-box;
  position: relative;
}
.g-contents_area-attempt_item a::before {
  content: "";
  background-image: url("../img/icon_arrow_attempt.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 6.29px;
  height: 10px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media print, screen and (max-width: 767px) {
  .g-contents_area-attempt {
    display: grid;
    row-gap: 2.667vw;
  }
  .g-contents_area-attempt_title {
    font-size: 4.267vw;
  }
  .g-contents_area-attempt_list {
    display: grid;
    row-gap: 1.333vw;
  }
  .g-contents_area-attempt_item {
    width: 100%;
  }
  .g-contents_area-attempt_item a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 12.8vw;
    font-size: 4.267vw;
    line-height: 1.2;
    font-weight: 600;
    color: #3A414D;
    letter-spacing: 0.05em;
    padding: 0 8vw;
    border: 1px solid #3A414D;
    border-radius: 7.467vw;
    box-sizing: border-box;
    position: relative;
  }
  .g-contents_area-attempt_item a::before {
    content: "";
    background-image: url("../img/icon_arrow_attempt.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 2.613vw;
    height: 2.667vw;
    position: absolute;
    right: 4.667vw;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* ------------------------------ modal ------------------------------ */
.g-modal {
  display: none;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 60px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.g-modal__bg {
  background-color: #000000;
  opacity: 0.4;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.g-modal-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 912px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.g-modal__content {
  width: 100%;
  max-height: 80%;
  padding: 60px 48px;
  border-radius: 24px;
  background-color: #fff;
  position: relative;
  overflow-y: auto;
  box-shadow: 0 16px 40px rgba(49, 50, 51, 0.12);
}
.g-modal__close {
  width: 28px;
  height: 28px;
  position: absolute;
  right: 20px;
  top: 22px;
  cursor: pointer;
}
.g-modal__close-icon {
  display: block;
  width: 100%;
}
.g-modal__body {
  display: grid;
  row-gap: 36px;
}

/* sp */
@media print, screen and (max-width: 767px) {
  .g-modal {
    display: none;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 8vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  .g-modal__bg {
    background-color: #000000;
    opacity: 0.4;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
  }
  .g-modal-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 92vw;
    height: 100%;
  }
  .g-modal__content {
    width: 100%;
    max-height: 80%;
    padding: 10.667vw 4.133vw;
    border-radius: 5.333vw;
    background-color: #fff;
    position: relative;
    overflow: auto;
  }
  .g-modal__close {
    width: 7.467vw;
    height: 7.467vw;
    position: absolute;
    right: 2.667vw;
    top: 2.667vw;
    cursor: pointer;
  }
  .g-modal__close-icon {
    display: block;
  }
  .g-modal__body {
    display: grid;
    row-gap: 5.333vw;
  }
}

/* ------ g-select ------ */
.g-select {
  max-width: 432px;
  width: 100%;
  min-height: 40px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  padding: 11px 26px 11px 18px;
  border-radius: 10px;
  border: 1px solid #E7EEEC;
  position: relative;
  background-image: url("../img/icon_select_arrow.svg");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: right 14px center;
  box-sizing: border-box;
}
.g-select_search {
  max-width: 432px;
  width: 100%;
  min-height: 40px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  padding: 11px 26px 11px 18px;
  border-radius: 10px;
  border: 1px solid #E7EEEC;
  position: relative;
  background-image: url("../img/icon_search.svg");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: right 14px center;
  box-sizing: border-box;
}

.g-select::-webkit-calendar-picker-indicator {
  background-image: url("../img/icon_select_arrow.svg");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: right 14px center;
}
@media print, screen and (max-width: 767px) {
  .g-select {
    width: 100%;
    min-height: 10.667vw;
    font-size: 3.2vw;
    padding: 2.933vw 6.933vw 2.933vw 4.8vw;
    border-radius: 2.667vw;
    border: 1px solid #E7EEEC;
    position: relative;
    background-image: url("../img/icon_select_arrow.svg");
    background-size: 3.2vw 3.2vw;
    background-repeat: no-repeat;
    background-position: right 3.733vw center;
  }
}

/* ------ g-textarea ------ */
.g-textarea {
  max-width: 432px;
  max-height: 1.5em;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  padding: 11px 18px;
  border-radius: 10px;
  border: 1px solid #E7EEEC;
  overflow-y: auto;
}
@media print, screen and (max-width: 767px) {
  .g-textarea {
    width: 65.2vw;
    max-height: 1.5em;
    font-size: 3.2vw;
    font-weight: 300;
    line-height: 1.5;
    padding: 2.933vw 4.8vw;
    border-radius: 2.667vw;
    border: 1px solid #E7EEEC;
    overflow-y: auto;
  }
}

/* ------ g-radio ------ */
.g-radio {
  /* display: flex; */
  column-gap: 15px;
}
.g-radio_content {
  display: flex;
  align-items: center;
  column-gap: 4px;
  min-height: 16px;
  margin-top: 10px;
}
.g-radio_content input {
  width: 16px;
  height: 16px;
  position: relative;
}
.g-radio_content input::before {
  content: '';
  background-image: url("../img/icon_radio.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 0;
}
.g-radio_content input:checked::before {
  background-image: url("../img/icon_radio_checked.svg");
}
@media print, screen and (max-width: 767px) {
  .g-radio {
    /* display: flex; */
    column-gap: 4vw;
  }
  .g-radio_content {
    display: flex;
    align-items: center;
    column-gap: 1.067vw;
    min-height: 4.8vw;
  }
  .g-radio_content input {
    width: 4.267vw;
    height: 4.267vw;
  }
  .g-radio_content input::before {
    width: 3.733vw;
    height: 3.733vw;
  }
}

/* ------ utility ------ */
@media print,screen and (min-width: 768px) {
  .g-sp-only{display: none !important;}
}
@media print, screen and (max-width:767px) {
  .g-pc-only{display: none !important;}
}

.g-fs-32 {
  font-size: 32px;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.g-fs-18 {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.g-fs-16 {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.g-fs-14 {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}
.g-fs-12 {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 300;
}
.g-fw-300 {
  font-weight: 300;
}
.g-fw-600 {
  font-weight: 600;
}
.g-fw-bold {
  font-weight: bold;
}
@media print,screen and (min-width: 768px) {
  .g-ws-nowrap {
    white-space: nowrap;
  }
}
@media print, screen and (max-width: 767px) {
  .g-fs-32 {
    font-size: 8.533vw;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.05em;
  }
  .g-fs-18 {
    font-size: 4.8vw;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.05em;
  }
  .g-fs-16 {
    font-size: 4.267vw;
    font-weight: 300;
    letter-spacing: 0.05em;
  }
  .g-fs-14 {
    font-size: 3.733vw;
    line-height: 1.7;
    font-weight: 300;
  }
  .g-fs-12 {
    font-size: 3.2vw;
    line-height: 1.5;
    font-weight: 300;
  }
  .g-fw-300 {
    font-weight: 300;
  }
  .g-fw-600 {
    font-weight: 600;
  }
}

.g-text--center {
  text-align: center;
}

.g-hover {
  transition: 0.3s all ease;
}
.g-hover:hover {
  opacity: 0.7;
}

.g-mt0 { margin-top: 0px !important;}
.g-mt5 { margin-top : 5px !important; }
.g-mt10 { margin-top : 10px !important; }
.g-mt15 { margin-top : 15px !important; }
.g-mt20 { margin-top : 20px !important; }
.g-mt25 { margin-top : 25px !important; }
.g-mt30 { margin-top : 30px !important; }
.g-mt35 { margin-top : 35px !important; }
.g-mt40 { margin-top : 40px !important; }
.g-mt45 { margin-top : 45px !important; }
.g-mt50 { margin-top : 50px !important; }

.g-mb0 { margin-bottom: 0px !important;}
.g-mb5 { margin-bottom : 5px !important; }
.g-mb10 { margin-bottom : 10px !important; }
.g-mb15 { margin-bottom : 15px !important; }
.g-mb20 { margin-bottom : 20px !important; }
.g-mb25 { margin-bottom : 25px !important; }
.g-mb30 { margin-bottom : 30px !important; }
.g-mb35 { margin-bottom : 35px !important; }
.g-mb40 { margin-bottom : 40px !important; }
.g-mb45 { margin-bottom : 45px !important; }
.g-mb50 { margin-bottom : 50px !important; }

.g-mr0 { margin-right: 0px !important;}
.g-mr5 { margin-right : 5px !important; }
.g-mr10 { margin-right : 10px !important; }
.g-mr15 { margin-right : 15px !important; }
.g-mr20 { margin-right : 20px !important; }
.g-mr25 { margin-right : 25px !important; }
.g-mr30 { margin-right : 30px !important; }
.g-mr35 { margin-right : 35px !important; }
.g-mr40 { margin-right : 40px !important; }
.g-mr45 { margin-right : 45px !important; }
.g-mr50 { margin-right : 50px !important; }

.g-ml0 { margin-left: 0px !important;}
.g-ml5 { margin-left : 5px !important; }
.g-ml10 { margin-left : 10px !important; }
.g-ml15 { margin-left : 15px !important; }
.g-ml20 { margin-left : 20px !important; }
.g-ml25 { margin-left : 25px !important; }
.g-ml30 { margin-left : 30px !important; }
.g-ml35 { margin-left : 35px !important; }
.g-ml40 { margin-left : 40px !important; }
.g-ml45 { margin-left : 45px !important; }
.g-ml50 { margin-left : 50px !important; }
.g-ml145 { margin-left: 145px !important;}

.g-pt0 { padding-top: 0px !important;}
.g-pt5 { padding-top : 5px !important; }
.g-pt10 { padding-top : 10px !important; }
.g-pt15 { padding-top : 15px !important; }
.g-pt20 { padding-top : 20px !important; }
.g-pt25 { padding-top : 25px !important; }
.g-pt30 { padding-top : 30px !important; }
.g-pt35 { padding-top : 35px !important; }
.g-pt40 { padding-top : 40px !important; }
.g-pt45 { padding-top : 45px !important; }
.g-pt50 { padding-top : 50px !important; }

.g-pb0 { padding-bottom: 0px !important;}
.g-pb5 { padding-bottom : 5px !important; }
.g-pb10 { padding-bottom : 10px !important; }
.g-pb15 { padding-bottom : 15px !important; }
.g-pb20 { padding-bottom : 20px !important; }
.g-pb25 { padding-bottom : 25px !important; }
.g-pb30 { padding-bottom : 30px !important; }
.g-pb35 { padding-bottom : 35px !important; }
.g-pb40 { padding-bottom : 40px !important; }
.g-pb45 { padding-bottom : 45px !important; }
.g-pb50 { padding-bottom : 50px !important; }

.g-pr0 { padding-right: 0px !important;}
.g-pr5 { padding-right : 5px !important; }
.g-pr10 { padding-right : 10px !important; }
.g-pr15 { padding-right : 15px !important; }
.g-pr20 { padding-right : 20px !important; }
.g-pr25 { padding-right : 25px !important; }
.g-pr30 { padding-right : 30px !important; }
.g-pr35 { padding-right : 35px !important; }
.g-pr40 { padding-right : 40px !important; }
.g-pr45 { padding-right : 45px !important; }
.g-pr50 { padding-right : 50px !important; }

.g-pl0 { padding-left: 0px !important;}
.g-pl5 { padding-left : 5px !important; }
.g-pl10 { padding-left : 10px !important; }
.g-pl15 { padding-left : 15px !important; }
.g-pl20 { padding-left : 20px !important; }
.g-pl25 { padding-left : 25px !important; }
.g-pl30 { padding-left : 30px !important; }
.g-pl35 { padding-left : 35px !important; }
.g-pl40 { padding-left : 40px !important; }
.g-pl45 { padding-left : 45px !important; }
.g-pl50 { padding-left : 50px !important; }

@media print, screen and (max-width: 767px) {
  .g-mt0-sp { margin-top: 0!important;}
  .g-mt5-sp { margin-top : 1.333vw!important; }
  .g-mt10-sp { margin-top : 2.667vw!important; }
  .g-mt15-sp { margin-top : 4vw!important; }
  .g-mt20-sp { margin-top : 5.333vw!important; }
  .g-mt25-sp { margin-top : 6.667vw!important; }
  .g-mt30-sp { margin-top : 8vw!important; }
  .g-mt35-sp { margin-top : 9.333vw!important; }
  .g-mt40-sp { margin-top : 10.667vw!important; }
  .g-mt45-sp { margin-top : 12vw!important; }
  .g-mt50-sp { margin-top : 13.333vw!important; }
  
  .g-mb0-sp { margin-bottom: 0!important;}
  .g-mb5-sp { margin-bottom : 1.333vw!important; }
  .g-mb10-sp { margin-bottom : 2.667vw!important; }
  .g-mb15-sp { margin-bottom : 4vw!important; }
  .g-mb20-sp { margin-bottom : 5.333vw!important; }
  .g-mb25-sp { margin-bottom : 6.667vw!important; }
  .g-mb30-sp { margin-bottom : 8vw!important; }
  .g-mb35-sp { margin-bottom : 9.333vw!important; }
  .g-mb40-sp { margin-bottom : 10.667vw!important; }
  .g-mb45-sp { margin-bottom : 12vw!important; }
  .g-mb50-sp { margin-bottom : 13.333vw!important; }
  
  .g-mr0-sp { margin-right: 0!important;}
  .g-mr5-sp { margin-right : 1.333vw!important; }
  .g-mr10-sp { margin-right : 2.667vw!important; }
  .g-mr15-sp { margin-right : 4vw!important; }
  .g-mr20-sp { margin-right : 5.333vw!important; }
  .g-mr25-sp { margin-right : 6.667vw!important; }
  .g-mr30-sp { margin-right : 8vw!important; }
  .g-mr35-sp { margin-right : 9.333vw!important; }
  .g-mr40-sp { margin-right : 10.667vw!important; }
  .g-mr45-sp { margin-right : 12vw!important; }
  .g-mr50-sp { margin-right : 13.333vw!important; }
  
  .g-ml0-sp { margin-left: 0!important;}
  .g-ml5-sp { margin-left : 1.333vw!important; }
  .g-ml10-sp { margin-left : 2.667vw!important; }
  .g-ml15-sp { margin-left : 4vw!important; }
  .g-ml20-sp { margin-left : 5.333vw!important; }
  .g-ml25-sp { margin-left : 6.667vw!important; }
  .g-ml30-sp { margin-left : 8vw!important; }
  .g-ml35-sp { margin-left : 9.333vw!important; }
  .g-ml40-sp { margin-left : 10.667vw!important; }
  .g-ml45-sp { margin-left : 12vw!important; }
  .g-ml50-sp { margin-left : 13.333vw!important; }
  
  .g-pt0-sp { padding-top: 0!important;}
  .g-pt5-sp { padding-top : 1.333vw!important; }
  .g-pt10-sp { padding-top : 2.667vw!important; }
  .g-pt15-sp { padding-top : 4vw!important; }
  .g-pt20-sp { padding-top : 5.333vw!important; }
  .g-pt25-sp { padding-top : 6.667vw!important; }
  .g-pt30-sp { padding-top : 8vw!important; }
  .g-pt35-sp { padding-top : 9.333vw!important; }
  .g-pt40-sp { padding-top : 10.667vw!important; }
  .g-pt45-sp { padding-top : 12vw!important; }
  .g-pt50-sp { padding-top : 13.333vw!important; }
  
  .g-pb0-sp { padding-bottom: 0!important;}
  .g-pb5-sp { padding-bottom : 1.333vw!important; }
  .g-pb10-sp { padding-bottom : 2.667vw!important; }
  .g-pb15-sp { padding-bottom : 4vw!important; }
  .g-pb20-sp { padding-bottom : 5.333vw!important; }
  .g-pb25-sp { padding-bottom : 6.667vw!important; }
  .g-pb30-sp { padding-bottom : 8vw!important; }
  .g-pb35-sp { padding-bottom : 9.333vw!important; }
  .g-pb40-sp { padding-bottom : 10.667vw!important; }
  .g-pb45-sp { padding-bottom : 12vw!important; }
  .g-pb50-sp { padding-bottom : 13.333vw!important; }
  
  .g-pr0-sp { padding-right: 0!important;}
  .g-pr5-sp { padding-right : 1.333vw!important; }
  .g-pr10-sp { padding-right : 2.667vw!important; }
  .g-pr15-sp { padding-right : 4vw!important; }
  .g-pr20-sp { padding-right : 5.333vw!important; }
  .g-pr25-sp { padding-right : 6.667vw!important; }
  .g-pr30-sp { padding-right : 8vw!important; }
  .g-pr35-sp { padding-right : 9.333vw!important; }
  .g-pr40-sp { padding-right : 10.667vw!important; }
  .g-pr45-sp { padding-right : 12vw!important; }
  .g-pr50-sp { padding-right : 13.333vw!important; }
  
  .g-pl0-sp { padding-left: 0!important;}
  .g-pl5-sp { padding-left : 1.333vw!important; }
  .g-pl10-sp { padding-left : 2.667vw!important; }
  .g-pl15-sp { padding-left : 4vw!important; }
  .g-pl20-sp { padding-left : 5.333vw!important; }
  .g-pl25-sp { padding-left : 6.667vw!important; }
  .g-pl30-sp { padding-left : 8vw!important; }
  .g-pl35-sp { padding-left : 9.333vw!important; }
  .g-pl40-sp { padding-left : 10.667vw!important; }
  .g-pl45-sp { padding-left : 12vw!important; }
  .g-pl50-sp { padding-left : 13.333vw!important; }
}