@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;
  }
}

/*
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 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) {
  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--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 20px;
  }
  #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;
  }
  #article-detail section .article-detail__section .column.float--pc-left .text__wrap {
    width: 100%;
  }
  #article-detail section .article-detail__section .column > *:nth-of-type(1) {
    padding-right: 20px;
  }
  #article-detail section .article-detail__section .column > *:nth-of-type(2) {
    padding-left: 20px;
  }
  #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 */