@charset "UTF-8";

/*
デザイントークン
------------------------------------- */
/* フォント */
:root {
  /* テキストカラー */
  --color-text: #484848;
  --color-text-strong: #343434;
  --color-text-mute: #666;
  --color-text-light: #fff;
  --color-white: #fff;

  /* アクセントカラー */
  --color-accent: #e86f55;
  --color-accent-light: #f48971;
  --color-link: #343434;
  --color-link-text: #b4452c;
  --color-link-text-hover: #343434;

  /* 背景・ボーダー */
  --color-bg-app: #fdf1ee;
  --color-border: #ccc;
  --color-separator: #ccc;
  --color-inquiry-border: #ddd;
  --color-inquiry-border-strong: #ddd;

  /* グラデーション */
  --gradient-accent: radial-gradient(circle at 50% 0%, var(--color-accent-light), var(--color-accent));

  /* フォント (16pxベース) */
  --font-body: YakuHanJP, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;

  /* 8px */
  --fs-8: 0.5rem;
  /* 10px ⇒ 9px */
  --fs-10: clamp(0.563rem, 0.522rem + 0.171vw, 0.625rem);
  /* 12px ⇒ 11px */
  --fs-12: clamp(0.688rem, 0.647rem + 0.171vw, 0.75rem);
  /* 14px ⇒ 12px */
  --fs-14: clamp(0.75rem, 0.670rem + 0.342vw, 0.875rem);
  /* 16px ⇒ 14px */
  --fs-16: clamp(0.875rem, 0.795rem + 0.342vw, 1rem);
  /* 18px ⇒ 16px */
  --fs-18: clamp(1rem, 0.920rem + 0.342vw, 1.125rem);
  --fs-20: clamp(1.125rem, 1.045rem + 0.342vw, 1.25rem);
  --fs-24: clamp(1.25rem, 1.090rem + 0.684vw, 1.5rem);
  --fs-28: clamp(1.5rem, 1.340rem + 0.684vw, 1.75rem);
  --fs-32: clamp(1.75rem, 1.590rem + 0.684vw, 2rem);
  --fs-36: clamp(1.85rem, 1.594rem + 1.094vw, 2.25rem);
  --fs-40: clamp(2rem, 1.679rem + 1.368vw, 2.5rem);
  --fs-48: clamp(2.25rem, 1.769rem + 2.051vw, 3rem);

  /* マージン */
  /* Space 3xs: 4px → 5px */
  --space-3xs: clamp(0.25rem, 0.2244rem + 0.1136vw, 0.3125rem);
  /* Space 2xs: 8px → 10px */
  --space-2xs: clamp(0.5rem, 0.4489rem + 0.2273vw, 0.625rem);
  /* Space xs: 12px → 15px */
  --space-xs: clamp(0.75rem, 0.6733rem + 0.3409vw, 0.9375rem);
  /* Space s: 16px → 20px */
  --space-s: clamp(1rem, 0.8977rem + 0.4545vw, 1.25rem);
  /* Space m: 24px → 30px */
  --space-m: clamp(1.5rem, 1.3466rem + 0.6818vw, 1.875rem);
  /* Space l: 32px → 40px */
  --space-l: clamp(2rem, 1.7955rem + 0.9091vw, 2.5rem);
  /* Space xl: 40px → 50px */
  --space-xl: clamp(2.5rem, 2.2443rem + 1.1364vw, 3.125rem);
  /* Space 2xl: 48px → 60px */
  --space-2xl: clamp(3rem, 2.6932rem + 1.3636vw, 3.75rem);
  /* Space 3xl: 64px → 80px */
  --space-3xl: clamp(4rem, 3.5909rem + 1.8182vw, 5rem);
  /* Space 4xl: 80px → 100px */
  --space-4xl: clamp(5rem, 4.4886rem + 2.2727vw, 6.25rem);

  /* One-up pairs */
  /* Space 3xs-2xs: 4px → 10px */
  --space-3xs-2xs: clamp(0.25rem, 0.0966rem + 0.6818vw, 0.625rem);
  /* Space 2xs-xs: 8px → 15px */
  --space-2xs-xs: clamp(0.5rem, 0.321rem + 0.7955vw, 0.9375rem);
  /* Space xs-s: 12px → 20px */
  --space-xs-s: clamp(0.75rem, 0.5455rem + 0.9091vw, 1.25rem);
  /* Space s-m: 16px → 30px */
  --space-s-m: clamp(1rem, 0.642rem + 1.5909vw, 1.875rem);
  /* Space m-l: 24px → 40px */
  --space-m-l: clamp(1.5rem, 1.0909rem + 1.8182vw, 2.5rem);
  /* Space l-xl: 32px → 50px */
  --space-l-xl: clamp(2rem, 1.5398rem + 2.0455vw, 3.125rem);
  /* Space xl-2xl: 40px → 60px */
  --space-xl-2xl: clamp(2.5rem, 1.9886rem + 2.2727vw, 3.75rem);
  /* Space 2xl-3xl: 48px → 80px */
  --space-2xl-3xl: clamp(3rem, 2.1818rem + 3.6364vw, 5rem);
  /* Space 3xl-4xl: 64px → 100px */
  --space-3xl-4xl: clamp(4rem, 3.0795rem + 4.0909vw, 6.25rem);
}


