html {
    position: static;
    margin: 0 !important;
    scroll-behavior: smooth;
}
.body {
    margin: 0;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}
.heading {
    width: 100%;
    padding: 70px 15%;
    box-sizing: border-box;
}
.heading2 {
    width: 100%;
    padding: 80px 0 120px 0;
    box-sizing: border-box;
}
a {
    display: inline-block;
}
a:hover {
    opacity: 0.8;
}
img {
    width: 100%;
    height: auto;
    display: block;
}
@media screen and (max-width: 960px) {
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
    .block0 {
        background: #fff;
        height: 50px;
    }
    .heading {
        padding: 70px 5.33%;
    }
}
/* header */
.header01 {
    height: 100px;
}
.nav01 {
    position: fixed;
    top: 20px;
    left: 50%;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 10px #00000029;
    border-radius: 30px;
    justify-content: space-between;
    align-items: center;
    display: flex;
    width: 96%;
    height: 60px;
    transform: translateX(-50%);
    z-index: 999;
}
.header_logo {
    width: 140px;
    height: auto;
    margin: 0 0 0 15px;
}

.header_left,
.header_right {
    display: flex;
    align-items: center;
}

.header_ul {
    display: flex;
    align-items: center;
    margin: 0;
}

.header_text1 {
    ext-align: left;
    font: normal normal bold 14px/14px Noto Sans JP;
    letter-spacing: 0px;
    color: #2A262C;
    list-style: none;
    text-decoration: none;
    margin: 0 14px 0 0;
}

.header_btn1 {
    display: flex;
    align-items: center;
    height: 40px;
    background: #3D919D 0% 0% no-repeat padding-box;background: #23B553 0% 0% no-repeat padding-box;
    border-radius: 20px;
    font: normal normal bold 16px/16px Noto Sans JP;
    letter-spacing: 0px;
    color: #FFFFFF;
    list-style: none;
    text-decoration: none;
    padding: 0 30px;
    margin: 0 10px 0 0;
}

