@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

/* 定義 */
:root{
  --white: var(--color-brand-white);
  --primary: var(--color-brand-primary);
  --secondary: var(--color-accent-1);
  --black: var(--color-brand-black);
  --gray:var(--color-neutral-600);
  --lightteal:var(--color-neutral-lightteal);
  --lightbeige: var(--color-neutral-sand);
  --lightgray: #f8f8f8;
  --bordergray: #707070;
  --text_size29: 2.9rem;
  --text_size28: 2.8rem;
  --text_size27: 2.7rem;
  --text_size26: 2.6rem;
  --text_size25: 2.5rem; 
  --text_size24: 2.4rem;
  --text_size23: 2.3rem;
  --text_size22: 2.2rem;
  --text_size21: 2.1rem;
  --text_size20: 2rem;
  --text_size19: 1.9rem;
  --text_size18: 1.8rem;
  --text_size17: 1.7rem;
  --text_size16: 1.6rem;
  --text_size15: 1.5rem; 
  --text_size14: 1.4rem;
  --text_size13: 1.3rem;
  --text_size12: 1.2rem;
  --text_300: 300;
  --text_400: 400;
  --text_500: 500;
  --text_700: 700;
  --text_900: 900;
  --text_heightL: 1.8;
  --text_heightM: 1.6;
  --text_heightS: 1.5;
  --text_center:center;
  --text_left:left;
  --text_right:right;
}

@media screen and (max-width: 767px){

  :root{
    --text_sizeL: 2rem;
    --text_sizeM: 1.8rem;
    --text_sizeS: 1.5rem;
    --text_sizeXS: 1.3rem;
    --header-h: 72px; /* 基本のヘッダー高さ（後でメディアクエリで上書き可） */
  }

}

.font_bold{
  font-weight: var(--text_700);
}


@media screen and (max-width: 767px){
  a[id] {
    position: relative;
    display: block;
    height: 72px;          /* ヘッダー高さ */
    margin-top: -72px;     /* 相殺して実レイアウトは崩さない */
    pointer-events: none;
  }

}


/*==========================================
 font
===========================================*/

html {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  color: var(--color-brand-black);
}

/* link */
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
a { outline: none; text-decoration: none; }
a:link    { color: var(--color-brand-black); text-decoration: none; }
a:visited { color: var(--color-brand-black); text-decoration: underline; }
a:hover   { color: var(--color-brand-black); text-decoration: underline; }
a:active  { color: var(--color-brand-black); text-decoration: underline; }

/*==========================================
 body
===========================================*/

html {
  background: var(--color-brand-white);
  overflow: auto;
}
body {
  overflow: hidden;
	min-width: 1100px;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (max-width: 767px) {
  body {
  	min-width: auto;
  }
}

/*==========================================
 clearfix
===========================================*/
.clearfix {
	zoom: 1;
}
.clearfix:before, .clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
}

/*==========================================
 画像切替
===========================================*/
/* PC、スマートフォン表示分岐 */
.pcView {
  display: block;
}
.pcOnly {
  display: block;
}
.spView {
  display: none;
}
.spOnly {
  display: none;
}
@media only screen and (max-width: 767px) {
  .pcView {
    display: none;
  }
  .pcOnly {
    display: none;
  }
  .spView {
    display: block;
  }
  .spOnly {
    display: block;
  }
}

/*==========================================
 ヘッダーのスタイル
===========================================*/
header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 90px;
	background-color: var(--color-brand-primary);
}
header #header {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	padding: 20px 0;
}
header #headerLogoArea {

}
header #headerLogoArea h1 img {
	width: 128px;
	height: auto;
}
header #headerGlobalArea {
	display: flex;
	flex-direction: row;
    gap: 20px;
}

header #headerGlobalArea #headerContact {
	display: block;
}
header #headerGlobalArea #headerContact a {
	display: block;
	width: 250px;
	height: auto;
	padding: 12px 0;
	box-sizing: border-box;
	border-radius: 20px;
	background-color: var(--color-accent-5);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--color-brand-white);
	text-align: center;
}
header #headerGlobalArea #headerContact a:hover {
	text-decoration: none;
	opacity: 0.7;
}



