@charset "UTF-8";

  /* For Webkit browsers */
  ::-webkit-scrollbar {
    width: 8px;
    height: 12px;
  }

  ::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
  }

  ::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
    border: 1px solid #eee;
  }

  ::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }

  ::-webkit-scrollbar-button {
    display: none; /* Hide the arrows */
  }

.l_inner {
    width: 100%;
    padding-inline: 12.5vw;
}

@media screen and (max-width: 1440px) {
    .l_inner {
        padding-inline: 6.25vw;
    }
}

@media screen and (max-width: 768px) {
    .l_inner {
        padding-inline: 20px;
    }
}

body,
html {
    overflow-x: hidden;
    background-color: #FAFAFA;
}

img {
    width: 100%;
}

.sp_only {
    display: none;
}

@media screen and (max-width: 768px) {
    .sp_only {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .pc_only {
        display: none;
    }
}

.p_open_allow {
    position: relative;
}

.p_open_allow::after {
    content: "";
    position: absolute;
    transition: 1s;
    width: 25px;
    height: 25px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
    transform: rotate(135deg);
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .p_open_allow::after {
        width: 15px;
        height: 15px;
    }
}

.p_open_allow::before {
    content: "OPEN";
    font-size: 20px;
    position: absolute;
    bottom: -43px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .p_open_allow::before {
        font-size: 16px;
        bottom: -35px;
    }
}

.p_open_allow2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    transform: translateX(-11%);
}

@media screen and (max-width: 1024px) {
    .p_open_allow2 {
        transform: none;
    }
}

.p_open_allow3 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.p_open_allow.is_open::after {
    transform: rotate(-43deg);
    bottom: -20px;
}

.p_open_allow.is_open::before {
    content: "CLOSE";
}

@media screen and (max-width: 1024px) {
    .l_header {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
}

.l_header_wrap {
    display: flex;
    padding-inline: 6.25vw;
    justify-content: space-between;
    align-items: center;
    padding-block: 1.1458333333vw;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1440px) {
    .l_header_wrap {
        padding-inline: 40px;
    }
}

@media screen and (max-width: 1280px) {
    .l_header_wrap {
        padding-inline: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .l_header_wrap {
        justify-content: center;
    }
}

.l_header_l {
    width: 40px;
}

.l_header_l img {
    aspect-ratio: 40/40;
}

@media screen and (max-width: 1280px) {
    .l_header_l {
        width: 199px;
    }
}

.l_header_r {
    display: flex;
    align-items: center;
    gap: 2.9166666667vw;
}

@media screen and (max-width: 1024px) {
    .l_header_r {
        display: none;
    }
}

.l_header_logo {
    display: flex;
    /* Flexboxを使用して要素を横並びにする */
    align-items: center;
    /* 画像とテキストを垂直方向の中央に揃える */
    aspect-ratio: 40/40;
    width: 40px;
}

.l_header_title {
    display: inline-block;
    /* テキストをインラインブロック要素として扱う */
    vertical-align: middle;
    /* 画像とテキストを中央揃えにする */
    margin-left: 20px;
    /* 画像とテキストの間に余白を加える */
    white-space: nowrap;
    /* テキスト内の改行を無視し、一行で表示する */
    font-size: 24px;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
}

.l_header_nav_item {
    display: flex;
    align-items: center;
    gap: 2.9166666667vw;
}

.l_header_nav_item {
    font-family: "Noto Sans JP", sans-serif;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.45;
}

.l_header_nav_item:hover {
    color: #4F46E5;
}

.l_header_contact a {
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.45;
    padding: 0.9895833333vw 1.9270833333vw;
    background: linear-gradient(to left, #EAB308, #FB864C, #FD8153);
    border-radius: 51px;
    border: 2px solid transparent;
    transition: 1s;
}

.l_header_contact a:hover {
    background: #fff;
    border: 2px solid #FD8153;
    color: #FD8153;
}

.l_header_login a {
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.45;
    padding: 0.9895833333vw 1.9270833333vw;
    background: linear-gradient(to left, #4F46E5, #4F46E5AA, #4F46E5);
    border-radius: 51px;
    border: 2px solid transparent;
    transition: 1s;
}

.l_header_login a:hover {
    background: #fff;
    border: 2px solid #4F46E5;
    color: #4F46E5;
}


.l_header_fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    /* 他の要素より上に表示 */
    background-color: #fff;
    /* 背景色、必要に応じて変更してください */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* 影を追加、オプション */
    transition: 1s;
}

.l_header_fixed .l_header_nav_item {
    color: #000;
}

.l_header_fixed .l_header_nav_item:hover {
    color: #4F46E5;
}

.header_menu {
    position: relative;
    position: relative;
    background: transparent;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: none;
}

@media screen and (max-width: 1024px) {
    .header_menu {
        display: block;
        z-index: 999;
        margin-top: 8px;
    }
}

.header_menu span {
    display: inline-block;
    transition: all 0.4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 7px;
    height: 2px;
    border-radius: 5px;
    background: #5046E6;
    width: 100%;
}

.header_menu span:nth-of-type(1) {
    top: 0;
}

.header_menu span:nth-of-type(2) {
    top: 8px;
}

.header_menu span:nth-of-type(3) {
    top: 16px;
}

/*activeクラスが付与されると線が回転して×に*/
.header_menu.is_active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 66%;
    background-color: #fff;
}

.header_menu.is_active span:nth-of-type(2) {
    opacity: 0;
    /*真ん中の線は透過*/
}

.header_menu.is_active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 66%;
    background-color: #fff;
}

.nav {
    position: fixed;
    top: 0;
    right: -100%;
    /* 最初は画面の右側外に隠れている */
    width: 100%;
    height: 100%;
    background: #5046E6;
    color: #fff;
    z-index: 997;
    transition: right 0.5s ease;
    /* 右から出てくるアニメーション */
    overflow: scroll;
}

.nav_list {
    display: flex;
    height: 100%;
    overflow-y: auto;
}

@media screen and (max-width: 1024px) {
    .nav_list {
        flex-direction: column;
        align-items: center;
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

.nav_l {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav_l_logo {
    max-width: 331px;
}

@media screen and (max-width: 1024px) {
    .nav_l_logo {
        width: 210px;
    }
}

@media screen and (max-width: 768px) {
    .nav_l_logo {
        width: 175px;
    }
}

.nav_l_logo img {
    aspect-ratio: 331/150;
}

.nav_r {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 160px;
}

@media screen and (max-width: 1024px) {
    .nav_r {
        padding-right: 0;
        width: 70%;
    }
}

.nav_r_list {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 44px;
    flex-direction: column;
}

.nav_r_list li a {
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.nav_r_list_item {
    border-bottom: 1px solid #A27D53;
    padding-bottom: 25px;
    padding-top: 25px;
}

.nav_r_list_item a {
    color: #fff;
    font-weight: 700;
}

.nav_r_list_item ul {
    padding-left: 60px;
}

.nav_r_list_item ul li a {
    font-weight: 500;
    font-size: 20px;
}

@media screen and (max-width: 768px) {
    .nav_r_list_item ul li.f20 {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .nav_r_list_item.f28 {
        font-size: 24px;
    }
}

.nav.is_active {
    right: 0;
}

.nav_bottom {
    background-color: #3830DC;
    height: 100%;
    padding-top: 85px;
}

.nav_botom_text {
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
}

.nav_bottom_btn {
    margin-top: 60px;
    text-align: center;
}

.nav_bottom_btn a {
    color: #64748B;
    font-size: 16px;
    letter-spacing: 0.02em;
    line-height: 1.5;
    background-color: #fff;
    padding: 18px 75px;
    border-radius: 46px;
    font-family: "Noto Sans JP", sans-serif;
}

.l_title_wrap {
    display: flex;
    align-items: flex-end;
    gap: 1.0416666667vw;
}

.l_section_title_en {
    font-family: "LINE";
    font-size: clamp(20px, 8.0208333333vw, 124px);
    line-height: 1.33;
    letter-spacing: -0.02em;
    color: #64748B20;
    font-weight: bold;
}

.l_section_title_jp {
    font-family: "Noto Sans JP", sans-serif;
    color: #64748B;
    font-size: clamp(20px, 2.0833333333vw, 46px);
    font-weight: bold;
    line-height: 1.32;
    padding-bottom: 2.0833333333vw;
}

.l_section_message_jp {
    font-family: "Noto Sans JP", sans-serif;
    color: #000;
    font-size: clamp(20px, 2.0833333333vw, 52px);
    font-weight: bold;
    line-height: 1.32;
    padding-top: 4vw;
}

.l_footer {
    padding-top: 1vw;
    background-color: #64748B;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .l_footer {
        padding-top: 36px;
    }
}

.l_footer_logo {
    width: 284px;
    margin: auto;
}

.l_footer_logo img {
    aspect-ratio: 284/70;
}

@media screen and (max-width: 768px) {
    .l_footer_logo {
        width: 224px;
    }
}

.l_footer_name {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(12px, 1.1458333333vw, 18px);
    font-weight: 500;
    color: #fff;
    text-align: center;
    /* padding-top: 2.2395833333vw; */
}

@media screen and (max-width: 768px) {
    .l_footer_name {
        padding-top: 5px;
    }
}

.l_footer_copy {
    background-color: #64748B;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    font-size: clamp(12px, 0.8333333333vw, 16px);
    line-height: 1.5;
    padding-block: 15px;
}

@media screen and (max-width: 768px) {
    .l_footer_copy {
        padding-block: 15px;
    }
}

.l_contact_title_en {
    font-size: clamp(42px, 5.2083333333vw, 100px);
    color: #EAB308;
    font-weight: bold;
    font-family: "LINE";
    text-align: center;
    padding-top: 3.2291666667vw;
    line-height: 1.33;
    margin-top: 72px;
}

.l_contact_title_jp {
    font-size: clamp(17px, 2.0833333333vw, 40px);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
}


.l_contact_title_text_wrapper {
  padding-top: 1.25vw;
  padding-bottom: 5vw;
}

.l_contact_title_text {
    font-size: clamp(14px, 1.0416666667vw, 16px);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    text-align: center;
  }

.form_wrap {
    margin-top: 62px;
}

form {
    max-width: 900px;
    margin: auto;
}

.contact_inner {
    background-color: #F3F5FB;
    padding-top: 38px;
    padding-bottom: 94px;
    border-radius: 20px;
    padding-inline: 10px;
}

@media screen and (max-width: 768px) {
    .contact_inner {
        padding-bottom: 35px;
    }
}

.row {
    display: flex;
    margin-bottom: 40px;
    flex-direction: column;
    gap: 18px;
}

.row.ai-start {
    align-items: start;
}

.row.ai-start .head {
    margin-top: 10px;
}

.head {
    width: 100%;
    font-size: clamp(14px, 1.0416666667vw, 20px);
    font-family: "Noto Sans JP", sans-serif;
}

.head span {
    position: relative;
    display: inline-block;
}

.head span.must::after {
    content: "必須";
    white-space: nowrap;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 15px);
    font-size: clamp(12px, 0.8333333333vw, 16px);
    padding: 4px 10px;
    background-color: #FBE9E8;
    color: #C51F20;
    border-radius: 4px;
    border: 1px solid #C51F20;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .head span.must::after {
        padding: 0 8px;
    }
}

.head span.nini::after {
    content: "任意";
    white-space: nowrap;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 15px);
    font-size: clamp(12px, 0.8333333333vw, 16px);
    padding: 4px 10px;
    background-color: #E4E4E4;
    color: #626262;
    border-radius: 4px;
    border: 1px solid #626262;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .head span.nini::after {
        padding: 0 8px;
    }
}

.data {
    width: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
    width: 100%;
    height: auto;
    padding: 12px 20px;
    font-size: clamp(14px, 1.0416666667vw, 20px);
    line-height: 1.5;
    background: #fff;
    border: 1px solid #A2A2A2;
    border: none;
    outline: none;
    font-family: "Noto Sans JP", sans-serif;
    border-radius: 8px;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
    outline: 1px solid #000;
}

input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
textarea::-moz-placeholder {
    color: #9f9f9f;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder {
    color: #9f9f9f;
}

textarea {
    height: 321px;
    resize: vertical;
}

@media screen and (max-width: 768px) {
    textarea {
        height: 232px;
    }
}

.checkbox {
    margin-bottom: 0;
    margin-top: 34px;
}

.checkbox-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.checkbox-wrap label input[type=checkbox] {
    display: none;
}

.checkbox-wrap label span {
    display: inline-block;
    padding-left: 50px;
    font-size: clamp(12px, 1.0416666667vw, 20px);
    position: relative;
    font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
    .checkbox-wrap label span {
        padding-left: 39px;
    }
}

.checkbox-wrap label span::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 32px;
    height: 32px;
    border: 1px solid #A2A2A2;
    background-color: #fff;
    border-radius: 4px;
}

