@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:0px 0px;
}

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

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

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

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


/* ハンバーガーメニュー */
.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: #e9ab3c;
    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 #e9ab3c;
    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:#e9ab3c;
    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 #e9ab3c;
    border-right: solid 2px #e9ab3c;
    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: #d9683f;
}

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;
}

.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%;
	}
    
    .staff-contents > div{
        width: 100%;
    }

}

.recipe { 
    text-align: center;
}

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

.btn-border:hover {
  background-color: #e9ab3c;
  border-color: #e9ab3c;
  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 {
	background-color: #e9ab3c; /* 背景色 */
	border-radius: 5px;
	color: #d9683f; /* 文字色 */
	padding: 10px 10px 10px 30px; /* 上・右・下・左の余白 */
	position: relative;
	text-shadow: 0px 0px 10px #fff, 0px 0px 6px #fff, 0px 0px 4px #fff, 0 0 0.5px #fff; /* 文字の影 */
}

.recipe-name:before {
	content: '＊*'; /*花に見せかけるためのアスタリスク*/
	color: #fff; /* アスタリスクの色 */
	display: inline-block;
	font-size: 20px; /* アスタリスクの大きさ */
	font-weight: bold;
	margin-right: 10px;
	position: absolute;
	top: 0px;
	left: 0px;
	transform: rotate(20deg);
	-moz-transform: rotate(20deg);
	-webkit-transform: rotate(20deg);
	-o-transform: rotate(20deg);
	text-shadow: 0px 0px 3px #fff, 0px 0px 2px #fff, 0 0 0.5px #fff; /* アスタリスク周りの影 */
}
.recipe-name:after {
	border-bottom: 2px dotted #fff; /* 下線 */
	content: '';
	position: absolute;
	bottom: 3px;
	left: 3px;
	right: 3px;
}
/* レシピ名　ここまで */

.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;

}

/* スタッフがつくってみた */

.staff-content-header {
    display: block;
    padding-bottom: 1.2rem;
}

.staff-title  h2{
    font-size: 1.1rem;
    color: #71685d;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-weight:900;
} 

.staff-contents {
    width: 100%;
    display: flex;
    display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
    justify-content: space-between; 
}

.staff-content {
    width: 33%;
}

.staff-brogger {
    display:inline-block;
    transform: rotate(-5deg);
    background-color: #ffdad4;
    border-radius: 20px;
    padding:0.2rem 1.5rem;
    margin:0.9rem 0rem;
}

.staff-comment {
    padding-left: 0.9rem;
}

.staff-comment a {
    display:block;
    text-align: center;
    padding: 10px;
    font-size:1em;
    color: #71685d;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-weight: 500;
    text-decoration:underline;
}

.staff-comment img {
    display: block;
    margin: 0 auto;
    width: 80%;
}


/* スタッフコメント　吹き出し部分*/
.comment {
    margin: 0 auto;
    border-radius: 12px;
    margin: 10px 10px;
    padding: 10px 13px;
    background: #ffdad4;
}

.comment p {
    margin: 0.4rem;
    padding: 0;
    font-size: 0.9rem;
}

.balloon5 {
    width: 100%;
    overflow: hidden;
}
  
.balloon5 .faceicon {
    float: left;
    margin-right: -90px;
    width: 80px;
}
  
.balloon5 .faceicon img{
    width: 100%;
    height: auto;
    border: solid 3px white;
    border-radius: 50%;
    background-color: white;
}
  
 

@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) */
}
 