/*
共通要素
------------------------------------- */
body {
  margin: 0 auto;
  background: var(--color-white);
  font-family: var(--font-body);
  color: var(--color-text);
}
.inner {
  max-width: 960px;
  margin: 0 auto;
}
.fade {
  opacity: 1;
  transition: opacity .4s ease-in-out;
  -moz-transition: opacity .4s ease-in-out;
  -webkit-transition: opacity .4s ease-in-out;
}
.fade:hover {
  opacity: 0.65
}
h2 {
  font-size: var(--fs-40);
  font-weight: 300;
  letter-spacing: clamp(0rem, -0.120rem + 0.513vw, 0.188rem);
  line-height: 1;
  color: var(--color-text-strong);
}
h3, h4, h5 {
  font-weight: 700;
}
a {
  text-decoration: underline;
  color: var(--color-link-text);
}
a:hover {
  text-decoration: none;
  color: var(--color-link-text-hover);
}

.u-bold {
  font-weight: 700;
}

@media (max-width:980px) {
  .inner {
    margin: 0 1.5rem;
  }
}

.sp {
  display: none;
}
@media (max-width:960px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}


/*
ヘッダー
------------------------------------- */
header {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 12px 0;
  background: var(--color-white);
}
.header-logos {
  display: grid;
  grid-template-columns: minmax(0, 200px) minmax(0, 62px) minmax(0, 200px);
  align-items: center;
  width: min(462px, calc(100% - 32px));
}
.header-logos img,
.header-logo-link {
  display: block;
}
.header-logos img {
  width: 100%;
  height: auto;
}
.header-logo-link {
  line-height: 0;
}

@media (max-width:960px) {
  header {
    width: 100%;
    min-height: auto;
    padding: 8px 0;
  }
}

@media (max-width:767.98px) {
  .header-logos {
    width: min(370px, 80%);
  }
  .header-logos .header-logo-x {
    justify-self: center;
    width: 80%;
  }
}


