@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/*---------------------------------
Variable
---------------------------------*/
:root{
    --color-primary: #848400;
    --color-primary-rgb: 132, 132, 0;
    --color-secondary: #3A5793;
    --color-secondary-rgb: 58, 87, 147;
    --color-tertiary: #E8E83D;
    --color-tertiary-rgb: 232, 232, 61;
    --color-quaternary: #D0DAEE;
    --color-quaternary-rgb: 208, 218, 238;

    --color-wh: #fff;
    --color-wh-rgb: 255, 255, 255;
    --color-bk: #000;
    --color-bk-rgb: 0, 0, 0;
    --color-or: #D58A00;
    --color-pk-rgb: 213, 138, 0;
    --color-bl: #001339;
    --color-bl-rgb: 0, 19, 57; 

    --font-nsjp: "NotosansJP";
}
html {
    font-size: 62.5%;
}
body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #333;
    font-size: 1.4rem;
}
/*---------------------------------
header
---------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: var(--color-wh);
    box-shadow: 0 5px 12px rgba(var(--color-bk-rgb), 0.1);
    z-index: 100;
}

.header_inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.h_logo {
    width: auto;
    height: 36px;
}

.h_logo a {
    height: 100%;
}

.h_logo a h1 {
    height: 100%;
}

.h_logo a h1 img {
    object-fit: contain;
    height: 100%;
}

.h_list_pc,
.h_cta_btn {
    display: none;
}

.h_btn_menu {
    width: 40px;
    height: 14px;
    position: fixed;
    top: 18px;
    right: 5%;
    z-index: 9999;
    cursor: pointer;
    transition: all .3s;
}

.h_btn_menu span {
    position: absolute;
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 9999px;
    background: #809bd3;
    transition: all .3s;
}

.h_btn_menu span:nth-child(1) {
    top: 0;
}

.h_btn_menu span:nth-child(2) {
    bottom: 1px;
}

.h_btn_menu.active span:nth-child(1) {
    width: 96%;
    top: 50%;
    transform:rotate(45deg);
}

.h_btn_menu.active span:nth-child(2) {
    width: 96%;
    top: 50%;
    transform:rotate(-45deg);
}

.glo_nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    height: 100vh;
    width: 100vw;
    background: var(--color-wh);
    opacity: 0;
    transition: all 0.4s ease-in-out;
    padding: 85px 10%;
    overflow: auto;
}

.glo_nav.panelactive {
    opacity: 1;
    z-index: 9998;
}

.glo_nav_inner {
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.glo_nav_logo {
    width: 100%;
    object-fit: contain;
    margin-bottom: 32px;

}

.glo_nav_list {
    margin-bottom: 28px;
}

.glo_nav_list li{
    width: 100%;
    border-top: 1px solid var(--color-quaternary);
}

.glo_nav_list li a {
    width: 100%;
    padding: 24px 0;
    font-size: 2rem;
    text-align: left;
    color: var(--color-secondary);
    font-weight: 600;
    position: relative;
}

.glo_nav_list li a::before,
.glo_nav_list li a::after {
    content: '';
    width: 10px;
    height: 2px;
    background-color: var(--color-quaternary);
    position: absolute;
    right: 10px;
    top: 50%;
}

.glo_nav_list li a::before {
    transform: translateY(150%) rotate(-45deg);
}

.glo_nav_list li a::after {
    transform: translateY(-150%) rotate(45deg);
}

.glo_nav_list li:last-child {
    border-bottom: 1px solid var(--color-quaternary);
}

.glo_nav_cta {
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-wh);
    font-size: 2.4rem;
    font-weight: 600;
    padding: 20px 0;
}

@media screen and (min-width:1024px) {
    .header {
        height: 80px;
    }

    .header_inner {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0;
        flex-direction: unset;
        position: relative;
    }

    .h_logo {
        height: 65px;
        position: absolute;
        left: 2%;
    }

    .h_btn_menu {
        display: none;
    }

    .h_list_pc {
        width: auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }

    .h_list_pc li {
        width: auto;
    }

    .h_list_pc li a {
        color: var(--color-secondary);
        font-size: 1.8rem;
        font-weight: 600;
    }

    .h_cta_btn {
        display: block;
        position: absolute;
        right: 0;
        height: 100%;
        padding: 0 48px;
        color: var(--color-wh);
        font-size: 2.4rem;
        font-weight: 600;
        line-height: 80px;
        background-color: var(--color-primary);
    }
}

/*--------------------------------
footer 既存LP common.cssより
---------------------------------*/
/*-----------------
 *共通フッター
-----------------*/
footer{
	margin: 0;
	padding: 3em 0 1em;
	background-color: #333;
}
footer .footer_nav{
	width: 90%;
	max-width: 64em;
	margin: auto;
	color: #fff;
}
.footer_nav .footer_list_title{
	padding-bottom: 1em;
	font-size: 1.1em;
	font-weight: bold;
}
.footer_nav .footer_list_title a{
	color: #fff;
}
.footer_nav ul li{
	border-bottom: 1px solid #444;
	color: #fff;
}
.footer_nav ul li a{
	padding: 1em 0;
	color: #fff;
	display: block;
}
footer .im_top{
	width: 60%;
	max-width: 20em;
	height: auto;
	margin: 2em auto 1em;
	display: block;
}
footer .im_top_2023{
	width: 50%;
	max-width: 20em;
	height: auto;
	margin: 2em auto 2em;
	display: block;
}
footer .sns_area{
	width: 6.25em;
	margin: auto;
}
footer .sns_area a{
	width: 2.5em;
	height: 2.5em;
	margin-bottom: 1em;
	border-radius: 40px;
	border: 1px solid #fff;
	background-color: #fff;
	display: block;
	float: left;
}
footer .sns_area a:last-child{
	margin-left: 1em;
}
footer .copyright{
	text-align: center;
	font-size: 0.8em;
	color: #999;
}
.footer_nav ul li p.footer_sub_item{/*請求書20181214追加*/
	display: none;
}

