@charset "UTF-8";

:root {
    /* 色管理用の変数 */
    --black-color: #313131;
    --white-color: #fff;
    --gray-color: #aaa;
    --gray-color02: #fafafa;
    --gray-color03: #F7F7F7;
    --gray-color04: #EDEDED;
    --primary-color: #03113E;
    --primary-color02: linear-gradient(180deg, #03113E 0%, #596BA6 100%);    
    --accent-color: #4D76FF;
    --red-color: #FF2D2D;
    --orange-color: #E24406;
    --yellow-color03: #FFF834;
    --green-color: #28BC8D;
    --blue-color: #4B5EA6;
    --btn-color: linear-gradient(88deg, #E35E11 0%, #ED9F51 68.75%, #E35E11 100%);
    --price-bg: linear-gradient(91deg, #03113E 0%, #596BA6 100%);
}

:root {
    /* コンテンツ幅管理用の変数 */
    --content-width-sm: 800px;
    --content-width: 960px;
    --content-width-lg: 1088px;
}

:root {
    /* z-index管理用の変数 */
    --z-index-back: -1;
    --z-index-default: 1;
    --z-index-header: 100;
    --z-index-menu: 150;
    --z-index-modal: 200;
}

.l_body {
    width: 100%;
    margin: 0 auto;
    color: var(--font-color);
    font-size: 16px;
    font-family: "Zen Old Mincho", serif;
    line-height: 1.8;
    letter-spacing: 0.1em;
    animation: fadein 2s forwards;
    background: var(--white-color);
    overflow: hidden;
}

.l_container-sm,
.l_container,
.l_container-lg {
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .l_container-sm,
    .l_container,
    .l_container-lg {
        padding: 0 20px;
}
}

@media screen and (min-width: 1080px) {
    .l_container-sm,
    .l_container,
    .l_container-lg {
        padding: 0 40px;
}
}

@media screen and (min-width: 768px) {
    .u_sm-dn {
        display: none;
    }
}

@media screen and (min-width: 1080px) {
    .u_lg-dn {
        display: none;
    }
}

.top_container {
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    max-width: 1360px;
}

@media screen and (min-width: 768px) {
    .top_container {
        padding: 0 50px;
    }
}

@media screen and (min-width: 1080px) {
    .top_container {
        padding: 0 100px;
    }
}

.l_container-sm {
    max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
    max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
    max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents {
    padding: 50px 0;
}

@media screen and (min-width: 768px) {
    .l_contents {
        padding: 100px 0;
    }
}

/* ---------- loading ---------- */
/* 数字がカウントアップされるローディング画面 */
#loading {
	color: white;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	text-align:center;
	z-index: 999;
	position: fixed;
}

#loading_text {
	color: white;
	width: 100%;
	top: 50%;
	left: 50%;
	z-index: 999;
	position: absolute;
	transform: translate(-50%, -50%);
}


/* ---------- layout ---------- */
.l_header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
    padding-left: 20px;
    z-index: var(--z-index-header);
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(3, 17, 62, 0.3);
}

@media screen and (min-width: 1080px) {
    .l_header {
        padding-right: 40px;
        padding-left: 40px;
    }
}

.l_header-logo {
    width: 100px;
}

@media screen and (min-width: 768px) {
    .l_header-logo {
        width: 140px;
    }
}

.l_header-logo_img {
    width: 100%;
}

.l_header-logo_link {
    display: block;
}

.l_header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: var(--z-index-modal);
    background: var(--primary-color);
}

@media screen and (min-width: 1080px) {
    .l_header-nav {
        opacity: 1;
        position: static;
        background: transparent;
    }
}

.l_header-nav_list {
    display: flex;
    gap: 32px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-weight: bold;
}

@media screen and (min-width: 1080px) {
    .l_header-nav_list {
        flex-direction: row;
        gap: 20px;
        margin-top: 8px;
        justify-content: right;
    }
}

.l_header-nav_item {
    font-size: 18px;
    color: var(--white-color);
}

@media screen and (min-width: 1080px) {
    .l_header-nav_item {
        font-size: 14px;
    }
}

/* ドロップダウンメニュー用 */
.dropdown {
  position: relative;
}
.l_header_dropdown-list {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 2px;
  min-width: 160px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 100;
  padding: 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}
