@charset "utf-8";

body {
  　font-family: 'M PLUS 1 Code', monospace;
    margin: 0px;
   -webkit-text-size-adjust: 100%;
}
.bg_01 {
    width: 100%;
    background: #FAF0DC;
    padding: 20px 0 0;
}
#hwrapper {
    width: 100%;
    /*background: #FAF0DC;*/
}
#wrapper {
     width: 1280px;
    margin: 0 auto;
}

li {
    list-style-type:none;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: #fff;
}

.logo {
    display: flex;
    padding-top: 1rem;
}

section {
    margin: 40px 0;
}

/* ここから下がハンバーガーメニューに関するCSS */

.nav {
 float:left; 
}
  
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
  width: 20%;
  height: 380px;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #000;
  opacity: 0.6;
  transition: .5s;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
  color:#fff;
  padding:6rem;
  font-size:24px;
  line-height:4rem;
}


/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;/* メニューを画面に入れる */
}

/*==================================================
ファーストビューセクション
===================================*/

#top_ttl_zone { 
   width: 980px;
    margin: 0 auto;
   position: relative;
    text-align: center,
}

h1#main_logo {
    margin: 100px auto;
    text-align: center;
}

.open_mark {
    width: 257px;
    position: absolute;
    top: -160px;
    right: 10px;
}

/*==================================================
ニュースティッカーのためのcss
===================================*/
/*ニュース1行の周りの余白*/
.slider {
    display: block;
    background:#fff;
    padding:0.5rem;
  text-align:center;
}

/*日付*/
.slider span {
    display:inline-block;
    font-size:0.8rem;
    margin:10px;
    color:#777;
}

/*768px以下の見た目 ※1行のままにしたい場合は不要　
@media screen and (max-width:768px) {
    .slider {
        padding:20px;
        background:#fff;
        margin: 30px 0;
    }

    .slider li {
        border-bottom:1px dashed #ccc;
    }

    .slider li:last-child {
        border-bottom:none;
    }
    .slider span {
        display:block;
		padding-bottom:10px;
    }
}

.bx-wrapper {
    margin-top: 100px !important;
    margin-bottom: 80px !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}*/


/*========= ニュースティッカーのためのCSS ===============*/

/*========= 横に流れるスライダー ===============*/
 .sample-slider{
        width:100%;
    }
    .sample-slider img{
        width: 100%;
        padding: 0 10px;
        height: 337px;
    }
    .sample-slider .swiper-wrapper{
        transition-timing-function: linear;
    }
.swiper-slide {
         margin: 0 10px;
}
/*========= //横に流れるスライダー ===============*/


.srilanka_flg {
    width: 83px;
    margin: 130px auto;
    text-align: center;
}
div.left_box {
    width:50%;
    float:left;
    padding: 10px 200px;
}
div.right_box {
    width:50%;
    float:right;
    padding: 100px 20px 0 40px;
}
h3 {
    font-size: 30px;
}
.whatsthesrilankacurry {
    width: 50%;
    padding: 22px;
}

.whatsthesrilankacurry img{
    width: 352px;
    margin: 0 auto;
    text-align: center;
}
.plane_text {
    width: 94%;
    margin: 20px 0 30px;    
    line-height: 1.8rem;
}


/* aタグのリセットCSS（不要な場合、セレクタごと削除してください） */
a {
  color: inherit;
  text-decoration: none;
}

/* ボタンのスタイル */
.buttonIconText02 {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  max-width: 320px;
  height: 64px;
  padding: 8px 64px 8px 8px;
  font-family: sans-serif;
  font-size: 16px;
  color: #fff;
  text-align: center;
  overflow-wrap: anywhere;
  background-color: #000000;
  border-radius: 32px; /* (buttonの高さ / 2) の値 */
}

.buttonIconText02__reverse {
  flex-direction: row-reverse;
  padding: 8px 8px 8px 64px;
}

.buttonIconText02_icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  /* aspect-ratio: 1;*/
  overflow: hidden;
}

.buttonIconText02_text {
  flex-shrink: 1;
  width: 100%;
}

.clearfix::after {
   content: "";
   display: block;
   clear: both;
}

/* 左矢印アイコンのスタイル
.iconArrowLeft {
  rotate: 180deg;
}*/


/*==================================================
スクロールで写真が出てくるゾーン
===================================*/
.box{
	opacity: 0;/*スタート時は要素自体を透過*/
}
/*動かしたい動き*/
.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

.layout {
    width: 1298px;
    height: 685px;
    position: relative;
    margin: 200px auto;
}
img.foodimg01 {
    position: absolute;
    width:511px;
    top:20px;
    left:0;
}
img.foodimg02 {
    position: absolute;
    width:392px;
    top:280px;
    right:300px;
}
img.foodimg03 {
    position: absolute;
    width:403px;
    top:40px;
    right:0;
}


