@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{
  margin: 0;
  counter-reset: col-number 0; 
}
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;
}
p,h1,h2,h3,h4,h5,h6 {
  font-size: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* ------------------------------ header Cnavi------------------------------ */
header{
  background-color: #fff
}
.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/icon_link_black.svg);
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.school_icon{
  margin-right: 5px;
}
@media print, screen and (max-width: 767px) {
  .header-area{
    width: 100%;
    margin: 0 auto;
    padding: 15px;
  }
}

.nav_content{
  display: none
}

@media print, screen and (max-width: 1080px) {
  .header-menu{
    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;
  }

  .menu-trigger {
    display: inline-block;
    width: 26px;
    height: 22px;
    vertical-align: middle;
    cursor: pointer;
    position: absolute;
    top: 65px;
    right: 20px;
    z-index: 100;
  }

  .menu-trigger.active {
    position: fixed;
  }

  
  .menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #3A414D;
    transition: all .5s;
  }
  .menu-trigger.active span {
    background-color: #3A414D;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  .menu-trigger span:nth-of-type(2) {
    top: 9px;
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
  }

}
/* ------------------------------ footer Cnavi------------------------------ */
footer{
  background-color: #fff;
  /* position: absolute; */
  bottom: 0;
  width: 100%;
}
.footer-area{
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
  padding: 20px 20px;
  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) {
  body {
    padding-bottom: 120px; /* ←フッターの高さを指定 */
    }

  .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;
  }
}
/* ------ component hamburger-menu Cnavi------ */

@media screen and (min-width: 1081px) {
  .hamburger-menu__body .g-side {
    display: none;
  }
}

@media screen and (max-width: 1080px) {
  .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: #3A414D;
  }

  .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;
  }
}

/* ------ 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;
}

.header__back {
  width: 100%;
  /*margin-top: 10px;
  position: fixed;
  top: 120px;*/
}

@media print, screen and (max-width:1080px) {
  .header__back {
    margin-top: 2px;
    margin-bottom: 52px;
    position: initial;
  }
}

.header__back a {
  display: inline-block;
}

.header__back a:hover {
  text-decoration: underline;
}


