@charset "utf-8";
:root {
  --color-main1: #20345d;
  --color-sub1: #e1e7f1;
  --color-accent1: #f4dd60;
  --color-red: #e03730;
  --color-blk1: #333333;
  --color-blk2: #5a5a5a;
	--color-blk3: #CAC5C5;
  --color-blk4: #E9E9E9;
  --color-wht: #FFFFFF;
  --color-grd1: linear-gradient(180deg, rgba(253,208,0,1) 0%, rgb(23, 27, 71) 50%, rgb(23, 27, 71) 100%);
}

/*====================================================================
　Commons
====================================================================*/
html, body {
  word-wrap: break-word;
  word-break: break-all;
}
@media screen and (max-width: 560px) {
  html, body {
    font-size: 14px;
  }
}
html{
  overflow-y: scroll;
}
@media screen and (max-width: 1080px) {
  html{
    overflow-y:initial;
  }
}
body{
	color: #313131;
	/* font-family: 'BIZ UDPGothic', "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif; */
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", Arial, メイリオ, Meiryo, sans-serif;
	line-height: 1.8;
  width: calc(100% - 90px);
  background-color: #FFF;
}
@media screen and (max-width: 1080px) {
  body{
    width: calc(100%);
    padding-top: 80px;
  }
}
main{
  overflow: hidden;
}
img {
	max-width: 100%;
	image-rendering: -webkit-optimize-contrast;
}
svg {
  fill: currentColor;
  max-width: 100%;
}
p {
	margin: 1em 0;
}
input, 
button, 
select, 
textarea {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", Arial, メイリオ, Meiryo, sans-serif;
  outline: none;
}

.animeTrigger{
  opacity: 0;
}
.animeTrigger.animetion{
  animation: slideup 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  opacity: 0;
}
@keyframes slideup {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
  }
  40%,100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
@-webkit-keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

/*
link
---------------------------------------------------------*/

a {
	transition: all .3s ease;
}
a:link {
	color: #313131;
	text-decoration: none;
}
a:visited {
	color: #313131;
	text-decoration: none;
}
a:hover {
	color: #888;
	text-decoration: underline;
  opacity: .6;
}

main a[href^="http"][target="_blank"]::after {
  content:" ";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url(/img/common/ico_link_external01.svg) center center / auto 100% no-repeat;
	margin-top: -0.4em;
	margin-left: 0.3em;
  vertical-align: middle;
}
main a.c-btn01[href^="http"][target="_blank"]::after {
  background: url(/img/common/ico_link_external01_w.svg) center center / auto 100% no-repeat;
}
main a:not([class]),
main a[href^="http"][target="_blank"],
main a[href$=".pdf"],
main a[href$=".doc"],
main a[href$=".docx"],
main a[href$=".xls"],
main a[href$=".xlsx"],
main a[href$=".pdf"][target="_blank"],
main a[href$=".doc"][target="_blank"],
main a[href$=".docx"][target="_blank"],
main a[href$=".xls"][target="_blank"],
main a[href$=".xlsx"][target="_blank"]{
  text-decoration: underline;
}

main a[href$=".pdf"]:after,
main a[href$=".pdf"][target="_blank"]:after {
  content:" ";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url(/img/common/ico_pdf.svg) center center / auto 100% no-repeat;
	margin-top: -0.2em;
	margin-left: 0.3em;
  vertical-align: text-bottom;
}

main a[href$=".doc"]::after,
main a[href$=".docx"]::after,
main a[href$=".doc"][target="_blank"]::after,
main a[href$=".docx"][target="_blank"]::after{
	content: "";
	background: url(/img/common/ico_word.svg) center center / 100% 100% no-repeat;
	width: 1.2em;
	height: 1.2em;
	display: inline-block;
	vertical-align: middle;
	margin-top: -0.4em;
	margin-left: 0.3em;
}
main a[href$=".xls"]::after,
main a[href$=".xlsx"]::after,
main a[href$=".xls"][target="_blank"]::after,
main a[href$=".xlsx"][target="_blank"]::after{
	content: "";
	background: url(/img/common/ico_excel.svg) center center / 100% 100% no-repeat;
	width: 1.2em;
	height: 1.2em;
	display: inline-block;
	vertical-align: middle;
	margin-top: -0.4em;
	margin-left: 0.3em;
}



main a.iconnone[href$=".pdf"]::after,
main a.iconnone[href$=".doc"]::after,
main a.iconnone[href$=".docx"]::after,
main a.iconnone[href$=".xls"]::after,
main a.iconnone[href$=".xlsx"]::after,
main a.iconnone[href$=".pdf"][target="_blank"]::after,
main a.iconnone[href$=".doc"][target="_blank"]::after,
main a.iconnone[href$=".docx"][target="_blank"]::after,
main a.iconnone[href$=".xls"][target="_blank"]::after,
main a.iconnone[href$=".xlsx"][target="_blank"]::after{
  display: none;
}


main caption{
  text-align: center;
}



/*
navskip
---------------------------------------------------------*/

.navskip { display: none; }



/*====================================================================
Layout……各ページを構成するサイト全体で共通したエリアを管理
====================================================================*/

/*----------------------------------------*/
header{
	display: flex;
  flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 90px;
  padding: 0 10px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  background: var(--color-main1);
  transition: .5s;
  color: var(--color-wht);
}
header a{
  color: var(--color-wht) !important;
}
@media screen and (max-width: 1080px) {
  header{
    width: 100%;
    height: 80px;
    flex-direction: row;
    justify-content: space-between;
    padding-right: 80px;
  }
}


/*----------------------------------------*/
header nav{
  position: relative;
  z-index: -100;
}
.l-logo{
  margin-top: 100px;
}
.l-logo__img{
  background: url(/img/common/logo02.svg) top center / 100% auto no-repeat;
  width: 50px;
  height: 200px;
  font-size: 0;
}
.l-logo__img.en{
  background: url(/img/common/logo02_en.svg) top center / 100% auto no-repeat;
  height: 238px;
}
@media screen and (max-width: 1080px) {
  .l-logo{
    padding-right: 0;
    margin-top: 0;
    margin-left: 20px;
  }
  .l-logo__img{
    background: url(/img/common/logo01.svg) top left / auto 100% no-repeat;
    width: 200px;
    height: 40px;
  }
  .l-logo__img.en{
    background: url(/img/common/logo01_en.svg) top left / auto 100% no-repeat;
    width: 270px;
    height: 40px;
  }
}

/*----------------------------------------*/
.l-gnav {
  flex: 1;
	display: flex;
  flex-wrap: wrap;
  position: fixed;
  width: 600px;
  height: 100vh;
  top: 0;
  right: 90px;
  padding: 20px;
  overflow-y: auto;
  background: var(--color-main1);
  transform: translateX(100vw);
  transition: ease-in-out .6s;
}
.l-gnav::-webkit-scrollbar {
  width: 5px;
}
.l-gnav::-webkit-scrollbar-track {
  background: var(--color-main1);
}
.l-gnav::-webkit-scrollbar-thumb {
  background: #f4dd60;
}
.l-gnav__menu{
  width: 100%;
}
.l-gnav__item{
  width: 100%;
  display: block;
  margin: 10px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-sub1);
}
.l-gnav__item:last-child{
  border-bottom: none;
  padding-bottom: 0;
}
.menuopen .l-gnav{
  transform: translateX(0);
}
@media screen and (max-width: 1080px) {
  .l-gnav {
    width: 100%;
    height: calc(100vh - 80px);
    top: 80px;
    right: auto;
    left: 0;
    display: block;
    padding-bottom: 100px;
  }
}

