@charset "UTF-8";

/* -------------------------- 変数 */

:root{

  --mk-blue: #0A2D88;
  --mk-blue80: rgba(10, 46, 136, 0.8);
  --mk-green: #56BC8A;
  --gray: #999;

  --cat-info: #DAEDFA;
  --cat-blog: #F2DAFA;
  --cat-event: #D9F1CE;

}

/* -------------------------- 基本 */

html{
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  font-size: 100%;
  background-color: var(--mk-blue);
}

img{
  vertical-align: bottom;
  max-width: 100%;
}

/* #page {
  opacity: 0;
  transition: opacity 1s ease;
}
#page.fade-in {
  opacity: 1;
} */

body{
  font-family: "Shippori Mincho", serif;
  line-height: 1.7;
  overflow-x: hidden;
  background-color: #fff;
}

#page{
  overflow: hidden;
}

p{
  margin: 1rem 0;
}
p:first-child{
  margin-top: 0;
}
p:last-child{
  margin-bottom: 0;
}

/* -------------------------- リンク */

a,
a:link,
a:visited{
  color: var(--dps-blue);
  text-decoration: underline;
}

a:hover{
  opacity: .5;
  text-decoration: none; 
}


/* -------------------------- 定義リスト */

dl.horizontal{
  border-bottom: 1px solid var(--list-border-color);
  margin: 2rem 0;
  display: grid;
  gap: 0;
  grid-template-columns: [key] minmax(150px, min-content) [value] 1fr;
}
dl.horizontal:first-child{
  margin-top: 0;
}
dl.horizontal:last-child{
  margin-bottom: 0;
  border: 0;
}

dl.horizontal dt,
dl.horizontal dd{
  padding: 1.5rem 1.5rem;
  border-top: 1px solid var(--list-border-color);
}
dl.horizontal:first-child dt:first-child,
dl.horizontal:first-child dd:first-of-type{
  border: 0;
}

dl.horizontal dt{
  grid-column: key;
  white-space: nowrap;
  font-weight: bold;
  display: flex;
  align-items: center;
}
dl.horizontal.colored dt{
  grid-column: key;
  white-space: nowrap;
  background-color: var(--list-head-bg);
  font-weight: bold;
  display: flex;
  align-items: center;
}
dl.horizontal.dt2 dt{
  grid-column: span 2;
}

dl.horizontal dd{
  grid-column: value;
  background-color: var(--list-data-bg);
}



/* -------------------------- クラス */

.en{
  font-family: "Smooch Sans", sans-serif;
  letter-spacing: .3rem;
  padding-left: .3rem;
}

span.fig{
  margin: 0 .3rem;
}

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

.fit img,
img.fit{
  width: 100%;
  height: auto;
}

.no-scroll{
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
}

.flex{ 
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.for-pc    { display: block; }
img.for-pc { display: inline-block; }
.for-sp,
img.for-sp { display: none; }

.inner{
  position: relative;
  max-width: 1280px;
  
  margin: 0 auto;
  padding: 1rem;
}


/* -------------------------- 戻るボタン */

.btn-pagetop{
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 200;
  transition: opacity .5s ease-out;
}

.btn-pagetop a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  position: relative;
  background-color: var(--mk-green);
  border-radius: 50%;
}
.btn-pagetop.disabled a{
  cursor: default;
  pointer-events: none;
}

.btn-pagetop a span{
  display: block;
  position: absolute;
  left: -9000px;
  top: 0;
}

.btn-pagetop a::before{
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  border-right: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  position: relative;
  left: 0;
  top: 10%;
}


/* ======= ヘッダー */

.page-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.admin-bar .page-header{
  top: 32px;
}

.page-header .logo{
  display: flex;
  align-items: center;
}

.page-header .logo .title{
  color: var(--mk-blue);
  font-weight: bold;
  font-size: 1.5rem;
  
  line-height: 1;
  border-left: 1px solid #000;
  padding: .1rem;
  padding-left: 1rem;
  margin-left: 1rem;
}

.home .page-header{
  justify-content: flex-end;
}

.home .page-header .logo{
  display: none;
}

/* ======= ナビゲーション */

/*チェックボックス*/
#toggle-nav{
  /* display: block;
  position: fixed;
  top: 0;
  left: 0; */
  display: none;
}

.btn-toggle{
  display: block;
  cursor: pointer;
}

.btn-toggle.close{
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 102;
}

.admin-bar .btn-toggle.close{
  top: calc( 32px + 1rem);
}

.nav-global{
  opacity: 0;
  pointer-events: none;

  background-color: var(--mk-blue);
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100vw;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.nav-global a{
  color: #fff;
  text-decoration: none;
}

#toggle-nav:checked + .nav-global{
  opacity: 1;
  pointer-events: all;
}

