@charset "utf-8";
:root {
  --color-main1: #20345d;
  --color-sub1: #dcd4f7;
  --color-sub2: #9e8dd7;
  --color-accent1: #f4dd60;
  --color-accent2: #cf9519;
  --color-accent3: #ff7611;
  --color-accent4: #e03730;
  --color-body1: #f6f6f2;
  --color-blk1: #333333;
  --color-blk2: #5a5a5a;
	--color-blk3: #7b7b7b;
  --color-blk4: #e3e3da;
  --color-wht: #FFFFFF;
  --color-grd1: linear-gradient(180deg, rgba(96,117,187,1) 0%, rgba(209,160,238,1) 100%);
}

/*====================================================================
　Commons
====================================================================*/
html, body {
  width: 100%;
  word-wrap: break-word;
  word-break: break-all;
}
@media screen and (max-width: 560px) {
  html, body {
    font-size: 14px;
  }
}
body{
	color: #313131;
  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;
}
img {
	max-width: 100%;
	image-rendering: -webkit-optimize-contrast;
}
_::-webkit-full-page-media, _:future, :root img {
  image-rendering: auto;
}
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; }
}
@keyframes backgroundzoom {
	0% { background-size: auto 100%; }
	100% { background-size: auto 110%; }
}
@-webkit-keyframes backgroundzoom {
	0% { background-size: auto 100%; }
	100% { background-size: auto 110%; }
}

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

a {
	transition: all .3s ease;
}
a:link {
	color: var(--color-blk1);
	text-decoration: none;
}
a:visited {
	color: var(--color-blk1);
	text-decoration: none;
}
a:hover {
	color: var(--color-blk3);
	text-decoration: underline;
  opacity: 0.6;
}

main a[href^="http"][target="_blank"]::after {
  content:" ";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(/img/common/ico_link_external01.svg) center center / auto 100% no-repeat;
	margin-top: -0.2em;
	margin-left: 0.3em;
  vertical-align: middle;
}

/* 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"]{
  text-decoration: underline;
} */

main a:not([class]){
  color: #7169c2;
}

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^="http"][target="_blank"]::after,
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;
}

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

.navskip { display: none; }



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

#body_inner{
  position: relative;
  background: var(--color-body1);
  border-left: 20px solid;
  border-image: linear-gradient(to bottom, #6075bb, #d9a2f1) 1;
}
@media screen and (max-width: 1080px) {
  #body_inner{
    border-left: none;
    padding-top: 1px;
  }
}

#header-gnav{
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  width: auto;
  display: block;
}

header{
  position: absolute;
  top: 0;
  right: 90px;
	display: flex;
	justify-content: space-between;
	align-items: center;
  padding: 10px 100px 10px 30px;
  background: var(--color-wht);
  transition: .5s;
}
@media screen and (max-width: 1080px) {
  header{
    width: 100%;
    right: 0;
  }
}
@media screen and (max-width: 560px) {
  header{
    padding: 10px 100px 10px 20px;
  }
}

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

.l-navlogo{
  display: none;
}
@media screen and (max-width: 1080px) {
  .l-subnav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 40px;
  }
  .l-navlogo{
    display: flex;
    align-items: center;
  }
  .l-navlogo a{
    display: inline-block;
  }
  .l-navlogo img{
    width: 260px;
  }
}
@media screen and (max-width: 560px) {
  .l-navlogo img{
    width: 220px;
  }
}

.l-subnav__menu{
  display: flex;
  align-items: center;
}
.l-subnav__menu > li{
  margin-right: 30px;
}
.l-subnav__menu > li:last-child{
  margin-right: 0;
}
@media screen and (max-width: 1080px) {
  .l-subnav__menu{
    display: none;
  }
}

.l-subnav__menu_list > li{
  border-bottom: 1px solid var(--color-wht);
}
.l-subnav__menu_list > li > a{
  background: url(/img/common/ico_arrow02.png) center right 10px / 2em auto no-repeat var(--color-main1);
  color: var(--color-wht) !important;
  display: block;
  padding: 1em;
}


/*----------------------------------------*/
.l-gnav {
	display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  padding: 0 0 0 0;
  overflow-y: auto;
  background: url(/img/common/bg_gnav01.jpg) top center / cover no-repeat #cea5eb;
  height: 0;
  transition-property: height, padding;
  transition:  0.3s linear;
}
.menuopen .l-gnav{
  height: 100vh;
  padding: 0 0 100px 0;
}
.l-gnav::-webkit-scrollbar {
  width: 5px;
}
.l-gnav::-webkit-scrollbar-track {
  background: var(--color-main1);
}
.l-gnav::-webkit-scrollbar-thumb {
  background: #f4dd60;
}
@media screen and (max-width: 1080px) {
  .menuopen .l-gnav{
    height: 100vh;
    padding: 0 0 200px 0;
  }
}


.l-gnav_inner{
  width: calc(100% - 180px);
  margin: 0 auto;
  color: var(--color-wht);
  padding: 1px 1px 100px 1px;
  overflow-y: auto;
}
.l-gnav_inner a{
  color: var(--color-wht);
}
@media screen and (max-width: 1080px) {
  .l-gnav_inner{
    width: calc(100% - 90px);
    padding: 1px 1px 50px 1px;
  }
}
@media screen and (max-width: 560px) {
  .l-gnav_inner{
    width: calc(100% - 40px);
    padding: 1px 1px 50px 1px;
  }
}