/*----------------------------------------*/
.l-gnav02.sp{
  display: none;
}
.l-gnav02__menu{
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.l-gnav02__menu > li{
  line-height: 1;
  margin-top: 20px;
}
.l-gnav02__menu > li{
  font-size: .8em;
  text-align: center;
}
.l-gnav02__menu > li img{
  margin: auto auto .5em;
  width: 2em;
}
@media screen and (max-width: 1080px) {
  .l-gnav02.sp{
    display: block;
    width: 100%;
    border-top: 1px solid var(--color-wht);
    padding-top: 20px;
    margin-top: 20px;
  }
  .l-gnav02.pc{
    display: none;
  }
  .l-gnav02__menu{
    flex-direction:row;
    margin-bottom: 0;
  }
  .l-gnav02__menu > li{
    line-height: 1;
    margin-top: 0;
    margin: 0 10px;
  }
  .l-gnav02__menu > li img{
    margin: auto auto 5px auto;
    height: 2em;
    width: auto;
  }
}

/*----------------------------------------*/

.l-gnav__link01{
  cursor: pointer;
  padding-right: 1.5em;
  position: relative;
  background: url(/img/common/ico_arrow02.png) top .9em left .5em / 1em auto no-repeat;
  display: block;
  width: 100%;
  color: var(--color-wht) !important;
  padding: .5em 1em .5em 2em;
}
.l-gnav__link01:hover{
  text-decoration: underline;
}
.l-gnav__link01 > a{
  color: var(--color-wht) !important;
}

/*----------------------------------------*/

.l-dropmenu01{
  cursor: pointer;
  padding-right: 1.5em;
  position: relative;
  background: url(/img/common/ico_arrow02.png) top .9em left .5em / 1em auto no-repeat;
  display: block;
  width: 100%;
  color: var(--color-wht) !important;
  padding: .5em 1em .5em 2em;
}
.l-dropmenu01::before{
  content: "";
  position: absolute;
  right: .5em;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1.5em;
  height: 1.5em;
  background: url(/img/common/ico_p01.png) center center / 100% auto no-repeat;
}
.l-dropmenu01.is-active::before{
  background: url(/img/common/ico_m01.png) center center / 100% auto no-repeat;
}
.l-dropmenu01:hover{
  text-decoration: underline;
}
.l-dropmenu01 > a{
  color: var(--color-wht) !important;
}

.l-dropmenu01__bg{
  padding: 20px 20px;
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
}
.l-dropmenu01__close{
  cursor: pointer;
  padding-right: 1.5em;
  position: relative;
}
.l-dropmenu01__close::before{
  content: "X";
  position: absolute;
  right: 0;
}
.l-dropmenu01__close:hover{
  text-decoration: underline;
}
.l-dropmenu__list{
  display: flex;
  flex-wrap: wrap;
}
.l-dropmenu__list > li{
  margin: 0 20px;
  width: 50%;
  margin: 5px 0;
  position: relative;
  padding-left: 1.5em;
}
.l-dropmenu__list > li::after{
  content: "";
  position: absolute;
  left: 0;
  top: calc(1em - 3px);
  display: block;
  width: 6px;
  height: 3px;
  background: var(--color-wht);
}
@media screen and (max-width: 560px) {
  .l-dropmenu__list > li{
    width: 100%;
  }
}

/*----------------------------------------*/
.l-dropmenu02_waku{
  position: relative;
}
.l-dropmenu02{
  cursor: pointer;
  position: relative;
}
.l-dropmenu02:hover{
  text-decoration: underline;
}
.l-dropmenu02__bg{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  height: 0;
  transition: all .5s ease;
  display: none;
}
.l-dropmenu02.is-active + .l-dropmenu02__bg{
  height: auto;
  display: block;
}
.l-dropmenu02__bg > .p-search_area{
  position: absolute;
  right:20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 500px;
  height: max-content;
}
.p-search_area{
  padding: 20px;
  background: var(--color-main1);
}
.p-search_area form{
  display: flex;
  align-items: center;
}
.p-search_area input.input_text{
  max-width: 460px;
  width: 100%;
  font-size: 1.2em;
  border: none;
  border-radius: 3px;
  padding: 10px;
  color: var(--color-blk1);
  margin-right: .5em;
  background: var(--color-wht);
  border-radius: 5px;
  text-align: left;
}
.p-search_area input.icon_search{
  width: 30px;
  margin-left: 5px;
  transition: all .6s;
}
.p-search_area input.icon_search:hover{
  opacity: .5;
}
@media screen and (max-width: 1080px) {
.p-search_area{
  padding: 0;
  background: none;
}
}


/*----------------------------------------*/
#navbtn {
  position: absolute;
  right: 20px;
  top: 10px;
  padding: 0;
  outline: none;
  border: none;
  background: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  z-index: 999;
  transition: .3s;
  background-color: var(--color-main1);
  padding: 0 0;
}
#navbtn:before {
  content: "";
  display: block;
  height: 2px;
  background-color: #fff;
  transform: translateY(-10px);
  transition: 0.3s ease-in-out;
  box-shadow: 0 24px #fff;
  width: 60%;
  margin-left: 10%;
}
#navbtn:after {
  content: "";
  display: block;
  height: 2px;
  background-color: #fff;
  transform: translateY(0);
  transition: 0.3s ease-in-out;
  width: 80%;
  margin-left: 10%;
}
#navbtn > span {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -1em;
  margin: auto;
  font-size: 0.7em;
  line-height: 1;
  display: block;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  #navbtn {
    width: 40px;
    height: 40px;
  }
  #navbtn > span {

    right: 0;
    left: -10%;
    bottom: -1em;
    margin: auto;
    width: 120%;
  }
  #navbtn:before {
    transform: translateY(-8px);
    box-shadow: 0 20px #fff;
  }
}


.menuopen body {
  overflow: hidden;
}
.menuopen #navbtn:before {
  transform: rotate(-45deg);
  box-shadow: none;
  width: 80%;
}
.menuopen #navbtn:after {
  transform: translateY(-2px) rotate(45deg);
  box-shadow: none;
  width: 80%;
}
#menu_overlay {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 600px - 90px);
  height: 100%;
  z-index: 50;
  transform: translateX(-100vw);
  transition: ease-in-out .6s;
  cursor: pointer;
}
.menuopen #menu_overlay {
  transform: translateX(0);
}
@media screen and (max-width: 1080px) {
  #menu_overlay {
    display: none;
  }
}
/*----------------------------------------*/
.l-pagetop {
  position: fixed;
  bottom: 20px;
  right: 110px;
  z-index: 100;
}
.l-pagetop a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: var(--color-main1);
	border-radius: 50%;
  color: var(--color-wht);
}
@media screen and (max-width: 1080px) {
  .l-pagetop {
    right: 20px;
  }
}

/*----------------------------------------*/
.l-main{}

/*----------------------------------------*/
.l-container01 {
  margin: 100px 0;
}
@media screen and (max-width: 1080px) {
  .l-container01 {
    margin: 50px 0;
  }
  .l-container01.top {
    margin-top: 150px;
  }
}

.bg01{
  background: url(/img/common/bg-img01.jpg) top center / cover no-repeat var(--color-main1);
  padding: 100px 0;
}

.bg02{
  background: url(/img/common/bg-img02.jpg) top center / cover no-repeat var(--color-main1);
  padding: 100px 0;
}

/*----------------------------------------*/
.l-section01 {
  width: calc(100% - (90px * 2));
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .l-section01 {
    width: calc(100% - (45px * 2));
    margin: 0 auto;
  }
}
@media screen and (max-width: 560px) {
  .l-section01 {
    width: calc(100% - (20px * 2));
    margin: 0 auto;
  }
}
.l-section02 {
  width: calc(100% - (90px / 2));
  margin: 0;
  padding: 3em 45px 0 90px;
  background: var(--color-sub1);
  position: relative;
}
.l-section02 .c-title01 {
  position: absolute;
  top: -3.5em;
  margin: 0;
}
.l-section02 .c-title02 {
  text-align: right;
}
@media screen and (max-width: 1300px) {
  .l-section02 .c-title02 {
    margin-top: 100px;
    text-align: left;
  }
}
@media screen and (max-width: 1080px) {
  .l-section02 {
    width: calc(100% - (45px / 2));
    padding: 3em calc(45px / 2) 0 45px;
  }
  .l-section02 .c-title01 {
    top: -4.5em;
  }
  .l-section02 .c-title02 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 560px) {
  .l-section02 {
    width: calc(100%);
    padding: 3em 20px 0 20px;
  }
  .l-section02 .c-title01 {
    left: 0;
    right: 0;
    margin: auto;
  }
}


