@charset "UTF-8";
/**
 * 変数
 */
/**
 * color
 * ---------------------------
 */
/**
 * コンテンツ幅
 * ---------------------------
 */
/**
 * font famiry
 * ---------------------------
 */
/**
 * font size
 * ---------------------------
 */
:root {
  --fontSize: 20px;
  --font-2xs: calc(var(--fontSize) * 0.6); /* 12px */
  --font-xs: calc(var(--fontSize) * 0.7); /* 14px */
  --font-s: calc(var(--fontSize) * 0.8); /* 16px */
  --font-m: calc(var(--fontSize) * 0.9); /* 18px */
  --font-l: calc(var(--fontSize) * 1);
  --font-xl: calc(var(--fontSize) * 1.1); /* 22px */
  --font-2xl: calc(var(--fontSize) * 1.1); /* 22px */
  --font-3xl: calc(var(--fontSize) * 1.25); /* 25px */
  --font-4xl: calc(var(--fontSize) * 1.5); /* 30px */
  --font-4_2xl: calc(var(--fontSize) * 1.5); /* 30px */
  --font-5xl: calc(var(--fontSize) * 1.5); /* 30px */
}

@media (min-width: 768px) {
  :root {
    --font-2xs: calc(var(--fontSize) * 0.7); /* 14px */
    --font-xs: calc(var(--fontSize) * 0.8); /* 16px */
    --font-s: calc(var(--fontSize) * 0.9); /* 18px */
    --font-m: calc(var(--fontSize) * 1);
    --font-l: calc(var(--fontSize) * 1.1); /* 22px */
    --font-xl: calc(var(--fontSize) * 1.25); /* 25px */
    --font-2xl: calc(var(--fontSize) * 1.5); /* 30px */
    --font-3xl: calc(var(--fontSize) * 1.75); /* 35px */
    --font-4xl: calc(var(--fontSize) * 2); /* 40px */
    --font-4_2xl: calc(var(--fontSize) * 2.1); /* 42px */
    --font-5xl: calc(var(--fontSize) * 2.25); /* 45px */
  }
}
/**
 *=========================
 * 一覧・詳細共通
 *=========================
 */
/*
overview
---------------------------*/
#overview {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, #FEF8DE), color-stop(70%, #ffffff));
  background: linear-gradient(180deg, #FEF8DE 30%, #ffffff 70%);
}
#overview > .wrap {
  background: #ffffff;
  border-top: 1px solid #026934;
  border-left: 1px solid #026934;
  border-right: 1px solid #026934;
  border-radius: 25px 25px 0 0;
}
@media (min-width: 769px) {
  #overview > .wrap {
    border-radius: 50px 50px 0 0;
  }
}

/**
 *=========================
 * 一覧ページ
 *=========================
 */
/*
main-title
---------------------------*/
#main-title .wrap {
  margin: 60px 0 50px;
}
#main-title .title__wrap h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 11vw;
  max-height: 33px;
  margin: 0 auto;
}
#main-title .title__wrap h2 img {
  height: 100%;
}
#main-title .title__wrap p {
  margin-top: 17px;
  font-size: min(5.8vw, 24px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
}
#main-title .detail__wrap {
  margin-top: 30px;
}
#main-title .detail__wrap p {
  font-size: min(4.8vw, 18px);
  font-weight: 500;
  line-height: 2.5;
  text-align: center;
}
@media (min-width: 769px) {
  #main-title .wrap {
    margin: 0 0 50px;
  }
  #main-title .title__wrap h2 {
    height: 55px;
    max-height: initial;
  }
  #main-title .title__wrap p {
    margin-top: 10px;
    font-size: 24px;
  }
  #main-title .detail__wrap {
    margin-top: 30px;
  }
  #main-title .detail__wrap p {
    font-size: min(2.3vw, 20px);
    line-height: 2;
  }
}

