*, *:before, *:after {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: normal;
  text-decoration: none;
  box-sizing: border-box;
  font-size: 15px;
  font-size: 1.5rem;
}
a {
  text-decoration: none;
  font-size: inherit;
  color: #231815;
  transition: all 0.5s;
}
/*a:hover{
  transition-duration: 0.5s;
  opacity: 0.5;
}*/
p{
  margin: 1% 0;
}
ul, ol, dl {
  list-style: none;
}
html {
  font-size: 62.5%;
}
input[type=date],
input[type=submit]{
  -webkit-appearance: none;
  appearance: none;
}
input,
textarea{
  padding: 15px 20px;
  width: 100%;
  border: #ddd 1px solid;
  border-radius: 5px;
}
input[type=radio],
input[type=checkbox]{
  width: auto;
  padding: 0;
}
span.wpcf7-list-item{
  display: block;
}
img {
  max-width: 100%;
  height: auto;
  border:0;
}
body {
  font-family: "MYRIADPRO R";
  color: #231815;
  background: #fff;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: bold;
}
h1{
  font-size: 40px;
  font-weight: bold;
}
h3{
  font-size: 20px;
}
span{
  font-size: inherit;
  font-weight: inherit;
}
button{
  background: none;
}

.pc-only{
  display: block;
}
.sp-only{
  display: none!important;
}
@media screen and (max-width: 768px){
  input,
  textarea{
    padding: 10px;
  }
  .pc-only{
    display: none!important;
  }
  .sp-only{
    display: block!important;
  }  
}

.common {
  margin:0px auto;
  padding: 100px 0;
  width: 1000px;
  word-break: break-all;
  position: relative;
}
.common2 {
  margin:0px auto;
  padding: 100px 0;
  width: 1100px;
  word-break: break-all;
}

main{
  transition: all 1s;
  overflow: hidden;
}

@media screen and (max-width: 1045px){
  main{
    width: 100%;
    border-left: unset;
  }
}
@media screen and (max-width: 768px){
}

@media screen and (max-width: 1024px) and (min-width: 769px){
  .common,
  .common2{
    width:90%;
  }
  h1{
    font-size: 28px;
    font-size:2.8rem;
  }
  h2{
    font-size:20px;
    font-size:2rem;
  }
}

@media screen and (max-width: 768px){
  *, *:before, *:after {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2;
  }
  h1{
    font-size:35px;
    font-size:3.5rem;
  }
  h2{
    font-size:28px;
    font-size:2.8rem;
  }
  /* 共通 */
  .table dt{
    padding: 5%; 
    width: 45%;   
  }
  .table dd{
    padding: 5%;
  }
  .common,
  .common2{
    padding: 50px 0;
    margin: 0 auto;
    width: 90%;
  }
}

/*フォント
=======================================================*/
@font-face {
	font-family: "futura L";
	src: url("/wp-content/themes/tadaimacoffee/font/futura-light.ttf");
	font-weight: 500;
}
@font-face {
	font-family: "MYRIADPRO R";
	src: url("/wp-content/themes/tadaimacoffee/font/myriadpro-regular.otf");
}
@font-face {
	font-family: "MYRIADPRO B";
	src: url("/wp-content/themes/tadaimacoffee/font/myriadpro-bold.otf");
  font-weight: bold;
}
@font-face {
	font-family: "MYRIADPRO SB";
	src: url("/wp-content/themes/tadaimacoffee/font/myriadpro-semibold.otf");
}

/*タイトル
=======================================================*/
.ttl-L{
  text-align: center;
  font-size: 35px;
  line-height: 1.5;
  letter-spacing: 3px;
}
.ttl-L span{
  display: block;
  font-size: 15px;
  letter-spacing: 1px;
}
.ttl-M{
  text-align: center;
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 3px;
}
.ttl-S{
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 3px;
}

@media screen and (max-width: 768px){
  .ttl-L{
    font-size: 30px;
  }
  .ttl-M{
    font-size: 20px;
  }
}