.l-gnav__menu01{
  display: flex;
  justify-content: flex-end;
  padding-right: 70px;
}
.l-gnav__menu01 > li{
  border-left: 1px solid var(--color-wht);
  padding: 40px 2em 1em;
}
.l-gnav__menu01 > li:first-child{
  margin-right: auto;
}
.l-gnav__menu01 > li > a{
  position: relative;
  padding-left: 2em;
}
.l-gnav__menu01 > li > a::after{
  content: "";
  position: absolute;
  left: 0;
  top:  calc(.6em + 2px);
  display: block;
  width: 1em;
  height: 2px;
  background: var(--color-wht);
}
@media screen and (max-width: 1080px) {
  .l-gnav__menu01{
    display: flex;
    justify-content: flex-start;
    padding-right: 0;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  .l-gnav__menu01 > li{
    border-left: none;
    padding: 0 0 0;
    margin-right: 2em;
  }
  .l-gnav__menu01 > li:first-child{
    margin-right: 2em;
  }
  .l-gnav__menu01 > li > a{
    position: relative;
    padding-left: 2em;
    display: inline-block;
  }
  .l-gnav__menu01 > li > a::after{
    content: "";
    position: absolute;
    left: 0;
    top:  calc(.6em + 2px);
    display: block;
    width: 1em;
    height: 2px;
    background: var(--color-wht);
  }
}
@media screen and (max-width: 768px) {
  .l-gnav__menu01 > li{
    border-left: none;
    padding: 0 0 0;
    margin-right: 2em;
    width: 100%;
  }
}

.l-gnav__menu02{
  display: flex;
  flex-wrap: wrap;
}
.l-gnav__menu02 > li{
  padding: 0;
  width: calc((100% / 3) - (40px / 3));
  margin-right: 20px;
  margin-top: 40px;
}
.l-gnav__menu02 > li:nth-child(3n){
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .l-gnav__menu02 > li{
    border-left: 1px solid var(--color-wht);
    padding: 0;
    width: calc((100% / 2) - (20px / 2));
    margin-right: 20px;
    margin-top: 40px;
  }
  .l-gnav__menu02 > li:nth-child(3n){
    margin-right: 20px;
  }
  .l-gnav__menu02 > li:nth-child(2n){
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-gnav__menu02 > li{
    width: 100%;
    margin-right: 0 !important;
  }
}


/* .l-gnav__item{
  position: relative;
}

.l-gnav__link{
  cursor: pointer;
  padding-right: 1.5em;
  position: relative;
  border: 1px solid var(--color-wht);
  border-radius: 0 10px 10px 0 ;
  padding: 1em;
  display: block;
  width: calc(100% - 3em);
}
.l-gnav__link::before{
  content: "";
  background: url(/img/common/ico_arrow02.png) center center / 100% auto no-repeat;
  width: 3em;
  height: 1em;
  position: absolute;
  right: 1em;
  top: 1.4em;
}
.l-gnav__link:hover{
  background: var(--color-wht);
  color: var(--color-main1);
  text-decoration: none;
}
.l-gnav__link:hover::before{
  background: url(/img/common/ico_arrow01.png) center center / 100% auto no-repeat;
} */

.l-gnav__link{
  cursor: pointer;
  background: url(/img/common/ico_arrow02.png) center left / 3em auto no-repeat;
  padding-left: 4em;
}



/*----------------------------------------*/
.l-dropmenu01{
  cursor: pointer;
  padding-right: 1.5em;
  position: relative;
  border: 1px solid var(--color-wht);
  border-radius: 0 10px 10px 0 ;
  padding: 1em;
  display: block;
  width: calc(100% - 1em);
  transition: all .3s;
}
/* .l-dropmenu01::before{
  content: "";
  background: url(/img/common/ico_arrow02.png) center center / 100% auto no-repeat;
  width: 3em;
  height: 1em;
  position: absolute;
  left: 1em;
  top: 1.4em;
} */
.l-dropmenu01::after{
  content: "";
  background: url(/img/common/ico_p1.png) center center / 100% auto no-repeat;
  width: 2em;
  height: 2em;
  position: absolute;
  right: 1em;
  top: 1em;
}
.l-dropmenu01:hover{
  opacity: 1;
  text-decoration: none;
}
.l-dropmenu01:hover::after{
  opacity: 0.4;
}
.l-dropmenu01.is-active::after{
  background: url(/img/common/ico_m1.png) center center / 100% auto no-repeat;
}

/* .l-dropmenu01{
  background: url(/img/common/ico_p1.png) center center / 100% auto no-repeat;
  width: 2em;
  height: 2em;
  display: block;
  position: absolute;
  right: 0;
  top: 1em;
  cursor: pointer;
}
.l-dropmenu01.is-active{
  background: url(/img/common/ico_m1.png) center center / 100% auto no-repeat;
}
.l-dropmenu01:hover{
  opacity: 0.6;
} */



.l-dropmenu01__bg{
  border-left: 1px solid var(--color-wht);
  padding: 10px 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 > li{
  margin: 10px 0;
}
.l-dropmenu__list > li > a{
  position: relative;
  padding-left: 2em;
  display: inline-block;
}
.l-dropmenu__list > li > a::after{
  content: "";
  position: absolute;
  left: 0;
  top: calc(.6em + 2px);
  display: block;
  width: 1em;
  height: 2px;
  background: var(--color-wht);
}

/*----------------------------------------*/
.l-dropmenu02_waku{

}
.l-dropmenu02{
  cursor: pointer;
  transition: all .3s ease;
}
.l-dropmenu02:hover{
  color: var(--color-blk3);
  text-decoration: underline;
  opacity: .6;
}
.l-dropmenu02__bg{
  position: absolute;
  top: 49px;
  left: 0;
  width: calc(100% - 70px);
  background: var(--color-main1);
  padding:0;
}




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



.menuopen body {
  overflow: hidden;
}
.menuopen #navbtn:before {
  transform: rotate(-45deg);
  box-shadow: none;
}
.menuopen #navbtn:after {
  transform: translateY(-2px) rotate(45deg);
  box-shadow: none;
}
#menu_overlay {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  transform: translateY(calc(100vh + 1080px)) scaleY(0);
  transition: ease-in-out .6s;
  cursor: pointer;
}
.menuopen #menu_overlay {
  transform: translateY(0) scaleY(1);
}



/*----------------------------------------*/
.l-pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  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);
  text-decoration: none;
}
.l-pagetop a:hover {
  opacity: 1;
  background-color: var(--color-sub2);
}

