@charset "utf-8";
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			RESET

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,legend,input,label,textarea,p,blockquote,table,caption,tbody,tfoot,thead,th,td,option,figure,figcaption{
	margin:0;
	padding:0;}

table{
	border-collapse:collapse;
	border-spacing:0;}

fieldset,img,abbr,acronym{border:0;}

address,caption,cite,code,dfn,th,var,optgroup,strong,em,b,i{
	font-style:normal;
	font-weight:normal;}

ol,ul{list-style:none;}

caption,th{text-align:left;}

h1,h2,h3,h4,h5,h6{font-size:100%;}

a,ins,del{text-decoration: none;}

a {
	display: inline-block;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;}

img{
	display: inline-block;
	width: 100%;
	max-width: 100%;
	height: auto;
	border: 0;
	margin: 0;
	vertical-align: bottom;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;}

object,embed,th,td{vertical-align: top;}

input,textarea,select{font-size: 1em;}

picture,figure,audio{display: inline-block;}

audio {max-width: 100%;}
/***CLEAR FIX***/
.clf::after {
	content: "";
	display: block;
	clear: both;}
/***NO iOS STYLE***/
input[type="submit"],
input[type="button"],
input[type="reset"] {
-webkit-appearance: none;}
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			COMMON

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
* {
	box-sizing: border-box;
	outline: none;
  font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	font-weight:700;
	color: #000;
}
html{
	overflow-x: hidden;
	overflow-y: auto;
  -webkit-text-size-adjust: 100%;
}
body{
	opacity: 0;
	padding: 0;
  background: #D52C42;
	position: relative;
}
body.show{
	opacity: 1;
	transition: 1s;
}
.text{
  line-height: 1.75;
}
/*================================
animation
=================================*/
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes image_scale {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes catchTextBg {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}
@keyframes textFadeUp {
  0% {
    transform: translateY(101%);
  }

  100% {
    transform: translateY(0);
  }
}
@media all and (min-width:530px) {
* {
	font-size: 18px;
}
  body{
    padding: 16px;
  }
}
@media all and (min-width:641px) {

}
@media all and (min-width:769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media all and (min-width:1200px) {
  body{
    padding: 32px;
  }
}
@keyframes shake {
  0% {
      transform: rotate(0)
  }

  6%,18%,30%,42% {
      transform: rotate(10deg)
  }

  12%,24%,36% {
      transform: rotate(-10deg)
  }

  48% {
      transform: rotate(0)
  }

  100% {
      transform: rotate(0)
  }
}
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			HOME

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
header
=================================*/
main .main_outer{
  display: flex;
  padding-left: calc((100% - 1366px) / 2);
}
/*================================
frame
=================================*/
main .frame_wrap{
	display: none;
}
/*================================
left contents
=================================*/
main .left_contents{
  display: none;
}
/*================================
main contents
=================================*/
main .main_contents{
  display: flex;
  justify-content: center;
  /* width: 42.167vw; */
  width: 84vw;
  max-width: 576px;
  margin: 0 auto;
  position: relative;
}
main .main_contents .anim_text_wrap{
  width: 62px;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: -1;
}
main .main_contents .anim_text_wrap.left{
  margin-left: -96.038vw;
}
main .main_contents .anim_text_wrap.right{
  margin-left: 96.038vw;
}
main .main_contents .anim_text{
  width: 100%;
  height: 100%;
  position: relative;
}
main .main_contents .anim_text_wrap.left .anim_text::before,
main .main_contents .anim_text_wrap.right .anim_text::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
main .main_contents .anim_text_wrap.left .anim_text::before{
  background: url("../images/common/don_salsa_burger_yellow.svg") repeat-y top center;
  animation: textgAnimLeft 30s linear infinite;
}
main .main_contents .anim_text_wrap.right .anim_text::before{
  background: url("../images/common/enjoy_your_choice_blue.svg") repeat-y top center;
  animation: textgAnimRight 30s linear infinite;
}

@keyframes textgAnimLeft {
  0% {
    background-position: 0 0;
  }

  100% {
      background-position: 0 932px;
  }
}
@keyframes textgAnimRight {
  0% {
      background-position: 0 969px;
  }

  100% {
      background-position: 0 0;
  }
}
main .main_contents .inner{
  /* width: 30.015vw; */
  width: 100%;
  max-width: 410px;
  background: #FFFAD7;
}
/*---------------
mv
----------------*/
main .mv{
  width: 100%;
  height: 84vh;
  max-height: 700px;
  margin-bottom: 20px;
  background: url("../images/mv/mv_image.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
}
main .mv .mv_logo{
  width: 100%;
  max-width: 166px;
  position: absolute;
  top: 30px;
  left: 23px;
  z-index: 2;
}
main .mv .illust_wrap{
  width: 100%;
  max-width: 374px;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  transform: scale(0);
}
.show main .mv .illust_wrap{
  animation: image_scale .6s cubic-bezier(0.81, 0, 0.15, 0.99) 1s forwards;
}
main .mv .illust_wrap .illust_inner{
  width: 100%;
  height: 100%;
  position: relative;
}
main .mv .illust_wrap .illust{
  position: absolute;
}
main .mv .illust_wrap .illust:nth-child(1){
  width: 31px;
  top: 199px;
  left: 37px;
}
main .mv .illust_wrap .illust:nth-child(2){
  width: 36px;
  top: 133px;
  left: 137px;
}
main .mv .illust_wrap .illust:nth-child(3){
  width: 90px;
  top: 95px;
  right: 30px;
}
.show main .mv .illust_wrap .illust:nth-child(3){
  animation: shake 3s infinite 3s;
}
main .mv .illust_wrap .illust:nth-child(4){
  width: 78px;
  bottom: 84px;
  left: 23px;
}
.show main .mv .illust_wrap .illust:nth-child(4){
  animation: shake 3s infinite 5s;
}
main .mv .illust_wrap .illust:nth-child(5){
  width: 34px;
  bottom: 21px;
  left: 137px;
}
main .mv .illust_wrap .illust:nth-child(6){
  width: 52px;
  bottom: 11px;
  right: 16px;
}
.show main .mv .illust_wrap .illust:nth-child(6){
  animation: shake 3s infinite 7s;
}
/*---------------
about
----------------*/
main .about_wrap{
  margin-bottom: 78px;
  overflow: hidden;
}
main .about_wrap .contents_title{
  width: 100%;
  max-width: 240px;
  margin: 0 auto 24px auto;
  opacity: 0;
}
main .about_wrap.anim_active .contents_title{
  animation: fadein .6s cubic-bezier(0.81, 0, 0.15, 0.99) forwards;
}
main .about_wrap .text{
  padding: 0 16px;
  font-weight: 500;
  opacity: 0;
}
main .about_wrap.anim_active .text{
  animation: fadein .6s cubic-bezier(0.81, 0, 0.15, 0.99) forwards;
}
main .about_wrap .image_wrap{
  width: 100%;
  height: 346px;
  margin-bottom: 40px;
  position: relative;
}
main .about_wrap .image_wrap .image{
  position: absolute;
  transform: scale(0);
}
main .about_wrap .image_wrap .image:nth-child(1){
  width: 205px;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.show main .about_wrap .image_wrap.anim_active .image:nth-child(1){
  animation: image_scale .4s cubic-bezier(0.81, 0, 0.15, 0.99) .6s forwards;
}
main .about_wrap .image_wrap .image:nth-child(2){
  width: 302px;
  top: 0;
  right: 0;
  z-index: 1;
}
.show main .about_wrap .image_wrap.anim_active .image:nth-child(2){
  animation: image_scale .6s cubic-bezier(0.81, 0, 0.15, 0.99) forwards;
}

main .about_wrap .scroll_text_wrap{
  display: flex;
  width: 100%;
  justify-content: flex-start;
  margin-bottom: 40px;
  transform: translateX(-10px) rotate(-9deg);
  position: relative;
  opacity: 0;
}
main .about_wrap.anim_active .scroll_text_wrap{
  animation: fadein .4s cubic-bezier(0.81, 0, 0.15, 0.99) forwards;
}
main .about_wrap .scroll_text_wrap::before{
  content: "";
  width: 100%;
  height: 100%;
  background: #C6E2D1;
  position: absolute;
  top: 0;
  left: 0;
  transform: skewX(-9deg);
  z-index: 0;
}
main .about_wrap.anim_active .scroll_text_wrap .scroll_text{
  white-space: nowrap;
  padding: 10px 0 10px 24px;
  background: #C6E2D1;
  font-size: 16px;
  position: relative;
  z-index: 1;
  animation: text_scroll 30s linear infinite;
}

@keyframes text_scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}
/*---------------
menu
----------------*/
main .menu_wrap{
  position: relative;
}
main .menu_wrap.top{
  margin-bottom: 32px;
}
main .menu_wrap.bottom{
  margin-bottom: 120px;
}
main .menu_wrap .takeout{
  width: 66px;
  position: absolute;
  top: -104px;
  right: 20px;
  opacity: 0;
}
main .menu_wrap.anim_active .takeout{
  animation: fadein .4s cubic-bezier(0.81, 0, 0.15, 0.99) forwards;
}
main .menu_wrap .contents{
  padding: 0 16px;
}
main .menu_wrap.bottom .contents{
  margin-bottom: 60px;
}
main .menu_wrap .item *{
  font-weight: 500;
  line-height: 2;
}
main .menu_wrap .item{
  width: 100%;
  padding-bottom: 60px;
  position: relative;
  opacity: 0;
}
main .menu_wrap .item .small{
  font-size: 12px;
}
main .menu_wrap .item.anim_active{
  animation: fadein .4s cubic-bezier(0.81, 0, 0.15, 0.99) forwards;
}
main .menu_wrap .item:last-child{
  padding-bottom: 0;
}
/*set*/
main .menu_wrap .item .set_wrap{
  width: 67px;
  height: 67px;
  position: absolute;
  right: 0;
  z-index: 2;
}
main .menu_wrap.top .item .set_wrap{
  bottom: 0;
}
main .menu_wrap.bottom .item .set_wrap{
  bottom: -10px;
}
main .menu_wrap .item .set_wrap .set_inner{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
main .menu_wrap .item .set_wrap .set_inner::before{
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/menu/set_bg.svg") no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-animation: role 10s linear infinite;
  animation: role 10s linear infinite;
}
@-webkit-keyframes role {
  0% {
    -webkit-transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes role {
  0% {
    -webkit-transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
main .menu_wrap .item .set_wrap .text_image{
  width: 38px;
  position: relative;
  z-index:3;
}
main .menu_wrap .item .item_title{
  width: 100%;
  max-width: 313px;
  margin-bottom: 10px;
}
main .menu_wrap .item .list_wrap,
main .menu_wrap .item.drink .detail{
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
}
main .menu_wrap .item.drink .list_wrap{
  margin-bottom: 40px;
}
main .menu_wrap .item.drink .detail{
  font-size: 14px;
  font-weight: 500;
}
main .menu_wrap .item ul *{
  line-height: 1.75;
}
main .menu_wrap .item li,
main .menu_wrap .item.price dl dt,
main .menu_wrap .item.price dl dd{
  font-size: 14px;
}
main .menu_wrap .item.price dl dt .small{
  font-size: 12px;
}
main .menu_wrap .item .sub_list{
  display: flex;
  flex-wrap: wrap;
}
main .menu_wrap .item .sub_list li{
  font-size: 14px;
  margin-right: 1em;
}
main .menu_wrap .item .sub_list li:last-child{
  margin-right: 0;
}
main .menu_wrap .item .sub_list li::before{
  content: "・";
  font-size: 14px;
}
/*price*/
main .menu_wrap .item.price dl{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
main .menu_wrap .item.price dl::before{
  content: "";
  width: 100%;
  height: 4px;
  background: url("../images/menu/dot.svg") repeat-x center center;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
}
main .menu_wrap .item.price dl dt,
main .menu_wrap .item.price dl dd{
  padding: 0 2px;
  background: #FFFAD7;
  position: relative;
  z-index: 1;
}
/*bottom iamge*/
main .menu_wrap .bottom_image{
  opacity: 0;
}
main .menu_wrap .bottom_image.anim_active{
  animation: fadein .4s cubic-bezier(0.81, 0, 0.15, 0.99) forwards;
}
/*---------------
example
----------------*/
main .example_wrap{
  margin-bottom: 70px;
  padding: 0 16px;
}
main .example_wrap .item{
  margin-bottom: 32px;
  position: relative;
}
main .example_wrap .item:last-child{
  margin-bottom: 0;
}
main .example_wrap .item .item_title{
  margin-bottom: 14px;
}
/* main .example_wrap .item:nth-child(1) .item_title{
  width: 67px;
} */
main .example_wrap .item:nth-child(1) .item_title{
  width: 105px;
}
main .example_wrap .item:nth-child(2) .item_title{
  width: 120px;
}
main .example_wrap .item .main_wrap{
  cursor: pointer;
  opacity: 0;
}
main .example_wrap .item.anim_active .main_wrap{
  animation: fadein .6s cubic-bezier(0.81, 0, 0.15, 0.99) forwards;
}
main .example_wrap .item .image{
  position: relative;
}
main .example_wrap .item .image::after{
  content: "";
  width: 100%;
  height: 100%;
  background: #E5D4C6;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s;
  opacity: 0;
}
main .example_wrap .item.open .image::after{
  opacity: 1;
}
/*detail*/
.overlay{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  cursor: pointer;
  display: none;
}
main .example_wrap .detail_wrap{
  width: 100%;
  max-width: 338px;
  margin: 0 auto;
  padding: 0 16px;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%,-50%);
  display: none;
}
main .example_wrap .detail_wrap .detail_inner{
  background: #fff;
  border: 5px solid #151515;
  padding: 48px 0 40px 0;
  position: relative;
}
main .example_wrap .detail_wrap .close{
  width: 23px;
  position: absolute;
  top: 18px;
  right: 16px;
  cursor: pointer;
}
main .example_wrap .detail_wrap .detail_title_wrap{
  margin-bottom: 18px;
  text-align: center;
}
main .example_wrap .detail_wrap .detail_title_en{
  margin: 0 auto 12px auto;
}
main .example_wrap .item:nth-child(1) .detail_wrap .detail_title_en{
  width: 58px;
}
main .example_wrap .item:nth-child(2) .detail_wrap .detail_title_en{
  width: 121px;
}
main .example_wrap .item:nth-child(3) .detail_wrap .detail_title_en{
  width: 141px;
}
main .example_wrap .detail_wrap .top_text{
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
main .example_wrap .detail_wrap .detail_contents{
  display: flex;
  padding-right: 10px;
}
main .example_wrap .detail_wrap .detail_image{
  width: 100%;
  max-width: 100px;
  margin-right: 8px;
  flex-shrink: 0;
}
main .example_wrap .detail_wrap .list_wrap dl{
  margin-bottom: 10px;
}
main .example_wrap .detail_wrap .list_wrap dl:last-child{
  margin-bottom: 0;
}
main .example_wrap .detail_wrap .list_wrap dd,
main .example_wrap .detail_wrap .list_wrap dd ul li{
  font-size: 16px;
  font-weight: 500;
}
main .example_wrap .detail_wrap .list_wrap .price dd{
  font-size: 20px;
  font-weight: 700;
}

/*---------------
access
----------------*/
main .access_wrap{
  margin-bottom: 116px;
  opacity: 0;
}
main .access_wrap.anim_active{
  animation: fadein .4s cubic-bezier(0.81, 0, 0.15, 0.99) forwards;
}
main .access_wrap .contents_title{
  width: 100%;
  max-width: 240px;
  margin-bottom: 34px;
  padding-left: 16px;
}
main .access_wrap .map_wrap{
  margin-bottom: 80px;
}
main .access_wrap .map_wrap .map,
main .access_wrap .map_wrap iframe,
main .access_wrap .map_wrap .illust_wrap{
  width: 100%;
  height: 320px;
}
main .access_wrap .map_wrap .map{
  margin-bottom: 40px;
  position: relative;
}
main .access_wrap .map_wrap .illust_wrap{
  transform: scale(0);
  position: absolute;
  top: 0;
  left: 0;
}
main .access_wrap.anim_active .map_wrap .illust_wrap{
  animation: image_scale .6s cubic-bezier(0.81, 0, 0.15, 0.99) .4s forwards;
}
main .access_wrap .map_wrap .illust_wrap .illust{
  position: absolute;
  z-index: 1;
}
main .access_wrap .map_wrap .illust_wrap .illust:nth-child(1){
  width: 47px;
  top: -30px;
  left: 10px;
}
main .access_wrap .map_wrap .illust_wrap .illust:nth-child(2){
  width: 38px;
  top: -40px;
  right: 10px;
}
main .access_wrap .map_wrap .illust_wrap .illust:nth-child(3){
  width: 66px;
  bottom: -20px;
  left: 10px;
}
main .access_wrap .map_wrap .illust_wrap .illust:nth-child(4){
  width: 60px;
  bottom: -20px;
  right: 50px;
}
main .access_wrap .map_wrap .google_link{
  width: 100%;
  max-width: 219px;
  margin-left: auto;
  text-align: center;
}
main .access_wrap .map_wrap .google_link a{
  width: 100%;
  padding: 7px 0 8px 0;
  font-size: 18px;
  background: #FAC231;
  border: 1px solid #000;
  color: #000;
}
main .access_wrap .informatioin_wrap{
  padding: 0 16px;
}
main .access_wrap .informatioin_wrap .name{
  width: 100%;
  margin-bottom: 25px;
}
main .access_wrap .informatioin_wrap .list_wrap li{
  margin-bottom: 30px;
}
main .access_wrap .informatioin_wrap .list_wrap li:last-child{
  margin-bottom: 0;
}
main .access_wrap .informatioin_wrap .list_wrap li dt{
  margin-bottom: 4px;
}
main .access_wrap .informatioin_wrap .list_wrap li:nth-child(1) dt{
  width: 68px;
}
main .access_wrap .informatioin_wrap .list_wrap li:nth-child(2) dt{
  width: 85px;
}
main .access_wrap .informatioin_wrap .list_wrap li:nth-child(3) dt{
  width: 113px;
}
main .access_wrap .informatioin_wrap .list_wrap dd,
main .access_wrap .informatioin_wrap .list_wrap dd a{
  color: #D52C42;
}
/*copyright*/
main .copyright{
  width: 100%;
  max-width: 140px;
  margin: 0 auto 22px auto;
}
/*===============================
catch
=================================*/
main .catch_wrap{
  display: none;
}

/*================================
footer
=================================*/
footer .copyright{
  display: none;
}
@media all and (min-width:481px) {
  main .main_contents .anim_text_wrap.left{
    margin-left: -90.038vw;
  }
  main .main_contents .anim_text_wrap.right{
    margin-left: 90.038vw;
  }
}

@media all and (min-width:530px) {
  /*================================
  frame
  =================================*/
  main .frame_wrap{
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 20;
  }
  main .frame_wrap span{
    display: inline-block;
    background: #FFFAD7;
    position: fixed;
  }
  main .frame_wrap span.top,
  main .frame_wrap span.bottom{
    width: 100%;
    height: 16px;
    left: 0;
  }
  main .frame_wrap span.right,
  main .frame_wrap span.left{
    width: 16px;
    height: 100%;
    top: 0;
  }
  main .frame_wrap span.top{
    top: 0;
  }
  main .frame_wrap span.bottom{
    bottom: 0;
  }
  main .frame_wrap span.right{
    right: 0;
  }
  main .frame_wrap span.left{
    left: 0;
  }
  /*================================
  main contents
  =================================*/
  main .main_contents{
    width: 100%;
  }
  main .main_contents .anim_text_wrap.left{
    margin-left: -470px;
  }
  main .main_contents .anim_text_wrap.right{
    margin-left: 470px;
  }
  /*---------------
  about
  ----------------*/
  main .about_wrap .contents_title{
    max-width: 370px;
  }
  main .about_wrap.anim_active .scroll_text_wrap .scroll_text{
    font-weight: 500;
  }
  /*---------------
  menu
  ----------------*/
  /*detail*/
  main .menu_wrap .item li,
  main .menu_wrap .item.price dl dt,
  main .menu_wrap .item.price dl dd{
    font-size: 16px;
  }
  /*set*/
  main .menu_wrap .item .set_wrap{
    width: 97px;
    height: 97px;
  }
  main .menu_wrap.bottom .item .set_wrap{
    bottom: -40px;
  }
  main .menu_wrap .item .set_wrap .text_image{
    width: 53px;
  }
  /*price*/
  main .menu_wrap .item.price dl dt,
  main .menu_wrap .item.price dl dd{
    padding: 0 5px;
  }
  /*---------------
  example
  ----------------*/
  main .example_wrap .item{
    position: relative;
  }
  /* main .example_wrap .item:nth-child(1) .item_title{
    width: 97px;
  } */
  main .example_wrap .item:nth-child(1) .item_title{
    width: 155px;
  }
  main .example_wrap .item:nth-child(2) .item_title{
    width: 170px;
  }
  /*detail*/
  main .example_wrap .detail_wrap{
    max-width: 360px;
    padding: 0;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    transform: none;
  }
  main .example_wrap .detail_wrap .detail_image{
    max-width: 131px;
    margin-right: 16px;
  }
  main .example_wrap .item:nth-child(1) .detail_wrap .detail_title_en{
    width: 88px;
  }
  main .example_wrap .item:nth-child(2) .detail_wrap .detail_title_en{
    width: 161px;
  }
  main .example_wrap .item:nth-child(3) .detail_wrap .detail_title_en{
    width: 181px;
  }
  /*---------------
  access
  ----------------*/
  main .access_wrap .contents_title{
    width: 100%;
    max-width: 372px;
    margin-bottom: 56px;
    padding-left: 16px;
  }
  main .access_wrap .map_wrap .map,
  main .access_wrap .map_wrap iframe,
  main .access_wrap .map_wrap .illust_wrap{
    height: 427px;
  }
  main .access_wrap .informatioin_wrap .list_wrap li:nth-child(1) dt{
    width: 88px;
  }
  main .access_wrap .informatioin_wrap .list_wrap li:nth-child(2) dt{
    width: 105px;
  }
  main .access_wrap .informatioin_wrap .list_wrap li:nth-child(3) dt{
    width: 133px;
  }
}
@media all and (min-width:641px) {

}
@media all and (min-width:769px) {
  /*---------------
  example
  ----------------*/
  main .example_wrap .item .image::before{
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(95, 80, 59, .42);
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
  }
  main .example_wrap .item:hover .image::before{
    opacity: 0;
  }
}
@media all and (min-width:1200px) {

  main .frame_wrap span.top,
  main .frame_wrap span.bottom{
    height: 32px;
  }
  main .frame_wrap span.right,
  main .frame_wrap span.left{
    width: 32px;
  }
  /*================================
  left contents
  =================================*/
  main .left_contents{
    display: block;
    width: 6%;
  }
  /*===============================
  catch
  =================================*/
  main .catch_wrap{
    display: block;
    width: 46%;
    height: 100%;
    margin-left: auto;
    position: fixed;
    top: 0;
    right: 0;
  }
  main .catch_wrap .inner{
    width: 100%;
    height: 100%;
    position: relative;
  }
  main .catch_wrap .catch_logo{
    width: 16.937vw;
    /* max-width: 286px; */
    position: absolute;
    top: 70px;
    left: 20px;
    z-index: 1;
    transform: scale(0);
  }
  .show main .catch_wrap .catch_logo{
    animation: image_scale .6s cubic-bezier(0.81, 0, 0.15, 0.99) 1s forwards;
  }
  main .catch_wrap .catch_hamburger{
    width: 28.624vw;
    position: absolute;
    bottom: 20px;
    right: 70px;
    z-index: 0;
    transform: scale(0);
  }
  .show main .catch_wrap .catch_hamburger{
    animation: image_scale .6s cubic-bezier(0.81, 0, 0.15, 0.99) 1s forwards;
  }
  main .catch_wrap .catch_text_box{
    position: absolute;
    bottom: 70px;
    left: 20px;
    z-index: 1;
  }
  main .catch_wrap .catch_text_box .text_wrap{
    margin-bottom: 12px;
  }
  main .catch_wrap .catch_text_box .text_wrap:last-child{
    margin-bottom: 0;
  }
  main .catch_wrap .catch_text_box .text_item{
    display: inline-block;
    padding: 0 20px;
    position: relative;
  }
  main .catch_wrap .catch_text_box .text_item::before{
    content: "";
    width: 0;
    height: 100%;
    background: #1D1C1C;
    position: absolute;
    top: 0;
    left: 0;
    transform: skewX(-20deg);
    z-index: -1;
  }
  .show main .catch_wrap .catch_text_box .text_item::before{
    animation: catchTextBg .6s cubic-bezier(0.81, 0, 0.15, 0.99) .4s forwards;
  }
  main .catch_wrap .catch_text_box .text{
    display: inline-block;
    overflow: hidden;
  }
  main .catch_wrap .catch_text_box span{
    display: inline-block;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    font-weight: 500;
    transform: translateY(-101%);
  }
  .show main .catch_wrap .catch_text_box span{
    animation: textFadeUp .8s cubic-bezier(0.81, 0, 0.15, 0.99) .8s forwards;
  }
  /*================================
  main contents
  =================================*/
  main .main_contents{
    margin: 0;
  }
  /*================================
  footer
  =================================*/
  footer .copyright{
    display: block;
    width: 9px;
    position: fixed;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
  }
}