@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: #333;
  --color-text-strong: #000;
  --color-text-mute: #666;
  --color-text-light: #111;
  --color-white: #fff;

  /* アクセントカラー */
  --color-accent: #a1d3dd;
  --color-accent-light: #c7e4ea;
  --color-link: #0054a0;
  --color-link-text: #0054a0;

  /* 背景・ボーダー */
  --color-bg-app: #f7f3ec;
  --color-border: #cecac3;
  --color-separator: #cecac3;
  --color-inquiry-border: #dfdad0;
  --color-inquiry-border-strong: #dfdad0;

  /* グラデーション */
  --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 ⇒ 12.5px */
  --fs-14: clamp(0.781rem, 0.721rem + 0.256vw, 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-left {
  text-align: left !important;
}
.u-smaller {
  font-size: 0.8em;
}
.u-larger {
  font-size: 1.1em;
}

@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;
  }
}


/*
メインビジュアル
------------------------------------- */
@media screen and (min-width:640.98px) {
  #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: 0 auto;
    display: flex;
    align-items: center;
    align-content: center;
  }
  #topHeader h1 img {
    height: calc((360/766) * 100%);
    margin-inline: 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.02em;
  color: var(--color-text-mute);
}
#visualcredits span {
  display: inline-block;
}
@media (max-width:640px) {
  #visualcredits {
    margin-inline: 1.5em;
    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-14);
}

@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: var(--space-m) auto;
	line-height: 1.4;
	font-size: var(--fs-28);
}
#hashtag-block p.intro {
  margin: 0 auto var(--space-m) auto;
  text-align: justify;
  line-height: 1.8;
  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-block .mainhashtag-word {
  display: inline-block;
	border-radius: 4px;
	margin: 10px auto 20px;
	padding: var(--space-xs) var(--space-xl);
	background: var(--color-accent-light);
	font-size: var(--fs-28);
  font-weight: 700;
	font-feature-settings: "palt";
	line-height: 1.2;
}
#hashtag-block .subhashtag-list .subhashtag-word {
	display: inline-block;
  width: 6em;
	border-radius: 4px;
	margin: 6px;
	padding: var(--space-xs) 0;
	background: var(--color-accent-light);
  font-weight: 700;
	font-size: var(--fs-20);
	font-feature-settings: "palt";
	line-height: 1.2;
}
#hashtag-block .hashtag-plus {
	margin: 0 auto 20px;
  font-weight: 900;
	font-size: var(--fs-48);
}
#hashtag-block .subhashtag-list {
	display: block;
}
#hashtag-block .subhashtag {
	margin-bottom: var(--space-2xl);
}
#hashtag-block .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;
}
#hashtag-block a {
  word-break: break-all;
  font-size: 0.8em;
}

@media screen and (max-width:640px) {
  #hashtag-block h3 {
    font-size: var(--fs-24);
  }
  #hashtag-block p.intro {
    line-height: 1.6;
  }
  #hashtag-block .mainhashtag-word {
    font-size: var(--fs-24);
  }
  #hashtag-block .subhashtag-list .subhashtag-word {
    width: 6em;
    margin: 4px 2px;
    font-size: var(--fs-18);
  }
}


/* 写真エリア
------------------------------------- */
#hashtag-block .photo-area {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: var(--space-2xl) auto var(--space-xs);
}
#hashtag-block .photo-area figure {
  max-width: 308px;
}
#hashtag-block .photo-area img {
  width: 100%;
  border-radius: 4px;
}
#hashtag-block .credits {
  margin: 0 auto var(--space-2xl);
  line-height: 1.4;
}

@media screen and (max-width:640px) {
  #hashtag-block .photo-area {
    gap: 12px;
    justify-content: center;
  }
  #hashtag-block .photo-area figure {
    max-width: calc((100% - 24px) / 2);
  }
}

/* 保護エリア
------------------------------------- */
#hashtag-block .wildlife-area {
  margin: var(--space-2xl) auto;
  padding: var(--space-l-xl) var(--space-s-m) var(--space-s-m);
  border: 1px solid var(--color-inquiry-border);
  border-radius: 4px;
  background: var(--color-bg-app);
}
#hashtag-block .wildlife-area h4 {
	margin: 0 auto var(--space-m) auto;
  padding-bottom: var(--space-m);
  border-bottom: 1px solid var(--color-inquiry-border);
	line-height: 1.4;
	font-size: var(--fs-28);
}
#hashtag-block .wildlife-area p {
  margin: 0 auto;
  text-align: justify;
  line-height: 1.8;
  font-size: var(--fs-18);
}
#hashtag-block .wildlife-area p.rules-list {
  margin: 0 auto var(--space-m) auto;
  padding-bottom: var(--space-m);
  border-bottom: 1px solid var(--color-inquiry-border);
  text-align: center;
  line-height: 2.2;
}

@media screen and (max-width:640px) {
  #hashtag-block .wildlife-area h4 {
    font-size: var(--fs-24);
  }
  #hashtag-block .wildlife-area p {
    line-height: 1.6;
  }
  #hashtag-block .wildlife-area p.rules-list {
    text-align: justify;
    line-height: 2.0;
  }
}


/* ハッシュタグ機能
------------------------------------- */
#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-18);
    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(109, 174, 188, 0.5);
}
#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;
  }
}


/*
賞品
------------------------------------- */
#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 var(--space-m);
  padding: 12px 12px 13px;
  text-align: center;
  background: var(--color-accent-light);
  line-height: 1.2;
  font-size: var(--fs-24);
	color: var(--color-text-light);
}
#award p {
  padding-top: var(--space-m);
  text-align: center;
  line-height: 1.6;
  font-size: var(--fs-18);
}
#award p.intro {
  margin: 0 auto var(--space-l);
	text-align: center;
}
#award p.prize {
	margin-bottom: var(--space-2xl);
  padding-top: var(--space-2xs);
	text-align: center;
  line-height: 1.8;
}
#award p.prizeLast {
	margin-bottom: 0;
}
#award p.prize span {
	font-size: 0.8em;
}
#award p.note {
	text-align: center;
  font-size: var(--fs-16);
}
#award h3 {
	line-height: 1.2;
}

@media screen and (max-width:960px) {
	#award h3 {
		line-height: 1.4;
	}
	#award p.intro {
		text-align: justify;
	}
}
@media screen and (max-width:640px) {
	#award p.awardType {
		font-size: 1.6;
		text-align: center;
	}
  #award p.prizeLast {
    margin-bottom: var(--space-m);
  }
}


/*
募集要項
------------------------------------- */
#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-light);
  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;
  word-break: break-all;
  overflow-wrap: break-word;
}
#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: clamp(0em, -0.641em + 2.735vw, 1em);
}
#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 {
    border-top: 1px solid #ddd;
  }
  #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-light);
  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;
  }
}
