@charset "UTF-8";
/*
Theme Name: Indian Curry
Theme URI: https://www.indiancurry.jp/
Author: GOOD TABLES inc.
Author URI: https://www.goodtables.jp/
Description: for Indian Curry WebSite.
Version: 1.0
*/

/*----------------------------
BASE設定
----------------------------*/
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  color: #212121;
  font-family: 'Source Sans Pro','Sawarabi Gothic', sans-serif;
　scroll-behavior: smooth;
}

a {
  color: #666;
  text-decoration: none;
}

a:hover {
  opacity: .7;
}

ul {
  margin: 1em 0;
  padding: 0;
  list-style: none;
}

img  {
  max-width: 100%;
  height: auto;
}


.fadein {
	opacity : 0.1;
	transform : translate(0, 50px);
	transition : all 500ms;
}

.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}



/*----------------------------
ヘッダー
----------------------------*/

#header {
  width: 100%;
  height: 60px;
  top: 0;
}

.nav_menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.header_logo img {
  fill: #fff;
  margin: 0;
  padding: 10px;
  width: 200px;
  height: auto;
  z-index: 2;
}

@media screen and (min-width:768px) {
	#header {	
	  max-width: 1200px;
	  margin: 0 auto;
	}
	.header_logo img {
	  padding: 10px 15px;
	}
}



/*----------------------------
ドロワー
----------------------------*/

/*ドロワー*/
.l-drawer {
  position: relative;
}
.l-drawer__checkbox {
  display: none;
}
.l-drawer__icon {
  cursor: pointer;
  display: block;
  width: 56px;
  height: 60px;
  position: fixed;
  right: 0;
}
.l-drawer__icon-parts, .l-drawer__icon-parts:before, .l-drawer__icon-parts:after {
  background-color: #666;
  display: block;
  width: 26px;
  height: 2px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.l-drawer__icon-parts:before, .l-drawer__icon-parts:after {
  content: " ";
}
.l-drawer__icon-parts:before {
  top: 16px;
}
.l-drawer__icon-parts:after {
  top: -16px;
}
.l-drawer__overlay {
  background: #666;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
}
.l-drawer__menu {
  background: rgba(68, 68, 68, 0.97);
  color: #666;
  max-width: 100%;
  width: 320px;
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: -320px;
  text-align: center;
}
.l-drawer__icon {
  z-index: 500;
}
.l-drawer__menu {
  z-index: 400;
}
.l-drawer__overlay {
  z-index: 300;
}
.l-drawer__checkbox:checked ~ .l-drawer__icon .l-drawer__icon-parts {
  background: transparent;
}
.l-drawer__checkbox:checked ~ .l-drawer__icon .l-drawer__icon-parts:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0;
}
.l-drawer__checkbox:checked ~ .l-drawer__icon .l-drawer__icon-parts:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
}
.l-drawer__checkbox:checked ~ .l-drawer__overlay {
  opacity: 0.3;
  pointer-events: auto;
}
.l-drawer__checkbox:checked ~ .l-drawer__menu {
  right: 0;
}
.l-drawer__icon-parts, .l-drawer__icon-parts:after, .l-drawer__icon-parts:before, .l-drawer__overlay, .l-drawer__menu {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}


.l-drawer__menu img {
  padding: 30px 0 20px;
  fill: #fff;
  width: 80px;
  height: auto;
}

.l-drawer__menu dt {
	margin: 20px 0;
    color: #ac733c;
	font-size: 0.9rem;
}

.l-drawer__menu dd {
	margin: 20px 0;
	font-size: 0.9rem;
}

.l-drawer__menu a {
    color: #fff;
}

/*----------------------------
メイン
----------------------------*/

#main {
  background-color: #e9e9e9;
  line-height: 1.5;
}

/*----------------------------
TOPメインビジュアル
----------------------------*/