/*カラー
=======================================================*/

/*位置
=======================================================*/
.tac{
  text-align: center!important;
  margin: 0 auto;
}

/*共通アニメーション
=======================================================*/

/* スクロールありで下から上 */
.fadein1 {
  opacity : 0;
  transform: translateY(50px);
  transition: all 1.5s;
}
/* スクロールありで右から左 */
.fadein2 {
  opacity : 0;
  transform: translateX(-50px);
  transition: all 2s;
}
/* スクロールありで左から右 */
.fadein3 {
  opacity : 0;
  transform: translateX(50px);
  transition: all 2s;
}
/* スクロールありで上から下 */
.fadein4 {
  opacity : 0;
  transform: translateY(-50px);
  transition: all 1.5s;
}
/* スクロールなし下から上でフェードイン */
.no-fadein1 {
  animation-duration: 2s;
  animation-name: fadein1;
}
/* スクロールなしで上から下フェードイン */
.no-fadein2 {
  animation-duration: 2s;
  animation-name: no-fadein2;
}

@keyframes fadein1 {
  0% {
    opacity: 0;/* 透明 */
    transform: translateY(50px);
  }
  100% {
    opacity: 1;/* 不透明 */
    transform: translateY(0);
  }
}
@keyframes no-fadein2 {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*Mv
=======================================================*/
/*TOPMV*/
.mv{
  height: 100%;
  position: relative;
}
.mv-catch{
  width: 1200px;
  margin: 0 auto;
  padding: 170px 0 100px;
}
.mv-bg img{
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.mv-catch-main-wrap{
  background:rgba(255,255,255,0.8);
  width: 45%;
  margin-left: auto;
  padding: 30px;
}
.mv-catch-main{
  font-size: 45px;
  line-height: 1.2;
  letter-spacing: 8px;
  font-family: "MYRIADPRO B";
  font-weight: bold;
}
.mv-catch-sub{
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 50px;
}
.mv-catch-sub p{
  font-size: 17px;
  letter-spacing: 1px;
  line-height: 2;
  font-family: "MYRIADPRO SB";
  font-weight: bold;
  padding: 10px 0;
}
/*下層MV*/
.sub-mv{
  height: 300px;
  width: 100%;
  position: relative;
}
.sub-mv img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.sub-mv-ttl{
  color: #fff;
  font-size: 100px;
  letter-spacing: 3px;
  width: 1200px;
  text-align: right;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 0;
  line-height: 1;
  text-shadow: 0px 1px 1px #cd853f;
}

@media screen and (max-width: 1200px){
  .mv-catch{
    width: 90%;
  }
  .mv-catch-main-wrap{
    width: 50%;
  }
  .sub-mv-ttl{
    width: 90%;
  }
}
@media screen and (max-width: 1100px){
  .mv-catch-main{
    font-size: 40px;
  }
}
@media screen and (max-width: 1000px){
  .mv-catch-main{
    font-size: 35px;
  }
  .sub-mv{
    height: 200px;
  }
  .sub-mv img{
    height: 200px;
  }
  .sub-mv-ttl{
    font-size: 50px;
  }
}
@media screen and (max-width: 768px){
  .mv-catch-main-wrap{
    width: 100%;
  }
  .mv-catch-main{
    font-size: 25px;
  }
  .mv-catch-sub p{
    font-size: 13px;
  }
}

/*header
=======================================================*/
header{
  width:100%;
  position: fixed;
  top:20px;
  left:0;
  z-index:99999;
  background: rgba(255,255,255,1);
  color:#373737;
  transition: all 0.3s ease;
}
header.is-anime{
  background: #fff;
  transition: all 0.3s ease;
}
header a{
  color:#373737;
  font-size: 20px;
  font-size: 2rem;
}
.header-inner{
  width: 98%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.header-logo a{
  display: block;
  height: auto;
  margin-left: 10px;
}
.header-nav{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}
.header-nav ul{
  display: flex;
  width: 100%;
  margin-right: 30px;
}
.header-nav ul li{
  margin-right: 30px;
}
.header-nav ul li a{
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: normal;
  text-decoration: none;
  line-height: 1.2;
  text-align: center;
  position: relative;
  letter-spacing: 3px;
}
.header-nav ul li a::after{
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
  background: #666666 !important;
}
.header-nav ul li:hover a::after{
  transform: scale(1, 1);
}
.header-nav ul li span{
  display: block;
  font-size:10px;
}

a.header-store{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #3D3D3D;
  color:#fff;
  font-size: 13px;
}
a.header-store:hover{
  background: #fff;
  color: #3D3D3D;
  border: 1px solid #3D3D3D;
}
.header-sp{
  display: none;
}

@media screen and (max-width: 1045px){
  .header{
    height:60px;
  }
  .header-inner{
    padding: 10px;
    height: 60px;
  }
}
@media screen and (max-width: 768px){
}

/* ハンバーガーメニュー */

@media screen and (max-width: 1045px){
  .header{
    height:60px;
  }
  .header-nav{
    position: fixed;
    left:0;
    width:100%;
    background:#F6E8CE;
    display: none;
  }
  .header-nav.is-open{
    top:0;
    display: block;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100vh;
    z-index: 10;
  }
  a.header-store{
    width: 90%;
    margin: 20px auto;
  }
  .header-nav ul{
    width: 80%;
    margin: 0 auto;
    flex-wrap: wrap;
    margin-top: 70px;
  }
  .header-nav ul li{
    width: 100%;
    display: block;
    margin-right: 0;
  }
  .header-nav ul li a{
    color:#000;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 20px 0;
    border-bottom: 1px solid #000;
  }
  .header-nav ul li a.header-nav-btn{
    background-color: #f2c3d5;
  }
  .header-nav ul li a.nav-btn-color{
    background-color: #f2c3d5;
    margin-left: 0;
  }
  .header-sp{
    position:fixed;
    display:block;
    top:0;
    right: 0;
    z-index: 11;
  }
  .header-sp button,
  .header-sp button span{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
  }
  .header-sp button{
    top:20px;
    width:45px;
    height:60px;
    border:none;
    position:relative;
  }
  .header-sp button span{
    position: absolute;
    right: 10px;
    width: 25px;
    height: 2px;
    background-color: #666666;
    border-radius: 1px;
  }
  .header-sp button span:nth-of-type(1){
    top: 30%;
  }
  .header-sp button span:nth-of-type(2){
    top: 45%;
  }
  .header-sp button span:nth-of-type(3){
    top:60%;
  }
  .header-sp button.is-open span:nth-of-type(1){
    top: 32%;
    -webkit-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
    background-color: #000;
  }
  .header-sp button.is-open span:nth-of-type(2){
    opacity: 0;
  }
  .header-sp button.is-open span:nth-of-type(3){
    -webkit-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg);
    background-color: #000;
  }
  .header-nav ul li a::after{
    content: unset;
  }
}

/*上に戻るボタン
=======================================================*/

@media screen and (max-width: 768px){
}

/*ボタン
=======================================================*/
a.normal-btn{
  display: block;
  font-size: 18px;
  border: 1px solid #000;
  color: #000000;
  padding: 3px 0;
  max-width: 300px;
  width: 300px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  letter-spacing: 3px;
  font-family: "MYRIADPRO R";
}
a.normal-btn::before{
  content: "";
  width: 1px;
  height: 50px;
  background: #000;
  display: block;
  position: absolute;
  transform: rotate(50deg);
  top: -15px;
  left: 10px;
}
a.normal-btn:hover{
  background: #000;
  color: #fff;
}
a.store-btn{
  display: block;
  font-size: 18px;
  border: 1px solid #000;
  color: #000000;
  padding: 5px 0;
  max-width: 300px;
  width: 300px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  letter-spacing: 3px;
  font-family: "MYRIADPRO R";
  border-radius: 50px;
}
a.store-btn::before{
  content: '\f07a';
  font-family: 'Font Awesome 6 Free';
  font-size: 20px;
  font-weight: 900;
  padding: 0 7px 0 0
}
a.store-btn:hover{
  background: #000;
  color: #fff;
}
a.insta-btn{
  font-size: 15px;
  border: 1px solid #000;
  color: #000000;
  padding: 1px 0;
  max-width: 300px;
  width: 180px;
  text-align: center;
  letter-spacing: 3px;
  font-family: "MYRIADPRO R";
  border-radius: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
a.insta-btn::before{
  content: '\f16d';
  font-family: 'Font Awesome 6 Brands';
  font-size: 20px;
  font-weight: 400;
  margin-right: 5px;
}
a.insta-btn::after{
  content: "";
  position: absolute;
  display: block;
  transition: all .3s;
  width: 10px;
  height: 24px;
  top: 45%;
  right: -10px;
  box-shadow: 2px -2px 0 #fff;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  transform: translateY(-50%) rotate(45deg) skewX(-45deg);
}
a.insta-btn:hover{
  background: #000;
  color: #fff;
}
a.insta-btn:hover::after{
  right:-20px;
  height: 40px;
}

@media screen and (max-width: 768px){
  a.normal-btn{
    max-width: 250px;
    width: 250px;
    font-size: 16px;
  }
  a.store-btn{
    font-size: 16px;
    padding: 2px 0;
    max-width: 250px;
    width: 250px;
  }
  a.insta-btn{
    font-size: 12px;
    margin: 20px auto 0;
  }
}

/*パンくず
=======================================================*/
#breadcrumbs ul{
  line-height: 0;
}
#breadcrumbs ul li{
  display: inline;
}

@media screen and (max-width: 768px){
  #breadcrumbs ul li{
    font-size: 10px;
  }
}