@media only screen and (max-width: 767px) {
	header {
		height: 70px;
	}
	header #header {
		position: relative;
		display: flex;
		align-items: center;
		padding: 0 1.5rem;
		width: 100%;
		height: 100%;
		box-sizing: border-box;
	}
	header #headerLogoArea {
		position: relative;
		left: auto;
		top: auto;
		width: 100px;
		height: 100%;
	}
	header #headerLogoArea h1 {
		position: relative;
		display: flex;
		align-items: center;
		margin: 0;
		width: 100%;
		height: 100%;
	}
	header #headerLogoArea h1 a {
		display: block;
	}
	header #headerLogoArea h1 img {
		width: 100%
	}
	header #headerGlobalArea {
		position: relative;
		right: auto;
		top: auto;
		flex: 1;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		padding-left: 1.5rem;
		width: auto;
		height: 100%;
		box-sizing: border-box;
	}


	header #headerGlobalArea #headerContact {
		position: relative;
		top: auto;
		left: auto;
	}
	header #headerGlobalArea #headerContact a {
		width: 170px;
		padding: 12px 0;
		border-radius: 20px;
		font-size: 1.4rem;
		font-weight: 500;
	}
}


/*==========================================
 コンテンツのスタイル 共通
===========================================*/
#mainContents {
  padding: 90px 0 0;
  min-height: 500px;
}
section.w_full {
  width: 100%;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  #mainContents {
    padding: 70px 0 0;
  }

}
.text-center {    
  text-align: center;
}


/*==========================================
 TOP
===========================================*/


.top_hero {
  background-color:var(--color-brand-primary);
  overflow: auto;
}

.img_hero {
  width:100%;
  text-align: center;
}

.img_hero img{
  width:100%;
  text-align: center;
}