/*
メインビジュアル
------------------------------------- */
@media screen and (min-width:768px) {
	#topHeader {
		box-sizing:border-box;
		height: 760px;
		width: 100%;
		margin: 0 auto;
		-webkit-animation: bgscroll 120s linear infinite;
		animation: bgscroll 120s linear infinite;
		text-align: center;
	}
	@-webkit-keyframes bgscroll {
		0% {background-position: 0 0;}
		100% {background-position: 2280px 0 ;}
	}
	@keyframes bgscroll {
		0% {background-position: 0 0;}
		100% {background-position: 2280px 0 ;}
	}
	#topHeader h1 {
		height: 760px;
		display: flex;
		justify-content: center;
		align-items: center;
		align-content: center;
	}
	#topHeader h1 picture {
		width: 100%;
  }
	#topHeader h1 img {
		width: 100%;
		max-width: 1658px;
	}
	#topHeader {
		background: url(../img/bg.webp);
		background-position: center;
		-webkit-background-size: 2280px 760px;
		background-size: 2280px 760px;
	}
	@-webkit-keyframes bgscroll {
		0% {background-position: 0 0;}
		100% {background-position: 2280px 0 ;}
	}
	@keyframes bgscroll {
		0% {background-position: 0 0;}
		100% {background-position: 2280px 0 ;}
	}
}
@media screen and (max-width:767.98px){
	#topHeader {
    box-sizing:border-box;
		width: 100%;
		height: 80vh;
    margin: 0 auto;
		background: #eee url(../img/bg-sp.webp);
		background-position: center top;
		background-size: cover;
		-webkit-animation: bgscroll 80s linear infinite;
		animation: bgscroll 80s linear infinite;
	}
	@-webkit-keyframes bgscroll {
		0% {background-position: center calc(2 * 100vh);}
		100% {background-position: center 0;}
	}
	@keyframes bgscroll {
		0% {background-position: center calc(2 * 100vh);}
		100% {background-position: center 0;}
	}
	#topHeader .inner {
		position: relative;
		bottom: 0;
		height: 100%;
		background-size: 160px 140px, 160px 140px;
	}	
	#topHeader h1 {
		height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
	} 
	#topHeader h1 img {
		position: relative;
		height: auto;
		width: 100%;
		margin: 0% auto 0;
	}
}

#visualcredits {
  padding-top: 10px;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-size: var(--fs-12);
  color: var(--color-text-mute);
}
#visualcredits span {
  display: inline-block;
}
@media (max-width:640px) {
  #visualcredits {
    line-height: 1.4;
  }
}


/*
募集概要
------------------------------------- */
#overview {
  margin: 0;
  padding: var(--space-2xl-3xl) 0;
  background: var(--color-white);
  color: var(--color-text);
}
#overview h2 {
  margin-bottom: var(--space-xl);
  text-align: center;
  color: var(--color-text-strong);
}
#overview p {
  max-width: 960px;
  margin: 0 auto var(--space-2xl) auto;
  text-align: justify;
  line-height: 1.8;
  font-size: var(--fs-18);
}
#overview p .larger {
  font-size: var(--fs-20);
}
#overview h3 {
  margin: 30px auto;
  text-align: center;
  font-size: var(--fs-24);
  line-height: 1.6;
}
#overview h3 span {
  font-weight: normal;
}
#overview .aC {
  margin: -30px auto 30px auto;
  text-align: center;
}
#overview .note {
  margin: 50px auto 0 auto;
  line-height: 1.6;
  font-size: var(--fs-12);
}

@media (max-width:640px) {
  #overview .aC {
    margin: 0 auto 0 auto;
    text-align: justify;
  }
}


/*
募集期間
------------------------------------- */
#contest-period {
  margin: 0;
  padding: var(--space-2xl-3xl) 0;
  text-align: center;
  background: var(--gradient-accent);
  color: var(--color-text-light);
}
#contest-period h2 {
  margin: 0 auto var(--space-xl) auto;
  color: var(--color-text-light);
}
#contest-period h3 {
  margin: 0 auto 0 auto;
  font-size: var(--fs-32);
  color: var(--color-text-light);
  line-height: 1.4;
}
#contest-period h3 span {
  font-size: 1.3125rem;
}
#contest-period .note {
  margin-top: 32px;
  text-align: justify;
  line-height: 1.6;
  font-size: var(--fs-14);
}


