@charset "utf-8";



/*############################################################################*/
/*

グレー背景のトピックスで使うcss定義

*/
/*############################################################################*/


section.first_topics {
  position: relative;
  margin: 0;
  padding: 70px 0 0 0;
  background-color: #667380;
  color: #ffffff;
}

section.first_topics img {
  width: 100%;
}

section.first_topics article {
  box-sizing: border-box;
  margin: 0 auto 140px auto;
  padding: 0 10px 0 10px;
  max-width: 1200px;
  width: 100%;
}

section.first_topics article:nth-last-of-type(1) {
  margin-bottom: 50px;
}

section.first_topics article::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -20px;
  right: 10px;
  width: 2px;
  height: 200px;
  background-color: #ffff00;
  transform: rotate(45deg);
}

/*背景の帯*/

section.first_topics .left_bg_line::before {
	content: '';
	display: block;
	position: absolute;
	top: 20px;
	left: calc(50% - 50vw);
	height: 60%;
  width: calc(100vw - ((100vw - 1200px) / 2));
	background-color:#758797;
}

section.first_topics .right_bg_line::before {
	content: '';
	display: block;
	position: absolute;
	top: 20px;
	left: calc(50% - 50vw + ((100vw - 1200px) / 2));
	height: 80%;
  width: calc(100vw - ((100vw - 1200px) / 2));
	background-color:#758797;
}


/*トピックスナンバー*/
section.first_topics .topics1::after,
section.first_topics .topics2::after,
section.first_topics .topics3::after,
section.first_topics .topics4::after,
section.first_topics .topics5::after {
  content: '';
  display: block;
  position: absolute;
  top: -10px;
  right: -20px;
  width: 70px;
  height: 70px;
}

section.first_topics .topics1::after {
  background: url(../img/common/topics_blue1.svg) center center no-repeat;
  background-size: 100%;
}
section.first_topics .topics2::after {
  background: url(../img/common/topics_blue2.svg) center center no-repeat;
  background-size: 100%;
}
section.first_topics .topics3::after {
  background: url(../img/common/topics_blue3.svg) center center no-repeat;
  background-size: 100%;
}
section.first_topics .topics4::after {
  background: url(../img/common/topics_blue4.svg) center center no-repeat;
  background-size: 100%;
}
section.first_topics .topics5::after {
  background: url(../img/common/topics_blue5.svg) center center no-repeat;
  background-size: 100%;
}


/*左右割*/

section.first_topics .item_datas {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  grid-gap: 40px;
  margin-left: -20px;
}


/*中身要素　タイトル*/

section.first_topics .title_group {
  display: grid;
  grid-template-columns: 1fr .8fr;
  grid-gap: 10px;
  margin-bottom: 50px;
}

section.first_topics .title_group h3 {
  margin: 0;
  padding: 10px 0 10px 20px;
  font-size: 170%;
	line-height: 1.3;
  font-weight: bold;
  border-left: 5px solid #ffff00;
}

section.first_topics .title_group p {
  font-size: 105%;
  padding-right: 60px;
	font-weight: bold;
}

/*タイトルの英語装飾*/

section.first_topics .nightgame::before,
section.first_topics .plan55th::before,
section.first_topics .Italian::before,
section.first_topics .ordermenu::before {
  content: '';
  display: block;
  position: absolute;
  top: -50px;
  left: 0px;
  width: 700px;
  height: 150px;
}

section.first_topics .nightgame::before {
  background: url(../img/common/titleimage_nightgame.svg) left 20px top no-repeat;
  background-size: auto 100%;
}
section.first_topics .plan55th::before {
  background: url(../img/common/titleimage_55th.svg) left 20px top no-repeat;
  background-size: auto 100%;
}
section.first_topics .Italian::before {
  background: url(../img/common/titleimage_Italian.svg) left 20px top no-repeat;
  background-size: auto 100%;
}
section.first_topics .ordermenu::before {
  background: url(../img/common/titleimage_ordermenu.svg) left 20px top no-repeat;
  background-size: auto 100%;
}



/*中身要素　写真*/

section.first_topics .item_datas .photo::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -40px;
  left: -10px;
  width: 100px;
  height: 100px;
  background: url(../img/common/55_small_logo.png) center center no-repeat;
  background-size: 100%;
}


/*補助情報*/

section.first_topics .item_sub_datas {
  box-sizing: border-box;
  margin: 50px auto 140px auto;
  padding: 0 10px 0 10px;
  max-width: 950px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr .6fr;
  grid-gap: 20px;
}

section.first_topics .item_sub_datas::before {
	content: '';
	display: block;
	position: absolute;
	top: 20px;
	left: 0;
	height: 70%;
  width: 100%;
	background-color:#758797;
}