@media screen and (max-width: 768px) {
    .checkbox-wrap label span::before {
        width: 22px;
        height: 22px;
    }
}

.checkbox-wrap label span::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    transform: translateY(-50%) rotate(45deg);
    left: 10px;
    width: 12px;
    height: 17px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    opacity: 0;
}

@media screen and (max-width: 768px) {
    .checkbox-wrap label span::after {
        left: 8px;
        width: 7px;
        height: 14px;
    }
}

.checkbox-wrap label input[type=checkbox]:checked+span::after {
    opacity: 1;
}

.checkbox-wrap label:hover {
    cursor: pointer;
}

.L_contact_bottom_text {
    font-size: clamp(14px, 1.0416666667vw, 20px);
    font-family: "Noto Sans JP", sans-serif;
    color: #000;
    text-align: center;
    padding-top: 35px;
}

.L_contact_bottom_text a {
    color: #4F46E5;
    text-decoration: underline;
}

input[type=submit],
input[type=button] {
    border-radius: 0px;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    background: transparent;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
    display: none;
}

.row.jc-center {
    justify-content: center;
    align-items: center;
    margin-top: 59px;
}

.submit-wrap {
    position: relative;
}

.submit-wrap input[type=submit],
.submit-wrap input[type=button] {
    padding: 1.5625vw 12.5vw;
    font-size: clamp(16px, 1.3541666667vw, 26px);
    font-family: "Noto Sans JP", sans-serif;
    border-radius: 46px;
    transition: all 0.3s ease;
    background: linear-gradient(to left, #EAB308, #FB864C, #FD8153);
    border: 2px solid #FD8153;
    color: #fff;
}

@media screen and (max-width: 768px) {

    .submit-wrap input[type=submit],
    .submit-wrap input[type=button] {
        padding: 18px 75px;
    }
}

.submit-wrap:hover input[type=submit],
.submit-wrap:hover input[type=button] {
    background: #fff;
    border: 2px solid #FD8153;
    color: #FD8153;
}

.submit-wrap:hover::after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.select-wrap {
    width: 58%;
    position: relative;
}

@media screen and (max-width: 768px) {
    .select-wrap {
        width: 100%;
    }
}

.select-wrap select {
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    padding: 20px;
    outline: none;
    background-color: #fff;
    font-size: clamp(14px, 1.0416666667vw, 20px);
    font-family: "Noto Sans JP", sans-serif;
}

.select-wrap select:hover {
    cursor: pointer;
}

.select-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 8px 0 8px;
    border-color: #000000 transparent transparent transparent;
    pointer-events: none;
}

.l_contact_privacy {
    width: 100%;
    margin: auto;
    height: 230px;
    overflow: scroll;
    padding: 18px 20px 19px 12px;
    background-color: #fff;
    border: 1px solid #FAFAFA;
    border-radius: 8px;
    font-size: clamp(10px, 0.8333333333vw, 12px);
    font-family: "Noto Sans JP", sans-serif;
    color: #313131;
    letter-spacing: -0.02em;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .l_contact_privacy {
        width: 100%;
    }
}

.l_contact_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #707070;
    z-index: 99;
}

.l_thanks_title {
    color: #EAB308;
    font-size: 42px;
    font-family: "LINE";
    font-weight: bold;
    text-align: center;
    padding-top: 13px;
}

.l_thanks_wrap {
    background-color: #F3F5FB;
    padding-inline: 12px;
    margin-top: 41px;
    padding-top: 33px;
    padding-bottom: 62px;
}

.l_thanks_inner {
    padding-inline: 10px;
}

.l_thanks_heading {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #64748B;
    text-align: center;
    white-space: nowrap;
}

.l_thanks_text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 5000;
    color: #64748B;
    text-align: center;
    padding-top: 20px;
}

.l_thanks_box {
    background-color: #fff;
    padding: 8px 23px 23px 23px;
    margin-top: 16px;
}

.l_thanks_box_text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 5000;
    color: #797979;
    text-align: left;
    padding-top: 15px;
}

.l_thanks_box_text span {
    padding-left: 20px;
    position: relative;
}

.l_thanks_box_text span::after {
    content: "・";
    position: absolute;
    width: 5px;
    height: 5px;
    color: #000;
    top: 0;
    left: 0;
}

.l_thanks_bottom_text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 5000;
    color: #797979;
    text-align: left;
    padding-top: 15px;
    width: 90%;
    margin: auto;
}

.l_thanks_bottom_text a {
    text-decoration: underline;
    color: #4F46E5;
}

.l_thanks_btn {
    margin-top: 38px;
    text-align: center;
}

.l_thanks_btn a {
    color: #64748B;
    font-size: 16px;
    font-weight: 600;
    font-family: "Noto Sans JP", sans-serif;
    padding: 18px 75px;
    background-color: #fff;
    box-shadow: 0 0px 10px rgba(105, 105, 105, 0.4);
    border-radius: 30px;
}

.p_fv {
    margin-top: -5vw;
    position: relative;
    background-color: #FAFAFA;
}

#topVideo {
  width: 100%;   /* ビデオの幅を親要素の100%に設定 */
  height: auto;  /* 高さを自動調整 */
}

