@charset "UTF-8";
/*
#overview
色

サイト全体で使用している色一覧
*/
/*
#colors
色

@white #fff
@black #444444
@gray #626262
@beige #efeee3
@beige2 #e5e1cd
@blue #4098bc
@blue2 #4064bc
@sky #80c5db
@sky2 #eaf5f9
@gold #a69e4d
@yellow #fff100
@pink #f19ec2
@pink2 #aa5290
@red #e60012
*/
:root {
  --color-white: #fff;
  --color-black: #333;
  --color-navy: #232c5a;
  --color-blue: #00486e;
  --color-red: #e60012;
  --color-pink: #d580b2;
  --color-green: #506d69;
  --color-gray: #eee;
  --color-gray2: #ccc;
  --color-main: var(--color-green, #506d69);
  --color-sub: var(--color-blue, #89a1ce);
  --text-color: var(--color-black, #333);
  --pattern-cross: repeating-linear-gradient(
			45deg,
			var(--color-gray) 25%,
			transparent 25%,
			transparent 75%,
			var(--color-gray) 75%,
			var(--color-gray)
		),
		repeating-linear-gradient(
			45deg,
			var(--color-gray) 25%,
			transparent 25%,
			transparent 75%,
			var(--color-gray) 75%,
			var(--color-gray)
		);
  --pattern-stripe: repeating-linear-gradient(
		-45deg,
		transparent 0,
		transparent 3px,
		var(--color-gray) 3px,
		var(--color-gray) 6px
	);
  --width-base: 1000px;
  --width-main-column: 700px;
  --width-side-column: 200px;
}

.interval5em > *:not(:last-child) {
  margin-bottom: 0.5em;
}

.interval10em > *:not(:last-child) {
  margin-bottom: 1em;
}

.interval15em > *:not(:last-child) {
  margin-bottom: 1.5em;
}

.interval20em > *:not(:last-child) {
  margin-bottom: 2em;
}

.interval25em > *:not(:last-child) {
  margin-bottom: 2.5em;
}

.interval30em > *:not(:last-child) {
  margin-bottom: 3em;
}

.interval35em > *:not(:last-child) {
  margin-bottom: 3.5em;
}

.interval40em > *:not(:last-child) {
  margin-bottom: 4em;
}

.interval45em > *:not(:last-child) {
  margin-bottom: 4.5em;
}

.interval50em > *:not(:last-child) {
  margin-bottom: 5em;
}

.bg-white {
  background: #fff;
}

.text-white {
  color: #fff;
}

.bg-black {
  background: #000;
}

.text-black {
  color: #000;
}

.bg-gray {
  background: #efefef;
}

.text-gray {
  color: #efefef;
}

.bg-beige {
  background: #f4efe6;
}

.text-beige {
  color: #f4efe6;
}

.bg-blue {
  background: #89a1ce;
}

.text-blue {
  color: #89a1ce;
}

.bg-green {
  background: #52ddae;
}

.text-green {
  color: #52ddae;
}

.bg-green2 {
  background: #39876d;
}

.text-green2 {
  color: #39876d;
}

.bg-green3 {
  background: #469280;
}

.text-green3 {
  color: #469280;
}

.bg-pale-green {
  background: #f0f7f2;
}

.text-pale-green {
  color: #f0f7f2;
}

.bg-pale-green2 {
  background: rgba(80, 178, 128, 0.3);
}

.text-pale-green2 {
  color: rgba(80, 178, 128, 0.3);
}

.bg-red {
  background: #df0515;
}

.text-red {
  color: #df0515;
}

.bg-orange {
  background: #f8b500;
}

.text-orange {
  color: #f8b500;
}

.bg-sky0 {
  background: #1b96d5;
}

.text-sky0 {
  color: #1b96d5;
}

.bg-green0 {
  background: #74be5a;
}

.text-green0 {
  color: #74be5a;
}

.bg-orange0 {
  background: #ef7d54;
}

.text-orange0 {
  color: #ef7d54;
}

.bg-pink0 {
  background: #e9516e;
}

.text-pink0 {
  color: #e9516e;
}

/*
@mixin bgStripe($type: -45, $color1: #fff, $color2: #000, $interval: 4, $size: 10) {
	@if (type_of($type) == number) {
		$stripes: ();
		$width: 100% / $interval;

		@for $i from 1 through $interval {
			//$stripes: append();

			@if $i == 1 {
				$colorStripe: $color1;
			} @else {
				$colorStripe: $color2;
			}
			$widthStripe: $width * $i;
			$stripes: append($stripes, $colorStripe);
		}
		background: repeating-linear-gradient($type + deg, $stripes);
	}
	background-size: $size + px $size + px;
}
*/
.wrap {
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 130px;
}

.bg-feature75 {
  position: relative;
  background-image: url(../images/bg-pattern.png);
  background-repeat: repeat;
  background-position: left top;
}

.bg-feature75::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(236, 177, 172, 0.8);
  pointer-events: none;
}

.content__inner {
  padding-left: 150px;
  padding-right: 150px;
}

.feature75-content {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.feature75-main {
  position: relative;
  margin-bottom: 160px;
  text-align: center;
}

.feature75-main__img {
  margin-top: 90px;
  max-width: 100%;
  height: auto;
}

.feature75-main-img {
  position: absolute;
  max-width: 100%;
  height: auto;
}

.feature75-main-img--1 {
  right: 3%;
  top: 13%;
}

.feature75-main-img--2 {
  right: -1%;
  top: 46%;
}

.feature75-main-img--3 {
  right: 25%;
  top: 100%;
}

.feature75-main-img--4 {
  left: 33%;
  top: 100%;
}

.feature75-main-img--5 {
  left: 17%;
  top: 71%;
}

.feature75-main-img--6 {
  left: 0%;
  top: 48%;
  z-index: 2;
}

.feature75-main-img--7 {
  left: 16%;
  top: 14%;
}

.feature75-main-img--8 {
  left: 50%;
  top: 180%;
}

.feature75-top-wrap {
  display: flex;
  gap: 2em;
}

.feature75-top {
  flex: 1;
  font-family: "Zen Maru Gothic", "メイリオ", Meiryo, sans-serif;
}

.feature75-top__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
  height: 110px;
  font-size: 27px;
  color: var(--color-white);
  background-color: #000;
  border-radius: 16px;
  line-height: 1.25;
}

.feature75-top__head span {
  font-size: calc(18/27*100%);
}

.feature75-top__head * {
  font-weight: bold;
}

.feature75-top__head--2 ruby {
  ruby-position: under;
}

.feature75-top__theme {
  margin-bottom: 1em;
  font-size: 27px;
  font-weight: bold;
  text-align: center;
}

.feature75-top__text {
  font-weight: bold;
  line-height: calc(28/16);
}

.feature75-head {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 33rem;
  height: 11rem;
  font-size: 2.7rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", "メイリオ", Meiryo, sans-serif;
  color: #fff;
  background-image: url(../images/bg-pattern.png);
  background-color: #5c5c4c;
  background-repeat: repeat;
  background-position: left top;
  background-blend-mode: overlay;
  border-radius: 5.5rem;
}

.feature75-head span {
  font-size: calc(18/27*100%);
}

.feature75-head * {
  font-weight: bold;
}

.feature75-head--1 {
  margin-bottom: 1em;
}

.feature75-head--2 {
  margin-bottom: 1em;
}

.feature75-head--2 ruby {
  ruby-position: under;
}

.feature75-head--process {
  margin-bottom: 1em;
}

.feature75-head--voice {
  margin-bottom: 3em;
  text-indent: .4em;
  letter-spacing: .4em;
}

.feature75-section__header {
  position: relative;
  display: flex;
  justify-content: center;
}

.feature75-section__head {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: .5em;
  width: 33rem;
  height: 100px;
  font-size: 50px;
  font-weight: bold;
  font-family: "Zen Maru Gothic", "メイリオ", Meiryo, sans-serif;
  color: #fff;
  text-align: center;
  text-indent: .25em;
  letter-spacing: .25em;
  background-color: #000;
  background: url(../images/feature75-head-bg.png) no-repeat center center/contain;
}

.feature75-section__text {
  margin-bottom: 1em;
  font-weight: bold;
  font-family: "Zen Maru Gothic", "メイリオ", Meiryo, sans-serif;
  line-height: calc(28/16);
}

.feature75-section__img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}

.feature75-section__img--sports-1 {
  position: absolute;
  left: -11%;
  bottom: -7%;
}

.feature75-section__img--sports-2 {
  position: absolute;
  right: -18%;
  bottom: 7%;
}

.feature75-section__img--culture-1 {
  position: absolute;
  left: -12%;
  bottom: -55%;
}

.feature75-section__img--culture-2 {
  position: absolute;
  right: -6%;
  bottom: 3%;
}

.feature75-voice-wrap {
  display: flex;
  flex-direction: column;
  gap: 3em;
}

.feature75-voice__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1em;
  margin-bottom: 1em;
  width: 100%;
}