.period_hero {
  margin: 15px auto;
  color: var(--color-brand-white);
  font-size: 1.6rem;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.period_start {
  border-right: 2px solid var(--color-brand-white);
  padding-right: 20px;
}

.period_end {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
}

.period_start span.number {
  font-size: 3.5rem;
  font-weight: 600;
}
.period_end span.number {
  font-size: 3.5rem;
}

.period_border{
  border: 1px solid var(--color-brand-white);
  padding: 3px 5px;
  font-size: 1.5rem;
  line-height: 1.3;
}

.till{
  font-size: 2.5rem;
}


@media screen and (max-width:767px) {

  .top_hero {
    background-color:var(--color-brand-primary);
    overflow: auto;
  }

  .img_hero {
    width:100%;
    text-align: center;
  }

  .img_hero img{
    width:100%;
    text-align: center;
  }

  .period_hero {
    margin: 15px auto;
    color: var(--color-brand-white);
    font-size: 2rem;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
  }

  .period_hero {
    font-size: 23px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
  }

  .period_start {
    border-right: none;
    border-bottom: 2px solid var(--color-brand-white);
    padding-right: 0;
    padding-bottom: 10px;
  }

  .period_end {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0 5px;
  }

  .period_start span.number {
    font-size: 3.5rem;
    font-weight: 600;
  }
  .period_end span.number {
    font-size: 2.3rem;
  }

  .period_enddate{
    font-size: 1.5rem;
  }

  .period_border{
    border: 1px solid var(--color-brand-white);
    padding: 2px 5px;
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .till {
    font-size: 1.8rem;
  }
 
}



/*==========================================
 レイアウト
===========================================*/


.common_layout {
  width: 100%;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.common_layout  .hgv_presents {
  text-align: center;
  margin: 34px 0 42px;
}

.common_title {
  position: relative;
  width: 100%;
  margin: 50px auto 0;
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--color-brand-white);
  background-color: var(--color-brand-primary);
  text-align: center;
  line-height: 1.8;
}

.common_title span{
  font-size: 2.3rem;
  font-weight: 400;
}

@media only screen and (max-width: 767px) {
  .common_title {
    width: 95%;
    margin: 40px auto 0;
    font-size: 2.3rem;
    line-height: 1.5;
    padding: 5px 0 5px;
    color: var(--color-brand-white);
    background-color: var(--color-brand-primary);
  }

  .common_title span{
    font-size: 2rem;
    font-weight: 400;
  }

}

/*==========================================
 概要
===========================================*/
.overview_block  {
  width: 700px;
  margin: 40px auto 0;
}

.overview_block p {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.6;
}

.overview_block a {
  text-decoration: underline;
}

.lead_block {
  padding: 0px 10px 5px;
  text-align: center;
  height: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
  width: 100%;
}

.container {
  margin-right: auto;
  margin-left: auto;
}

.lead_text {
  width: 100%;
  padding: 0 0;
}
.lead_text p {
  font-size: 1.8rem;
  text-align: center;
  line-height: 2;
  margin: 20px 0 0;
}

.lead_text p span{
  font-weight: var(--text_700);
}

.lead_text p.emphasis{
  font-weight: var(--text_700);
  margin: 20px auto;
  width: 80%;
  border-bottom: 2px solid var(--bordergray);
}

.lead_text a {
  display: block;
  width: 500px;
  height: 60px;
  margin: 30px auto 0;
  padding: 18px 0 0;
  box-sizing: border-box;
  border-radius: 30px;
  background-color: var(--color-brand-primary);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-brand-white);
  text-align: center;
}

.lead_text a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.overview_list{

}

.overview_list li{
  font-size: 1.8rem;
  font-weight: normal;
  list-style: none;
  padding: 3px 0;
  line-height: 1.6;
}

.overview_list li span{
  font-size: 1.8rem;
  font-weight: bold;
  display: inline-block;
  line-height: 1.6;
}





@media only screen and (max-width: 767px) {

  .overview_block {
    width: 90%;
    margin: 20px auto 0;
  }
  .overview_block p {
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.6;
    width: 90%;
    margin: 0 auto;
    padding: 0 0 10px;
  }

  .lead_block {
    padding: 0px 0 5px;
    text-align: center;
    height: 100%;
    width: 96%;
    margin: 20px auto 0;
  }
  .container {
  /*    padding-right: 30px;*/
    padding-left: 0;
  }

 .lead_text {
    width: 100%;
    margin: 0 auto;
    padding: 30px 0 0;
  }
 .lead_text p {
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.6;
    margin: 0 0 0;
  }

  .lead_text p.emphasis{
    font-weight: var(--text_700);
    margin: 20px auto;
    width: 90%;
    border-bottom: 2px solid var(--bordergray);
  }

 .lead_text a {
    width: 320px;
    height: 48px;
    margin: 12px auto 0;
    border-radius: 40px;
    font-size: 1.5rem;
  }

  .overview_list{
    width: 100%;
    margin: 0 auto;
  }

  .overview_list li span{
    font-size: 1.6rem;
    font-weight: bold;
    display: inline-block;
  }

  .overview_list li{
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 1.6;
    padding: 5px 0;
  }

}


/* 横並び */
.overview_column{
  display: flex;
  gap: 30px;
  margin: 50px 0 0;
  flex-direction: column;
}

.overview_simple_text{
  width: 100%;
}

.overview_detail{

}

.overview_detail dt{
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0;
  line-height: 1.6;
}

.overview_detail dd{
  font-size: 1.8rem;
  font-weight: normal;
  padding: 0;
  line-height: 1.6;
}

.indent{
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}

.overview_image{
  width: 100%;
}

.overview_image img{
  display: block;
  width: 100%;
  margin: 0;
}

.overview_list_text{
  width: 100%;
}

.overview_list_title{
  font-weight: 700;
  font-size: 1.8rem;
  border-bottom: 1px solid var(--bordergray);
  text-align: center;
  padding: 0 0 15px;
}

.overview_text_list{
  margin: 15px 0 0;
  padding: 0 40px;
}

.overview_text_list li{
  font-size: 1.8rem;
  font-weight: normal;
  padding: 0 0 0 1em;
  line-height: 1.6;
  list-style: none;
  text-indent: -1em;
}

.overview_text_end{
  font-size: 1.8rem;
  font-weight: normal;
  padding: 0;
  line-height: 1.6;
  margin: 30px 0 0;
  text-align: center;
}

.overview_text_end p{
  margin: 0 0 20px;
}

.overview_text_end p:last-child{
  margin: 0 0 0x;
}

@media only screen and (max-width: 767px) {

  .overview_column{
    display: flex;
    gap: 30px;
    margin: 20px auto 0;
    flex-direction: column;
    width: 100%;
  }

  .overview_simple_text{
    width: 100%;
  }

  .overview_detail{

  }

  .overview_detail dt{
    font-size: 1.6rem;
    font-weight: 700;
    padding: 0;
    line-height: 1.6;
  }

  .overview_detail dd{
    font-size: 1.6rem;
    font-weight: normal;
    padding: 0;
    line-height: 1.6;
  }

  .overview_image{
    width: 100%;
  }

  .overview_image img{
    display: block;
    width: 100%;
    margin: 0;
  }

  .overview_list_text{
    width: 100%;
  }

  .overview_list_title{
    font-weight: 700;
    font-size: 1.6rem;
    border-bottom: 1px solid var(--bordergray);
    text-align: center;
    padding: 0 0 15px;
  }

  .overview_text_list{
    margin: 15px 0 0;
    padding: 0;
  }

  .overview_text_list li{
    font-size: 1.6rem;
    font-weight: normal;
    padding: 0 0 0 1em;
    line-height: 1.6;
    list-style: none;
    text-indent: -1em;
  }

  .overview_text_end{
    font-size: 1.6rem;
    font-weight: normal;
    padding: 0;
    line-height: 1.6;
    margin: 30px 0 0;
    text-align: center;
  }

  .overview_text_end p{
    margin: 0 0 0;
  }

  .overview_text_end p:last-child{
    margin: 0 0 0x;
  }
}


/*==========================================
スケジュール
===========================================*/

.schedule_block{
  width: 700px;
  margin: 50px auto 30px;
  background: var(--color-neutral-700);
}

.schedule_table{
  padding: 30px;
}

.schedule_list{
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  border-top: solid 1px var(--bordergray);
  align-items: flex-start;
  padding: 10px;
  align-items: center;
}

.schedule_list--last{
  display: flex;
  flex-direction: column;
  border-top: solid 1px var(--bordergray);
  padding: 10px;
}

.schedule_place{
  font-size: 1.8rem;
  line-height: 1.6;
}

.schedule_place span{
  font-size: 1.8rem;
  line-height: 1.6;
  width: 100%;
  font-weight: 600;
  display: block;
}

.schedule_list:first-child{
  border-top: none;
}

.schedule_time{
  font-size: 1.8rem;
  line-height: 1.6;
  width: 40%;
  font-weight: 600;
}

.schedule_details{
  font-size: 1.8rem;
  line-height: 1.6;
  width: 60%;
}

@media screen and (max-width: 767px) {
  .schedule_block{
    width: 90%;
    margin: 30px auto 30px;
    background: var(--color-neutral-700);
  }

  .schedule_table{
    padding: 15px;
  }

  .schedule_list{
    display: flex;
    justify-content: space-around;
    gap: 20px;
    border-top: solid 1px var(--bordergray);
    align-items: center;
    padding: 10px;
  }

  .schedule_list--last{
    display: flex;
    flex-direction: column;
    border-top: solid 1px var(--bordergray);
    padding: 10px;
  }

  .schedule_place{
    font-size: 1.6rem;
    line-height: 1.6;
  }

  .schedule_place span{
    font-size: 1.6rem;
    line-height: 1.6;
    width: 100%;
    font-weight: 600;
    display: block;
  }


  .schedule_list:first-child{border-top: none;}

  .schedule_time{
    font-size: 1.6rem;
    line-height: 1.6;
    width: 40%;
    text-align: left;
  }

  .schedule_details{
    font-size: 1.6rem;
    line-height: 1.6;
    width: 60%;
  }
}

/*==========================================
申し込みについて
===========================================*/

.terms_list{}

.terms_list li{
  list-style: none;
  padding: 15px 0;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}

.terms_list li:nth-child(odd) {
  background-color: var(--color-neutral-700); /* 背景色を設定 */
}

@media screen and (max-width: 767px) {
  .terms_list{}

  .terms_list li{
    list-style: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
  }

  .terms_list li:nth-child(odd) {
    background-color: var(--color-neutral-700); /* 背景色を設定 */
  }

}

.terms_table {
  margin: 50px auto 30px;
  width: 700px;
}
.terms_table th {
  background: var(--color-neutral-700);
  border: solid 1px var(--bordergray);
  color: var(--color-brand-black);
  padding: 10px;
  font-size:1.8rem;
  line-height:1.6;
  width: 22%;
}
.terms_table td {
  background: var(--color-brand-white);
  border: solid 1px var(--bordergray);
  color: var(--color-brand-black);
  padding: 10px;
  font-size:1.8rem;
  line-height:1.6;
  width: 78%;
}

.table_bold{
  font-weight:bold;
}

.table_small{
  font-size:1.4rem;
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}

.terms_addition{
  width: 70px;
  margin: 0 auto;
}

.terms_notes{}

.terms_notes li{
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.6;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.6rem;
  line-height: 1.6;
}

.terms_notes li::before {
  margin: 0;
  padding: 0;
  content: "※";
}

.terms_olist{
  padding: 0 0 10px 20px;
}
 
@media screen and (max-width: 767px) {
  .terms_table {
    margin: 30px auto 30px;
  }

  .terms_addition {
    width: 90%;
    margin: 0 auto;
  }

  .last td:last-child {
    border-bottom: solid 1px var(--bordergray);
    width: 94%;
  }
  .terms_table {
    width: 90%;
  }
  .terms_table th,
  .terms_table td {
    border-bottom: none;
    display: block;
    width: 94%;
    padding: 10px 10px;
    font-size: 1.6rem;
  }
}

/*==========================================
注意事項
===========================================*/

.attention_list{
  width: 700px;
  margin: 40px auto;
}

.attention_list li{
  font-size: 1.8rem;
  font-weight: normal;
  list-style: none;
  padding: 7px 0 7px 1em;
  line-height: 1.5;
  text-indent: -1em;
}

@media screen and (max-width: 767px) {

  .attention_list{
    width: 90%;
    margin: 30px auto;
  }

  .attention_list li{
    font-size: 1.6rem;
    font-weight: normal;
    list-style: none;
    padding: 3px 0 3px 1em;
    line-height: 1.5;
    text-indent: -1em;
  }

}

/*==========================================
メッセージ
===========================================*/
.message_block {
	position: relative;
	width: 100%;
	height: auto;
	background-image: url(../img/message_bg_pc.webp);
	background-repeat: no-repeat;
	padding: 0 0;
	background-size: cover;
  background-position: bottom;
}
.message_block img {
	width: 100%;
	height: auto;
}
.message_block .textArea {
  width: 100%;
  text-align: center;
  padding: 5% 0 25%;
  color: var(--color-brand-white);
}
.message_block .textArea h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-brand-white);
  line-height: 1.6;
  border-bottom: solid 2px #333;
  padding: 0 0 10px;
  width: 45%;
  margin: 0 auto;
}
.message_block .textArea p {
	padding: 30px 0 0;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2.0;
}

