@charset "UTF-8";

/*---------------------------------
root
-----------------------------------*/
:root {
  --color-base: #fafafa;/*メインの背景色*/
  --color-area: #008ac8;/*エリアカテゴリのテキストとアイコン色*/
  --color-theme: #008ac8;/*テーマカテゴリのテキストとアイコン色*/
  --color-gold: #008ac8;/*メイン背景色に使用するテキストとアイコン色*/
  --color-bg-base: #fafafa;/*エリアカテゴリのテキストとアイコン色*/
  --color-bg-sub: #f5fafd;/*テーマカテゴリのテキストとアイコン色*/
  --color-gray: #EEEEEE;
  --color-black: #333333;
  --color-darkgray: #808080;
  --color-font-gray: #666666;
}

/*カラー*/
.color-area{
	color:var(--color-area);
}

.color-theme{
	color:var(--color-theme);
}

.color-gold{
	color:var(--color-gold);
}

/*NotoSansJP*/
@font-face {
  font-family: 'notosansjp';
  src: url("../fonts/NotoSansJP-Bold.woff") format('woff');
  font-weight: 700;
  font-display: swap;
}


/*---------------------------------
html,body
-----------------------------------*/
.grecaptcha-badge { visibility: hidden; }

/* ルートのフォントサイズを10px相当に設定（デフォルト16pxの62.5%） */
html {
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  box-sizing: border-box;
  margin-top: 0px !important;
  font-size: 1.6rem; /* 16px */
  line-height: 1.65;
  text-spacing-trim: space-all;
}

.fonts-noto{
    font-family: "notosansjp", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	font-weight: bold;
}

@media (max-width: 1024px){
  body {
    font-size: 1.4rem;
  }
}

.pc-none{
	display: none;
}

.sp-none{
	display: block;
}

@media (max-width: 1024px){
  .pc-none{
      display: block;
  }
	
  .sp-none{
	  display: none;
  }
}


/*各要素*/
li{
	list-style: none;
}

img {
  max-width: 100%;  /* 親要素より大きくならない */
  height: auto;      /* 縦横比を保持 */
  display: block;    /* 余計な隙間を消す */
}

.bold{
	font-weight: bold;
}

.center{
	margin: 0 auto;
}

.tx-center{
	text-align: center;
}


/*幅 */
.main-in {
  max-width: 1240px;
}

.sub-in{
  max-width: 1145px;
}

@media (max-width: 1240px) {
  .main-in {
    max-width: 90%;
  }
    
  .sub-in{
    max-width: 90%;
  }    
    
}


/* フォントサイズ */
.h-fv{
	font-size: 4.2rem;
}

.h-primary{
	font-size: 3.2rem;
}

.h-secondary{
	font-size: 2.4rem;	
}

.h-tertiary{
	font-size: 1.8rem;	
}

.h-small{
	font-size: 1.2rem;	
}

.sub-tx{
	font-size: 1.4rem;
}

.small-tx{
	font-size: 1.2rem;
}


@media (max-width: 1024px){
    .h-fv{
        font-size: 3.0rem;
    }

    .h-primary{
        font-size: 2.4rem;
    }

    .h-secondary{
        font-size: 1.8rem;
    }

    .h-tertiary{
        font-size: 1.4rem;
    }

    .h-small{
        font-size: 1.2rem;
    }

    .sub-tx{
        font-size: 1.4rem;
    }

    .small-tx{
        font-size: 1.2rem;
    }
}

.index-h-sub{
	padding-bottom: 2rem;
	margin-bottom: 3rem;
	position: relative;
}

.index-h-sub::after{
	content: "";
	position: absolute;
	border-radius: 0.2rem;
	width: 2rem;
	height: 2px;
	bottom: 0px;
	left: calc(50% - 1rem);
}

.index-h-sub.area::after{
	background: var(--color-area);
}

.index-h-sub.theme::after{
	background: var(--color-theme);
}

@media(max-width: 768px){
    .index-h p{
        text-align: left;
    }
}


/* 余白 */
.mb-05{
	margin-bottom: 0.5rem;	
}

.mb-10{
	margin-bottom: 1rem;	
}

.mb-20{
	margin-bottom: 2rem;	
}

.mb-30{
	margin-bottom: 3rem;	
}

.mb-40{
	margin-bottom: 4rem;	
}