/*
部門とハッシュタグ
------------------------------------- */
#hashtag-block {
  margin: 0;
  padding: var(--space-2xl-3xl) 0;
  background: var(--color-white);
  text-align: center;
}
#hashtag-block h2 {
  margin: 0 auto var(--space-xl) auto;
}
#hashtag-block h3 {
  margin-bottom: var(--space-l);
  line-height: 1.2;
  font-size: var(--fs-24);
}
#hashtag-block p.intro {
  max-width: 960px;
  margin: 0 auto var(--space-xl) auto;
  text-align: justify;
  line-height: 1.6;
  font-size: var(--fs-18);
}
#hashtag-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin: 0 auto var(--space-2xl);
}
#hashtag-container .hashtag-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 24px;
  border-top: 6px solid var(--color-accent);
  border-radius: 3px;
  box-shadow: 0 5px 10px rgb(0,0,0,0.15);
  background: #fff;
}
#hashtag-container .hashtag-card h3 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: var(--space-m) auto 0;
  word-break: keep-all;
  overflow-wrap: anywhere;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.4;
  font-size: var(--fs-20);
}
#hashtag-container .hashtag-card h3.lspacing-narrow {
  letter-spacing: -0.0625em;
}
#hashtag-container .hashtags {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  align-items: center;
}
#hashtag-container .hashtag-basic {
  width: calc(100% - 40px);
  border-radius: 3px;
  margin: 0 20px;
  padding: 20px 0;
  background: var(--color-accent);
  line-height: 1;
  letter-spacing: -0.0625em;
  font-size: var(--fs-18);
  font-weight: bold;
  color: #fff;
}
#hashtag-container .hashtag-category {
  width: calc(100% - 40px);
  border: 2px solid var(--color-accent);
  border-radius: 3px;
  margin: 0 20px;
  padding: 18px 0;
  background: #fff;
  line-height: 1;
  font-size: var(--fs-18);
  font-weight: bold;
}
#hashtag-container .hashtag-basic span,
#hashtag-container .hashtag-category span {
  font-size: 0.8em;
  font-weight: normal;
}
#hashtag-container .hashtag-plus {
  margin: 4px auto;
  text-align: center;
  line-height: 1;
  font-size: var(--fs-36);
  font-weight: bold;
}
#hashtag-container .hashtag-outline {
  margin: 0 20px 20px;
  text-align: justify;
  line-height: 1.6;
  font-size: var(--fs-16);
}
#hashtag-container .smaller {
  font-size: 0.8em;
}
#hashtag-block .note {
  max-width: 960px;
  margin: 30px auto 0 auto;
  font-size: var(--fs-14);
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.6;
}

@media (max-width:960px) {
  #hashtag-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  #hashtag-container h3 {
    margin: 20px auto 0;
    letter-spacing: 0;
    line-height: 1.4;
    font-size: var(--fs-20);
  }
  #hashtag-container .hashtag-basic,
  #hashtag-container .hashtag-category {
    width: calc(100% - 40px);
  }
  #hashtag-container .hashtag-outline {
    margin: 0 20px 20px;
    line-height: 1.4;
  }
}
@media (max-width:768px) {
  #hashtag-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  #hashtag-container h3 {
    margin: 30px auto 0;
    letter-spacing: 0;
    line-height: 1.4;
    font-size: var(--fs-24);
  }
  #hashtag-container .hashtag-basic,
  #hashtag-container .hashtag-category {
    width: calc(100% - 40px);
    font-size: var(--fs-18);
  }
  #hashtag-container .hashtag-outline {
    margin: 0 20px 20px;
    line-height: 1.6;
    font-size: var(--fs-16);
  }
}


/* ハッシュタグswiper
------------------------------------- */
#hashtag-container.swiper {
  display: block;
  max-width: 1920px;
  padding: 0 54px 48px;
  box-sizing: border-box;
}
#hashtag-container .swiper-wrapper {
  align-items: stretch;
}
#hashtag-container .hashtag-card.swiper-slide {
  min-width: 0;
  display: grid;
  grid-template-rows: 60px 170px 1fr;
  grid-row: auto;
  row-gap: 24px;
  height: auto;
  padding-top: var(--space-m);
}
#hashtag-container .hashtag-card.swiper-slide h3 {
  align-self: center;
  margin: 0 auto;
}
#hashtag-container .hashtag-card.swiper-slide .hashtags {
  align-self: stretch;
  justify-content: flex-start;
  min-height: 170px;
}
#hashtag-container .hashtag-outline {
  align-self: stretch;
}
#hashtag-container .swiper-button-prev,
#hashtag-container .swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: -42px;
  background: var(--color-accent);
  color: #fff;
}
#hashtag-container .swiper-button-prev::after,
#hashtag-container .swiper-button-next::after {
  text-indent: -4px;
  font-size: 16px;
  font-weight: bold;
}
#hashtag-container .swiper-button-next::after {
  text-indent: 2px;
}
#hashtag-container .swiper-pagination {
  bottom: 8px;
}
#hashtag-container .swiper-pagination-bullet-active {
  background: var(--color-accent);
}
#hashtag-container.swiper:not(.swiper-initialized) {
  max-width: 960px;
  padding: 0;
  overflow: visible;
}
#hashtag-container.swiper:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 30px;
}
#hashtag-container.swiper:not(.swiper-initialized) .hashtag-card.swiper-slide {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 30px;
  padding-top: 0;
}
#hashtag-container.swiper:not(.swiper-initialized) .hashtag-card.swiper-slide h3 {
  margin: var(--space-m) auto 0;
}
#hashtag-container.swiper:not(.swiper-initialized) .hashtag-card.swiper-slide .hashtags {
  justify-content: center;
  min-height: 0;
}
#hashtag-container.swiper:not(.swiper-initialized) .hashtag-swiper-button-prev,
#hashtag-container.swiper:not(.swiper-initialized) .hashtag-swiper-button-next,
#hashtag-container.swiper:not(.swiper-initialized) .hashtag-swiper-pagination {
  display: none;
}