@media screen and (max-width: 1280px) {
    .p_fv {
        margin-top: -6.9375vw;
    }
}

@media screen and (max-width: 768px) {
    .p_fv {
        margin-top: 0;
    }
}

.p_fv_title_wrap {
    position: relative;
}

.p_fv_title_wrap .l_section_title_en {
    color: #f2f2f230;
}

.p_fv_title_wrap .l_section_title_jp {
    position: absolute;
    left: 2vw;
    top: 2vw; /* Subtitleとの間隔を確保するための例 */
    color: #fff;
    font-size: clamp(20px, 1.5vw, 28px);
    display: flex;
}

.p_fv_title_wrap .l_section_subtitle_jp {
    position: absolute;
    left: 5vw;
    top: calc(4vw + 2em); /* タイトルの下に表示するための例 */
    color: #fff;
    font-size: clamp(16px, 1.5vw, 20px);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    display: flex;
}

@media screen and (max-width: 768px) {
    .p_fv_title_wrap {
        display: none;
    }
}


.p_fv_contact_pc {
    position: absolute;
    bottom: 9.4791666667vw;
    left: 6.25vw;
}

.p_fv_contact_pc a {
    background: linear-gradient(to left, #EAB308, #FB864C, #FD8153);
    font-size: clamp(16px, 1.3541666667vw, 26px);
    padding: 1.4583333333vw 7.7604166667vw;
    border-radius: 46px;
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    transition: 1s;
}

.p_fv_contact_pc a:hover {
    background: #fff;
    border: 2px solid #FD8153;
    color: #FD8153;
}

.p_fv_contact_sp {
    position: absolute;
    bottom: 19.166667vw;
    width: 100%;
    text-align: center;
}

.p_fv_contact_sp a {
    background: linear-gradient(to left, #EAB308, #FB864C, #FD8153);
    font-size: clamp(16px, 1.3541666667vw, 26px);
    padding: 18px 75px;
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    border-radius: 46px;
    transition: 1s;
}

.p_fv_contact_sp a:hover {
    background: #fff;
    border: 2px solid #FD8153;
    color: #FD8153;
}


.swiper-container-fv {
    background: linear-gradient(to top, #647488, #fff, #647488);
    margin-top: 5vw;
    /* margin-bottom: 2vw; */
}

.swiper-slide-fv {
    /* background-color: #F2F2F5; */
    /* border-radius: 10px; */
    width: 100%;
    height: auto;
}

.swiper-container-fv-case {
    width: 100%;
    /* コンテナの幅 */
    height: auto;
    /* コンテナの高さ */
    overflow: hidden;
    /* はみ出した部分を隠す */
  }
  
.swiper-slide-fv-case {
    display: flex;
    /* 水平方向に要素を並べるデフォルトの挙動を変更 */
    flex-direction: column;
    /* 要素を垂直方向に積み重ねる */
    align-items: center;
    /* 水平中央に配置 */
    /* justify-content: center;  垂直中央に配置  */
    width: 100%;
    /* スライドの幅をコンテナに合わせる */
    height: 100%;
    /* スライドの高さをコンテナに合わせる */
    background-color: transparent;
    padding-bottom: 5vw;
}
  
.p_swiper-slide-fv-case-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(16px, 1.5vw, 24px);
    line-height: 1.33;
    color: #fff;
    font-weight: bold;
    padding-top: 1vw;
    text-align: center;
    display: flex;
}

.highlight-message {
    font-size: clamp(20px, 2vw, 40px);
    background-color: #FFFFFFCC;
    /* background: linear-gradient(to left, #fff, #4F46E530); */
    text-align: center;
    color: #4F46E5;
}

@media screen and (max-width: 1024px) {
    .p_swiper-slide-fv-case-title {
        font-family: "Noto Sans JP", sans-serif;
        font-size: clamp(10px, 1.5vw, 16px);
        line-height: 1.33;
        color: #fff;
        font-weight: bold;
        padding-top: 1vw;
        text-align: center;
    }
    
    .highlight-message {
        font-size: clamp(12px, 2vw, 18px);
        background-color: #fff;
        /* background: linear-gradient(to left, #fff, #4F46E530); */
        color: #4F46E5;
    }    

}

.p_swiper_fv_item_content {
    /* align-items: center; */
    /* background: linear-gradient(to left, #fff, #4F46E530); */
    justify-content: center;
    display: flex;
    width: auto;
    max-height: 30vw;
    height: auto;
    pointer-events: none;
    position: relative;
}

.icon-overlay {
    /* position: absolute; */
    /* top: 2vw;
    right: 20%; */
    padding: 0.5vw 1.5vw;
    margin-left: 1vw;
    background: linear-gradient(to left, #4F46E5, #4F46E5AA, #4F46E5);
    border-radius: 10%;
    color: #fff; /* テキストの色を指定 */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(20px, 1.5vw, 26px);
}
  
.swiper-fv-slide-item-img {
    width: auto;
    height: auto;
    object-fit: contain; /* or 'contain' */
    /* 画像の高さを自動調整 */
    align-items: center;
    /* 水平中央に配置 */
    /* justify-content: center; */
    /* 垂直中央に配置 */
    background-color: transparent;
  }
  
  .swiper-fv-slide-item-img-case {
    aspect-ratio: 1538/887;
  }
  
  
.p_content1 {
    background-color: #FAFAFA;
    padding-top: 6.3020833333vw;
    padding-bottom: 5.5729166667vw;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .p_content1 {
        padding-top: 60px;
        padding-bottom: 40px;
    }
}

.p_content_animation {
    color: #647488AA;
    opacity: 0.44;
    font-size: clamp(77px, 8.0208333333vw, 154px);
    font-family: "LINE";
    letter-spacing: -0.02em;
    overflow: hidden;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    mix-blend-mode: multiply;
    font-weight: bold;
}

.p_content_animation {
    margin: 0;
    display: inline-block;
    padding-left: 100%;
    white-space: nowrap;
    line-height: 1;
    -webkit-animation: scrollSample01 150s linear infinite;
    animation: scrollSample01 150s linear infinite;
}

@-webkit-keyframes scrollSample01 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scrollSample01 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.p_content1_wrap {
    display: flex;
    gap: 3.75vw;
}

@media screen and (max-width: 1024px) {
    .p_content1_wrap {
        flex-direction: column;
    }
}

.p_content1_text_box {
    width: 49%;
}

@media screen and (max-width: 1024px) {
    .p_content1_text_box {
        width: 100%;
    }
}

.p_content1_heading {
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    font-weight: bold;
    font-size: clamp(18px, 1.875vw, 36px);
    line-height: 1.66;
}

@media screen and (max-width: 1024px) {
    .p_content1_heading {
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .p_content1_heading {
        text-align: left;
    }
}

.p_content1_text {
    padding-top: 2.96875vw;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: clamp(14px, 1.0416666667vw, 20px);
    color: #fff;
    line-height: 2.1;
    display: none;
}

@media screen and (max-width: 1024px) {
    .p_content1_text {
        width: 80%;
        margin: auto;
    }
}

@media screen and (max-width: 768px) {
    .p_content1_text {
        padding-top: 60px;
        width: 100%;
    }
}

.p_content1_img {
    flex: 0 0 594px;
}

.p_content1_img img {
    aspect-ratio: 594/558;
}

@media screen and (max-width: 1440px) {
    .p_content1_img {
        flex: none;
        max-width: 450px;
    }
}

@media screen and (max-width: 1024px) {
    .p_content1_img {
        margin: auto;
    }
}

.p_content2 {
    background-color: #64748B;
    padding-top: 4.21875vw;
    padding-bottom: 5.9895833333vw;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .p_content2 {
        padding-top: 37px;
        padding-bottom: 60px;
    }
}

.p_content2_heading {
    font-size: clamp(18px, 2.5vw, 48px);
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    line-height: 1.45;
    text-align: center;
}

.p_content2_heading span {
    font-size: clamp(22px, 3.5416666667vw, 68px);
    line-height: 1.45;
    letter-spacing: 0.08em;
    background: linear-gradient(transparent 80%, #EAB308 60%);
}

.p_content2_text {
    font-size: clamp(14px, 1.0416666667vw, 20px);
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    line-height: 2.1;
    padding-top: 60px;
    text-align: center;
    display: none;
}

.p_content2_box {
    width: 100%;
    background-color: #B0C0D7;
    padding-top: 3.125vw;
    position: relative;
    margin-top: 60px;
}

@media screen and (max-width: 768px) {
    .p_content2_box {
        padding-top: 11px;
    }
}

.p_p_content2_box_heading {
    font-size: clamp(18px, 1.875vw, 36px);
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    font-weight: 600;
    line-height: 1.44;
    text-align: center;
    margin-inline: 5.0520833333vw;
    border-bottom: 2px solid #fff;
    padding-bottom: 1.3020833333vw;
}

.custom-shape-divider-bottom-1707489033 {
    position: absolute;
    top: -155px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

@media screen and (max-width: 768px) {
    .custom-shape-divider-bottom-1707489033 {
        top: -75px;
    }
}

.custom-shape-divider-bottom-1707489033 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 155px;
}

@media screen and (max-width: 768px) {
    .custom-shape-divider-bottom-1707489033 svg {
        height: 75px;
    }
}

.custom-shape-divider-bottom-1707489033 .shape-fill {
    fill: #EAB308;
}

.content_box_center_img {
    margin-top: 1.0416666667vw;
}

@media screen and (max-width: 768px) {
    .content_box_center_img {
        margin-top: 12px;
    }
}

.p_content2_bottom_wrap {
    display: flex;
    width: 100%;
    background-color: #EAB308;
    gap: 4.9479166667vw;
    justify-content: center;
    background-size: cover;
    align-items: center;
    position: relative;
}

@media screen and (max-width: 768px) {
    .p_content2_bottom_wrap {
        flex-direction: column-reverse;
    }
}

.p_content2_bottom_img {
    max-width: 423px;
}

.p_content2_bottom_img img {
    aspect-ratio: 423/275;
}

@media screen and (max-width: 768px) {
    .p_content2_bottom_img {
        max-width: 228px;
        margin: auto;
    }
}

.p_content_bottom_text {
    font-size: clamp(14px, 1.0416666667vw, 20px);
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    line-height: 2.3;
    width: 40.5%;
}

.p_content_bottom_text span {
    font-weight: bold;
    font-size: clamp(18px, 1.4583333333vw, 28px);
    line-height: 1.2;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .p_content_bottom_text {
        width: 100%;
        padding-inline: 10px;
        padding-top: 20px;
        line-height: 1.5;
    }
}

.p_function {
    padding-top: 3.8541666667vw;
    /* background: linear-gradient(to right, #FAFAFA, #647488); */
    background-color: #F2F2F5;
    padding-bottom: 5vw;
}

@media screen and (max-width: 768px) {
    .p_function {
        padding-bottom: 60px;
        padding-top: 32px;
    }
}

.p_function_title_wrap {
    position: relative;
}

.p_function_title_wrap .l_section_title_jp {
    position: absolute;
    /* left: 2vw; */
}

@media screen and (max-width: 768px) {
    .p_function_title_wrap .l_section_title_jp {
      left: 82px;
    }
}

.p_function_items {
    display: flex;
    gap: 0.7vw;
    flex-wrap: wrap;
    margin-top: 2.7604166667vw;
}

@media screen and (max-width: 768px) {
    .p_function_items {
        gap: 16px;
    }
}

.p_function_item {
    width: calc((100% - 3.125vw) / 5);
    padding: 1.71875vw 0.78125vw 1.1458333333vw;
    background-color: #fff;
    /* box-shadow: 0 3px 6px rgba(0, 3, 6, 0.16); */
    border-radius: 10px;
    transition: color 0.3s, transform 0.5s ease;
    /* 色とトランスフォームのアニメーションを滑らかに */
    cursor: pointer;
}

.p_function_item:hover {
    transform: scale(1.05);
    /* コンポーネントを5%拡大 */
}

@media screen and (max-width: 1024px) {
    .p_function_item {
        width: calc((100% - 3.125vw) / 2);
    }
}

@media screen and (max-width: 768px) {
    .p_function_item {
        width: 100%;
        padding: 17px 20px 10px;
    }
}

.p_function_item_heading {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(16px, 1.875vw, 26px);
    line-height: 1.33;
    color: #000;
    font-weight: bold;
    /* border-bottom: 2px solid #C9C9C9; */
    padding-top: 0.5625vw;
    padding-bottom: 0.5625vw;
    /* text-align: center; */
    pointer-events: none;
}

.p_function_item_content {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(12px, 1.875vw, 14px);
    color: #64748B;
    flex-wrap: wrap;
    padding-bottom: 0.5625vw;
    pointer-events: none;
}

.p_function_item_img {
    width: 50px;
    pointer-events: none;
    /* margin: auto;
  padding-top: 30px; */
}

.p_function_item_img img {
    aspect-ratio: 1/1;
}

@media screen and (max-width: 768px) {
    .p_function_item_img {
        width: 30px;
        margin-top: 10px;
        padding-top: 0;
    }
}

.p_function_item_text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(14px, 0.9375vw, 18px);
    font-weight: 500;
    line-height: 1.33;
    color: #000;
    padding-left: 40px;
    position: relative;
}

.p_function_item_text:nth-of-type(2) {
    margin-top: 1.5625vw;
}

@media screen and (max-width: 768px) {
    .p_function_item_text:nth-of-type(2) {
        margin-top: 22px;
    }
}

.p_function_item_text::after {
    position: absolute;
    content: "";
    width: 26px;
    height: 26px;
    background-color: #4F46E5;
    top: 0;
    left: 0;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    .p_function_item_text::after {
        top: -4px;
    }
}

.p_function_item_text::before {
    content: "";
    position: absolute;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg);
    top: 0.2083333333vw;
    left: 0.2604166667vw;
    z-index: 2;
    width: 17px;
    height: 10px;
}

@media screen and (max-width: 768px) {
    .p_function_item_text::before {
        top: 0;
        left: 4px;
    }
}

.p_mobile {
    background-color: #4F46E5;
    width: 100%;
    padding-top: 5.2604166667vw;
    padding-bottom: 5.2604166667vw;
    position: relative;
}

@media screen and (max-width: 768px) {
    .p_mobile {
        padding-bottom: 0;
        padding-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .p_mobile_wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.p_mobile_heading {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: clamp(20px, 2.5vw, 48px);
    color: #fff;
    line-height: 1.25;
    white-space: nowrap;
}

.p_mobile_text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: clamp(14px, 1.0416666667vw, 20px);
    color: #fff;
    line-height: 2.1;
    width: 57%;
    padding-top: 1.71875vw;
}

@media screen and (max-width: 768px) {
    .p_mobile_text {
        width: 100%;
        padding-top: 23px;
    }
}

.p_mobile_img {
    width: 30%;
    min-width: 326px;
    position: absolute;
    bottom: 0;
    right: 17.2916666667vw;
}

.p_mobile_img img {
    aspect-ratio: 447/592;
    height: 100%;
}

@media screen and (max-width: 1440px) {
    .p_mobile_img {
        right: 7.8125vw;
    }
}

@media screen and (max-width: 768px) {
    .p_mobile_img {
        position: unset;
    }
}

.p_about {
    /* background: linear-gradient(to left, #FAFAFA, #647488); */
    background-color: #FAFAFA;
    padding-top: 3.90625vw;
    padding-bottom: 6.0416666667vw;
}

@media screen and (max-width: 768px) {
    .p_about {
        /* background: linear-gradient(to left, #FAFAFA, #647488); */
        background-color: #FAFAFA;
        padding-bottom: 60px;
        padding-top: 32px;
    }
}

.p_about_wrap {
    position: relative;
}

.p_about_wrap .l_section_title_jp {
    position: absolute;
    /* left: 2vw; */
}

@media screen and (max-width: 768px) {
    .p_about_wrap .l_section_title_jp {
        left: 82px;
    }
}


.swiper-container-about {
    margin-top: 2.7604166667vw;
    margin-bottom: 2.7604166667vw;
    width: 70vw;
    /* コンテナの幅をビューポート幅に設定 */
    min-height: 45vw;
    height: auto;
    /* コンテナの高さをビューポートの高さに設定 */
}

.swiper-wrapper {
    display: flex;
    /* スライドを横に並べる */
    flex-wrap: nowrap;
    /* スライドが折り返さないように設定 */
    transition-timing-function: ease-in-out;
}

.swiper-slide-about {
    background-color: #F2F2F5;
    border-radius: 20px;
    width: 40vw;
    /* 各スライドの幅をビューポート幅の70%に設定 */
    min-height: 45vw;
    height: auto;
    /* 高さをビューポート高さの60%に設定 */
    margin-right: 10px;
    /* スライド間の余白 */
    cursor: grab;
}

@media screen and (max-width: 1440px) {
  .swiper-slide-about {
    background-color: #F2F2F5;
    border-radius: 20px;
    width: 65vw;
    /* 各スライドの幅をビューポート幅の70%に設定 */
    min-height: 45vw;
    height: auto;
    /* 高さをビューポート高さの60%に設定 */
    margin-right: 10px;
    /* スライド間の余白 */
    cursor: grab;
  }
}

@media screen and (max-width: 768px) {
  .swiper-slide-about {
    background-color: #F2F2F5;
    border-radius: 20px;
    width: 85vw;
    /* 各スライドの幅をビューポート幅の70%に設定 */
    min-height: 45vw;
    height: auto;
    /* 高さをビューポート高さの60%に設定 */
    margin-right: 10px;
    /* スライド間の余白 */
    cursor: grab;
  }
}


.swiper-slide-about:active {
    cursor: grabbing;
}

.p_swiper_about_item_heading {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(16px, 1.875vw, 24px);
    line-height: 1.33;
    color: #64748B;
    /* font-weight: bold; */
    /* border-bottom: 2px solid #C9C9C9; */
    padding-top: 1vw;
    padding-left: 1vw;
    padding-bottom: 0.5vw;
    text-align: start;
    width: 100%;
    pointer-events: none;
}

.p_swiper_about_item_title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 1.3vw, 32px);
  line-height: 1.33;
  color: #000;
  font-weight: bold;
  /* border-bottom: 2px solid #C9C9C9; */
  padding-left: 1vw;
  padding-bottom: 1vw;
  width: 100%;
  pointer-events: none;
}

.p_swiper_about_item_theme {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 1vw, 20px);
  line-height: 1.33;
  color: #000;
  padding-left: 1vw;
  padding-right: 1vw;
  padding-bottom: 0.5vw;
  align-items: center;
  display: flex;
  width: 100%;
  pointer-events: none;
}

.p_swiper_about_item_content {
  padding-top: 1vw;
  padding-bottom: 2vw;
  padding-left: 1vw;
  padding-right: 1vw;
  /* align-items: center; */
  justify-content: center;
  display: flex;
  width: auto;
  max-height: 80%;
  height: auto;
  pointer-events: none;
}

.p_swiper_about_item_content_icon {
  width: 50px;
  aspect-ratio: 50/50;
}

@media screen and (max-width: 768px) {
  .p_swiper_about_item_content_icon {
    width: 30px;
    aspect-ratio: 30/30;
  }
}


.p_swiper_about_item_content_spacer {
  padding-right: 2vw;
}

.p_swiper_about_item_content_msg {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 1vw, 20px);
  line-height: 1.33;
  color: #000;
  padding-left: 1vw;
  padding-right: 1vw;
  padding-top: 1vw;
  padding-bottom: 1vw;
  align-items: center;
  /* justify-content: center; */
  display: flex;
  width: 90%;
  pointer-events: none;
  /* font-weight: bold; */
  background-color: #fff;
  border-radius: 20px;

}