.l_header_dropdown-list li a {
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}
.l_header_dropdown-list li a:hover {
  background: #f0f0f0;
  border-radius: 2px;
}
.dropdown:hover .l_header_dropdown-list {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media screen and (min-width: 1080px) {
    .l_catalog_btn-wrapper,
    .l_contact_btn-wrapper {
        width: 120px;
        height: 50px;
        background: var(--white-color);
        border-radius: 2px;
        font-size: 16px;
    }
}

@media screen and (min-width: 1080px) {
    .l_contact_btn,
    .l_catalog_btn {
        color: var(--primary-color);
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.l_footer {
    width: 100%;
    padding-top: 20px;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 20px;
    background: var(--primary-color);
    color: var(--white-color);
}

@media screen and (min-width: 1080px) {
    .l_footer {
        padding-right: 40px;
        padding-left: 40px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.l_footer_desc {
    margin-top: 40px;
}

.l_footer-logo {
    width: 150px;
    margin-right: auto;
    margin-left: auto;
}

@media screen and (min-width: 768px) {
    .l_footer-logo {
        width: 135px;
    }
}

.l_footer-logo_img {
    height: 100%;
}

.l_footer_privacy-link__wrapper {
    text-align: center;
    font-size: 12px;
}

.l_footer_copyright {
    font-size: 12px;
    text-align: center;
}

.l_footer_copy {
    text-align: center;
    margin-top: 24px;
}

@media screen and (min-width: 1080px) {
    .l_footer_copy {
        margin-top: 16px;
    }
}

.l_footer-logo_link {
    display: block;
}

.l_footer-nav_list {
    text-align: center;
    font-size: 16px;
}

@media screen and (min-width: 768px) {
    .l_footer-nav_list {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        margin-top: 40px;
        font-size: 14px;
    }
}

@media screen and (min-width: 1080px) {
    .l_footer-nav_list {
        font-size: 16px;
        margin-top: 0;
    }
}

.l_footer-nav_item {
    margin-top: 24px;
}

@media screen and (min-width: 768px) {
    .l_footer-nav_item {
        margin-top: 0;
    }
}



/* ---------- module ---------- */

.m_btn-wrapper {
    width: 180px;
    height: 40px;
    border-radius: 4px;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 768px) {
    .m_btn-wrapper {
        margin-top: 40px;
    }
}

.m_btn-warpper2 {
    width: 355px;
    height: 80px;
    background: var(--btn-color);
    border-radius: 8px;
    box-shadow: 0px 4px 4px 2px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
}

.m_btn {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 14px;
}

.m_btn_img {
    width: 40px;
    height: 40px;
}

.m_btn-copy {
    color: var(--white-color);
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
}

.m_hamburger {
    display: block;
    width: 40px;
    height: 28px;
    position: relative;
    z-index: var(--z-index-modal);
    border: none;
    background: transparent;
}

@media screen and (min-width: 1080px) {
    .m_hamburger {
        display: none;
    }
}

.m_hamburger-bar {
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    background: var(--white-color);
    transition: .3s;
}

.m_hamburger-bar:nth-child(1) {
    top: 0;
}

.m_hamburger-bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.m_hamburger-bar:nth-child(3) {
    top: 100%;
    transform: translateY(-100%);
}

.m_section_title {
    font-size: 14px;
    font-weight: bold;
    color: var(--accent-color);
}

@media screen and (min-width: 768px) {
    .m_section_title {
        font-size: 16px;
    }
}

@media screen and (min-width: 1080px) {
    .m_section_title {
        font-size: 20px;
    }
}

.m_section_sub-title {
    text-align: center;
}

/* .m_kv_bg {
    position: absolute;
    top: 80px;
    left: 35%;
    height: 220px;
    width: 75%;
    background: url(../img/名称未設定のデザイン\ \(6\).jpg);
    z-index: var(--z-index-header);
} */

.m_kv {
    width: 100%;
    height: 300px;
    background: var(--primary-color);
    position: relative;
    display: flex;
    background: linear-gradient(rgba(3, 17, 62, 0.5), rgba(3, 17, 62, 0.5)),
    url(../img/m_kv_bg.jpg) center/cover;
}

.m_kv_contents {
    width: 100%;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    text-align: left;
    color: var(--white-color);
    padding: 0 10px;
}

@media screen and (min-width: 768px) {
    .m_kv_contents {
        padding: 0 50px;
    }
}

@media screen and (min-width: 1080px) {
    .m_kv_contents {
        padding: 0 100px;
    }
}

.m_kv_copy {
    font-size: 24px;
}

@media screen and (min-width: 768px) {
    .m_kv_copy {
        font-size: 32px;
    }    
}

@media screen and (min-width: 1080px) {
    .m_kv_copy {
        font-size: 40px;
    }
}

.m_kv_sub-copy {
    font-size: 14px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .m_kv_sub-copy {
        font-size: 16px;
    }
}

@media screen and (min-width: 1080px) {
    .m_kv_sub-copy {
        font-size: 20px;
    }
}



.m_p-list_wrapper {
    padding-left: 10px;
    padding-top: 16px;
}

@media screen and (min-width: 768px) {
    .m_p-list_wrapper {
        padding-left: 50px;
    }
}

@media screen and (min-width: 1080px) {
    .m_p-list_wrapper {
        padding-left: 100px;
    }
}

.m_p-list {
    display: flex;
    font-size: 14px;
    gap: 8px;
}

@media screen and (min-width: 1080px) {
    .m_p-list {
        font-size: 16px;
    }
}

.m_p-list_fwb {
    font-weight: bold;
}

.m_page-move_box-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.m_page-move_box {
    width: calc((100% - 20px) / 2);
    aspect-ratio: 11 / 6;
    border-radius: 4px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page_move_service {
    background: linear-gradient(rgba(3, 17, 62, 0.5), rgba(3, 17, 62, 0.5)),
    url(../img/page_move_service.jpg) center/cover;
}

.page_move_cases {
    background: linear-gradient(rgba(3, 17, 62, 0.5), rgba(3, 17, 62, 0.5)),
    url(../img/page_move_cases.jpg) center/cover;
}

.page_move_mission {
    background: linear-gradient(rgba(3, 17, 62, 0.5), rgba(3, 17, 62, 0.5)),
    url(../img/top_our-mission_bg.jpg) center/cover;

}


.m_page-move_desc-text {
    font-weight: bold;
    color: var(--white-color);
    font-size: 20px;
}

@media screen and (min-width: 768px) {
    .m_page-move_desc-text {
        font-size: 30px;
    }
}

@media screen and (min-width: 1080px) {
    .m_page-move_desc-text {
        font-size: 40px;
    }
}

.m_page-move_desc-sub-text {
    font-size: 12px;
    color: var(--white-color);
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .m_page-move_desc-sub-text {
        font-size: 16px;
    }
}

@media screen and (min-width: 1080px) {
    .m_page-move_desc-sub-text {
        font-size: 20px;
    }
}

.m_cta {
    background: var(--primary-color);
    padding-left: 10px;
    padding-right: 10px;
}

@media screen and (min-width: 768px) {
    .m_cta {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (min-width: 1080px) {
    .m_cta {
        padding-left: 40px;
        padding-right: 40px;
    }
}

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

.m_cta_box {
    width: calc((100% - 20px) / 2);
    height: 120px;
    border-radius: 4px;
    text-align: center;
    padding: 20px 8px;
    border:1px solid var(--white-color);
}

@media screen and (min-width: 768px) {
    .m_cta_box {
        height: 130px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media screen and (min-width: 1080px) {
    .m_cta_box {
        height: 140px;
        padding-top: 35px;
        padding-bottom: 35px;
    }
}

/* .m_cta_desc {
    width: 160px;
    height: 120px;
    border-radius: 4px;
    text-align: center;
    padding: 20px 8px;
    border:1px solid var(--white-color);
} */

/* @media screen and (min-width: 768px) {
    .m_cta_desc {
        width: 360px;
        height: 130px;
        padding-top: 35px;
        padding-bottom: 35px;
    }
}

@media screen and (min-width: 1080px) {
    .m_cta_desc {
        width: 480px;
        height: 140px;
        padding-top: 35px;
        padding-bottom: 35px;
    }
} */

.m_cta_desc-text {
    font-weight: bold;
    color: var(--white-color);
    font-size: 16px;
}

@media screen and (min-width: 768px) {
    .m_cta_desc-text {
        font-size: 20px;
    }
}

@media screen and (min-width: 1080px) {
    .m_cta_desc-text {
        font-size: 24px;
    }
}

.m_cta_desc-sub-text {
    font-size: 12px;
    color: var(--white-color);
}

@media screen and (min-width: 768px) {
    .m_cta_desc-sub-text {
        font-size: 14px;
    }
}

@media screen and (min-width: 1080px) {
    .m_cta_desc-sub-text {
        font-size: 16px;
    }
}

/* ---------- utility ---------- */
@media screen and (min-width: 768px) {
    .u_sm_dn {
        display: none;
    }
}

/* ---------- top_kv ---------- */
.top_kv {
    width: 100%;
    height: 100vh;
    position: relative;
}

.top_kv_contents {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: var(--z-index-default);
    color: var(--white-color);
    padding: 0 10px;
}

@media screen and (min-width: 768px) {
    .top_kv_contents {
        padding: 0 50px;
    }
}

@media screen and (min-width: 1080px) {
    .top_kv_contents {
        padding: 0 100px;
    }
}

.top_kv_copy {
    font-size: 32px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .top_kv_copy {
        font-size: 56px;
    }
}

@media screen and (min-width: 1080px) {
    .top_kv_copy {
        font-size: 80px;
    }
}

.top_kv_sub-copy {
    font-size: 20px;
}

@media screen and (min-width: 768px) {
    .top_kv_sub-copy {
        font-size: 32px;
    }
}

@media screen and (min-width: 1080px) {
    .top_kv_sub-copy {
        font-size: 42px;
    }
}

.top_kv_video {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.top_kv_video::after {
    content: "";
    width: 100%;
    height: 100vh;
    background-color: rgba(3, 17, 62, 0.5);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* .top_kv_bg-video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */


/* ---------- top_message ---------- */
.top_message {
    margin-top: 50px;
    padding: 0 10px;
}

@media screen and (min-width: 768px) {
    .top_message {
        margin-top: 100px;
        padding: 0 50px;
    }
}

@media screen and (min-width: 1080px) {
    .top_message {
        margin-top: 150px;
        padding: 0 100px;
    }
}

.top_message_title {
    font-size: 14px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .top_message_title {
        font-size: 16px;
    }
}

@media screen and (min-width: 1080px) {
    .top_message_title {
        font-size: 20px;
    } 
}

.top_message_copy-wrapper {
    display: flex;
}

.top_message_copy {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}

@media screen and (min-width: 768px) {
    .top_message_copy {
        font-size: 30px;
    }
}

@media screen and (min-width: 1080px) {
    .top_message_copy {
        font-size: 40px;
    }
}

.top_message_blue {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
}

@media screen and (min-width: 768px) {
    .top_message_blue {
        font-size: 20px;
    }
}

@media screen and (min-width: 1080px) {
    .top_message_blue {
        font-size: 22px;
    }
}

.top_message_sub-copy {
    margin-top: 5px;
}

@media screen and (min-width: 768px) {
    .top_message_sub-copy {
        font-size: 18px;
    }
}

@media screen and (min-width: 1080px) {
    .top_message_sub-copy {
        font-size: 20px;
    }
}
/* ---------- top_our-mission ------------ */
.top_our-mission {
    margin-top: 50px;
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    background: linear-gradient(rgba(3, 17, 62, 0.5), rgba(3, 17, 62, 0.5)),
    url(../img/top_our-mission_bg.jpg) center/cover;
    color: var(--white-color);
    margin-right: 10px;
    border-radius: 0 10px 10px 0;
}

@media screen and (min-width: 768px) {
    .top_our-mission {
        font-size: 32px;
        margin-right: 32px;
        margin-top: 100px;
        padding-left: 50px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media screen and (min-width: 1080px) {
    .top_our-mission {
        font-size: 40px;
        margin-right: 84px;
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 100px;
        margin-top: 150px;
    }
}

.top_our-mission_content {
    max-width: 1360px;
}

.top_our-mission_sub-title {
    font-size: 14px;
}

@media screen and (min-width: 768px) {
    .top_our-mission_sub-title {
        font-size: 16px;
    }
}

@media screen and (min-width: 1080px) {
    .top_our-mission_sub-title {
        font-size: 18px;
    }
}

/* ---------- top_about ---------- */
@media screen and (min-width: 768px) {
    .top_about_content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media screen and (min-width: 768px) {
    .top_about_desc {
        max-width: 500px;
    }
}

.top_about_copy-wrapper {
    display: flex;
}

.top_about_main-copy {
    font-size: 24px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .top_about_main-copy {
        font-size: 30px;
    }
}

@media screen and (min-width: 1080px) {
    .top_about_main-copy {
        font-size: 40px;
    }
}

.top_about_small-copy {
    font-size: 16px;
}

@media screen and (min-width: 768px) {
    .top_about_small-copy {
        font-size: 20px;
    }
}

@media screen and (min-width: 1080px) {
    .top_about_small-copy {
        font-size: 24px;
    }
}

.top_about_sub-copy {
    margin-top: 10px;
}

@media screen and (min-width: 768px) {
    .top_about_sub-copy {
        font-size: 18px;
    }
}

@media screen and (min-width: 1080px) {
    .top_about_sub-copy {
        font-size: 20px;
    }
}

.top_about_img-wrapper {
    margin-top: 20px;
}

@media screen and (min-width: 768px) {
    .top_about_img-wrapper {
        max-width: 500px;
        margin-top: 0;
    }
}

@media screen and (min-width: 1200px) {
    .top_about_img-wrapper {
        max-width: 600px;
    }
}

/* ---------- top_service ---------- */
.top_service {
    /* background: #F5F7FF; */
    background: var(--gray-color02);
}

@media screen and (min-width: 768px) {
    .top_service_content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media screen and (min-width: 768px) {
    .top_service_desc {
        max-width: 400px;
    }
}

@media screen and (min-width: 1080px) {
    .top_service_desc {
        max-width: 500px;
    }
}

.top_service_copy-wrapper {
    display: flex;
    margin-bottom: 10px;
}

.top_service_main-copy {
    font-size: 24px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .top_service_main-copy {
        font-size: 28px;
    }
}

@media screen and (min-width: 1080px) {
    .top_service_main-copy {
        font-size: 40px;
    }
}

.top_service_sub-copy {
    font-size: 20px;
    font-weight: medium;
}

@media screen and (min-width: 1080px) {
    .top_service_sub-copy {
        font-size: 24px;
    }
}

.top_service_img-wrapper {
    margin-top: 20px;
}

.top_service_content-copy {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 8px;
    border-bottom: 2px solid var(--accent-color);
    transition: color 0.5s ease;
    position: relative;
}

@media screen and (min-width: 1080px) {
    .top_service_content-copy {
        font-size: 22px;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-right: 10px;
    }
}

@media screen and (min-width: 1200px) {
    .top_service_content-copy {
        font-size: 26px;
        padding-right: 20px;
    }
}


.top_service_content-hover:hover {
    color: #fff;
}
.top_service_content-hover:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.top_service_content-hover::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #1B85FB;
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s ease;
    transition-property: transform;
}
.top_seervice_content-link {
    position: relative;
    display: flex;
}

.top_service_btn-wrapper {
    margin-top: 40px;
}
/* ---------- top_cases ---------- */
.top_cases_sub-title {
    font-size: 24px;
    font-weight: bold;
}
.top_cases_sub-title {
    font-size: 24px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .top_cases_sub-title {
        font-size: 28px;
    }
}

@media screen and (min-width: 1080px) {
    .top_cases_sub-title {
        font-size: 40px;
    }
}

.top_cases_copy {
    font-weight: 500;
}

@media screen and (min-width: 768px) {
    .top_cases_copy {
        font-size: 18px;
    }
}

@media screen and (min-width: 1080px) {
    .top_cases_copy {
        font-size: 20px;
    }
}

.top_cases_desc {
    margin-top: 10px;
}

@media screen and (min-width: 768px) {
    .top_cases_desc {
        margin-top: 20px;
    }
}

.swiper-wrapper {
    transition-timing-function: linear;
}

/* ---------- top_news ---------- */
@media screen and (min-width: 768px) {
    .top_news_content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.top_news_copy-wrapper {
    display: flex;
    margin-bottom: 10px;
}

.top_news_main-copy {
    font-size: 24px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .top_news_main-copy {
        font-size: 28px;
    }
}

@media screen and (min-width: 1080px) {
    .top_news_main-copy {
        font-size: 40px;
    }
}

.top_news_item {
    width: 100%;
    border-bottom: 2px solid var(--gray-color04);
    padding-bottom: 10px;
    margin-top: 20px;
}

.top_news_item:first-child {
    border-top: 2px solid var(--gray-color04);
    padding-top: 10px;
}

@media screen and (min-width: 768px) {
    .top_news_item-desc {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
}

@media screen and (min-width: 768px) {
    .top_news_item__img-wrapper {
        width: 30%;
    }
}

.top_news_item__tag-desc {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

@media screen and (min-width: 768px) {
    .top_news_item__tag-desc {
        margin-top: 0;
    }
}

.top_news_item__tag {
    border: 1px solid var(--accent-color);
    padding: 4px 8px;
    border-radius: 2px;
    color: var(--accent-color);
    font-size: 12px;
}

@media screen and (min-width: 1080px) {
    .top_news_item__tag {
        font-size: 14px;
    }
}

.top_news_item__date {
    margin-left: 10px;
    font-size: 12px;
}

@media screen and (min-width: 1080px) {
    .top_news_item__date {
        font-size: 14px;
    }
}

.top_news_item__copy {
    margin-top: 5px;
}

@media screen and (min-width: 1080px) {
    .top_news_item__copy {
        font-size: 18px;
    }
}

/* ---------- mission ---------- */
.mission_mv_tilte {
    font-size: 18px;
    border-bottom: 2px solid var(--accent-color);
}

@media screen and (min-width: 768px) {
    .mission_mv_tilte {
        font-size: 24px;
    }
}

@media screen and (min-width: 1080px) {
    .mission_mv_tilte {
        font-size: 30px;
    }
}

.mission_mv_copy-wrapper {
    display: flex;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}

@media screen and (min-width: 768px) {
    .mission_mv_copy-wrapper {
        font-size: 28px;
    }
}

@media screen and (min-width: 1080px) {
    .mission_mv_copy-wrapper {
        font-size: 36px;
    }
}

.mission_mv_desc:not(:first-child) {
    margin-top: 40px;
}

.mission_mv_sub-copy {
    margin-top: 40px;
    font-weight: 500;
}

@media screen and (min-width: 768px) {
    .mission_mv_sub-copy {
        font-size: 18px;
    }
}

@media screen and (min-width: 1080px) {
    .mission_mv_sub-copy {
        font-size: 20px;
    }
}

.mission_mv_sub-copy02 {
    font-weight: 500;
}

@media screen and (min-width: 768px) {
    .mission_mv_sub-copy02 {
        font-size: 18px;
    }
}

@media screen and (min-width: 1080px) {
    .mission_mv_sub-copy02 {
        font-size: 20px;
        margin-top: 10px;
    }
}

.mission_thoughts_desc {
    background: var(--gray-color03);
    padding: 20px 10px;
    border-radius: 4px;
    box-shadow: 0px 3px 4px 1px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 768px) {
    .mission_thoughts_desc {
        padding: 40px 20px;
    }
}

@media screen and (min-width: 1080px) {
    .mission_thoughts_desc {
        padding: 80px 40px;
    }
}

.mission_thougths_ceo-wrapper {
    background: #DCE3ED;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .mission_thougths_ceo-wrapper {
        margin-bottom: 40px;
        padding-top: 40px;
        padding-left: 40px;
        padding-right: 40px;
        position: relative;
    }
}

@media screen and (min-width: 1080px) {
    .mission_thougths_ceo-wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }

}

.mission_thougths_ceo-img__wrapper {
    width: 200px;
    aspect-ratio: 6 / 4;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 768px) {
    .mission_thougths_ceo-img__wrapper {
        position: absolute;
        bottom: 0;
        left: 40px;
    }
}

@media screen and (min-width: 1080px) {
    .mission_thougths_ceo-img__wrapper {
        left: 100px;
        width: 220px;
    }
}

.mission_thougths_ceo-profile {
    font-size: 12px;
    font-weight: 500;
    margin-top: 10px;
}

@media screen and (min-width: 768px) {
    .mission_thougths_ceo-profile {
        margin-top: 0;
        margin-bottom: 0;
        margin-left: auto;
        width: 400px;
        font-size: 14px;
    }
}

.mission_thougths_ceo-copy {
    font-size: 10px;
}

@media screen and (min-width: 768px) {
    .mission_thougths_ceo-copy {
        font-size: 12px;
        margin-top: 5px;
    } 
}

.mission_thoughts_tilte {
    font-size: 18px;
    color: var(--primary-color);
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 10px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .mission_thoughts_tilte {
        font-size: 22px;
    }
}

@media screen and (min-width: 1080px) {
    .mission_thoughts_tilte {
        font-size: 28px;
    }
}

.mission_thoughts_main-copy {
    font-size: 14px;
    margin-top: 10px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .mission_thoughts_main-copy {
        font-size: 16px;
    }
}

@media screen and (min-width: 1080px) {
    .mission_thoughts_main-copy {
        font-size: 18px;
    }
}

/* ---------- service ---------- */
.services_message {
    margin-top: 50px;
}

@media screen and (min-width: 768px) {
    .services_message {
        margin-top: 100px;
    }
}

@media screen and (min-width: 1080px) {
    .services_message {
        font-size: 26px;
        margin-top: 150px;
    }
}

.services_message_copy {
    font-weight: bold;
    font-size: 20px;
}

@media screen and (min-width: 768px) {
    .services_message_copy {
        font-size: 26px;
    }
}

@media screen and (min-width: 1080px) {
    .services_message_copy {
        font-size: 30px;
    }
}

.service_message_blue {
    font-size: 22px;
    color: var(--accent-color);
}

@media screen and (min-width: 768px) {
    .service_message_blue {
        font-size: 30px;
    }
}

@media screen and (min-width: 1080px) {
    .service_message_blue {
        font-size: 32px;
    }
}

.services_message_sub-copy {
    font-size: 14px;
    font-weight: 500;
}

@media screen and (min-width: 768px) {
    .services_message_sub-copy {
        font-size: 20px;
    }
}

@media screen and (min-width: 1080px) {
    .services_message_sub-copy {
        font-size: 24px;
    }
}

@media screen and (min-width: 768px) {
    .services_content_item {
        position: relative;
    }
}

.services_content_item:not(:first-child) {
    margin-top: 40px;
}

@media screen and (min-width: 768px) {
    .services_content_item:not(:first-child) {
        margin-top: 100px;
    }
}

@media screen and (min-width: 1080px) {
    .services_content_item:not(:first-child) {
        margin-top: 150px;
    }
}

@media screen and (min-width: 768px) {
    .services_content_item-desc {
        width: 400px;
        position: absolute;
        bottom: 0;
        padding: 8px;
        background: rgba(255, 255, 255, 70%);
        border-radius: 4px;
    }
}

@media screen and (min-width: 1080px) {
    .services_content_item-desc {
        width: 500px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media screen and (min-width: 768px) {
    .services_content_item-desc__reverce {
        right: 0;
    }
}

.services_content_item-title {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--accent-color);
    margin-bottom: 10px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .services_content_item-title {
        font-size: 24px;
    }
}

@media screen and (min-width: 1080px) {
    .services_content_item-title {
        font-size: 30px;
    }
}

.services_content_item-copy {
    font-size: 14px;
}

@media screen and (min-width: 768px) {
    .services_content_item-copy {
        font-size: 18px;
    } 
}

@media screen and (min-width: 1080px) {
    .services_content_item-copy {
        font-size: 20px;
    } 
}

.service_content_link-wrapper {
    text-align: right;
}

.service_content_link {
    font-size: 10px;
    border: 1px solid var(--accent-color);
    padding: 4px 8px;
    color: var(--accent-color);
    border-radius: 4px;
}


.services_content_img-wrapper {
    margin-top: 10px;
}

@media screen and (min-width: 768px) {
    .services_content_img-wrapper {
        width: 500px;
        aspect-ratio: 6 / 4;
        margin-left: auto;
    }
}

@media screen and (min-width: 1080px) {
    .services_content_img-wrapper {
        width: 650px;
    }
}

@media screen and (min-width: 768px) {
    .services_content_img-wrapper__reverce {
        margin-right: auto;
        margin-left: 0;
    }
}

.services_content_item-fwb__copy {
    font-size: 20px;
    font-weight: bold;
    color: var(--red-color);
    margin-top: 10px;
}

@media screen and (min-width: 768px) {
    .services_content_item-fwb__copy {
        font-size: 24px;
    }
}

@media screen and (min-width: 1080px) {
    .services_content_item-fwb__copy {
        font-size: 26px;
    }
}

/* ---------- cases ---------- */
@media screen and (min-width: 768px) {
    .cases_content_list {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
    }
}

.cases_content_company-name {
    font-weight: bold;
    margin-top: 10px;
}

.cases_content_item {
    margin-bottom: 40px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 768px) {
    .cases_content_item {
        width: calc((100% - 20px) / 2);
        margin-left: 0;
        margin-right: 0;
    }
}

@media screen and (min-width: 1080px) {
    .cases_content_item {
        margin-bottom: 100px;
        width: calc((100% - 40px) / 3);
    }
}

.cases_content_item_desc {
    /* display: flex;
    align-items: center; */
    margin-top: 5px;
}

.cases_content_item-inner {
    display: flex;
    align-items: center;
}

.cases_content_item-img {
    width: 15px;
    height: 15px;
}

.cases_content_item-copy {
    padding-left: 4px;
    padding-right: 8px;
}

.buzz_content_company-name {
    font-size: 12px;
    font-weight: bold;
    margin-top: 10px;
}

@media screen and (min-width: 1080px) {
    .buzz_content_company-name {
        font-size: 11px;
    }
}

.buzz_content_sub-heading {
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
}

.color-red {
    color: var(--orange-color);
    font-size: 16px;
}

.buzz_content_item-tilte {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
}

@media screen and (min-width: 1080px) {
    .buzz_content_item-tilte {
        font-size: 14px;
    }
}

.buzz_content_item-copy {
    font-size: 12px;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 2px;
    padding: 2px 4px;
    margin-top: 10px;
}

.buzz_content_item-copy:not(:first-child) {
    margin-left: 10px;
}

.buzz_content_more-wrapper {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.buzz_content_more-img {
    width: 20px;
    height: 20px;
}

.buzz_content_more-copy {
    font-size: 12px;
    color: var(--accent-color);
    margin-left: 10px;
}


.buzzmovie_content_company-name {
    font-size: 12px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .buzzmovie_content_company-name {
        font-size: 16px;
    }
}

@media screen and (min-width: 1080px) {
    .buzzmovie_content_company-name {
        font-size: 20px;
    }
}

.buzzmovie_content_heading {
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .buzzmovie_content_heading {
        font-size: 22px;
    }
}

@media screen and (min-width: 1080px) {
    .buzzmovie_content_heading {
        font-size: 32px;
    }
}

.buzzmovie_content_movie {
    margin-top: 20px;
    width: 100%;
}

.buzzmovie_content_inner {
    margin-top: 20px;
    border-bottom: 2px solid var(--gray-color04);
    padding-bottom: 10px;
}

.buzzmovie_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.buzzmovie_content_copy {
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .buzzmovie_content_copy {
        font-size: 18px;
    }
}

@media screen and (min-width: 1080px) {
    .buzzmovie_content_copy {
        font-size: 20px;
    }
}

.buzzmovie_content_tag-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.buzzmovie_content_tag {
    margin-top: 10px;
    font-size: 14px;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 2px 4px;
    border-radius: 2px;
}

@media screen and (min-width: 768px) {
    .buzzmovie_content_tag {
        font-size: 16px;
    }
}

@media screen and (min-width: 1080px) {
    .buzzmovie_content_tag {
        font-size: 18px;
    }
}

.color-green {
    color: var(--green-color);
    border: 1px solid var(--green-color);
}

.color-blue {
    color: var(--blue-color);
    border: 1px solid var(--blue-color);
}

.buzzmovie_content_point-title {
    margin-top: 20px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .buzzmovie_content_point-title {
        font-size: 18px;
    }
}

@media screen and (min-width: 1080px) {
    .buzzmovie_content_point-title {
        font-size: 20px;
    }
}

.buzzmovie_content_poin-copy {
    margin-top: 10px;
    font-size: 14px;
}

@media screen and (min-width: 768px) {
    .buzzmovie_content_poin-copy {
        font-size: 16px;
    }
}

@media screen and (min-width: 1080px) {
    .buzzmovie_content_poin-copy {
        font-size: 18px;
    }
}

/* ---------- company ---------- */
.company_content_main-copy-wrapper {
    display: flex;
    font-size: 24px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .company_content_main-copy-wrapper {
        font-size: 28px;
    }
}

@media screen and (min-width: 1080px) {
    .company_content_main-copy-wrapper {
        font-size: 40px;
    }
}

.company_content_copy {
    font-size: 14px;
}

@media screen and (min-width: 1080px) {
    .company_content_copy {
        font-size: 15px;
    }
}

@media screen and (min-width: 768px) {
    .company_content_desc {
        display: flex;
        justify-content: center;
        gap: 30px;
    }
}


.company_content_img-wrapper {
    width: 100%;
    max-width: 400px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
}

.company_content_img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

@media screen and (min-width: 768px) {
    .company_content_img {
        min-width: 350px;
        aspect-ratio: 4 / 6;
    }
}

.company_content_copy-wrapper {
    margin-top: 20px;
}

@media screen and (min-width: 768px) {
    .company_content_copy-wrapper {
        margin-top: 0;
    }
}

.company_content_company-name {
    margin-top: 20px;
    font-size: 14px;
}

.company_content_ceo-wrapper {
    display: flex;
    align-items: center;
}

.company_content_ceo-img {
    width: 150px;
    margin-left: 20px;
}

.company_profile-content {
    background: var(--gray-color03);
    border-radius: 4px;
    box-shadow: 0px 3px 4px 1px rgba(0, 0, 0, 0.25);
    padding: 20px;
}

@media screen and (min-width: 768px) {
    .company_profile-content {
        padding: 40px;
    }
}

.company_profile_content_copy-wrapper {
    display: flex;
    font-size: 22px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .company_profile_content_copy-wrapper {
        font-size: 26px;
    }
}

@media screen and (min-width: 1080px) {
    .company_profile_content_copy-wrapper {
        font-size: 36px;
    }
}

.company_info-table {
    margin-top: 10px;
}

@media screen and (min-width: 768px) {
    .company_info-table {
        margin-top: 20px;
    }
}

.company_info-table_heading {
    font-size: 14px;
    font-weight: bold;
    padding-right: 20px;
}

@media screen and (min-width: 768px) {
    .company_info-table_heading {
        font-size: 18px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media screen and (min-width: 1080px) {
    .company_info-table_heading {
        font-size: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.company_info-table_data {
    font-size: 13px;
    border-left: 2px solid var(--accent-color);
    padding-left: 20px;
}

@media screen and (min-width: 768px) {
    .company_info-table_data {
        font-size: 16px;
        padding-left: 80px;
    }
}

@media screen and (min-width: 1080px) {
    .company_info-table_data {
        font-size: 18px;
    }
}

/* ---------- download ---------- */

@media screen and (min-width: 1080px) {
    .download_content {
        display: flex;
        justify-content: space-between;
    }
}

@media screen and (min-width: 1080px) {
    .download_content_desc {
        max-width: 500px;
    }
}

.download_content_copy-wrapper {
    display: flex;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
}

.download_content_copy {
    font-size: 24px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .download_content_copy {
        font-size: 28px;
    }
}

@media screen and (min-width: 1080px) {
    .download_content_copy {
        font-size: 32px;
    } 
}

.download_content_img {
    margin-top: 20px;
}

.download_content_sub-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    background: var(--primary-color);
    color: var(--white-color);
    padding-left: 8px;
}

@media screen and (min-width: 768px) {
    .download_content_sub-title {
        font-size: 22px;
        margin-top: 20px;
    }
}

@media screen and (min-width: 1080px) {
    .download_content_sub-title {
        font-size: 24px;
    }
}

.download_content_check-wrapper {
    display: flex;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

.download_content_check-img {
    width: 20px;
    height: 20px;
}

.download_content_check-copy {
    font-size: 14px;
    font-weight: bold;
    padding-left: 10px;
}

@media screen and (min-width: 768px) {
    .download_content_check-copy {
        font-size: 16px;
    }
}

@media screen and (min-width: 1080px) {
    .download_content_check-copy {
        font-size: 18px;
    }
}

.download_form-wrapper {
    padding: 20px 10px;
    background: var(--gray-color03);
    border-radius: 4px;
    box-shadow: 0px 3px 4px 1px rgba(0, 0, 0, 0.25);
    margin-top: 50px;
    width: 100%;
}

@media screen and (min-width: 1080px) {
    .download_form-wrapper {
        margin-left: 40px;
    }
}

.download_form_heading {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 10px;
    font-weight: bold;
} 

@media screen and (min-width: 768px) {
    .download_form_heading {
        margin-top: 20px;
    }
}

.download_form_example {
    font-size: 12px;
    color: var(--gray-color);
    padding-left: 8px;
} 

.download_form_required {
    font-size: 10px;
    color: var(--white-color);
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 20px;
    border-radius: 2px;
}

.download_form_input {
    font-size: 14px;
    width: 100%;
    height: 40px;
    padding: 8px;
    border: 1px solid var(--gray-color02);
    background: var(--white-color);
}

.download_form_select {
    width: 100%;
    height: 40px;
    font-size: 14px;
    padding: 8px;
    border: 1px solid var(--gray-color02);
    background: var(--white-color);
}

.download_form_btn-wrapper {
    margin-top: 40px;
    background: var(--primary-color);
    border-radius: 4px;
    border: 1px solid var(--primary-color);
}

.m_btn__form {
    color: var(--white-color);
}

/* ---------- contact ---------- */
.contact_bg {
    background: linear-gradient(rgba(0, 28, 43, 0.5), rgba(0, 28, 43, 0.5)),
    url(../img/contact_bg.jpg) center/cover;
    background-attachment: fixed;
}

.contact_kv {
    width: 100%;
    height: 300px;
    position: relative;
    display: flex;
}

.contact_kv_contents {
    width: 100%;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    text-align: left;
    color: var(--white-color);
    padding: 0 10px;
}

@media screen and (min-width: 768px) {
    .contact_kv_contents {
        padding: 0 50px;
    }
}

@media screen and (min-width: 1080px) {
    .contact_kv_contents {
        padding: 0 100px;
    }
}

.contact_kv_copy {
    font-size: 24px;
}

@media screen and (min-width: 768px) {
    .contact_kv_copy {
        font-size: 32px;
    }    
}

@media screen and (min-width: 1080px) {
    .contact_kv_copy {
        font-size: 40px;
    }
}

.contact_kv_sub-copy {
    font-size: 14px;
}

.contact_contents {
    padding-top: 0;
}

.contact_form-wrapper {
    padding: 20px 10px;
    background: rgba(247, 247, 247, 80%);
    border-radius: 4px;
    box-shadow: 0px 3px 4px 1px rgba(0, 0, 0, 0.25);
    margin-top: 50px;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .contact_form-wrapper {
        padding: 40px 20px;
    }
}

.contact_form_heading {
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (min-width: 1080px) {
    .contact_form_heading {
        font-size: 16px;
    }
}

.contact_form_heading:not(:first-child) {
    margin-top: 20px;
}

@media screen and (min-width: 768px) {
    .contact_form_heading:not(:first-child) {
        margin-top: 40px;
    }
    
}

.contact_form_required {
    font-size: 10px;
    color: var(--white-color);
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 20px;
    border-radius: 2px;
}

@media screen and (min-width: 1080px) {
    .contact_form_required {
        font-size: 12px;
        height: 25px;
        width: 40px;
    }
}

.contact_form_detail {
    margin-top: 10px;
}

.contact_form_input {
    font-size: 14px;
    width: 100%;
    height: 40px;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid var(--gray-color02);
    background: var(--white-color);
}

@media screen and (min-width: 1080px) {
    .contact_form_input {
        font-size: 16px;
        height: 50px;
    }
}

.contact_form_select {
    width: 100%;
    height: 40px;
    font-size: 14px;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid var(--gray-color02);
    background: var(--white-color);
    cursor: pointer;
}

@media screen and (min-width: 1080px) {
    .contact_form_select {
        font-size: 16px;
        height: 50px;
    }
}

.contact_placeholder {
    color: var(--gray-color02);
}

.contact_form_textarea {
    font-size: 14px;
    width: 100%;
    height: 240px;
    padding: 8px;
    border: 1px solid var(--gray-color2);
    background: var(--white-color);
}

@media screen and (min-width: 1080px) {
    .contact_form_textarea {
        font-size: 16px;
    }
}

.contact_form_checkbox-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-size: 14px;
}

.contact_form_checkbox {
    width: 15px;
    height: 15px;
    border: var(--gray-color02);
    background: var(--white-color);
    margin-right: 10px;
    appearance: checkbox;
}

.contact_form_btn-wrapper {
    margin-top: 40px;
    background: var(--primary-color);
    border-radius: 4px;
    border: 1px solid var(--primary-color);
    cursor: pointer;
}

.contact_form_btn-wrapper[disabled] {
    background: var(--gray-color);
    cursor: not-allowed;
}

.m_btn__form {
    color: var(--white-color);
}

/* ---------- web-productions ---------- */
.web-productions_message_copy {
    margin-top: 50px;
    font-size: 20px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .web-productions_message_copy {
        text-align: center;
    }
}

@media screen and (min-width: 1080px) {
    .web-productions_message_copy {
        font-size: 26px;
    }
}

.web-production_message_orange {
    color: var(--orange-color);
    font-weight: bold;
    font-size: 24px;
}

@media screen and (min-width: 1080px) {
    .web-production_message_orange {
        font-size: 34px;
    }
}

.worries_copy-wrapper {
    display: flex;
    border-bottom: 4px solid var(--primary-color);
}

.worries_main-copy {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

@media screen and (min-width: 768px) {
    .worries_main-copy {
        font-size: 30px;
    }
}

@media screen and (min-width: 1080px) {
    .worries_main-copy {
        font-size: 40px;
    }
}

.worries_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    padding-left: 10px;
}

.worries_item {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 20px;
}

@media screen and (min-width: 768px) {
    .worries_item {
        width: calc((100% - 20px) / 2);
    }
}

.worries_img {
    width: 30px;
    height: 30px;
}

.worries_copy {
    font-weight: bold;
    padding-left: 4px;
}

@media screen and (min-width: 768px) {
    .worries_copy {
        font-size: 18px;
    }
}

@media screen and (min-width: 1080px) {
    .worries_copy {
        font-size: 24px;
    }
}

.worries_arrow {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.worries_content {
    background: var(--primary-color);
}

.worries_content_title {
    font-size: 20px;
    font-weight: bold;
    color: var(--white-color);
    text-align: center;
}

@media screen and (min-width: 768px) {
    .worries_content_title {
        font-size: 24px;
    }
}

@media screen and (min-width: 1080px) {
    .worries_content_title {
        font-size: 32px;
    }
}

.worries_content_desc {
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    border: 1px solid var(--primary-color);
    background: var();
}

@media screen and (min-width: 768px) {
    .worries_content_desc {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    } 
}   

@media screen and (min-width: 768px) {
    .worries_content_img {
        width: 40%;
    }
}

.worries_content_copy {
    font-size: 14px;
    margin-top: 10px;
    font-weight: bold;
}

@media screen and (min-width: 1080px) {
    .worries_content_copy {
        font-size: 16px;
    }
}

.strengths_copy-wrapper {
    display: flex;
}

.strengths_main-copy {
    font-size: 24px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .strengths_main-copy {
        font-size: 30px;
    }
}

@media screen and (min-width: 1080px) {
    .strengths_main-copy {
        font-size: 40px;
    }
}

@media screen and (min-width: 768px) {
    .strengths_list {
        display: flex;
        justify-content: center;
        align-items: start;
        gap: 20px;
        flex-wrap: wrap;
    }
}

.strengths_item {
    margin-top: 20px;
}

@media screen and (min-width: 768px) {
    .strengths_item {
        width: calc((100% - 20px) / 2);
    }
}

.strengths_item_tilte {
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
    padding-left: 5px;
    padding-right: 5px;
}

@media screen and (min-width: 1080px) {
    .strengths_item_tilte {
        font-size: 24px;
    }
}

.strengths_dots_blue {
    color: var(--accent-color);
}

.strengths_item_copy {
    font-size: 14px;
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 10px;
}

@media screen and (min-width: 1080px) {
    .strengths_item_copy {
        font-size: 16px;
    }
}

.web-production_copy-wrapper {
    display: flex;
}

.web-production_main-copy {
    font-size: 24px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .web-production_main-copy {
        font-size: 30px;
    }
}

@media screen and (min-width: 1080px) {
    .web-production_main-copy {
        font-size: 40px;
    }
}

.web-production_desc {
    margin-top: 20px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .web-production_desc {
        margin-top: 40px;
    }
}

.web-production_item {
    border-radius: 4px;
    box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.25);
}

.web-production_item_img {
    width: 100%;
    aspect-ratio: 6 / 4;
    border-radius: 4px 4px 0 0;
}

.web-production_item-name {
    text-align: center;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.web-production_solution_item-name {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

.web-production_solution_item-copy {
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.web-production_dots {
    position: relative;
    margin-top: 20px;
}

.web-production_nav {
    /* width: 48px;
    height: 48px;
    border: 1px solid var(--primary-color);
    border-radius: 100vh; */
    position: absolute;
    bottom: 0;
    top: auto;
}

.web-production_nav__prev {
    left: auto;
    right: calc(50% + 96px);
}

.web-production_nav__next {
    right: auto;
    left: calc(50% + 96px);
}

.web-production_nav__prev:after,
.web-production_nav__next:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    top: 50%;
    left: 50%;
}

.web-production_nav__prev:after {
    transform: translate(-40%, -50%) rotate(-135deg);
}

.web-production_nav__next:after {
    transform: translate(-60%, -50%) rotate(45deg);
}




.web-production_btn {
    margin-top: 120px;
}

/* ---------- sns_gallery ---------- */
.sns_gallery_desc {
    margin-top: 100px;
}

@media screen and (min-width: 768px) {
    .sns_gallery_desc {
        margin-top: 150px;
    }
}

/* ---------- price ---------- */
.price_plan_list-wrapper {
    margin-top: 20px;
    position: relative;
}

.price_copy-wrapper {
    display: flex;
}

.price_main-copy {
    font-size: 24px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .price_main-copy {
        font-size: 30px;
    }
}

@media screen and (min-width: 1080px) {
    .price_main-copy {
        font-size: 40px;
    }
}

.price_dots {
    position: relative;
    margin-top: 20px;
}

.price_nav {
    /* width: 48px;
    height: 48px;
    border: 1px solid var(--primary-color);
    border-radius: 100vh; */
    position: absolute;
    bottom: 0;
    top: auto;
}

.price_nav__prev {
    left: auto;
    right: calc(50% + 96px);
}

.price_nav__next {
    right: auto;
    left: calc(50% + 96px);
}

.price_nav__prev:after,
.price_nav__next:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    top: 50%;
    left: 50%;
}

.price_nav__prev:after {
    transform: translate(-40%, -50%) rotate(-135deg);
}

.price_nav__next:after {
    transform: translate(-60%, -50%) rotate(45deg);
}



.price_content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--price-bg);
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

@media screen and (min-width: 1080px) {
    .price_content-wrapper {
        margin-top: 60px;
    }
}

@media screen and (min-width: 768px) {
    .price_content_line {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-left: 60px;
        padding-right: 60px;
    }
}

.price_content_copy {
    font-size: 12px;
    border: 1px solid var(--white-color);
    padding: 5px 10px;
    color: var(--white-color);
}

@media screen and (min-width: 1080px) {
    .price_content_copy {
        font-size: 16px;
    }
}

.price_content_text {
    color: var(--white-color);
    font-size: 16px;
    margin-top: 10px;
}

@media screen and (min-width: 1080px) {
    .price_content_text {
        font-size: 24px;
    }
}

@media screen and (min-width: 768px) {
    .price_content_desc {
        padding-top: 10px;
    }
}   

.price_content_number {
    font-size: 20px;
    color: var(--white-color);
}

@media screen and (min-width: 1080px) {
    .price_content_number {
        font-size: 24px;
    }
}

.price_content_number-yellow {
    font-size: 36px;
    color: var(--yellow-color03);
    padding-left: 6px;
}

@media screen and (min-width: 1080px) {
    .price_content_number-yellow {
        font-size: 48px;
    }
}

/* ---------- flow ---------- */
.flow_copy-wrapper {
    display: flex;
}

.flow_main-copy {
    font-size: 24px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .flow_main-copy {
        font-size: 30px;
    }
}

@media screen and (min-width: 1080px) {
    .flow_main-copy {
        font-size: 40px;
    }
}

.flow_list {
    margin-top: 20px;
}

@media screen and (min-width: 768px) {
    .flow_list {
        margin-top: 40px;
    }
}

.flow_list_item {
    display: flex;
    align-items: center;
    gap: 40px;
    border-bottom: 2px solid var(--accent-color);
}

.flow_list_item:not(:first-child) {
    margin-top: 20px;
}

.flow_list_step {
    text-align: center;
    color: var(--accent-color);
}

.flow_list_step-copy {
    font-size: 16px;
}

@media screen and (min-width: 768px) {
    .flow_list_step-copy {
        font-size: 20px;
    }
}

@media screen and (min-width: 1080px) {
    .flow_list_step-copy {
        font-size: 24px;
    }
}

.flow_list_step-number {
    font-size: 54px;
    line-height: 1.6;
}

@media screen and (min-width: 768px) {
    .flow_list_step-number {
        font-size: 60px;
    }
}

@media screen and (min-width: 1080px) {
    .flow_list_step-number {
        font-size: 64px;
    }
}

.flow_list_inner-title {
    font-size: 16px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .flow_list_inner-title {
        font-size: 32px;
    }
}

@media screen and (min-width: 1080px) {
    .flow_list_inner-title {
        font-size: 36px;
    }
}

.flow_list_inner-copy {
    font-size: 12px;
    margin-top: 10px;
}

@media screen and (min-width: 768px) {
    .flow_list_inner-copy {
        font-size: 16px;
    }
}

@media screen and (min-width: 1080px) {
    .flow_list_inner-copy {
        font-size: 20px;
    }
}

/* ---------- faq ---------- */
.faq_copy-wrapper {
    display: flex;
}

.faq_main-copy {
    font-size: 24px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .faq_main-copy {
        font-size: 30px;
    }
}

@media screen and (min-width: 1080px) {
    .faq_main-copy {
        font-size: 40px;
    }
}

.section_faq_sub-title,
.section_faq_main-title {
    color: var(--white-color);
}

.faq_content {
    width: 100%;
    background: var(--white-color);
    border-radius: 8px;
    box-shadow: 0px 4px 4px 2px rgba(0, 0, 0, 0.25);
    margin-top: 20px;
    padding: 20px 40px;
}

.faq_question_copy {
    font-size: 14px;
    position: relative;
    padding-left: 40px;
    color: var(--accent-color);
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .faq_question_copy {
        font-size: 16px;
    }
}

@media screen and (min-width: 1080px) {
    .faq_question_copy {
        font-size: 20px;
    }
}

.faq_question_copy::before {
    content: "Q";
    font-size: 32px;
    font-weight: bold;
    color: var(--accent-color);
    font-family: "Zen Kaku Gothic New", sans-serif;
    padding-right: 10px;
    line-height: 1;
    position: absolute;
    top: -5px;
    left: 0;
} 

@media screen and (min-width: 768px) {
    .faq_question_copy::before {
        font-size: 40px;
        top: -9px;
    }
}

.faq_content_line {
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.faq_answer_copy {
    padding-left: 40px;
    position: relative;
    font-size: 12px;
}

@media screen and (min-width: 768px) {
    .faq_answer_copy {
        font-size: 14px;
    }
}

@media screen and (min-width: 1080px) {
    .faq_answer_copy {
        font-size: 16px;
    }
}

.faq_answer_copy::before {
    content: "A";
    font-size: 24px;
    font-weight: bold;
    color: var(--red-color);
    font-family: "Zen Kaku Gothic New", sans-serif;
    padding-right: 10px;
    line-height: 1;
    position: absolute;
    top: -3px;
    left: 5px;
}

@media screen and (min-width: 768px) {
    .faq_answer_copy::before {
        font-size: 32px;
        top: -6px;
    }
}

@media screen and (max-width: 1080px) {
    .faq_answer_copy::before {
        font-size: 24px;
        top: -3px;
    }
}


/* ---------- js ---------- */
.js_body.is-hidden {
    overflow: hidden;
}

.js_hamburger-bar {
    transition: top 0.24s, transform 0.24s, opacity 0.24s;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
    transform: translate(50%, -50%);
    opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-135deg);
}

.js_nav {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s;
}

@media screen and (min-width: 1080px) {
    .js_nav {
        opacity: 1;
        pointer-events: auto;
    }
}

.js_nav.is-active {
    opacity: 1;
    pointer-events: auto;
}