@media (max-width:980px) {
  #hashtag-container.swiper:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width:639.98px) {
  #hashtag-container.swiper:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  #hashtag-container.swiper {
    padding: 0 36px 44px;
  }
  #hashtag-container .swiper-button-prev,
  #hashtag-container .swiper-button-next {
    width: 32px;
    height: 32px;
  }
  #hashtag-container .swiper-button-prev::after,
  #hashtag-container .swiper-button-next::after {
    font-size: 14px;
  }
}


/* ハッシュタグ機能
------------------------------------- */
#hashtagGenerator {
  max-width: 960px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin: 50px auto;
  padding: 50px 0;
  text-align: center;
}
.generateMsg {
  display: none;
}
#hashtagGenerator h4 {
  margin-bottom: var(--space-m);
  text-align: center;
  line-height: 2;
  font-size: var(--fs-28);
}
#hashtagGenerator p {
  margin: 0 auto var(--space-m);
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.6;
  font-size: var(--fs-18);
}
#hashtagGenerator select::-ms-expand {
  display: none;
}
#hashtagGenerator select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #999;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 8px 30px 8px 10px;
  background-image: url(../img/icon_pulldown.svg);
  background-repeat: no-repeat;
  background-size: 12px 10px;
  background-position: right 10px center;
  background-color: #eee;
  font-size: var(--fs-16);
  line-height: 1.4;
  cursor: pointer;
}
#hashtagGenerator #hashtagList {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 720px;
  border: 1px solid #999;
  border-radius: 5px;
  margin: 0 auto 20px;
  padding: 10px 10px;
  resize: none;
  text-align: center;
  height: calc( 1.6em * 1.8 );
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--fs-20);
  font-weight: 700;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
#hashtagGenerator #generate {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 100px;
  padding: 12px 40px;
  background: var(--color-link);
  font-family: var(--font-body);
  font-size: var(--fs-16);
  font-weight: bold;
  color: var(--color-white);
  cursor: pointer;
}
#hashtagGenerator .btnArea {
  height: 50px;
  text-align: center;
}
#hashtagGenerator #generateMsg {
  text-align: center;
  font-size: var(--fs-16);
  margin: 0 auto 0px auto;
  padding-top: 10px;
}
#hashtagGenerator #selectMsg {
  text-align: center;
  font-size: var(--fs-16);
  margin: 0 auto 0px auto;
  padding-top: 10px;
}

@media (max-width:960px) {
  #hashtagGenerator h4 {
    line-height: 1;
    letter-spacing: -1px;
    font-size: var(--fs-24);
  }
  #hashtagGenerator #hashtagList {
    padding: 10px;
    height: calc( 1.3rem * 3 );
    text-align: center;
    line-height: 1.3;
    font-size: var(--fs-16);
  }
  #hashtagGenerator .btnArea {
    height: 70px;
    margin-bottom: 20px;
  }
}