/*
list-contents
---------------------------*/
#list-contents .wrap {
  margin-bottom: 100px;
}
#list-contents .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px 0;
}
#list-contents .list a {
  display: block;
  width: 100%;
  border-radius: 30px;
  -webkit-box-shadow: 15px 15px 0 #C0EDC6;
          box-shadow: 15px 15px 0 #C0EDC6;
}
#list-contents .list a:hover dl {
  top: 15px;
  left: 15px;
}
#list-contents .list a:nth-of-type(2n) dd::after {
  background: url("/img/explore/column/icon-type02.png");
  background-repeat: no-repeat;
  background-size: cover;
}
#list-contents .list a dl {
  position: relative;
  top: 0;
  left: 0;
  border: 1px solid #026934;
  border-radius: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#list-contents .list a dt {
  width: 100%;
}
#list-contents .list a dt img {
  width: 100%;
  border-radius: 30px 30px 0 0;
}
#list-contents .list a dd {
  position: relative;
  width: 100%;
  padding: 30px;
  background: #FFFFFF;
  border-radius: 0 0 30px 30px;
}
#list-contents .list a dd::after {
  content: "";
  position: absolute;
  top: -30px;
  right: 0;
  width: 40%;
  max-width: 140px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: url("/img/explore/column/icon-type01.png");
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 7/4;
}
#list-contents .list a dd .text__wrap .date {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}
#list-contents .list a dd .text__wrap .title {
  margin-top: 5px;
  font-size: min(5.2vw, 20px);
  font-weight: 700;
  line-height: 2;
}
#list-contents .list a dd .writer__wrap {
  margin-top: 20px;
}
#list-contents .list a dd .writer__wrap .title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 25px;
}
#list-contents .list a dd .writer__wrap .title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  background: #3EC06F;
  border-radius: 50%;
}
#list-contents .list a dd .writer__wrap .title p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}
#list-contents .list a dd .writer__wrap .title span {
  width: 100%;
  height: 1px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: #026934;
}
#list-contents .list a dd .writer__wrap .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 10px;
}
#list-contents .list a dd .writer__wrap .detail .profile__wrap {
  width: 100%;
}
#list-contents .list a dd .writer__wrap .detail .profile__wrap p.univ {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}
#list-contents .list a dd .writer__wrap .detail .profile__wrap p.name {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
}
#list-contents .list a dd .writer__wrap .detail .profile__wrap p.name span {
  padding-left: 7px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
#list-contents .list a dd .btn__wrap {
  width: 100%;
  margin-top: 30px;
  padding: 22px 49px 26px;
  background: #E75611;
  border: 1px solid #026934;
  border-radius: 10px;
}
#list-contents .list a dd .btn__wrap p {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-align: center;
}
#list-contents .list a dd .btn__wrap p::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -29px;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url("/img/common/icon-arrow-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 450px) {
  #list-contents .list a dd::after {
    top: -50px;
    max-width: 200px;
  }
}
@media (min-width: 900px) {
  #list-contents .wrap {
    margin: 10px 0 150px;
  }
  #list-contents .list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4%;
  }
  #list-contents .list a {
    width: 30.6666666667%;
  }
  #list-contents .list a dd::after {
    top: -30px;
    max-width: 140px;
  }
  #list-contents .list a dd .text__wrap .title {
    font-size: min(2vw, 20px);
  }
  #list-contents .list a dd .btn__wrap {
    padding: 22px 20px 26px;
  }
  #list-contents .list a dd .btn__wrap p {
    font-size: min(2vw, 20px);
  }
  #list-contents .list a dd .btn__wrap p::after {
    right: -10px;
  }
}
@media (min-width: 1000px) {
  #list-contents .list {
    gap: 60px;
  }
  #list-contents .list a {
    width: calc((100% - 120px) / 3);
  }
  #list-contents .list a dd .btn__wrap {
    padding: 22px 49px 26px;
  }
  #list-contents .list a dd .btn__wrap p::after {
    right: -29px;
  }
}

/**
 *=========================
 * 詳細ページ
 *=========================
 */
/*
profile
---------------------------*/
#profile .wrap {
  padding: 0;
}
#profile .tab__title {
  width: 40%;
  max-width: 115px;
  padding: 6px 5px 5px;
  background: #3EC06F;
  border-top: 1px solid #026934;
  border-left: 1px solid #026934;
  border-right: 1px solid #026934;
  border-radius: 10px 10px 0 0;
}
#profile .tab__title p {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-align: center;
}
#profile .tab__contents {
  padding: 25px;
  border: 1px solid #026934;
  border-radius: 0 15px 15px 15px;
  -webkit-box-shadow: 15px 15px 0px #C0EDC6;
          box-shadow: 15px 15px 0px #C0EDC6;
}
#profile .tab__contents .main {
  width: 100%;
}
#profile .tab__contents .main .img__wrap {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}
#profile .tab__contents .main .img__wrap img {
  border: 1px solid #026934;
  border-radius: 130px;
}
#profile .tab__contents .main .text__wrap {
  margin-top: 30px;
}
#profile .tab__contents .main .text__wrap .university {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
#profile .tab__contents .main .text__wrap .name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
#profile .tab__contents .main .text__wrap .name span {
  margin-left: 1em;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}