.swiper-about-slide-item-img {
  width: auto;
  height: auto;
  /* 画像がスライドの幅より大きくならないように制限 */
  max-width: 90%;
  /* max-height: 85%; */
  /* 画像の高さを自動調整 */
  align-items: center;
  /* 水平中央に配置 */
  /* justify-content: center; */
  /* 垂直中央に配置 */
}

.swiper-about-slide-item-img-case {
  aspect-ratio: 1280/720;
}


.swiper-container-about-case {
  width: 100%;
  /* コンテナの幅 */
  height: auto;
  /* コンテナの高さ */
  overflow: hidden;
  /* はみ出した部分を隠す */
}

.swiper-slide-about-case {
  display: flex;
  /* 水平方向に要素を並べるデフォルトの挙動を変更 */
  flex-direction: column;
  /* 要素を垂直方向に積み重ねる */
  align-items: center;
  /* 水平中央に配置 */
  /* justify-content: center;  垂直中央に配置  */
  width: 100%;
  /* スライドの幅をコンテナに合わせる */
  height: auto;
  /* スライドの高さをコンテナに合わせる */
  background-color: transparent;
}



.p_about_items {
    margin-top: 4.6875vw;
}

.p_about_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.p_about_item:nth-of-type(n + 2) {
    margin-top: 2.6041666667vw;
}

