@charset "utf-8";
/*-------------------------------
COMMMON CSS
-------------------------------*/
/*
@acab/reset.css -CSS
*/
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}:where([hidden]:not([hidden='until-found'])){display:none!important}:where(html){-webkit-text-size-adjust:none;color-scheme:dark light}@supports not (min-block-size:100dvb){:where(html){block-size:100%}}@media (prefers-reduced-motion:no-preference){:where(html:focus-within){scroll-behavior:smooth}}:where(body){block-size:100%;block-size:100dvb;line-height:1.5;font-family:system-ui,sans-serif;-webkit-font-smoothing:antialiased}:where(input,button,textarea,select){font:inherit;color:inherit}:where(textarea){resize:vertical;resize:block}:where(button,label,select,summary,[role='button'],[role='option']){cursor:pointer}:where(:disabled){cursor:not-allowed}:where(label:has(>input:disabled),label:has(+input:disabled)){cursor:not-allowed}:where(button){border-style:solid}:where(a){text-underline-offset:.2ex}:where(ul,ol){list-style:none}:where(img,svg,video,canvas,audio,iframe,embed,object){display:block}:where(img,picture,svg){max-inline-size:100%;block-size:auto}:where(p,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(h1,h2,h3){line-height:calc(1em + 0.5rem)}:where(hr){border:none;border-block-start:1px solid;color:inherit;block-size:0;overflow:visible}:where(:focus-visible){outline:2px solid var(--focus-color,Highlight);outline-offset:2px}:where(.visually-hidden:not(:focus,:active,:focus-within,.not-visually-hidden)){clip-path:inset(50%)!important;height:1px!important;width:1px!important;overflow:hidden!important;position:absolute!important;white-space:nowrap!important;border:0!important}

/* common.css
----------------------------------------- */
html {
  touch-action: manipulation;
}
html,body{
    width: 100%;
    width: 100vw;
    overflow-x: hidden;
}
body {
	/*font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",  "Hiragino Kaku Gothic ProN", "Hiragino Sans","メイリオ", "Meiryo", sans-serif;
	*/
	font-family: 'Noto Sans JP', "メイリオ", "Meiryo", sans-serif;
	font-size: 16px;
	color: #000;
	line-height: 1.8;
	letter-spacing: .2px;
	text-align: left;
	font-weight: 500;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}
a:hover {
	color: #000;
	text-decoration: none;
}
a:focus {
	outline: none;
}
input:focus,
select:focus,
textarea:focus {
	outline: none;
}
img {
	width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;
}
p{
	margin: 0 0 0 0;
	font-size: 15px;
	line-height: 1.7;
    color: #000;
}
input {
background: #fff;
}
input[type="button"],input[type="submit"],
select {
-moz-appearance: none;
-webkit-appearance: none;/need for safari/
appearance: none;
}
select {
    background: #fff;
}

.bgWhite{
    background: #fff;
}

.enFonts{
  font-family: "cofo-peshka-variable",sans-serif;
  font-variation-settings: 'wdth' 75, 'wght' 700, 'slnt' 0;
}

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


/*
ダークモード対応
----------------------------------------- */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #fff;
    color: #000;
  }
  input {
    background: #fff;
  }
}



/*
sp_br
----------------------------------------- */
.sp_br{
	display: block;
}
.pc_br{
	display: none;
}
@media only screen and (min-width: 768px) {
	.sp_br{
		display: none;
	}
	.pc_br{
		display: block;
	}
}
/*
pc_img
----------------------------------------- */
.sp_img{
    display: block;
}
.pc_img{
    display: none;
}
@media only screen and (min-width: 768px) {
    .sp_img{
        display: none;
    }
    .pc_img{
        display: block;
    }
}


/*
spImg
----------------------------------------- */
.spImg{
    display: block;
}
.pcImg{
    display: none;
}
@media only screen and (min-width: 768px) {
    .spImg{
        display: none;
    }
    .pcImg{
        display: block;
    }
}


/*
container
----------------------------------------- */
.container {
	width: 90%;
	max-width: 1100px;
	margin-right: auto;
	margin-left: auto;
}



@charset "UTF-8";

/*============
nav
=============*/
.headerSpace {
    padding-top: 90px;
}

header nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 3;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
}

/*.header__nav_sp nav{
    left: -1200px;
}
*/
.open nav {
    transform: scaleY(1);
    opacity: 1;
}

.header__nav_sp.open nav{
    display: block;
}

header nav .inner {
    padding: 25px;
    margin-top: 45px;
    width: 90%;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}

header nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav .inner ul.sp_nvList{
    margin-bottom: 20px;
}

header nav .sp_nvText{
    margin-bottom: 20px;
}
header nav .sp_nvText p{
    font-weight: bold;
    font-size: 16px;
}

header nav .sp_LinkItem{
    margin-bottom: 20px;
    width: 100%;
}

header nav .sp_LinkItem a{
    display: block;
    width: 100%;
    max-width: 300px;
    margin-right: auto;
    margin-left: 0;
    padding: 20px 30px;
}

header nav .sp_LinkItem a img{
    width: 1em;
}

header nav .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #0F6FB5;
}

header nav .inner ul li:first-child {
    border-top: 1px solid #0F6FB5;
}

header nav .inner ul li a {
    display: block;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    padding: 1em;
    text-decoration: none;
    transition-duration: 0.2s;
    transition: .3s;
}

header nav .inner ul li a:hover {
    background: #0F6FB5;
    color: #fff;
}

.header__tel {
    margin-left: auto;
    margin-right: 0;
    position: absolute;
    top: 30px;
    right: 80px;
}
.header__tel a{
    font-weight: bold;
    font-size: 16px;
}

.header__tel img{
    width: 1em;
    display: inline-block;
}

@media screen and (max-width: 767px) {
    header nav {
        /*left: -100vh;*/
        width: 100%;
    }
}


/*============
.toggle_btn
=============*/

.toggle_btn {
    display: block;
    position: fixed;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    transition: all .5s;
    cursor: pointer;
    z-index: 1200;
    background: #0F6FB5;
    padding: 10px;
    border-radius: 107px;
}

.toggle_btn span {
    display: block;
    position: absolute;
    left: 15px;
    width: 20px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    transition: all .5s;
}

.toggle_btn span:nth-child(1) {
    top: 16px;
}

.toggle_btn span:nth-child(2) {
    top: 24px;
}

.toggle_btn span:nth-child(3) {
    bottom: 16px;
}


.open .toggle_btn{

}

.open .toggle_btn span{

}

.open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
        top: 13px;
}

.open .toggle_btn span:nth-child(2) {
    opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
    bottom: 15px;
}

@media screen and (max-width: 768px) {
    header nav .sp_LinkItem a {
        max-width: inherit;
        width: auto;
        display: block;
   }
}


/*============
#mask
=============*/

#mask {
    display: none;
    transition: all .5s;
}

.open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .8;
    z-index: 2;
    cursor: pointer;
}


/*============
#header
=============*/
#header {
    position: fixed;
    top: 0;
    background-color: rgba(255,255,255,0);
    width: 100%;
    z-index: 999;
    height: 90px;
    transition: .3s;
}
#header .sp-show {
    display: none;
}

#header .header__nav_sp {
    display: none;
}

.header__wrap {
    max-width: 1860px;
    width: 100%;
    margin: 0 auto;
    height: 90px;
}

.header__logo {
    min-width: auto;
    width: 160px;
    /*margin-right: 35px;*/
}

.headerLeft .header__logo {
    display: flex;
    align-items: center;
    margin-left: 30px;
    width: 200px;
}

.headerLeft .header__logo img{
    height: auto;
    width: 180px;
}