/*
応募方法
------------------------------------- */
#howtoenter {
  margin: 0;
  padding: var(--space-2xl-3xl) 0;
  text-align: center;
  background: var(--color-accent);
  background: var(--gradient-accent);
  color: var(--color-text-light);
}
#howtoenter h2 {
  margin: 0 0 var(--space-xl);
  color: var(--color-text-light);
}
#howtoenter .inner {
  max-width: 1320px;
}
#howtoenter .figures {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}
#howtoenter .figure1 img,
#howtoenter .figure2 img,
#howtoenter .figure3 img,
#howtoenter .figure4 img {
  width: 100%;
  border-radius: 3px;
}
#howtoenter .figure1,
#howtoenter .figure2,
#howtoenter .figure3,
#howtoenter .figure4 {
  width: calc((100% - 72px) / 4);
  overflow: hidden;
  background: var(--color-white);
  border-radius: 3px;
  box-shadow: 0px 10px 15px rgba(170, 30, 0, 0.3);
}
#howtoenter p {
  max-width: 960px;
  margin: var(--space-m) auto 0 auto;
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.6;
  font-size: var(--fs-16);
}
#howtoenter .note {
  font-size: var(--fs-14);
}

@media (max-width:980px) {
  #howtoenter .figures {
    flex-wrap: wrap;
    gap: 24px;
    padding-inline: 0;
  }
  #howtoenter .figure1,
  #howtoenter .figure2,
  #howtoenter .figure3,
  #howtoenter .figure4 {
    width: calc((100% - 24px) / 2);
  }
}
@media (max-width:480px) {
  #howtoenter .figures {
    display: block;
    width: 100%;
  }
  #howtoenter .figure1,
  #howtoenter .figure2,
  #howtoenter .figure3,
  #howtoenter .figure4 {
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0 auto 1.5rem;
  }
}


/*
賞品
------------------------------------- */
#award {
  margin: 0;
  padding: var(--space-2xl-3xl) 0;
  text-align: center;
  background: var(--color-white);
  color: var(--color-text);
}
#award h3 {
  border-radius: 3px;
  margin: var(--space-2xl) auto 0;
  padding: 12px 12px 13px;
  text-align: center;
  background: var(--color-accent);
  line-height: 1.2;
  font-size: var(--fs-24);
  color: var(--color-text-light);
}
#award h3 span {
  font-size: 1.2rem;
}
#award p {
  padding-top: 30px;
  text-align: center;
  line-height: 1.6;
  font-size: var(--fs-18);
}
#award p.intro {
  margin: 0 auto 50px;
  text-align: center;
  font-size: var(--fs-20);
}
#award p.prize {
  text-align: center;
}
#award .note {
  margin-top: -30px;
  font-size: var(--fs-12);
  text-align: center;
  line-height: 1.6;
}

@media (max-width:960px) {
  #award h3 {
    line-height: 1.4;
  }
  #award p {
    text-align: justify;
  }
  #award p.intro {
    text-align: justify;
    font-size: var(--fs-18);
  }
}

@media (max-width:640px) {
  #award {
    background: var(--color-white);
    background: linear-gradient(var(--color-white) 70%, var(--color-bg-app) 100%);
  }
  #award h2 {
    text-indent: 1px;
    font-weight: 300;
    line-height: 1.4;
    color: var(--color-text-strong);
  }
}