@media screen and (max-width: 768px) {
    .p_about_item:nth-of-type(n + 2) {
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .p_about_item {
        flex-direction: column-reverse;
    }
}

.p_about_item2 {
    flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
    .p_about_item2 {
        flex-direction: column-reverse;
    }
}

.p_about_item_l {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 1.0416666667vw;
    position: relative;
}

@media screen and (max-width: 768px) {
    .p_about_item_l {
        width: 100%;
        margin-top: 25px;
    }
}

.p_about_item_heading {
    font-size: clamp(18px, 1.875vw, 36px);
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
    color: #4F46E5;
    line-height: 1.5;
    padding-left: 3.96875vw;
    position: relative;
    letter-spacing: -0.04em;
}

.p_about_item_heading::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    background-color: #4F46E5;
    top: 10px;
    left: 0;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    .p_about_item_heading::before {
        width: 35px;
        height: 35px;
    }
}

.p_about_item_heading::after {
    content: "";
    position: absolute;
    border-left: 7px solid #fff;
    border-bottom: 7px solid #fff;
    transform: rotate(-45deg);
    top: 17px;
    left: 0.46875vw;
    z-index: 2;
    width: 33px;
    height: 21px;
}

@media screen and (max-width: 768px) {
    .p_about_item_heading::after {
        width: 23px;
        height: 16px;
        border-left: 4px solid #fff;
        border-bottom: 4px solid #fff;
        top: 16px;
        left: 6px;
    }
}

@media screen and (max-width: 768px) {
    .p_about_item_heading {
        padding-left: 40px;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
}

.p_about_item_text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(14px, 1.0416666667vw, 20px);
    line-height: 2.1;
    color: #000;
    font-weight: bold;
    width: 96%;
}

@media screen and (max-width: 768px) {
    .p_about_item_text {
        padding-top: 20px;
    }
}

.p_about_item_r {
    max-width: 720px;
    width: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    aspect-ratio: 720/442;
}

.p_about_ex {
    margin-top: 6.7708333333vw;
}

@media screen and (max-width: 768px) {
    .p_about_ex {
        margin-top: 66px;
    }
}

.p_about_ex_heading {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(20px, 2.5vw, 48px);
    font-weight: bold;
    line-height: 1.45;
    color: #4F46E5;
    text-align: center;
}

.p_about_ex_items {
    display: flex;
    gap: 1.5625vw;
    margin-top: 4.1666666667vw;
}

@media screen and (max-width: 768px) {
    .p_about_ex_items {
        gap: 16px;
        flex-direction: column;
    }
}

.p_about_ex_item {
    width: calc((100% - 1.5625vw) / 3);
    border: 3px solid #4F46E5;
    border-radius: 10px;
    background-color: #fff;
    padding: 2.1354166667vw 0.78125vw 0.78125vw;
}

@media screen and (max-width: 768px) {
    .p_about_ex_item {
        width: 100%;
        padding: 15px 13px 13px;
    }
}

.p_about_ex_item_heading {
    font-family: "Noto Sans JP", sans-serif;
    color: #4F46E5;
    font-weight: bold;
    font-size: clamp(18px, 1.6666666667vw, 32px);
    line-height: 1.34;
    border-bottom: 2px solid #C9C9C9;
    padding-bottom: 1.09375vw;
    letter-spacing: -0.05em;
    text-align: center;
}

.p_about_ex_item_img {
    max-width: 422px;
    width: 100%;
    margin: auto;
    margin-top: 0.5208333333vw;
}

.p_about_ex_item_img img {
    aspect-ratio: 422/344;
}

@media screen and (max-width: 768px) {
    .p_about_ex_item_img img {
        aspect-ratio: 304/185;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: top;
        object-position: top;
    }
}

.about1::after {
    content: "";
    position: absolute;
    width: 158px;
    height: 335px;
    background: url(../img/about1_1.png);
    background-size: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
}

@media screen and (max-width: 768px) {
    .about1::after {
        width: 42px;
        height: 89px;
        left: unset;
        transform: none;
        right: 0;
        top: -5px;
    }
}

.about2::after {
    content: "";
    position: absolute;
    width: 281px;
    height: 341px;
    background: url(../img/about2_2.png);
    background-size: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
    .about2::after {
        width: 66px;
        height: 80px;
        left: unset;
        transform: none;
        right: 0;
        top: -16px;
    }
}

.about3::after {
    content: "";
    position: absolute;
    width: 274px;
    height: 348px;
    background: url(../img/about3_3.png);
    background-size: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
    .about3::after {
        width: 68px;
        height: 87px;
        left: unset;
        transform: none;
        right: 0;
        top: 2px;
    }
}

.about4::after {
    content: "";
    position: absolute;
    width: 288px;
    height: 335px;
    background: url(../img/about4_4.png);
    background-size: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
    .about4::after {
        width: 74px;
        height: 87px;
        left: unset;
        transform: none;
        right: 0;
        top: -13px;
    }
}

.about5::after {
    content: "";
    position: absolute;
    width: 282px;
    height: 341px;
    background: url(../img/about5_5.png);
    background-size: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
    .about5::after {
        width: 70px;
        height: 85px;
        left: unset;
        transform: none;
        right: 0;
        top: 5px;
    }
}

.p_flow {
    /* background: linear-gradient(to right, #FAFAFA, #647488); */
    background-color: #FAFAFA;
    padding-top: 3.6458333333vw;
    border-bottom: 1px solid #64748B;
}

.p_flow_title_wrap {
    position: relative;
}

.p_flow_title_wrap .l_section_title_jp {
    position: absolute;
    /* left: 2vw; */
}

@media screen and (max-width: 768px) {
    .p_flow_title_wrap .l_section_title_jp {
        left: 82px;
    }
}

.p_flow_title_en {
    color: #97A2B1;
}

.p_flow_title_jp {
    color: #fff;
}

.p_flow_content {
    margin-top: 2.7604166667vw;
    margin-bottom: 2.7604166667vw;
    background-color: transparent;
    border-radius: 10px;
    /* box-shadow: 0 3px 6px rgba(0, 3, 6, 0.16); */

}