/*----------------------------------------*/
.l-footer{
  padding: 1px 45px 1px;
}
.l-footer_logo{
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.l-footer_logo::after{
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: rgb(32,52,93);
  background: linear-gradient(90deg, rgba(32,52,93,1) 0%, rgba(32,52,93,1) 74%, rgba(255,255,255,1) 74%, rgba(255,255,255,1) calc(74% + 4px), rgba(244,221,96,1) calc(74% + 4px), rgba(244,221,96,1) 100%);
}
.l-footer_logo > address{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 45px;
}
.l-footer_logo > address > a{
  display: block;
}
.l-footer_logo > address .logo{
  height: 4em;
}
.l-footer_logo > address .logo_type{
  width: 20%;
}
.l-footer_nav{
  padding: 0 45px;
}
.l-footer_nav_mainmenu{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.l-footer_nav_mainmenu > li{
  width: calc((100% / 3) - 20px );
  margin-right: 20px;
  display: flex;
  flex-wrap: wrap;
}
.l-footer_nav_mainmenu > li:nth-child(3){
  align-items: flex-end;
  align-content: flex-end;
}
.l-footer_nav_mainmenu > li > a{
  font-weight: 700;
}
.l-footer_nav_childmenu{
  width: 100%;
}
.l-footer_nav_childmenu > li{
  margin-bottom: .5em;
}
.l-footer_nav_childmenu > li > a{
  font-size: .9em;
  background: url(/img/common/ico_arrow01.png) top .4em left / 1em auto no-repeat;
  padding-left: 1.5em;
  display: inline-block;
}
.l-footer_nav_submenu{
  border-left: 1px solid var(--color-blk1);
  padding-left: 40px;
}
.l-footer_nav_submenu > li{
  margin-bottom: 10px;
}
.l-footer_nav_submenu > li > a{
  font-size: .9em;
}
.l-footer_bottom{
  margin-top: 40px;
}
.l-footer_bottom > p{
  margin: 0;
}

.l-footer_nav_mainmenu .u-fnt--ss{
  margin: .1em 0 1em 0;
}

@media screen and (max-width: 760px) {
  .l-footer{
    padding: 1px 20px 1px;
  }
  .l-footer_logo{
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .l-footer_logo > address{
    padding: 0;
    justify-content: flex-start;
  }
  .l-footer_logo > address .logo{
    height: auto;
    width: 3em;
    margin-right: 1em;
  }
  .l-footer_logo > address .logo_type{
    height: auto;
    width: 10em;
  }
  .l-footer_nav{
    padding: 0;
  }
  .l-footer_nav_mainmenu{
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 560px) {
  .l-footer_logo{
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .l-footer_logo > address{
    padding: 0;
    justify-content: flex-start;
  }
  .l-footer_logo > address .logo{
    height: auto;
    width: 3em;
    margin-right: 1em;
  }
  .l-footer_logo > address .logo_type{
    height: auto;
    width: 10em;
  }
  .l-footer_nav{
    padding: 0;
  }
  .l-footer_nav_mainmenu{
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  .l-footer_nav_mainmenu > li{
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}


/*----------------------------------------*/

.l-sub_nav_title{
  background: var(--color-sub1);
  padding: 20px;
}

.l-sub_nav_menu > li{
  padding: 20px;
  border-bottom: 1px solid var(--color-blk1);
}


/*----------------------------------------*/
.l-2column{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}
.l-2column_main{
  width: 75%;
}
.l-2column_main .l-container01:first-child{
  margin-top: 50px;
}
.l-2column_sub{
  width: calc(25% - 40px);
}
@media screen and (max-width: 1080px) {
  .l-2column_main{
    width: 100%;
    padding: 0 20px;
  }
  .l-2column_sub{
    width: 100%;
    padding: 0 20px;
    margin-bottom: 50px;
  }
}


/*----------------------------------------*/
.l-row {
  display: flex;
  flex-wrap: wrap;
}
.l-row li > img{
  margin: auto;
}
.l-row--reverse {
  flex-direction: row-reverse;
}
.l-row--center {
  align-items: center;
}
.l-row--jcenter {
  justify-content: center;
}
.l-row--jspaceb {
  justify-content: space-between;
}
.l-row--childflex1 {
  flex: 1;
}
.l-row .col0{
  display: flex;
  width: 100%;
}
.l-row .col0 > li {
  margin-right: 20px;
  margin-bottom: 20px;
}
.l-row .col0.mr40 > li {
  margin-right: 40px;
}
.l-row .col0.mr60 > li {
  margin-right: 60px;
}
.l-row .col0 > li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .l-row .col0{
    display: block;
  }
  .l-row .col0 > li {
    width: 100%;
    display: block;
    margin-right: 0 !important;
  }
  .l-row .col0 > li:last-child {
    margin-bottom: 0;
  }
}
.l-row .col2{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.l-row .col2 > li {
  width: calc(100% / 2 - calc(20px / 2));
  margin-right: 20px;
  margin-bottom: 20px;
}
.l-row .col2 > li:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .l-row .col2 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 960px) {
  .l-row .col2 > li.arrow::after {
    content: "▼";
    font-size: 15px;
    display: inline-block;
    line-height: 1;
    width: 1em;
    height: 1em;
    margin-top: 10px;
    position: absolute;
    top: auto;
    bottom: -18px;
    right: 0;
    left: 0;
    margin: auto;
    transform: rotate(360deg);
    color: var(--color-main1);
  }
}
.l-row .col2_2{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.l-row .col2_2 > li.text {
  width: calc(( calc(100% / 3) * 2 ) - 10px);
}
.l-row .col2_2 > li.img {
  width: calc(( calc(100% / 3) * 1 ) - 10px);
}
@media screen and (max-width: 760px) {
  .l-row .col2_2 > li.text {
    width: 100%;
  }
  .l-row .col2_2 > li.img {
    width: 100%;
  }
}
.l-row .col3{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.l-row .col3 > li {
  width: calc(100% / 3 - calc(40px / 3));
  margin-right: 20px;
  margin-bottom: 20px;
}
.l-row .col3 > li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .l-row .col3 > li {
    width: calc(100% / 2 - calc(20px / 2));
  }
  .l-row .col3 > li:nth-child(odd) {
    margin-right: 20px;
  }
  .l-row .col3 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 560px) {
  .l-row .col3 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col4{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.l-row .col4 > li {
  width: calc(100% / 4 - calc(60px / 4));
  margin-right: 20px;
  margin-bottom: 20px;
}
.l-row .col4 > li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .l-row .col4 > li {
    width: calc(100% / 3 - calc(40px / 3));
  }
  .l-row .col4 > li:nth-child(4n) {
    margin-right: 20px;
  }
  .l-row .col4 > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 560px) {
  .l-row .col4 > li {
    width: calc(100% / 2 - calc(20px / 2));
  }
  .l-row .col4 > li:nth-child(3n) {
    margin-right: 20px;
  }
  .l-row .col4 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 360px) {
  .l-row .col4 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col5{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.l-row .col5 > li {
  width: calc(100% / 5 - calc(80px / 5));
  margin-right: 20px;
  margin-bottom: 20px;
}
.l-row .col5 > li:nth-child(5n) {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .l-row .col5 > li {
    width: calc(100% / 3 - calc(40px / 3));
  }
  .l-row .col5 > li:nth-child(5n) {
    margin-right: 20px;
  }
  .l-row .col5 > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 560px) {
  .l-row .col5 > li {
    width: calc(100% / 2 - calc(20px / 2));
  }
  .l-row .col5 > li:nth-child(3n) {
    margin-right: 20px;
  }
  .l-row .col5 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 360px) {
  .l-row .col5 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col6{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.l-row .col6 > li {
  width: calc(100% / 6 - calc(100px / 6));
  margin-right: 20px;
  margin-bottom: 20px;
}
.l-row .col6 > li:nth-child(6n) {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .l-row .col6 > li {
    width: calc(100% / 3 - calc(40px / 3));
  }
  .l-row .col6 > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 560px) {
  .l-row .col6 > li {
    width: calc(100% / 2 - calc(20px / 2));
  }
  .l-row .col6 > li:nth-child(3n) {
    margin-right: 20px;
  }
  .l-row .col6 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 360px) {
  .l-row .col6 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}


/*====================================================================
Project……再利用予定のないプロジェクト固有のスタイルを管理
====================================================================*/

/*----------------------------------------*/
.p-mainimage{
	width: 100%;
	height: calc(100vh);
}
.p-mainimage__bg{
  display: flex;
  margin-left: 45px;
  width: calc(100% - 45px);
  position: relative;
}
.p-mainimage__inner{
	width: 50%;
  position: relative;
  font-size: 14px;
}
.p-mainimage__textbg01{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}
.p-mainimage__textbg01 > img {
  width: 60%;
  margin: auto auto 2em;
  opacity: .6;
}
.p-mainimage__textbg01 > ul {
  width: 100%;
  max-width: 280px;
  margin-left: auto;
}
.p-mainimage__textbg01 > h3 {
  width: 100%;
  max-width: max-content;
  margin-top: 1em;
  margin-left: auto;
  text-align: center;
  background-color: var(--color-wht);
  padding: .5em 2em;
}
.p-mainimage__text{
  position: absolute;
  top: 4em;
  left: 0;
  right: 0;
  margin: auto;
  width: 40%;
}
@media screen and (max-width: 1080px) {
  .p-mainimage{
    height: calc(60vh);
  }
  .p-mainimage__bg{
    width: calc(100%);
    margin-left: 0;
  }
  .p-mainimage__text{
    position: absolute;
    top: 2em;
    left: 0;
    right: 0;
    margin: auto;
    width: 50%;
  }
}
@media screen and (max-width: 660px) {
  .p-mainimage{
    height: auto;
  }
  .p-mainimage__bg{
    display: flex;
    flex-wrap: wrap;
  }
  .p-mainimage__inner{
    width: 100%;
  }
  .p-mainimage__text{
    width: 80%;
    top: 0;
    bottom: 0;
    margin: auto;
    height: max-content;
  }
  .p-mainimage__textbg01 {
    top: 0;
    bottom: 0;
    margin: auto;
    height: max-content;
  }
  .p-mainimage__textbg01 > img {
    position: absolute;
    top: 0;
    left: 20px;
    bottom: 0;
    margin: auto;
    width: 35%;
  }
  .p-mainimage__textbg01 > ul {
    max-width: 180px;
    font-size: 12px;
  }
  .p-mainimage__textbg01 > h3 {
    max-width: 180px;
    font-size: 12px;
  }
}

.p-mainimage__img01 {
	animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
@-webkit-keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
.p-mainimage__img01 li {
	height: calc(100vh);
	background: center center / cover no-repeat;
}
/* 読み込み時のちらつき対策 */
.p-mainimage__img01 { opacity: 0; overflow: hidden; }
.p-mainimage__img01.slick-initialized { opacity: 1; overflow: visible; }

.p-mainimage__img02 {
	animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
@-webkit-keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
.p-mainimage__img02 li {
	height: calc(100vh);
	background: center center / cover no-repeat;
}
/* 読み込み時のちらつき対策 */
.p-mainimage__img02 { opacity: 0; overflow: hidden; }
.p-mainimage__img02.slick-initialized { opacity: 1; overflow: visible; }

@media screen and (max-width: 1080px) {
  .p-mainimage__img01 li {
    height: calc(60vh);
  }
  .p-mainimage__img02 li {
    height: calc(60vh);
  }
}

@media screen and (max-width: 660px) {
  .p-mainimage__img01 li {
    height: calc(60vh);
  }
  .p-mainimage__img02 li {
    height: calc(60vh);
  }
}

/*----------------------------------------*/

.p-topics_top_inner{
  display: flex;
}
.p-topics_top_inner > .p-topics_top_inner_c01{
  border-right: 1px solid var(--color-main1);
  flex: 1;
  padding-right: 2em;
  margin-right: 2em;
}
.p-topics_top_inner > .p-topics_top_inner_c02{
  width: 10em;
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (max-width: 1080px) {
  .p-topics_top_inner{
    flex-wrap: wrap;
  }
  .p-topics_top_inner > .p-topics_top_inner_c01{
    flex: auto;
    width: 100%;
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
}

/*----------------------------------------*/

.p-topics > li {
  border-bottom: 1px solid var(--color-blk1);
}
.p-topics > li:last-child {
  border-bottom: none;
}
.p-topics > li > a {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  text-decoration: none;
  padding: 10px 0 20px;
}
.p-topics > li > a > .day {
  margin: 10px 1em 0 0;
  padding-right: 2em;
  position: relative;
}
.p-topics > li > a > .day::after{
  content:"" ;
  position: absolute;
  top: .8em;
  right: .5em;
  width: 5px;
  height: 1px;
  background: var(--color-blk1);
}
.p-topics > li > a > .category {
  margin: 10px 1em 0 0;
  padding: 0 5px;
  background: var(--color-sub1);
  width: 10em;
  text-align: center;
}
.p-topics > li > a > .title {
  flex: 1;
  margin: 10px 0 0 0;
  font-weight: 700;
}
.p-topics > li > a:hover > .title {
  text-decoration: underline;
}
@media screen and (max-width: 1080px) {
  .p-topics > li > a > .title {
    flex: auto;
    width: 100%;
  }
}

main .p-topics > li > a[href^="http"][target="_blank"]::after{
  all: initial;
}
main .p-topics > li > a::after{
  all: initial;
}
main .p-topics > li > a[href^="http"][target="_blank"]{
  text-decoration: none;
}
main .p-topics > li > a[href^="http"][target="_blank"] .title::after {
  content:" ";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url(/img/common/ico_link_external01.svg) center center / auto 100% no-repeat;
	margin-top: -0.4em;
	margin-left: 0.3em;
  vertical-align: middle;
}
main .p-topics > li > a[href$=".pdf"] .title:after {
  content:" ";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url(/img/common/ico_pdf.svg) center center / auto 100% no-repeat;
	margin-top: -0.2em;
	margin-left: 0.3em;
  vertical-align: text-bottom;
}

main .p-topics > li > a[href$=".doc"] .title::after,
main .p-topics > li > a[href$=".docx"] .title::after{
	content: "";
	background: url(/img/common/ico_word.svg) center center / 100% 100% no-repeat;
	width: 1.2em;
	height: 1.2em;
	display: inline-block;
	vertical-align: middle;
	margin-top: -0.4em;
	margin-left: 0.3em;
}
main .p-topics > li > a[href$=".xls"] .title::after,
main .p-topics > li > a[href$=".xlsx"] .title::after{
	content: "";
	background: url(/img/common/ico_excel.svg) center center / 100% 100% no-repeat;
	width: 1.2em;
	height: 1.2em;
	display: inline-block;
	vertical-align: middle;
	margin-top: -0.4em;
	margin-left: 0.3em;
}

/*----------------------------------------*/

.p-topics_category ul{
  display: flex;
  flex-wrap: wrap;
}
.p-topics_category ul li{
  margin: 0 10px 20px;
  width: calc((100% / 7) - 20px);
}
.p-topics_category ul li a{
  border: 1px solid var(--color-main1);
  padding: .5em 1em;
  width: 100%;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.p-topics_category ul li a.active{
  border: 1px solid var(--color-main1);
  background: var(--color-main1);
  color: var(--color-wht);
}
@media screen and (max-width: 1570px) {
  .p-topics_category ul li{
    width: 165px;
  }
}
@media screen and (max-width: 660px) {
  .p-topics_category ul li{
    width: calc((100% / 2) - 20px);
  }
}

/*----------------------------------------*/

.p-alert{
  background: var(--color-accent1);
  padding: .5em 90px;
}
.p-alert .p-topics > li > a > .category{
  background: var(--color-blk1);
  color: var(--color-wht);
}
@media screen and (max-width: 1080px) {
  .p-alert{
    background: var(--color-accent1);
    padding: .5em 45px;
  }
  .p-alert .p-topics a{
    padding: 0 0 5px;
  }
}
@media screen and (max-width: 560px) {
  .p-alert{
    padding: .5em 20px;
  }
  .p-alert .p-topics a{
    padding: 0 0 5px;
  }
}

/*----------------------------------------*/
.p-pageimage{
	background: url(/img/common/pic_text02.jpg) top -90px right -90px / cover no-repeat;
	width: 100%;
	height: calc(60vh);
  max-height: 700px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}
.p-pageimage::before{
	content: "";
  width: 30%;
  height: 17em;
  background: var(--color-wht);
  position: absolute;
  left: 0;
  bottom: 0;
}
.p-pageimage_bg{
  padding: 0 0 0 90px;
  background: var(--color-main1);
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 90px);
}
.p-pageimage_bg > h2{
  font-size: 2em;
  color: var(--color-wht);
  padding: 1.5em 1em 1.5em 0;
  position: relative;
}
.p-pageimage_bg > h2::after{
  content: "";
  width: 4em;
  height: 6px;
  background: rgb(32,52,93);
  background: linear-gradient(90deg, rgba(32,52,93,1) 0%, rgba(32,52,93,1) calc(50% - 2px), rgba(255,255,255,0) calc(50% - 2px), rgba(255,255,255,0) calc(50% + 2px), rgba(244,221,96,1) calc(50% + 2px), rgba(244,221,96,1) 100%);
  position: absolute;
  top: -2em;
  left: 0;
  margin: auto;
}
.p-pageimage_bg > p{
  position: absolute;
  right: -90px;
  bottom: -1em;
  background: var(--color-accent1);
  font-size: 1.2em;
  margin: 0;
  padding: .5em 90px .5em 5em;
}
@media screen and (max-width: 1080px) {
  .p-pageimage{
    background: url(/img/common/pic_text02.jpg) top -7em center / cover no-repeat;
  }
  .p-pageimage::before{
    display: none;
  }
  .p-pageimage_bg{
    padding: 0 0 0 45px;
    width: calc(100% - 45px);
  }
  .p-pageimage_bg > h2{
    padding: 1em 1em 1em 0;
  }
  .p-pageimage_bg > h2::after{
    top: -1em;
  }
  .p-pageimage_bg > p{
    position: relative;
    right: -45px;
    bottom: 0;
    padding: .5em 45px .5em 5em;
  }
}
@media screen and (max-width: 760px) {
  .p-pageimage{
    background: url(/img/common/pic_text02.jpg) center center / cover no-repeat;
  }
  .p-pageimage::before{
    display: none;
  }
  .p-pageimage_bg{
    padding: 0 0 0 20px;
    width: calc(100% - 20px);
  }
  .p-pageimage_bg > h2{
    padding: .5em 1em .5em 0;
  }
  .p-pageimage_bg > p{
    right: -20px;
    padding: .5em 20px .5em 1em;
  }
}

.p-pageimage.underlayer{
  background: url(/img/common/pic_text02.jpg) center right / 70% auto no-repeat;
	height: calc(60vh);
  max-height: 17em;
}
@media screen and (max-width: 1080px) {
  .p-pageimage.underlayer{
    background: url(/img/common/pic_text02.jpg) top center / cover no-repeat;
    height: calc(45vh);
    max-height: 700px;
  }
}


/*----------------------------------------*/
.p-breadcrumb {
  width: 100%;
  padding: 40px 90px 0 90px;
  margin-top: 0px;
  position: relative;
  z-index: 2;
}
.p-breadcrumb__item {
  display: inline;
  font-size: 0.9rem;
  text-decoration: none;
}
.p-breadcrumb__item:not(:last-child):after {
  content: "＞";
  font-weight: 700;
  margin: 0 .5em;
}
.p-breadcrumb__item a {
  margin-right: 5px;
  font-weight: 700;
}
.p-breadcrumb__item:last-child {
  color: var(--color-blk2);
}
@media screen and (max-width: 1080px) {
  .p-breadcrumb {
    padding: 20px;
  }
}

/*----------------------------------------*/
.p-top_topics_list{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.p-top_topics_list > li {
  width: calc(100% / 3 - calc(40px / 3));
  margin-right: 20px;
  margin-bottom: 20px;
}
.p-top_topics_list > li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .p-top_topics_list > li {
    width: calc(100% / 2 - calc(20px / 2));
  }
  .p-top_topics_list > li:nth-child(2n) {
    margin-right: 0;
  }
  .p-top_topics_list > li:nth-child(odd) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 560px) {
  .p-top_topics_list > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.p-top_topics_list > li a {
  text-decoration: none;
}
.p-top_topics_list > li a:hover .title {
  text-decoration: underline;
}
.p-top_topics_list_img{
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  background: url(/img/common/pic_text01.jpg) center center / cover no-repeat;
  position: relative;
}
.p-top_topics_list_img > .category{
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--color-wht);
  width: 10em;
  display: inline-block;
  text-align: center;
  padding: .25em .5em;
}
.p-top_topics_list_text{
  display: flex;
  padding: 1em;
}
.p-top_topics_list_text > .days{

  padding-right: 2em;
  position: relative;
}
.p-top_topics_list_text > .days::after{
  content:"" ;
  position: absolute;
  top: .8em;
  right: 1em;
  width: 5px;
  height: 1px;
  background: var(--color-blk1);
}
.p-top_topics_list_text > .title{
  flex: 1;
}
@media screen and (max-width: 1080px) {
  .p-top_topics_list_text{
    flex-wrap: wrap;
  }
  .p-top_topics_list_text > .title{
    flex: auto;
  }
}


/*----------------------------------------*/

.p-top_content01{
  position: relative;
}
.p-top_content01_c01{
  text-align: right;
  position: relative;
  z-index: 1;
}
.p-top_content01_c01 p{
  margin: 5em 0;
}
.p-top_content01_c01 .c-btn01{
  text-align: left;
  margin: auto 0 auto auto;
}
.p-top_content01_c02{
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(60% - 40px);
  height: calc(100% - 40px);
  background: url(/img/top/top_contentimage01.jpg) center center / cover no-repeat;
}
.p-top_content01_c02::before{
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 50px;
  height: 50px;
  border-top: 1px solid var(--color-main1);
  border-left: 1px solid var(--color-main1);
}
.p-top_content01_c02::after{
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 50px;
  height: 50px;
  border-bottom: 1px solid var(--color-main1);
  border-right: 1px solid var(--color-main1);
}
.p-top_content01_c01 .c-title01{
  background: none;
}

@media screen and (max-width: 1300px) {
  .p-top_content01_c02 {
    width: calc(48% - 40px);
}
}

@media screen and (max-width: 1080px) {
  .p-top_content01{
    margin-bottom: 100px;
  }
  .p-top_content01_c01{
    text-align: left;
  }
  .p-top_content01_c01 > .c-title01{
    margin: auto auto 20px;
    display: block;
  }
  .p-top_content01_c01 p{
    margin: 20px auto;
  }
  .p-top_content01_c02{
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 0;
    padding-bottom: 60%;
    margin-top: 50px;
  }
}

/*----------------------------------------*/

.p-top_main_list_bg{
  background: url(/img/common/bg_bg01.png) center center / 100% auto no-repeat;
}
.p-top_main_list{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}
.p-top_main_list > li {
  width: calc(100% / 4 - calc(60px / 4));
  margin-right: 20px;
  margin-bottom: 20px;
}
.p-top_main_list > li:nth-child(2n) {
  margin-top: 60px;
}
.p-top_main_list > li:nth-child(4n) {
  margin-right: 0;
}
.p-top_main_list > li > a{
  background: url(/img/common/pic_text01.jpg) center center / cover no-repeat;
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 130%;
  transition: all .3s;
}
.p-top_main_list > li > a:hover{
  opacity: 1;
  transform: scale(1.036);
}
.p-top_main_list > li > a .p-top_main_list_text{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80%;
  background: url(/img/common/ico_arrow01.png) bottom 1em right 1em / 1.5em auto no-repeat var(--color-wht);
  padding: 20px 20px 40px;
}



@media screen and (max-width: 960px) {
  .p-top_main_list{
    justify-content: normal;
  }
  .p-top_main_list > li {
    width: calc(100% / 2 - calc(20px / 2));
  }
  .p-top_main_list > li:nth-child(3n) {
    margin-right: 20px;
  }
  .p-top_main_list > li:nth-child(2n) {
    margin-right: 0;
  }
  .p-top_main_list > li > a{
    padding-bottom: 90%;
  }
  .p-top_main_list_bg{
    background: url(/img/common/bg_bg01.png) top center / 150% auto no-repeat;
    padding-top: 1px;
  }
}
@media screen and (max-width: 760px) {
  .p-top_main_list > li {
    width: 100%;
    margin-right: 0 !important;
  }
  .p-top_main_list > li:nth-child(2n) {
    margin-top: 0;
  }
}


/*----------------------------------------*/

.p-feature-01{
  margin-bottom: calc(10% + 100px);
}

.p-feature_box {
  max-width: 800px;
  padding: 100px 0;
  background: var(--color-grd1);
  text-align: center;
  color: var(--color-wht);
  position: relative;
}
.p-feature_box > h2 {
  font-size: 2rem;
  line-height: 3.5rem;
  position: relative;
}
.p-feature_box > h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: var(--color-sub1);
  position: absolute;
  top: 144px;
  left: 50%;
  transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  box-shadow: 0 7px 0 var(--color-sub2);
}
.p-feature_box {
  margin: 0.5em auto;
}
.p-feature_box > p span {
  font-size: 1.5rem;
}
@media screen and (max-width: 560px) {
  .p-feature_box {
    padding: 50px 20px;
  }
  .p-feature_box > p {
    text-align: left;
  }
}
.p-feature_img {
  position: absolute;
}
.p-feature_img figure {
  position: relative;
}
.p-feature_img.feature-img01 {
  top: 70px;
  left: -130px;
}
.p-feature_img.feature-img02 {
  top: 360px;
  left: -200px;
}
.p-feature_img.feature-img03 {
  top: 650px;
  left: -30px;
}
.p-feature_img.feature-img04 {
  top: 70px;
  right: -130px;
}
.p-feature_img.feature-img05 {
  top: 360px;
  right: -200px;
}
.p-feature_img.feature-img06 {
  top: 650px;
  right: -30px;
}
.p-feature_img > a:hover {
  opacity: 1;
}
.p-feature_img > a figure {
  transition: .3s all;
  max-width: 320px;
}
.p-feature_img > a:hover figure {
  opacity: 1;
  transform: scale(1.1);
}
.p-feature_img figure > figcaption {
  display: inline;
  position: absolute;
  bottom: -10px;
  right: 15px;
  background: var(--color-wht);
  color: var(--color-blk1);
  padding: 0 20px;
}
.p-feature-02 {
  padding-top: 100px;
}
.p-feature-02 .flex-column {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.p-feature-02 .col2-grid > li {
  margin-right: 20px;
}
.ico-link span::after {
  content: " ";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url(/jc/img/common/ico-externallink.png) center center / auto 100% no-repeat;
  margin-top: -0.2em;
  margin-left: 0.3em;
  vertical-align: text-bottom;
}
.p-feature-02 .col2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 960px)  {
  .p-feature-02 .col2-grid {
    grid-template-columns: 1fr 1fr;
  }
  .p-feature-02 .col2-grid li:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .p-feature-02 .col2-grid li:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    margin-top: 20px;
  }
  .p-feature-02 .col2-grid li:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    margin-top: 20px;
  }
  .p-feature-02 .c-btn01 {
    max-width: 480px;
    margin: 0 0 0 auto;
  }
  .p-feature_img > a:hover figure {
    transform: scale(1);
  }
}
.l-row .col2-col2 {
  display: flex;
  width: 100%;
}
.l-row .col2-col2 > li {
  width: calc(100% / 2 - calc(20px / 2));
  margin-right: 20px;
}
@media screen and (max-width: 1200px) {
  .p-feature-fleximg {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .p-feature_img {
    position: static;
    width: calc(100% / 2 - calc(40px / 2));
    margin-top: 40px;
  }
  .p-feature-fleximg img {
    width: 100%;
    padding: 10px;
  }
}
@media screen and (max-width: 760px) {
  .p-feature-02 {
    padding-top: 50px;
  }
}
@media screen and (max-width: 560px) {
  .p-feature-02 {
    padding-top: 0;
  }
  .p-feature_img > figure {
    padding: 10px;
  }
  .p-feature_img figure > figcaption {
    position: static;
    padding: 0;
    width: 100%;
    display: inline-block;
  }
  .p-feature-fleximg img {
    padding: 0;
  }
  .p-feature_img {
    width: calc(100% / 2);
    margin-top: 0;
  }
}
.p-feature-03 h3 {
  margin-bottom: 30px;
  border-left: 5px solid var(--color-sub2);
  text-indent: 1rem;
}
.p-feature-03 .l-row .col2 {
  align-items: center;
}
.p-feature-03 .figure-img {
  position: relative;
}
.p-feature-03 .figure-img > figure > figcaption {
  display: inline;
  position: absolute;
  bottom: -10px;
  right: 15px;
  background: var(--color-wht);
  color: var(--color-blk1);
  padding: 0 20px;
}
.p-feature-03 .col2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.p-feature-03 .col2-grid li:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  margin-right: 20px;
}
.p-feature-03 .col2-grid li:nth-child(2) {
  grid-column: 2/ 3;
  grid-row: 1 / 2;
  margin-right: 20px;
}
.p-feature-03 .col2-grid li:nth-child(3) {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}
@media screen and (max-width: 560px) {
  .p-feature-03 .figure-img > figure > figcaption {
    position: static;
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 0;
  }
}


/*====================================================================
Component……再利用可能な小さな単位のモジュールを管理（ボタンなど）
====================================================================*/

/*----------------------------------------*/
.c-btn01{
  cursor: pointer;
  padding-right: 1.5em;
  position: relative;
  background: url(/img/common/ico_arrow02.png) top .9em left .5em / 1em auto no-repeat var(--color-main1);
  display: block;
  width: 100%;
  color: var(--color-wht) !important;
  padding: .5em 1em .5em 2em;
  max-width: 400px;
  text-decoration: none !important;
}

.c-btn02:hover{
  text-decoration: none;
}
.c-btn02 > div{
  border-right: 4px solid var(--color-accent1);
}
.c-btn02 > div > .img{
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 0;
  padding-bottom: 40%;
  overflow: hidden;
  position: relative;
}
.c-btn02 > div > .img > img{
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.c-btn02 > div > .text{
  cursor: pointer;
  position: relative;
  background: url(/img/common/ico_arrow01.png) top 1.45em left 1em / 1em auto no-repeat var(--color-sub1);
  display: block;
  width: 100%;
  padding: 1em 1em 1em 2.5em;
  font-weight: 700;
}

.c-btn02 > p{
  color: var(--color-main1);
  margin: 1em 0 0 0;
}

.c-btn03{
  cursor: pointer;
  position: relative;
  background: url(/img/common/ico_arrow01.png) top 1.45em left 1em / 1em auto no-repeat var(--color-sub1);
  display: block;
  border-right: 4px solid var(--color-accent1);
  width: 100%;
  padding: 1em 1em 1em 2.5em;
  font-weight: 700;
  text-decoration: none !important;
}
.c-btn03:hover{
  text-decoration: none;
}

.c-btn_bg01{
  background: url(/img/common/pic_text01.jpg) top right / 60% auto no-repeat;
  padding: 7vw 0;
}
.c-btn_bg01 > a{
  width: 45%;
}
@media screen and (max-width: 560px) {
  .c-btn_bg01 > a{
    width: 80%;
  }
  .c-btn_bg01{
    background: url(/img/common/pic_text01.jpg) center right / cover no-repeat;
    padding: 4em 0;
  }
}

.c-btn04{
  cursor: pointer;
  position: relative;
  background: url(/img/common/ico_arrow10.png) top 1.45em right 1em / 1em auto no-repeat var(--color-sub1);
  display: block;
  width: 100%;
  padding: 1em 2.5em 1em 1em;
  font-weight: 700;
  text-decoration: none !important;
}

.c-btn05{
  cursor: pointer;
  position: relative;
  background: url(/img/common/ico_arrow01.png) top .9em left .5em / 1em auto no-repeat;
  display: inline-block;
  color: var(--color-main1) !important;
  padding: .5em 1em .5em 2em;
}


.c-btn06{
  cursor: pointer;
  position: relative;
  display: inline-block;
  color: var(--color-main1) !important;
  padding: .5em 1em .5em 2em;
}
.c-btn06::after{
  content: "";
  background: url(/img/common/ico_arrow01.png) center center / 1em auto no-repeat;
  width: 1em;
  height: 1em;
  position: absolute;
  top: .8em;
  left: .3em;
  transform: rotate(-90deg);
}






/*----------------------------------------*/
.c-link_list li {
  display: block;
  position: relative;
  padding-left: 1em;
}
.c-link_list li:before {
  position: absolute;
  left: 0;
  content: ">";
  font-weight: 700;
  font-size: 1em;
}
.c-link_list li:after {
  display: none;
}


/*----------------------------------------*/
.c-box01{
  padding: 2em;
  background: var(--color-wht);
}
.c-box01 p{
  margin: 0;
}

.c-box02{
  padding: 2em 2em .5em;
  border: 1px solid var(--color-main1);
  position: relative;
}
.c-box02 p{
  margin: 0;
}
.c-box02_text{
  position: absolute;
  top: -0.5em;
  background: var(--color-wht);
  padding: 0 1em;
}

.c-box03{
  padding: 2em 2em;
  background: var(--color-sub1);
  position: relative;
}
.c-box03 p{
  margin: 0;
}

.c-box04{
  padding: 2em 2em;
  border: 1px solid var(--color-main1);
  position: relative;
}
.c-box04 p{
  margin: 0;
}

.c-box05{
  padding: 0 0 0 1em;
  border-left: 6px solid var(--color-main1);
  position: relative;
}
.c-box05 p{
  margin: 0;
}



/*----------------------------------------*/
.c-title01{
  text-align: center;
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 20px;
  display: inline-block;
  background: var(--color-wht);
  padding: 1em 5em 3em;
}
.c-title01 > .main_text{
  font-size: 1.4em;
  font-weight: 700;
  text-align: center;
  display: block;
  line-height: 1.2;
  margin-bottom: .3em;
}
.c-title01 > .sub_text{
  font-size: .8em;
  text-align: center;
  display: block;
  line-height: 1.2;
}
.c-title01::after{
  content: "";
  width: 4em;
  height: 6px;
  background: rgb(32,52,93);
  background: linear-gradient(90deg, rgba(32,52,93,1) 0%, rgba(32,52,93,1) calc(50% - 2px), rgba(255,255,255,0) calc(50% - 2px), rgba(255,255,255,0) calc(50% + 2px), rgba(244,221,96,1) calc(50% + 2px), rgba(244,221,96,1) 100%);
  position: absolute;
  bottom: 2em;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 1080px) {
  .c-title01 {
    width: 100%;
    max-width: 500px;
    padding: 1em 0 2em;
    margin-bottom: 20px;
  }
  .c-title01::after{
    bottom: 1em;
  }
}

.c-title02 > span{
  font-size: 1.4em;
  font-weight: 700;
  background: var(--color-wht);
  padding: .5em 1em;
  line-height: 1.6;
  display: inline-block;
}

.c-title03 > span{
  font-size: 1.6em;
  font-weight: 700;
  background: var(--color-accent1);
  padding: .5em 1em;
  line-height: 1.6;
  display: inline-block;
}

.c-title04{
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 1.5em;
  font-size: 2em;
  font-weight: 700;
  display: block;
  color: var(--color-main1);
}
.c-title04::after{
  content: "";
  width: calc(100% + (90px));
  height: 6px;
  background: rgb(32,52,93);
  background: linear-gradient(90deg, rgba(32,52,93,1) 0%, rgba(32,52,93,1) 40px, rgba(255,255,255,1) 40px, rgba(255,255,255,1) 44px, rgba(244,221,96,1) 44px, rgba(244,221,96,1) 100%);
  position: absolute;
  bottom: 0;
  left: -45px;
  right: 0;
  margin: auto;
}

.c-title05{
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 1em;
  font-size: 1.5em;
  font-weight: 700;
  display: block;
  color: var(--color-main1);
}
.c-title05::after{
  content: "";
  width: calc(100% + (90px));
  height: 6px;
  background: rgb(244,221,96);
  background: linear-gradient(90deg, rgba(244,221,96,1) 0%, rgba(244,221,96,1) 40px, rgba(255,255,255,1) 40px, rgba(255,255,255,1) 44px, rgba(225,225,225,1) 44px, rgba(225,225,225,1) 100%);
  position: absolute;
  bottom: 0;
  left: -45px;
  right: 0;
  margin: auto;
}

.c-title06{
  position: relative;
  display: flex;
  color: var(--color-main1);
  margin-bottom: 2em;
}
.c-title06 .day {
  margin: 10px 1em 0 0;
  position: relative;
  padding-right: 2em;
}
.c-title06 .day::after{
  content:"" ;
  position: absolute;
  top: .8em;
  right: .5em;
  width: 5px;
  height: 1px;
  background: var(--color-blk1);
}
.c-title06 .category {
  margin: 10px 1em 0 0;
  padding: 0 5px;
  background: var(--color-sub1);
  width: 10em;
  text-align: center;
}



.c-title10{
  font-size: 2em;
  font-weight: 700;
  padding-bottom: .5em;
  margin: 1em 0;
  position: relative;
}
.c-title10::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--color-sub1);
}
.c-title10::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 30%;
  background: var(--color-main1);
}
.c-title11{
  font-size: 1.5em;
  font-weight: 700;
  padding: .5em;
  margin: 1em 0;
  position: relative;
  background: var(--color-sub1);
}
.c-title12{
  font-size: 1.5em;
  font-weight: 700;
  padding-left: .5em;
  margin: 1em 0;
  position: relative;
  border-left: 10px solid var(--color-main1);
}
.c-title13{
  font-size: 1.5em;
  font-weight: 700;
  padding: .5em;
  margin: 1em 0;
  position: relative;
  border: 1px solid var(--color-main1);
}

/*----------------------------------------*/
.c-ul_disc {
  list-style: disc;
  padding-left: 1em;
}
.c-ul_disc > li {
  margin-bottom: 0.5em;
}
.c-ul_disc > li::marker {
  color: var(--color-main1);
}
.c-ul_number {
  list-style: decimal;
  padding-left: 1em;
}
.c-ul_number > li {
  margin-bottom: 0.5em;
}
.c-ul_number > li::marker {
  color: var(--color-main1);
}
.c-ul_links {
  list-style-type: none;
}
.c-ul_links > li {
  position: relative;
  padding-left: 1.5em;
}
.c-ul_links > li:not(:first-child) {
  margin-top: 0.5em;
}
.c-ul_links > li:before {
  position: absolute;
  top: 0.4em;
  left: 0;
  content: "";
  background: url(/img/common/ico_arrow01.png) center center / 100% 100% no-repeat;
  width: 1em;
  height: 1em;
}

/*----------------------------------------*/
.c-page_anchor{
  background: var(--color-sub1);
  padding: 20px;
}
.c-page_anchor > ul{
  display: flex;
  flex-wrap: wrap;
}

.c-page_anchor > ul > li {
  position: relative;
  padding: 0 5px 0 1em;
  margin: .5em 1em;
}
.c-page_anchor > ul > li:before {
  content: ">";
  transform: rotate(90deg);
  font-weight: 700;
  position: absolute;
  left: 0;
  color: #d81862;
}



/*----------------------------------------*/
.c-table01 th,
.c-table01 td{
  border: 1px solid #cfd1db;
  padding: .5em;
}
.c-table01 th{
  background: var(--color-sub1);
  color: var(--color-main1);
}


/*----------------------------------------*/
.slick-prev{
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  margin: auto;
  z-index: 1;
  border: none;
  background: none;
}
.slick-prev::before{
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  border-left: 5px solid var(--color-main1);
  border-top: 5px solid var(--color-main1);
  transform: rotate(-45deg);
}
.slick-prev:hover{
  opacity: 0.6;
}
.slick-next{
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
  z-index: 1;
  border: none;
  background: none;
}
.slick-next::before{
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-left: 5px solid var(--color-main1);
  border-top: 5px solid var(--color-main1);
  transform: rotate(135deg);
}
.slick-next:hover{
  opacity: 0.6;
}
.slick-dots{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.slick-dots > li{
  border: none;
  border-radius: 50px;
  width: 10px;
  height: 10px;
  background: var(--color-sub1);
  font-size: 0;
  margin: 0 10px;
}
.slick-dots > li.slick-active{
  background: var(--color-main1);
}
.c-slider01{
  padding-left: 40px;
  padding-right: 40px;
}
.c-slider01 .slick-slide > a{
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  border: 1px solid var(--color-blk1);
  margin: 0 10px;
  padding: 20px;
}
.c-slider01 .slick-slide.slick-current > a{
  border: 1px solid var(--color-main1);
}

/*----------------------------------------*/

.c-tab01-list{
  display: flex;
}
.c-tab01-list-item{
  width: 25%;
  text-align: center;
  padding: 8px 0;
  cursor: pointer;
  border: none;
  background: none;
}
.c-tab01-contents{
  background: var(--color-sub1);
  display: none;
  padding: 20px;
}
.c-tab-btn-active{
  background: var(--color-sub1);
  font-weight: bold;
}
.c-tab-contents-active{
  display: block;
}

/*----------------------------------------*/

.c-waku01{
  padding: 20px;
  position: relative;
}
.c-waku01 > img{
  width: 100%;
}
.c-waku01::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-top: 1px solid var(--color-main1);
  border-left: 1px solid var(--color-main1);
}
.c-waku01::after{
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border-bottom: 1px solid var(--color-main1);
  border-right: 1px solid var(--color-main1);
}

/*----------------------------------------*/

.c-layer_link01_bg{
  background: var(--color-sub1);
  padding: 2em calc(50% + 2em) 1em 2em ;
  width: 150%;
}
.c-layer_link01{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.c-layer_link01 > li {
  width: 75%;
  margin-bottom: 1em;
}
.c-layer_link01 > li:first-child {
  width: calc(25% - 20px);
  margin-right: 20px;
  border-right: 4px solid var(--color-wht);
}
.c-layer_link01 > li > ul {
  display: flex;
  flex-wrap: wrap;
}
.c-layer_link01 > li > ul > li {
  width: calc(100% / 3);
  margin-bottom: 10px;
}

@media screen and (max-width: 1080px) {
  .c-layer_link01_bg{
    background: var(--color-sub1);
    padding: 2em 2em 1em 2em ;
    width: 100%;
  }
  .c-layer_link01 > li {
    width: 100%;
  }
  .c-layer_link01 > li > ul > li {
    width: calc(100% / 2);
  }
}
@media screen and (max-width: 960px) {

  .c-layer_link01 > li:first-child {
    border-right: none;
    border-bottom: 4px solid var(--color-wht);
    width: 100%;
    padding-bottom: 20px;
    margin-right: 0;
  }
}
@media screen and (max-width: 560px) {
  .c-layer_link01 > li > ul > li {
    width: 100%;
  }
}
@media screen and (max-width: 360px) {
  .c-layer_link01 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}

/*----------------------------------------*/

.c-pager ul {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}
.c-pager li {
  margin: 5px;
}
.c-pager li a {
  text-decoration: none;
  color: var(--color-blk1);
  background: var(--color-sub1);
  padding: 0.5em 1em;
  border-radius: 5px;
}
.c-pager li a:hover {
  opacity: 0.6;
}
.c-pager li.active a {
  font-weight: bold;
  background: var(--color-main1);
  color: #FFF;
}



/*----------------------------------------*/

.c-accordion01{
  margin-bottom: 2px;
}
.c-accordion01_head{
  background: var(--color-main1);
  color: var(--color-wht);
  cursor: pointer;
  padding: .5em 3em .5em 1em;
  position: relative;
}
.c-accordion01_head.plus::before{
  content: "";
  width: 1em;
  height: 1px;
  background: var(--color-wht);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  margin: auto;
  transform: rotate(90deg);
}
.c-accordion01_head.plus::after{
  content: "";
  width: 1em;
  height: 1px;
  background: var(--color-wht);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  margin: auto;
}
.c-accordion01_head.plus.close::before{
  display: none;
}
.c-accordion01_bg{
  padding: 1em 1em;
  background: var(--color-sub1);
}


.c-map iframe{
  width: 100%;
  height: 50vh;
}

.c-video_bg{
  max-width: 1080px;
}
.c-video{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.c-video iframe{
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}



/*====================================================================
Utility…調整のための便利クラスなどを管理
====================================================================*/
.u-center {  text-align: center;}
.u-center_pc {  text-align: center;}
@media screen and (max-width: 1080px) {
	.u-center_pc {  text-align: left;}
	.u-center_sp {  text-align: center;}
}
.u-spbr02{display: none;}
@media screen and (max-width: 1080px) {
  .u-spbr{display: none;}
  .u-spbr02{display: block;}
}
.u-right {  text-align: right;}
.u-left {  text-align: left;}
.u-lh10{line-height: 1 !important;}
.u-lh12{line-height: 1.2 !important;}
.u-lh14{line-height: 1.4 !important;}
.u-lh16{line-height: 1.6 !important;}
.u-lh18{line-height: 1.8 !important;}
.u-lh20{line-height: 2 !important;}
/*----------------------------------------*/
.u-fnt--em { font-weight: 700 !important;}
.u-fnt--normal {  font-weight: 400 !important;}
/*----------------------------------------*/
.u-fnt--ssss {font-size:0.6em;}
.u-fnt--sss {font-size:0.7em;}
.u-fnt--ss {font-size:0.8em;}
.u-fnt--s {font-size:0.9em;}
.u-fnt--l {font-size:1.1em;}
.u-fnt--ll {font-size:1.2em;}
.u-fnt--lll {font-size:1.4em;}
.u-fnt--llll {font-size:1.6em;}
.u-fnt--lllll {font-size:1.8em;}
.u-fnt--llllll {font-size:2em;}
.u-fnt--lllllll {font-size:2.2em;}
.u-fnt--llllllll {font-size:2.4em;}
.u-fnt--lllllllll {font-size:3em;}
/*----------------------------------------*/
.u-fntcolor--main1 {color: var(--color-main1) !important;}
.u-fntcolor--accent1 {color: var(--color-red) !important;}
.u-fntcolor--accent2 {color: #1114b1 !important;}
.u-fntcolor--accent3 {color: #08783c !important;}
.u-fntcolor--accent4 {color: #9a610a !important;}
.u-fntcolor--accent5 {color: #f1cc00 !important;}
.u-fntcolor--wht {color: var(--color-wht) !important;}
/*----------------------------------------*/
.u-m-layout01  {margin-top: 100px !important;}
.u-m-layout02  {margin-top: 50px !important;}
.u-m-layout03  {margin-top: 20px !important;}
@media screen and (max-width: 1080px) {
  .u-m-layout01  {margin-top: 50px !important;}
}

.u-m10  {margin: 10px !important;}
.u-m20  {margin: 20px !important;}
.u-m30  {margin: 30px !important;}
.u-m40  {margin: 40px !important;}
.u-m50  {margin: 50px !important;}
.u-m60  {margin: 60px !important;}
.u-m70  {margin: 70px !important;}
.u-m80  {margin: 80px !important;}
.u-m90  {margin: 90px !important;}
.u-m100  {margin: 100px !important;}
.u-mt0  {margin-top: 0 !important;}
.u-mt10 {margin-top: 10px !important;}
.u-mt20 {margin-top: 20px !important;}
.u-mt40 {margin-top: 40px !important;}
.u-mt50 {margin-top: 50px !important;}
.u-mt60 {margin-top: 60px !important;}
.u-mt70 {margin-top: 70px !important;}
.u-mt80 {margin-top: 80px !important;}
.u-mt90 {margin-top: 90px !important;}
.u-mt100 {margin-top: 100px !important;}
.u-mb0  {margin-bottom: 0 !important;}
.u-mb10 {margin-bottom: 10px !important;}
.u-mb20 {margin-bottom: 20px !important;}
.u-mb40 {margin-bottom: 40px !important;}
.u-mb50 {margin-bottom: 50px !important;}
.u-mb60 {margin-bottom: 60px !important;}
.u-mb70 {margin-bottom: 70px !important;}
.u-mb80 {margin-bottom: 80px !important;}
.u-mb90 {margin-bottom: 90px !important;}
.u-mb100 {margin-bottom: 100px !important;}
.u-ml0  {margin-left: 0 !important;}
.u-ml10 {margin-left: 10px !important;}
.u-ml20 {margin-left: 20px !important;}
.u-ml40 {margin-left: 40px !important;}
.u-mr0  {margin-right: 0 !important;}
.u-mr10 {margin-right: 10px !important;}
.u-mr20 {margin-right: 20px !important;}
.u-mr40 {margin-right: 40px !important;}
.u-mauto {margin: auto !important;}
.u-m0   {margin: 0 !important;}
/*----------------------------------------*/
.u-p10  {padding: 10px !important;}
.u-p20  {padding: 20px !important;}
.u-p30  {padding: 30px !important;}
.u-p40  {padding: 40px !important;}
.u-p50  {padding: 50px !important;}
.u-p60  {padding: 60px !important;}
.u-p70  {padding: 70px !important;}
.u-p80  {padding: 80px !important;}
.u-p90  {padding: 90px !important;}
.u-p100  {padding: 100px !important;}
.u-pt0  {padding-top: 0 !important;}
.u-pt10 {padding-top: 10px !important;}
.u-pt20 {padding-top: 20px !important;}
.u-pt40 {padding-top: 40px !important;}
.u-pt50 {padding-top: 50px !important;}
.u-pt60 {padding-top: 60px !important;}
.u-pt70 {padding-top: 70px !important;}
.u-pt80 {padding-top: 80px !important;}
.u-pt90 {padding-top: 90px !important;}
.u-pt100 {padding-top: 100px !important;}
.u-pb0  {padding-bottom: 0 !important;}
.u-pb10 {padding-bottom: 10px !important;}
.u-pb20 {padding-bottom: 20px !important;}
.u-pb40 {padding-bottom: 40px !important;}
.u-pb50 {padding-bottom: 50px !important;}
.u-pb60 {padding-bottom: 60px !important;}
.u-pb70 {padding-bottom: 70px !important;}
.u-pb80 {padding-bottom: 80px !important;}
.u-pb90 {padding-bottom: 90px !important;}
.u-pb100 {padding-bottom: 100px !important;}
.u-pl0  {padding-left: 0 !important;}
.u-pl10 {padding-left: 10px !important;}
.u-pl20 {padding-left: 20px !important;}
.u-pl40 {padding-left: 40px !important;}
.u-pr0  {padding-right: 0 !important;}
.u-pr10 {padding-right: 10px !important;}
.u-pr20 {padding-right: 20px !important;}
.u-pr40 {padding-right: 40px !important;}
.u-p0   {padding: 0 !important;}
/*----------------------------------------*/
.u-w100p {  width: 100% !important;}
.u-mxw400 {  max-width: 400px !important;width: 100% !important;}
.u-wauto {  width: auto !important;}
/*----------------------------------------*/
.u-kadomaru01{border-radius: 10px;}
.u-kadomaru02{border-radius: 20px;}
.u-kadomaru03{border-radius: 50px;}
/*----------------------------------------*/
.u-border01{border:1px solid var(--color-main1)}
.u-border02{border:2px solid var(--color-main1)}
.u-bordertop01{border-top:1px solid var(--color-main1)}
.u-borderbottom01{border-bottom:1px solid var(--color-main1)}
/*----------------------------------------*/
.u-dsp-block{display: block !important;}
.u-dsp-inblock{display: inline-block !important;}


/*====================================================================
topics_page
====================================================================*/

@media screen and (max-width: 1080px) {
  #topics_page .c-title01{
    margin-top: 0;
  }
}
#topics_page .c-title01 + h1,
#topics_page .c-title01 + h2,
#topics_page .c-title01 + h3{
  margin-top: 40px;
}

#topics_page h1,
#topics_page h2{
  position: relative;
  margin-top: 100px;
  margin-bottom: 40px;
  padding-bottom: 1.5em;
  font-size: 2em;
  font-weight: 700;
  display: block;
  color: var(--color-main1);
}
#topics_page h1::after,
#topics_page h2::after{
  content: "";
  width: calc(100% + (90px));
  height: 6px;
  background: rgb(32,52,93);
  background: linear-gradient(90deg, rgba(32,52,93,1) 0%, rgba(32,52,93,1) 40px, rgba(255,255,255,1) 40px, rgba(255,255,255,1) 44px, rgba(244,221,96,1) 44px, rgba(244,221,96,1) 100%);
  position: absolute;
  bottom: 0;
  left: -45px;
  right: 0;
  margin: auto;
}
#topics_page h3{
  position: relative;
  margin-top: 60px;
  margin-bottom: 20px;
  padding-bottom: 1em;
  font-size: 1.5em;
  font-weight: 700;
  display: block;
  color: var(--color-main1);
}
#topics_page h3::after{
  content: "";
  width: calc(100% + (90px));
  height: 6px;
  background: rgb(244,221,96);
  background: linear-gradient(90deg, rgba(244,221,96,1) 0%, rgba(244,221,96,1) 40px, rgba(255,255,255,1) 40px, rgba(255,255,255,1) 44px, rgba(225,225,225,1) 44px, rgba(225,225,225,1) 100%);
  position: absolute;
  bottom: 0;
  left: -45px;
  right: 0;
  margin: auto;
}
#topics_page h4{
  color: var(--color-main1);
  font-size: 1.5em;
  font-weight: 700;
  padding-bottom: .25em;
  position: relative;
  display: inline-block;
  margin: 40px auto 20px;
}
#topics_page h4::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 2px;
  width: 100%;
  background: var(--color-main1);
}
#topics_page h5{
  color: var(--color-main1);
  font-size: 1.5em;
  font-weight: 700;
  padding: .5em;
  position: relative;
  background: var(--color-sub1);
  margin: 40px auto 20px;
}
#topics_page h6{
  color: var(--color-main1);
  font-size: 1.5em;
  font-weight: 700;
  position: relative;
  margin: 40px auto 20px;
}

#topics_page ul{
  list-style-type: none;
  margin: 20px auto;
}
#topics_page ul > li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
}
#topics_page ul > li:before {
  position: absolute;
  top: 0.7em;
  left: 0;
  content: "";
  background: var(--color-main1);
  border-radius: 10px;
  width: 0.5em;
  height: 0.5em;
}
#topics_page ol{
  list-style-type: none;
  counter-reset: count 0;
  margin: 20px auto;
}
#topics_page ol li{
  padding-left: 1.25em;
  position: relative;
}
#topics_page ol > li::before{
  content: counter(count) "";
  counter-increment: count 1;
  width: 1rem;
  height: 1rem;
  background: var(--color-sub1);
  border-radius: 3px;
  font-size: 0.7em;
  line-height: 1;
  letter-spacing: -0.1em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0.5em;
  left: -0.25em;
  margin: auto;
}
#topics_page table{
  margin: 40px auto;
  width: 100%;
}
#topics_page table th{
  background: var(--color-main1);
  color: var(--color-wht);
  border: 1px solid var(--color-blk4);
  padding: .5em;
}
#topics_page table td{
  background: var(--color-wht);
  border: 1px solid var(--color-blk4);
  padding: .5em;
}
@media screen and (max-width: 1080px) {
  #topics_page table th{
    padding:10px 10px;
  }
  #topics_page table td{
    padding:10px 10px;
  }
}

