/*--------------------------------------

　カスタムプロパティ（CSS変数）

---------------------------------------*/
:root {
    /* fonts */
    --font-family-jp: "Meiryo";
    --font-family-maru: "Zen Maru Gothic";
    /* font sizes */
    --font-size-title-ll: 40px;
    --font-size-title-l: 24px;
    --font-size-title-m: 18px;
    --font-size-title-s: 16px;
    --font-size-base: 14px;
    --font-size-paragraph: 12px;
    --font-size-caption: 10px;
    /* colors theme */
    --color-primary90: #FF9E02;
    --color-primary10: #FAF1D8;
    /* colors neutral */
    --color-N90: #333;
    --color-N0: #FFF;
    /* colors fix */
    --color-btn: #324EEC;
    --color-link: #11A4FF;
    /* line-height */
    --leading-trim: calc((1em - 1lh) / 2);
    --line-1: 1;
    --line-ss: 1.2;
    --line-s: 1.4;
    --line-m: 1.6;
    --line-l: 1.8;
}
/*--------------------------------------

　アットルール,追加リセット

---------------------------------------*/
a {
    outline: none;
    overflow-wrap: break-word;
    cursor: pointer;
    transition: all .2s ease-out;
}
img {
    width: 100%;
    height: auto;
}
body {
    line-height: var(--line-m);
    overflow-wrap: anywhere; /* 収まらない場合に折り返す */
    word-break: normal; /* 単語の分割はデフォルトに依存 */
    line-break: strict; /* 禁則処理を厳格に適用 */
    font-family: var(--font-family-jp);
}
p,span:not(h1 span) {
    margin-block: var(--leading-trim);
}
h2,.welcome_catch {
    color: var(--color-primary90);
    font-family: var(--font-family-maru);
    font-weight: bold;
    font-size: var(--font-size-title-l);
}
/* スマホ表示 */
@media (max-width: 600px) {
    h2,.welcome_catch {
        font-size: var(--font-size-title-m);
    }
}
/*--------------------------------------

　コンポーネント

---------------------------------------*/
/* レイアウト */
.section_wrapper {
    width: 100%;
	margin: 0 auto;
	padding: 64px 24px;
}
.section_container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}
/* レイアウトスマホ表示 */
@media (max-width: 600px) {
    .section_wrapper {
        padding: 48px 24px;
    }    
    .section_container {
        gap: 24px;
    }
}
/* ボタン */
.btn_cta,
.btn_cta-sub {
    display: block;
    position: relative;
    max-width: 390px;
    height: 56px;
    line-height: 52px;
    margin: auto;
    border: solid 2px var(--color-btn);
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(2, 4, 83, 0.3);
    background-color: var(--color-btn);
    color: var(--color-N0);
    font-weight: bold;
    text-align: center;
}
.btn_cta-sub {
    min-width: 154px;
    height: 36px;
    line-height: 32px;
    margin: 0;
    border-radius: 0px;
    box-shadow: none;
    background: var(--color-N0);
    color: var(--color-btn);
    font-size: var(--font-size-paragraph);
}
.btn_cta::after,
.btn_cta-sub::after {
    content: "";
    position: absolute;
    top: 40%;
    right: 24px;
	width: 9px;
	height: 9px;
	border-top: 2px solid var(--color-N0);
	border-right: 2px solid var(--color-N0);
	transform: rotate(45deg);
}
.btn_cta-sub::after {
    right: 16px;
	width: 6px;
	height: 6px;
	border-top: 2px solid var(--color-btn);
	border-right: 2px solid var(--color-btn);
}
/* ホバー */
.btn_cta:hover {
    background: var(--color-N0) ;
    color: var(--color-btn);
}
.btn_cta:hover::after {
	border-top: 2px solid var(--color-btn);
	border-right: 2px solid var(--color-btn);
}
.btn_cta-sub:hover {
    border: solid 2px var(--color-N0);
    background: var(--color-btn) ;
    color: var(--color-N0);
}
.btn_cta-sub:hover::after {
	border-top: 2px solid var(--color-N0);
	border-right: 2px solid var(--color-N0);
}
.btn_container .btn_cta{
    margin: 64px auto 0;
}
/* ボタンスマホ表示 */
@media (max-width: 600px) {
    .btn_cta,
    .btn_cta-sub {
        max-width: 220px;
        height: 36px;
        line-height: 32px;
        font-size: var(--font-size-paragraph);
    }
    .btn_cta-sub {
        min-width: 128px;
        height: 24px;
        line-height: 20px;
        font-size: var(--font-size-caption);
    }
    .btn_cta::after,
    .btn_cta-sub::after {
        top: 40%;
        right: 16px;
        width: 6px;
        height: 6px;
    }
    .btn_cta-sub::after {
        top: 36%;
        width: 5px;
        height: 5px;
        border-top: 1px solid var(--color-btn);
        border-right: 1px solid var(--color-btn);    
    }
    .btn_container .btn_cta{
        margin: 32px auto 0;
    }
}
/* 改行 */
/* スマホの時だけ改行させるクラス */
.br-sp {
    display: none;
}
@media (max-width: 600px) {
    .br-sp {
        display: block;
    }
}
/* pcの時だけ改行させるクラス */
.br-pc {
    display: block;
}
@media (max-width: 600px) {
    .br-pc {
        display: none;
    }
}
/*追従　先頭に戻るボタン*/
.fix_pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9998; /*DSPが上に来る対策*/
    transition: unset;
}
.fix_pagetop a {
    display: block;
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 25px;
    background: var(--color-link);
    opacity: .5;
}
.fix_pagetop a:after {
    content: '';
    display: block;
    position: absolute;
    top: 19px;
    left: 17px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-N0);
    border-bottom: 2px solid var(--color-N0);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