.bgimg-slider {
    width: 100vw;
    height: 100vh;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-title {
    color: #fff;
    font-size: 48px;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 1px #000;
}

.bg-slider {
  width: 100vw;
  height: 100vh;
  background-position:center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv_top .ttl {
  fill: #fff;
  width: 120px;
  height: auto;
  margin-top: -100px;
}

@media screen and (min-width:768px) {
	.mv_top .ttl {
	  width: 150px;
	}
}

/*----------------------------
News
----------------------------*/

#wrapper{
	padding: 30px 0 10px;
}

.ticker {
  margin: 0 auto;
  padding: 0;
  text-align: left;
  border: #dcdbdc 1px solid;
  position: relative;
  overflow: hidden;
  background-color:#ffffff;
}

.ticker ul {
  width: 100%;
  position: relative;
  margin: 0;
}

.ticker ul li {
  width: 100%;
  display: none;
}

.ticker li div {
  padding: 10px 0 10px 30px;
}
 
.ticker span {
	color: #999;
	margin: 0 30px 0 0;
	display: inline-block;
}
 
@media only screen and (max-width: 767px) {
	.ticker li div {
	 padding: 0 10px 10px;
	}
	.ticker span {
	display: block;
	}
	a.modal {
	font-size: 0.9rem;
	}	
}

/*----------------------------
TOP History 
----------------------------*/

.history_inner {
  background-image: url(assets/img/bk_indian.png);
  background-position: left top;
  background-repeat: no-repeat;
  padding: 30px 0 0;
}

.since {
  font-size: 1.2rem;
  text-align: right;
  font-family: 'Kalam';
}

.since span {
  position: relative;
  font-size: 2.5rem;
  margin: 0 5px;
  padding: 0;
}

.since span::before {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  position: absolute;
  bottom: 10px;
  right: 0;
  margin: auto;
  background: #ac733c;
}

.history_content {
  background-color:rgba(255,255,255,0.25);
  padding: 20px 15px;
}

.history h2 {
  font-size: 2rem;
}

.history_content p {
  font-size: 1rem;
  line-height: 1.8;
}

.history_content .sig {
  text-align: right; 
}

@media screen and (min-width:768px) {
	.history {
	  display: flex;
	  flex-direction: row;
	  margin-bottom: 30px;
	  padding: 20px 0 0;
	}
	.since{
	  display: block;
	  padding-top: 110px;
	  text-align: center;
	  flex: 30%;
	}	
	.history_inner {
 	  background-position: center top;
	  flex: 70%;
	}
	.history_content {
	  background-color:rgba(255,255,255,0.25);
	  padding: 20px 40px;
	}
	.history h2 {
	  font-size: 2.5rem;
	}
	.history_content p {
	  font-size: 1.1rem;
	  line-height: 1.8;
	}
}

/*-------------------------------------------
　TOPメニュー
-------------------------------------------*/	

.t_menu {

}



img.t_menu_svg {
	fill: #fff;
	margin: 0 0 0 30px;
	padding: 10px 20px 10px;
    max-width: 50%;
	height: auto;
	background-color: #fff;
}


@media screen and (min-width:768px) {
	.t_menu li {
		display: flex;
		align-items: flex-start;
		text-align: left;
		margin-top: -50px;
		padding-top: 0px;
		padding-bottom: 0px;  
	}
	.t_menu li:nth-child(even) {
		flex-direction: row-reverse;
	}
	.t_menu_img {
		margin-top: 20px; 
		max-width: 40vw;
	}
	.t_menu_details h3 {
	  margin-top: 160px;
	  margin-left: -120px;
      width: 300px; 
	}
	.t_menu_details h3:nth-child(even) {
	  margin-right: -60px;
	}
	img.t_menu_svg {
		max-width: 90%; 
	}
}


@media screen and (max-width: 768px) {
	.t_menu li {
		display: flex;
		flex-direction: column;
		padding: 0;
		margin-bottom: 30px;
	}
	img.t_menu_img {
		position: relative;
		width: 100%;
	}
	.t_menu_details h3 {
		display: block;
		text-align: right;
	}
	img.t_menu_svg {
		position: absolute;
		top: 0;
		right: 10px;
	}
	.t_menu li:last-child {
	  margin-bottom: 0;
	}	
}



/*----------------------------
cards cards--col4
----------------------------*/

.top_shop h3 {
  padding-top: 20px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
}

.cards--col3 {
  margin-bottom: -30px;
}

.cards--col3 > .cards__item {
  width: 31.707%;
  margin-right: 2.43902%;
  margin-bottom: 30px;
}

.cards--col3 > .cards__item:nth-of-type(3n) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .cards--col3 {
    margin-bottom: -20px;
  }

  .cards > .cards__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.card {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

.card__img-wrapper {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  margin: 0;
}

.card__img {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.card__body {
  padding: 15px;
}

.card__body > *:last-child {
  margin-bottom: 0;
}

.card__title {
  margin-bottom: 5px;
  font-size: 1rem;
  margin-top: 0;
}

.card__text {
  color: #777;
  margin-top: 0;
  font-size: 0.8rem;
}

.card--link {
  display: block;
  color: currentColor;
  text-decoration: none;
  transition: .25s;
}

.card--link .card__title,
.card--link .card__text {
  transition: .25s;
}

.card--link:focus,
.card--link:hover {
  opacity: .75;
}




/*----------------------------
Top Shop
---------------------------

.card {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0, .16);
}

.card_link:focus,
.card_link:hover{
  opacity: .75;
}

.card_sambangai {
  background-image: url(assets/img/s_ext_sambangai.jpg);
}
.card_dojima {
  background-image: url(assets/img/s_ext_dojima.jpg);
}
.card_nagahori {
  background-image: url(assets/img/s_ext_nagahori.jpg);
}
.card_avanza {
  background-image: url(assets/img/s_ext_avanza.jpg);
}
.card_minami {
  background-image: url(assets/img/s_ext_minami.jpg);
}
.card_nakanoshima {
  background-image: url(assets/img/s_ext_nakanoshima.jpg);
}
.card_yodoyabashi {
  background-image: url(assets/img/s_ext_yodoyabashi.jpg);
}
.card_ashiya {
  background-image: url(assets/img/s_ext_ashiya.jpg);
}
.card_marunouchi {
  background-image: url(assets/img/s_ext_marunouchi.jpg);
}
.card_otemachi {
  background-image: url(assets/img/s_ext_otemachi.jpg);
}

.card_img {
  width: auto;
  height: 250px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.card_img p {
  font-size: 1.5rem;
  text-align: center;
  font-family: 'Kalam';
  color: #fff;
}

.card_body h4 {
  margin: 0;
  padding: 10px 0 5px 20px;
}

.card_body .card_txt {
  margin: 0;
  padding: 0 0 10px 20px;
  font-size: 0.8rem;
}

@media screen and (min-width:768px) {
	.card_wrap {

	}
	.card {

	}
}

-*/

/*----------------------------
店舗メインビジュアル
----------------------------*/
#mv_sambangai {
  background-image: url(assets/img/sp_ext_sambangai.jpg);
}
#mv_dojima {
  background-image: url(assets/img/sp_ext_dojima.jpg);
}
#mv_nagahori {
  background-image: url(assets/img/sp_ext_nagahori.jpg);
}
#mv_avanza {
  background-image: url(assets/img/sp_ext_avanza.jpg);
}
#mv_minami {
  background-image: url(assets/img/sp_ext_minami.jpg);
}
#mv_nakanoshima {
  background-image: url(assets/img/sp_ext_nakanoshima.jpg);
}
#mv_yodoyabashi {
  background-image: url(assets/img/sp_ext_yodoyabashi.jpg);
}
#mv_ashiya {
  background-image: url(assets/img/sp_ext_ashiya.jpg);
}
#mv_marunouchi {
  background-image: url(assets/img/sp_ext_marunouchi.jpg);
}
#mv_otemachi {
  background-image: url(assets/img/sp_ext_otemachi.jpg);
}