/*----------------------------------------*/
.l-document_request {
  position: fixed;
  bottom: 100px;
  right: 0;
  z-index: 100;
}
.l-document_request_inner {
  background: var(--color-main1);
  border-radius: 10px 0 0 10px;
  padding: 20px 0 20px 22px;
  width: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-document_request_inner:hover {
  background: var(--color-sub2);
  opacity: 1;
  text-decoration: none;
}
.l-document_request_inner::after {
  content: "";
  width: 4px;
  height: calc((1em * 1.2) * 5);
  background: var(--color-sub2);
}
.l-document_request_inner > span {
  color: var(--color-wht);
  display: block;
  width: 1em;
  line-height: 1.2;
  font-style: italic;
  background: url(/img/common/ico_document01.png) top center / 1em auto no-repeat;
  padding-top: 1.5em;
}
.l-document_request:hover span {
  text-decoration: none;
}
@media screen and (max-width: 560px) {
  .l-document_request {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 100;
  }
  .l-document_request_inner {
    border-radius: 10px 10px 0 0;
    padding: 10px 20px 0 20px;
    width: 50%;
    margin: 0 auto;
    align-items: center;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: center;
  }
  .l-document_request_inner::after {
    content: "";
    width: 100%;
    height: 4px;
    background: var(--color-sub2);
    margin-top: 10px;
  }
  .l-document_request_inner > span {
    color: var(--color-wht);
    display: block;
    width: auto;
    line-height: 1.2;
    font-style: italic;
    background: url(/img/common/ico_document01.png) center left / 1em auto no-repeat;
    padding: 0 0 0 1.5em;

  }
}

/*----------------------------------------*/
.l-logo{}
@media screen and (max-width: 1080px) {
  .l-logo{
    padding-right: 60px;
  }
}

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

/*----------------------------------------*/
.l-container01 {
  margin: 100px 0;
}

/*----------------------------------------*/
.l-container_top01 {
  margin: 100px 0;
}

/*----------------------------------------*/
.l-section01 {
  width: calc(100% - (90px * 2));
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .l-section01 {
    width: calc(100% - (60px * 2));
    margin: 0 auto;
  }
}
@media screen and (max-width: 560px) {
  .l-section01 {
    width: calc(100% - (20px * 2));
    margin: 0 auto;
  }
}

/*----------------------------------------*/
.l-footer{
  display: flex;
  position: relative;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.l-footer_nav_mainmenu{
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
}
.l-footer_nav_mainmenu > li{
  margin: 10px 0 0;
  width: 100%;
  text-align: right;
}
.l-footer_nav_mainmenu > li > a{
  font-weight: 400;
  padding-right: 2em;
  position: relative;
  display: inline-block;
  font-size: 0.95em;
}
.l-footer_nav_mainmenu > li > a::after{
  content: "";
  display: inline-block;
  width: 1em;
  height: 2px;
  background: var(--color-blk3);
  position: absolute;
  top: .8em;
  right: 0;
}

.l-footer_inner01{
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--color-wht);
  padding: 40px 40px 40px 90px;
  width: 45%;
}
.l-footer_inner01 address{
  display: block;
}
.l-footer_inner01 .l-footer_nav .l-footer_nav_mainmenu{
  display: block;
}

.l-footer_inner02{
  width: 60%;
}
.l-footer_inner02_bg{
  background: #e3e3da;
  padding: 40px 90px 40px 40px;
}
.l-footer_inner02 .l-footer_logo{
  text-align: right;
  width: 80%;
  margin: 40px 0 60px auto;
}
.l-footer_inner02 .l-footer_logo img{
  margin-left: auto;
  width: 300px;
}
.l-footer_inner02 .l-footer_logo p{
  display: block;
  margin-bottom: 0;
}
.l-footer_inner02 .l-footer_logo a:hover{
  text-decoration: none;
}
.l-footer_inner02 .l-footer_nav .l-footer_nav_mainmenu{
  display: block;
}

.l-footer_bottom{
  margin-top: 20px;
  padding: 0 90px 20px 0;
}
.l-footer_bottom > p{
  margin: 0;
  text-align: right;
}

@media screen and (max-width: 1080px) {
  .l-footer_inner01{
    position: relative;
    left: 0;
    bottom: 0;
    background: var(--color-wht);
    padding: 40px 90px 40px 40px;
    width: calc(100% - 20px);
  }
  .l-footer_inner02{
    width: 100%;
    margin-top: -40px;
  }
  .l-footer_inner02_bg{
    background: #e3e3da;
    padding: 40px 90px 40px 40px;
  }
  .l-footer_inner02 .l-footer_logo{
    margin: 40px 0 20px auto;
  }
  .l-footer_bottom{
    padding: 0 20px;
  }
  .l-footer_bottom > p{
    text-align: center;
  }
}
@media screen and (max-width: 560px) {
  .l-footer{
    padding-bottom: 70px;
  }
  .l-footer_inner01{
    padding: 40px;
  }
  .l-footer_inner02_bg{
    padding: 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: 560px) {
  .l-row .col2_2 > li.text {
    width: 100%;
  }
  .l-row .col2_2 > li.img {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .l-row .col2_2.interview_child > li.text {
    width: 100%;
  }
  .l-row .col2_2.interview_child > 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(3n) {
    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-alert{
  background: var(--color-accent1);
  padding: .5em 90px;
}
.p-alert-topics > li {
  border-bottom: 1px solid var(--color-blk1);
}
.p-alert-topics > li:last-child {
  border-bottom: none;
}
.p-alert-topics > li > a {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  text-decoration: none;
  padding: 10px 0 20px;
}
.p-alert-topics > li > a > .day {
  margin: 10px 1em 0 0;
  padding-right: 2em;
  position: relative;
}
.p-alert-topics > li > a > .day::after{
  content:"" ;
  position: absolute;
  top: .8em;
  right: .5em;
  width: 5px;
  height: 1px;
  background: var(--color-blk1);
}
.p-alert-topics > li > a > .category {
  margin: 10px 1em 0 0;
  padding: 0 5px;
  width: 10em;
  text-align: center;
  background: var(--color-blk1);
  color: var(--color-wht);
}
.p-alert-topics > li > a > .title {
  flex: 1;
  margin: 10px 0 0 0;
  font-weight: 700;
}
.p-alert-topics > li > a:hover > .title {
  text-decoration: underline;
}
@media screen and (max-width: 1080px) {
  .p-alert{
    background: var(--color-accent1);
    padding: .5em 45px;
  }
  .p-alert-topics > li > a > .title {
    flex: auto;
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .p-alert{
    padding: 0 20px;
  }
  .p-alert-topics > li > a {
    padding: 10px 0 15px;
  }
}


/*----------------------------------------*/
.ico_search{
  width: 1.3em;
}

.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: 1em;
  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;
}
}

.p-search_area_sp{
  display: none;
}
@media screen and (max-width: 1080px) {
  .p-search_area_sp{
    display: block;
    margin-top: 40px;
    padding-right: 60px;
  }
}

/*----------------------------------------*/
.p-mainimage{
  position: relative;
}
.p-mainimage::after{
  content: "";
  background: url(/img/top/il_d.png) center center / 100% auto no-repeat;
  width:calc(100% / 3);
  height: 0;
  padding-bottom: calc(132.5% / 3);
  position: absolute;
  bottom:calc((-132.5% / 3) / 2);
  left: 0;
}
.p-mainimage__bg{
	/* background: url(/img/top/head_mainimage01.jpg) center center / cover no-repeat; */
	width: calc(100% - 90px);
  margin-left: auto;
	height: calc(100vh);
}
.p-mainimage__logo{
	position: absolute;
  top: 40px;
  left: 40px;
}
.p-mainimage__logo img{
	width: 500px;
}
@media screen and (max-width: 1400px) {
  .p-mainimage__logo img{
    width: calc(100vw - 870px);
  }
}
.p-mainimage__text{
	position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: max-content;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
    align-items: flex-end;
}
.p-mainimage__text h2{
	background: var(--color-wht);
  font-size: 3em;
  font-style: italic;
  padding: .5em 90px .5em 1em;
  text-align: right;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
}
.p-mainimage__text p{
  display: inline-block;
  font-size: 1.5em;
	background: var(--color-sub2);
  color: var(--color-wht);
  font-style: italic;
  padding: 0 90px 0 1em;
  text-align: right;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.p-mainimage__img {
	width: 100%;
	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__img li {
	height: calc(100vh);
	background: center center / cover no-repeat;
}
/* 読み込み時のちらつき対策 */
.p-mainimage__img { opacity: 0; overflow: hidden; }
.p-mainimage__img.slick-initialized { opacity: 1; overflow: visible; }

@media screen and (max-width: 1080px) {
  .p-mainimage{
    margin-top: 60px;
  }
  .p-mainimage__logo{
    display: none;
  }
  .p-mainimage__bg{
    width: calc(100% - 45px);
  }
  .p-mainimage__text h2{
    font-size: 2em;
    padding: .5em 45px .5em 1em;
  }
  .p-mainimage__text p{
    font-size: 1em;
    padding: 0 45px 0 1em;
  }
}
@media screen and (max-width: 560px) {
  .p-mainimage__bg{
    width: calc(100% - 20px);
  }
  .p-mainimage__text h2{
    font-size: 5vw;
    padding: .5em 45px .5em 1em;
  }
  .p-mainimage__text p{
    font-size: 3vw;
    padding: 0 45px 0 1em;
  }
}

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

.p-topcontent01_bg{
  position: relative;
  overflow: hidden;
}
.p-topcontent01_bg > .img01{
  position: absolute;
  top: 20%;
  left: 0;
  width: 300px;
}
.p-topcontent01_bg > .img02{
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
}
.p-topcontent01{
  width: 670px;
  max-width: 100%;
  margin: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.p-topcontent01__title{
  font-size: 2em;
  width: 1em;
  padding: .5em 1em;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-style: italic;
  background: var(--color-wht);
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-topcontent01__text{
  margin: 100px 0 0 100px;
}
.p-topcontent01__text .c-btn01{
  margin-top: 100px;
}
@media screen and (max-width: 1080px) {
  .p-topcontent01_bg > .img01{
    position: absolute;
    top: 50px;
    left: 0;
    width: 250px;
  }
  .p-topcontent01_bg > .img02{
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
  }
  .p-topcontent01{
    flex-wrap: wrap;
    justify-content: center;
  }
  .p-topcontent01__text{
    margin: 50px auto 0;
  }
  .p-topcontent01__text > p{
    text-shadow: 
    2px 2px 2px var(--color-body1),
    -2px -2px 2px var(--color-body1),
    -2px 2px 2px var(--color-body1),
    2px -2px 2px var(--color-body1);
  }
  .p-topcontent01__text .c-btn01{
    margin-top: 40px;
  }
}
@media screen and (max-width: 560px) {
  .p-topcontent01_bg > .img01{
    position: absolute;
    top: 50px;
    left: 0;
    width: 150px;
  }
  .p-topcontent01_bg > .img02{
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
  }
  .p-topcontent01{
    flex-wrap: wrap;
    justify-content: center;
  }
  .p-topcontent01__text{
    margin: 100px auto 0;
  }
}

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

.p-topcontent02_bg{
  margin: 100px 0;
  background: url(/img/top/bg_topcontent_slider01.png) center center / 100% auto no-repeat;
}

.p-topcontent02__title{
  background: var(--color-main1);
  width: 300px;
  height: 250px;
  font-weight: 400;
  padding: 1em;
  position: relative;
  margin-bottom: -100px;
}
.p-topcontent02__title > .main{
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-style: italic;
  color: var(--color-wht);
  font-size: 1.5em;
  margin-top: .5em;
}
.p-topcontent02__title > .sub{
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  font-style: italic;
  color: var(--color-wht);
  margin-top: 10px;
}
.p-topcontent02__title::after{
  content: "";
  width: 50%;
  height: 3px;
  background: var(--color-sub1);
  position: absolute;
  right: -1em;
  bottom: 1em;
  box-shadow: 5px 7px 0 var(--color-sub2);
}
@media screen and (max-width: 1080px) {
  .p-topcontent02__title{
    width: 100%;
    height: auto;
    margin-bottom: 40px;
  }
  .p-topcontent02__title > .main{
    margin-top: 0;
  }
  .p-topcontent02__title > .sub{
    margin-top: 10px;
  }
}
@media screen and (max-width: 560px) {
  .p-topcontent02__title{
    font-size: 16px;
  }
}

.p-topcontent_slider01_bg{
  margin-left: 90px;
  overflow: hidden;
}
.p-topcontent_slider01{
  padding-left: 340px;
  padding-right: 0;
}
.p-topcontent_slider01 .slick-list{
  width: 100%;
}
.p-topcontent_slider01 .slick-slide.slick-current > a{
  border: none;
}
.p-topcontent_slider01 .slick-slide > a{
  display: block;
  height: 0;
  padding-bottom: 100%;
  text-decoration: none;
  border: none;
  margin: 0 20px 0 0;
  position: relative;
}
.p-topcontent_slider01 .slick-slide > a:hover{
  opacity: 1;
}

.p-topcontent_slider01 .slick-slide > a .img{
  position: relative;
  background: center center / cover no-repeat;
  height: 0;
  padding-bottom: calc(100% - 1em);
}
.p-topcontent_slider01 .slick-slide > a:hover .img{
  animation: backgroundzoom .5s ease 0s 1 forwards;
}

.p-topcontent_slider01 .slick-slide > a .text_bg{
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-wht);
  padding: 1em;
  border-radius: 0 10px 10px 0;
  width: 80%;
  display: flex;
  flex-wrap: wrap;
}
.p-topcontent_slider01 .slick-slide > a .text_bg .title{
  display: block;
  width: 100%;
  font-weight: 700;
  color: #313131;
}
.p-topcontent_slider01 .slick-slide > a .text_bg .day{
  display: block;
  margin-right: 1em;
  color: var(--color-accent2);
}
.p-topcontent_slider01 .slick-slide > a .text_bg .category{
  display: block;
  color: var(--color-blk3);
}
.p-topcontent_slider01 .slick-slide > a .text_bg .category.imp{
  display: block;
  color: var(--color-accent3);
}
.p-topcontent_slider01 .slick-prev{
  top: inherit;
  left: 5px;
  right: inherit;
  bottom: 10px;
}
.p-topcontent_slider01 .slick-prev::before{
  content: "";
  width: 100px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background: url(/img/common/ico_arrow01.png) center center / 50px auto no-repeat var(--color-body1);
  border: 1px solid var(--color-main1);
  border-radius: 0 10px 10px 0;
  transform: rotate(0) scale(-1, 1);
  transition: all .3s ease;
}
.p-topcontent_slider01 .slick-prev:hover:before{
  background: url(/img/common/ico_arrow01.png) center center / 50px auto no-repeat var(--color-sub1);
}
.p-topcontent_slider01 .slick-next{
  top: inherit;
  left: 120px;
  right: inherit;
  bottom: 10px;
}
.p-topcontent_slider01 .slick-next::before{
  content: "";
  width: 100px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background: url(/img/common/ico_arrow01.png) center center / 50px auto no-repeat var(--color-body1);
  border: 1px solid var(--color-main1);
  border-radius: 0 10px 10px 0;
  transform: rotate(0);
  transition: all .3s ease;
}
.p-topcontent_slider01 .slick-next:hover:before{
  background: url(/img/common/ico_arrow01.png) center center / 50px auto no-repeat var(--color-sub1);
}
@media screen and (max-width: 1080px) {
  .p-topcontent_slider01_bg{
    margin-left: 60px;
    width: calc(100% - (50px * 2));
    overflow: hidden;
  }
  .p-topcontent_slider01{
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 560px) {
  .p-topcontent_slider01_bg{
    margin-left: 20px;
    width: calc(100% - (10px * 2));
    overflow: hidden;
  }
  .p-topcontent_slider01{
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 70px;
  }
  .p-topcontent_slider01 .slick-list{
    width: 100%;
  }
}

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

.p-topcontent03_bg{
  margin: 100px 0;
}
.p-topcontent03{
  display: flex;
  flex-direction: row-reverse;
}
.p-topcontent03_c1{
  margin-left: 40px;
  padding-left: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.p-topcontent03_c1::after{
  content: "";
  width: 2px;
  height: 100%;
  background: var(--color-sub1);
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: -5px 7px 0 var(--color-sub2);
}
.p-topcontent03_c2{
  flex: 1;
}
.p-topcontent03__title{
  width: 1em;
  padding: 0.5em 1em;
  display: flex;
  justify-content: center;
}
.p-topcontent03__title .main{
  font-size: 1.5em;
  width: 1em;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
}
.p-topcontent03__title .sub{
  width: 1em;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  font-style: italic;
  line-height: 1.2;
  writing-mode: vertical-rl;
  margin-left: 1em;
}
@media screen and (max-width: 1080px) {
  .p-topcontent03{
    display: block;
  }
  .p-topcontent03_c1{
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .p-topcontent03_c1::after{
    content: "";
    width: 100%;
    height: 2px;
    background: var(--color-sub1);
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    box-shadow: 5px 7px 0 var(--color-sub2);
  }
  .p-topcontent03__title{
    width: 100%;
    padding:0;
    display: block;
  }
  .p-topcontent03__title .main{
    font-size: 1.5em;
    width: auto;
    display: block;
  }
  .p-topcontent03__title .sub{
    width: auto;
    display: block;
    margin-left: 0;
    margin-top: 10px;
    writing-mode: inherit;
  }
}
@media screen and (max-width: 560px) {
  .p-topcontent03__title{
    font-size: 16px;
  }
}


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

.p-topcontent04_bg{
  margin: 100px 0;
  position: relative;
}
.p-topcontent04_bg > .img01{
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 380px;
}
.p-topcontent04{
  display: flex;
}
.p-topcontent04_c1{
  width: 300px;
  margin-right: 40px;
}
.p-topcontent04_c2{
  flex: 1;
}

.p-topcontent04__title{
  width: 100%;
  font-weight: 400;
  position: relative;
  padding-bottom: 2em;
}
.p-topcontent04__title > .main{
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-style: italic;
  font-size: 1.5em;
}
.p-topcontent04__title > .sub{
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  font-style: italic;
  margin-top: 10px;
}
.p-topcontent04__title::after{
  content: "";
  width: 70%;
  height: 3px;
  background: var(--color-sub1);
  position: absolute;
  right: 0;
  bottom: 1em;
  box-shadow: 5px 7px 0 var(--color-sub2);
}

.p-link01{
  display: flex;
  flex-wrap: wrap;
}
.p-link01 > li{
  border-right: 1px solid var(--color-blk3);
  border-bottom: 1px solid var(--color-blk3);
  border-radius: 0 0 10px 0;
  width: calc(50% - 10px);
  margin-right: 20px;
  margin-bottom: 20px;
}
.p-link01 > li:nth-child(2n){
  margin-right: 0;
}
.p-link01 > li > a{
  padding: 0 20px 20px 0;
  display: block;
  border-radius: 0 0 10px 0;
  color: #313131;
}
.p-link01 > li > a > .img{
  background: center center / cover no-repeat;
  padding-bottom: 60%;
}
.p-link01 > li > a > .text_bg{
  padding: 20px;
  background: url(/img/common/ico_arrow01.png) bottom right / 2em auto no-repeat var(--color-body1);
}
.p-link01 > li > a > .text_bg > .title{
  font-size: 1.2em;
  font-weight: 700;
}
.p-link01 > li > a > .text_bg > p{
  font-size: .9em;
}
.p-link01 > li.c1{
  width: 100%;
  margin-right: 0;
}
.p-link01 > li.c1 > a{
  display: flex;
  flex-direction: row-reverse;
}
.p-link01 > li.c1 > a > .img{
  width:50%;
  padding-bottom: 30%;
}
.p-link01 > li.c1 > a > .text_bg{
  width: calc(50% - 20px);
  margin-right: 20px;
}

@media screen and (max-width: 1080px) {
  .p-topcontent04_bg > .img01{
    display: none;
  }
  .p-topcontent04{
    display: block;
  }
  .p-topcontent04_c1{
    margin: 0 0 20px 0;
    width: 100%;
  }
  .p-topcontent04__title{
    padding-bottom: 1em;
    margin-bottom: 40px;
  }
  .p-topcontent04__title::after{
    content: "";
    width: 100%;
    height: 2px;
    background: var(--color-sub1);
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    box-shadow: 5px 7px 0 var(--color-sub2);
  }
}
@media screen and (max-width: 560px) {
  .p-link01 > li{
    width: 100% !important;
    margin-right: 0 !important;
  }
  .p-link01 > li.c1 > a{
    display: block;
  }
  .p-link01 > li > a > .text_bg{
    padding: 20px 0 0 0;
    background: url(/img/common/ico_arrow01.png) bottom right / 2em auto no-repeat var(--color-body1);
  }
  .p-link01 > li.c1 > a > .img{
    width:100%;
    padding-bottom: 60%;
  }
  .p-link01 > li.c1 > a > .text_bg{
    width: 100%;
    margin-right: 0;
  }
  .p-topcontent04__title{
    font-size: 16px;
  }
}

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

.p-topcontent05_bg{
  background: var(--color-wht);
  margin: 200px 0 100px;
  padding: 1px 0 100px;
}
.p-topcontent05__title_bg{
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -100px;
}
.p-topcontent05__title_bg::after {
  content: "";
  width: 45%;
  height: 3px;
  background: var(--color-sub1);
  position: absolute;
  right: 0;
  bottom: 1em;
  box-shadow: 5px 7px 0 var(--color-sub2);
}
.p-topcontent05__title{
  width: 1em;
  padding: 0.5em 1em;
  display: flex;
  justify-content: center;
}
.p-topcontent05__title .main{
  font-size: 1.5em;
  width: 1em;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
}
.p-topcontent05__title .sub{
  width: 1em;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  font-style: italic;
  line-height: 1.2;
  writing-mode: vertical-rl;
  margin-left: 1em;
}
.p-topcontent05{
  display: flex;
  margin-top: 100px;
}
.p-topcontent05_c1{
  width: 50%;
  height: 0;
  background: center center / cover no-repeat;
  padding-bottom: 30%;
  box-shadow: -90px -80px 0 0 var(--color-main1);
}
.p-topcontent05_c2{
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.p-topcontent05_c2 > .inner{
  width: 80%;
}
.p-topcontent05_c2 > .inner > .link_bg{
  width: 100%;
  margin-top: 5em;
}
.p-topcontent05_c2 > .inner > .link_bg > a{
  margin-left: auto;
}
.p-topcontent05.reverse{
  flex-direction: row-reverse;
}
.p-topcontent05.reverse .p-topcontent05_c1{
  box-shadow: 90px -80px 0 0 var(--color-main1);
}
@media screen and (max-width: 1080px) {
  .p-topcontent05_bg{
    margin: 50px 0;
    padding: 50px 0;
  }
  .p-topcontent05__title_bg{
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 40px;
  }
  .p-topcontent05__title_bg::after {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--color-sub1);
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    box-shadow: 5px 7px 0 var(--color-sub2);
  }
  .p-topcontent05__title{
    width: 100%;
    padding:0;
    display: block;
    padding-bottom: 1em;
  }
  .p-topcontent05__title .main{
    font-size: 1.5em;
    width: auto;
    display: block;
  }
  .p-topcontent05__title .sub{
    width: auto;
    display: block;
    margin-left: 0;
    margin-top: 10px;
    writing-mode: inherit;
  }
  .p-topcontent05_c1{
    box-shadow: -60px -40px 0 0 var(--color-main1);
  }
  .p-topcontent05.reverse .p-topcontent05_c1{
    box-shadow: 60px -40px 0 0 var(--color-main1);
  }
  .p-topcontent05_c2 > .inner{
    width: calc(100% - 40px);
  }
  .p-topcontent05_c2 > .inner > .link_bg{
    margin-top: 1em;
  }
}
@media screen and (max-width: 760px) {
  .p-topcontent05{
    display: block;
    margin-top: 60px;
  }
  .p-topcontent05_c1{
    width: 100%;
    padding-bottom: 60%;
    box-shadow: -20px -20px 0 0 var(--color-main1);
  }
  .p-topcontent05.reverse .p-topcontent05_c1{
    box-shadow: 20px -20px 0 0 var(--color-main1);
  }
  .p-topcontent05_c2{
    width: 100%;
    margin-top: 20px;
  }
  .p-topcontent05__title{
    font-size: 16px;
  }
}


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

.p-topcontent06{
  display: flex;
  flex-wrap: wrap;
}
.p-topcontent06 > li{
  width: calc(100% / 3 - calc(60px / 3));
  margin-right: 20px;
  margin-bottom: 20px;
}
.p-topcontent06 > li:nth-child(3n){
  margin-right: 0;
}
.p-topcontent06 > li > a{
  color: #313131;
}
.p-topcontent06_img{
  background: center center / cover no-repeat;
  width: 100%;
  height: 0;
  padding-bottom: 90%;
  position: relative;
  border-radius: 0 10px 10px 0;
}
.p-topcontent06_img > h3{
  position: absolute;
  left:0;
  bottom: 2em;
  background: url(/img/common/ico_arrow01.png) center right 1em / 2em auto no-repeat  var(--color-wht);
  padding: .5em 4em .5em 1em;
  border-radius: 0 5px 5px 0;
  width: calc(100% - 2em);
}
.p-topcontent06 > li > a > p{
  font-size: .9em;
  padding: 0 1em;
}
@media screen and (max-width: 1080px) {
  .p-topcontent06 > li {
    width: calc(100% / 2 - calc(20px / 2));
  }
  .p-topcontent06 > li:nth-child(3n){
    margin-right: 20px;
  }
  .p-topcontent06 > li:nth-child(2n) {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 560px) {
  .p-topcontent06 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}

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

.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;
  color: #313131;
}
.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-topics > li {
  border-bottom: 1px solid var(--color-blk1);
}
.p-topics.news > li:first-child {
  border-top: 1px solid var(--color-blk1);
}
.p-topics > li > a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-decoration: none;
  padding: 10px 0 20px;
  background: url(/img/common/ico_arrow01.png) bottom calc(1em + 20px) right / 2em  auto no-repeat;
  color: #313131;
}
.p-topics > li > a > .day {
  margin: 10px 20px 0 0;
  color: var(--color-accent2);
}
.p-topics > li > a > .category {
  margin: 10px 20px 0 0;
  color: var(--color-blk3);
  text-align: center;
}
.p-topics > li > a > .category.imp{
  color: var(--color-accent3);
}
.p-topics > li > a > .title {
  width: 100%;
  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%;
  }
}

/*----------------------------------------*/
.p-pageheader{
  background: center center / cover no-repeat;
  padding-bottom: 20%;
  position: relative;
}
.p-pageheader.underlayer{
  padding-bottom: 100px;
}
.p-pageheader_inner{
  background: var(--color-body1);
  padding-left: 90px;
  width: 80%;
}
.p-pagelogo{
  padding: 20px 0;
  border-bottom: 1px solid var(--color-blk3);
}
.p-pagelogo > a{
  display: inline-block;
}
.p-pagelogo img{
  width: 400px;
}
.p-breadcrumb {
  width: 100%;
  padding: 20px 0;
  margin-top: 0px;
  position: relative;
  z-index: 2;
}
.p-breadcrumb__item {
  display: inline;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--color-blk3);
}
.p-breadcrumb__item:not(:last-child):after {
  content: "＞";
  font-weight: 700;
  margin: 0 .5em;
  color: var(--color-blk1);
}
.p-breadcrumb__item a {
  margin-right: 5px;
  font-weight: 700;
}
@media screen and (max-width: 1080px) {
  .p-pageheader{
    margin-top: 60px;
  }
  .p-pageheader.underlayer{
    padding-bottom: 50px;
  }
  .p-pageheader_inner{
    padding-left: 60px;
  }
  .p-pagelogo{
    display: none;
  }
  .p-breadcrumb {
    padding: 20px 0;
  }
}
@media screen and (max-width: 760px) {
  .p-pageheader{
    padding-bottom: 40%;
  }
}
@media screen and (max-width: 560px) {
  .p-pageheader_inner{
    padding-left: 20px;
  }
}

/*----------------------------------------*/
.p-pagetitle{
  overflow: hidden;
  padding-bottom: 20px;
  margin-top: -50px;
}
.p-pagetitle h2{
  background: var(--color-wht);
  font-family: 'Noto Serif JP', serif;
  font-style: italic;
  font-size: 2em;
  font-weight: 400;
  padding: 1em;
  position: relative;
}
.p-pagetitle h2::after{
  content: "";
  width: 150%;
  height: 4px;
  background: var(--color-sub2);
  position: absolute;
  left: 0;
  bottom: -10px;
}
@media screen and (max-width: 560px) {
  .p-pagetitle h2{
    font-size: 1.7em;
  }
}

/*----------------------------------------*/
.p-topics_title{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-decoration: none;
  margin: 20px 0 0 0;
}
.p-topics_title .day {
  margin: 10px 20px 0 0;
  color: var(--color-accent2);
}
.p-topics_title .category {
  margin: 10px 20px 0 0;
  color: var(--color-blk3);
  text-align: center;
}
.p-topics_title .category.imp {
  color: var(--color-accent3);
}



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

/*----------------------------------------*/
.c-btn01{
  border: 1px solid var(--color-blk2);
  border-radius: 0 10px 10px 0;
  padding: 0.2em 5em 0.2em 1em;
  display: block;
  position: relative;
  font-weight: 700;
  background: var(--color-body1);
  text-decoration: none !important;
}
.c-btn01::before{
  content: "";
  background: url(/img/common/ico_arrow01.png) center center / 100% auto no-repeat;
  width: 3em;
  height: 1em;
  position: absolute;
  right: 1em;
  top: .5em;
}
.c-btn01:hover{
  text-decoration: none !important;
  background: var(--color-sub1);
}
.c-btn01.min{
  max-width: 380px;
}
.c-btn01.text{
  max-width: initial;
  width: fit-content;
}
.c-btn01.white{
  background: var(--color-wht);
}
.c-btn01.white:hover{
  background: var(--color-sub1);
}


.c-btn02{
  display: block;
  margin-bottom: 20px;
}
.c-btn02 > div{
  border-left: 4px solid var(--color-sub1);
  border-radius: 0 10px 10px 0;
  overflow: hidden;
}
.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) center right 1em / 2em auto no-repeat var(--color-wht);
  display: block;
  width: 100%;
  padding: .8em 4em .8em 1em;
  font-weight: 700;
  font-size: 1.2em;
}
.c-btn02 > p{
  color: var(--color-main1);
  margin: 1em 0 0 0;
  padding: 0 1em;
  font-size: .9em;
}
.c-btn02:hover{
  text-decoration: none;
}

.c-btn_bg01{
  position: relative;
  padding: 0 50% 10% 0;
}
.c-btn_bg01_img{
  background: url(/img/common/pic_text01.jpg) center center / cover no-repeat;
  width: calc(100% - 40px);
  height:  calc(100% - 40px);
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 1080px) {
  .c-btn_bg01{
    position: relative;
    padding: 0 10% 30% 0;
  }
}


.c-btn03{
  cursor: pointer;
  position: relative;
  background: url(/img/common/ico_arrow01.png) top 1.45em right 1em / 2em auto no-repeat var(--color-wht);
  display: block;
  border-left: 4px solid var(--color-sub1);
  width: 100%;
  padding: .8em 1em .8em 2.5em;
  border-radius: 0 10px 10px 0;
}
.c-btn03 span{
  font-weight: 700;
  font-size: 1.2em;
}
.c-btn03 p{
  color: var(--color-main1);
  transition: all .3s ease;
  font-size: .9em;
}
.c-btn03:hover{
  text-decoration: none;
  opacity: 1;
}
.c-btn03:hover p{
  color: var(--color-blk3);
}

.c-btn04{
  cursor: pointer;
  position: relative;
  background: url(/img/common/ico_arrow01.png) top 1.45em right 1em / 2em auto no-repeat var(--color-wht);
  display: block;
  border-left: 4px solid var(--color-sub1);
  width: 100%;
  padding: 1em 3em 1em 2.5em;
  border-radius: 0 10px 10px 0;
  font-weight: 700;
  font-size: 1.2em;
}
.c-btn04:hover{
  text-decoration: none;
}

.c-btn05{
  cursor: pointer;
  position: relative;
  background: url(/img/common/ico_arrow10.png) bottom 1.45em right 1em / 1em auto no-repeat;
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  height: 100%;
  padding: 1em 2.5em 1em 1em;
  border-right: 1px solid var(--color-blk2);
  border-bottom: 1px solid var(--color-blk2);
  border-radius: 0 0 10px 0;
  font-weight: 700;
}

.c-btn05_2{
  cursor: pointer;
  position: relative;
  background: url(/img/common/ico_arrow10.png) top -2px left / 1em auto no-repeat;
  display: block;
  flex-direction: column-reverse;
  width: 100%;
  height: 100%;
  padding: 0 0 0 1.5em;
  border-radius: 0 0 10px 0;
  font-weight: 700;
  font-size: 14px;
}

.c-btn06{
  border-radius: 0 10px 10px 0;
  padding: 0.2em 5em 0.2em 1em;
  display: block;
  position: relative;
  font-weight: 700;
  background: var(--color-body1);
}
.c-btn06::after{
  content: "";
  background: url(/img/common/ico_arrow01.png) center center / 100% auto no-repeat;
  width: 3em;
  height: 1em;
  position: absolute;
  right: 1em;
  top: .5em;
}
.c-btn06:hover{
  text-decoration: none;
}

.c-btn07{
  border-radius: 10px 0 0 10px;
  padding: 0.2em 1em 0.2em 5em;
  display: block;
  position: relative;
  font-weight: 700;
  background: var(--color-wht);
  text-align: right;
}
.c-btn07::after{
  content: "";
  background: url(/img/common/ico_arrow01.png) center center / 100% auto no-repeat;
  width: 3em;
  height: 1em;
  position: absolute;
  left: 1em;
  top: .5em;
  transform: scale(-1 , 1);
}
.c-btn07:hover{
  text-decoration: none;
}



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

.c-layer_link01_bg{
  background: var(--color-blk4);
  padding: 20px 0 0 20px;
  box-shadow: 500px 0 0 0 var(--color-blk4);
}
.c-layer_link01{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.c-layer_link01 > li {
  width: calc((100% / 3) * 2);
}
.c-layer_link01 > li:first-child {
  width: calc((100% / 3) - 20px);
  margin-right: 20px;
}
.c-layer_link01 > li > ul {
  display: flex;
  flex-wrap: wrap;
}
.c-layer_link01 > li > ul > li {
  width: calc((100% / 2) - 20px);
  margin-bottom: 20px;
  margin-right: 20px;
}
.c-layer_link01 > li > ul > li > .c-btn06 {
  font-weight: 400;
}

@media screen and (max-width: 1080px) {
  .c-layer_link01_bg{
    width: 100%;
  }
  .c-layer_link01 > li {
    width: 100%;
  }
  .c-layer_link01 > li:first-child{
    width: 100%;
    margin-bottom: 1em;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-blk2);
  }
}
@media screen and (max-width: 560px) {
  .c-layer_link01 > li > ul > li{
    width: calc((100%) - 20px);
    margin-bottom: 20px;
    margin-right: 0;
  }
}



/*----------------------------------------*/
.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: 1em;
  border: 1px solid var(--color-blk2);
}
.c-box01 p{
  margin: 0;
}


/*----------------------------------------*/
.c-title01{
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  padding: 0 0 15px 20px;
  border-bottom: 2px solid var(--color-sub2);
}
.c-title01::after{
  content: "";
  width: 4px;
  height: 100%;
  background: var(--color-sub2);
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: -8px -5px 0 0 var(--color-sub1);
}

.c-title02{
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  padding: 0 0 15px 20px;
  border-bottom: 2px solid var(--color-sub2);
  color: var(--color-sub2);
}
.c-title03{
  font-size: 1.3em;
  font-weight: 700;
  padding: .5em 20px;
  margin: 1em 0;
  position: relative;
  background: var(--color-sub1);
}
.c-title04{
  font-size: 1.2em;
  font-weight: 700;
  padding-left: .5em;
  margin: 1em 0;
  position: relative;
  border-left: 10px solid var(--color-sub1);
}
.c-title05{
  font-size: 1.1em;
  font-weight: 700;
  margin: 1em 0;
  position: relative;
}

/*----------------------------------------*/
.c-ul_disc {
  list-style: none;
}
.c-ul_disc > li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
}
.c-ul_disc > li:last-child {
  margin-bottom: 0;
}
.c-ul_disc > li::before {
  content: "";
  width: 5px;
  height: 3px;
  background: var(--color-main1);
  position: absolute;
  top: 0.8em;
  left: 0.3em;
}
.c-ul_number {
  list-style: decimal;
  padding-left: 1em;
}
.c-ul_number > li {
  margin-bottom: 0.5em;
}
.c-ul_number > li:last-child {
  margin-bottom: 0;
}
.c-ul_number > li::marker {
  color: var(--color-main1);
}

.c-ul_number.m0 > li {
  margin-bottom: 0;
}

/*----------------------------------------*/
.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-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-table01 th,
.c-table01 td{
  border: 1px solid var(--color-blk1);
  padding: .5em;
  vertical-align: middle;
}
.c-table01 th{
  background: var(--color-sub1);
}

.c-table01.thw01 th{
  width: 210px;
}
@media screen and (max-width: 660px) {
  .c-table01.thw01 th{
    width: auto;
  }
}


/*----------------------------------------*/
.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-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%;
}

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

.c-text01_bg{
  position: relative;
  overflow: hidden;
}
.c-text01_img{
  width: 55%;
}
.c-text01{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: var(--color-wht);
  width: 60%;
  height: fit-content;
  padding: 40px;
  border-radius: 10px;
}
.c-text01 > h3{
  margin: 0;
}
.c-text01 > h4{
  margin: 0;
  border-top: 1px solid var(--color-blk2);
  padding-top: 1em;
}
.c-text01 > p{
  font-size: 0.85em;
  margin: 1rem 0;
}
@media screen and (max-width: 1440px) {
  .c-text01_img{
    width: 100%;
    margin-top: -5%;
  }
  .c-text01{
    width: 90%;
    position: relative !important;
    margin-top: -20%;
  }
}
@media screen and (max-width: 660px) {
  .c-text01_img{
    margin-top: 0;
  }
  .c-text01{
    width: 100%;
    margin-top: 0;
    border-radius: 0;
    padding: 40px 20px;
  }
}

.c-text01_bg.reverse .c-text01_img{
  margin-left: auto;
  margin-right: 0;
}
.c-text01_bg.reverse .c-text01{
  position: absolute;
  right: initial;
  left: 0;
}


.p-interview_table{
  width: 100%;
  table-layout: fixed;
}
.p-interview_table th,
.p-interview_table td{
  border: 1px solid var(--color-blk2);
  text-align: center;
  padding: 0.4em 1em;
}

.p-interview_table .one > td{
  width: 3em;
}
.p-interview_table th{
  background: #65aadd;
  color: #FFF;
}
.p-interview_table td{
  border: 1px solid var(--color-blk2);
}
.p-interview_table .jissyu{
  background: #fffbc7;
}
.jissyu_ico{
  display: inline-block;
  width: 1em;
  height: 1em;
  background: #fffbc7;
  border: 1px solid var(--color-blk3);
  vertical-align: middle;
  margin-top: -0.2em;
  margin-right: .3em;
}

@media screen and (max-width: 660px) {
  .c-table-sp-scroll{
    overflow-x: auto;
  }
  .c-table-sp-scroll table{
    width: 1000px;
  }
}


/*====================================================================
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;}
}
@media screen and (max-width: 1080px) {
  .u-spbr{
    display: none;
  }
}

.u-sp_only01{ display: none !important;}
.u-sp_only02{ display: none !important;}
@media screen and (max-width: 1080px) {
  .u-pc_only01{ display: none !important;}
  .u-sp_only01{ display: block !important;}
}
@media screen and (max-width: 560px) {
  .u-pc_only02{display: none !important;}
  .u-sp_only02{ display: block !important;}
}

.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-accent1) !important;}
.u-fntcolor--accent2 {color: var(--color-accent2) !important;}
.u-fntcolor--accent3 {color: var(--color-accent3) !important;}
.u-fntcolor--accent4 {color: var(--color-accent4) !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-wauto {  width: auto !important;}
/*----------------------------------------*/
.u-kadomaru01{border-radius: 10px;}
.u-kadomaru02{border-radius: 20px;}
/*----------------------------------------*/
.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-dp-blk{display: block !important;}
.u-dp-iblk{display: inline-block !important;}
/*----------------------------------------*/
.u-indent01{
  padding-left: 1em;
  text-indent: -1em;
}
/*----------------------------------------*/
.u-bgcolor01{
  background-color: #edede7 !important;
}


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

#topics_page{
  margin-top: -50px;
}

#topics_page h1,
#topics_page h2{
  font-size: 1.5em;
  font-weight: 700;
  position: relative;
  padding: 0 0 15px 20px;
  border-bottom: 2px solid var(--color-sub2);
}
#topics_page h1::after,
#topics_page h2::after{
  content: "";
  width: 4px;
  height: 100%;
  background: var(--color-sub2);
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: -8px -5px 0 0 var(--color-sub1);
}
#topics_page h3{
  font-size: 1.5em;
  font-weight: 700;
  position: relative;
  padding: 0 0 15px 20px;
  border-bottom: 2px solid var(--color-sub2);
  color: var(--color-sub2);
}
#topics_page h4{
  font-size: 1.5em;
  font-weight: 700;
  padding: .5em 20px;
  position: relative;
  background: var(--color-sub1);
}
#topics_page h5{
  font-size: 1.5em;
  font-weight: 700;
  padding-left: .5em;
  position: relative;
  border-left: 10px solid var(--color-sub1);
}
#topics_page h6{
  font-size: 1.5em;
  font-weight: 700;
  position: relative;
  margin: 40px auto 20px;
}