section.first_topics .item_sub_datas .data {
  padding-left: 80px;
	background: url(../img/common/option.svg) top left no-repeat;
  background-size: 30px;
}

section.first_topics .item_sub_datas h3 {
  margin: 0 0 20px 0;
  padding: 10px 0 10px 10px;
  font-size: 120%;
	line-height: 1.3;
  font-weight: bold;
  border-left: 3px solid #ffffff;
}


/*補助情報　黄色背景*/

section.first_topics .item_sub_datas_yellow {
  box-sizing: border-box;
  margin: 50px calc(50% - 50vw);
  padding: 0 30px;
  width: 100vw;
	background-color:#ffe100;
	color: #000000;
}

section.first_topics .item_sub_datas_yellow .inner {
  margin: 0 auto;
  padding: 50px 0;
  max-width: 950px;
  width: 100%;
}

section.first_topics .item_sub_datas_yellow .column {
  display: grid;
  grid-template-columns: 1fr .8fr;
  grid-gap: 20px;
}

section.first_topics .item_sub_datas_yellow .logo {
  position: absolute;
  top: -100px;
  right: 0;
  width: 200px;
  border: 2px solid #ffe100;
  box-shadow: 0 1px 8px 0 #9d9031;
}

section.first_topics .item_sub_datas_yellow h3 {
  position: relative;
  display: inline-block;
  margin: 0 0 30px 0;
  padding: 12px 20px;
  background-color: #ffffff;
}

section.first_topics .item_sub_datas_yellow h3::before {
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 5px;
  height: calc(100% - 20px);
  background: #000000;
}

section.first_topics .item_sub_datas_yellow h3::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 15px;
  background-image: linear-gradient(-135deg, #ffe100 50%, transparent 0%);
}




/*サムネイル*/

section.first_topics .thumb_area {
  padding-bottom: 100px;
}

section.first_topics .photo_thumb {
  position: absolute;
  bottom: 0;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5px;
}


/*最後*/

section.first_topics .end_first_topics {
  height: 100px;
  background: url(../img/common/cloudimage_roop.svg) center center repeat-x;
  background-size: auto 100%;
}









/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*SP調整*/

@media (max-width: 767px) {

section.first_topics article {
  padding: 0 20px 0 20px;
}

section.first_topics article::after {
  right: 30px;
  height: 70px;
}


/*背景の帯*/

section.first_topics .left_bg_line::before {
	content: '';
	display: block;
	position: absolute;
	top: 20px;
	left: 0;
	height: 40%;
  width: 100%;
	background-color:#758797;
}

section.first_topics .right_bg_line::before {
	left: 0;
	height: 40%;
  width: 100%;
}

/*トピックスナンバー*/
section.first_topics .topics1::after,
section.first_topics .topics2::after,
section.first_topics .topics3::after,
section.first_topics .topics4::after,
section.first_topics .topics5::after {
  right: -10px;
}


/*左右割*/

section.first_topics .item_datas {
  grid-template-columns: 1fr;
  margin-left: 0px;
}

/*中身要素　タイトル*/
section.first_topics .title_group {
  grid-template-columns: 1fr;
}

section.first_topics .title_group h3 {
  padding: 10px 80px 10px 20px;
  font-size: 150%;
	line-height: 1.3;
}

/*補助情報*/
section.first_topics .item_sub_datas {
  grid-template-columns: 1fr;
}

section.first_topics .item_sub_datas .data {
  padding-left: 40px;
	background: url(../img/common/option.svg) top left no-repeat;
  background-size: 20px;
}


/*補助情報　黄色背景*/

section.first_topics .item_sub_datas_yellow .inner {
	padding-top: 70px;
}

section.first_topics .item_sub_datas_yellow .column {
  grid-template-columns: 1fr;
}

section.first_topics .item_sub_datas_yellow .logo {
  top: -100px;
	width: 150px;
}

/*タイトルの英語装飾*/

section.first_topics .nightgame::before,
section.first_topics .plan55th::before,
section.first_topics .Italian::before,
section.first_topics .ordermenu::before {
  width: 100%;
}


/*サムネイル*/

section.first_topics .thumb_area {
  padding-bottom: 0px;
}

section.first_topics .photo_thumb {
	position: relative;
  bottom: auto;
  margin: 0;
  padding: 0;
	margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5px;
}

/*最後*/

section.first_topics .end_first_topics {
  height: 100px;
  background: url(../img/common/cloudimage_roop_sp.svg) center center no-repeat;
  background-size: auto 100%;
}

} /*SP調整ここまで*/



/**/