/* タブレット横サイズ 1024px(16×64em)~ mdサイズ */
@media screen and (min-width:64em){
	footer:not(.footer2022) .footer-wrapper{
		width: 90%;
		max-width: 64em;
		margin: auto;
	}
	footer:not(.footer2022) .footer_nav{
		width: 60%;
   		border-right: 1px solid #444;
    	float: left;
	}
	footer:not(.footer2022) .footer_nav .footer_list{
		margin-bottom: 2em;
	}
	footer:not(.footer2022) .footer_nav .footer_list:last-child{
		margin-bottom: 0;
	}
	footer:not(.footer2022) .footer_nav ul li{
		border-bottom: none;
	}
	footer:not(.footer2022) .footer_nav ul li.left{
		width: 50%;
		float: left;
		clear:left;
	}
	footer:not(.footer2022) .footer_nav ul li.right{
		width: 50%;
		margin-left: 50%;
	}
	footer:not(.footer2022) .footer_nav ul li a{
		padding: 0.5em 0;
	}
	footer:not(.footer2022) .footer_nav .footer_list_title a:hover{
		color: #999;
	}
	footer:not(.footer2022) .footer_nav ul li a:hover{
		color: #999;
	}
	footer:not(.footer2022) .footer_right{
		width: 34%;
		padding-left: 5%;
		text-align: left;
		float: left;
	}
	footer:not(.footer2022)  .im_top{
		width: 100%;
		height: 42px;
		margin-left: 0;
	}
	footer:not(.footer2022) .im_top_2023{
		width: 50%;
		margin-left: 0;
		margin-bottom: 1em;
	}
	footer:not(.footer2022)  .sns_area{
		margin-left: 0;
	}
	footer:not(.footer2022)  .copyright{
		text-align: left;
		position: absolute;
    	/* bottom: 2em; */
	}
	footer:not(.footer2022) .footer_nav ul li p.footer_sub_item{/*請求書20181214追加*/
		display: block;
		text-indent: 1.5em;
		font-size: 0.8em;
	}
	footer:not(.footer2022) .footer-wrapper{
		max-width: 75em;
	}
}
@media screen and (min-width:75em){
	footer.footer2022 .im_top_2023{
		width: 50%;
		margin-left: 0;
		margin-bottom: 1em;
	}
}
/*-----------------
 *共通アイコン
-----------------*/
.icon_new-tab{
	width: 0.6em;
	height: 0.75em;
	margin-left: 6px;
	background-image: url("/web/jp/images/pr/icon_new-tab.svg");
	background-repeat: no-repeat;
	display: inline-block;
}