.feature75-voice__data {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  gap: 1em;
  padding-bottom: 2em;
  font-size: 18px;
}

.feature75-voice__data__post {
  display: flex;
  align-items: center;
  width: 100%;
  height: 3em;
  font-weight: bold;
}

.feature75-voice__data__name {
  font-size: calc(26/18*100%);
  font-weight: bold;
}

.feature75-voice__data__jh {
  font-weight: bold;
}

.feature75-voice__img {
  display: block;
  border-radius: 1em;
  width: 210px;
}

.feature75-voice__text {
  line-height: calc(28/16);
}

.feature75-process-wrap {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.feature75-process {
  display: flex;
  align-items: flex-end;
  gap: 1em;
}

.feature75-process__content {
  padding-bottom: 1em;
}

.feature75-process__time {
  display: block;
  margin-bottom: .5em;
  font-size: 18px;
  font-weight: bold;
}

.feature75-process__head {
  margin-bottom: .5em;
  font-size: 26px;
  font-weight: bold;
  font-family: "Zen Maru Gothic", "メイリオ", Meiryo, sans-serif;
}

.feature75-process__text {
  font-weight: bold;
  line-height: calc(28/16);
}

.feature75-process__img {
  border-radius: 1em;
}

.feature75-voice-head {
  text-align: center;
}

.feature75-process-head {
  padding-top: 1em;
  padding-left: .5em;
  margin-bottom: -1em;
  margin-left: -.5em;
  height: 148px;
  font-size: 33px;
  font-weight: bold;
  font-family: "Zen Maru Gothic", "メイリオ", Meiryo, sans-serif;
  background: url(../images/feature75-process-head.svg) no-repeat left center/contain;
}

@media screen and (max-width: 1200px) {
  .content__inner {
    padding-left: 12.5vw;
    padding-right: 12.5vw;
  }
  .feature75-content {
    gap: 10vw;
  }
  .feature75-main {
    margin-left: -5vw;
    margin-right: -5vw;
  }
  .feature75-main__img {
    width: 45.66667vw;
  }
  .feature75-main-img--1 {
    width: 27.25vw;
  }
  .feature75-main-img--2 {
    width: 27.08333vw;
  }
  .feature75-main-img--3 {
    width: 12.83333vw;
  }
  .feature75-main-img--4 {
    width: 17.16667vw;
  }
  .feature75-main-img--5 {
    width: 17.41667vw;
  }
  .feature75-main-img--6 {
    width: 30.66667vw;
  }
  .feature75-main-img--7 {
    width: 13.75vw;
  }
  .feature75-main-img--8 {
    top: 205%;
    width: 14.41667vw;
  }
  .feature75-section__img--sports-1 {
    left: 0;
    width: 21.91667vw;
  }
  .feature75-section__img--sports-2 {
    right: 0;
    width: 24.75vw;
  }
  .feature75-section__img--culture-1 {
    left: -8%;
    width: 21.75vw;
  }
  .feature75-section__img--culture-2 {
    right: 0;
    width: 15.41667vw;
  }
  .feature75-process {
    align-items: flex-start;
  }
  .feature75-voice-head__img {
    width: auto;
    height: 5.83333vw;
  }
  .feature75-process-head {
    margin-bottom: 0;
    height: 12.33333vw;
    font-size: 2.75vw;
  }
}

@media screen and (max-width: 992px) {
  .content__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .wrap {
    padding-top: 15vw;
    padding-bottom: 15vw;
  }
  .bg-feature75 {
    background-size: 100%;
  }
  .feature75-content {
    gap: 20vw;
  }
  .feature75-main {
    margin-bottom: 25vw;
  }
  .feature75-main__img {
    margin-top: 20vw;
    width: 70%;
  }
  .feature75-main-img--1 {
    right: 0;
    top: 29%;
    width: 35vw;
  }
  .feature75-main-img--2 {
    right: -3%;
    top: 77%;
    width: 40vw;
  }
  .feature75-main-img--3 {
    right: 30%;
    top: 105%;
    width: 26vw;
  }
  .feature75-main-img--4 {
    display: none;
  }
  .feature75-main-img--5 {
    display: none;
  }
  .feature75-main-img--6 {
    left: -4%;
    top: 83%;
    width: 42vw;
  }
  .feature75-main-img--7 {
    left: 7%;
    width: 20vw;
  }
  .feature75-main-img--8 {
    display: none;
  }
  .feature75-top-wrap {
    flex-direction: column;
  }
  .feature75-top__head {
    height: 25vw;
    font-size: 4.5vw;
  }
  .feature75-top__theme {
    font-size: 4.5vw;
  }
  .feature75-head {
    height: 25vw;
    font-size: 5vw;
    background-size: cover;
    border-radius: 12.5vw;
  }
  .feature75-section__head {
    width: 80%;
    font-size: 7.5vw;
  }
  .feature75-section__img {
    display: none;
  }
  .feature75-section__img--sports-1 {
    width: 25vw;
  }
  .feature75-section__img--sports-2 {
    right: -5%;
    width: 25vw;
  }
  .feature75-section__img--culture-1 {
    width: 20vw;
  }
  .feature75-section__img--culture-2 {
    width: 20vw;
  }
  .feature75-voice__header {
    flex-flow: row wrap;
    justify-content: center;
  }
  .feature75-voice__student {
    align-self: flex-start;
    width: 30vw;
    height: auto;
  }
  .feature75-voice__data {
    width: 55vw;
    font-size: 3.6vw;
  }
  .feature75-voice__data__post {
    height: auto;
  }
  .feature75-voice__data__name {
    width: 100%;
  }
  .feature75-voice__img {
    max-width: 100%;
    width: auto;
    height: auto;
  }
  .feature75-process-wrap {
    gap: 5vw;
  }
  .feature75-process {
    flex-direction: column;
    align-items: center;
  }
  .feature75-process__content {
    padding-bottom: 0;
  }
  .feature75-voice-head__img {
    margin-bottom: .5em;
    height: 10vw;
  }
  .feature75-process-head {
    margin-left: 0;
    height: 22.2vw;
    font-size: 5vw;
  }
}