/*==================================================
スリランカカレーの食べ方セクション
===================================*/
#HowToEat {
    width: 980px;
    margin: 70px auto 40px;
}
#HowToEat h2{
    text-align: center;
    line-height: 10px;
    margin: 72px auto;
}
#HowToEat #HTE_left {
    float: left;
    padding-top: 30px;
    width: 65%;
}
#HowToEat #HTE_right {
    float: right;
}

/*==================================================
シェフのプロフィールセクション
===================================*/
section#Chef {
    width: 850px;
    margin: 180px auto;
} 
#Chef #Chef_left h2 {
  margin:50px auto 40px;
}
#Chef #Chef_left {
    text-align:center;
    float: left;
    width: 490px;
}
#Chef #Chef_right {
    float: right;
}

/*==================================================
テイクアウトセクション
===================================*/
#takeout {
    width: 780px;
    margin: -90px auto 0;
}
#takeout h2{
　 　margin: 0 auto;
}
#takeout p.takeout_txt {
    width: 650px;
    font-size: 25px;
    margin: 0 auto;
}
#takeout div.takeout_left {
    float: left;
    font-size: 42px;
    margin: 65px 0 ;
    vertical-align: middle;
    font-weight: bold;
}
#takeout div.takeout_left img{
    vertical-align: middle;
    margin: 20px;
}
#takeout div.takeout_right {
    float: right;
    font-size: 35px;
    margin: 20px 0 ;
    vertical-align: middle;
} 
#takeout div.takeout_right img{
    vertical-align: middle;
    margin: 20px 20px 20px 10px;
}
/*==================================================
インスタセクション
===================================*/
#istagram {
    width: 1000px;
    margin: 80px auto;
}
#insta_left {
    width: 42%;
    float: left;
    margin: 10px 0;
    padding: 0 0 0 30px;
}
#insta_left h2{
    margin: 30px 0;
}
#insta_right{
    float: right;
    width: 55%;
}
#insta_link {
    text-align: center;
    width: 202px;
    margin: 50px auto;
}
#insta_link img {
    display: block;
}

/*==================================================
スパイス背景
===================================*/

#spices {
    background: url(../img/spice_bg.png) no-repeat bottom / contain;
}

/*==================================================
フッター
===================================*/
/*モニター全体に広げるフッター*/
.fwrapper{
   width: 100%;
   background-color: #F2B025;
}

#footer {
  width: 1280px;
  margin: 100px auto 0;
  padding: 50px 0;
/*これを書かないとフッターの下に余白ができてしまう*/
}

#footer #footer_left {
    float: left;
    padding: 60px 60px 60px 160px;
}
#footer #footer_left img {
    margin: 15px 0;
}
#footer #footer_left p.parking_info {
    background: #000000;
    padding: 0.3rem 4rem;
    text-align: center;
    color: #ffffff;
    margin: 20px auto;
}

#footer #footer_right {
    float: right;
    padding: 0 60px 0 40px;
}
#copyright {
    background: #000000;
    padding: 0.5rem 0;
    width: 100%;
    color: #ffff;
    text-align: center;
}
.bsns_restructuring {
    clear: both;
    text-align: center;
    width: 300px;
    margin: 0 auto 20px;
    padding: 1rem auto;
    border: 1px solid;
}


/*============ここからスマホ用設定============*/
/*============ここからスマホ用設定============*/
@media screen and (max-width: 480px) {
/* 480pxまでの幅の場合に適用される */
    img {
      display: block;
      width:100%;
    }     
    
#hwrapper {
    width: 100%;
}

#wrapper {
    width: 100%;
}

.logo img{
        width: 15%;
    }
.header {
  padding: 0 1rem;
}
.plane_text {
        margin: 20px auto;
    }
.nav_content {
  width: 80%;
}

/*==================================================
ファーストビューセクション
===================================*/

#top_ttl_zone { 
   width: 95%;
    margin: 0 auto;
}
h1#main_logo img {
  width:100%;
}

.open_mark {
  width:70px;
  position: absolute;
  right:4.5rem;
}
  .open_mark img{
    width:150px;
  }

/*==================================================
ニュースティッカーのためのcss
===================================*/
    ul.slider  {
        margin: 0 auto 20px;
    }    
/*日付*/
.slider span {
    font-size:1rem;
    margin:1rem;
}
/*========= ニュースティッカーのためのCSS ===============*/

/*========= 横に流れるスライダー ===============*/
.sample-slider img{
    width:auto !important;
        padding: 0 1rem;
    }
.swiper-slide {
         margin: 0 1rem;
}
/*========= //横に流れるスライダー ===============*/

.srilanka_flg {
    width: 20%;
    margin: 70px auto;
}
.srilanka_flg img {
    width: 100%;
}
div.left_box {
    width:90%;
    float:none;
    padding: 10px 0;
    margin: 0 auto;
}
div.right_box {
    width:90%;
    float:none;
    padding: 10px 0;
    margin: 0 auto;
}
h3 {
    text-align: center;
    font-size: 23px;
}
.whatsthesrilankacurry {
    width: 70%;
    padding: 22px 0;
    margin: 0 auto;
}