#topics_page a{
  text-decoration: underline;
}


/*====================================================================
print
====================================================================*/

@media print {
	html,body {
    width: 1080px;
    margin: auto;
		-webkit-print-color-adjust: exact;
	}
  header {
		display: none;
	}
}

/*====================================================================
english
====================================================================*/

.u-right {
	text-align: right;
}
.u-float_l {
	float: left;
}
.u-float_r {
	float: right;
}
.u-clearfix {
	clear: both;
}
.u-mt10 {
	margin-top: 10px;
}
.u-mt30 {
	margin-top: 30px;
}
.u-mb0 {
	margin-bottom: 0;
}
.u-mb30 {
	margin-bottom: 30px;
}
.u-ml30 {
	margin-left: 30px;
}
.u-mr30 {
	margin-right: 30px;
}

@media screen and (max-width: 780px) {
	.p-enspirit_flex {
		float: none;
		display: flex;
   		justify-content: center;
		margin-left: 0;
	}
	.p-enspirit_flex li:first-child {
		margin-right: 10px;
	}
	.p-enspirit_flex li:last-child {
		margin-left: 10px!important;
	}
}

.p-enstep_table {
	width: 100%;
}
.p-enstep_table th {
    width: 100px;
	padding: 10px;
	border-bottom: solid 4px var(--color-main1);
	color:  var(--color-main1);
    text-align: left;
}
.p-enstep_table td {
	padding: 10px;
	border-bottom: solid 1px  var(--color-main1);
	padding-left: 20px;
}
.u-italic {
	font-style: italic;
}
@media screen and (max-width: 960px) {
	.sp_none {
		display: none;
	}
}
@media screen and (max-width: 560px) {
	.p-enstep_table th {
    	width: 80px;
	}
}
.u-num_list li {
	margin-left: 1.5em;
 	padding-left: 0.5em;
	list-style-type: auto;
}
.u-num_list li::marker {
	font-weight: bold;
 	color: var(--color-main1);
}
.p-enfacilities_flex {
	display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-around;
	padding-top: 30px;
}

/*====================================================================
article_area
====================================================================*/

.article_area:not(:has(.l-container01 .l-section01)){
  margin: 100px auto;
  width: calc(100% - (90px * 2));
}
@media screen and (max-width: 1080px) {
  .article_area:not(:has(.l-container01 .l-section01)){
    margin: 50px auto;
    width: calc(100% - (45px * 2));
  }
}
@media screen and (max-width: 560px) {
  .article_area:not(:has(.l-container01 .l-section01)){
    width: calc(100% - (20px * 2));
  }
}
.article_area ul:not([class]){
  list-style: disc;
  padding-left: 1em;
  margin-top: 20px;
}
.article_area ul:not([class]) > li {
  margin-bottom: 0.5em;
}
.article_area ul:not([class]) > li::marker {
  color: var(--color-main1);
}
.article_area ol:not([class]) {
  list-style: decimal;
  padding-left: 1em;
  margin-top: 20px;
}
.article_area ol:not([class]) > li {
  margin-bottom: 0.5em;
}
.article_area ol:not([class]) > li::marker {
  color: var(--color-main1);
}