@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&display=swap');

h1 {
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-weight: 600;
    font-style: normal;
}

p,h2{
   font-family: dnp-shuei-mgothic-std, sans-serif;

font-weight: 400;

font-style: normal;
}

html { 
    font-size: 100%;
    max-width: 1200px;
  margin: 0 auto;
  background: #FFF; /* Fills the page */
  position: relative; /* Fix for absolute positioning */
}

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

.txt-center img{
    padding:30px;
}

.top-heading {
    display: inline-block;
    position: relative;
    font-size: 6vw;
    line-height: 1.4;
}

.header-content {
    padding: 100px 0 80px 0;
    background-color: #F7594F;
}

.beginning-sentence{
    padding: 50px 100px 50px 100px;
}

.ending-sentence{
    margin:50px;
    padding: 50px;
    border-top: 3px dotted #F7594F;
}

/* 地図 */

.map-container {
    position: relative;
    text-align: center;
}


.korea a{ 
  position: absolute;
  left: 89%;
  top: 46%;
}



 .thailand a{ 
  position: absolute;
  left: 70%;
  top: 63%;
}

 .china a{ 
  position: absolute;
  left: 73%;
  top: 46%;
}


 .france a{ 
  position: absolute;
  left: 16%;
  top: 36%;
  }

 .italy a{ 
  position: absolute;
  left: 22%;
  top: 43%;
  }

  .spain a{ 
  position: absolute;
  left: 9%;
  top: 47%;
  }

.map-container a {
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  font-size: 1.2rem;
  color: #595959;
  text-shadow: 1px 1px 2px silver;
  text-decoration: none;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: bold;
}




.map-container a:hover{/*カーソルを当てたとき*/
  background: rgba(255, 255, 255, 0.3);/*背景を半透明に*/
  }


/* ハンバーガーメニュー */
.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #FFF;
    border-radius: 50%;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #F7594F;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