.icon_new-tab_dropdown{
	width: 0.6em;
	height: 0.75em;
	margin-left: 6px;
	background-image: url("/web/jp/images/pr/icon_new-tab_dropdown.svg");
	background-repeat: no-repeat;
	display: inline-block;
}
.drawer-navbar-mobile .icon_new-tab_dropdown{
	background-image: url("/web/jp/images/pr/icon_new-tab.svg");
}

/*-----------------
 *topに戻る
-----------------*/
#btn_Pagetop {
	position: fixed;
  	bottom: 2%;
  	right: 0;
    z-index: 9999;
}
#btn_Pagetop a {
	display: block;
  	width: 48px;
  	height: 48px;
  	background-color: rgba(var(--color-quaternary-rgb), .8);
    transition: .3s;
    position: relative;
}
#btn_Pagetop a::after,
#btn_Pagetop a::before { 
    content: '';
    width: 10px;
    height: 2px;
    background-color: var(--color-wh);
    border-radius: 9999px;
    position: absolute;
    top: 50%;
} 

#btn_Pagetop a::after {
    left: 47%;
    transform: translateY(-50%) rotate(45deg);
}
#btn_Pagetop a::before {
    right: 47%;
    transform: translateY(-50%) rotate(-45deg);
}

#btn_Pagetop a:hover {
  background-color: var(--color-quaternary);
}

/*-------------------
micro clearfix
-------------------*/
.cf:before, .cf:after {
  content: " ";
  display: table;
  height: 0px;
  clear: both;
  visibility: hidden;
  font-size: 0;/*これで解決させる*/
}
.cf:after { clear: both; }
.cf { zoom: 1; }
/* For IE 6/7 */
.fl { float: left; }
.fr { float: right; }
/*---------------------------------
footer 既存LP common.cssより ここまで
---------------------------------*/

.bg_area {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -9;
    width: 100vw;
    height: 100vh;
}

.bg_area img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.section_wrapper {
    padding: 48px 0;
}

.section_inner {
    width: 100%;
    padding: 0 5%;
    max-width: 1024px;
    margin: 0 auto;
}

.section_wrapper h2 {
    font-size: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 32px;
}