#topics_page h1,
#topics_page h2{
  margin-top: 100px;
  margin-bottom: 20px;
}

#topics_page h3,
#topics_page h4,
#topics_page h5,
#topics_page h6{
  margin-top: 40px;
  margin-bottom: 20px;
}

#topics_page > h1:first-child,
#topics_page > h2:first-child,
#topics_page > h3:first-child,
#topics_page > h4:first-child,
#topics_page > h5:first-child,
#topics_page > h6:first-child{
  margin-top: 0;
}

#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 {
  content: "";
  width: 5px;
  height: 3px;
  background: var(--color-main1);
  position: absolute;
  top: 0.8em;
  left: 0.3em;
}
#topics_page ol{
  list-style: decimal;
  padding-left: 1em;
  margin: 20px auto;
}
#topics_page ol li{
  margin-bottom: 0.5em;
}
#topics_page ol li::marker {
  color: var(--color-main1);
}
#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;
}
#topics_page a.c-btn01{
  text-decoration: none;
}



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

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

/*====================================================================
追加
====================================================================*/
.u-w40p { width: 40%; }
.u-w48p { width: 48%; }
.u-w7em { width: 7em; }
.u-w10em { width: 10em; }

@media screen and (max-width: 760px) {
	.u-w100p--tab { width: 100%; }
}