/*スライダー*/
.slider .slick-slide {
    margin: 0 16px;
    /*スライド左右の余白調整*/
}
/*--------------------------------------

　独自css

---------------------------------------*/
/* ヘッダー */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    padding: 0 32px;
    background-color: var(--color-primary90);
    color: var(--color-N0);
    font-weight: bold;
}
header span {
    font-family: var(--font-family-maru);
    font-size: var(--font-size-title-m);
}
/* ヘッダースマホ表示 */
@media (max-width: 600px) {
    header {
        height: 48px;
        padding: 0 24px;
        font-size: var(--font-size-caption);
    }
    header span {
        font-size: var(--font-size-base);
    }
    }
/* トップ */
.top_content_wrapper {
    width: 100%;
    max-width: 1024px;
    padding: 48px 0;
    margin: 0 auto;
    background: url(/image/index/main_visual.webp) no-repeat center;
    background-size: contain;
}
.top_content_wrapper p{
    text-align: left;
}
.top_content_wrapper .section_container {
    max-width: 480px;
    padding: 40px 0;
}
.top_content_wrapper .section_container h1 img {
    max-width: 220px;
    margin: 0 auto 40px;
}
.top_content_wrapper .section_container h1 + p  {
    position: relative;
    font-family: var(--font-family-maru);
    font-weight: bold;
    font-size: var(--font-size-title-ll);
    -webkit-text-stroke: 6px var(--color-N0);
    color: var(--color-primary90);
    text-align: center;
}
.top_content_wrapper .section_container h1 + p span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    margin: 0;
    transform: translateX(-50%);
    -webkit-text-stroke: 0px;
}
/* トップタブレット表示 */
@media (max-width: 1024px) {
    .top_content_wrapper {
        padding: 32px 24px;
    }
    .top_content_wrapper .section_container {
        gap: 24px;
        max-width: 350px;
        padding: 0;
    }    
    .top_content_wrapper .section_container h1 img {
        margin: 0 auto 24px;
    }    
    .top_content_wrapper .section_container h1 + p {
        font-size: var(--font-size-title-l);
    }
    .top_content_wrapper .btn_container .btn_cta{
        margin: 32px 0 0;
    }
}
/* トップスマホ表示 */
@media (max-width: 600px) {
    .top_content_wrapper {
        padding: 32px 0;
        background: none;
    }
    .top_content_wrapper .btn_container {
        padding: 0 24px;
        font-size: var(--font-size-base);
    }
    .top_content_box {
        padding: 72px 0 ;
        padding-left:  calc(((24 / 390) * 100%));
        background: url(/image/index/main_visual.webp) no-repeat top;
        background-size: 504px;
        text-align: left;
    }
    .top_content_wrapper .section_container {
        gap: 32px;
        max-width: 600px;
    }
    .top_content_wrapper .section_container h1 img {
        max-width: 149px;
    }
    .top_content_wrapper .section_container h1 + p {
        font-size: var(--font-size-title-m);
        text-align: left;
    }
    .top_content_wrapper .btn_container .btn_cta{
        margin: 32px auto 0;
    }
}
/* 事業内容 */
.business_content_wrapper {
    background: var(--color-primary10) ;
}
.business_content_wrapper .section_container {
    padding: 64px 0;
    background: url(/image/index/road.webp) no-repeat bottom;
    background-size: contain;
}
.business_content_wrapper .section_container ul {
    display: flex;
    align-items: center;
    gap: 32px;
}
/* トップタブレット表示 */
@media (max-width: 1024px) {
    .business_content_wrapper .section_container {
        background-size: 1150px;
    }
    }