.mb-50{
	margin-bottom: 5rem;	
}

.mb-60{
	margin-bottom: 6rem;	
}

.mb-70{
	margin-bottom: 7rem;	
}

.mb-80{
	margin-bottom: 8rem;	
}


@media(max-width: 1024px){
     .mb-05 {
        margin-bottom: 0.5rem;
    }

    .mb-10 {
        margin-bottom: 1rem;
    }

    .mb-20 {
        margin-bottom: 1.5rem;
    }

    .mb-30 {
        margin-bottom: 2rem;
    }

    .mb-40 {
        margin-bottom: 2.5rem;
    }

    .mb-50 {
        margin-bottom: 3rem;
    }

    .mb-60 {
        margin-bottom: 3.5rem;
    }

    .mb-70 {
        margin-bottom: 4rem;
    }

    .mb-80 {
        margin-bottom: 4.5rem;
    }
}

/*各要素*/
section{
	padding: 6rem 0 8rem;
}

.link a{
	text-decoration: underline;
}

.link-btn a{
	display: inline-block;
    padding-bottom: 0.2rem;
	border-bottom: 1px solid var(--color-black);
}

.logo{
	font-size: 2.6rem;
}

.en{
	font-size: 1.8rem;
	display: block;
}

.icon{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	position: relative;
}

.icon.left{
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	-ms-justify-content: flex-start;
	-o-justify-content: flex-start;
	justify-content: flex-start;
}