.mv_area {
  width: 100vw;
  height: 40vh;
  background-size: contain;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.mv_innner {
	display: block;
	position: relative;
    height: 40vh;
	padding: 0px;
    margin-right: auto;
}	

.mv_innner p {
  position: absolute;
  margin: 0px;
  bottom: 10%;
　text-transform: uppercase;
  font-family: 'Kalam', cursive;
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
}

@media screen and (min-width:768px) {
	.mv_area {
		width: 100%;
		height: 500px;
		background-size: cover;
	}
	.mv_innner {
		max-width: 1200px;
		margin: 0 auto;
		height: 500px;
	}	
	#mv_sambangai {
	  background-image: url(assets/img/ext_sambangai.jpg);
	}
	#mv_dojima {
	  background-image: url(assets/img/ext_dojima.jpg);
	}
	#mv_nagahori {
	  background-image: url(assets/img/ext_nagahori.jpg);
	}
	#mv_avanza {
	  background-image: url(assets/img/ext_avanza.jpg);
	}
	#mv_minami {
	  background-image: url(assets/img/ext_minami.jpg);
	}
	#mv_nakanoshima {
	  background-image: url(assets/img/ext_nakanoshima.jpg);
	}
	#mv_yodoyabashi {
	  background-image: url(assets/img/ext_yodoyabashi.jpg);
	}
	#mv_ashiya {
	  background-image: url(assets/img/ext_ashiya.jpg);
	}
	#mv_marunouchi {
	  background-image: url(assets/img/ext_marunouchi.jpg);
	}
	#mv_otemachi {
	  background-image: url(assets/img/ext_otemachi.jpg);
	}
}



.mv_news {
  bottom: 0px;

}

.mv_innner li {
  letter-spacing: 0.1em;
}

/*----------------------------
section
----------------------------*/