#profile .tab__contents .sub {
  width: 100%;
  margin-top: 30px;
}
#profile .tab__contents .sub ul li + li {
  margin-top: 16px;
}
#profile .tab__contents .sub ul li .title {
  position: relative;
  padding-left: 1.5em;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
}
#profile .tab__contents .sub ul li .title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1em;
  height: 1em;
  background: #E75611;
  border-radius: 50%;
}
#profile .tab__contents .sub ul li .detail {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media (min-width: 769px) {
  #profile .tab__contents {
    padding: 50px;
    border-radius: 0 30px 30px 30px;
  }
  #profile .tab__contents .main {
    width: 230px;
  }
  #profile .tab__contents .main .img__wrap {
    max-width: initial;
  }
  #profile .tab__contents .main .text__wrap .university {
    font-size: 16px;
  }
  #profile .tab__contents .main .text__wrap .name {
    font-size: 24px;
  }
  #profile .tab__contents .main .text__wrap .name span {
    font-size: 18px;
  }
  #profile .tab__contents .sub {
    width: calc(100% - 230px);
    margin-top: 0;
    padding-left: 50px;
  }
  #profile .tab__contents .sub ul li .title {
    font-size: 18px;
  }
  #profile .tab__contents .sub ul li .detail {
    font-size: 16px;
  }
}
@media (min-width: 1000px) {
  #profile .tab__contents .main {
    width: 260px;
  }
  #profile .tab__contents .sub {
    width: calc(100% - 260px);
  }
}

/*
article-title
---------------------------*/
#article-title .wrap {
  padding: 115px 0 0;
}
#article-title .content {
  padding: 50px 0;
  border-top: 1px solid #026934;
  border-bottom: 1px solid #026934;
}
#article-title .text__wrap {
  width: 100%;
}
#article-title .text__wrap .label {
  width: 140px;
  padding: 5px 5px 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
  color: #FFFFFF;
  background: #E75611;
  border: 1px solid #026934;
  border-radius: 30px;
  -webkit-box-shadow: 2px 2px 0px #026934;
          box-shadow: 2px 2px 0px #026934;
}
#article-title .text__wrap .name {
  margin-top: 30px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
}
#article-title .img__wrap {
  width: 100%;
  margin-top: 30px;
}
#article-title .img__wrap img {
  border: 1px solid #026934;
  border-radius: 15px;
}
@media (min-width: 769px) {
  #article-title .wrap {
    padding: 145px 0 0;
  }
  #article-title .text__wrap {
    width: 50%;
  }
  #article-title .text__wrap .label {
    width: 40%;
    max-width: 180px;
    padding: 7px 5px 10px;
    font-size: min(2.5vw, 24px);
  }
  #article-title .text__wrap .name {
    margin-top: min(3.5vw, 50px);
    font-size: min(3.8vw, 34px);
  }
  #article-title .img__wrap {
    width: 50%;
    margin-top: 0;
    padding-left: 3%;
  }
  #article-title .img__wrap img {
    border-radius: 30px;
  }
}
@media (min-width: 1000px) {
  #article-title .img__wrap {
    padding-left: 60px;
  }
}

