@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/*--------------------------------------------------------------------------------------------------------------------------------------------------------
	base
--------------------------------------------------------------------------------------------------------------------------------------------------------*/
* { box-sizing: border-box; }

html,body { width: 100%; font-size: 16px; font-family: 'Noto Sans JP', sans-serif; letter-spacing: 0.01em; color: #000; line-height: 1.8; }
img { width: 100%; }

/*--------------------------------------------------------------------------------------------------------------------------------------------------------
	share
--------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*display*/
.spOnly { display: none; }
    
    /*sp時*/
    @media screen and (max-width: 750px) {
        .spOnly { display: block; }
    }

/*a*/
a { color: #000; text-decoration: none; }
a:focus { outline: none; }
a:focus-visible { outline: 2px solid #005fcc; outline-offset: 4px; }

a.linkBtn { display: inline-block; color: #fff; font-size: 90%; background: #08287f; padding: 12px 60px; border-radius: 120px; position: relative; text-decoration: none; }
a.linkBtn::after { position: absolute; content: ""; display: block; right: 20px; top: 50%; transform: translateY(-50%); width: 10px; height: 10px; background-color: #fff; clip-path: polygon(0 0, 0% 100%, 100% 50%); }
a.linkBtn.iconWin::after { position: absolute; content: ""; display: block; margin-top: 1px; right: 20px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; background: url("/corp/ktc/common/images/icon_win_w.webp") no-repeat center center / cover; clip-path: none; }

    /*pc時*/
    @media screen and (min-width: 750px) {
        a img { transition: opacity .4s; }
        a:hover img { opacity: .7; }

        a.linkBtn { transition: background .4s; }
        a.linkBtn:hover { background: #0056d7; }
    }

.btnInner.jumpLink p { font-size: 90%; }
.btnInner.jumpLink div + p { margin-top: 10px; }

/*--------------------------------------------------------------------------------------------------------------------------------------------------------
	inPage
--------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*title*/
#titleSec { height: 240px; }
#titleSec h1 { padding: 90px 0 0; text-align: center; color: #fff; font-weight: 500; line-height: 1.4; }
#titleSec h1 .txtEn { font-size: 360%; font-family: "Open Sans", sans-serif; font-weight: bold; }

    /*sp時*/
    @media screen and (max-width: 750px) {
        #titleSec { height: 36vw; position: relative; }
        #titleSec h1 { padding: 0; margin-top: 3.5vw; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100vw; }
        #titleSec h1 .txtEn { font-size: 200%; }
        #titleSec h1 .txtJp { font-size: 80%; }
    }

/*pannavi*/
#panNaviSec ul { display: flex; justify-content: flex-end; flex-wrap: wrap; padding: 20px; font-size: 86%; color: #666; }
#panNaviSec ul a { position: relative; display: block; padding-right: 30px; color: #000; }
#panNaviSec ul a::after { content: ">"; display: block; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: #666; }

    /*pc時*/
    @media screen and (min-width: 750px) {
        #panNaviSec a:hover { text-decoration: underline; }
    }

    /*sp時*/
    @media screen and (max-width: 750px) {
        #panNaviSec ul { padding: 10px; }
    }

/*outer*/
.contentOuter { width: 90%; max-width: 1200px; margin: 0 auto 130px; }

    /*sp時*/
    @media screen and (max-width: 750px) {
        .contentOuter { margin-bottom: 60px; }
    }

/*h*/
.hUnderBar { position: relative; font-size: 200%; font-weight: 500; text-align: center; margin-top: 120px; padding-bottom: 15px; }
.hUnderBar::after { position: absolute; content: ""; display: block; width: 80px; height: 3px; background: #0c3391; left: 50%; transform: translateX(-50%); bottom: 0; }
.hUnderBar.pFirst { margin-top: 60px; }

.hBg { font-size: 120%; font-weight: 500; background:linear-gradient(to right, #0c3391 0%, #54c3f1 70%); color: #fff; padding: 5px 15px; margin-top: 60px; text-align: left; }

    /*sp時*/
    @media screen and (max-width: 750px) {
        .hUnderBar { font-size: 130%; margin-top: 60px; }

        .hBg { font-size: 100%; margin-top: 40px; }
    }

/*--------------------------------------------------------------------------------------------------------------------------------------------------------
	header
--------------------------------------------------------------------------------------------------------------------------------------------------------*/
#headerWrap { position: fixed; top: 0; left: 0; right: 0; z-index: 10; padding: 0; width: 100%; transition: background .4s; }
#headerWrap::before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: -1; display: block; width: 100%; height: 100%; background: #fff; opacity: 0; transition: opacity .4s; box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, .4); }
#headerSec { display: flex; justify-content: space-between; align-items: center; width: 100%; }

    /*sp時*/
    @media screen and (max-width: 750px) {
        #headerSec { margin-top: 0; }
    }

/* scroll時：bg */
#headerWrap.headerFollowWrap::before,
#headerWrap.headerHasFollow::before { opacity: 0.9; }

/*Logo*/
#headerSec #headerLogoArea { display: flex; align-items: center; padding: 0 min(2vw, 20px); }
#headerSec #headerLogoArea div:nth-of-type(1) { max-width: 242px; }

/*link*/
#headerLinkOuter { display: flex; justify-content: flex-end; align-items: center; }

#headerSec #headerLinkArea ul { display: flex; justify-content: flex-end; align-items: center; }
#headerSec #headerLinkArea > ul > li > a { color: #fff; font-weight: bold; text-decoration: none; margin-right: 3vw; display: inline-block; }
#headerSec #headerLinkArea > ul > li:last-child > a { font-size: 90%; background: #08287f; padding: 6px 40px; margin-right: 1vw; border-radius: 30px; transition: background .4s; }

    /* scroll時 */
    #headerWrap.headerFollowWrap #headerSec #headerLinkArea > ul > li > a { color: #08287f; }
    #headerWrap.headerFollowWrap #headerSec #headerLinkArea > ul > li > a::after { content: ""; background-color: #08287f; }
    #headerWrap.headerFollowWrap #headerSec #headerLinkArea > ul > li:last-child > a { color: #fff; }
    #headerWrap.headerFollowWrap #headerSec #headerLinkArea > ul > li:last-child > a::after { content: none; }

    /*pc時*/
    @media screen and (min-width: 750px) {
        #headerSec #headerLinkArea ul li a { transition: color .4s, border .4s; }
        #headerSec #headerLinkArea > ul > li:last-child a:hover { background: #0056d7; }
    }

    /*pc時：1270以上*/
    @media screen and (min-width: 1270px) {
        #headerSec #headerLinkArea ul li { position: relative; }
        #headerSec #headerLinkArea ul li a { position: relative; }
        #headerSec #headerLinkArea ul li a::after { content: ""; background-color: #fff; position: absolute; left: 0; width: 100%; height: 1px; bottom: -4px; transform: scale(0, 1); transform-origin: right top; transition: transform 0.3s; }
        #headerSec #headerLinkArea > ul > li:last-child a::after { content: none; }
        #headerSec #headerLinkArea ul li a:hover::after { transform: scale(1, 1); transform-origin: left top; }
        
        #headerSec #headerLinkArea ul li.hasChild .childArea { padding: 15px 0 0; margin-left: -24px; position: absolute; display: none; }
        #headerSec #headerLinkArea ul li.hasChild.menuOpen .childArea { display: block; }
        #headerSec #headerLinkArea ul li.hasChild .childArea ul { font-size: 90%; background: rgba(14,53,127,0.85);; border-radius: 5px; padding: 10px 20px; display: block; }
        #headerSec #headerLinkArea ul li.hasChild .childArea ul li a { border: none; padding-bottom: 10px; color: #fff; }
        #headerSec #headerLinkArea ul li.hasChild .childArea ul li:first-child a { padding-top: 0; }
        #headerSec #headerLinkArea ul li.hasChild .childArea ul li a::after { bottom: 0; }
        #headerSec #headerLinkArea ul li.hasChild .childArea ul li a,
        #headerSec #headerLinkArea ul li.hasChild .childArea ul li span.noLink { padding: 10px 0; margin-left: 0; border-bottom: solid 1px #999; display: block; }
        #headerSec #headerLinkArea ul li.hasChild .childArea ul li span.noLink { color: #fff; opacity: .4; line-height: 1.4; }
        #headerSec #headerLinkArea ul li.hasChild .childArea ul li span.noLink .txtComing { font-size: 70%;}
    }

    /*pc時：1270以下*/
    @media screen and (max-width: 1270px) {
        #headerLinkOuter { margin-right: 50px; }
        
        #headerSec #headerLinkArea { display: block; position: fixed; background: rgba(238,238,238,0.95); right: -325px; z-index: -2; width: 300px; transition: all .4s; overflow-y: auto; border-radius: 0; padding: 0 40px 40px; }
        #headerSec #headerLinkArea ul { display: block; }
        #headerSec #headerLinkArea ul li a { display: block; margin: 0; padding: 24px 0; border-bottom: solid 1px #08287f; color: #08287f; }
        #headerSec #headerLinkArea > ul > li:last-child { margin-top: 30px; }
        #headerSec #headerLinkArea > ul > li:last-child a { border: none; text-align: center; color: #fff; }
        #headerSec #headerLinkArea > ul > li:last-child a:hover { border: none; }
        #headerSec #headerLinkArea ul li .txtComing { font-size: 70%; margin-left: 6px; }
        
        #headerSec #headerLinkArea ul li.hasChild { border-bottom: solid 1px #08287f; }
        #headerSec #headerLinkArea ul li.hasChild a { border: none; padding-bottom: 10px; }
        #headerSec #headerLinkArea ul li.hasChild ul li a,
        #headerSec #headerLinkArea ul li.hasChild ul li span.noLink { margin-left: 20px; padding: 10px 0; border-top: solid 1px #999; display: block; font-size: 90%; }
        #headerSec #headerLinkArea ul li.hasChild ul li span.noLink { color: #666; }
    }

/*右上ロゴ*/
#headerSec #logoBox { max-width: 339px; margin-right: 5px; }

/*spMenu*/
#headerSec #spMenuBtn { display: none; }

    /*pc時*/
    @media screen and (min-width: 750px) {
        #headerWrap.headerFollowWrap #headerSec #headerLinkArea > ul > li:last-child a:hover { color: #fff; background: #0056d7; }
    }

    /*pc時：1270以下*/
    @media screen and (max-width: 1270px) {
        #headerSec #spMenuBtn { display: block; }
        #headerSec #spMenuBtn { display: block; position: absolute; width: 27px; height: 20px; right: 2.5%; top: calc(50% - 9px); cursor: pointer; }
        #headerSec #spMenuBtn span,
        #headerSec #spMenuBtn::before,
        #headerSec #spMenuBtn::after { display: block; width: 100%; height: 3px; background: #fff; position: absolute; left: 0; right: 0; transition: all .4s; }
        #headerSec #spMenuBtn::before,
        #headerSec #spMenuBtn::after { content: ""; }
        #headerSec #spMenuBtn span { top: calc(50% - 2px); }
        #headerSec #spMenuBtn::before { top: 0; }
        #headerSec #spMenuBtn::after { bottom: 0; }

        #headerSec.naviOn #spMenuBtn span { opacity: 0; }
        #headerSec.naviOn #spMenuBtn::before { top: 4px; left: 0; transform: translateY(6px) rotate(-45deg); background-color: #08287f; }
        #headerSec.naviOn #spMenuBtn::after { top: 16px; left: 0; transform: translateY(-6px) rotate(45deg); background-color: #08287f; }
        #headerSec.naviOn #headerLinkArea { right: 0; }

        /* scroll時 */
        #headerWrap:has(.naviOn)::before { opacity: 0.8; }    
        #headerWrap.headerFollowWrap #headerSec #spMenuBtn span,
        #headerWrap.headerFollowWrap #headerSec #spMenuBtn::before,
        #headerWrap.headerFollowWrap #headerSec #spMenuBtn::after,
        #headerWrap.headerHasFollow #headerSec.naviOn #spMenuBtn span,
        #headerWrap.headerHasFollow #headerSec.naviOn #spMenuBtn::before,
        #headerWrap.headerHasFollow #headerSec.naviOn #spMenuBtn::after{ background-image: none; background-color: #08287f; }
    }

/*--------------------------------------------------------------------------------------------------------------------------------------------------------
	footer
--------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*display*/
    @media screen and (max-width: 750px) {
        .minOnlyNone { display: block; }
    }

/*pageTop*/
#pageTopBtn { width: 50px; position: fixed; right: 20px; bottom: 100px; z-index: 5; display: none; }

    /*sp時*/
    @media screen and (max-width: 750px) {
        #pageTopBtn { bottom: 20px;}
    }

/*link*/
#footerLinkSec { background: #e6e9ed; }
#footerLinkSec #footerWrap { width: 90%; max-width: 1200px; margin: 0 auto; padding: 80px 0; display: flex; flex-direction: row-reverse; align-items: flex-start; justify-content: space-between; }
#footerLinkSec #footerWrap #footerInfoArea { max-width: 370px; min-width: 330px; width: 30.83%; }
#footerLinkSec #footerWrap #footerInfoArea #footerLogo img { max-width: 236px; }
#footerLinkSec #footerWrap #footerInfoArea h2 { font-size: 112%; margin-top: 30px; }
#footerLinkSec #footerWrap #footerInfoArea h2 + p { margin-top: 10px; }
#footerLinkSec #footerWrap #footerLinkArea { max-width: 840px; width: 70%; display: flex; border-left: 1px solid #ccc; }
#footerLinkSec #footerWrap #footerLinkArea > div { margin-left: 10%; }
#footerLinkSec #footerWrap #footerLinkArea > div ul { margin-top: 15px; }
#footerLinkSec #footerWrap #footerLinkArea > div ul li { margin-top: 15px; font-size: 90%; }
#footerLinkSec #footerWrap #footerLinkArea > div ul li a,
#footerLinkSec #footerWrap #footerLinkArea > div ul li .noLink { display: inline-block; position: relative; padding-left: 12px; }
#footerLinkSec #footerWrap #footerLinkArea > div ul li .noLink .txtComing { font-size: 80%; }
#footerLinkSec #footerWrap #footerLinkArea > div ul li a::before,
#footerLinkSec #footerWrap #footerLinkArea > div ul li .noLink::before { position: absolute; content: ""; display: block; left: 0; top: 0.7em; width: 5px; height: 5px; background-color: #08287f; clip-path: polygon(0 0, 0% 100%, 100% 50%); }
#footerLinkSec #footerWrap #footerLinkArea > div ul li .noLink { color: #999; line-height: 1.6; }
#footerLinkSec #footerWrap #footerLinkArea > div ul li .noLink::before { background-color: #999; }
#footerLinkSec #footerWrap #footerLinkArea > div ul + h3 { margin-top: 30px; }

    /*pc時*/
    @media screen and (min-width: 750px) {    
        #footerLinkSec #footerWrap #footerLinkArea a { transition: color .2s; }
        #footerLinkSec #footerWrap #footerLinkArea a:hover { color: #002a8b; }
    }

    /*pc時：920以下*/
    @media screen and (max-width: 920px) {    
        #footerLinkSec #footerWrap { display: block; padding: 40px 0; }
        #footerLinkSec #footerWrap #footerInfoArea { max-width: 100%; width: 100%; border-top: 1px solid #ccc; margin-top: 30px; padding-top: 30px; }
        #footerLinkSec #footerWrap #footerInfoArea h2 { margin-top: 20px; }
        #footerLinkSec #footerWrap #footerInfoArea h2 + p { font-size: 90%; }
        #footerLinkSec #footerWrap #footerLinkArea { max-width: 100%; width: 100%; border-left: none; }
        #footerLinkSec #footerWrap #footerLinkArea > div:nth-child(1) { margin-left: 0; }
    }

    /*sp時*/
    @media screen and (max-width: 750px) {
        #footerLinkSec #footerWrap #footerInfoArea { text-align: center; border: none; margin-top: 0; padding-top: 0; }
        #footerLinkSec #footerWrap #footerLinkArea { display: none; }
    }

/*bottom*/
#footerBottomSec { padding: 20px 20px 20px 30px; display: flex; justify-content: space-between; }
#footerBottomSec #footerBottomLinkArea ul { display: flex; }
#footerBottomSec #footerBottomLinkArea ul li { margin-right: 20px; }
#footerBottomSec #footerBottomLinkArea ul li a,
#footerBottomSec #footerBottomLinkArea ul li .noLink { font-size: 90%; display: inline-block; position: relative; padding-left: 12px; }
#footerBottomSec #footerBottomLinkArea ul li .noLink .txtComing { font-size: 80%; display: inline-block; margin-left: 5px;}
#footerBottomSec #footerBottomLinkArea ul li a::before,
#footerBottomSec #footerBottomLinkArea ul li .noLink::before { position: absolute; content: ""; display: block; left: 0; top: 0.7em; width: 5px; height: 5px; background-color: #08287f; clip-path: polygon(0 0, 0% 100%, 100% 50%); }
#footerBottomSec #footerBottomLinkArea ul li .noLink { color: #999; }
#footerBottomSec #footerBottomLinkArea ul li .noLink::before { background-color: #999; }
#footerBottomSec #footerBottomCopyArea { font-size: 90%; }

    /*pc時*/
    @media screen and (min-width: 750px) {
        #footerBottomSec #footerBottomLinkArea ul li a { transition: color .2s; }
        #footerBottomSec #footerBottomLinkArea ul li a:hover { color: #002a8b; }
    }

    /*sp時*/
    @media screen and (max-width: 750px) {
        #footerBottomSec { padding: 20px; display: block; text-align: center; }
        #footerBottomSec #footerBottomLinkArea ul { display: block; }
        #footerBottomSec #footerBottomCopyArea { border-top: 1px solid #ccc; margin-top: 20px; padding-top: 10px; line-height: 1.4; }
    }