/* ハンバーガーメニューのメニュー */
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #F7594F;
    list-style: none;
}
.menu-content ul li a {
    font-family: dnp-shuei-mgothic-std, sans-serif;
    display: block;
    width: 100%;
    font-size: 1rem;
    box-sizing: border-box;
    color:#F7594F;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #F7594F;
    border-right: solid 2px #F7594F;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

.menu-content {
    padding: 10px;
    width: 30%;
    height: auto;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #FFF;
    transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
    left: 70%;/*メニューを画面内へ*/
}


body{
    font-family: "Yu Gothic Medium","游ゴシック Medium","YuGothic","游ゴシック体","ヒラギノ角ゴ Pro W3",sans-serif;
    line-height: 1.7; 
    color: #432;
    background-color: #F7594F;
}

a{
    text-decoration: none;
}

img {
    max-width: 100%;
}

/*  header  */

.logo {
    width: 100px;
    margin-top: 14px;
    margin-left: 10px;
}

.page-header{
    display:flex;
    /*　両端の設定の指定 */
    justify-content: space-between;
}

.wrapper {
    margin: 0 auto;
    padding: 0 4%;
}


/*　フェードイン　*/
/*左から右にフェードイン*/

.fade{ 
  font-size:40px;
  opacity:0;
  animation-name: fadeIn; /*←@keyframesにも同じ名前を記述*/
  animation-duration: 2s; 
  animation-fill-mode: forwards; 
}
@keyframes fadeIn {  /*←animation-nameにも同じ名前を記述*/
0% {
  opacity: 0;
  transform: translateX(-20px);
}
 100% {
  opacity: 1;
} 
}


.left-to-right {
  opacity: 0.1;
  transform: translateX(-20px);
  transition: all 2s;
}
.left-to-right.scrollin {
  opacity: 1;
  transform: translate(0);
}

/*下から上にフェードイン*/
.down-to-top {
  opacity: 0.1;
  transform: translateY(20px);
  transition: all 1s;
}
.down-to-top.scrollin {
  opacity: 1;
  transform: translateY(0);
}



/*  全体  */

.home-content {
    background-color: #FFF;
}


.header-img {
    background-size: cover;
    background-repeat: no-repeat;
}

.recipe-contents{
    padding: 30px;
}

/* 各国のタイトルとアイキャッチ */

.recipe-content-header{
    display: flex;
    justify-content: center;
}

.country-eyechatch img{
    width: 150px;
    height: 150px;
}

.recipe-title{
    font-size: 2.5rem;
    color:#595959;
}

.recipe-title a {
color:#595959;
text-decoration:underline;
}

*, *:before, *:after {
	box-sizing: border-box;
}
.recipe-content{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.recipe-content > div{
	width: 50%;
	padding: 10px;
}

@media screen and (max-width: 960px) {
	.recipe-content > div{
		width: 100%;
	}
}

.recipe { 
    text-align: center;
}

/* ここから下がボタンのCSS　*/
.btn-border {
  display: inline-block;
  max-width: 180px;
  text-align: left;
  border: 2px solid #F7B04F;
  font-size: 16px;
  color: #F7B04F;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 4px;
  transition: .4s;
}

.btn-border:hover {
  background-color: #F7B04F;
  border-color: #F7B04F;
  color: #FFF;
}

.btn-container{
    padding:15px;
}


.rensai-box a {
color:#595959;
text-decoration:underline;
font-weight: bold;
    font-size: 1.1rem;
}

p {
    font-size: 1.1rem;
}

.rensai-here {
    font-weight: bold;
}


.blog-eyecatch{
    padding: 10px 60px 10px 60px;
}

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

.recipe-name{ 
    display:inline-block;
  position: relative;
  padding: 0.3em;
}
.recipe-name:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: repeating-linear-gradient(-45deg, #F7B04F, #F7B04F 2px, white 2px, white 4px);
}

.recipe-content2 img{
    width: 70%;
}


/* サイド */
.aside-content {
        position: relative;
}

footer {
    background: #FFF;
    text-align: center;
    padding: 26px;
    margin-top: 50px;
}

footer p {
    color:#595959;
    font-size: 0.875rem;

}








@media screen and (max-width: 480px){
    .header-content{
        padding: 20px 0 20px 0;
    }
    .header-content p {
        font-size: 0.8rem;
    }

    #menu-btn-check:checked ~ .menu-content {
        left: 50%;/*メニューを画面内へ*/
    }
    .menu-content {
        width: 50%;
    }
    
    .menu-content ul li a {
        font-size: 1rem;
    }
    #menu li a {
        font-size: 1rem;
    }

    .blog-eyecatch{
        padding: 20px;
    }
    .map-container a {
        font-size: 0.8rem;
    }
    .btn, a.btn, button.btn {
        font-size: 1.2rem;
    }

    .beginning-sentence{
        padding: 35px;
    }

    .spain a {
        left: 12%;
        top: 50%;
    }

    .recipe-title {
        font-size: 2rem;
    }

    .recipe-contents {
        padding: 10px 30px;
    }

    .ending-sentence {
        margin: 10px;
        padding: 40px 20px;
        font-size: 0.8rem;
    }
}


@media screen and (min-width:760px) {
    /*　画面サイズが1024pxからはここを読み込む　*/
  .content-wrapper {
          max-width: 1024px;
          margin-left: auto;
          margin-right: auto;
        }

    .sentence-and-btn p {
        font-size:1.1rem;
    }

    .btn,a.btn,button.btn {
        font-size: 1.2rem;
    }

    .comment-box p {
        font-size: 1.2rem;
    }

    .comment-box h2 {
        font-size: 1.5rem;
    }

    #menu li a{
/*        font-size: 1.2rem;*/
        padding:10px;
}


} 



 
.hana{
	position:absolute;
	height:0;
	width:0;
    border: 10px solid pink;
     transform:
      skew(
        calc((90deg - 70deg) / 2),
        calc((90deg - 30deg) / 2)
      ); /* calc((90deg - 欲しい角度) / 2) */
}
                        