/*
article-detail
---------------------------*/
#article-detail .wrap {
  padding: 100px 0 150px;
}
#article-detail section + section {
  margin-top: 100px;
}
#article-detail section .article-detail__section + .article-detail__section {
  margin-top: 50px;
}
#article-detail section .article-detail__section--title {
  margin-bottom: 50px;
}
#article-detail section .article-detail__section--title:has(h2) {
  padding: 7px;
  background: #FFFFFF;
  border: 1px solid #026934;
  border-radius: 15px;
}
#article-detail section .article-detail__section--title h2 {
  padding: 23px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  background: #D2FAE1;
  border-radius: 15px;
}
#article-detail section .article-detail__section--title h3 {
  padding-bottom: 30px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #026934;
}
#article-detail section .article-detail__section--content ul + * {
  margin-top: 20px;
}
#article-detail section .article-detail__section--content ul li {
  position: relative;
  padding-left: 25px;
}
#article-detail section .article-detail__section--content ul li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 12px;
  height: 12px;
  background: #026934;
  border-radius: 50%;
}
#article-detail section .article-detail__section--content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
#article-detail section .article-detail__section--content p + p {
  margin-top: 1em;
}
#article-detail section .article-detail__section .column.contents__column--pc > *:nth-of-type(2), #article-detail section .article-detail__section .column.contents__column--pc-reverse > *:nth-of-type(2) {
  margin-top: 50px;
}
#article-detail section .article-detail__section .column.contents__column--direction-col-re-sp > *:nth-of-type(1) {
  margin-top: 50px;
}
#article-detail section .article-detail__section .column.float--pc-right .text__wrap, #article-detail section .article-detail__section .column.float--pc-left .text__wrap {
  margin-top: 50px;
  padding: 0;
}
#article-detail section .article-detail__section .column .img__wrap {
  width: 100%;
}
#article-detail section .article-detail__section .column .img__wrap.sm {
  width: 100%;
}
#article-detail section .article-detail__section .column .img__wrap.border-wrap img {
  border: 1px solid #026934;
  border-radius: 15px;
}
#article-detail section .article-detail__section .column .text__wrap {
  width: 100%;
}
#article-detail section .article-detail__section .column .text__wrap.lg {
  width: 100%;
}
#article-detail .attention {
  margin-top: 100px;
}
#article-detail .attention p {
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
#article-detail .attention--wrap {
  padding: 25px;
  border: 1px solid #026934;
  border-radius: 15px;
}
#article-detail .attention--wrap p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (min-width: 769px) {
  #article-detail section .article-detail__section + .article-detail__section {
    margin-top: 100px;
  }
  #article-detail section .article-detail__section--title:has(h2) {
    border-radius: 30px;
  }
  #article-detail section .article-detail__section--title h2 {
    padding: 33px 43px;
    font-size: 28px;
    border-radius: 30px;
  }
  #article-detail section .article-detail__section--title h3 {
    font-size: 24px;
  }
  #article-detail section .article-detail__section--content p {
    font-size: 18px;
  }
  #article-detail section .article-detail__section .column.contents__column--pc > *:nth-of-type(2) {
    margin-top: 0;
  }
  #article-detail section .article-detail__section .column.contents__column--pc-reverse > *:nth-of-type(2) {
    margin-top: 0;
    padding-left: 0;
    padding-right: 40px;
  }
  #article-detail section .article-detail__section .column.contents__column--direction-col-re-sp > *:nth-of-type(1) {
    margin-top: 0;
  }
  #article-detail section .article-detail__section .column.float--pc-right .img__wrap {
    float: right;
    padding: 0 0 0 40px;
  }
  #article-detail section .article-detail__section .column.float--pc-right .text__wrap {
    width: 100%;
  }
  #article-detail section .article-detail__section .column.float--pc-left .img__wrap {
    float: left;
    padding: 0 40px 0 0;
  }
  #article-detail section .article-detail__section .column.float--pc-left .text__wrap {
    width: 100%;
  }
  #article-detail section .article-detail__section .column > *:nth-of-type(2) {
    padding-left: 40px;
  }
  #article-detail section .article-detail__section .column .img__wrap {
    width: 50%;
  }
  #article-detail section .article-detail__section .column .img__wrap.sm {
    width: 38%;
  }
  #article-detail section .article-detail__section .column .img__wrap.border-wrap img {
    border-radius: 30px;
  }
  #article-detail section .article-detail__section .column .text__wrap {
    width: 50%;
  }
  #article-detail section .article-detail__section .column .text__wrap.lg {
    width: 62%;
  }
  #article-detail .attention p {
    font-size: 16px;
  }
  #article-detail .attention--wrap {
    padding: 40px;
    border-radius: 30px;
  }
  #article-detail .attention--wrap p {
    font-size: 18px;
  }
}/*# sourceMappingURL=column.css.map */