.header__nav.header__nav_pc {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.headerLeft {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.headerRight {
    width: calc(100% - 300px);
    height: 100%;
}

.header__nav__list {
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    text-decoration: none;
    list-style: none;
    align-items: center;
    font-size: 14px;
    white-space: nowrap;
    margin-bottom: 0;
    margin-top: 0;
}
.header__nav__list__item{
    text-align: center;
}
.header__nav__list__item a{
    color: #fff;
    display: block;
    width: 100%;
    padding: 40px 0;
    font-size: 14px;
    letter-spacing: .1px;
}

.header__nav__list__item a:hover{
    color: #0F6FB5;
}

.headerLeft .header__nav__list {
    align-items: center;
    margin-right: 10px;
}

.headerRight.header__nav__list {
    align-items: flex-start;
}

.headerRight.header__nav__list .header__nav__list__item a {
    margin-top: 27px;
    display: flex;
    align-items: center;
}

.header__nav__list__item.link_instagram {
	display: block;
	margin: 0 auto 10px auto;
	width: 50px;
	height: 50px;
    padding: 5px 0;
}
.header__nav__list__item.link_instagram a {
    padding: 0;
}
.header__nav__list__item.link_instagram.sp {
	margin: 0 auto 20px auto;
	width: 50px;
	height: 50px;
}
.header_world {
    width: 14px;
    height: 14px;
    margin-right: 5px;
    margin-bottom: 3px;
}

.header__nav__list__item {
    padding: 0 15px;
}

.header__logo{
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.header__logo a{
    padding: 10px 0;
    display: block;
    height: 82px;
    transition: .3s;
    display: flex;
    align-items: center;
}

.header__logo__img {
    width: auto;
    height: 100%;
}

.hoverColorGreen:hover {
    transition: 0.3s ease-in-out;
    color: #0F6FB5;
}

/* tel LINK */
.header__nav__list__item.telLink {
    font-weight: bold;
}

.header__nav__list__item.telLink a{
    display: flex;
    align-items: center;
    font-size: 18px;
    flex-wrap: wrap;
}


/*
.header__nav__list__item.telLink a:before{
    content: '';
    height: 1em;
    width: 1em;
    background: url(../img/common/header_tel_icon.svg) no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
    padding-right: 5px;
}*/

/*.header__nav__list__item.telLink a:hover:before{
    background: url(../img/common/header_tel_icon_hover.svg) no-repeat;
    background-size: contain;
    background-position: center;
}*/

.header__nav__list__item.telLink img{
    height: 1em;
    width: auto;
    max-width: auto;
    padding-right: 5px;
}


/* tel LINK */
.header__nav__list__item.telLink {
    font-weight: bold;
}

/*.header__nav__list__item.telLink a{
    display: flex;
    align-items: center;
    font-size: 18px;
}*/

.header__nav__list__item.telLink{
    display: block;
    max-width: 188px;
}

.header__nav__list__item.telLink .telLinkFlex{
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    justify-content: center;
    width: 100%;
}

.header__nav__list__item.telLink .telLink_text{
    display: block;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.header__nav__list__item a .telLinkFlex:before{
    content: '';
    height: 1em;
    width: 1em;
    background: url(../img/common/header_tel_icon.svg) no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
    padding-right: 5px;
}

.header__nav__list__item a:hove .telLinkFlexr:before {
    background: url(../img/common/header_tel_icon_hover.svg) no-repeat;
    background-size: contain;
    background-position: center;
}

.header__nav__list__item.telLink img{
    height: 1em;
    width: auto;
    max-width: auto;
    padding-right: 5px;
}


/* お問い合せLINK */
/*.header__nav__list__item.orangeLink{
    margin-right: 20px;
}
*/
.header__nav__list__item.orangeLink a{
    border-radius: 100px;
    color: #fff;
    text-align: center;
    padding: 12px 15px;
    background: #771d74;
    transition: .3s;
/*    width: 140px;*/
    display: block;
}


.header__nav__list__item.orangeLink a:hover{
    color: #fff !important;
    background: #ebc251;
}



/* ログイン */
.header__nav__list__item.loginLink{
    padding-right: 5px;
    padding-left: 5px;
}
.header__nav__list__item.loginLink a{
    border-radius: 100px;
    color: #fff !important;
    text-align: center;
    padding: 12px 15px;
    background: var(--color-black1);
    transition: .3s;
    width: 130px;
    display: block;
}

.header__nav__list__item.loginLink a:hover{
    color: var(--color-black1) !important;
    background: #0F6FB5;
}


/* dropnmenu -------- */
.dropmenu_item{
    position: relative;
}
.header_innerNav{
    padding: 10px;
}
.dropmenu_item .header_innerNav{
    position: absolute;
    left: 10px;
    top: 100px;
    z-index: +1;
    background: #fff;
    width: auto;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
}
.dropmenu_item{
    position: relative;
}

.dropmenu_item .dropmenu_link{
    padding-right: 20px;
    position: relative;
}
.dropmenu_item .dropmenu_link:before{
    content: '';
    height: 1px;
    width: 10px;
    background-color: #fff;
    transition: .3s;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 0;
}
.dropmenu_item .dropmenu_link:after{
    content: '';
    height: 10px;
    width: 1px;
    background-color: #fff;
    transition: .3s;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5px;
    margin: auto 0;
}

.dropmenu_item .dropmenu_link:hover:before,
.dropmenu_item .dropmenu_link:hover:after{
    background-color: var(--color-yellow);
}

.dropmenu_item.active .dropmenu_link:after{
    opacity: 0;
}

nav .dropmenu_item .dropmenu_link:before,
nav .dropmenu_item .dropmenu_link:after{
    background-color: var(--color-black1);
}

.header__nav_pc .dropmenu_item:hover > ul,
.header__nav_pc .dropmenu_item ul li:hover > ul,
.header__nav_pc .dropmenu_item:active > ul,
.header__nav_pc .dropmenu_item ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

.header__nav_pc .dropmenu_item ul li a{
    color: #000;
    text-align: left;
    padding: 20px 20px;
    width: 100%;
    transition: .3s;
}

.header__nav_pc .dropmenu_item ul li a:hover{
    color:  var(--color-yellow);
}

.header__nav_sp .dropmenu_item ul,
.header__nav_sp .dropmenu_item ul ul{
    background: #f6f6f6;
    position: relative;
    left:0;
    top:0;
    width:100%;
    visibility:visible;/*JSで制御するため一旦表示*/
    opacity:1;/*JSで制御するため一旦表示*/
    display: none;/*JSのslidetoggleで表示させるため非表示に*/
    transition:none;/*JSで制御するためCSSのアニメーションを切る*/
}

.header__nav_sp .dropmenu_item ul li:last-child{
    border-bottom: 0;
}


/* schroll_header -------- */
#header.scroll_header{
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: none;
}

.scroll_header .header__nav__list__item a{
    color: #000;
    transition: .3s;
    font-weight: bold;
}


.scroll_header .header__nav__list__item.orangeLink a{
    color: #fff;
}

.scroll_header .header__nav__list__item a:hover{
    color: #0F6FB5;
}
.scroll_header .dropmenu_item a:before,
.scroll_header .dropmenu_item a:after{
    background-color: #000;
}

.scroll_header .dropmenu_item a:hover:before,
.scroll_header .dropmenu_item a:hover:after{
    background-color: var(--color-yellow);
}


@media screen and (max-width: 1600px) {
    .header__nav__list__item{
        padding: 0 10px;
    }
    .scroll_header .header__nav__list__item a{
        font-size: 18px;
    }
    .headerLeft .header__logo{
        margin-left: 20px;
    }
}

@media screen and (max-width: 1450px) {
    .scroll_header .header__nav__list__item a{
        letter-spacing: .3px;
    }
    .headerLeft .header__nav__list{
        padding-left: 0;
    }

}


@media screen and (max-width: 1400px) {
    .headerLeft .header__logo{
        margin-left: 20px;
    }
    .headerLeft .header__logo img{
        width: 100%;
    }
}


@media screen and (max-width: 1366px) {
    .headerLeft .header__logo{
        width: 160px;
    }
    .headerLeft .header__logo{
        margin-left: 15px;
    }
    .header__nav__list__item{
        padding: 0 7px;
    }
    .headerLeft .header__nav__list{
        margin-right: 5px;
    }
    .scroll_header .header__nav__list__item a{
        letter-spacing: .1px;
    }
    .header__nav__list__item.telLink a{
        font-size: 16px;
    }
    .header__nav__list__item.orangeLink{
        margin-right: 0px;
    }
   .header__nav__list__item.orangeLink a{
/*        padding: 12px 6px;*/
    }
    .header__nav__list__item.loginLink a{
        width: 100px;
    }
    .header__nav__list__item.orangeLink a{
/*        width: 100px;*/
    }
    .header__nav__list__item.telLink .telLinkFlex{
        font-size: 17px;
    }
    .header__nav__list__item.telLink .telLink_text{
        font-size: 10px;
    }
}


@media screen and (max-width: 1150px) {
    .headerLeft .header__nav__list {
        margin-right: 5px;
        font-size: 14px;
    }
    .header__nav__list__item {
        padding: 0 5px;
    }
}


@media screen and (max-width: 1160px) {
    #header{
        height: 90px;
    }
    #header .sp-hide {
        display: none;
    }
    #header .sp-show {
        display: block;
        display: inline-flex;
    }
    .header__logo a{
        height: 80px;
    }
    #header .header__nav_sp {
        display: block;
    }
    .header__nav.header__nav_pc {
        display: none;
    }
    .header__wrap {
        height: 60px;
        align-items: center;
        display: flex;
    }
    .header__logo {
        /* max-width: 133px; */
        /*width: 223px;*/
        margin-left: 10px;
        /* min-width: unset; */
    }
    .header__logo__img {
        width: 100%;
        margin: auto;
        height: auto;
    }
}



