@charset "UTF-8";
/*!
  Theme Name: kure-opencollege framework
  Author: Ori
  Author URI: http://shikiori.com/
  Description: kure-opencollege framework
  Version: 2.0
  Date: 2026.03.16
  License: GNU General Public License v2 or later
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 15px;
  font-size: 1.5rem;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  width: 100%;
}

a {
  color: #111;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  -o-transition: .3s;
  -ms-transition: .3s;
}

a:hover {
  color: #111;
  text-decoration: none;
  opacity: 0.65;
}

a:active, a:hover {
  outline-width: 0;
}

li {
  margin: 0;
  list-style: none;
}

ul, ol {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, figure, dd, dt, dl {
  margin: 0;
}

figcaption, figure, main,
article, aside, footer,
header, nav, section {
  display: block;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

button, input, optgroup, select, textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button {
  border: none;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type="checkbox"], [type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
  -moz-appearance: none;
  -webkit-appearance: none;
}

/* Grid System width Flex */
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

/*margin*/
.mt0 {
  margin-top: 0px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt55 {
  margin-top: 55px;
}

.mt60 {
  margin-top: 60px;
}

.mt65 {
  margin-top: 65px;
}

.mt70 {
  margin-top: 70px;
}

.mt75 {
  margin-top: 75px;
}

.mt80 {
  margin-top: 80px;
}

.mt85 {
  margin-top: 85px;
}

.mt90 {
  margin-top: 90px;
}

.mt95 {
  margin-top: 95px;
}

.mt100 {
  margin-top: 100px;
}

.mb0 {
  margin-bottom: 0px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

@media screen and (max-width: 500px) {
  .mt0 {
    margin-top: 0px;
  }

  .mt5 {
    margin-top: 2.5px;
  }

  .mt10 {
    margin-top: 5px;
  }

  .mt15 {
    margin-top: 7.5px;
  }

  .mt20 {
    margin-top: 10px;
  }

  .mt25 {
    margin-top: 12.5px;
  }

  .mt30 {
    margin-top: 15px;
  }

  .mt35 {
    margin-top: 17.5px;
  }

  .mt40 {
    margin-top: 20px;
  }

  .mt45 {
    margin-top: 22.5px;
  }

  .mt50 {
    margin-top: 25px;
  }

  .mt55 {
    margin-top: 27.5px;
  }

  .mt60 {
    margin-top: 30px;
  }

  .mt65 {
    margin-top: 32.5px;
  }

  .mt70 {
    margin-top: 35px;
  }

  .mt75 {
    margin-top: 37.5px;
  }

  .mt80 {
    margin-top: 40px;
  }

  .mt85 {
    margin-top: 42.5px;
  }

  .mt90 {
    margin-top: 45px;
  }

  .mt95 {
    margin-top: 47.5px;
  }

  .mt100 {
    margin-top: 50px;
  }

  .mb0 {
    margin-bottom: 0px;
  }

  .mb5 {
    margin-bottom: 2.5px;
  }

  .mb10 {
    margin-bottom: 5px;
  }

  .mb15 {
    margin-bottom: 7.5px;
  }

  .mb20 {
    margin-bottom: 10px;
  }

  .mb25 {
    margin-bottom: 12.5px;
  }

  .mb30 {
    margin-bottom: 15px;
  }

  .mb35 {
    margin-bottom: 17.5px;
  }

  .mb40 {
    margin-bottom: 20px;
  }

  .mb45 {
    margin-bottom: 22.5px;
  }

  .mb50 {
    margin-bottom: 25px;
  }

  .mb55 {
    margin-bottom: 27.5px;
  }

  .mb60 {
    margin-bottom: 30px;
  }

  .mb65 {
    margin-bottom: 32.5px;
  }

  .mb70 {
    margin-bottom: 35px;
  }

  .mb75 {
    margin-bottom: 37.5px;
  }

  .mb80 {
    margin-bottom: 40px;
  }

  .mb85 {
    margin-bottom: 42.5px;
  }

  .mb90 {
    margin-bottom: 45px;
  }

  .mb95 {
    margin-bottom: 47.5px;
  }

  .mb100 {
    margin-bottom: 50px;
  }
}
/* form input*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=number],
select {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  margin: 2px;
  padding: 0 .3em;
  width: 100%;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=number]:focus,
select:focus {
  outline: none;
  border-color: #000;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

select {
  font-size: 13px;
  font-size: 1.3rem;
  height: 2.5em;
  padding: .5em;
  width: auto;
  min-width: 7em;
}

textarea {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  padding: 0 .3em;
  resize: vertical;
  width: 100%;
}
textarea :focus {
  outline: none;
  border-color: #000;
}

input[type=checkbox],
input[type=radio] {
  background: #FFF;
  cursor: pointer;
  margin-right: .5em;
}

textarea::placeholder,
input::placeholder {
  font-size: 1.4rem;
  color: #C5C5C5;
}

/* wordpress pager */
.pager {
  display: flex;
  height: 35px;
  margin-bottom: 60px;
  max-width: 100%;
  padding: 30px 0;
  position: relative;
}
.pager a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  position: relative;
  line-height: 1.42857143;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  color: #000;
  font-weight: bold;
  margin: 5px;
  padding: 5px 10px;
}

.pc .pager a:active,
.pc .pager a:hover,
.pc .pager a:focus {
  border-color: #000;
  color: #000;
}

.pager .previous, .pager .next,
.pager .back {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pager .previous a {
  padding-left: 1.5em;
}

.pager .previous a:before {
  content: "≪";
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
}

.pager .next a {
  padding-right: 1.5em;
}
.pager .next a:after {
  content: "≫";
  content: "";
  position: absolute;
  right: 5px;
  top: 4px;
}

.pager .back a {
  padding: 5px;
}

/* wordpress pagination */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.pagination > li {
  position: relative;
}

.pagination > li > span,
.pagination > li > a {
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  color: #231815;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}

.pagination > li > span {
  border-color: #231815;
  cursor: default;
}

.pc .pagination > li > a:active,
.pc .pagination > li > a:hover,
.pc .pagination > li > a:focus {
  border-color: #000;
  color: #000;
}

.pagination > li span.dot {
  border: none;
  width: 1em;
}

/* wordpress wp-pagenavi */
.wp-pagenavi {
  position: relative;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.8rem;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  margin: 3px;
  width: 54px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 0;
  background: #111;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 9cqw;
    height: 9cqw;
  }
}
.wp-pagenavi .current {
  border: 0;
  color: #C9D0D5;
  background: #fff;
  font-weight: normal;
}
.wp-pagenavi .extend {
  background: none;
  color: #111;
}
.wp-pagenavi .previouspostslink {
  width: fit-content;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #111;
  padding-left: 30px;
  background: url(img/common/arrow03.png);
  background-color: none;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: left center;
}
@media screen and (min-width: 601px) {
  .wp-pagenavi .previouspostslink {
    position: absolute;
    left: 0;
  }
}
@media screen and (max-width: 750px) {
  .wp-pagenavi .previouspostslink {
    width: 54px;
    padding-left: 0;
    background-position: center center;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    border-radius: 100%;
  }
  .wp-pagenavi .previouspostslink .prev {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .wp-pagenavi .previouspostslink {
    width: 9cqw;
    height: 9cqw;
  }
}
.wp-pagenavi .nextpostslink {
  width: fit-content;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #111;
  padding-right: 30px;
  background: url(img/common/arrow02.png);
  background-color: none;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: right center;
}
@media screen and (min-width: 601px) {
  .wp-pagenavi .nextpostslink {
    position: absolute;
    right: 0;
  }
}
@media screen and (max-width: 750px) {
  .wp-pagenavi .nextpostslink {
    width: 54px;
    padding-left: 0;
    background-position: center center;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    border-radius: 100%;
  }
  .wp-pagenavi .nextpostslink .next {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .wp-pagenavi .nextpostslink {
    width: 9cqw;
    height: 9cqw;
  }
}

/* wordpress breadcrumbs */
.txt_ellipsis .breadcrumbs span:last-of-type {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 130px;
  display: inline-block;
  vertical-align: bottom;
}

.breadcrumbs {
  margin: 2% 0;
  font-size: 1.2rem;
}
.breadcrumbs .container {
  margin-left: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.breadcrumbs a {
  color: #231815;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #000;
}
.breadcrumbs ul, .breadcrumbs ol {
  list-style: none;
  padding: 0;
}
.breadcrumbs li {
  display: inline;
}
.breadcrumbs li:before {
  content: ">";
  margin: 0 10px;
}
.breadcrumbs li:first-child:before {
  display: none;
}

@media screen and (max-width: 560px) {
  .breadcrumbs {
    font-size: 1rem;
  }
  .breadcrumbs li:before {
    margin: 0 5px;
  }
}
/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img,
.slick-initialized .slick-slide {
  display: block;
}

.slick-slide.slick-loading img,
.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./img/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick/slick.eot");
  src: url("./fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick/slick.woff") format("woff"), url("./fonts/slick/slick.ttf") format("truetype"), url("./fonts/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  width: 16px;
  height: 31px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: -15px;
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity: 0.65;
  color: transparent;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.25;
}

.slick-prev {
  left: 30px;
  background: url(img/common/btn-prev.png) no-repeat center center;
}

.slick-next {
  right: 30px;
  background: url(img/common/btn-next.png) no-repeat center center;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #AAA;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots .slick-active button:before {
  color: #000;
  opacity: 0.75;
}

.slick-archive {
  padding-top: 10px;
  margin: 0 auto;
  width: calc(100% - 50px);
}

.slick-archive__item {
  padding: 5px;
}

.slick-archive__item a {
  display: block;
  max-width: 350px;
  margin: auto;
  color: #231815;
  text-decoration: none;
  position: relative;
}

.slick-archive__item a:hover {
  opacity: 0.65;
}

.slick-archive__date {
  margin-top: 5px;
  display: block;
}

.slick-archive__title {
  display: block;
  font-weight: bold;
}

.slick-archive__label {
  background-color: #464a4c;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: .2em 2em;
}

@media screen and (max-width: 560px) {
  .slick-archive__date,
  .slick-archive__label {
    font-size: 1rem;
  }

  .slick-archive__title {
    font-size: 1.2rem;
  }
}
 /***************************

layout/header.scss

***************************/
/* toggle button */
.toggle {
  display: none;
}

@media screen and (max-width: 1024px) {
  .toggle {
    cursor: pointer;
    display: inline-block;
    background: none;
    border: none;
    outline: none;
    position: absolute;
    padding: 10px;
    right: 20px;
    text-align: center;
    top: 50%;
    translate: 0 -50%;
    z-index: 7;
  }

  .toggle__bar {
    position: relative;
    margin: 8px auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .toggle__bar, .toggle__bar::before, .toggle__bar::after {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #111;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }

  .toggle__bar::before, .toggle__bar::after {
    position: absolute;
    content: "";
  }

  .toggle__bar::before {
    top: -7px;
  }

  .toggle__bar::after {
    top: 7px;
  }
}
.toggle.active .toggle__bar {
  background-color: transparent;
}

.toggle.active .toggle__bar::before {
  -webkit-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}

.toggle.active .toggle__bar::after {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}

.toggle__text {
  line-height: 1;
  display: inline-block;
}
.toggle__text::before {
  content: 'MENU';
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

/* Hamburger menu */
.gnav {
  line-height: 1.6;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .gnav {
    position: fixed;
    right: 0;
    top: 75px;
    max-width: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    z-index: 6;
    padding: 20px 15px;
  }
}
 /***************************

 header

***************************/
.header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .header {
    opacity: 0;
    visibility: hidden;
  }
}
.header .logo {
  width: 90px;
}
@media screen and (min-width: 1025px) {
  .header .logo {
    position: absolute;
    width: auto;
    right: 30px;
    top: 50%;
    translate: 0 -50%;
  }
}

.header_inner {
  position: relative;
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
@media screen and (min-width: 1025px) {
  .header_inner {
    padding: 0 30px;
    height: 120px;
  }
}
@media screen and (min-width: 1201px) {
  .header_inner {
    justify-content: center;
  }
}

.gnav-menu {
  display: flex;
  gap: 15px;
}
@media screen and (min-width: 1025px) {
  .gnav-menu {
    align-items: center;
    gap: 5px 30px;
  }
}
@media screen and (max-width: 1024px) {
  .gnav-menu {
    flex-direction: column;
  }
}
.gnav-menu li {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .gnav-menu li {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 500px) {
  .gnav-menu li {
    font-size: 1.6rem;
  }
}
.gnav-menu li a:hover {
  opacity: 1;
}
.gnav-menu li a:hover span {
  background-size: 100% 1px;
  transition: all .6s;
}
.gnav-menu li a span {
  background: linear-gradient(0deg, #111 1px, transparent 1px);
  background-position: bottom center;
  background-size: 0 1px;
  background-repeat: no-repeat;
  padding-bottom: 3px;
}

 /***************************

layout/footer.scss

***************************/
.footer {
  width: 100%;
  margin-top: 200px;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 100px;
  }
}

.f-gallery-block {
  width: 100%;
  background: linear-gradient(180deg, transparent 50%, #F1F5F8 50%);
}
.f-gallery-block .swiper-wrapper {
  transition-timing-function: linear;
}
.f-gallery-block .swiper-slide img {
  height: auto;
  width: 100%;
}
.f-gallery-block .inner {
  width: 100%;
  aspect-ratio: 1 / 1;
}
.f-gallery-block .inner p {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 500px) {
  .f-gallery-block .inner p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 375px) {
  .f-gallery-block .inner p {
    font-size: 1.3rem;
  }
}
.f-gallery-block .inner img {
  border-radius: 100%;
}
.f-gallery-block .inner .red {
  background: #FF3347;
}
.f-gallery-block .inner .green {
  background: #53DC97;
}
.f-gallery-block .inner .purple {
  background: #7171FC;
}

.f-main-block {
  width: 100%;
  background: #F1F5F8;
  padding-top: 100px;
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .f-main-block {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.f-main-block .inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (min-width: 1501px) {
  .f-main-block .inner {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .f-main-block .inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 500px) {
  .f-main-block .inner {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.f-main-block .add {
  min-width: 310px;
}
@media screen and (max-width: 500px) {
  .f-main-block .add {
    width: 100%;
    min-width: auto;
    display: flex;
    flex-direction: column;
    gap: 30px 50px;
  }
}
.f-main-block .add .logo {
  margin-bottom: 40px;
}
@media screen and (max-width: 500px) {
  .f-main-block .add .logo {
    margin-bottom: 0;
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .f-main-block .add .txt {
    text-align: center;
  }
}
.f-main-block .add h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.f-main-block .sub-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px 30px;
}
@media screen and (max-width: 768px) {
  .f-main-block .sub-nav {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 500px) {
  .f-main-block .sub-nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
  }
  .f-main-block .sub-nav li {
    text-align: center;
  }
}
@media screen and (max-width: 320px) {
  .f-main-block .sub-nav {
    grid-template-columns: 1fr;
  }
}
.f-main-block .sub-nav a:hover {
  opacity: 1;
}
.f-main-block .sub-nav a:hover span {
  background-size: 100% 1px;
  transition: all .6s;
}
.f-main-block .sub-nav a span {
  background: linear-gradient(0deg, #111 1px, transparent 1px);
  background-position: bottom center;
  background-size: 0 1px;
  background-repeat: no-repeat;
  padding-bottom: 3px;
}

.f-company-block {
  padding: 45px 0;
}
@media screen and (max-width: 768px) {
  .f-company-block {
    padding: 25px 0;
  }
}

.companylogoSlider {
  width: 100%;
}
.companylogoSlider .swiper-wrapper {
  transition-timing-function: linear;
}
.companylogoSlider .swiper-slide {
  width: fit-content !important;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/*////////////////////////

 user common css

////////////////////////*/
@media screen and (max-width: 1024px) {
  .main {
    margin-top: 75px;
  }
}

.container_l {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1501px) {
  .container_l {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 500px) {
  .container_l {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.sp_550 {
  display: none;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.vt_align_top {
  vertical-align: top;
}

.wd_100 {
  width: 100%;
}

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

  .pc {
    display: none;
  }
}
@media screen and (min-width: 651px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 650px) {
  a[href^="tel:"] {
    text-decoration: underline;
    display: inline-block;
  }
}
@media screen and (max-width: 550px) {
  .pc_550 {
    display: none;
  }

  .sp_550 {
    display: block;
  }
}
/*////////////////////////

fonts

////////////////////////*/
.ls_5 {
  letter-spacing: 0.05em;
}

.lh_2 {
  line-height: 2;
}

.lh_18 {
  line-height: 1.8;
}

.lh_13 {
  line-height: 1.3;
}

.lh_1 {
  line-height: 1;
}

.thin {
  font-weight: 100;
}

.ex-light {
  font-weight: 200;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.sm-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.ex-bold {
  font-weight: 800;
}

.black {
  font-weight: 900;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
}

.barlow {
  font-family: "Barlow Semi Condensed", sans-serif;
}

.fz48 {
  font-size: clamp(3.2rem, 7.5vw, 4.8rem);
}

.fz32 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
}

.fz26 {
  font-size: clamp(2.2rem, 4.0625vw, 2.6rem);
}

.fz20 {
  font-size: clamp(1.6rem, 3.125vw, 2rem);
}

.fz18 {
  font-size: 1.8rem;
}

.fz12 {
  font-size: 1.2rem;
}

.col_blue {
  color: #3953F5;
}

.col_green {
  color: #53DC97;
}

.col_purple {
  color: #7171FC;
}

.col_red {
  color: #FF3347;
}

/***************************

object/project/effects.scss

***************************/
/*ロード時にフェードイン*/
.fadein {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*スクロールフェードイン*/
.fadeInTop {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInTop;
  animation-name: fadeInTop;
  visibility: visible !important;
}

@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInBottom {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInBottom;
  animation-name: fadeInBottom;
  visibility: visible !important;
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInLeft {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  visibility: visible !important;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  visibility: visible !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes aboutText {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@-webkit-keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes faq {
  0% {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  100% {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 1.8;
    visibility: visible;
  }
}
/*////////////////////////

btn

////////////////////////*/
.btn-A {
  position: relative;
  max-width: 260px;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding-left: 20px;
  padding-right: 40px;
  background: #111;
  border-radius: 3px;
  font-size: 1.6rem;
  color: #fff;
}
.btn-A::before {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  background: url(img/common/arrow01.png);
  right: 25px;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
  pointer-events: none;
}
.btn-A:hover {
  color: #fff;
  opacity: 1;
}
.btn-A:hover::before {
  translate: 10px -50%;
  transition: all .6s;
}

.btn-back {
  position: relative;
  max-width: 260px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding-right: 20px;
  padding-left: 40px;
  background: #111;
  border-radius: 3px;
  font-size: 1.6rem;
  color: #fff;
}
.btn-back::before {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  background: url(img/common/arrow04.png);
  left: 25px;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
  pointer-events: none;
}
.btn-back:hover {
  color: #fff;
  opacity: 1;
}
.btn-back:hover::before {
  translate: -10px -50%;
  transition: all .6s;
}

.btn-center {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .tab-center {
    margin: 0 auto;
  }
}
/*////////////////////////

hdg__

////////////////////////*/
.s-hdg01 {
  position: relative;
  padding-left: 20px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 2rem;
}
.s-hdg01:before {
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  background: #111;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  border-radius: 100%;
}

/***************************

object/project/top.scss

***************************/
.t-mv {
  width: 100%;
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .t-mv {
    margin-bottom: 100px;
  }
}

.main-visual {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.main-visual_gallery {
  width: 112.5vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1500px) {
  .main-visual_gallery {
    width: calc(((100% - 250px) / 3) * 4);
  }
}
@media screen and (max-width: 1024px) {
  .main-visual_gallery {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .main-visual_gallery {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}
.main-visual_gallery .gallery__item_image {
  width: 100%;
  aspect-ratio: 1 / 1;
}
.main-visual_gallery .gallery__item_image img {
  width: 100%;
}
.main-visual_gallery .gallery__item_txt p {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
}
.main-visual_gallery .gallery__item_txt.green p {
  font-size: 2.6rem;
  color: #fff;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #53DC97;
}
@media screen and (max-width: 1500px) {
  .main-visual_gallery .gallery__item_txt.green p {
    font-size: 2cqw;
  }
}
@media screen and (max-width: 768px) {
  .main-visual_gallery .gallery__item_txt.green p {
    font-size: 3cqw;
  }
}
@media screen and (max-width: 1024px) {
  .main-visual_gallery .gallery__item_txt.none {
    display: none;
  }
}
.main-visual_gallery .gallery__item_txt.purple p {
  background: #7171FC;
}
.main-visual_gallery .gallery__item_txt.gray p {
  background: #F1F5F8;
}
@media screen and (max-width: 1024px) {
  .main-visual_gallery .gallery__item_txt.gray {
    display: none;
  }
}
.main-visual_gallery .gallery__item_txt.red p {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  writing-mode: vertical-rl;
  color: #fff;
  display: flex;
  background: #FF3347;
  padding-top: 7.8vw;
  padding-right: 5.7vw;
}
@media screen and (max-width: 1500px) {
  .main-visual_gallery .gallery__item_txt.red p {
    padding-top: 25%;
    padding-right: 20%;
    font-size: 1cqw;
  }
}
@media screen and (max-width: 768px) {
  .main-visual_gallery .gallery__item_txt.red p {
    font-size: 2cqw;
  }
}

.main-visual_menu {
  width: 16%;
  position: absolute;
  padding: 0 50px;
  padding-top: 30px;
  top: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  z-index: 3;
}
@media screen and (min-width: 1601px) {
  .main-visual_menu {
    padding-top: 50px;
  }
}
@media screen and (max-width: 1500px) {
  .main-visual_menu {
    width: 250px;
  }
}
@media screen and (max-width: 1024px) {
  .main-visual_menu {
    display: none;
  }
}
.main-visual_menu .logo {
  margin-bottom: 20px;
}
.main-visual_menu .mv-nav li {
  text-align: right;
}
.main-visual_menu .mv-nav li:not(:last-of-type) {
  margin-bottom: 15px;
}
.main-visual_menu .mv-nav a:hover {
  opacity: 1;
}
.main-visual_menu .mv-nav a:hover span {
  background-size: 100% 1px;
  transition: all .6s;
}
.main-visual_menu .mv-nav a span {
  background: linear-gradient(0deg, #111 1px, transparent 1px);
  background-position: bottom center;
  background-size: 0 1px;
  background-repeat: no-repeat;
  padding-bottom: 3px;
}

.t-about {
  width: 100%;
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .t-about {
    margin-bottom: 100px;
  }
}

.t-about_block {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .t-about_block {
    flex-direction: column;
  }
}

.t-about_block__txt {
  max-width: 600px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .t-about_block__txt {
    max-width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .t-about_block__img {
    width: 100%;
    text-align: center;
  }
}

.t-product {
  width: 100%;
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .t-product {
    margin-bottom: 100px;
  }
}

.t-product_list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1024px) {
  .t-product_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .t-product_list {
    grid-template-columns: 1fr;
  }
}

.t-product_list__block {
  position: relative;
}
.t-product_list__block::after {
  position: absolute;
  content: '';
  width: 80px;
  height: 80px;
  background: url(img/common/arrow01.png);
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center  center;
  z-index: 2;
  right: 0;
  bottom: 0;
}
.t-product_list__block.t-product_list__block--research {
  background: #53DC97;
}
.t-product_list__block.t-product_list__block--research h3 {
  color: #53DC97;
}
.t-product_list__block.t-product_list__block--project {
  background: #7171FC;
}
.t-product_list__block.t-product_list__block--project h3 {
  color: #7171FC;
}
.t-product_list__block.t-product_list__block--intro {
  background: #FF3347;
}
.t-product_list__block.t-product_list__block--intro h3 {
  color: #FF3347;
}
.t-product_list__block a:hover {
  opacity: 1;
}
.t-product_list__block a:hover .image {
  position: relative;
}
.t-product_list__block a:hover .image img {
  scale: 1.1;
  transition: all .8s;
}
.t-product_list__block .num {
  position: absolute;
  padding-left: 20px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 2rem;
  color: #fff;
  z-index: 2;
  top: 15px;
  left: 20px;
}
.t-product_list__block .num::before {
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  background: #fff;
  border-radius: 100%;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.t-product_list__block .image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  overflow: hidden;
}
.t-product_list__block .image img {
  width: 100%;
}
.t-product_list__block .txt {
  position: absolute;
  width: calc(100% - 80px);
  z-index: 3;
  bottom: 0;
  left: 0;
}
.t-product_list__block .txt h3 {
  width: fit-content;
  font-size: 2cqw;
  background: #111;
  padding: 4px 10px;
}
@media screen and (max-width: 1024px) {
  .t-product_list__block .txt h3 {
    font-size: 3cqw;
  }
}
@media screen and (max-width: 600px) {
  .t-product_list__block .txt h3 {
    font-size: 5cqw;
  }
}
.t-product_list__block .txt p {
  width: fit-content;
  font-size: 1cqw;
  background: #111;
  color: #fff;
  padding: 5px;
}
@media screen and (max-width: 1024px) {
  .t-product_list__block .txt p {
    font-size: 1.5cqw;
  }
}
@media screen and (max-width: 600px) {
  .t-product_list__block .txt p {
    font-size: 2.5cqw;
  }
}

.t-information {
  width: 100%;
  overflow: hidden;
}
.t-information .btn-A {
  margin-left: auto;
  margin-right: 0;
}

.t-information_inner {
  width: calc(1320px + ((100% - 1320px) / 2));
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 1460px) {
  .t-information_inner {
    width: 95%;
    margin-left: 5%;
    margin-right: 0;
  }
}

.inforSlider {
  width: 100%;
}
.inforSlider .swiper-wrapper {
  overflow: visible;
}
.inforSlider .swiper-slide {
  height: auto;
}
.inforSlider .inforSlider-slide_inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  background: #F1F5F8;
  border-radius: 3px;
  padding: 70px 40px 15px;
}
@media screen and (max-width: 768px) {
  .inforSlider .inforSlider-slide_inner {
    padding: 35px 20px 15px;
  }
}
.inforSlider .inforSlider-slide_inner .box {
  margin-bottom: 20px;
}
.inforSlider .inforSlider-slide_inner .ttl {
  font-size: 1.8rem;
}
.inforSlider .inforSlider-slide_inner .tag {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  border-top: 1px solid #E2E9EF;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
}
.inforSlider .inforSlider-slide_inner .tag::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  background: url(img/common/arrow02.png);
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
.inforSlider .inforSlider-slide_inner .tag li {
  position: relative;
  padding-left: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 2;
  color: #9496A1;
}
.inforSlider .inforSlider-slide_inner .tag li::before {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 100%;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.inforSlider .inforSlider-slide_inner .tag li.t-yellow::before {
  background: #FFDD00;
}
.inforSlider .inforSlider-slide_inner .tag li.t-green::before {
  background: #53DC97;
}
.inforSlider .inforSlider-slide_inner .tag li.t-purple::before {
  background: #7171FC;
}
.inforSlider .inforSlider-slide_inner .tag li.t-red::before {
  background: #FF3347;
}
.inforSlider .main-box {
  width: 100%;
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.inforSlider .main-box .num {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  writing-mode: vertical-rl;
}
.inforSlider .main-box .thumbnail {
  width: calc(100% - 40px);
}
.inforSlider .main-box .thumbnail img {
  width: 100%;
  border-radius: 3px;
  aspect-ratio: 1/1;
  object-fit: contain;
}

/***************************

object/project/subpage.scss

***************************/
.subpage {
  position: relative;
  width: 100%;
  margin-bottom: 80px;
}
@media screen and (max-width: 500px) {
  .subpage {
    margin-bottom: 50px;
  }
}

.subpage-inner {
  position: relative;
  display: flex;
  width: 100%;
}

.subpage-inner__title {
  position: relative;
  display: flex;
  align-items: center;
  width: 84vw;
  height: calc(84vw / 3);
}
@media screen and (max-width: 1500px) {
  .subpage-inner__title {
    width: 1260px;
    height: calc(1260px / 3);
  }
}
@media screen and (max-width: 1260px) {
  .subpage-inner__title {
    width: 100vw;
    height: calc(100vw / 3);
  }
}
@media screen and (max-width: 500px) {
  .subpage-inner__title {
    height: auto;
    padding: 35px 0;
  }
}
.subpage-inner__title:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: url(img/subpage/path.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .subpage-inner__title:after {
    width: 100vw;
    height: calc(118vw / 3);
    bottom: 50%;
    translate: 0 50%;
    background-size: auto 100%;
  }
}
@media screen and (max-width: 500px) {
  .subpage-inner__title:after {
    height: 100%;
  }
}
.subpage-inner__title .box {
  max-width: 1360px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: calc((100vw - 1360px) / 2);
}
@media screen and (max-width: 1500px) {
  .subpage-inner__title .box {
    width: 90%;
    margin-left: 5vw;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .subpage-inner__title .box {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 0;
  }
}
.subpage-inner__title .supage-ttl {
  position: relative;
  font-size: 4cqw;
  font-weight: 800;
}
@media screen and (max-width: 1024px) {
  .subpage-inner__title .supage-ttl {
    font-size: 5.5cqw;
  }
}
@media screen and (max-width: 768px) {
  .subpage-inner__title .supage-ttl {
    font-size: 6.5cqw;
  }
}
@media screen and (max-width: 500px) {
  .subpage-inner__title .supage-ttl {
    font-size: 3.5rem;
  }
}
.subpage-inner__title .supage-ttl:before {
  position: absolute;
  content: '';
  width: 20px;
  height: 60px;
  background: url(img/subpage/supage-ttl-deco.png);
  top: 50%;
  left: -40px;
  translate: 0 -50%;
}
@media screen and (max-width: 1024px) {
  .subpage-inner__title .supage-ttl:before {
    width: 10px;
    height: 30px;
    left: -20px;
    background-size: cover;
  }
}
.subpage-inner__title .supage-sub-ttl {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 2rem;
}

.subpage-inner_menu {
  width: 250px;
  padding: 30px 3% 0;
  text-align: right;
}
@media screen and (min-width: 1501px) {
  .subpage-inner_menu {
    width: 16vw;
    padding: 50px 3% 0;
  }
}
@media screen and (max-width: 1500px) {
  .subpage-inner_menu {
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .subpage-inner_menu {
    display: none;
  }
}
.subpage-inner_menu .logo {
  margin-bottom: 20px;
}
@media screen and (max-width: 1500px) {
  .subpage-inner_menu .logo {
    text-align: right;
  }
  .subpage-inner_menu .logo img {
    width: 120px;
  }
}
.subpage-inner_menu .subpage-nav li:not(:last-of-type) {
  margin-bottom: 15px;
}
@media screen and (max-width: 1500px) {
  .subpage-inner_menu .subpage-nav li:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
.subpage-inner_menu .subpage-nav li a:hover {
  opacity: 1;
}
.subpage-inner_menu .subpage-nav li a:hover span {
  background-size: 100% 1px;
  transition: all .6s;
}
.subpage-inner_menu .subpage-nav li a span {
  background: linear-gradient(0deg, #111 1px, transparent 1px);
  background-position: bottom center;
  background-size: 0 1px;
  background-repeat: no-repeat;
  padding-bottom: 3px;
}

/***************************

object/project/about.scss

***************************/
.subpage.about .supage-ttl {
  color: #3953F5;
}

.about01 {
  width: 100%;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .about01 {
    margin-bottom: 70px;
  }
}

.prodact-header-block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .prodact-header-block {
    flex-direction: column;
  }
}

.prodact-header_question {
  width: fit-content;
}
.prodact-header_question .ttl {
  font-size: clamp(2.8rem, 7.5vw, 4.8rem);
}
.prodact-header_question .ttl span {
  color: #fff;
  background: #111;
  padding: 3px 10px;
}

.prodact-header_answer {
  max-width: 520px;
  width: calc(100%  - 610px);
}
@media screen and (max-width: 1024px) {
  .prodact-header_answer {
    max-width: 100%;
    width: 100%;
  }
}
.prodact-header_answer .flag {
  position: relative;
  width: 220px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 2rem;
  color: #fff;
  border-radius: 22px;
  margin-bottom: 30px;
}
.prodact-header_answer .flag:after {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  bottom: -5px;
  left: 50%;
  translate: -50% 0;
}
.prodact-header_answer .flag.about {
  background: #3953F5;
}
.prodact-header_answer .flag.about:after {
  background: #3953F5;
}
.prodact-header_answer .flag.chiikikasseika {
  background: #53DC97;
}
.prodact-header_answer .flag.chiikikasseika:after {
  background: #53DC97;
}
.prodact-header_answer .flag.dream {
  background: #7171FC;
}
.prodact-header_answer .flag.dream:after {
  background: #7171FC;
}

.about-group-image {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .about-group-image {
    margin-top: 50px;
  }
}

.about02 {
  width: 100%;
}

.logo-mark-list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .logo-mark-list {
    grid-template-columns: 1fr;
  }
}
.logo-mark-list .logo {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .logo-mark-list .logo img {
    width: 100%;
  }
}

/***************************

object/project/chiikikasseika.scss

***************************/
.subpage.chiikikasseika .supage-ttl {
  color: #53DC97;
}

.chiikikasseika01 {
  width: 100%;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .chiikikasseika01 {
    margin-bottom: 70px;
  }
}

.chiikikasseika02 {
  width: 100%;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .chiikikasseika02 {
    margin-bottom: 70px;
  }
}
.chiikikasseika02 .btn-A {
  margin-left: auto;
}

.news-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .news-list {
    grid-template-columns: 1fr;
  }
}
.news-list .news-list_item_inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  background: #F1F5F8;
  border-radius: 3px;
  padding: 70px 40px 15px;
}
@media screen and (max-width: 768px) {
  .news-list .news-list_item_inner {
    padding: 35px 20px 15px;
  }
}
.news-list .news-list_item_inner .box {
  margin-bottom: 20px;
}
.news-list .news-list_item_inner .ttl {
  font-size: 1.8rem;
}
.news-list .news-list_item_inner .tag {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  border-top: 1px solid #E2E9EF;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
}
.news-list .news-list_item_inner .tag::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  background: url(img/common/arrow02.png);
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
.news-list .news-list_item_inner .tag li {
  position: relative;
  padding-left: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 2;
  color: #9496A1;
}
.news-list .news-list_item_inner .tag li::before {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 100%;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.news-list .news-list_item_inner .tag li.t-yellow::before {
  background: #FFDD00;
}
.news-list .news-list_item_inner .tag li.t-green::before {
  background: #53DC97;
}
.news-list .news-list_item_inner .tag li.t-purple::before {
  background: #7171FC;
}
.news-list .news-list_item_inner .tag li.t-red::before {
  background: #FF3347;
}
.news-list .main-box {
  width: 100%;
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.news-list .main-box .num {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  writing-mode: vertical-rl;
}
.news-list .main-box .thumbnail {
  width: calc(100% - 40px);
}
.news-list .main-box .thumbnail img {
  width: 100%;
  border-radius: 3px;
    aspect-ratio: 1/1;
  object-fit: contain;
}

.chiikikasseika03 {
  width: 100%;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .chiikikasseika03 {
    margin-bottom: 70px;
  }
}

.photo-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
@media screen and (max-width: 1024px) {
  .photo-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .photo-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}

.photo-gallery_box {
  position: relative;
}
.photo-gallery_box:after {
  position: absolute;
  content: '';
  width: 36px;
  height: 36px;
  background: url(img/common/modal.png);
  bottom: 10px;
  right: 10px;
  z-index: 4;
  pointer-events: none;
}
.photo-gallery_box .image {
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
}
.photo-gallery_box .image:hover {
  cursor: pointer;
}
.photo-gallery_box .image:hover img {
  scale: 1.1;
  transition: all .8s;
}
.photo-gallery_box .image img {
  width: 100%;
  border-radius: 3px;
  pointer-events: none;
}
.photo-gallery_box .modal-box {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  top: 0;
  left: 0;
}
.photo-gallery_box .modal-box .modal-box_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
}
.photo-gallery_box .modal-box .modal-box_body {
  position: relative;
  padding: 3vw 5vw;
}
.photo-gallery_box .modal-box .modal-box_body .inner {
  margin-bottom: 20px;
}
.photo-gallery_box .modal-box .close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 35px;
  border-radius: 35px;
  background: #fff;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 2;
  margin: 0 auto;
}
.photo-gallery_box .modal-box .close:hover {
  cursor: pointer;
  opacity: 0.8;
}

.chiikikasseika04 {
  width: 100%;
}

.research-themes {
  width: 100%;
  margin-bottom: 10px;
}

.research-themes_block {
  width: 100%;
  display: flex;
  border-top: 1px solid #E2E9EF;
  padding: 25px 0;
}
@media screen and (max-width: 600px) {
  .research-themes_block {
    flex-direction: column;
    padding: 15px 0;
  }
}
.research-themes_block dt {
  width: 200px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .research-themes_block dt {
    width: 150px;
  }
}
@media screen and (max-width: 600px) {
  .research-themes_block dt {
    margin-bottom: 15px;
    width: 100%;
  }
}
.research-themes_block dd {
  width: calc(100% - 200px);
}
@media screen and (max-width: 768px) {
  .research-themes_block dd {
    width: calc(100% - 150px);
  }
}
@media screen and (max-width: 600px) {
  .research-themes_block dd {
    width: 100%;
  }
}

.research-themes_list {
  width: 100%;
}
.research-themes_list li {
  position: relative;
  padding-left: 15px;
}
.research-themes_list li:before {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  background: #111;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  left: 0;
  top: 9px;
}
.research-themes_list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.research-themes_list li a {
  display: flex;
  font-weight: 500;
}
.research-themes_list li a span {
  text-decoration: underline;
}

/***************************

object/project/dream.scss

***************************/
.subpage.dream .supage-ttl {
  color: #7171FC;
}

/***************************

object/project/chiikikatsudou.scss

***************************/
.subpage.chiikikatsudou .supage-ttl {
  color: #FF3347;
}

.chiikikatsudou01 {
  width: 100%;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .chiikikatsudou01 {
    margin-bottom: 70px;
  }
}

.activity-box {
  display: flex;
  justify-content: space-between;
  gap: 30px 50px;
  width: 100%;
  padding: 40px 0;
  border-top: 1px solid #E2E9EF;
}
@media screen and (max-width: 768px) {
  .activity-box {
    flex-direction: column;
  }
}
.activity-box:last-of-type {
  border-bottom: 1px solid #E2E9EF;
}
.activity-box .activity-box_txt {
  max-width: 640px;
  width: 48%;
}
@media screen and (max-width: 768px) {
  .activity-box .activity-box_txt {
    max-width: 100%;
    width: 100%;
  }
}
.activity-box .activity-box_txt .flag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95px;
  height: 25px;
  background: #FF3347;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.4rem;
  color: #fff;
  border-radius: 14px;
  margin-bottom: 15px;
}
.activity-box .activity-box_gallery {
  max-width: 540px;
  width: 41%;
}
@media screen and (max-width: 768px) {
  .activity-box .activity-box_gallery {
    width: 100%;
    margin: 0 auto;
  }
}

.activitySlider .activitySlider-slide img {
  border-radius: 3px;
}
.activitySlider .swiper-pagination {
  min-width: 60px;
  width: fit-content;
  padding: 2px 0;
  background: rgba(17, 17, 17, 0.75);
  border-radius: 14px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.4rem;
  color: #fff;
  left: 10px;
}

.chiikikatsudou02 .btn-A {
  margin-left: auto;
}

/***************************

object/project/news.scss

***************************/
.news01 {
  width: 100%;
}
.news01 .news-list {
  margin-bottom: 70px;
}
@media screen and (max-width: 500px) {
  .news01 .news-list {
    margin-bottom: 40px;
  }
}

.news-cat-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 10px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .news-cat-list {
    margin-bottom: 50px;
  }
}
.news-cat-list li {
  position: relative;
}
.news-cat-list li a {
  width: fit-content;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  border: 1px solid #C9D0D5;
  border-radius: 25px;
}
@media screen and (max-width: 768px) {
  .news-cat-list li a {
    padding: 0 20px;
    height: 40px;
  }
}
.news-cat-list li.now:after {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  left: 50%;
  bottom: -5px;
  translate: -50% 0;
}
.news-cat-list li.all.now:after {
  background: #3953F5;
}
.news-cat-list li.all.now a {
  border-color: #3953F5;
  background: #3953F5;
  color: #fff;
}
.news-cat-list li.all a {
  color: #3953F5;
}
.news-cat-list li.info.now:after {
  background: #3953F5;
}
.news-cat-list li.info.now a {
  border-color: #3953F5;
  background: #3953F5;
  color: #fff;
}
.news-cat-list li.info a {
  color: #3953F5;
}
.news-cat-list li.chiikikasseika.now:after {
  background: #53DC97;
}
.news-cat-list li.chiikikasseika.now a {
  border-color: #53DC97;
  background: #53DC97;
  color: #fff;
}
.news-cat-list li.chiikikasseika a {
  color: #53DC97;
}
.news-cat-list li.dream.now:after {
  background: #7171FC;
}
.news-cat-list li.dream.now a {
  border-color: #7171FC;
  background: #7171FC;
  color: #fff;
}
.news-cat-list li.dream a {
  color: #7171FC;
}
.news-cat-list li.chiikikatsudou.now:after {
  background: #FF3347;
}
.news-cat-list li.chiikikatsudou.now a {
  border-color: #FF3347;
  background: #FF3347;
  color: #fff;
}
.news-cat-list li.chiikikatsudou a {
  color: #FF3347;
}

@media screen and (min-width: 1025px) {
  .subpage.detail .subpage-inner__title .box {
    padding-top: 5vw;
  }
}
@media screen and (max-width: 1024px) {
  .subpage.detail .subpage-inner__title .box {
    width: 90%;
  }
}
.subpage.detail .detail-ttl {
  position: relative;
  padding-top: 40px;
  margin-bottom: 20px;
  font-size: 2.5cqw;
}
@media screen and (max-width: 768px) {
  .subpage.detail .detail-ttl {
    padding-top: 20px;
    margin-bottom: 10px;
    font-size: 4cqw;
  }
}
@media screen and (max-width: 500px) {
  .subpage.detail .detail-ttl {
    font-size: 2.5rem;
  }
}
.subpage.detail .detail-ttl:before {
  position: absolute;
  content: '';
  width: 120px;
  height: 3px;
  background: #111;
  left: 0;
  top: 0;
}
.subpage.detail .detail-data {
  display: flex;
  align-items: center;
  gap: 30px;
}
.subpage.detail .detail-data .day {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}
.subpage.detail .detail-data .cat {
  position: relative;
  font-size: 1.2rem;
  font-weight: 600;
  color: #9496A1;
  padding-left: 15px;
}
.subpage.detail .detail-data .cat:before {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 100%;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.subpage.detail .detail-data .cat.t-yellow::before {
  background: #FFDD00;
}
.subpage.detail .detail-data .cat.t-green::before {
  background: #53DC97;
}
.subpage.detail .detail-data .cat.t-purple::before {
  background: #7171FC;
}
.subpage.detail .detail-data .cat.t-red::before {
  background: #FF3347;
}

.detail-editor {
  width: 100%;
  padding-bottom: 150px;
  margin-bottom: 80px;
  border-bottom: 1px solid #E2E9EF;
}
@media screen and (max-width: 768px) {
  .detail-editor {
    padding-bottom: 80px;
    margin-bottom: 50px;
  }
}
.detail-editor p {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2;
}
@media screen and (max-width: 500px) {
  .detail-editor p {
    font-size: 1.6rem;
  }
}
.detail-editor .l-style01 {
  width: 100%;
}
.detail-editor .l-style01 li {
  position: relative;
  padding-left: 15px;
}
.detail-editor .l-style01 li:before {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  background: #111;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  left: 0;
  top: 9px;
}
.detail-editor .l-style01 li:not(:last-of-type) {
  margin-bottom: 10px;
}
.detail-editor .l-style01 li a {
  font-weight: 500;
  text-decoration: underline;
}

/***************************

object/project/link.scss

***************************/
.link01 {
  width: 100%;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .link01 {
    margin-bottom: 60px;
  }
}

.link02 {
  width: 100%;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .link02 {
    margin-bottom: 60px;
  }
}

.link-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .link-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .link-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 500px) {
  .link-list {
    gap: 20px 10px;
  }
}
.link-list .logo {
  margin-bottom: 15px;
}
.link-list .name {
  text-align: center;
}
.link-list .name a {
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: underline;
}
@media screen and (max-width: 500px) {
  .link-list .name a {
    font-size: 1.6rem;
  }
}
.link-list .name a:after {
  display: inline-block;
  content: '';
  width: 11px;
  height: 11px;
  background: url(img/common/link.png);
  margin-left: 10px;
}