.p_flow_item1 {
    background-color: #F2F2F5;
    display: flex;
    padding-left: 11.1979166667vw;
    align-items: center;
    position: relative;
    padding-top: 0.78125vw;
    padding-bottom: 3.8541666667vw;
}

@media screen and (max-width: 768px) {
    .p_flow_item1 {
        padding-bottom: 83px;
        flex-direction: column;
        padding-left: 0;
    }
}

.p_flow_item1 .p_flow_item_number {
    font-size: clamp(80px, 6.25vw, 120px);
    font-family: "LINE";
    font-weight: bold;
    color: #4F46E5;
    line-height: 1.32;
}

.p_flow_item1 .p_flow_item_heading {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(20px, 1.6666666667vw, 32px);
    color: #4F46E5;
    line-height: 1.34;
    font-weight: bold;
}

.p_flow_item1 .p_flow_item_r {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(14px, 1.0416666667vw, 20px);
    line-height: 1.6;
    color: #000;
    font-weight: 500;
    width: 56%;
}

@media screen and (max-width: 768px) {
    .p_flow_item1 .p_flow_item_r {
        width: 90%;
    }
}

.p_flow_item1 .custom-shape-divider-bottom-1707371292 {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.p_flow_item1 .custom-shape-divider-bottom-1707371292 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 76px;
}

.p_flow_item1 .custom-shape-divider-bottom-1707371292 .shape-fill {
    fill: #4F46E5;
}

.p_flow_item1 .p_flow_item_l {
    display: flex;
    align-items: center;
    gap: 2.6041666667vw;
    width: 39%;
}

@media screen and (max-width: 768px) {
    .p_flow_item1 .p_flow_item_l {
        width: 70%;
        justify-content: flex-start;
    }
}

.p_flow_item1_1 {
    padding-top: 1.5625vw;
    border-top-left-radius: 20px;
    /* 左上の角を丸くする */
    border-top-right-radius: 20px;
    /* 右上の角を丸くする */
}

.p_flow_item2 {
    padding-left: 11.1979166667vw;
    background-color: #4F46E5;
}

@media screen and (max-width: 768px) {
    .p_flow_item2 {
        padding-left: 0;
    }
}

.p_flow_item2 .p_flow_item_number {
    font-size: clamp(80px, 6.25vw, 120px);
    font-family: "LINE";
    font-weight: bold;
    color: #F2F2F5;
    line-height: 1.32;
}

.p_flow_item2 .p_flow_item_heading {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(20px, 1.6666666667vw, 32px);
    color: #F2F2F5;
    line-height: 1.34;
    font-weight: bold;
}

.p_flow_item2 .p_flow_item_r {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(14px, 1.0416666667vw, 20px);
    line-height: 1.6;
    color: #F2F2F5;
    font-weight: 500;
    width: 56%;
}

@media screen and (max-width: 768px) {
    .p_flow_item2 .p_flow_item_r {
        width: 90%;
    }
}

.p_flow_item2 .custom-shape-divider-bottom-1707371292 {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.p_flow_item2 .custom-shape-divider-bottom-1707371292 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 76px;
}

.p_flow_item2 .custom-shape-divider-bottom-1707371292 .shape-fill {
    fill: #F2F2F5;
}

.p_flow_item3 {
    border-bottom-left-radius: 20px;
    /* 左下の角を丸くする */
    border-bottom-right-radius: 20px;
    /* 右下の角を丸くする */
}

.p_flow_item3 .custom-shape-divider-bottom-1707371292 {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.p_flow_item3 .custom-shape-divider-bottom-1707371292 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 76px;
}

.p_flow_item3 .custom-shape-divider-bottom-1707371292 .shape-fill {
    fill: transparent;
}

.p_plan {
    /* background: linear-gradient(to left, #FAFAFA, #647488); */
    background-color: #F2F2F5;
    padding-top: 4.53125vw;
    padding-bottom: 6.25vw;
    margin-top: -2px;
}

@media screen and (max-width: 768px) {
    .p_plan {
        padding-top: 30px;
        padding-bottom: 80px;
    }
}

.p_plan_title_wrap {
    position: relative;
}

.p_plan_title_wrap .l_section_title_jp {
    position: absolute;
    /* left: 2vw; */
}

@media screen and (max-width: 768px) {
    .p_plan_title_wrap .l_section_title_jp {
        left: 82px;
    }
}

.p_plan_title_en {
    color: #97A2B1;
}

.p_plan_title_jp {
    color: #fff;
}

.p_plan_items {
    display: flex;
    margin-top: 2.7604166667vw;
    gap: 1.5625vw;
}

@media screen and (max-width: 768px) {
    .p_plan_items {
        flex-direction: column;
    }
}

.p_plan_item {
    /* width: calc((100% - 30px) / 2); */
    width: 100%;
    background-color: #fff;
    border-radius: 20px;
    /* box-shadow: 0 3px 6px rgba(0, 3, 6, 0.16); */
}


.p_plan_item .p_plan_item_heading {
    padding-top: 1.3020833333vw;
    padding-bottom: 1.3020833333vw;
    color: #fff;
    font-size: clamp(14px, 1.875vw, 30px);
    line-height: 1.33;
    text-align: center;
    background-color: #4F46E5;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    border-radius: 10px 10px 0 0;
}

.p_plan_item .p_plan_item_price {
    font-size: clamp(26px, 3.0208333333vw, 50px);
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.34;
    color: #4F46E5;
    font-weight: bold;
}

.p_plan_item .p_plan_item_price span {
    font-size: clamp(36px, 5.15625vw, 70px);
    line-height: 1.33;
}

.p_plan_item_content {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #C9C9C9;
    padding-bottom: 2.5vw;
    flex-direction: column;
    width: 90%;
    margin: auto;
    padding-top: 3.3854166667vw;
}

.p_plan_item_top {
    font-size: clamp(16px, 2.0833333333vw, 32px);
    color: #64748B;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.32;
    font-weight: bold;
}

.p_plan_item_text {
    font-size: clamp(12px, 1.0416666667vw, 16px);
    font-family: "Noto Sans JP", sans-serif;
    color: #64748B;
    line-height: 1.6;
    font-weight: 500;
    padding-top: 2.7083333333vw;
    padding-bottom: 2.9166666667vw;
    padding-left: 1.5vw;
    /* text-align: center; */
}

.p_plan_item2 {
    width: calc((100% - 30px) / 2);
    background-color: #fff;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .p_plan_item2 {
        width: 100%;
    }
}

.p_plan_item2 .p_plan_item_heading {
    padding-top: 1.3020833333vw;
    padding-bottom: 1.3020833333vw;
    color: #fff;
    font-size: clamp(20px, 1.875vw, 36px);
    line-height: 1.33;
    text-align: center;
    background-color: #EAB308;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    border-radius: 10px 10px 0 0;
}

.p_plan_item2 .p_plan_item_price {
    font-size: clamp(34px, 3.0208333333vw, 58px);
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.34;
    color: #EAB308;
    font-weight: bold;
}

.p_plan_item2 .p_plan_item_price span {
    font-size: clamp(58px, 5.15625vw, 99px);
    line-height: 1.33;
}

.p_how {
    padding-top: 3.3854166667vw;
    background-color: #F3F3F3;
    padding-bottom: 6.09375vw;
}

.p_how_wrap {
    position: relative;
}

.p_how_wrap .l_section_title_jp {
    position: absolute;
    left: 20vw;
}

.p_how_heading {
    padding-top: 1.9791666667vw;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(16px, 1.875vw, 36px);
    font-weight: 600;
    color: #000;
    text-align: center;
}

.p_how_video {
    width: 100%;
    position: relative;
}

.p_how_video img {
    aspect-ratio: 1440/810;
}

.p_how_video::after {
    content: "";
    position: absolute;
    width: 106px;
    height: 106px;
    background-color: #4F46E5;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
    .p_how_video::after {
        width: 42px;
        height: 42px;
    }
}

.p_how_video::before {
    content: "";
    position: absolute;
    width: 39px;
    height: 44px;
    background: url(../img/yajirusi.png);
    top: 50%;
    left: 50%;
    transform: translate(-36%, -50%);
    z-index: 2;
    background-size: cover;
}

@media screen and (max-width: 768px) {
    .p_how_video::before {
        width: 16px;
        height: 18px;
    }
}