@media only screen and (max-width: 767px) {
	.message_block {
		position: relative;
		width: 100%;
		height: auto;
		background-image: url(../img/message_bg_sp.webp);
		background-position: bottom;
		background-repeat: no-repeat;
    padding: 6% 0 70%;
    background-size: cover;
	}
	.message_block .textArea {
		padding: 0 2rem;
		box-sizing: border-box;
	}
	.message_block .textArea h2 {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.6;
    border-bottom: solid 2px #333;
    padding: 0 0 10px;
    width: 100%;
    margin: 0 auto;
	}
	.message_block .textArea p {
		padding: 20px 0 0;
		font-size: 1.5rem;
		font-weight: 400;
		line-height: 1.8;
	}
}


/*==========================================
個人情報＆問い合わせ＆申し込み
===========================================*/
.privacy_block {
  width: 700px;
  margin: 0 auto;
  padding: 50px 0 50px;
}

.privacyBox{
  margin-top: 40px;
  border: solid 1px var(--color-brand-black);
  border-radius: 6px;
  padding: 20px;
}

.privacyBox h2 {
  padding: 0 0;
  border-bottom: none;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-brand-primary);
  text-align: left;
}

.privacyBox p {
  padding: 10px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.6 ;
  margin: 15px 0;
}

.privacyBox p a{
  color: var(--color-accent-1);
  font-weight: var(--text_700);
}