@media screen and (max-width: 960px) {
    .header01 {
        height: 50px;
    }

    .nav01 {
        background: rgba(255, 255, 255, 0);
        top: 0;
        width: 100%;
        height: 50px;
        border-radius: 0;
        box-shadow: none;
    }

    .header_logo {
        width: 105px;
        margin: 0 0 0 10px;
        position: relative;
        z-index: 1001;
        transition: opacity 0.2s ease-in-out;
        display: none;
        opacity: 0
    }   

    .header_logo.visible {
        display: block;
        opacity: 1;
    }
/* ハンバーガーモーダル */
    .header_text1 {
        text-align: left;
        font: normal normal bold 16px/16px Noto Sans JP;
        letter-spacing: 0px;
        color: #2A262C;
        display: flex;
    }
    .header_icon1 {
        width: 10px;
        margin: 0 5px 0 0;
    }

      .header_modal {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        /* height: 100vh; */
        background: rgba(255, 255, 255, 1);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 100px 0 50px 0;
    }

    .header_modal.is-active {
        right: 0;
        display: flex;
    }

    .header_modal .header_ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .header_modal .header_li {
        width: 100%;
        border-bottom: 1px solid #C6C6C6;
        padding: 20px 0;
    }
/* ハンバーガーボタン */
    .ham_btn {
      width: 50px;
      height: 50px;
      border: none;
      background: rgba(255, 255, 255, 0);
      position: relative;
      cursor: pointer;
      z-index: 1001;
    }
    .ham_btn span {
      position: absolute;
      height: 2px;
      background: #000;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    .ham_btn span:nth-of-type(1) {
      width: 30px;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
    }
    .ham_btn span:nth-of-type(2) {
      width: 20px;
      top: 30px;
      left: 10px;
    }
    .ham_btn.is-active span:nth-of-type(1),
    .ham_btn.is-active span:nth-of-type(2) {
      width: 30px;
      left: 10px;
      top: 25px;
      transform: rotate(45deg);
      transform-origin: center;
    }
    .ham_btn.is-active span:nth-of-type(2) {
      transform: rotate(-45deg);
    }
    body.no-scroll {
        overflow: hidden;
    }
}
/* 共通 スクロール位置 見出し */
#message,
#candidate,
#career,
#interview,
#benefits,
#description,
#contact {
    /* padding-top: 100px;
    margin-top: -100px; */
    position: relative;
    z-index: 1;
}
.common_h2_en {
    text-align: center;
    font: normal normal bold 60px/70px Jost;
    letter-spacing: 0px;
    color: #23B553;
    margin: 0 0 7px 0;
}
.common_h2 {
    text-align: center;
    font: normal normal bold 16px/16px Noto Sans JP;
    letter-spacing: 0px;
    color: #2A262C;
    margin: 0 0 40px 0;
}
@media screen and (max-width: 960px) {
    #message,
    #candidate,
    #career,
    #interview,
    #benefits,
    #description,
    #contact {
        /* padding-top: 50px;
        margin-top: -50px; */
    }
    .common_h2_en {
        font: normal normal bold 40px/50px Jost;
    }
    .common_h2 {
       font: normal normal bold 16px/16px Noto Sans JP;
    }
}
/* 共通 ボタン */
.btn_wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0 0 0;
}
.btn_more1 {
    width: 240px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 13px 0;
    background: #FF840C 0% 0% no-repeat padding-box !important;
    border-radius: 30px;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn_more1:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.btn_text1 {
    text-align: center;
    font: normal normal 900 18px/28px Zen Maru Gothic;
    letter-spacing: 0px;
    color: #FFFFFF;
    margin: 0;
}
@media screen and (max-width: 960px) {
    .btn_more1 {
        margin: 0 auto;
    }
}
/* 共通 index single archive 404 */
._minheight {
    min-height: 50vh;
}
/* fv */
.fv1_h2 {
    text-align: center;
    /* font: normal normal normal 45px/45px Toppan BunkyuMidashiGoStdN; */
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 45px;
    font-weight: 800;

    letter-spacing: 0px;
    color: #2A262C;
    margin: 30px 0;
}
.fv1_h2 span {
    color: #23B553;
}
.slick-slide {
  margin: 0;
}
.kv_slick2 {
  direction: rtl;
}
@media screen and (max-width: 960px) {
    .fv1_h2 {
        /* font: normal normal normal 24px/24px Toppan BunkyuMidashiGoStdN; */
        font-size: 24px;
        line-height: 1.3;
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 800;
        margin: 20px 0;
    }
}
/* massage */
.message {
    content: '';
    background-image: url('../img/message_bg_pc.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.message_block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.message_left {
    width: 29%;
    margin: 0 3.5%;
    max-width: 250px;
}
.message_right {
    width: 51%;
    max-width: 430px;
    margin: 0 3.5%;
}
.message_img2 {
    margin: 0 0 30px 0;
}
.message_text1 {
    text-align: left;
    font: normal normal bold 20px/35px Noto Sans JP;
    letter-spacing: 0px;
    color: #FFFFFF;
    margin: 0;
}
@media screen and (max-width: 960px) {
    .message {
        background-image: url('../img/message_bg_sp.png');
    }
    .message_left {
        width: 100%;
        margin: 0 0 20px 0;
        max-width: 355px;
    }
    .message_right {
        width: 100%;
        max-width: 355px;
        margin: 0;
    }
}
/* candidate */
.candidate {
    position: relative;
}
.candidate_upper {
    height: 200px;
}
.candidate_down {
    content: '';
    background-image: url('../img/candidate_bg_pc.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.candidate_img1 {
    width: 822px;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.candidate_block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 100px 0 0 0;
}
.candidate_left {
    width: 34%;
    margin: 0 2%;
    max-width: 294px;
}
.candidate_right {
    width: 62%;
    max-width: 537px;
}
.candidate_text1 {
    text-align: left;
    font: normal normal bold 18px/36px Noto Sans JP;
    letter-spacing: 0px;
    color: #FFFFFF;
    margin: 0 0 30px 0;
}
@media screen and (max-width: 960px) {
    .candidate_down {
        background-image: url('../img/candidate_bg_sp.png');
    }
    .candidate_upper {
        height: 150px;
    }
    .candidate_img1 {
        width: 329px;
        top: 120px;
    }
    .candidate_block {
        margin: 0;        
    }
    .candidate_left {
        width: 100%;
        margin: 0 0 20px 0;
        max-width: 224px;
    }
    .candidate_right {
        width: 100%;
        max-width: 355px;
    }
}
/* career */
.career {
    background: #ECF5EF 0% 0% no-repeat padding-box;
}
.career_upper {
    margin: 0 0 80px 0;
}
.career_img1 {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
}
.career_block {
    width: 100%;
    max-width: 840px;
    margin: 0 auto 40px auto;
}
.career_block_upper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.career_left {
    width: 23%;
    max-width: 190px;
    margin: 0 1% 0 0;
}
.career_text1 {
    text-align: left;
    font: normal normal normal 16px/28px Noto Sans JP;
    letter-spacing: 0px;
    color: #2A262C;
    margin: 0;
}
.career_right {
    width: 76%;
    max-width: 630px;
    background: #FAFAFA 0% 0% no-repeat padding-box;
    border-radius: 20px;
    padding: 20px;
    box-sizing: border-box;
}
.career_h3 {
    text-align: left;
    font: normal normal bold 16px/24px Noto Sans JP;
    letter-spacing: 0px;
    color: #23B553;
    margin: 0 0 10px 0;
}
.career_block_down {
    text-align: right;
}
.career_mouseover {
    display: flex;
    align-items: center;
}
.career_mouseover_img1 {
    width: 31px;
    height: 31px;
    margin: 0 0 0 auto;
}
.career_text2 {
    text-align: left;
    font: normal normal bold 14px/14px Noto Sans JP;
    letter-spacing: 0px;
    color: #2A262C;
    margin: 0;
}
.career_block:hover .career_right {
  background: #23B553 0% 0% no-repeat padding-box;
}
.career_block:hover .career_h3,
.career_block:hover .career_text1 {
  color: #FFFFFF;
}
@media screen and (max-width: 960px) {
    .career_img1 {
        width: 100%;
        max-width: 355px;
        margin: 0 auto;
    }
    .career_block {
        width: 100%;
        max-width: 335px;
        margin: 0 auto 40px auto;
    }
    .career_left {
        width: 36%;
        max-width: 240px;
        margin: 0 auto 20px auto;
    }
    .career_right {
        width: 100%;
        max-width: 555px;
    }
}
/* interview */
.interview_block {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 0 15%;
    box-sizing: border-box;
}
.interview_left {
    width: 49%;
    margin: 0 2% 0 0;
    box-sizing: border-box;
}
.interview_right {
    width: 49%;
    border-radius: 20px 0px 0px 20px;
    overflow: hidden;
    aspect-ratio: 51/44;
}
.interview_h3 {
    text-align: left;
    font: normal normal bold 34px/51px Noto Sans JP;
    letter-spacing: 0px;
    color: #23B553;
    margin: 0 0 30px 0;
}
.interview_text1 {
    text-align: left;
    font: normal normal normal 16px/28px Noto Sans JP;
    letter-spacing: 0px;
    color: #2A262C;
    margin: 0;
}
.interview_text1 span {
    color: #23B553;
}
@media screen and (max-width: 960px) {
    .interview_block {
        padding: 0;
    }
    .interview_left {
        width: 100%;
        margin: 0 auto 20px auto;
        padding: 0 5.333vw;
        max-width: 555px;
    }
    .interview_right {
        width: 94.66%;
        max-width: 555px;
        margin: 0 0 0 auto;
    }
    .interview_h3 {
        font: normal normal bold 30px/45px Noto Sans JP;
    }
}
/* benefits */
.benefits {
    content: '';
    background-image: url('../img/benefits_bg_pc.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.benefits_area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.benefits_left,
.benefits_right {
    padding: 20px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    height: fit-content;
}
.benefits_left {
    max-width: 290px;
    margin: 0 30px;
}
.benefits_right {
    max-width: 520px;
}
.benefits_h3 {
    text-align: center;
    font: normal normal bold 24px/30px Noto Sans JP;
    letter-spacing: 0px;
    color: #23B553;
    margin: 0 0 20px 0;
}
.benefit_li1 {
    text-align: left;
    font: normal normal normal 16px/28px Noto Sans JP;
    letter-spacing: 0px;
    color: #2A262C;
    margin: 0 0 8px 0;
}
.benefit_li2 {
    text-align: left;
    font: normal normal normal 12px/18px Noto Sans JP;
    letter-spacing: 0px;
    color: #2A262C;
    margin: 0;
}
@media screen and (max-width: 960px) {
    .benefits {
        background-image: url('../img/benefits_bg_sp.png');
    }
    .benefits_left,
    .benefits_right {
        width: 100%;
        max-width: 555px;
    }
    .benefits_left {
        margin: 0 0 30px 0;
    }
}

/* description */
.description {
    background: #FAFAFA 0% 0% no-repeat padding-box;
}
.tab_block_upper {
    background: #ECF5EF 0% 0% no-repeat padding-box;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
}
.tab_h3,
.tab_text1,
.tab_text2,
.tab_text3 {
    text-align: left;
    font: normal normal normal 14px/19px Noto Sans JP;
    letter-spacing: 0px;
    margin: 0 0 4px 0;
    color: #2A262C;
}
.tab_h3 {
    font-weight: 700;
    color: #23B553;
    margin-top: 40px;
}
.tab_h3._first {
    margin-top: 0;
}
.tab_text1 {
    font-weight: 700;    
}
.tab_text3 {
    margin-top: 30px;
}
.tab_table {
    width: 100%;
    border-collapse: collapse;
}
.tab_th {
    width: 26%;
    text-align: left;
    font: normal normal bold 16px/28px Noto Sans JP;
    letter-spacing: 0px;
    color: #23B553;
    vertical-align: top;
    overflow-wrap: anywhere;
    border-bottom: 1px solid #C2E3CD;
    padding: 20px 0;
}
.tab_td {
    width: 74%;
    overflow-wrap: anywhere;
    border-bottom: 1px solid #C2E3CD;
    padding: 20px 0;
}
@media screen and (max-width: 960px) {
    .tab_th,
    .tab_td {
        width: 100%;
        display: inline-block;
        float: left;
    }
    .tab_th {
        border-bottom: none;
        padding: 20px 0 10px 0;
    }
    .tab_td {
        padding: 0 0 20px 0;
    }
}
/* description tab */
.tabs {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
label.tab_label1,
label.tab_label2,
label.tab_label3,
label.tab_label4 {
    width: 25%;
    height: 60px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    text-align: center;
    font: normal normal bold 16px/20px Noto Sans JP;
    letter-spacing: 0px;
    white-space: pre-line;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 20px 0px 0px;
    margin: 0;
    background: rgba(35,181,83,0.2);
    border: none;
    color: #23B553;
}
.tab_content {
    flex: 100%;
    display: none;
    padding: 40px;
    background: rgba(255,255,255,1);
    box-sizing: border-box;
    position: relative;
    animation: fadeIn 1s ease;
}
input[name="tab_switch"] {
  display: none;
}
#tab1:checked ~ label.tab_label1,
#tab2:checked ~ label.tab_label2,
#tab3:checked ~ label.tab_label3,
#tab4:checked ~ label.tab_label4 {
  background: rgba(35,181,83,1);
  color: #fff;
}
#tab1:checked ~ #tab1_content,
#tab2:checked ~ #tab2_content,
#tab3:checked ~ #tab3_content,
#tab4:checked ~ #tab4_content {
  display: block;
}
@media screen and (max-width: 960px) {
    label.tab_label1,
    label.tab_label2,
    label.tab_label3,
    label.tab_label4 {
        width: 100%;
        border-radius: 10px;
        margin: 0 0 10px 0;
    }
    .tab_content {
        padding: 20px;
    }
}
/* contact */
.contact {
    background: #FFFFFF 0% 0% no-repeat padding-box;
}
.contact_title {
    display: flex;
    align-items: center;
    margin: 0 0 10px 0;
}
.contact_block {
    margin: 0 0 20px 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.contact_text1 {
    text-align: left;
    font: normal normal bold 16px/28px Noto Sans JP;
    letter-spacing: 0px;
    color: #2A262C;
    margin: 0;
}
.contact_text1 .required {
    text-align: left;
    font: normal normal bold 15px/21px Noto Sans JP;
    letter-spacing: 0px;
    color: #BC1717;
    margin: 0 0 0 10px;
}
.contact_text2,
.contact_text3 {
    text-align: left;
    font: normal normal normal 16px/28px Noto Sans JP;
    letter-spacing: 0px;
    color: #2A262C;
    margin: 0;
}
.contact_text3 {
    opacity: 0.5;
}

input.form-control,
select.form-select {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #9F9F9F;
    border-radius: 5px;
    padding: 20px 2%;
    box-sizing: border-box;
}
input.form-control {
    width: 100%;
    height: 64px;
    box-sizing: border-box;
}
select.form-select {
    width: 45%;
    box-sizing: border-box;
}
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    height: 24px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #2A262C;
    position: relative;
    cursor: pointer;
    margin: 0 5px 0 0 !important;
}
input[type="checkbox"]:checked {
    background-color: #FF840C;
}
input[type="checkbox"]:checked::after {
    content: "✔";
    font-size: 14px;
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
button.btn-success {
    cursor: pointer;
}
.checkbox {
    text-align: left;
    font: normal normal normal 16px/28px Noto Sans JP;
    letter-spacing: 0px;
    color: #FFFFFF;
    margin: 0 !important;
}
.consent_area {
    background: #F0ECEC 0% 0% no-repeat padding-box;
    border-radius: 5px;
    padding: 3%;
    box-sizing: border-box;
    margin: 40px 0;
}
.consent_block {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #9F9F9F;
    border-radius: 5px;
    padding: 1%;
    box-sizing: border-box;
    height: 216px;
    overflow: hidden;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0 0 10px 0;
}
.consent_wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
}
@media screen and (max-width: 960px) {

}
/* contact tab */
.contact_tabs {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
label.contact_tab_label1,
label.contact_tab_label2 {
    width: 49%;
    height: 120px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font: normal normal bold 30px/75px Noto Sans JP;
    letter-spacing: 0px;
    color: #FFFFFF;
    white-space: pre-line;
    display: flex;
    border: none;
    border-radius: 11px;
    opacity: 0.3;
    margin: 0 0 30px 0;
}
label.contact_tab_label1 {
    background: transparent linear-gradient(90deg, #FFC645 0%, #FF7600 100%) 0% 0% no-repeat padding-box;
    margin: 0 2% 0 0;
}
label.contact_tab_label2 {
    background: transparent linear-gradient(90deg, #6BD05D 0%, #57B25E 100%) 0% 0% no-repeat padding-box;
}
label.contact_tab_label1 img,
label.contact_tab_label2 img {
    width: 30px;
    height: auto;
    margin: 0 0 0 20px;
}
.contact_tab1_content,
.contact_tab2_content {
    flex: 100%;
    display: none;
    padding: 40px;
    position: relative;
    animation: fadeIn 1s ease;
    box-sizing: border-box;
}
.contact_tab1_content {
    background: #FFF4E7 0% 0% no-repeat padding-box;
    border-radius: 20px;
}
.contact_tab2_content {
    background: #ECF5EF 0% 0% no-repeat padding-box;
    border-radius: 20px;
}

input[name="contact_tab_switch"] {
  display: none;
}
#contact_tab1:checked ~ label.contact_tab_label1,
#contact_tab2:checked ~ label.contact_tab_label2 {
    opacity: 1;
}
#contact_tab1:checked ~ #contact_tab1_content,
#contact_tab2:checked ~ #contact_tab2_content {
  display: block;
}
@media screen and (max-width: 960px) {
    label.contact_tab_label1,
    label.contact_tab_label2 {
        width: 100%;
        border-radius: 10px;
        margin: 0 0 10px 0;
    }
}
/* validation */
#consent-error {
    position: absolute;
    left: 50%;
    margin-top: 35px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    color: #D30001;
    font-weight: normal;
    font-size: 16px;
}
.validation-block {
    color: #fff;
}
.has-error .validation-block {
    text-align: left;
    color: #D30001;
}
/* bootstrap */
.btn {
    font-size: 15px;
    font-weight: 400;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding: 8px 20px;
}
.btn01 .btn {
    background-color: #009E96;
    width: 120px;
    margin-left: 20px;
    margin-left: 15px;
    color: #fff;
}
.modal-dialog {
    max-width: 600px;
    margin: 150px auto 0;
    width: calc(100% - 40px);
}
.modal-body {
    text-align: center;
}
.modal-footer {
    display: flex;
    justify-content: center;
}
.btn.btn-md {
    padding: 8px 20px !important;
}
.btn.btn-lg {
    padding: 18px 36px !important;
}
.btn:hover, .btn:active, .btn:focus {
    box-shadow: none !important;
    outline: none !important;
}
.btn-primary {
    background: #3958A7;
    color: #fff;
    border: 2px solid #3958A7;
}
@media screen and (max-width: 960px) {

}

/* footer */
.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #23B553 0% 0% no-repeat padding-box;
    height: 100px;
    box-sizing: border-box;
}
.footer_text1 {
    text-align: center;
    font: normal normal normal 14px/20px Noto Sans JP;
    letter-spacing: 0px;
    color: #FFFFFF;
    margin: 0;
    text-decoration: none;
}
.fixed_arrow {
    position: fixed;
    width: 50px;
    height: auto;
    right: 10px;
    bottom: 10px;
    z-index: 13;
    transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 960px) {
    .fixed_arrow {
        bottom: 60px;
    }
    .fixed_cta {
        width: 100%;
        position: fixed;
        height: 50px;
        bottom: 0;
        background: transparent linear-gradient(90deg, #FFC645 0%, #FF7600 100%) 0% 0% no-repeat padding-box;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 13;
    }
    .fixed_cta_btn1 {
        font: normal normal bold 16px/17px Noto Sans JP;
        letter-spacing: 0px;
        color: #FFFFFF;
        text-decoration: none;
    }
}
/* page02 common */
.page02_common {
    padding: 40px 0;
}
.page02_common_text1 {
    font: normal normal normal 16px/20px Noto Sans JP;
    letter-spacing: 0px;
    color: #000000;
    margin: 0 0 30px 0;
}
@media screen and (max-width: 960px) {
}

/* animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}