.p_contact {
    background: linear-gradient(to bottom, #EAB308, #FD8153);
    display: flex;
    justify-content: space-between;
}

.p_contact_wrap {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .p_contact_wrap {
        flex-direction: column-reverse;
    }
}

.p_contact_l {
    padding-block: 100px;
}

@media screen and (max-width: 768px) {
    .p_contact_l {
        padding-top: 20px;
        padding-bottom: 42px;
    }
}

.p_contact_heading {
    font-size: clamp(16px, 2.5vw, 48px);
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.25;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .p_contact_heading {
        text-align: center;
    }
}

.p_contact_btn {
    margin-top: 4.1666666667vw;
}

@media screen and (max-width: 768px) {
    .p_contact_btn {
        margin-top: 37px;
        text-align: center;
    }
}

.p_contact_btn a {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(16px, 1.3541666667vw, 26px);
    color: #000;
    background-color: #fff;
    padding-block: 1.5104166667vw;
    padding-inline: 7.5520833333vw;
    border-radius: 46px;
}

.p_contact_btn a:hover {
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .p_contact_btn a {
        padding-block: 18px;
        padding-inline: 75px;
    }
}

.p_contact_r {
    max-width: 653px;
}

.p_contact_r img {
    aspect-ratio: 653/477;
}

/*# sourceMappingURL=style.css.map */

.footer_links {
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    list-style: none;
    /* リストマークを消去 */
    padding: 0;
    /* デフォルトのパディングを消去 */
    display: flex;
    /* Flexboxを使用して横並びにする */
    justify-content: center;
    /* 中央揃えにする */
    gap: clamp(20px, 10vw, 200px);
    /* リンクの間隔 */
}

.footer_links li {
    display: inline;
    /* リストアイテムをインライン表示にする */
}

.footer_links a {
    text-decoration: none;
    color: inherit;
    /* 元のリンクの色 */
    cursor: pointer;
    /* マウスオーバー時にカーソルをポインターに変更 */
    transition: color 0.3s, transform 0.5s ease;
    /* 色とトランスフォームのアニメーションを滑らかに */
}

.footer_links a:hover {
    transform: scale(1.05);
    /* コンポーネントを5%拡大 */
}

.l_privacy_policy_wrap {
    background-color: #F3F5FB;
    padding-inline: 12px;
    margin-top: 41px;
    padding-top: 33px;
    padding-bottom: 62px;
}

.l_privacy_policy_heading {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #64748B;
    text-align: left;
    white-space: nowrap;
}

.l_privacy_policy_text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 7000;
    color: #64748B;
    text-align: left;
    padding-top: 20px;
}

.l_specified_commercial_transactions_act_wrap {
    background-color: #F3F5FB;
    padding-inline: 12px;
    margin-top: 41px;
    padding-top: 33px;
    padding-bottom: 62px;
}

.l_specified_commercial_transactions_act_heading {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #64748B;
    text-align: left;
    white-space: nowrap;
}

.l_specified_commercial_transactions_act_text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 7000;
    color: #64748B;
    text-align: left;
    padding-top: 20px;
}

.p_target {
    /* background: linear-gradient(to left, #FAFAFA, #647488); */
    background-color: #F2F2F5;
    padding-top: 3.90625vw;
    padding-bottom: 6.0416666667vw;
}

@media screen and (max-width: 768px) {
    .p_target {
        padding-bottom: 60px;
        padding-top: 32px;
    }
}

.p_target_wrap {
    position: relative;
}

.p_target_wrap .l_section_title_jp {
    position: absolute;
    /* left: 2vw; */
}

@media screen and (max-width: 768px) {
    .p_target_wrap .l_section_title_jp {
        left: 82px;
    }
}

.p_target_items {
    margin-top: 4.6875vw;
}

.p_target_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.p_target_item:nth-of-type(n + 2) {
    margin-top: 2.6041666667vw;
}

@media screen and (max-width: 768px) {
    .p_target_item:nth-of-type(n + 2) {
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .p_target_item {
        flex-direction: column-reverse;
    }
}

.p_target_item2 {
    flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
    .p_target_item2 {
        flex-direction: column-reverse;
    }
}

.p_target_item_l {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 1.0416666667vw;
    position: relative;
}

@media screen and (max-width: 768px) {
    .p_target_item_l {
        width: 100%;
        margin-top: 25px;
    }
}

.p_target_item_heading {
    font-size: clamp(18px, 1.875vw, 36px);
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
    color: #4F46E5;
    line-height: 1.5;
    padding-left: 3.96875vw;
    position: relative;
    letter-spacing: -0.04em;
}

.p_target_item_heading::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    background-color: #4F46E5;
    top: 10px;
    left: 0;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    .p_target_item_heading::before {
        width: 35px;
        height: 35px;
    }
}

.p_target_item_heading::after {
    content: "";
    position: absolute;
    border-left: 7px solid #fff;
    border-bottom: 7px solid #fff;
    transform: rotate(-45deg);
    top: 17px;
    left: 0.46875vw;
    z-index: 2;
    width: 33px;
    height: 21px;
}

@media screen and (max-width: 768px) {
    .p_target_item_heading::after {
        width: 23px;
        height: 16px;
        border-left: 4px solid #fff;
        border-bottom: 4px solid #fff;
        top: 16px;
        left: 6px;
    }
}

@media screen and (max-width: 768px) {
    .p_target_item_heading {
        padding-left: 40px;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
}

.p_target_item_text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(14px, 1.0416666667vw, 20px);
    line-height: 2.1;
    color: #000;
    font-weight: bold;
    width: 96%;
}

@media screen and (max-width: 768px) {
    .p_target_item_text {
        padding-top: 20px;
    }
}

.p_target_item_r {
    max-width: 720px;
    width: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    aspect-ratio: 720/442;
}

.p_target_ex {
    /* margin-top: 6.7708333333vw; */
}

@media screen and (max-width: 768px) {
    .p_target_ex {
        margin-top: 66px;
    }
}

.p_target_ex_heading {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(20px, 2.5vw, 48px);
    font-weight: bold;
    line-height: 1.45;
    color: #4F46E5;
    text-align: center;
}

.p_target_ex_items {
    display: flex;
    gap: 1.5625vw;
    margin-top: 4.1666666667vw;
}

@media screen and (max-width: 768px) {
    .p_target_ex_items {
        gap: 16px;
        flex-direction: column;
    }
}

.p_target_ex_item {
    width: calc((100% - 1.5625vw) / 3);
    background-color: transparent;
    position: relative;
    border-radius: 10px;
    /* 角の丸みを設定 */
}

@media screen and (max-width: 768px) {
    .p_target_ex_item {
        width: 100%;
        /* padding: 15px 13px 13px; */
    }
}

.p_target_ex_item_heading {
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    font-weight: bold;
    font-size: clamp(20px, 1.6666666667vw, 36px);
    line-height: 1.34;
    border-bottom: 2px solid #C9C9C9;
    padding-bottom: 1.09375vw;
    letter-spacing: -0.05em;
    text-align: start;
    position: absolute;
    top: 30%;
    left: 5%;
    z-index: 2;
}

.p_target_ex_item_img {
    width: 100%;
    margin: 0;
    border-radius: 10px;
    /* 角の丸みを設定 */
    /* box-shadow: 2px 2px 8px rgba(100, 100, 100, 0.5); */
}

.p_target_ex_item_img_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Black with 50% opacity */
    z-index: 1;
    /* Below the text but above the image */
    border-radius: 10px;
    /* 角の丸みを設定 */
}

.p_target_ex_item_img img {
    border-radius: 10px;
    /* 角の丸みを設定 */
    aspect-ratio: 422/344;
}

@media screen and (max-width: 768px) {
    .p_target_ex_item_img img {
        aspect-ratio: 304/185;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: top;
        object-position: top;
    }
}


.p_overview {
    /* background: linear-gradient(to left, #FAFAFA, #647488); */
    background-color: #FAFAFA;
    padding-top: 3.90625vw;
    padding-bottom: 6.0416666667vw;
}

@media screen and (max-width: 768px) {
    .p_overview {
        background-color: #FAFAFA;
        padding-bottom: 60px;
        padding-top: 32px;
    }
}

.p_overview_wrap {
    position: relative;
}

.p_overview_wrap .l_section_title_jp {
    position: absolute;
    /* left: 2vw; */
}

@media screen and (max-width: 768px) {
    .p_overview_wrap .l_section_title_jp {
        left: 82px;
    }
}

.p_overview_content {
    margin-top: 2.7604166667vw;
    margin-bottom: 2.7604166667vw;
    background-color: transparent;
    /* box-shadow: 0 3px 6px rgba(0, 3, 6, 0.16); */

}



.container {
    position: relative;
    width: 200px;
    height: 200px;
}

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    z-index: 1;
}

.box {
    position: absolute;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(80px) rotate(-var(--angle));
    animation: rotate 20s linear infinite;
}

.box:hover {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(80px) rotate(-var(--angle)) scale(1.1);
    transition: transform 0.3s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    /* 曇りガラス効果 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
}

.dialog-content {
    background: white;
    padding: 50px;
    border-radius: 10px;
    position: relative;
    width: 70%;
    height: 90%;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .dialog-content {
        background: white;
        padding: 50px;
        border-radius: 10px;
        position: relative;
        width: 95%;
        height: auto;
        justify-content: center;
        align-items: center;
    }
}


.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

.dialog-image-container {
    display: flex;
    /* Flexboxを使用して画像を横に並べる */
    justify-content: center;
    /* 中央寄せ */
    gap: 20px;
    /* 画像の間にスペースを設ける */
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-container-function {
    width: 100%;
    /* コンテナの幅 */
    height: 100%;
    /* コンテナの高さ */
    overflow: hidden;
    /* はみ出した部分を隠す */
}

.swiper-slide-function {
    display: flex;
    /* 水平方向に要素を並べるデフォルトの挙動を変更 */
    flex-direction: column;
    /* 要素を垂直方向に積み重ねる */
    align-items: center;
    /* 水平中央に配置 */
    /* justify-content: center;  垂直中央に配置  */
    width: 100%;
    /* スライドの幅をコンテナに合わせる */
    height: 100%;
    /* スライドの高さをコンテナに合わせる */
    background-color: #fff;
}

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background-color: #CACACA;
    opacity: 0.5;
    /* ドットの透明度 */
    border-radius: 50%;
    /* ドットを円形にする */
}