.u-right { text-align: right;}
.u-left { text-align: left;}

.c-table01--vtop th,
.c-table01--vtop td { 
	vertical-align: top;
}
@media screen and (max-width: 760px) {
.c-table--blk th,
.c-table--blk td {
	display: block;
	width: 100%!important;
	margin-top: -1px;
}
}

.p-video iframe {
	aspect-ratio: 16 / 9;
	height: auto!important;
	width: 100%!important;
}


/*---------- 学部・大学院・附属病院 ----------*/
.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);
}
@media screen and (max-width: 1080px)  {
  .p-feature_img > a:hover figure {
    transform: scale(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;
  }
}
.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;
  }
}

.p-campus_box01 {
  background-color: var(--color-blk4);
  padding: 5px 20px;
  margin-top: 30px;
  display: flex;
}

.p-campus_box01 .p-campus_box01__ico {
  margin-left: 40px;
}

@media screen and (max-width: 780px) {
  .p-campus_box01 {
    display: block;
  }

  .p-campus_box01 .p-campus_box01__ico {
    margin-left: 0;
  }
}

/*====================================================================
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)){
    width: calc(100% - (60px * 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: none;
  margin-top: 20px;
}
.article_area ul:not([class]) > li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
}
.article_area ul:not([class]) > li:last-child {
  margin-bottom: 0;
}
.article_area ul:not([class]) > li::before {
  content: "";
  width: 5px;
  height: 3px;
  background: var(--color-main1);
  position: absolute;
  top: 0.8em;
  left: 0.3em;
}
.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:last-child {
  margin-bottom: 0;
}
.article_area ol:not([class]) > li::marker {
  color: var(--color-main1);
}