.icon.link::after{
  content: "";
  display: inline-block;
  width: 6px;
  height: 8px;
  margin-left: 1rem;
  background-image: url('../img/icon-link.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  top: -2px;
}

.icon.link-back::before{
  content: "";
  display: inline-block;
  width: 6px;
  height: 8px;
  margin-right: 1rem;
  background-image: url('../img/icon-link.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  top: -2px;
  transform: scaleX(-1);
  transform-origin: center;
}

.icon.top::before{
  content: "";
  display: inline-block;
  width: 20px;
  height: 13px;
  margin-right: 1rem;
  background-image: url('../img/icon-top.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.icon.area::before{
  content: "";
  display: inline-block;
  width: 22px;
  height: 27px;
  margin-right: 1rem;
  background-image: url('../img/icon-area.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.icon.area-sub::before{
  content: "";
  display: inline-block;
  width: 18px;
  height: 22px;
  margin-right: 0.5rem;
  background-image: url('../img/icon-area-border.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.icon.theme-sub::before{
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 0.5rem;
  background-image: url('../img/icon-theme-border.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  top: 3px;
}

.icon.targetblank::after{
  content: "";
  display: inline-block;
  width: 14px;
  height: 12px;
  margin-left: 0.6rem;
  background-image: url('../img/icon-targetblank.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  top: 1px;
}

.icon.targetblank.white::after{
  content: "";
  display: inline-block;
  width: 14px;
  height: 12px;
  margin-left: 0.6rem;
  background-image: url('../img/icon-targetblank-white.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  top: 1px;
}


.post-type-archive .icon.theme-sub::before{
	top: 0px;
}

.archive .icon.theme-sub::before{
	top: 0px;
}

.icon.area.mini::before{
  width: 11px;
  height: 14px;
}

.icon.theme::before{
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 1rem;
  background-image: url('../img/icon-theme.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.icon.theme.mini::before{
  width: 14px;
  height: 14px;
}

.icon.logo::before{
  content: "";
  display: inline-block;
  width: 28px;
  height: 31px;
  margin-right: 1rem;
  background-image: url('../img/icon-logo.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-under{
	width: 12px;
	height: auto;
}

/*他*/
.return-top-btn{
	display: none;
	position: fixed;
	width: 50px;
	height: 50px;
	right: 25px;
	bottom: 25px;
	cursor: pointer;
}

.return-top-btn img:hover{
	cursor: pointer;
}

@media (max-width: 1024px){
    
    section {
        padding: 4rem 0 6rem;
    }    
    
    .en{
        font-size: 1.4rem;
    }
    
    .logo{
        font-size: 1.8rem;
        text-align: center;
    }    
    
    .return-top-btn{
        display: none;
        position: fixed;
        width: 40px;
        height: 40px;
        right: 15px;
        bottom: 15px;
        cursor: pointer;
    }
    
    .icon.link::after{
      width: 6px;
      height: 8px;
      margin-left: 1rem;
      top: -2px;
    }

    .icon.link-back::before{
      width: 6px;
      height: 8px;
      margin-right: 1rem;
      top: -2px;
    }

    .icon.top::before{
      width: 14px;
      height: 7px;
      margin-right: 0.3rem;
    }

    .icon.area::before{
      width: 16px;
      height: 21px;
      margin-right: 0.6rem;
    }

    .icon.area-sub::before{
      width: 12px;
      height: 16px;
      margin-right: 0.3rem;
    }

    .icon.theme-sub::before{
      width: 11px;
      height: 11px;
      margin-right: 0.3rem;
      top: 3px;
    }

    .icon.theme::before{
      width: 16px;
      height: 16px;
      margin-right: 0.6rem;
    }

    .icon.news::before{
      width: 11px;
      height: 16px;
      margin-right: 0.6rem;
    }
    
    .icon.targetblank::after{
      width: 12px;
      height: 10px;
      margin-left: 0.6rem;
    }    
 
    
    
}

/*----------
ヘッダー
----------*/
header{
	padding: 3rem 0;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
	position: fixed;
	background: #ffffff;
	width: 100%;
	z-index: 100;
}

.header-in{
	max-width: 90%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
}

.header-nav{
	margin-left: auto;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	gap: 0 4rem;
	position: relative;
	padding-right: 7rem;
}

.nav-btn a{
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--color-gray);
}

.nav-btn.area a:hover{
	cursor: pointer;
	border-bottom: 2px solid var(--color-area)
}

.nav-btn.theme a:hover{
	cursor: pointer;
	border-bottom: 2px solid var(--color-theme)
}

.menu {
    display: block;
    width: 100%;
    position: absolute;
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 0px 0px 2rem 2rem;
    opacity: 0; 
    pointer-events: none;
    transition: top 0.4s ease-out, opacity 0.4s ease-out;
	z-index: 0;
}

.menu.active {
    opacity: 1;
    pointer-events: auto;
}


.menu-list{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	gap: 0 4rem;
}

.menu-item{
	width: 30%;
	border: 2px solid var(--color-black);
	background: #ffffff;
	border-radius: 2rem;
	padding: 3rem;
}

.menu-item span.area{
	padding-bottom: 1rem;
	margin-bottom: 1.5rem;
	border-bottom: 2px solid var(--color-area);
}

.menu-item span.theme{
	padding-bottom: 1rem;
	margin-bottom: 1.5rem;
	border-bottom: 2px solid var(--color-theme);
}

.menu-item ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
    gap: 0.65rem 0;
}

.menu-item ul li{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
}

.menu-item ul li::after{
	content: "／";
	display: block;
}

.menu-other ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	color: #ffffff;
	padding-top: 4rem;
	margin-top: 5rem;
	border-top: 1px solid #ffffff;
	gap: 0 2rem;
}

/*menu-btn*/
.menu-btn {
    position: absolute;
    width: 26px;
    height: 18px;
    border-radius: 5px;
    z-index: 9999;
    top: 6px;
    right: 0;
    transition: all .4s;
}

.menu-btn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-black);
    width: 100%;
}

.menu-btn span:nth-of-type(1) {
    top: 0px;
}

.menu-btn span:nth-of-type(2) {
    top: 8px;
}

.menu-btn span:nth-of-type(3) {
    top: 16px;
}

.menu-btn.active span:nth-of-type(1) {
    top: 3px;
    transform: translateY(6px) rotate(-45deg);
}

.menu-btn.active span:nth-of-type(2) {
    opacity: 0;
}

.menu-btn.active span:nth-of-type(3) {
    top: 15px;
    transform: translateY(-6px) rotate(45deg);
}

.menu-btn:hover {
    cursor: pointer;
}

.sp-nav {
    position: fixed;
    top: -100vh;
    left: 0px;
    height: 100vh;
    width: 100%;
    padding: 130px 36px 100px;
    box-sizing: border-box;
    background: var(--color-black);
    z-index: 9980;
    transition: all .6s;
    text-align: left;
    opacity: 0;
    overflow: auto;
}

.sp-nav.active {
    top: 0px;
    transition: all .6s;
    opacity: 1;
}

.sp-nav-list ul li{
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 20px;
}

.sp-nav-list ul li:last-child{
    padding-bottom: 0px;
}

@media(max-width: 1024px){
    header{
        padding: 2rem 0;
    }
    
    .menu{
        height: 100vh;
    }
    
    .menu.active {
        overflow: scroll;
        height: 100vh;
        padding: 4rem 0 20rem;
        box-sizing: border-box;
    }
    
    .menu-list{
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        -ms-align-items: center;
        align-items: center;
        gap: 2rem;
    }
    
    .menu-item{
        width: 90%;
    }
    
    .menu-btn{
        top: -9px;
    }
    
    .header-nav-sp{
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        -webkit-display: flex;
        -moz-display: flex;
        -ms-display: flex;
        -o-display: flex;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        -ms-align-items: center;
        align-items: center;
        margin-bottom: 3rem;
        gap: 2rem 0;
    }
    
    .nav-btn{
        color: #ffffff;
        width: 90%;
    }
    
    .nav-btn a{
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .nav-btn.area a:hover {
        cursor: pointer;
        border-bottom: none;
    }    
    
    .nav-btn.theme a:hover {
        cursor: pointer;
        border-bottom: none;
    }
	
    .menu-other ul{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		gap: 1rem;
    }
	
    
}



/*----------
パンくず
----------*/
.breadcrumb{
	padding: 2rem;
	background: var(--color-bg-base)
}

@media(max-width: 1024px){
    .breadcrumb{
        padding: 1.6rem 1rem;
    }

    .yoast-breadcrumb {
        width: 100%;
        overflow: scroll;
        position: relative;
    }

    .yoast-breadcrumb > span{
        display: inline-block;
        width: 100%;
        white-space: nowrap;
    }    
    
}

/*----------
FV
----------*/
.fv{
	background: var(--color-bg-base);
}

.fv-ov{
	line-height: 2;
}

.fv-select{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	column-gap: 3rem;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.fv-select-btn{
	width: 30%;
	padding: 1.4rem 0;
	border: solid 3px;
	border-radius: 2rem;
	background: #ffffff;
}

.fv-select-btn:hover{
	cursor: pointer;
}

.fv-select-btn.area{
	border-color: var(--color-area);
}

.fv-select-btn.theme{
	border-color: var(--color-theme);
}

/*slider-fv*/
.slider-fv-item {
    width: 680px;
    height: auto;
    margin: 0 4rem;
    border-radius: 2rem;
    overflow: hidden;
    border: 2px solid var(--color-black);
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
    justify-content: center;
	position: relative;
}

.slider-fv-item span{
	position: absolute;
	background: var(--color-black);
	padding: 1rem 1rem;
	display: inline-block;
	position: absolute;
	color: #ffffff;
	border-radius: 0 0 1rem 0;
}

.slider-fv-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-fv-tx{
	width: 100%;
	min-height: 100px;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 2rem 4rem;
	background: rgba(0, 0, 0, 0.75);
	z-index: 10;
	color: #ffffff;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

/*slick上書き*/
.slick-prev, .slick-next{
	width: 6rem;
	height: 6rem;
}

.slick-prev {
    left: calc(50% - 370px);
    z-index: 10;
}

.slick-next {
    right: calc(50% - 370px);
    z-index: 10;
}

.slick-prev:before,.slick-next:before {
    content: none;
}

.slick-dots {
    bottom: -5rem;
}

@media (max-width: 1024px) {
    .slider-fv-item span{
        padding: 0.8rem;
    }
    
    .fv-select{
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        gap: 1.8rem 0;
    }
    
    .fv-select-btn{
        width: 90%;
        margin: 0 auto;
    }
    
    .slider-fv-item {
        width: 82vw;
        min-height: 250px;
        margin: 0 1rem;
    }
    
    .slider-fv-item img {
        min-height: 250px;
    }
    
    .slick-prev {
        left: calc(50% - 41vw - 2rem);
        z-index: 10;
    }

    .slick-next {
        right: calc(50% - 41vw - 2rem);
        z-index: 10;
    }

    .slick-prev, .slick-next{
        width: 4rem;
        height: 4rem;
    }
    
    .slider-fv-tx{
        min-height: auto;
        padding: 1rem 2rem;
        min-height: 68px;
    }
    
    
    
}

/*----------
index - エリア別で探す
----------*/
.slider-area .slick-list{
	height: 274px !important;
}

.slider-area-item {
    width: 600px;
    height: 270px;
    margin: 0 2rem;
    border-radius: 2rem;
    border: 2px solid var(--color-black);
	position: relative;
}

.slider-area-item::after{
	content: "";
	display: block;
    width: 600px;
    height: 270px;
	background: var(--color-black);
	position: absolute;
	left: 2px;
	bottom: -5px;
    border-radius: 2rem;
	z-index: -10;
}

.slider-area-item:hover{
	cursor: pointer;
}

.slider-area-item{
	display: -webkit-flex !important;
	display: -moz-flex !important;
	display: -ms-flex !important;
	display: -o-flex !important;
	-webkit-display: flex !important;
	-moz-display: flex !important;
	-ms-display: flex !important;
	-o-display: flex !important;
	display: flex !important;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
	padding: 4rem;
	gap: 0 4rem;
	border: 2px solid var(--color-black);
	border-radius: 2rem;
	background: #ffffff;
}

.slider-area-item-ov{
	max-width: 200px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}

.slider-area-item-ov time{
	margin-top: auto;
}

.slider-area-item-ov h4{
    min-height: 7rem;
}

.slider-area-item-img{
	max-height: 189px;
	overflow: hidden;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
    justify-content: center;
	position: relative;
	border-radius: 1rem;
}

.slider-area-item-img img{
	display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width:768px){
    
    .slider-area .slick-list{
        min-height: 318px;
    }
    
    .slider-area-item {
        width: 80vw;
        height: 100%;
        min-height: 284px;
        margin: 0 1rem;
        padding: 2rem;
        -webkit-flex-direction: column-reverse;
        -moz-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        -o-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 1rem 1rem;
    }
        
    .slider-area-item::after {
        width: 80vw;
        height: 100%;
        left: 2px;
        bottom: -5px;
    }
    
    .slider-area-item-ov{
        width: 100%;
        max-width: 100%;
    }
    
    .slider-area-item-img{
        min-height: 120px;
        max-height: 120px;
    }
    
    
}


/*----------
index - テーマ別で探す
----------*/
.index-theme-wrap{
	background: var(--color-bg-sub);
	padding: 6rem 0 8rem;
}

.theme-list{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
	gap: 3rem 3rem;
}

.theme-item{
	width: calc(25% - 3rem * 3 / 4);
	border-radius: 2rem;
	overflow: hidden;
	border: 2px solid var(--color-black);
	min-height: 323px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}

.theme-item-img{
	max-height: 157px;
	overflow: hidden;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
    justify-content: center;
	position: relative;
}

.theme-item img{
	display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.theme-item:last-child{
	margin-right: auto;
}

.theme-item-ov{
	padding: 1.5rem 2rem 2rem;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	max-height: 168px;
	height: 100%;
}

.theme-item-ov span{
	display: inline-block;
	margin-bottom: 1rem;
}

.theme-item-ov time{
	margin-top: auto;
}

@media(max-width: 1024px){
    .index-theme-wrap{
        padding: 4rem 0 6rem;
    }
    
    .theme-list{
        gap: 1.4rem 1.4rem;
    }
    
    .theme-item {
        width: calc(50% - 1.4rem* 1 / 2);
        min-height: auto;
    }
    
    .theme-item-ov{
        padding: 1rem;
    }
    
    .theme-item-img{
        max-height: 100%;
        min-height: 120px;
    }
}


/*----------
エリア別・テーマ別　共通
----------*/
.cat-list{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	row-gap: 3rem;
}

.cat-item{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

.cat-parent{
	width: 17%
}

.cat-child{
	width: 83%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 1rem;
}

.cat-child li{
	min-width: 11rem;
	border: 2px solid;
	border-radius: 3rem;
	background: #ffffff;
	overflow: hidden;
}

.cat-child li:has(span) {
	border-color: var(--color-darkgray) !important;
}

.cat-child span{
	display: inline-block;
	padding: 1rem 0.5rem;
	color: var(--color-font-gray);
}

.cat-child a{
	display: inline-block;
	width: 100%;
	padding: 1rem 0.5rem;
	text-decoration: underline;
}

.cat-list.area .cat-child li{
	border-color: var(--color-area);
}

.cat-list.theme .cat-child li{
	border-color: var(--color-theme);
}

.cat-list.area .cat-child li a:hover{
	background: var(--color-area);
	color: #ffffff;
}

.cat-list.theme .cat-child li a:hover{
	background: var(--color-theme);
	color: #ffffff;
}

.cat-pickup{
	padding: 4rem 0;
	border-top: 1px dotted var(--color-area);
	border-bottom: 1px dotted var(--color-area);
}

.cat-pickup .cat-child li{
	padding: 0px;
	border: none;
}

.cat-pickup .cat-child li a{
	width: auto;
}

.cat-pickup .cat-child li a:hover{
	background: none !important;
	color: #111111 !important;
}


@media(max-width:1240px){
    .cat-list{
        gap: 3.8rem 0;
    }
    
    .cat-item{
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    
    .cat-parent {
        width: 100%;
        margin-bottom: 1.2rem;
    }

    .cat-child {
        width: 100%;
    }
    
    .cat-child li{
        min-width: 6.4rem;
    }
    
    .cat-child li span{
        padding: 0.5rem 1rem;
    }

    .cat-child li a{
        padding: 0.5rem 1rem;
    }
        
}


/*----------
index - お知らせ
----------*/
.index-news{
	border-top: 2px dotted var(--color-gold);
}

.news-list{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 2rem;
}

.news-item{
	width: calc(50% - 2rem * 1 / 2 );
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	border: 2px solid var(--color-black);
	padding: 1.5rem 2rem;
	border-radius: 1rem;
	gap: 0 1.5rem;
}

.news-item span{
	padding: 0.5rem 1rem;
	background: var(--color-base);
}

.news-cat{
	display: inline-block;
	padding: 0.5rem 1rem;
	background: var(--color-base);
}

@media(max-width: 1024px){
    .news-item {
      width: 100%;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -o-flex-wrap: wrap;
      flex-wrap: wrap;
      border: 2px solid var(--color-black);
      padding: 1.5rem 2rem;
      gap: 0 1rem;
    }

    .news-item p{
      display: inline-block;
      margin-top: 1rem;
      width: 100%;
    }

  }



  /*----------
  記事一覧
  ----------*/
  .article-list{
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      -webkit-display: flex;
      -moz-display: flex;
      -ms-display: flex;
      -o-display: flex;
      display: flex;
      -webkit-justify-content: flex-start;
      -moz-justify-content: flex-start;
      -ms-justify-content: flex-start;
      -o-justify-content: flex-start;
      justify-content: flex-start;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 3rem 0;
}

.article-item{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	width: 100%;
	gap: 0 4rem;
	border: 2px solid var(--color-black);
	border-radius: 2rem; 
	padding: 4rem;
}

.article-item-ov{
	min-width: 400px;
	max-width: 400px;
}

.article-item-ov.news{
	min-width: 100%;
	max-width: 100%;
}

.article-item-img{
	max-height: 189px;
	border-radius: 1rem;
	overflow: hidden;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
    justify-content: center;
	position: relative;
}

.article-item-img img{
    object-fit: cover;
}

@media(max-width: 1240px){
    .article-list{
        gap: 2rem 0;
    }
    
    .article-item{
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 2rem;
        -webkit-flex-direction: column-reverse;
        -moz-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        -o-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 1rem 1rem;        
    }
    
    .article-item-ov {
        min-width: 100%;
        max-width: 100%;
    }    
    
}

/*----------
フッター
----------*/
footer{
	background: var(--color-bg-base);
	padding: 5rem 0 10rem;
	margin-top: 12rem;
}

.footer-in{
	max-width: 1240px;
}

.footer-cat{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	padding: 4rem 0;
	background: #ffffff;
	border-radius: 2rem;
}

.footer-cat-list{
	width: 50%;
	padding: 0 4rem;
}

.footer-cat-list:first-child{
	border-right: 1px solid var(--color-gold);
}

.footer-cat-list ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
    gap: 0.65rem 0;
}

.footer-cat-list ul li{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
}

.footer-cat-list ul li::after{
	content: "／";
	display: block;
}

.footer-line{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	padding-top: 3rem;
	margin-top: 6rem;
	border-top: solid 1px var(--color-black);
}

.footer-col-other{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}

.footer-col-link ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
}

.footer-col-link ul li+li{
	margin-left: 20px;
}

@media (max-width: 1240px) {
    .footer-in {
        max-width: 90%;
    }

    .footer-col-link ul{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		gap: 1rem;
    }

    .footer-col-link ul li+li{
        margin-left: 0px;
    }	
	
}

@media (max-width: 1024px) {
    footer {
        padding: 3rem 0 4rem;
        margin-top: 8rem;
    }
        
    .footer-line{
        -webkit-flex-direction: column-reverse;
        -moz-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        -o-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 2rem 0;
    }

    .footer-cat{
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        -ms-align-items: center;
        align-items: center;
        gap: 2rem 0;
        padding: 3rem;
    }
    
    .footer-cat-list{
        width: 100%;
        padding: 0;
    }
    
    .footer-cat-list:first-child{
        padding-bottom: 2rem;
        border-right: none;
        border-bottom: 1px solid var(--color-gold);
    }
    
}



/*----------
article
----------*/
.article-wrap{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
	gap: 0 9rem;
}

.article-content{
	width: 100%;
	max-width: 	800px;
}

@media(max-width: 1240px){
    .article-content{
        width: 100%;
        max-width: 100%;
    }
    
    .article-content+aside{
        margin-top: 6rem;
    }
    
    .article-wrap{
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    
}

/*----------
body_class
----------*/
h2.wp-block-heading,h3.wp-block-heading,h4.wp-block-heading,.single .outline{
	display: inline-block;
    font-family: "notosansjp", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	font-weight: bold;
	padding-top: 2rem;
	width: 100%;
}

.wp-block-image{
    max-width: 800px;
    margin: 0 auto;    
	border-radius: 2rem;
	overflow: hidden;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    position: relative;    
}

.wp-block-image{
    object-fit: cover;
}

.single .outline{
	padding: 1.6rem 4rem;
	background: var(--color-base);
	border-left: 2px solid var(--color-base); 
	border-top: 2px solid var(--color-base);
	border-right: 2px solid var(--color-base);
	border-radius: 2rem 2rem 0px 0px;
}
	
.single h2.wp-block-heading{
	font-size: 2.4rem;
	padding-bottom: 2rem;
	padding-top: 5rem;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	column-gap: 1rem;
}

.single h2.wp-block-heading::before{
	content: "";
	display: block;
	background: var(--color-gold);
	width: 0.6rem;
	height: 3rem;
	border-radius: 1rem;
}

h2.wp-block-heading+h3.wp-block-heading{
    padding-top: 1rem;
}

.single h3.wp-block-heading{
	font-size: 1.8rem;
	padding-bottom: 1.4rem;
	padding-top: 3.6rem;
}

.single h4.wp-block-heading{
	font-size: 1.6rem;
	padding-bottom: 0.8rem;
}
	
ul.wp-block-list{
	padding: 3rem 4rem;
	border: 2px solid var(--color-base);
	border-radius: 10px;
}

ul.wp-block-list li ul.wp-block-list {
    padding: 0;
    border: none;
}

.outline+ul.wp-block-list{
	border-top: none;
	border-radius: 0px 0px 10px 10px;
}

ul.wp-block-list li{
	list-style: disc;
	margin-left: 2.4rem;
}

ul.wp-block-list li+li{
    margin-top: 1.25rem;
}

p+ul.wp-block-list{
    margin-top: 2rem;
}

ul.wp-block-list+p {
    display: inline-block;
    margin-top: 2rem;
}

.single .wp-block-group{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 1.6rem;
	margin-top: 2.2rem;
	margin-bottom: 2.2rem;
}

/*pgae*/
.page h2.wp-block-heading{
	font-size: 2.4rem;
	padding-bottom: 2rem;
	padding-top: 5rem;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	column-gap: 1rem;
}

.page h2.wp-block-heading::before{
	content: "";
	display: block;
	background: var(--color-gold);
	width: 0.6rem;
	height: 3rem;
	border-radius: 1rem;
}

.page h3.wp-block-heading{
	font-size: 1.8rem;
	padding-bottom: 1.4rem;
	padding-top: 3.6rem;
}

.page h4.wp-block-heading{
	font-size: 1.6rem;
	padding-bottom: 0.8rem;
}


.wp-block-buttons{
	margin-top: 4.2rem;
	margin-bottom: 6.4rem;
}

.single .wp-block-image+p{
	padding-top: 3rem;
}

.single p{
	width: 100%;
	display: inline-block;
}

.single p a{
	text-decoration: underline;
}

.single p+p{
	padding-top: 1.65rem;
}

.single p+.outline{
	margin-top: 4rem;
}

.wp-block-button__link{
	background: #ffffff;
	display: inline-block;
	padding: 1rem 2rem;
	border: 1px solid var(--color-lightgray);
	border-radius: 3.6rem;
	font-size: 1.4rem;
	font-weight: bold;
	color: #111111;
}

.wp-block-table{
    margin: 3rem 0;
}

.nav-links{
    margin-top: 2rem;
    font-weight: bold;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    gap: 0 3rem;
}

a.page-numbers{
    color: var(--color-darkgray);
    border-bottom: 1px solid;
}

a.page-numbers.current{
    color: var(--color-black);
    border-bottom: none;
}

.next.page-numbers,.prev.page-numbers{
    color: var(--color-gold);
    border-bottom: 1px solid;
}

.wp-block-table tr td:first-child{
    background: var(--color-base);
    text-align: center;
    font-weight: bold;
}

.single-ns-link{
    padding: 30px 0px 0px;
}

.single-ns-link a{
	display: inline-block;
	width: 100%;
    max-width: 300px;
	background: var(--color-base);
	padding: 1rem 0.5rem;
	border-radius: 2rem;
}

@media(max-width: 1024px){
    .single h2.wp-block-heading{
        font-size: 2.0rem;
        padding-bottom: 1.6rem;
        padding-top: 4.0rem;
        column-gap: 1rem;
    }

    .single h2.wp-block-heading::before{
        min-width: 0.6rem;
        height: 6.0rem;
    }

    .single h3.wp-block-heading{
        font-size: 1.6rem;
        padding-bottom: 1.2rem;
        padding-top: 3.4rem;
    }

    .single h4.wp-block-heading{
        font-size: 1.4rem;
        padding-bottom: 0.8rem;
    }
    
    ul.wp-block-list {
        padding: 1.4rem 2rem;
    }
        
}

/*----------
aside
----------*/
aside{
	width: 100%;
	max-width: 	350px;
}

.article-info{
	padding: 4rem 3rem;
	border: 2px solid var(--color-base);
	border-radius: 1rem;
}

.article-time{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	-ms-align-items: center;
	align-items: center;
	display: flex;
	gap: 0 2rem;
}

.article-info-category{
	margin-bottom: 2rem;
}

.article-info-tag{
	padding: 1rem;
	background: var(--color-bg);
	margin-bottom: 3rem;
}

.article-info-tag ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 0.6rem 1rem;
}

.aside-ns-link a{
	display: inline-block;
	width: 100%;
	background: var(--color-base);
	padding: 1rem 0.5rem;
	border-radius: 2rem;
}

.related-item a{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
}

.related-item:last-child{
	padding-bottom: 2rem;
	border-bottom: 2px solid var(--color-base);
}

.related-item +.related-item{
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 2px solid var(--color-base);	
}

.related-item{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    gap: 2rem 0;
}

.related-img{
    max-width: 35%;
    max-height: 7rem;
    border-radius: 1rem;
    overflow: hidden;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    position: relative; 
}

.related-img img{
    object-fit: cover;
}

.related-title{
	width: 60%;
}

.aside-cat-wrap{
	margin-top: 6rem !important;
}

.aside-cat-list{
	padding-top: 1rem;
}

.aside-cat-list ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 0.65rem 0;
}

.aside-cat-list ul li::after{
	content: "／";
}

.aside-cat-list ul li:last-child::after{
	content: none;
}

.aside-cat-list ul li a{
	text-decoration: underline;
}

@media(max-width: 1240px){

    aside {
        width: 100%;
        max-width: 100%;
    }
}

@media(max-width: 1024px){
    .article-info {
        padding: 3rem 2rem;
        margin-top: 4rem;
    }
    
    .related-img{
        max-width: 38%;
        max-height: 8rem;
        border-radius: 1rem;
    }

    .related-title{
        width: 60%;
    }    
}

/*snowmonkey*/
.smf-item{
	margin-bottom: 2rem;
}

.smf-form {
    margin-bottom: 3rem;
}