.swiper-pagination-bullet-active {
    background-color: #4F46E5;
    /* アクティブなドットの色 */
}

.swiper-pagination {
    position: absolute;
    bottom: 0;
    /* コンテナの底部に固定 */
    left: 0;
    width: 100%;
    text-align: center;
}

.swiper-slide-item-msg {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(20px, 1.6666666667vw, 32px);
    font-weight: bold;
    color: #000;
    text-align: left;
    padding-bottom: 20px;
    width: 100%;
    /* テキストコンテナの幅を親要素に合わせる */
}

.swiper-slide-item-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(10px, 1.6666666667vw, 18px);
    font-weight: bold;
    color: #64748B;
    text-align: left;
    padding-bottom: 50px;
    width: 100%;
    /* テキストコンテナの幅を親要素に合わせる */
}

.swiper-slide-item-img {
    width: auto;
    /* 画像がスライドの幅より大きくならないように制限 */
    max-width: 90%;
    max-height: 65%;
    /* 画像の高さを自動調整 */
    align-items: center;
    /* 水平中央に配置 */
    justify-content: center;
    /* 垂直中央に配置 */
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0, 3, 6, 0.16);
}

.swiper-slide-item-img-screen1 {
    aspect-ratio: 1218/732;
}

.swiper-slide-item-img-screen2 {
    aspect-ratio: 456/555;
}

.swiper-slide-item-img-screen3 {
    aspect-ratio: 1847/893;
}

.swiper-slide-item-img-screen4 {
    aspect-ratio: 1825/805;
}

.swiper-slide-item-img-screen5 {
    aspect-ratio: 1855/900;
}

.swiper-slide-item-img-screen6 {
    aspect-ratio: 1910/883;
}

.swiper-slide-item-img-screen7 {
    aspect-ratio: 1684/421;
}

.swiper-slide-item-img-screen8 {
    aspect-ratio: 1667/768;
}

.swiper-slide-item-img-screen9 {
    aspect-ratio: 1243/641;
}

.swiper-slide-item-img-screen10 {
    aspect-ratio: 1909/883;
}

.swiper-slide-item-img-screen11 {
    aspect-ratio: 1518/804;
}

.swiper-slide-item-img-screen12 {
    aspect-ratio: 1850/894;
}

.swiper-slide-item-img-screen13 {
    aspect-ratio: 1857/770;
}

.swiper-slide-item-img-screen14 {
    aspect-ratio: 1842/900;
}

.swiper-slide-item-img-screen15 {
    aspect-ratio: 1684/754;
}

.swiper-slide-item-img-screen16 {
    aspect-ratio: 1860/891;
}

.swiper-slide-item-img-screen17 {
    aspect-ratio: 1681/705;
}

.swiper-slide-item-img-screen18 {
    aspect-ratio: 1688/821;
}

.swiper-slide-item-img-screen19 {
  aspect-ratio: 446/280;
}

.swiper-slide-item-img-screen20 {
  aspect-ratio: 1087/663;
}

.error-box {
    display: none;
    /* border: 1px solid #C51F20; */
    border-radius: 5px;
    padding: 15px;
    background: #ffbfbf;
    color: #C51F20;
}


/* ブログ用 */

.blog-container {
    display: flex;
}

#blog_nav {
    width: 20vw;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 5vw;
    padding-left: 1vw;
}

#blog_nav ul {
    list-style-type: none;
    padding: 20px;
}

#blog_nav ul li {
    margin-left: 10px;
    margin-bottom: 10px;
}

#blog_nav ul li a {
    text-decoration: none;
    color: #000;
    border-radius: 10px;
}

#blog_nav ul li a:hover {
    color: #4F46E5;
}

.blog_nav_grey_text {
    color: grey;
  }

.blog_content {
    margin-left: 20vw; /* ナビゲーションの幅 + パディング */
    flex-grow: 1;
}


.p_blog_overview {
    /* background: linear-gradient(to left, #FAFAFA, #647488); */
    background-color: #FAFAFA;
    padding-top: 3.90625vw;
    padding-bottom: 6.0416666667vw;
}

@media screen and (max-width: 768px) {
    .p_blog_overview {
        background-color: #FAFAFA;
        padding-bottom: 60px;
        padding-top: 32px;
    }
}

.p_blog_overview_wrap {
    position: relative;
}

.p_blog_overview_wrap .l_section_title_jp {
    position: absolute;
    /* left: 2vw; */
}

@media screen and (max-width: 768px) {
    .p_blog_overview_wrap .l_section_title_jp {
        left: 82px;
    }
}

.p_blog_overview_content {
    margin-top: 2.7604166667vw;
    margin-bottom: 2.7604166667vw;
    background-color: transparent;
    max-height: 30vw;
    width: 100%;
    overflow: hidden; /* 画像が親要素を超えて表示されないようにする */
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(14px, 1.6666666667vw, 18px);
    color: #000;

    /* box-shadow: 0 3px 6px rgba(0, 3, 6, 0.16); */
}

.p_blog_overview_content img {
    max-height: 100%; /* 親要素内で高さを調整 */
    max-width: 100%; /* 親要素内で幅を調整 */
    height: auto; /* アスペクト比を保持 */
    width: auto; /* アスペクト比を保持 */
}


.p_blog_theme {
    /* background: linear-gradient(to left, #FAFAFA, #647488); */
    background-color: #F2F2F5;
    padding-top: 3.90625vw;
    padding-bottom: 6.0416666667vw;
}

@media screen and (max-width: 768px) {
    .p_blog_theme {
        background-color: #F2F2F5;
        padding-bottom: 60px;
        padding-top: 32px;
    }
}

.p_blog_theme_wrap {
    position: relative;
}

.p_blog_theme_wrap .l_section_title_jp {
    position: absolute;
    /* left: 2vw; */
}

@media screen and (max-width: 768px) {
    .p_blog_theme_wrap .l_section_title_jp {
        left: 82px;
    }
}

.p_blog_theme_content {
    margin-top: 2.7604166667vw;
    margin-bottom: 2.7604166667vw;
    background-color: transparent;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(14px, 1.6666666667vw, 18px);
    color: #000;
    /* box-shadow: 0 3px 6px rgba(0, 3, 6, 0.16); */
}

.p_blog_theme_content div {
    background-color: #fff;
    border-radius: 20px;
    width: 100%;
    min-height: 10vw;
    padding: 2vw;
    font-size: 18px;
    margin-top: 2.7604166667vw;
    margin-bottom: 2.7604166667vw;
}

.p_blog_theme_content img {
    height: auto; /* アスペクト比を保持 */
    width: auto; /* アスペクト比を保持 */
}


.p_blog_view {
    /* background: linear-gradient(to left, #FAFAFA, #647488); */
    background-color: #FAFAFA;
    padding-top: 3.90625vw;
    padding-bottom: 6.0416666667vw;
}

@media screen and (max-width: 768px) {
    .p_blog_view {
        background-color: #FAFAFA;
        padding-bottom: 60px;
        padding-top: 32px;
    }
}

.p_blog_view_wrap {
    position: relative;
}

.p_blog_view_wrap .l_section_title_jp {
    position: absolute;
    /* left: 2vw; */
}

@media screen and (max-width: 768px) {
    .p_blog_view_wrap .l_section_title_jp {
        left: 82px;
    }
}

.p_blog_view_content {
    margin-top: 2.7604166667vw;
    margin-bottom: 2.7604166667vw;
    background-color: transparent;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(14px, 1.6666666667vw, 18px);
    color: #000;
    /* box-shadow: 0 3px 6px rgba(0, 3, 6, 0.16); */
}

.p_blog_view_content div {
    background-color: #F2F2F5;
    border-radius: 20px;
    width: 100%;
    min-height: 10vw;
    padding: 2vw;
    font-size: 18px;
    margin-top: 2.7604166667vw;
    margin-bottom: 2.7604166667vw;
}

.p_blog_view_content img {
    height: auto; /* アスペクト比を保持 */
    width: auto; /* アスペクト比を保持 */
}

.p_blog_navi_section-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(10px, 1.6666666667vw, 14px);
    color: #647488;
}

.p_blog_navi_section-content {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(10px, 1.6666666667vw, 14px);
    color: #000;
}

.p_blog_comment_highlight {
    font-weight: bold;
    color: #4F46E5;
}