@media screen and (max-width: 768px) {
    .header__logo.sp-show{
        width: 140px;
    }
}

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

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

}

/*
footer
----------------------------------------- */
.footerBlock {
    background: #000;
    padding-top: 80px;
}

.footerBlock .footerInner {
    color: #fff;
    max-width: 1360px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.footerBlock .f_ttl {
    font-size: 22px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    position: relative;
}
.footerBlock .f_text {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.footerBlock .f_ttl:after{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    height: 1px;
    background: #fff;
    width: 40px;
}

.footerBlock .logolink {
    max-width: 200px;
    transition: .3s;
    display: inline-block;
}

.footerBlock .logolink:hover{
    opacity: .7;
}

.footerBlock .copyright {
    margin-top: 80px;
    font-size: 20px;
    text-align: center;
    padding-bottom: 10px;
    padding-top: 10px;
    border-top: 1px solid #888;
    color: #fff;
}


/*
pageCommonMainTtl
------------------*/
.pageCommonWrap {
    padding-top: 180px;
    padding-bottom: 100px;
}

@media screen and (max-width: 640px) {
    .pageCommonWrap {
        padding-top: 100px;
    }
}        

/*
pageCommonMainTtl
------------------*/
.pageCommonMain01{
    padding-bottom: 20px;
    position: relative;
}
.pageCommonMain01:after{
  content: '';
  background-size: 10px 10px;
  background-color: #e1eef5;
  background-image: repeating-linear-gradient(-45deg, #4c9ac0 0, #4c9ac0 3px, #fff 0, #fff 50%);
  width: 100%;
  height: 7px;
  position: absolute;
  bottom: -5px;
  left: 0;
}
.pageCommonMainTtl {
    font-size: 32px;
    font-weight: bold;
}
.pageCommonSubTtl{
    font-size: 20px;
    font-weight: bold;
}

@media screen and (max-width: 640px) {
    .pageCommonMainTtl {
        font-size: 28px;
    }
    .pageCommonSubTtl{
        font-size: 16px;
    }
}

/*
テキスト
------------------*/
.f_red{
    color: #d62a6c;
}
.f_bold{
    font-weight: bold;
}
.textWrap .lead{
    font-size: 20px;
}

.textWrap .text{
    font-size: 16px;
}

@media screen and (max-width: 640px) {
    .textWrap .lead{
        font-size: 18px;
    }
    .textWrap .text{
        font-size: 14px;
    }
}



/*
リンク
------------------*/
.commonlinkItem{
    text-decoration: underline;
    color: #4c9ac0;
}
.commonlinkItem:hover{
    color: #4c9ac0;
}

/*
margin
---------------*/
.mb10{
  margin-bottom: 10px;
}
.mb20{
  margin-bottom: 20px;
}
.mb30{
  margin-bottom: 30px;
}
.mb40{
  margin-bottom: 40px;
}
.mb50{
  margin-bottom: 50px;
}
.mb60{
  margin-bottom: 60px;
}
.mb70{
  margin-bottom: 70px;
}
.mb80{
  margin-bottom: 80px;
}
.mb100{
  margin-bottom: 100px;
}
.mb120{
  margin-bottom: 120px;
}
.mb150{
  margin-bottom: 150px;
}
.mb200{
  margin-bottom: 200px;
}



/*
coomonContents
-----------------------------*/
.commonInner {
    width: 90%;
    max-width: 1360px;
    margin-right: auto;
    margin-left:auto;
}




/*
title
-----------------------------*/
.commonTtlBlock {
    margin-bottom: 20px;
    padding-bottom: 50px;
    padding-top: 50px;
    background: url(/assets/image/ttl_bg_01.png) no-repeat;
    background-size: contain;
    background-position: center;
}

.commonTtlBlock.bgTyp01{
    background: url(/assets/image/ttl_bg_01.png) no-repeat;
    background-size: contain;
    background-position: center;
}
.commonTtlBlock.bgTyp02{
    background: url(/assets/image/ttl_bg_02.png) no-repeat;
    background-size: contain;
    background-position: center;
}
.commonTtlBlock.bgTyp03{
    background: url(/assets/image/ttl_bg_03.png) no-repeat;
    background-size: contain;
    background-position: center;
}
.commonTtlBlock.bgTyp04{
    background: url(/assets/image/ttl_bg_04.png) no-repeat;
    background-size: contain;
    background-position: center;
}

.commonTtlBlock.tac{
    text-align: center;
}

.commonTtlBlock .ttlItem .enItem,
.commonTtlBlock .ttlItem .jpItem {
    display: block;
}

.commonTtlBlock .ttlItem .enItem{
    font-size: 44px;
}

.commonTtlBlock .ttlItem .jpItem{
    font-size: 20px;
}





/*
contentsLinkFlex
----------------------------------------- */
.contentsLinkFlex {
    display: flex;
    gap: 20px 30px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;

}

.contentsLinkFlex .listItem{
    width: calc(50% - 15px)
}

.contentsLinkFlex .linkItem {
    background: #333;
    color: #fff;
    transition: .3s;
    display: inline-block;
    position: relative;
    padding: 14px 30px 10px 20px;
    width: 100%;
    min-width: 200px;
}
.contentsLinkFlex .linkItem .textBlock{
    position: relative;
}

.contentsLinkFlex .linkItem .textBlock p{
    color: #FFDA00;
    transition: .3s;
}

.contentsLinkFlex .linkItem .textBlock .eventName {
    font-size: 26px;
    letter-spacing: .3px;
    line-height: 1;
}
.contentsLinkFlex .linkItem .textBlock .text {
    font-size: 14px;
    font-weight: bold;
}

.contentsLinkFlex .linkItem:before{
    content: '';
    background: #FFDA00;
    width: 0;
    top: 0;
    height: 100%;
    position: absolute;
    left: 0;
    transition: .3s;
}

.contentsLinkFlex .linkItem:after{
    position: absolute;
    content: '';
    width: 40px;
    height: 40px;
    right: -5px;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    background: url(/assets/image/common/pinckup_link_icon.svg) no-repeat;
    background-size: contain;
    display: block;
    z-index: 2;
    transition: .3s;
}

.contentsLinkFlex .linkItem:hover:before{
    width: 100%;
}

.contentsLinkFlex .linkItem:hover .textBlock p{
    color: #333;
}
.contentsLinkFlex .linkItem:hover:after{
    right: -7px;
}


@media screen and (max-width:1360px) {
    .contentsLinkFlex .listItem{
        width: calc(32.9% - 17px);
    }

}

@media screen and (max-width: 800px) {
    .contentsLinkFlex {
        gap: 20px;
    }
    .contentsLinkFlex .listItem{
        width: calc(50% - 10px);
        min-width: inherit;
    }   
}

@media screen and (max-width: 640px) {
    .contentsLinkFlex .linkItem {
        min-width: 100px;
    }
    .contentsLinkFlex .linkItem .textBlock .eventName {
        font-size: 22px;
    }
    .contentsLinkFlex .linkItem .textBlock .text {
        font-size: 12px;
    }
}


/*
dateTextBlock
----------------------------------------- */
.dateTextBlock {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 10px;
}

.dateTextBlock .dateItem {
    font-size: 44px;
    text-align: center;
    line-height: 1.4;
}
.dateTextBlock .dateItem span{
    font-size: .7em;
    padding-left: .1em;
}