/* animation */
.fadein {
  animation-name: fadeInAnime;
  animation-duration: .6s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  opacity:0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.hamburger-menu__body .g-side {
  animation-duration: .2s;
}

.fadein--right-to-left {
  animation-name: fadeInAnime--right-to-left;
}

@keyframes fadeInAnime--right-to-left {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.color_gray-deep{
  color: var(--gray-deep);
}
.kyozai_slect{
  margin-top: 60px;
}
.g-head-back{
  display: flex;
  align-items: center;
  height: 44px;
}
.g-head-back_black a{
  color: var(--gray-deep);
}
.g-head-back a{
  color: #ffffff;
}
.g-head-back a:hover{
  text-decoration: underline;
}
.g-head-back_kyozaiSelect a{
  color: var(--gray-deep);
}
.riyokiyakuSeni {
  text-align: center;
}
.riyokiyakuSeni a:hover {
  text-decoration: underline;
}

/* ------------------------------ 3step area ------------------------------ */

.g-step_area{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  margin-top: 40px;
  /* margin-bottom: 40px; */
}
.g-step_area-left_btn{
  position: absolute;
  left: 0;
}
.g-step_area-center_img{
  
}
.g-step_area__btn_back{
  width: 230px;
  height: 42px;
  border-radius: 28px;
  background-color: #fff;
  color: #10A3FF;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  position: relative;
}
.g-step_area__btn_back::after{
  content: '';
  display: inline-block;
  background-image: url(../img/icon_arrow_blue.svg);
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  transform: rotate(180deg);
}
.g-step_area__img{
  
}

@media print, screen and (max-width: 1080px) {
  .g-step_area{
    display: block;
    margin: 20px 30px 5px;
  }
  .g-step_area-left_btn{
    position: relative;
    margin-bottom: 10px;
  }
}
@media print, screen and (max-width: 768px) {
  .g-step_area__img{
    width: 100%;
  }
  .g-step_area{
    display: block;
    margin: 20px 30px 50px;
  }
  .g-step_area__btn_back{
    width: 162px;
    height: 32px;
    font-size: 12px;
  }
  .g-step_area__btn_back::after{
    width: 5px;
    height: 8px;
    left: 10px;
  }
}

/* ------------------------------ main contents ------------------------------ */
.main_contents{
  background-color: #E7EEEC;
  overflow:hidden;
}
.main_contents-bg_on{
  /* background-image: url(../img/bg_up_all.png), url(../img/bg_down_all.png); */
  background-position: right top, left bottom;
  background-repeat: no-repeat, no-repeat;
}
.main_wrap{
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.g-title-area{
  margin-bottom: 40px;
}
.g-title-area__title_guide{
  font-size: 14px;
  color: #10A3FF;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  margin-bottom: 5px;
}
.g-contents_area-col1_white .g-title-area__title_guide{
  font-size: 12px;
}

.g-title-area__title_main_area{
  display: flex;
  margin-bottom: 10px;
}
.g-title-area__title_main{
  font-weight: bold;
  font-size: 32px;
}
.g-title-area__title_sub{
  font-size: 14px;
}
h2.g-title-area__title_main{
  font-size: 28px;
}

.g-title-area__title_main-tag_area{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-left: 28px;
}
.g-title-area__title_main-tag{
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 32px;
  width: 102px;
  border-radius: 16px;
  color: #10A3FF;
  background-color: #ffffff;
  position: relative;
}
.g-title-area__title_main-tag:not(:first-of-type) {
  margin-left: -4px;
}
.g-title-area__title_main-tag::after{
  content: "";
  width: 12px;
  height: 32px;
  border-top-right-radius: 24px;
  background-image: url(../img/tag_joint.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 2px;
  right: -4px;
}
.g-title-area__title_main-tag:not(:first-of-type)::after{
  background-image: none;
}

.g-contents_area-col1_white{
  padding: 60px 50px;
  background-color: #fff;
  border-radius: 24px;
}



.g-title-area__img_title-wrap{
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.g-title-area__img_title-img{
  display: block;
  margin-right: 8px;
  width: 48px;
  height: ;
}
.g-title-area__img_title-main {
  font-size: 22px;
  font-weight: bold;
  line-height: 33px;
}

.g-title-area__img_title-main_teacher {
  font-size: 22px;
  font-weight: bold;
  line-height: 33px;
}

@media print, screen and (max-width: 1080px){
  .g-title-area{
    margin: 0 40px 40px;
    
  }
  .g-contents_area{
    box-sizing: border-box;
    margin: 0 40px;
  }
  .g-contents_area-col1_white .g-title-area{
    margin: 0 0 40px;
  }
}
@media print, screen and (max-width: 768px) {
  .main_wrap{
    width: 100%;
  }

  .main_contents-bg_on{
    background-size: 40%;
  }

  .g-title-area{
    display: block;
    margin: 0 30px 40px;
  }
  .g-title-area__title_main_area{
    display: block;
    margin-bottom: 15px;
  }
  .g-title-area__title_main-tag_area{
    justify-content: flex-start;
    margin-left: 0px;
  }
  .g-title-area__title_main-tag{
    font-size: 12px;
    height: 26px;
    width: 82px;
    position: relative;
  }
  .g-title-area__title_main-tag::after {
    content: "";
    height: 26px;
    top: 0px;
    right: -4px;
  }
  .g-title-area__title_main-tag:not(:first-of-type)::after{
    background-image: none;
  }
  .g-title-area__title_main + .g-title-area__title_main-tag_area{
    margin-top: 10px;
  }
  .g-title-area__title_main{
    font-size: 20px;
  }
  .g-title-area__title_sub{
    font-size: 12px;
  }
  h2.g-title-area__title_main{
    font-size: 24px;
  }


  .g-contents_area-col1_white .g-title-area{
    margin: 0 0 40px;
  }

  .g-title-area__img_title-wrap{
    display: flex;
    align-items: center;
    margin-bottom: 18px;
  }
  .g-title-area__img_title-img{
    display: block;
    margin-right: 8px;
    width: 34px;
    height: 34px;
  }
  .g-title-area__img_title-main {
    font-size: 22px;
    font-weight: bold;
    line-height: 33px;
  }
  .g-title-area__img_title-main_teacher {
    font-size: 16px;
    font-weight: bold;
    line-height: 33px;
  }
  .g-contents_area{
    margin: 0 15px;
  }

}

/* ------------------------------ adviser area ------------------------------ */
/* PC */
@media print, screen and (min-width: 1081px) {
  .g-adv-box__wrap {
    padding-bottom: 62px;
  }
  .g-adv-box {
    margin-bottom: 40px;
  }
  .g-adv-box--pd {
    padding: 0 130px;
  }
  .g-adv-box:last-of-type {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .g-adv-box__inner {
    max-width: 912px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    filter: drop-shadow(0 16px 40px #D9DFE3);
    box-sizing:border-box;
  }
  .g-adv-box__inner--chara::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10.5px 18px 10.5px 0;
    border-color: transparent #fff transparent transparent;
    position: absolute;
    left: -12px;
    top: 38px;
  }
  .g-adv-box__chara {
    width: 90px;
    position: absolute;
    top: 0;
    left: -117px;
  }
  .g-adv-box__chara-thumb {
    width: 100%;
    margin-bottom: 6px;
  }
  .g-adv-box__chara-name {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
  .g-adv-box__head {
    margin-bottom: 24px;
  }
  .g-adv-box__heading {
    width: 269px;
    height: 98px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
  }
  .g-adv-box__heading::before {
    content: "";
    width: 269px;
    height: 98px;
    border-top-right-radius: 24px;
    background-image: url("https://manabi-gakushu.benesse.ne.jp/navi/op/spiral/ssnavi/student/correction/essay/step3/_assets/img/check/box_heading_bg_pc.png");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .g-adv-box__heading-text {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding-top: 30px;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
  .g-adv-box__title-guide {
    margin-bottom: 12px;
  }
  .g-adv-box__textarea, .g-adv-dtl__textarea {
    margin-bottom: 40px;
    background-image: linear-gradient(180deg, #E7EEEC 1px, transparent 1px); /* 罫線の色と太さ  */
    background-size: 100% 2.5em;
    background-position-y: -1px;
    line-height: 2.5em;
  }
  .g-adv-box__textarea:last-of-type, .g-adv-dtl__textarea:last-of-type {
    margin-bottom: 0;
  }
  .g-adv-box__text, .g-adv-dtl__text {
    font-size: 16px;
    letter-spacing: 0.05em;
  }
  .g-adv-box__graph-wrap {
    max-width: 490px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
  .g-adv-box__graph-text {
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
  }

  .g-adv-dtl {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .g-adv-dtl:last-of-type {
    margin-bottom: 0;
  }
  .g-adv-dtl__title {
    display: flex;
    align-items: center;
    font-size: 22px;
    line-height: 1.6;
    font-weight: bold;
    margin-bottom: 15px;
    padding-left: 56px;
    position: relative;
  }
  .g-adv-dtl__title::before {
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    width: 48px;
    height: 48px;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .g-adv-dtl .g-title-area__title_sub{
    margin-bottom: 20px;
  }
  .g-adv-ass {
    width: 100%;
    margin-bottom: 30px;
  }
  .g-adv-ass:last-of-type {
    margin-bottom: 0;
  }
  .g-adv-ass__title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
  }
  .g-adv-ass__lead {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
  }
  .g-adv-ass__table {
    width: 100%;
  }
  .g-adv-ass__table-head {
    display: flex;
    align-items: center;
  }
  .g-adv-ass__table-head01 {
    min-width: 90px;
    margin-right: 6px;
    justify-content: center;
  }
  .g-adv-ass__table-head02 {
    max-width: 720px;
    width: 100%;
    padding-left: 20px;
  }
  .g-adv-ass__table-head01, .g-adv-ass__table-head02 {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: normal;
    min-height: 28px;
    border-radius: 44px;
    background-color: #E7EEEC;
  }
  .g-adv-ass__table-body {
    display: flex;
    border-bottom: 1px solid #E7EEEC;
  }
  .g-adv-ass__table-body01 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
    justify-content: center;
    min-width: 90px;
    margin-right: 6px;
    font-family: 'Roboto Condensed', sans-serif;
  }
  .g-adv-ass__table-body02 {
    font-size: 12px;
    line-height: 1.5;
    max-width: 720px;
    width: 100%;
    padding-left: 20px;
  }
  .g-adv-ass__table-body01, .g-adv-ass__table-body02 {
    display: flex;
    align-items: center;
    min-height: 40px;
  }
  .g-adv-box__text-count, .g-adv-box__text-num {
    font-size: 20px;
    font-weight: bold;
    color: #999999;
    text-align: right;
    font-family: 'Roboto Condensed', sans-serif;
  }
  .g-adv-box__text-count .g-adv-box__text-small {
    font-size: 10px;
    font-weight: bold;
    color: #999999;
    line-height: 1.8;
    font-family: 'Hiragino Kaku Gothic ProN','Hiragino Sans','Meiryo',sans-serif;
  }
}
/* tab */
@media print, screen and (max-width: 1080px) {
  .g-adv-box__wrap {
    padding-bottom: 60px;
  }
  .g-adv-box {
    width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
  .g-adv-box--pd {
    padding: 0 0px;
  }
  .g-adv-box__inner {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 30px 40px;
    border-radius: 20px;
    position: relative;
    filter: drop-shadow(0 4px 4px rgba( 0, 0, 0, 0.25 ));
    box-sizing:border-box;
  }
  .g-adv-box__head {
    display: flex;
    margin-bottom: 8px;
  }
  .g-adv-box__chara {
    width: 64px;
    margin-right: 11px;
  }
  .g-adv-box__chara-thumb {
    width: 100%;
  }
  .g-adv-box__chara-thumb img {
    width: 100%;
  }
  .g-adv-box__heading {
    width: 143px;
    height: 45px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
  }
  .g-adv-box__heading::before {
    content: "";
    width: 143px;
    height: 45px;
    border-top-right-radius: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .g-adv-box__heading-wrap {
    width: 700px;
    padding-top: 20px;
    padding-left: 10px;
  }
  .g-adv-box__chara + .g-adv-box__heading-wrap {
    padding-left: 0;
  }
  .g-adv-box__heading-text {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    text-align: center;

    padding-top: 8px;
    padding-left: 6px;
    line-height: 1.5;
  }
  .g-adv-box__title-guide {
    font-size: 10px;
    margin-bottom: 8px;
  }
  .g-adv-box__title {
    font-size: 18px !important;
    margin-bottom: 0px;
    line-height: 1.33;
    letter-spacing: 0.05em;
  }
  .g-adv-box__textarea, .g-adv-dtl__textarea {
    width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    background-image: linear-gradient(180deg, #E7EEEC 1px, transparent 1px); /* 罫線の色と太さ  */
    background-size: 100% 2em;
    background-position-y: -1px;
    line-height: 2em;
  }
  .g-adv-box__textarea:last-of-type, .g-adv-dtl__textarea:last-of-type {
    margin-bottom: 0;
  }
  .g-adv-box__text, .g-adv-dtl__text {
    font-size: 14px;
  }
  .g-adv-box__graph-wrap {
    width:  640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
  }
  .g-adv-box__graph-text {
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
  }

  .g-adv-dtl {
    width:  640px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  .g-adv-dtl:last-of-type {
    margin-bottom: 0;
  }
  .g-adv-dtl__title {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 13px;
    padding-left: 38px;
    position: relative;
  }
  .g-adv-dtl__title::before {
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    width: 34px;
    height: 34px;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .g-adv-dtl .g-title-area__title_sub{
    margin-bottom: 20px;
  }
  .g-adv-ass {
    width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  .g-adv-ass:last-of-type {
    margin-bottom: 0;
  }
  .g-adv-ass__title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
  }
  .g-adv-ass__lead {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .g-adv-ass__table {
    width: 100%;
  }
  .g-adv-ass__table-head {
    display: flex;
    align-items: center;
  }
  .g-adv-ass__table-head01 {
    width: 48px;
    margin-right: 4px;
    padding: 0;
    justify-content: center;
  }
  .g-adv-ass__table-head02 {
    width: 233px;
    padding-left: 12px;
    box-sizing: border-box;
  }
  .g-adv-ass__table-head01, .g-adv-ass__table-head02 {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: normal;
    min-height: 28px;
    border-radius: 40px;
    background-color: #E7EEEC;
  }
  .g-adv-ass__table-body {
    display: flex;
    border-bottom: 1px solid #E7EEEC;
  }
  .g-adv-ass__table-body01 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
    justify-content: center;
    min-width: 48px;
    margin-right: 4px;
    font-family: 'Roboto Condensed', sans-serif;
  }
  .g-adv-ass__table-body02 {
    font-size: 12px;
    line-height: 1.5;
    width: 233px;
    padding-left: 12px;
    box-sizing: border-box;
  }
  .g-adv-ass__table-body01, .g-adv-ass__table-body02 {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding-top: 8px;
    padding-bottom: 12px;
  }
  .g-adv-box__text-count, .g-adv-box__text-num {
    font-size: 20px;
    font-weight: bold;
    color: #999999;
    text-align: right;
    font-family: 'Roboto Condensed', sans-serif;
  }
  .g-adv-box__text-count .g-adv-box__text-small {
    font-size: 10px;
    font-weight: bold;
    color: #999999;
    line-height: 1.8;
    font-family: 'Hiragino Kaku Gothic ProN','Hiragino Sans','Meiryo',sans-serif;
  }
}
/* SP */
@media print, screen and (max-width: 768px) {
  .g-adv-box__wrap {
    padding-bottom: 60px;
  }
  .g-adv-box {
    width: 345px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
  .g-adv-box__inner {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 20px 40px;
    border-radius: 20px;
    position: relative;
    filter: drop-shadow(0 4px 4px rgba( 0, 0, 0, 0.25 ));
    box-sizing:border-box;
  }
  .g-adv-box__head {
    display: flex;
    margin-bottom: 8px;
  }
  .g-adv-box__chara {
    width: 64px;
    margin-right: 11px;
  }
  .g-adv-box__chara-thumb {
    width: 100%;
  }
  .g-adv-box__chara-thumb img {
    width: 100%;
  }
  .g-adv-box__heading {
    width: 143px;
    height: 45px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
  }
  .g-adv-box__heading::before {
    content: "";
    width: 143px;
    height: 45px;
    border-top-right-radius: 20px;
    background-image: url("https://manabi-gakushu.benesse.ne.jp/navi/op/spiral/ssnavi/student/correction/essay/step3/_assets/img/check/box_heading_bg_sp.png");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .g-adv-box__heading-wrap {
    width: 225px;
    padding-top: 20px;
    padding-left: 10px;
  }
  .g-adv-box__chara + .g-adv-box__heading-wrap {
    padding-left: 0;
  }
  .g-adv-box__heading-text {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    text-align: center;

    padding-top: 8px;
    padding-left: 6px;
    line-height: 1.5;
  }
  .g-adv-box__title-guide {
    font-size: 10px;
    margin-bottom: 8px;
  }
  .g-adv-box__title {
    font-size: 18px !important;
    margin-bottom: 0px;
    line-height: 1.33;
    letter-spacing: 0.05em;
  }
  .g-adv-box__textarea, .g-adv-dtl__textarea {
    width: 285px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    background-image: linear-gradient(180deg, #E7EEEC 1px, transparent 1px); /* 罫線の色と太さ  */
    background-size: 100% 2em;
    background-position-y: -1px;
    line-height: 2em;
  }
  .g-adv-box__textarea:last-of-type, .g-adv-dtl__textarea:last-of-type {
    margin-bottom: 0;
  }
  .g-adv-box__text, .g-adv-dtl__text {
    font-size: 14px;
  }
  .g-adv-box__graph-wrap {
    width: 285px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
  }
  .g-adv-box__graph-text {
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
  }

  .g-adv-dtl {
    width: 285px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  .g-adv-dtl:last-of-type {
    margin-bottom: 0;
  }
  .g-adv-dtl__title {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 13px;
    padding-left: 38px;
    position: relative;
  }
  .g-adv-dtl__title::before {
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    width: 34px;
    height: 34px;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .g-adv-dtl .g-title-area__title_sub{
    margin-bottom: 20px;
  }
  .g-adv-box__title--adv00::before {
    background-image: url("../img/box_advice_icon00.png");
  }
  .g-adv-box__title--adv01::before {
    background-image: url("../img/box_advice_icon01.png");
  }
  .g-adv-box__title--adv02::before {
    background-image: url("../img/box_advice_icon02.png");
  }
  .g-adv-box__title--adv03::before {
    background-image: url("../img/box_advice_icon03.png");
  }
  .g-adv-box__title--adv04::before {
    background-image: url("../img/box_advice_icon04.png");
  }
  .g-adv-box__title--adv05::before {
    background-image: url("../img/box_advice_icon05.png");
  }
  .g-adv-box__title--adv06::before {
    background-image: url("../img/box_advice_icon06.png");
  }
  .g-adv-box__title--adv07::before {
    background-image: url("../img/box_advice_icon07.png");
  }

  .g-adv-box__title--chack::before {
    background-image: url("../img/box_advice_icon-chack.png");
  }

  .g-adv-ass {
    width: 285px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  .g-adv-ass:last-of-type {
    margin-bottom: 0;
  }
  .g-adv-ass__title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
  }
  .g-adv-ass__lead {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .g-adv-ass__table {
    width: 100%;
  }
  .g-adv-ass__table-head {
    display: flex;
    align-items: center;
  }
  .g-adv-ass__table-head01 {
    width: 48px;
    margin-right: 4px;
    padding: 0;
    justify-content: center;
  }
  .g-adv-ass__table-head02 {
    width: 233px;
    padding-left: 12px;
    box-sizing: border-box;
  }
  .g-adv-ass__table-head01, .g-adv-ass__table-head02 {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: normal;
    min-height: 28px;
    border-radius: 40px;
    background-color: #E7EEEC;
  }
  .g-adv-ass__table-body {
    display: flex;
    border-bottom: 1px solid #E7EEEC;
  }
  .g-adv-ass__table-body01 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
    justify-content: center;
    min-width: 48px;
    margin-right: 4px;
    font-family: 'Roboto Condensed', sans-serif;
  }
  .g-adv-ass__table-body02 {
    font-size: 12px;
    line-height: 1.5;
    width: 233px;
    padding-left: 12px;
    box-sizing: border-box;
  }
  .g-adv-ass__table-body01, .g-adv-ass__table-body02 {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding-top: 8px;
    padding-bottom: 12px;
  }
  .g-adv-box__text-count, .g-adv-box__text-num {
    font-size: 20px;
    font-weight: bold;
    color: #999999;
    text-align: right;
    font-family: 'Roboto Condensed', sans-serif;
  }
  .g-adv-box__text-count .g-adv-box__text-small {
    font-size: 10px;
    font-weight: bold;
    color: #999999;
    line-height: 1.8;
    font-family: 'Hiragino Kaku Gothic ProN','Hiragino Sans','Meiryo',sans-serif;
  }
}

/* PC */
@media print, screen and (min-width: 1081px) {
  .g-adv-box__inner--chara-first.g-adv-box__inner {
    padding-top: 170px;
  }
  .g-adv-box__inner--chara-first .g-adv-box__chara {
    width: 149px;
    left: -143px;
    z-index: 2;
  }
  .g-adv-box__inner--chara-first .g-adv-box__heading-wrap {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    min-height: 170px;
    padding-left: 58px;
    border-radius: 24px 24px 0 0;
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
    background-image: url("../img/box_heading_first_bg_pc.png");
    background-repeat: no-repeat;
    background-size: auto 170px;
  }
}
/* tub */
@media print, screen and (max-width: 1080px) {
  .g-adv-box__inner--chara-first.g-adv-box__inner {
    padding-top: 128px;
  }
  .g-adv-box__inner--chara-first .g-adv-box__chara {
    width: 75px;
    position: absolute;
    top: 20px;
    left: 17px;
    z-index: 2;
  }
  .g-adv-box__inner--chara-first .g-adv-box__heading-wrap {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    min-height: 128px;
    padding-top: 0px;
    padding-left: 96px;
    border-radius: 20px 20px 0 0;
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
    background-image: url("https://manabi-gakushu.benesse.ne.jp/navi/op/spiral/ssnavi/student/correction/essay/step3/_assets/img/check/box_heading_first_bg_pc.png");
    background-repeat: no-repeat;
    background-size: auto 128px;
  }
}
/* SP */
@media print, screen and (max-width: 768px) {
  .g-adv-box__inner--chara-first.g-adv-box__inner {
    padding-top: 128px;
  }
  .g-adv-box__inner--chara-first .g-adv-box__chara {
    width: 75px;
    position: absolute;
    top: 20px;
    left: 17px;
    z-index: 2;
  }
  .g-adv-box__inner--chara-first .g-adv-box__heading-wrap {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    min-height: 128px;
    padding-left: 96px;
    border-radius: 20px 20px 0 0;
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
    background-image: url("https://manabi-gakushu.benesse.ne.jp/navi/op/spiral/ssnavi/student/correction/essay/step3/_assets/img/check/box_heading_first_bg_sp.png");
    background-repeat: no-repeat;
    background-size: auto 128px;
  }
}




/* ------------------------------ column area ------------------------------ */

.g-column-area{
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
.g-column-area__col_cont{
  max-width: 384px;
  padding: 35px 40px;
  background-color: #fff;
  border-radius: 24px;
  box-sizing: border-box;
  box-shadow: 0px 16px 40px #D9DFE3;
  position: relative;
  display: flex;
  flex-direction: column;
}
.g-column-area__col_cont::after{
  counter-increment: col-number 1;
  content: counter(col-number) " ";
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  pointer-events: none;
  display: inline-block;
  font-size: 150px;
  margin: auto;
  color: #60B8EF;
  position: absolute;
  top: 0;
  right: 25px;
}
.g-column-area__col_cont-done::after{
  color: #999999;
}
.g-column-area__col_title{
  margin-top: 30px;
  margin-bottom: 25px;
  position: relative;
  flex-grow: 1;
}
.g-column-area__col_title-done{
  font-size: 12px;
  color: #ffffff;
  top: -25px;
  margin-bottom: 5px;
  padding: 2px 5px;
  position: absolute;
  background: #60B8EF;
  padding-left: 2em;
  border-radius: 1em;
}
.g-column-area__col_title-done::before{
  content: '';
  display: inline-block;
  background-image: url(../img/icon_chack_white.svg);
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  margin: auto;
  position: absolute;
  top: 12px;
  bottom: 0;
  left: 10px;
}
.g-column-area__col_title-tag{
  font-size: 12px;
  color: #ffffff;
  top: -25px;
  margin-bottom: 5px;
  padding: 2px 10px;
  position: absolute;
  background: #60B8EF;
  border-radius: 1em;
}
.g-column-area__col_title-mein{
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.g-column-area__col_title-sub{
  color: #999999;
  font-size: 12px;
  font-weight: 600;
  position: relative;
  padding-left: 22px;
}
.g-column-area__col_title-sub:not(last-of-type){
  margin-bottom: 10px;
}
.g-column-area__col_title-sub::before{
  content: '';
  display: inline-block;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
}
.g-icon-clock::before{
  background-image: url(../img/icon_clock_gray.svg);
}
.g-icon-calendar::before{
  background-image: url(../img/icon_calendar_gray.svg);
}

.g-column-area__col_text_area{
  margin-bottom: 25px;
  flex-basis: 100px;
}
.g-column-area__col_text{
  font-size: 14px;
  margin-bottom: 10px;
}
.g-column-area__col_text-annotation{
  color: #999999;
  font-size: 12px;
  font-weight: 300;
  
}

.g-column-area__col_btn_area{
  height: 122px;
}
.g-column-area__col_btn a{
  font-size: 18px;
  width: 100%;
}
.g-column-area__col_btn:not(:last-of-type) {
  margin-bottom: 10px;
}

.g-column-area__col_cont.g-column-area__col_cont-done{
  background-color: #E1E7E5;
}
.g-column-area__col_cont.g-column-area__col_cont-done:before{
  content: '';
  display: inline-block;
  background-image: url(../img/3col_done.svg);
  background-repeat: no-repeat;
  width: 384px;
  height: 120px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
.g-column-area__col_cont.g-column-area__col_cont-done.g-column-area__col_cont-done2:before{
  background-image: url(../img/3col_done2.svg);
}
.g-column-area__col_cont.g-column-area__col_cont-done .g-column-area__col_title-mein{
  color: #999999;
}
.g-column-area__col_cont.g-column-area__col_cont-done .g-column-area__col_text{
  color: #999999;
}

@media print, screen and (max-width: 1200px) {
  .main_wrap{
    max-width: 1080px;
  }
  .g-column-area__col_cont{
    max-width: 344px;
  }
}

@media print, screen and (max-width: 1080px) {
  .g-column-area{
    width: 100%;
    max-width: 600px;
    display: block;
    margin: auto;
  }
  .g-column-area__col_cont{
    width: 100%;
    max-width: none;
    margin-bottom: 20px;
  }

}
@media print, screen and (max-width: 768px) {
  .g-column-area{
    width: 100%;
    display: block;
  }
  .g-column-area__col_cont{
    width: 100%;
    max-width: none;
    margin-bottom: 20px;
  }
}

/* ------------------------------ btn ------------------------------ */
.g-btn{
  color: #FFFFFF;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  border-radius: 28px;
  width: 312px;
  height: 56px;
  background: linear-gradient(90deg, #5B88D1 0%, #60B8EF 100%);
  position: relative;
}
.g-btn a{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  box-sizing: border-box;

}

.g-btn-white{
  color: #10A3FF;
  border: solid 1px #60B8EF;
  background: #ffffff;
}
.g-btn-gray{
  color: #999999;
  background: #dddddd;
  pointer-events: none;
}

.g-btn-next::after{
  content: '';
  display: inline-block;
  background-image: url(../img/icon_arrow_white.svg);
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
}
.g-btn-white.g-btn-next::after{
  background-image: url(../img/icon_arrow_blue.svg);
}
.g-btn-gray.g-btn-next::after{
  background-image: url(../img/icon_arrow_gray.svg);
}

.g-btn-back::after{
  content: '';
  display: inline-block;
  background-image: url(../img/icon_arrow_white.svg);
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  transform: rotate(180deg);
}
.g-btn-white.g-btn-back::after{
  background-image: url(../img/icon_arrow_blue.svg);
}
.g-btn-gray.g-btn-back::after{
  background-image: url(../img/icon_arrow_gray.svg);
}

.g-btn-dl::after{
  content: '';
  display: inline-block;
  background-image: url(../img/icon_dl.svg);
  background-repeat: no-repeat;
  width: 15px;
  height: 18px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 3px;
  right: 20px;
}
.btn_area-tri{
  width: 100%;
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
.g-btn_area-twin{
  width: 650px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.g-btn_area-single{
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn_area-tri .g-btn{
  margin-bottom: 20px;
}

@media print, screen and (max-width: 1080px) {
  .g-btn{
    margin: auto;
    font-size: 18px;
    width: 100%;
    max-width: 312px;
    min-width: 270px;
  }
  .g-btn_area-twin{
    max-width: 650px;
    width: 100%;
  }
}
@media print, screen and (max-width: 768px) {
  .g-btn{
    margin: auto;
    width: 100%;
    max-width: 312px;
  }

  .btn_area-tri{
    width: 100%;
    display: block;
  }
  .btn_area-tri .g-btn{
    margin-bottom: 20px;
  }
  .g-btn_area-twin{
    width: 100%;
    margin: auto;
    display: block;
  }
  .g-btn_area-twin .g-btn{
    margin-bottom: 20px;
  }

  .g-btn_area-single{
    width: 100%;
    margin: auto;
    display: block;
  }

}


.g-btn-anime {
  position: relative;
}
.g-btn-anime span {
  position: relative;
    color: #fff;
}
.g-btn-anime::before {
    content: "";
    animation-name:btn-gradation;
    animation-duration:3.2s;
    animation-timing-function:ease-in-out;
    animation-play-state:running;
    animation-direction:alternate;
    animation-iteration-count:infinite;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    border-radius:100px;
    background: linear-gradient(90deg, #547ACF -247.92%, #69D5E8 -150.15%, #5EB769 -35.34%, #F8FC94 100%);
}
@keyframes btn-gradation {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

/* btn hover*/
.g-btn:hover{
  background: linear-gradient(90deg,  #5BC3D1 0%, #60EFEF 100%);
  color: #FFFFFF; 
}

.g-btn-white:hover{
background:linear-gradient(90deg, #5B88D1 0%, #60B8EF 100%);
color: #FFFFFF;   
}

.reset-btn:hover{
  background:linear-gradient(90deg, #5B88D1 0%, #60B8EF 100%);
  color: #FFFFFF;   
  }
/* ------------------------------ 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: #3A414D;
  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: 912px;
  height: 100%;
}
.g-modal__content {
  width: 100%;
  max-height: 80%;
  padding: 60px 48px;
  border-radius: 24px;
  background-color: #fff;
  position: relative;
  overflow: auto;
}
.g-modal__close {
  width: 28px;
  height: 28px;
  position: absolute;
  right: 24px;
  top: 24px;
  cursor: pointer;
}
.g-modal__close-icon {
  display: block;
}

/* sp */
@media print, screen and (max-width: 768px) {
  .g-modal {
    display: none;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  .g-modal__bg {
    background-color: #3A414D;
    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: 912px;
    height: 100%;
  }
  .g-modal__content {
    width: 100%;
    max-height: 80%;
    padding: 60px 20px;
    border-radius: 24px;
    background-color: #fff;
    position: relative;
    overflow: auto;
  }
  .g-modal__close {
    width: 28px;
    height: 28px;
    position: absolute;
    right: 24px;
    top: 24px;
    cursor: pointer;
  }
  .g-modal__close-icon {
    display: block;
  }
}




/* ------------------------------ form setting ------------------------------ */
.g-input-box{
  width: 100%;
  min-height: 140px;
  background: #F8F8F8;
  border-radius: 12px;
  border: solid #E7EEEC 1px;
  padding: 15px;
  box-sizing: border-box;
}
.g-input-big_box{
  width: 100%;
  min-height: 360px;
  background: #F8F8F8;
  border-radius: 12px;
  border: solid #E7EEEC 1px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.8;
}
.g-input-chack_area{
  margin-top: 20px;
  margin-bottom: 40px;
}
.g-input-chack_box-text{
  display:flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}
/*
.g-input-chack_box{
  min-width: 32px;
  min-height: 32px;
  margin-right: 10px;
  accent-color: #60B8EF;
}
*/

.g-input-chack_box{
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.g-input-chack_box{
  cursor: pointer;
  padding-left: 50px;/*label手前にチェックボックス用の余白を開ける*/
  vertical-align: middle;
  position: relative;
}

.g-input-chack_box::before,
.g-input-chack_box::after {
  content: "";
  display: block; 
  position: absolute;
}

.g-input-chack_box::before {
  background-color: #fff;
  border: 1px solid #666464;
  border-radius: 6px;
  width: 32px;/*チェックボックスの横幅*/
  height: 32px;/*チェックボックスの縦幅*/
  transform: translateY(-50%);
  top: 50%;
  left: 5px;
}

.g-input-chack_box::after {
  background-image: url(../img/icon_checkbox_blue.svg);
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;/*チェック前は非表示*/
  width: 16px;/*チェックの横幅*/
  height: 16px;/*チェックの高さ*/
  top: -5px;/*チェック時の位置調整*/
  left: 15px;/*チェック時の位置調整*/
}

_::-webkit-full-page-media,
_:future,
:root .g-input-chack_box::after {
  top: 0px;/*チェック時の位置調整*/
}

.g-input-chack_box:checked::after {
  opacity: 1;/*チェック後表示*/
}

@media print, screen and (max-width: 768px) {
  
}

/* ------------------------------ error_message ------------------------------ */
.g-error_message{
  display: none;
}
.g-error_message.g-error_active{
  display: inline-block;
  color: #FF3B10;
}



/* ------------------------------ toolTip ------------------------------ */
.toolTip {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid #e7eeec;
  font-family: "Hiragino Kaku Gothic ProN";
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #999999;
  border-radius: 50%;
  margin-left: 8px;
}
.toolTip__item {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -100%);
  top: -20px;
  padding: 20px;
  white-space: nowrap;
  background: #fff;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(217, 223, 227, 1);
  transition: 0.3s ease-in;
}
.toolTip__txt-wrap::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translate(-50%, 100%);
  background-color: #fff;
  width: 22px;
  height: 18px;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  box-shadow: 0 6px 20px rgba(217, 223, 227, 1);
}
.toolTip:hover .toolTip__item {
  display: block;
  opacity: 1;
  visibility: visible;
}

.g-br_3col-ttl{
  display: none;
}
@media print, screen and (max-width: 400px) {
  .g-br_3col-ttl{
    display: block;
  }
}
/* ------------------------------ global ------------------------------ */

.g-color-blue01{color: #60B8EF !important;}
.g-color-blue02{color: #10A3FF !important;}
.g-color-gray01{color: #999999 !important;}
.g-color-red01{color: #FF3B10 !important;}
.g-color-white{color: #ffffff !important;}

.g-txt-center{text-align: center !important;}
.g-txt-right{text-align: right !important;}
.g-txt-left{text-align: left !important;}
  
.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-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 (min-width:1081px) {
.g-txt-center-pc{text-align: center;}
.g-txt-right-pc{text-align: right;}
.g-txt-left-pc{text-align: left;}

.g-mt0-pc{margin-top: 0px !important;}
.g-mt5-pc{margin-top: 5px !important;}
.g-mt10-pc{margin-top: 10px !important;}
.g-mt15-pc{margin-top: 15px !important;}
.g-mt20-pc{margin-top: 20px !important;}
.g-mt25-pc{margin-top: 25px !important;}
.g-mt30-pc{margin-top: 30px !important;}
.g-mt35-pc{margin-top: 35px !important;}
.g-mt40-pc{margin-top: 40px !important;}
.g-mt45-pc{margin-top: 45px !important;}
.g-mt50-pc{margin-top: 50px !important;}

.g-mb0-pc{margin-bottom: 0px !important;}
.g-mb5-pc{margin-bottom: 5px !important;}
.g-mb10-pc{margin-bottom: 10px !important;}
.g-mb15-pc{margin-bottom: 15px !important;}
.g-mb20-pc{margin-bottom: 20px !important;}
.g-mb25-pc{margin-bottom: 25px !important;}
.g-mb30-pc{margin-bottom: 30px !important;}
.g-mb35-pc{margin-bottom: 35px !important;}
.g-mb40-pc{margin-bottom: 40px !important;}
.g-mb45-pc{margin-bottom: 45px !important;}
.g-mb50-pc{margin-bottom: 50px !important;}

.g-mr0-pc{margin-right: 0px !important;}
.g-mr5-pc{margin-right: 5px !important;}
.g-mr10-pc{margin-right: 10px !important;}
.g-mr15-pc{margin-right: 15px !important;}
.g-mr20-pc{margin-right: 20px !important;}
.g-mr25-pc{margin-right: 25px !important;}
.g-mr30-pc{margin-right: 30px !important;}
.g-mr35-pc{margin-right: 35px !important;}
.g-mr40-pc{margin-right: 40px !important;}
.g-mr45-pc{margin-right: 45px !important;}
.g-mr50-pc{margin-right: 50px !important;}

.g-ml0-pc{margin-left: 0px !important;}
.g-ml5-pc{margin-left: 5px !important;}
.g-ml10-pc{margin-left: 10px !important;}
.g-ml15-pc{margin-left: 15px !important;}
.g-ml20-pc{margin-left: 20px !important;}
.g-ml25-pc{margin-left: 25px !important;}
.g-ml30-pc{margin-left: 30px !important;}
.g-ml35-pc{margin-left: 35px !important;}
.g-ml40-pc{margin-left: 40px !important;}
.g-ml45-pc{margin-left: 45px !important;}
.g-ml50-pc{margin-left: 50px !important;}

.g-pt0-pc{padding-top: 0px !important;}
.g-pt5-pc{padding-top: 5px !important;}
.g-pt10-pc{padding-top: 10px !important;}
.g-pt15-pc{padding-top: 15px !important;}
.g-pt20-pc{padding-top: 20px !important;}
.g-pt25-pc{padding-top: 25px !important;}
.g-pt30-pc{padding-top: 30px !important;}
.g-pt35-pc{padding-top: 35px !important;}
.g-pt40-pc{padding-top: 40px !important;}
.g-pt45-pc{padding-top: 45px !important;}
.g-pt50-pc{padding-top: 50px !important;}

.g-pb0-pc{padding-bottom: 0px !important;}
.g-pb5-pc{padding-bottom: 5px !important;}
.g-pb10-pc{padding-bottom: 10px !important;}
.g-pb15-pc{padding-bottom: 15px !important;}
.g-pb20-pc{padding-bottom: 20px !important;}
.g-pb25-pc{padding-bottom: 25px !important;}
.g-pb30-pc{padding-bottom: 30px !important;}
.g-pb35-pc{padding-bottom: 35px !important;}
.g-pb40-pc{padding-bottom: 40px !important;}
.g-pb45-pc{padding-bottom: 45px !important;}
.g-pb50-pc{padding-bottom: 50px !important;}

.g-pr0-pc{padding-right: 0px !important;}
.g-pr5-pc{padding-right: 5px !important;}
.g-pr10-pc{padding-right: 10px !important;}
.g-pr15-pc{padding-right: 15px !important;}
.g-pr20-pc{padding-right: 20px !important;}
.g-pr25-pc{padding-right: 25px !important;}
.g-pr30-pc{padding-right: 30px !important;}
.g-pr35-pc{padding-right: 35px !important;}
.g-pr40-pc{padding-right: 40px !important;}
.g-pr45-pc{padding-right: 45px !important;}
.g-pr50-pc{padding-right: 50px !important;}

.g-pl0-pc{padding-left: 0px !important;}
.g-pl5-pc{padding-left: 5px !important;}
.g-pl10-pc{padding-left: 10px !important;}
.g-pl15-pc{padding-left: 15px !important;}
.g-pl20-pc{padding-left: 20px !important;}
.g-pl25-pc{padding-left: 25px !important;}
.g-pl30-pc{padding-left: 30px !important;}
.g-pl35-pc{padding-left: 35px !important;}
.g-pl40-pc{padding-left: 40px !important;}
.g-pl45-pc{padding-left: 45px !important;}
.g-pl50-pc{padding-left: 50px !important;}

.g-tab-onry{display: none !important;}
.g-sp-onry{display: none !important;}
.g-pc-none{display: none !important;}
}

@media print, screen and (max-width:1080px) {
.g-txt-center-tab{text-align: center;}
.g-txt-right-tab{text-align: right;}
.g-txt-left-tab{text-align: left;}

.g-mt0-tab{margin-top: 0px !important;}
.g-mt5-tab{margin-top: 5px !important;}
.g-mt10-tab{margin-top: 10px !important;}
.g-mt15-tab{margin-top: 15px !important;}
.g-mt20-tab{margin-top: 20px !important;}
.g-mt25-tab{margin-top: 25px !important;}
.g-mt30-tab{margin-top: 30px !important;}
.g-mt35-tab{margin-top: 35px !important;}
.g-mt40-tab{margin-top: 40px !important;}
.g-mt45-tab{margin-top: 45px !important;}
.g-mt50-tab{margin-top: 50px !important;}

.g-mb0-tab{margin-bottom: 0px !important;}
.g-mb5-tab{margin-bottom: 5px !important;}
.g-mb10-tab{margin-bottom: 10px !important;}
.g-mb15-tab{margin-bottom: 15px !important;}
.g-mb20-tab{margin-bottom: 20px !important;}
.g-mb25-tab{margin-bottom: 25px !important;}
.g-mb30-tab{margin-bottom: 30px !important;}
.g-mb35-tab{margin-bottom: 35px !important;}
.g-mb40-tab{margin-bottom: 40px !important;}
.g-mb45-tab{margin-bottom: 45px !important;}
.g-mb50-tab{margin-bottom: 50px !important;}

.g-mr0-tab{margin-right: 0px !important;}
.g-mr5-tab{margin-right: 5px !important;}
.g-mr10-tab{margin-right: 10px !important;}
.g-mr15-tab{margin-right: 15px !important;}
.g-mr20-tab{margin-right: 20px !important;}
.g-mr25-tab{margin-right: 25px !important;}
.g-mr30-tab{margin-right: 30px !important;}
.g-mr35-tab{margin-right: 35px !important;}
.g-mr40-tab{margin-right: 40px !important;}
.g-mr45-tab{margin-right: 45px !important;}
.g-mr50-tab{margin-right: 50px !important;}

.g-ml0-tab{margin-left: 0px !important;}
.g-ml5-tab{margin-left: 5px !important;}
.g-ml10-tab{margin-left: 10px !important;}
.g-ml15-tab{margin-left: 15px !important;}
.g-ml20-tab{margin-left: 20px !important;}
.g-ml25-tab{margin-left: 25px !important;}
.g-ml30-tab{margin-left: 30px !important;}
.g-ml35-tab{margin-left: 35px !important;}
.g-ml40-tab{margin-left: 40px !important;}
.g-ml45-tab{margin-left: 45px !important;}
.g-ml50-tab{margin-left: 50px !important;}

.g-pt0-tab{padding-top: 0px !important;}
.g-pt5-tab{padding-top: 5px !important;}
.g-pt10-tab{padding-top: 10px !important;}
.g-pt15-tab{padding-top: 15px !important;}
.g-pt20-tab{padding-top: 20px !important;}
.g-pt25-tab{padding-top: 25px !important;}
.g-pt30-tab{padding-top: 30px !important;}
.g-pt35-tab{padding-top: 35px !important;}
.g-pt40-tab{padding-top: 40px !important;}
.g-pt45-tab{padding-top: 45px !important;}
.g-pt50-tab{padding-top: 50px !important;}

.g-pb0-tab{padding-bottom: 0px !important;}
.g-pb5-tab{padding-bottom: 5px !important;}
.g-pb10-tab{padding-bottom: 10px !important;}
.g-pb15-tab{padding-bottom: 15px !important;}
.g-pb20-tab{padding-bottom: 20px !important;}
.g-pb25-tab{padding-bottom: 25px !important;}
.g-pb30-tab{padding-bottom: 30px !important;}
.g-pb35-tab{padding-bottom: 35px !important;}
.g-pb40-tab{padding-bottom: 40px !important;}
.g-pb45-tab{padding-bottom: 45px !important;}
.g-pb50-tab{padding-bottom: 50px !important;}

.g-pr0-tab{padding-right: 0px !important;}
.g-pr5-tab{padding-right: 5px !important;}
.g-pr10-tab{padding-right: 10px !important;}
.g-pr15-tab{padding-right: 15px !important;}
.g-pr20-tab{padding-right: 20px !important;}
.g-pr25-tab{padding-right: 25px !important;}
.g-pr30-tab{padding-right: 30px !important;}
.g-pr35-tab{padding-right: 35px !important;}
.g-pr40-tab{padding-right: 40px !important;}
.g-pr45-tab{padding-right: 45px !important;}
.g-pr50-tab{padding-right: 50px !important;}

.g-pl0-tab{padding-left: 0px !important;}
.g-pl5-tab{padding-left: 5px !important;}
.g-pl10-tab{padding-left: 10px !important;}
.g-pl15-tab{padding-left: 15px !important;}
.g-pl20-tab{padding-left: 20px !important;}
.g-pl25-tab{padding-left: 25px !important;}
.g-pl30-tab{padding-left: 30px !important;}
.g-pl35-tab{padding-left: 35px !important;}
.g-pl40-tab{padding-left: 40px !important;}
.g-pl45-tab{padding-left: 45px !important;}
.g-pl50-tab{padding-left: 50px !important;}

.g-pc-onry{display: none !important;}
.g-sp-onry{display: none !important;}
.g-tab-none{display: none !important;}
}

@media print, screen and (max-width: 768px) {
.g-txt-center-sp{text-align: center;}
.g-txt-right-sp{text-align: right;}
.g-txt-left-sp{text-align: left;}

.g-mt0-sp{margin-top: 0px !important;}
.g-mt5-sp{margin-top: 5px !important;}
.g-mt10-sp{margin-top: 10px !important;}
.g-mt15-sp{margin-top: 15px !important;}
.g-mt20-sp{margin-top: 20px !important;}
.g-mt25-sp{margin-top: 25px !important;}
.g-mt30-sp{margin-top: 30px !important;}
.g-mt35-sp{margin-top: 35px !important;}
.g-mt40-sp{margin-top: 40px !important;}
.g-mt45-sp{margin-top: 45px !important;}
.g-mt50-sp{margin-top: 50px !important;}

.g-mb0-sp{margin-bottom: 0px !important;}
.g-mb5-sp{margin-bottom: 5px !important;}
.g-mb10-sp{margin-bottom: 10px !important;}
.g-mb15-sp{margin-bottom: 15px !important;}
.g-mb20-sp{margin-bottom: 20px !important;}
.g-mb25-sp{margin-bottom: 25px !important;}
.g-mb30-sp{margin-bottom: 30px !important;}
.g-mb35-sp{margin-bottom: 35px !important;}
.g-mb40-sp{margin-bottom: 40px !important;}
.g-mb45-sp{margin-bottom: 45px !important;}
.g-mb50-sp{margin-bottom: 50px !important;}

.g-mr0-sp{margin-right: 0px !important;}
.g-mr5-sp{margin-right: 5px !important;}
.g-mr10-sp{margin-right: 10px !important;}
.g-mr15-sp{margin-right: 15px !important;}
.g-mr20-sp{margin-right: 20px !important;}
.g-mr25-sp{margin-right: 25px !important;}
.g-mr30-sp{margin-right: 30px !important;}
.g-mr35-sp{margin-right: 35px !important;}
.g-mr40-sp{margin-right: 40px !important;}
.g-mr45-sp{margin-right: 45px !important;}
.g-mr50-sp{margin-right: 50px !important;}

.g-ml0-sp{margin-left: 0px !important;}
.g-ml5-sp{margin-left: 5px !important;}
.g-ml10-sp{margin-left: 10px !important;}
.g-ml15-sp{margin-left: 15px !important;}
.g-ml20-sp{margin-left: 20px !important;}
.g-ml25-sp{margin-left: 25px !important;}
.g-ml30-sp{margin-left: 30px !important;}
.g-ml35-sp{margin-left: 35px !important;}
.g-ml40-sp{margin-left: 40px !important;}
.g-ml45-sp{margin-left: 45px !important;}
.g-ml50-sp{margin-left: 50px !important;}

.g-pt0-sp{padding-top: 0px !important;}
.g-pt5-sp{padding-top: 5px !important;}
.g-pt10-sp{padding-top: 10px !important;}
.g-pt15-sp{padding-top: 15px !important;}
.g-pt20-sp{padding-top: 20px !important;}
.g-pt25-sp{padding-top: 25px !important;}
.g-pt30-sp{padding-top: 30px !important;}
.g-pt35-sp{padding-top: 35px !important;}
.g-pt40-sp{padding-top: 40px !important;}
.g-pt45-sp{padding-top: 45px !important;}
.g-pt50-sp{padding-top: 50px !important;}

.g-pb0-sp{padding-bottom: 0px !important;}
.g-pb5-sp{padding-bottom: 5px !important;}
.g-pb10-sp{padding-bottom: 10px !important;}
.g-pb15-sp{padding-bottom: 15px !important;}
.g-pb20-sp{padding-bottom: 20px !important;}
.g-pb25-sp{padding-bottom: 25px !important;}
.g-pb30-sp{padding-bottom: 30px !important;}
.g-pb35-sp{padding-bottom: 35px !important;}
.g-pb40-sp{padding-bottom: 40px !important;}
.g-pb45-sp{padding-bottom: 45px !important;}
.g-pb50-sp{padding-bottom: 50px !important;}

.g-pr0-sp{padding-right: 0px !important;}
.g-pr5-sp{padding-right: 5px !important;}
.g-pr10-sp{padding-right: 10px !important;}
.g-pr15-sp{padding-right: 15px !important;}
.g-pr20-sp{padding-right: 20px !important;}
.g-pr25-sp{padding-right: 25px !important;}
.g-pr30-sp{padding-right: 30px !important;}
.g-pr35-sp{padding-right: 35px !important;}
.g-pr40-sp{padding-right: 40px !important;}
.g-pr45-sp{padding-right: 45px !important;}
.g-pr50-sp{padding-right: 50px !important;}

.g-pl0-sp{padding-left: 0px !important;}
.g-pl5-sp{padding-left: 5px !important;}
.g-pl10-sp{padding-left: 10px !important;}
.g-pl15-sp{padding-left: 15px !important;}
.g-pl20-sp{padding-left: 20px !important;}
.g-pl25-sp{padding-left: 25px !important;}
.g-pl30-sp{padding-left: 30px !important;}
.g-pl35-sp{padding-left: 35px !important;}
.g-pl40-sp{padding-left: 40px !important;}
.g-pl45-sp{padding-left: 45px !important;}
.g-pl50-sp{padding-left: 50px !important;}

.g-sp-onry{display: block !important;}
.g-tab-onry{display: none !important;}
.g-pc-onry{display: none !important;}
.g-sp-none{display: none !important;}
}

/* ------------------------------ 仮置きクラス ------------------------------ */
.component-title{
  font-size: 24px;
  font-weight: bold;
  padding: 0;
}

.btn_area-view{
  width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media print, screen and (max-width: 768px) {
  .btn_area-view{
    width: 100%;
    display: block;
  }
  .btn_area-view .g-btn{
    margin-bottom: 20px;
  }
}

.form-input-box-actuve{
  color: #3A414D;
  background-color: #ffffff;
}

.form-active{
  color: #3A414D;
  border:1px solid #E7EEEC;
  background-color: #ffffff;
}

.form-error{
  color: #3A414D !important;
  border: 1px solid #FF3B10 !important;
  background-color: rgba(255, 59, 16, 0.1) !important;
  font-weight: 600 !important;
}