.nav-global .nav-inner{
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

.nav-global .nav-inner .menulist{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  border-left: 1px solid #fff;
  margin: 0;
  padding: 0;
  padding-left: 3rem;
  list-style: none;
  min-width: 250px;
}


/* ページネーション */

.navigation { 
  background-color: #F5F5F5;
  padding: 1rem;
  margin: 30px 0;
  font-size: 1.2rem;
}

.pagenav { display: table; width: 100%; border-collapse: separate; border-spacing: 15px; }

.pagenav a.pagenav-btn { display: table-cell; background: #007427; border-radius: .5em; padding: 1em .5em; text-align: center; color: #fff; }

.pagenav a.pagenav-btn p { margin: .5em 0 0; }

.pagenav .btns { display: table-cell; width: 25%; }

.pagenav .btns a.pagenav-btn { display: block; background: #999; }

.pagination {
  text-align: center;
}

.pagination .screen-reader-text { display: none; }

.nav-links{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.nav-links .page-numbers { 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-width: 2rem;
  height: 2rem;
  border-radius: 50%;
  padding: 0;
  margin: 0 2px;
  line-height: 1;
  background: var(--mk-green);
  color: #fff;
  font-weight: bold;
  font-family: "Smooch Sans", sans-serif;
}

.nav-links .prev,
.nav-links .next
{
  background: none !important;
  color: var(--mk-green);
  font-family: "Shippori Mincho", serif;
}

.nav-links .page-numbers.current {
  color: #FFF;
  background: var(--mk-blue);
}

.pagination a { color: #666; }

.pagination a:hover {  }


.next-previous {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}
.next-previous .next,
.next-previous .previous,
.next-previous .return-to-archive {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.next-previous .next a,
.next-previous .previous a,
.next-previous .return-to-archive a {
  display: block;
  padding: .2rem .8em;
  background: var(--mk-green);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
}
.next-previous .next span,
.next-previous .previous span,
.next-previous .return-to-archive span {
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  line-height: 1;
  width: 200px;
  margin: 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* ======= フッター */

.page-footer{
  text-align: center;
  padding-top: 5rem;
}

.logo-footer{
  margin-bottom: 4rem;
}

.logo-footer img{
  max-width: 100%;
}

.copyright{
  background-color: var(--mk-blue);
  color: #fff;
  margin-top: 3rem;
  padding: .5rem;
}


/* ======= コンテンツ */

.section{
  padding: 5rem 1.5rem;
  position: relative;
  z-index: 10;
}
.section .inner{
  position: relative;
  z-index: 10;
}

.section-title{
  display: table;
  font-size: 4rem;
  font-weight: normal;
  line-height: 1;
  color: var(--gray);
}

.section-title .ja{
  font-size: 1.2rem;
}


main{
  padding:0;
}

main ul,
main ol{
  list-style-position: inside;
}



/* ======= トップページ（Homne） */

.home .container.inner{
  max-width: 100%;
  width: 100%;
  padding: 0;
}

/* --- カバー（Homne） */

.cover{
  position: relative;
}

.cover video{
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

.cover .logo-cover{
  mix-blend-mode: multiply;
  backdrop-filter: blur(2px) brightness(120%);
  
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cover .logo-cover img{
  max-width: 100%;
}


/* --- お知らせ（Homne） */
.news{
  position: relative;
  z-index: 100;
}

.news .inner{
  display: flex;
  align-items: center;
  gap: 5rem;

  border: 1px solid #ddd;
  border-left: 0;
  border-right: 0;

  padding: 2rem 3rem;
}

.info-item{
  display: flex;
  margin: .5rem 0;
}

.info-item dt{
  display: flex;
  gap: 1rem;
}

.info-item a{
  text-decoration: none;
}

.info-item .cat,
.info-item .date,
.info-item dd{
  display: block;
  line-height: 1.1;
  font-size: 1rem;
  padding: .5rem;
}

.info-item .cat{
  min-width: 120px;
  text-align: center;
  background-color: antiquewhite;
  border-radius: .5rem;
}

.info-item .cat.info { background-color: var(--cat-info); }
.info-item .cat.blog { background-color: var(--cat-blog); }
.info-item .cat.event{ background-color: var(--cat-event); }

.info-item dd{
  border-left: 1px solid #ddd;
  padding-left: 2rem;
  margin-left: 1.5rem;
}

.section::before,
.section::after,
.section .inner::before,
.section .inner::after{
  content: '';
  display: block;
  background-color: #F0F4FD;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  transform: translate(-50%, -50%);
}

/* --- コンセプト（Homne） */

.concept .inner{
  display: flex;
  gap: 5rem;
  justify-content: center;
  align-items: center;

  font-size: 1.25rem;
  line-height: 2;
}

/* .home .section.concept::before, */
.concept .inner::after{
  width: 70vw;
  height: 70vw;
  top: 80%;
  left: 0;
}

/* --- プロフィール（Homne） */

.profile .inner{
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}

.profile .inner::after{
  width: 10vw;
  height: 10vw;
  top: calc(100% + 100px);
  left: 50%;
}

.profile .section-content{
  /* width: 600px; */
  position: relative;
  background-color: var(--mk-blue80);
  color: #fff;
  padding: 3rem;
  padding-left: 300px;
}

.profile .photo{
  width: 460px;
  position: absolute;
  left: -240px;
  top: 150px;
}

.introduction{
  font-size: .9rem;
}

.accomplishments{
  background-color: #fff;
  color: var(--mk-blue);
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  margin-top: 2rem;
  font-size: .9rem;
}

.accomplishments ul{
  list-style-position: outside;
  padding-left: 1rem;
}

/* --- 業務紹介（Homne） */

.business::before{
  width: 30vw;
  height: 30vw;
  top: 30%;
  left: 30%;
}

.business::after{
  width: 40vw;
  height: 40vw;
  top: 70%;
  left: 40%;
}


.business .inner{
  padding-top: 150px;
  width: 100%;
}

.business .inner::before{
  width: 50vw;
  height: 50vw;
  top: calc(25vw - 100px);
  left: 100%;
}

.business .inner::after{
  width: 20vw;
  height: 20vw;
  top: 90%;
  left: 70%;
}

.business .section-title{
  position: absolute;
  top: 0;
  right: 1rem;
}

.business-item{
  position: relative;
  margin-bottom: 7rem;
}
.business-item:last-child{
  margin-bottom: 0;
}

.business-item .article-content{
  position: relative;
  z-index: 2;
  width: 60%;
  background-color: var(--mk-blue80);
  color: #fff;
  padding: 3rem 4rem;
}

.business-item .article-content .heading{
  font-size: 2.5rem;
  font-weight: normal;
}

.business-item .thumbnail{
  width: 70%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.business-item .thumbnail img{
  object-fit: cover;
  width: 100%;
  height: 460px;
  object-position: top center;
}

/* タレント事業 */
.business-item.talent{
  padding-bottom: 100px;
}

.business-item.talent .thumbnail{
  top: auto;
  bottom: 0;
}

/* 教育事業 */
.business-item.education{
  padding-top: 100px;
}

.business-item.education .article-content{
  margin-left: auto;
}

.business-item.education .thumbnail{
  left: 0;
  right: auto;
}
.business-item.education .thumbnail img{
  object-position: 0% 60%;
}

/* ヘルス・ビューティ事業 */
.business-item.health-beauty{
  padding-top: 200px;
}

.business-item.health-beauty .article-content{
  /* margin-left: auto; */
}

.business-item.health-beauty .thumbnail img{
  object-position: center;
}


/* ======= お知らせ（アーカイブ） */

.error404 .container,
.post .container{
  display: flex;
  justify-content: space-between;
  padding-top: 200px;
}

.error404 .container{
  display: flex;
  justify-content: center;
  align-items: center;
}

.post .sidebar{
  min-width: 300px;
  margin-left: 60px;
}

.post-item{
  border-bottom: 1px solid var(--gray);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}

.post-item:last-child{
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

.post-item a{
  color: var(--mk-green);
}

.post-thumbnail{
  margin-bottom: 1rem;
}

.post-thumbnail img{
  object-fit: cover;
  width: 100%;
  height: 350px;
}

.post-header{
  margin-bottom: 2rem;
}
.post-header nav{
  display: flex;
}

.post-title{
  font-size: 1.5rem;
}

.cats{
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.date{
  display: block;
  padding: .2rem 0;
  margin-right: 1rem;
}
.cats a{
  display: block;
  padding: .2rem .5rem;
}

.more-link{
  display: table;
  margin-left: auto;
  margin-top: 1rem;
}

.more-link::before{
  display: inline-block;
  content: '';
  background: url(../images/mk-more.svg) no-repeat 50% 50%;
  background-size: contain;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: .3rem;
  margin-bottom: .2rem;
  vertical-align: bottom;
}

.sidebar-section{
  margin-bottom: 3rem;
}

.sidebar-section .heading{
  background-color: var(--mk-blue);
  color: #fff;
  font-size: 1.5rem;
  padding: .5rem 1rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.sidebar-section ul{
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.sidebar-section ul a{
  text-decoration: none;
}