@charset "UTF-8";

/*
デザイントークン
------------------------------------- */
/* フォント */
@font-face {
  font-family: "Local Noto Sans JP"; /* ローカルフォント優先 */
  src: 
    local("Noto Sans JP"), /* Windows用 */
    local("Noto Sans CJK JP Regular") /* Android用 */;
}

:root {
  /* テキストカラー */
  --color-text: #131413;
  --color-text-strong: #131413;
  --color-text-mute: #666;
  --color-text-light: #131413;
  --color-white: #fff;

  /* アクセントカラー */
  --color-accent: #60AB60;
  --color-accent-light: #9fd19f;
  --color-link: #016425;
  --color-link-text: #016425;

  /* 背景・ボーダー */
  --color-bg-app: #f7f3ec;
  --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));

  /* フォント */
  --font-body: YakuHanJP, "Local Noto Sans JP", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;

  /* フォントサイズ (16pxベース) */
  /* 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.5;
}
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 {
  color: var(--color-link-text);
}
a:hover {
  text-decoration: none;
  color: var(--color-link);
}

.u-bold {
  font-weight: 700;
}
.u-justify {
  text-align: left !important;
}

@media (max-width:980px) {
  .inner {
    margin: 0 1.5em;
  }
}

.sp {
  display: none;
}
@media (max-width:640px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}


/*
ヘッダー
------------------------------------- */
header {
  background: var(--color-white);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
header img {
  max-height: 100px;
}

@media (max-width:960px) {
  header {
    width: 100%;
    height: auto;
  }
  header img {
    width: 100%;
    margin: 0;
  }
}


/*
メインビジュアル
------------------------------------- */
#topHeader {
	position: relative;
	width: 100%;
	margin: 0 auto;
	background-image: url(../img/bg-header.webp);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	text-align: center;
}
#topHeader .grid:before {
	content:"";
	display: block;
	padding-top: 39.9%;
}
#topHeader h1 {
	position: absolute;
	top: 0%;
	left: 0;
	bottom: 0;
	right: 0;
	height: 100%;
	padding: 0;
	margin: -1% auto 0 auto;
	display: flex;
	align-items: center;
	align-content: center;
}
#topHeader h1 img {
	height: 54.83%;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width:640px){
	#topHeader {
		width: 100%;
		min-width: auto;
		height: auto;
		background-image: url(../img/bg-header-sp.webp);
		background-repeat: no-repeat;
		background-size: contain;
		overflow: visible;
	}
	#topHeader .grid:before {
		content:"";
		display: block;
		padding-top: 150%;
	}
	#topHeader h1{
		display: none;
	}
}

#visualcredits {
  padding-top: 10px;
  text-align: center;
  font-size: var(--fs-12);
  line-height: 1.6;
  letter-spacing: 0.05em;
  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.6;
  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;
  text-indent: 0.5em;
  font-size: var(--fs-24);
}
#hashtag-block p.intro {
  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);
  gap: 30px;
  max-width: 960px;
  margin: 0 auto var(--space-2xl);
}
#hashtag-container .hashtag-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 30px;
  border-top: 6px solid var(--color-accent);
  border-radius: 3px;
  box-shadow: 0 5px 20px 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 .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;
  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 {
  margin: var(--space-m) 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: 30px;
  }
  #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);
  }
}


/* ハッシュタグ機能
------------------------------------- */
#hashtagGenerator {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin: var(--space-xl) auto;
  padding: var(--space-xl) 0;
}
.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) auto;
  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 p {
    font-size: var(--fs-16);
    line-height: 1.5;
  }
  #hashtagGenerator #hashtagList {
    width: 100%;
    padding: 10px 4px;
    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 .figures {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
}
#howtoenter .figure1 img,
#howtoenter .figure2 img,
#howtoenter .figure3 img {
  width: 100%;
  border-radius: 3px;
}
#howtoenter .figure1,
#howtoenter .figure2,
#howtoenter .figure3 {
  width: 32%;
  max-width: 300px;
  overflow: hidden;
  background: var(--color-white);
  border-radius: 3px;
  box-shadow: 0px 10px 15px rgba(0, 100, 40, 0.3);
}
#howtoenter p {
  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:640px) {
  #howtoenter .figures {
    display: block;
    width: 100%;
  }
  #howtoenter .figure1,
  #howtoenter .figure2,
  #howtoenter .figure3 {
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0 auto var(--space-l) auto;
  }
}


/*
WEBフォーム
------------------------------------- */
#webform {
  margin: 0;
  padding: var(--space-2xl-3xl) 0;
  background: var(--color-bg-app);
  text-align: center;
  color: var(--color-text-strong);
}
#webform h2 {
  margin-bottom: var(--space-xl);
  line-height: 1.2;
  color: var(--color-text-strong);
}
#webform p {
  margin: 0 auto;
  padding: 0 0 var(--space-xl);
  text-align: center;
  font-size: var(--fs-20);
  line-height: 1.6;
  color: #000;
}
#webform a {
  display: inline-block;
  border-radius: 100vw;
  margin: 0 auto;
  padding: 16px var(--space-l);
  background: var(--color-link);
  text-decoration: none;
  font-size: var(--fs-20);
  font-weight: bold;
  color: #fff;
}

@media screen and (max-width:1000px) {
  #webform p {
    margin: 0 auto;
  }
}
@media screen and (max-width:640px) {
  #webform a {
    font-size: var(--fs-18);
  }
}


/*
賞品
------------------------------------- */
#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;
}
#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;
  }
}

@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 15px rgba(165, 137, 90, 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 {
  font-size: 0.8em;
}
#application .application-container .note.aC {
  text-align: center;
}
#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;
}

#application .judge {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row-reverse;
}
#application .judgePhoto {
	width: 240px;
	margin: 0 0 40px 40px;
	border-radius: 3px;
}

@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 .judge {
		display: block;
		text-align: center;
	}
	#application .judgePhoto {
		width: 60%;
		margin: 0 auto 3%;
	}
	#application .judge .judgeInfo {
		text-align: left;
	}
}


/*
お問い合わせ
------------------------------------- */
#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.5em;
  }
  #application .inquiry p {
    padding-right: 0;
  }
}


/* フッター
----------------------------------------*/
footer,
footer .footer_pageTop {
  background: var(--color-accent);
  color: var(--color-text-light);
}
footer {
  text-align: center;
}
footer .footer-pagetop {
  padding: var(--space-s) 0 var(--space-2xs) 0;
}
footer .footer-link {
  margin: 0 auto 10px auto;
}
footer .footer-link p {
  line-height: 1.8;
}
footer .footer-link a {
  padding: 0 1em;
  text-decoration: none;
  font-size: var(--fs-12);
  color: var(--color-text-light);
}
footer .footer-link a:hover {
  text-decoration: underline;
}
footer .footer-link-extra {
  margin-top: 8px;
}
footer .footer-copyright {
  padding: var(--space-2xs) var(--space-m) var(--space-m);
  font-size: var(--fs-12);
  line-height: 1.8;
}
footer .footer-copyright .copyright {
  font-size: var(--fs-12);
}
span.linklike {
  font-weight: bold;
}

@media (max-width:640px) {
  footer .footer-link p {
    line-height: 1.4;
  }
  footer .footer-link a {
    display: inline-block;
  }
  footer .footer-copyright {
    font-size: var(--fs-10);
    text-align: left;
  }
  footer .footer-copyright .copyright {
    font-size: var(--fs-8);
    text-align: left;
  }
}