section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px 30px;
  font-family: 'Source Sans Pro','Sawarabi Gothic', sans-serif;
}

/*----------------------------
見出し
----------------------------*/

.h1_title {
  position: relative;
  font-family: 'Sawarabi Gothic', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  padding-left: 15px;
}

.h1_title::before {
  content: "";
  display: block;
  width: 20px;
  height: 4px;
  position: absolute;
  left: -15px;
  top: 50%;
  margin: auto;
  background: #ac733c;
}

.pc-only{
	display: none;
}

.ttl_area p{
  line-height: 1.7;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

@media screen and (min-width:768px) {
	.h1_title {
	  font-size: 1.8rem;
	}
	.pc-only{
		display: block;
	}
	.ttl_area p{
  		padding-left: 15px;
 		font-size: 1.1rem;
	}
}


h2 {
  font-family: 'Kalam', cursive;
  font-size: 2.5rem;
  font-weight: 400;
  color: #340506;
  margin: 0;
}


/*----------------------------------------
 フィーチャー・リスト
-------------------------------------------*/

/*
.top-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.top-list li {
    width: 50%;
  padding: 0 10px;
  margin-bottom: 30px;
}

.top-list li a {
  display: flex;
  align-items: center;
}

.top-list li img {
  flex: 0 1 90px;
}


*/

/*-------------------------------------------
　メニュー
-------------------------------------------*/	

.menu_content {
  display: block;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.menu_content li {
  padding: 0;
  margin-bottom: 30px;
}

.menu_details h3 {
    display: block;
}

.menu_price span {
    display: flex;
	align-items: center;
	justify-content: center;
}

img.menu_svg {
	fill: #fff;
	margin: 0 0 0 30px;
    max-width: 50%;
	height: auto;
}

@media screen and (min-width:768px) {
	.menu_content {
	  flex-direction: row;
	  flex-wrap: wrap;
	}
	.menu_content li {
	  width: 50%;
	  padding: 0 30px;
	  margin-bottom: 30px;
	}
	img.menu_svg {
		max-width: 40%;
	}
	.menu_details:only-child {
		  width: 100%;
		  padding: 0 200px;
		  margin-bottom: 30px;
	}
}

/*-------------------------------------------
　chip
-------------------------------------------*/

.chip {
  border: 1px solid #b6b5b4;
  border-radius: 8px;
  margin-bottom: 30px;
  padding: 10px;
}

.price_list{
  position: relative;
  top: -30px;
  left: -63px;
  text-align: center;
}

.price_list h2{
  position:absolute;
  display: inline-block;
  background-color: #e9e9e9;
  font-size: 1.8rem;	
  padding: 0 10px;
  z-index: 2;
}

.chip_list {
  padding: 20px 10px 0;
}

.chip_list li::before{
    content: "";
	width: 30px;
	height: 40px; 
	display: inline-block;
	vertical-align: top;
	margin: 0 0 3px;
}


.chip_list li.ye_s::before{
  background: url(assets/img/menu/chip_ye_s.svg)no-repeat;
}
.chip_list li.ye::before{
  background: url(assets/img/menu/chip_ye.svg)no-repeat;
}

.chip_list li.rd_s::before{
  background: url(assets/img/menu/chip_rd_s.svg)no-repeat;
}
.chip_list li.rd::before{
  background: url(assets/img/menu/chip_rd.svg)no-repeat;
}

.chip_list li.lb_s::before{
  background: url(assets/img/menu/chip_lb_s.svg)no-repeat;
}
.chip_list li.lb::before{
  background: url(assets/img/menu/chip_lb.svg)no-repeat;
}

.chip_list li.or_s::before{
  background: url(assets/img/menu/chip_or_s.svg)no-repeat;
}
.chip_list li.or::before{
  background: url(assets/img/menu/chip_or.svg)no-repeat;
}

.chip_list li.gn_s::before{
  background: url(assets/img/menu/chip_gn_s.svg)no-repeat;
}
.chip_list li.gn::before{
  background: url(assets/img/menu/chip_gn.svg)no-repeat;
}

.chip_list li.lg_s::before{
  background: url(assets/img/menu/chip_lg_s.svg)no-repeat;
}
.chip_list li.lg::before{
  background: url(assets/img/menu/chip_lg.svg)no-repeat;
}

.chip_list li.bk::before{
  background: url(assets/img/menu/chip_bk.svg)no-repeat;
}

.chip_list li.pk_s::before{
  background: url(assets/img/menu/chip_pk_s.svg)no-repeat;
}

.chip_list li.bl_s::before{
  background: url(assets/img/menu/chip_bl_s.svg)no-repeat;
}
.chip_list li.bl::before{
  background: url(assets/img/menu/chip_bl.svg)no-repeat;
}

.chip_list li.bn_s::before{
  background: url(assets/img/menu/chip_bn_s.svg)no-repeat;
}

img.price_svg {
	fill: #fff;
	margin: 10px 5px;
	width: 82%;
}

@media screen and (min-width:768px) {
	.chip {
	  padding: 10px 0 10px 10px;
	}
	.chip_list {
	  display: flex;
	  flex-wrap: wrap;
	}
	.chip_list li {
	  flex: 40%;
	}
	.bn_s img.price_svg {
		width: 41%;
	}
}


/*-------------------------------------------
　Int 内観
-------------------------------------------*/

#int_sambangai {
  background-image: url(assets/img/int_sambangai.jpg);
}
#int_dojima {
  background-image: url(assets/img/int_dojima.jpg);
}
#int_nagahori {
  background-image: url(assets/img/int_nagahori.jpg);
}
#int_avanza {
  background-image: url(assets/img/int_avanza.jpg);
}
#int_minami {
  background-image: url(assets/img/int_minami.jpg);
}
#int_nakanoshima {
  background-image: url(assets/img/int_nakanoshima.jpg);
}
#int_yodoyabashi {
  background-image: url(assets/img/int_yodoyabashi.jpg);
}
#int_ashiya {
  background-image: url(assets/img/int_ashiya.jpg);
}
#int_marunouchi {
  background-image: url(assets/img/int_marunouchi.jpg);
}
#int_otemachi {
  background-image: url(assets/img/int_otemachi.jpg);
}