.whatsthesrilankacurry img{
    width: 100%;
}


/* ボタンのスタイル */
.buttonIconText02 {
  height: auto;
  padding: 2rem 30px 2rem 2rem;
  border-radius: 12px; /* (buttonの高さ / 2) の値 */
  margin: 0 auto;
}

.buttonIconText02__reverse {
  flex-direction: row-reverse;
  padding: 1rem 2rem;
}

.buttonIconText02_icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  /* aspect-ratio: 1;*/
  overflow: hidden;
}

.buttonIconText02_text {
  flex-shrink: 1;
  width: 100%;
}

.clearfix::after {
   content: "";
   display: block;
   clear: both;
}

/* 左矢印アイコンのスタイル
.iconArrowLeft {
  rotate: 180deg;
}*/


/*==================================================
スクロールで写真が出てくるゾーン
===================================*/
.box{
	opacity: 0;/*スタート時は要素自体を透過*/
}
/*動かしたい動き*/
.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

.layout {
    width: 100%;
    position: relative;
    margin: 100px auto;
    height: 785px;
}
.layout {
    width: 100%;
    position: relative;
    margin: 100px auto;
    height: 785px;
}
img.foodimg01 {
  width:70%;
  top:0;
  left:0;
}
img.foodimg02 {
  width:60%;
  top: 560px;
  left:0;
}
img.foodimg03 {
  width:70%;
  top: 280px;
  right:0;
}

/*==================================================
スリランカカレーの食べ方セクション
===================================*/
#HowToEat h2 img{
    width: 65%;
    margin: 0 auto;
}
    
    #HowToEat {
    width: 95%;
    margin: 70px auto 40px;
}
#HowToEat h2{
    text-align: center;
    line-height: 10px;
    margin: 72px auto;
}
#HowToEat #HTE_left {
    float: none;
    padding-top: 0;
    width: 90%;
  margin:0 auto;
}
#HowToEat #HTE_left .plane_text {
    width: 90%;
    margin: 20px auto;
}
    
#HowToEat #HTE_right {
    float: none;
}
  #HowToEat #HTE_right img {
    width:70%;
    margin:0 auto;
    text-align: center;
  }

/*==================================================
シェフのプロフィールセクション
===================================*/
    section#Chef {
    width: 95%;
    margin: 30px auto;
}
    
    #Chef #Chef_left {
    text-align:center;
    float: none;
    width: 75%;
  margin:0 auto;
    }
section#Chef img {
    width: 55%;
    margin: 15px auto 0;
} 
#Chef #Chef_right {
    float: none;
    margin: 15px auto;
}    
#Chef #Chef_right .plane_text {
    width: 70%;
    margin: 20px 2.5rem 30px 3.5rem;
}

/*==================================================
テイクアウトセクション
===================================*/
#takeout {
    width: 95%;
    margin: 50px auto 0;
}
    #takeout h2{
        margin: 15px 0;
    }    
#takeout p.takeout_txt {
    width: 95%;
    font-size: 16px;
    margin: 0 auto;
}
#takeout div.takeout_left {
    float: none;
    margin: 30px 0 ;
}
#takeout div.takeout_left img{
  vertical-align: middle;
  width:20%;
  margin:0 auto;
}
#takeout div.takeout_right {
    float: none;
} 
#takeout div.takeout_right img{
    vertical-align: middle;
      width:20%;
  margin:0 auto 20px;
}
#takeout div.takeout_right .LineQR {
      width: 50%;  
    }    
    
    
    
/*==================================================
インスタセクション
===================================*/
#istagram {
    width: 95%;
    margin: 80px auto;
}
#insta_left {
    width: 95%;
    float: none;
    margin: 10px auto;
    padding: 0;
}
#insta_left h2{
    width:80%;
    margin: 30px 0 20px 25px;
}
#insta_right{
    float: none;
    width: 95%;
    margin: 10px auto;
}
#insta_link {
    text-align: center;
    width: 60%;
    margin: 50px auto;
}
#insta_link img {
    display: block;
    width: 80%;
    margin:15px auto;
}    

/*==================================================
フッター
===================================*/
/*モニター全体に広げるフッター*/
.fwrapper{
   width: 100%;
}

#footer {
  width: 100%;
  margin: 100px auto 0;
  padding: 50px 0;
/*これを書かないとフッターの下に余白ができてしまう*/
}

#footer #footer_left {
    float: none;
    padding: 0px 2rem 10px ;
}

#footer #footer_right {
    float: none;
    padding: 0 20px;
}
    #footer #footer_right iframe{
        width: 100% !important;
        margin: 0 auto;
    }
.bsns_restructuring {
    margin: 30px auto 20px;
}

    
}
/*============ここまでスマホ用設定============*/