/* 事業内容スマホ表示 */
@media (max-width: 600px) {
    .business_content_wrapper .section_container {
        padding: 48px 0 64px;
    }
    .business_content_wrapper .section_container p{
        padding: 0 24px;
        font-size: var(--font-size-base);
        text-align: left;
    }
    }
/* 会社概要 */
.section_wrapper.company {
    background: url(/image/index/town.png) no-repeat bottom;
    background-size: contain;
}
.section_wrapper.company .section_container{
    gap: 32px;
    max-width: 1024px;
    margin: 0 auto;
}
/* 会社概要テーブル表 */
.company_table {
    border-collapse: separate;
    border-spacing: 0 8px;
}
.company_table th {
    width: 25%;
    vertical-align: middle;
    background: var(--color-primary90);
    color: var(--color-N0);
    text-align: center;
}
.company_table td {
    padding: 16px;
    border: solid 1px var(--color-primary90);
    background: var(--color-N0);
    text-align: left;
}
.company_table ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}
.company_table ul li a{
    position: relative;
    color: var(--color-link);
}
.company_table ul li a::after{
    content: "";
    position: absolute;
    top: 30%;
    right: -10px;
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--color-link);
	border-right: 2px solid var(--color-link);
	transform: rotate(45deg);
}
/* 会社概要スマホ表示 */
@media (max-width: 600px) {
    .section_wrapper.company .section_container{
        gap: 16px;
    }    
    .company_table {
        font-size: var(--font-size-paragraph);
    }
    .company_table th {
        width: 34%;
    }    
    .company_table td {
        padding: 12px;
    }    
    .company_table ul {
        gap: 20px;
    }
    .company_table ul li a::after{
        width: 6px;
        height: 6px;
        border-top: 1px solid var(--color-link);
        border-right: 1px solid var(--color-link);
    }
}
/* ウェルカム */
.section_container.welcome {
    gap: 24px;
    padding: 64px 24px;
    background: var(--color-primary10);
}
.section_container.welcome img {
    align-self:center;
    max-width: 340px;
}
/* ウェルカムスマホ表示 */
@media (max-width: 600px) {
    .section_container.welcome {
        gap: 16px;
        padding: 48px 24px;
    }
    .section_container.welcome img {
        max-width: 162px;
    }
    .section_container.welcome .btn_container .btn_cta{
        margin: 48px auto 0;
    }
}
/* フッター */
footer {
    height: 48px;
    line-height: 48px;
    background: var(--color-N90);
    color: var(--color-N0);
    font-size: var(--font-size-paragraph);
    text-align: center;
}