.contact_block{
  margin: 20px 0 0;
}

.contact_inner{
  width: 60%;
  margin: 0 auto;
}

.contact_title{
  padding: 0 0;
  border-bottom: none;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-brand-primary);
  text-align: left;
}

.contact_text{
  padding: 0;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.6;
  margin: 20px 0;
}

.contact_icon{
  width: 25px;
  display: inline-block;
  vertical-align: middle;
  padding-left: 2px;
}

.contact_text--center{
  text-align: center;
}

.contact_inner .contact_btnlink:link,.contact_inner .contact_btnlink:visited{
  width: 100%;
}

.contact_btnlink:link,.contact_btnlink:visited{
  display: block;
  width: 60%;
  max-width: 500px;
  padding: 16px 0;
  box-sizing: border-box;
  border-radius: 50px;
  background-color: var(--color-accent-5);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-brand-white);
  text-align: center;
  text-decoration: none;
  margin: 20px auto;
  line-height: 1;
}

.contact_btnlink:hover{
  text-decoration: none;
  color: var(--color-brand-white);
  opacity: 0.8;
}

.contact_textlink:link,.contact_textlink:hover{
  color: var(--color-accent-1);
  font-weight: var(--text_700);
}

@media only screen and (max-width: 767px) {

  .privacy_block {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0 20px;
  }

  .privacyBox{
    margin-top: 40px;
    border: solid 1px var(--color-brand-black);
    border-radius: 6px;
    padding: 15px;
  }

  .privacyBox h2 {
    padding: 0 0;
    border-bottom: none;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-brand-primary);
    text-align: left;
  }

  .privacyBox p {
    padding: 10px 0 0;
    font-size: 1.6rem;
    font-weight: 400;
    text-align: left;
    line-height: 1.6 ;
    margin: 15px 0;
  }

  .privacyBox p a{
    color: var(--color-accent-1);
    font-weight: var(--text_700);
  }

  .contact_block{
    margin: 20px 0 0;
  }

  .contact_inner{
    width: 90%;

  }

  .contact_title{
    padding: 0 0;
    border-bottom: none;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-brand-primary);
    text-align: left;
  }

  .contact_text{
    padding: 0;
    font-size: 1.6rem;
    font-weight: 400;
    text-align: left;
    line-height: 1.6;
    margin: 20px 0;
  }

  .contact_icon{
    width: 25px;
    display: inline-block;
    vertical-align: middle;
    padding-left: 2px;
  }

  .contact_text--center{
    text-align: center;
  }

  .contact_btnlink:link{
    display: block;
    width: 95%;
    padding: 15px 0;
    box-sizing: border-box;
    border-radius: 50px;
    background-color: var(--color-accent-5);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-brand-white);
    text-align: center;
    text-decoration: none;
    margin: 20px auto;
    line-height: 1;
  }

  .contact_btnlink:hover{
    text-decoration: none;
    color: var(--color-brand-white);
    opacity: 0.8;
  }

  .contact_textlink:link,.contact_textlink:hover{
    color: var(--color-accent-1);
    font-weight: var(--text_700);
  }

}


/*==========================================
 フッターのスタイル
===========================================*/
footer {
  width: 100%;
  margin: 50px 0 0;
  background-color: var(--color-brand-primary);
}
footer #footerBody {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  padding: 80px 0 50px;
}
footer #footerBody h1 {
  display: block;
  width: 895px;
  margin: 0 auto;
  padding: 0 0 20px;
}
footer #footerBody h1 img {
  width: 895px;
  height: auto;
}
footer #footerBody p {
  padding: 25px 0 0;
  font-size: 1.2rem;
  line-height: 2.0;
  color: var(--color-brand-white);
}
footer #footerBody small {
  display: block;
  padding: 50px 0 0;
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--color-brand-white);
  text-align: center;
}

footer a:link,footer a:visited{
  color: var(--color-brand-white);
  text-decoration: underline;
}

footer a.footer_link:link,footer a.footer_link:visited{
  color: var(--color-accent-1);
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  footer {
    width: 100%;
    margin: 50px 0 0;
  }
  footer #footerBody {
    width: 90%;
    padding: 30px 0 50px;
  }
  footer #footerBody h1 {
    width: 100%;
  }
  footer #footerBody h1 img {
    width: 100%;
    height: auto;
  }
}

