@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;
}
*/
.vol75.icc-topics {
  font-family: "Zen Maru Gothic", sans-serif;
  font-feature-settings: "palt";
  background-size: auto auto;
  background-color: #eee9da;
}

.vol75 .wrap {
  position: relative;
  padding-top: 100px;
  padding-bottom: 230px;
}

.vol75 .wrap::before, .vol75 .wrap::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 50px;
  background-image: repeating-linear-gradient(120deg, transparent, transparent 10px, #f2e951 10px, #f2e951 15px);
  z-index: 1;
}

.vol75 .wrap::before {
  top: 100px;
  bottom: auto;
}

.vol75 .wrap::after {
  top: auto;
  bottom: 0;
}

.icc-topics75-main-wrap {
  position: relative;
  padding-top: 5rem;
  margin-bottom: 15rem;
  text-align: center;
}

.icc-topics75-main-wrap h1 {
  margin-left: auto;
  margin-right: auto;
  width: 68rem;
}

.icc-topics75-main-inner {
  position: relative;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-top: 3em;
}

.icc-topics75-list {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.icc-topics75-list__img {
  height: auto;
}

.icc-topics75-list__img--1 {
  margin-top: -12%;
  margin-left: -45%;
}

.icc-topics75-list__img--2 {
  margin-top: -18%;
  margin-left: -15%;
}

.icc-topics75-main {
  margin-top: -220px;
}

.icc-topics75-main-title {
  margin-top: -220px;
}

.icc-topics75-wrap {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}

.icc-topics75-section {
  padding-left: 3em;
  padding-right: 3em;
}

.icc-topics75-section--bottom {
  position: relative;
  padding: 2rem 4.5rem 4rem;
  background-color: #fff;
  border: 3px solid #000;
  border-radius: 15px;
}

.icc-topics75-section__inner {
  display: flex;
  gap: 3rem;
}

.icc-topics75-section__inner--bottom {
  align-items: flex-end;
  margin-top: -5em;
}

.icc-topics75-section__inner--bottom > div {
  width: 100%;
}

.icc-topics75-head {
  margin-bottom: 1em;
  margin-left: -3em;
}

.icc-topics75-top {
  margin-bottom: .5em;
  font-weight: bold;
  color: #e83e0b;
  line-height: 1.5;
  letter-spacing: .025em;
  font-size: min(3rem,3.6vw);
}

.icc-topics75-text {
  font-weight: bold;
  color: #43616f;
  line-height: calc(32 / 22);
  font-size: min(2.2rem,3.6vw);
}

.icc-topics75-text.list-circle {
  margin-bottom: 1em;
}

.icc-topics75-text li {
  font-weight: bold;
}

.icc-topics75-img-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.icc-topics75-img-list--center {
  justify-content: center;
}

.icc-topics75-img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.icc-topics75-title {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  line-height: calc(48 / 32);
}

.icc-topics75-title::before, .icc-topics75-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: inline-block;
  width: 3px;
  height: 90%;
  background-color: #000;
  vertical-align: middle;
}

.icc-topics75-title::before {
  left: 0;
  transform: rotate(-30deg);
  transform-origin: left bottom;
}

.icc-topics75-title::after {
  right: 0;
  transform: rotate(30deg);
  transform-origin: right bottom;
}

@media screen and (max-width: 1200px) {
  .icc-topics75-list__img--1 {
    width: 34.33333vw;
  }
  .icc-topics75-list__img--2 {
    width: 23.41667vw;
  }
  .icc-topics75-list__img--3 {
    width: 41.16667vw;
  }
  .icc-topics75-main-balloon {
    width: 45.41667vw;
    height: auto;
  }
  .icc-topics75-main {
    margin-top: -18.33333vw;
    max-width: 100%;
    height: auto;
  }
  .icc-topics75-main-title {
    margin-top: -18.33333vw;
    max-width: 100%;
    height: auto;
  }
  .icc-topics75-section__inner {
    flex-wrap: wrap;
  }
  .icc-topics75-section__inner--bottom {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    width: 100%;
  }
  .icc-topics75-head__img {
    width: auto;
    height: 16vw;
  }
  .icc-topics75-img-list {
    justify-content: center;
    gap: 2.5vw;
  }
  .icc-topics75-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .icc-topics75-illust {
    width: 19.08333vw;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .vol75 .wrap {
    padding-top: 25vw;
    padding-bottom: 25vw;
  }
  .vol75 .wrap::before, .vol75 .wrap::after {
    height: 5vw;
    background-image: repeating-linear-gradient(120deg, transparent, transparent 1.5vw, #f2e951 1.5vw, #f2e951 2.5vw);
  }
  .vol75 .wrap::before {
    top: 15vw;
  }
  .icc-topics75-main-wrap {
    padding-top: 5vw;
    margin-bottom: 15vw;
  }
  .icc-topics75-main-wrap h1 {
    width: 90%;
  }
  .icc-topics75-main-inner {
    flex-direction: column;
    margin-top: 10vw;
  }
  .icc-topics75-list {
    position: relative;
    right: -5vw;
  }
  .icc-topics75-list__img--1 {
    width: 70%;
  }
  .icc-topics75-list__img--2 {
    width: 45%;
  }
  .icc-topics75-list__img--3 {
    width: 80%;
  }
  .icc-topics75-main-balloon {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 90%;
    height: auto;
  }
  .icc-topics75-main {
    margin-top: -15vw;
  }
  .icc-topics75-main-title {
    margin-top: -20vw;
  }
  .icc-topics75-wrap {
    gap: 10vw;
  }
  .icc-topics75-section {
    padding-left: 0;
    padding-right: 0;
  }
  .icc-topics75-section--bottom {
    padding: 5vw;
  }
  .icc-topics75-section__inner {
    gap: 5vw;
  }
  .icc-topics75-head {
    margin-left: -5vw;
  }
  .icc-topics75-head__img {
    height: 17vw;
  }
  .icc-topics75-title {
    margin-bottom: 0;
    font-size: 4.16667vw;
  }
  .icc-topics75-title::before, .icc-topics75-title::after {
    width: .5vw;
  }
  .icc-topics75-illust {
    width: 25vw;
  }
}

@media all and (-ms-high-contrast: none) {
  .icc-topics75-top {
    font-size: 30px;
  }
  .icc-topics75-text {
    font-size: 22px;
  }
}