/*
募集要項
------------------------------------- */
#application {
  margin: 0;
  padding: var(--space-2xl-3xl) 0;
  text-align: center;
  background: var(--color-bg-app);
  color: var(--color-text);
}
#application h2 {
  margin: 0 0 var(--space-xl);
  color: var(--color-text-strong);
}
#application .application-container {
  box-shadow: 0px 10px 20px rgba(190, 95, 75, 0.3);
  text-align: left;
  background: var(--color-white);
  padding: 1px var(--space-xl) var(--space-xl);
  margin: 0 0 var(--space-xl);
  border-radius: 3px;
  line-height: 1.8;
}
#application .application-container h3 {
  border-radius: 3px;
  margin: var(--space-2xl) 0 var(--space-s-m);
  padding: 12px 12px 13px;
  text-align: center;
  background: var(--color-accent);
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-size: var(--fs-24);
  color: var(--color-text-light);
}
#application .application-container .note {
  margin-bottom: 8px;
  font-size: 0.8em;
}
#application .application-container .note.aC {
  text-align: center;
}
#application .application-container .note.--mobiledomains {
  margin-bottom: var(--space-s);
}
#application .application-container p {
  margin: 0 0 var(--space-s-m);
  padding: 0;
  text-align: justify;
  text-justify: inter-ideograph;
  font-size: var(--fs-16);
}
#application .application-container p.nomargin {
  margin: 0;
}
#application .application-container p.subhead {
  margin: 0 0 var(--space-s-m) 0;
  padding: 0;
  text-align: center;
  line-height: 1.6;
  font-size: var(--fs-24);
  font-weight: bold;
}
#application .application-container .step {
  margin: 0 0 var(--space-xl);
}
#application .application-container h4 {
  font-size: var(--fs-20);
  margin-bottom: 10px;
}
#application .application-container .step h4 {
  font-size: var(--fs-18);
  margin: 0px;
}
#application .application-container .step p {
  margin: 0 0 var(--space-s-m);
}
#application .application-container .step p.note-tight {
  margin-bottom: 0;
}
#application .application-container .step p.note-mail {
  margin-bottom: 8px;
  text-align: left;
}
#application .application-container .step .note-domain {
  margin: 0 0 var(--space-s-m) 1rem;
}
#application .application-container .step .note-domain > div {
  margin-left: 8px;
}
#application .application-container ul {
  list-style-type: disc;
  margin-bottom: 0;
  margin-left: 1rem;
}
#application .application-container ol {
  margin-left: 1rem;
}
#application .application-container ol li {
  margin-left: 1rem;
  font-size: var(--fs-16);
}
#application .application-container ul li {
  margin-bottom: 8px;
}
#application .application-container li {
  text-align: justify;
  text-justify: inter-ideograph;
  font-size: var(--fs-16);
}
#application .application-container ul li ul li {
  margin-bottom: 2px;
  margin-left: 0px;
  list-style-type: disc;
}

@media (max-width:960px) {
  #application .inner {
    margin: 0;
  }
}

@media (max-width:640px) {
  #application {
    background: var(--color-white);
    background: linear-gradient(var(--color-white), var(--color-bg-app));
  }
  #application h2 {
    height: auto;
    text-align: center;
    font-weight: 300;
    line-height: 1.4;
    color: var(--color-text-strong);
  }
  #application .application-container {
    margin-top: 0;
    padding: 0 1.5rem var(--space-l);
  }
  #application .application-container .note.aC {
    text-align: justify;
  }
}


/*
お問い合わせ
------------------------------------- */
#application .inquiry {
  border: 1px solid var(--color-inquiry-border);
  border-radius: 3px;
  margin: 0 auto;
  background: var(--color-white);
  text-align: left;
  color: var(--color-text);
}
#application .inquiry h3 {
  font-size: var(--fs-18);
  margin: var(--space-m) var(--space-m) 10px;
}
#application .inquiry p {
  margin: 0 var(--space-m) var(--space-m);
  padding: 0;
  line-height: 1.6;
  font-size: var(--fs-12);
}
@media (max-width:960px) {
  #application .inquiry {
    margin: 0 1.5rem;
  }
  #application .inquiry p {
    padding-right: 0;
  }
}


/*
フッター
------------------------------------- */
footer {
  padding: 45px 45px 50px;
  background: #72aae1;
  text-align: center;
  color: var(--color-white);
}
footer a,
footer a:visited {
  color: var(--color-white);
}
footer a:hover,
footer a:focus-visible {
  color: var(--color-white);
}
.footer-logo {
  width: 195px;
  margin: 0 auto 27px;
}
.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer-copy {
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 400;
}
.footer-nav {
  display: flex;
  gap: 40px;
  justify-content: center;
  font-weight: 400;
  font-size: 14px;
}
.footer-nav a {
  text-decoration: none;
}

/*
ページトップへ戻る
------------------------------------- */
.page-top {
  position: fixed;
  right: 9px;
  bottom: 24px;
  z-index: 9999;
  display: block;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: var(--color-link);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease, filter 0.2s ease;
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.page-top:hover {
  filter: brightness(1.05);
}
.page-top:focus-visible {
  outline: 3px solid rgba(111, 176, 232, 0.45);
  outline-offset: 3px;
}
.page-top__icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(2px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .page-top {
    transition: none;
  }
}