/*CONTACT FORM
=======================================================*/
.contact{
  background: url(/wp-content/themes/tadaimacoffee/img/contact.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.contact-wrap{
  background:rgba(255,255,255,0.8);
  width: 90%;
  margin: 0 auto;
  padding: 50px 0;
}
.contact-txt{
  text-align: center;
  font-size: 17px;
  margin: 10px 0 20px;
}

@media screen and (max-width: 768px){
  .contact-txt{
    font-size: 13px;
  }
}

/*footer
=======================================================*/
footer {
  text-align: center;
  background: #F6E8CE;
  padding-top: 100px;
}
.footer-wrap{
  padding-bottom:50px;
}
.footer-ttl{
  font-size: 28px;
}
.footer-menu{
  margin: 50px 0;
}
.footer-menu ul{
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-menu ul li{
  letter-spacing: 2px;
  padding: 0 20px;
}
.footer-link{
  display: flex;
  justify-content: center;
}
.footer-link .store-btn{
  margin: 0;
}
a.footer-link-btn{
  width: 48px;
  height: 48px;
  border: 1px solid #000;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 20px;
}
a.footer-link-btn svg{
  font-size: 20px;
}
a.footer-link-btn:hover{
  background: #000;
  color: #fff;
}
#copyright {
  padding: 5px 0;
  background: #fff;
}
p#copyright{
  margin:0;
}
#copyright small{
  font-size: 10px;
  color: #373737;
}

@media screen and (max-width: 768px){
  footer{
    padding-top: 50px;
  }
  .footer-ttl {
    font-size: 25px;
  }
  .footer-menu{
    margin: 30px 0;
  }
  .footer-menu ul{
    flex-wrap: wrap;
  }
  .footer-link{
    flex-wrap: wrap;
  }
  a.footer-link-btn{
    margin: 0 0 0 10px;
  }
  footer a.store-btn{
    max-width: 100%;
    width: 100%;
    margin: 0 20px 20px!important;
  }
}