.int_area {
  width: 100vw;
  height: 50vw;
  margin-bottom: 30px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
}

/*
.int_area:before{
    content:"";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:100vh;
    background:url(assets/img/sp_int_otemachi.jpg) center no-repeat;
    background-size:cover;
  }
*/

.sp-only{
	display: block;
}

@media screen and (min-width:768px) {
	.int_area {
	  height: 400px;
  	  background-attachment: fixed;
	}
	.sp-only{
	  display: none;
	}
	#int_otemachi {
	  background-image: url(assets/img/int_otemachi.jpg);
	}
}


/*-------------------------------------------
　Shop Info
-------------------------------------------*/

.shop_info {
    display: flex;
    flex-direction: column;
}

.shop_info table {
  margin: 15px 0;
  flex: 1;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
}

.shop_info table th {
	vertical-align: top;
	word-break: keep-all;
	padding: 10px 0;
}

.shop_info table td {
	vertical-align: top;
	padding: 10px 0 0 30px;
}

@media screen and (min-width:768px) {
	.shop_info {
		flex-direction: row;
	}
	.shop_info table {
	  font-size: 1rem;
	  letter-spacing: 0.1em;
	}
	.shop_info table th {
		padding: 10px 0 0;
	}
	.shop_info table td {
		padding: 10px 0 0;
	}
}

.shop_info master {
  flex: 1;
}


/*-------------------------------------------
　MAP
-------------------------------------------*/

#map {
 margin: -20px 0 30px;
 width: 100%;
 height: 400px;
}


/*-------------------------------------------
　Shop List
-------------------------------------------*/
.shop_list {
	line-height: 1.6;
}

.shop_list dt {
	margin: 10px 0;
	padding-right: 10px;
	color: #ac733c;
	letter-spacing: 0.3em;
}
.shop_list dd {
	margin: 10px 0 10px 50px;
	letter-spacing: 0.1em;
}

@media screen and (min-width:768px) {
	.shop_list {
	  display: flex;
	  flex-direction: row;
	  flex-wrap: wrap;
	  line-height: 2;
	}

}




/*-------------------------------------------
　arrow
-------------------------------------------*/
.pagetop {
	text-align: center;
}

img.arrow {
	fill: #fff;
	margin: 0 5px 10px;
	width: 30px;
	height: auto;
}


/*-------------------------------------------
　フッター
-------------------------------------------*/	

#footer {
  width: 100%;
  text-align: center;
  font-family: 'Kalam';
}

#footer .indian_logo {
  display: block;
  margin: 30px auto 15px;
  width: 190px;
  height: 30px;
}

#footer span {
  font-size: 20px;
  margin: 0 5px;
}

#footer .copy_rights {
  display: inline-block;
  width: 100%;
  margin: 0;
  background-color: #340506;
}

#footer .copy_rights p {
  color: #fff;
  margin: 0;
  padding: 10px 0 5px;
}