.section_wrapper h2::before {
    content: '';
    width: 64px;
    height: 3px;
    border-radius: 9999px;
    background-color: #d1d100;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (min-width: 1024px) {
    .section_wrapper {
        padding: 80px 0;
    }

    .section_wrapper h2 {
        font-size: 2.8rem;
        padding-bottom: 24px;
        margin-bottom: 64px;
    }

    .section_inner {
        padding: 0 20px;
    }
}
main .flex-wrapper {
    max-width: 1100px;
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    margin-inline: auto;
}
main {
    margin-top: calc(60px + 64px);
}
h1 {
    font-size: 36px;
    font-weight: 700;
}
h2 {
    font-size: 28px;
    font-weight: 700;
}
h3 {
    font-size: 20px;
    font-weight: 700;
}
img {
    width: 100%;
}
.flex-wrapper .right-content {
    width: 324px;
}
.flex-wrapper .right-content .company-card {
    border: 1px solid #dfdfdf;
    border-radius: 8px;
    margin-left: 16px;
    position: sticky;
    width: 324px;
    top: 124px;
}
.flex-wrapper .right-content .cta p {
    font-weight: 700;
}
.flex-wrapper .right-content .cta a {
    background-color: #3A5793;
    color: #fff;
    border-radius: 100vmax;
    padding: 8px;
    display: inline-block;
    font-weight: 700;
    margin-top: 8px;
}
.flex-wrapper .left-content {
    width: 750px;
}
.flex-wrapper .left-content hgroup {
    margin-bottom: 32px;
}
.flex-wrapper .left-content hgroup .company {
    font-size: 20px;
}
.company-card .text {
    padding: 0 36px 36px;
}
.company-logo {
    text-align: center;
}
.company-logo > div {
    margin: 4px 0;
}
.company-logo img {
    width: 250px;
    padding: 16px;
    border-radius: 20px;
}
.company-card .cta {
    text-align: center;
    padding-bottom: 36px;
}
.company-card .text .company-name .label,
.company-card .text .company-business .label,
.company-card .text .company-volume .label,
.company-card .text .company-issue .label {
    margin-right: 8px;
    font-weight: 700;
    margin-right: 8px;
}
article .read-text {
    margin: 32px 0 32px;
    line-height: 32px;
}
article .main-01,
article .main-02 {
    margin-bottom: 32px;
}
h2 {
    padding: 0.25em 0.5em;/*上下 左右の余白*/
    background: transparent;/*背景透明に*/
    border-left: solid 10px #3A5793;/*左線*/
    margin-bottom: 32px;
}
.sub-01,
.sub-02 {
    margin: 16px 0 16px;
}
h3 {
    margin-bottom: 16px;
}
.company {
    margin: 16px 0;
    font-size: 24px;
}
.point p {
    color: #3A5793;
    font-weight: 700;
    font-size: 24px;
}
.point li {
    list-style: none;
    background-color: #fff;
    margin: 8px 0;
    padding: 16px;
    box-shadow: 0 4px 20px #e8f5ef;
    font-weight: 700;
}
.main-01 {
    margin-top: 64px;
}
.paragraph {
    margin-bottom: 64px;
}
.paragraph p {
    line-height: 2;
    margin-bottom: 24px;
}
.cv {
    margin-top: 64px;
    padding-top: 64px;
    background-color: #fff8f3;
}
.cv .inner {
    text-align: center;
}
.cv h2 {
    padding: 0;
    border-left: initial;
}
.cv-head {
    color: #ed582d;
    font-size: 28px;
}
.cv-form {
    height: 800px;
    margin-top: 32px;
}
@media (max-width: 768px) {
    main .flex-wrapper {
        max-width: 90%;
        flex-direction: column-reverse;
    }
    .flex-wrapper .right-content {
        width: 100%;
    }
    .flex-wrapper .right-content .company-card {
        margin-left: 0;
        margin-inline: auto;
        margin-bottom: 32px;
    }
    .flex-wrapper .left-content {
        width: 100%;
    }
}
/*---------------------------------
cta top
---------------------------------*/

#cta.section_wrapper {
    background-color: rgba(var(--color-quaternary-rgb), .5);
}

#cta h2 span {
    font-size: 1.6rem;
    color: var(--color-or);
}

.cta_flex_r {
    margin: 24px auto 0;
}

.cta_flex_r .title {
    color: var(--color-secondary);
    font-size: 1.8rem;
    font-weight: 600;
}

.cta_flex_r .list {
    margin: 16px auto 32px;
}

.cta_flex_r .list li {
    padding-left: 1.2em;
    position: relative;
}

.cta_flex_r .list li::before {
    content: '・';
    position: absolute;
    left: 0;
}

@media screen and (min-width:768px) {
    .cta_flex {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 1024px;
        padding: 0 2%;
        margin: 0 auto;
        gap: 3%;
    }

    .cta_flex_l {
        width: 42%;
    }

    .cta_flex_r {
        width: 55%;
        margin: 0;
    }
}
@media screen and (min-width:1024px) {
    #cta h2 span {
        line-height: 1em;
        font-size: 2rem;
    }
}

.form-script {
    height: 1000px;
}

p,
li,
span {
    font-size: 16px;
}

@media (max-width: 768px) {
    .right-content .cta {
        display: none;
    }
}