@charset "UTF-8";

/* ===================================================================

	Setting

=================================================================== */
html {
  width: 100%;
  font-size: 62.5%;
}

body {
  background-color: #000;
  font-size: 15px;
  font-family: a-otf-ryumin-pr6n, "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-style: normal;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}
.main_wrapper {
  overflow: hidden;
}
.container {
  max-width: 1450px;
  width: 95%;
  margin: 0 auto;
}
.container_s {
  max-width: 820px;
  width: 95%;
  margin: 0 auto;
}
.pc {
  display: block;
}
.sp_only_none {
  display: block;
}
.sp {
  display: none;
}
.tb {
  display: none;
}
.sp_only {
  display: none;
}

@media screen and (max-width:1200px) {
  .main_wrapper {
    padding-top: 10px;
  }
}
@media screen and (max-width:1024px) {}

@media screen and (max-width:768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .tb {
    display: block;
  }
}

@media screen and (max-width:479px) {
  .main_wrapper {
    padding-top: 25px;
  }
  .tb {
    display: none;
  }

  .sp_only {
    display: block;
  }

  .sp_only_none {
    display: none;
  }
}

/* link set
	------------------------------------------------------------------- */
a {
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

a img {
  transition: 0.3s ease-in-out;
}

a:hover {
  transition: 0.3s ease-in-out;
}
a:hover img {
  opacity: 0.7;
  transition: 0.3s ease-in-out;
}

/* float対策：背景色表示用
	------------------------------------------------------------------- */
/*.clearfix:after { display: block; clear: both; height: 0px; line-height: 0px; visibility: hidden; content: "."; }
	.clearfix {	display: block; /* for IE8 */
/*}
	.both { clear:both ;}
	.hidden { display: none; }*/
/* 	imgホバーアクション
	------------------------------------------------------------------- */
.imgWrap {
  overflow: hidden;
  width: 100%;
  height: auto;
  cursor: pointer;
  background-color: #ffffff;
}

.imgWrap img {
  display: block;
  transition-duration: 0.3s;
  margin-top: -1px;
}

.imgWrap img:hover {
  opacity: 0.6;
  transition: all .3s;
}

/* flex
----------------------------------------------- */
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: auto;
}

.flex img {
  align-self: flex-start;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex_just-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex_just-b {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex_just-a {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex_align-c {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex_align-b {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.flex_direction-row-r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/* pagetop
----------------------------------------------- */
#pageTop {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 100;
}

#pageTop a {
  padding: 8px 0 0 0px;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}


@media screen and (max-width:479px) {
  #pageTop {
    bottom: 30px;
    right: 20px;
  }
}


/* ===================================================================

	Header

=================================================================== */
header {
  width: 100%;
  z-index: 9999;
  position: fixed;
  background-color: #000;
}
.menu_inner {
  height: 150px;
}
.nav_menu nav {
  width: 100%;
}
.nav_menu nav ul.ddmenu {
  width: 100%;
  height: auto;
  position: relative;
}
.nav_menu nav ul.ddmenu li {
  text-align: center;
}
.nav_menu nav ul.ddmenu li a {
  display: inline-block;
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
  position: relative;
  text-decoration: none;
  padding: 8px 15px;
  border-right: 1px solid #fff;
  font-family: kozuka-gothic-pro, sans-serif;
  font-style: normal;
  font-weight: 500;
}
.nav_menu nav ul.ddmenu li:first-of-type a {
  border-left: 1px solid #fff;
}
.nav_menu nav ul.ddmenu li a:hover {
  color: #ed6c00;
}

@media screen and (max-width:1350px) {
  .menu_inner {
    height: 100px;
  }
  .menu_inner .logo img {
    width: 220px;
  }
  .nav_menu nav ul.ddmenu li a {
    font-size: 1.2rem;
    padding: 5px 12px;
  }
}

@media screen and (max-width:1200px) {
  .menu_inner .logo img {
    width: 180px;
  }
  .nav_menu nav ul.ddmenu li a {
    font-size: 1.1rem;
    padding: 3px 8px;
  }
}

@media screen and (max-width:1024px) {
  .menu_inner {
    height: auto;
    padding: 15px 0;
  }
  .menu_inner .logo img {
    width: 180px;
  }
  header .nav_menu {
    display: none;
  }
  .nav_menu nav ul.ddmenu li a {
    font-size: 1.1rem;
  }
}

@media screen and (max-width:768px) {
  .menu_inner {
    padding: 10px 0;
  }
  .menu_inner .logo img {
    width: 150px;
  }
}

@media screen and (max-width:479px) {
  .menu_inner .logo img {
    width: 120px;
  }
}

/* ===================================================================
	/
	/	smh_menu　トグルメニュー
	/
	=================================================================== */
#smh_menu {
  display: none;
}

.yoshi_new .drawer-hamburger {
  border-radius: 50%;
  top: 2% !important;
  right: 2% !important;
  background-color: transparent !important;
}

/*.yoshi_new .drawer-hamburger-icon,
.yoshi_new .drawer-hamburger-icon:after,
.yoshi_new .drawer-hamburger-icon:before {
  background-color: #e83528 !important;
}*/

.yoshi_new.drawer-open .drawer-hamburger-icon {
  background-color: transparent !important;
}

.yoshi_new #smh_menu .unei {
  margin-top: 100px;
  width: 100%;
}

.yoshi_new #smh_menu .unei li {
  padding: 0.5rem 2rem;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 2px;
  font-weight: 600;
}

.yoshi_new #smh_menu .unei li a img {
  width: 100%;
}

.yoshi_new .drawer-nav {
  background-color: #c1681dfc;
  color: #fff;
}



@media screen and (max-width:1024px) {
  #smh_menu {
    display: block;
    position: relative;
    z-index: 9999;
  }
  .yoshi_new .drawer-hamburger {
    top: 1.3% !important;
  }

  .drawer--right .drawer-hamburger, .drawer--right.drawer-open .drawer-nav, .drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
    right: 2% !important;
  }

  .drawer--right.drawer-open .drawer-hamburger {
    right: 2% !important;
  }

  .drawer--right.drawer-open .drawer-nav {
    right: 0 !important;
  }
}

@media screen and (max-width:768px) {
  .drawer-nav ul li {
    margin-right: 0px;
    float: none;
    font-size: 1.1rem;
    display: block;
    text-decoration: none;
    color: #222;
  }

  .yoshi_new #smh_menu .unei li {
    font-size: 1.2rem;
  }
}

@media screen and (max-width:479px) {
  .yoshi_new .drawer-hamburger {
    top: 1% !important;
  }
}

/* ===================================================================
	/
	/	博多もつ鍋芳々亭　TOP_new
	/
	=================================================================== */
/* 共通
----------------------------------------------- */
.sec {
  padding: 100px 0;
}
h2 {
  font-size: 4rem;
  font-family: hot-gfkaishokk, sans-serif;
  font-style: normal;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ed6c00;
}
h2 img {
  margin: 10px auto 0;
}
h3 {
  font-size: 3rem;
}
h4 {
  font-size: 2.5rem;
}
p {
  font-size: 1.5rem;
  color: #fff;
}
.title {
  font-size: 2.8rem;
  color: #fff;
  position: relative;
  padding: 10px 0;
  display: inline-block;
}
.title::before,
.title::after {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  left: -20px;
  width: calc(100% + 40px);
  height: 2px;
}
.title::before {
  background-image: url(../images/new/line_h.png);
  top: 0;
}
.title::after {
  background-image: url(../images/new/line_h.png);
  bottom: 0;
}
.title span {
  position: relative;
  padding: 30px 20px;
}
.title span::before,
.title span::after {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  width: 2px;
  height: 100%;
}
.title span::before {
  background-image: url(../images/new/line_v.png);
  left: 0;
}
.title span::after {
  background-image: url(../images/new/line_v.png);
  right: 0;
}
.text_area {
  text-align: center;
}
.text_area > *,
.main_area .text_area > div > * {
  margin-bottom: 20px;
}
.p-link {
  margin-top: -150px;
  padding-top: 150px;
}
.half {
  width: 50%;
}
.half2 {
  width: 45%;
}


@media screen and (max-width:1350px) {
  .p-link {
    margin-top: -100px;
    padding-top: 100px;
  }
}

@media screen and (max-width:1024px) {
  .sec {
    padding: 80px 0;
  }
  h2 {
    font-size: 3rem;
    line-height: 1;
  }
  h2 img {
    height: 30px;
  }
  h3 {
    font-size: 2.2rem;
  }
  h4 {
    font-size: 1.8rem;
  }
  p {
    font-size: 1.4rem;
  }
  .title {
    font-size: 2rem;
  }
  .p-link {
    margin-top: -80px;
    padding-top: 80px;
  }
}

@media screen and (max-width:768px) {
  .sec {
    padding: 50px 0;
  }
  h2 {
    font-size: 2.5rem;
  }
  h2 img {
    height: 55px;
    margin: 10px auto 0;
  }
  h3 {
    font-size: 1.8rem;
  }
  h4 {
    font-size: 1.6rem;
  }
  .title {
    font-size: 1.6rem;
    padding: 8px 0;
  }
  .title::before, .title::after {
    left: -15px;
    width: calc(100% + 30px);
  }
  .title span {
    padding: 20px 20px;
  }
  .half {
    width: 100%;
  }
  .half2 {
    width: 100%;
  }
  .text_area {
    max-width: 600px;
    width: 90%;
    margin: 0 auto;
  }
  .text_area > *,
  .main_area .text_area > div > * {
    margin-bottom: 15px;
  }
  .p-link {
    margin-top: -65px;
    padding-top: 65px;
  }
}

@media screen and (max-width:479px) {
  .sec {
    padding: 40px 0;
  }
  h2 {
    font-size: 2rem;
  }
  h2 img {
    height: 45px;
  }
  h3 {
    font-size: 1.6rem;
  }
  h4 {
    font-size: 1.5rem;
  }
  p {
    font-size: 1.3rem;
  }
  .text_area p:not(.title) {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}




/* main_area
----------------------------------------------- */
.yoshi_new .main_area {
  padding: 150px 0;
  color: #fff;
  height: 2500px;
  height: 130vw;
  background-image: url(../images/new/main_bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
}
/*.yoshi_new .main_area::before {
  content: '';
  position: absolute;
  background-image: url(../images/new/main_bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 2500px;
  top: 0;
  left: 0;
}*/
.yoshi_new .main_area .main_text {
  margin-top: 250px;
  margin-top: 13vw;
}
.yoshi_new .main_area h1 {
  margin-bottom: 80px;
  margin-bottom: 4vw;
}
.yoshi_new .main_area h1 img {
  width: 170px;
  width: 8.8vw;
}
.yoshi_new .main_area .main_p {
  font-size: 2.5rem;
}
.yoshi_new .main_area h3,
.yoshi_new .main_area p {
  filter: drop-shadow(1px 1px 1px #000);
}


@media screen and (max-width:1024px) {
  .yoshi_new .main_area {
    padding: 80px 0;
  }
  .yoshi_new .main_area .main_p {
    font-size: 1.8rem;
  }
}

@media screen and (max-width:768px) {
  .yoshi_new .main_area {
    padding: 50px 0;
  }
  .yoshi_new .main_area .main_p {
    font-size: 1.5rem;
  }
}

@media screen and (max-width:479px) {
  .yoshi_new .main_area {
    height: auto;
    background-image: unset;
    padding: 0;
  }
  .yoshi_new .main_area .main_text {
    margin-top: 0;
    height: 2500px;
    height: 130vw;
    background-image: url(../images/new/main_bg.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    padding-top: 22vw;
  }
  .yoshi_new .main_area h1 {
    margin: 0;
  }
  .yoshi_new .main_area h1 img {
    width: 50px;
  }
  .yoshi_new .main_area .main_p {
    font-size: 1.4rem;
  }
  .yoshi_new .main_area .text_area {
    padding-top: 20px;
  }
  .yoshi_new .main_area .text_area p {
    width: 100%;
  }
}


/* ayumi_area
----------------------------------------------- */
.yoshi_new .ayumi_area {
  padding: 150px 0;
  color: #fff;
  height: 1900px;
  height: 99vw;
  background-image: url(../images/new/ayumi_bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
}
.yoshi_new .ayumi_area .ayumi_contents {
  margin-top: 200px;
  margin-top: 10.5vw;
}
.yoshi_new .ayumi_area .ayumi_img {
  width: 801px;
  width: 41.7vw;
}





@media screen and (max-width:1024px) {

}

@media screen and (max-width:768px) {
  .yoshi_new .ayumi_area {
    padding: 0 0 100px;
  }
  .yoshi_new .ayumi_area .text_area {
    max-width: unset;
    width: 100%;
  }
}

@media screen and (max-width:479px) {
  .yoshi_new .ayumi_area {
    padding: 0;
    height: 130vw;
  }
  .yoshi_new .ayumi_area .ayumi_img {
    width: 80%;
  }
}




/* commitment_area
----------------------------------------------- */
.philosophy_area {
  position: relative;
  text-align: center;
}
.philosophy_area .text_area {
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.philosophy_area .title {
  color: #e83828;
  background-color: #fff;
  font-family: hot-gfkaishokk, sans-serif;
  font-style: normal;
  font-weight: 800;
}
.philosophy_area h2 {
  color: #fff;
}
.philosophy_p {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 45px;
  font-size: 2.3vw;
  font-family: hot-gfkaishokk, sans-serif;
  font-style: normal;
  font-weight: 800;
  margin: 0 auto;
  line-height: 2.3;
}

@media screen and (max-width:1024px) {
  .philosophy_area .title span img {
    height: 22px;
  }
  .philosophy_p {
    width: 250px;
  }
}

@media screen and (max-width:768px) {
  .commitment_contents > .text_area {
    margin-bottom: 100px;
  }
  .philosophy_area .title span img {
    height: 18px;
  }
  .philosophy_p {
    width: 180px;
  }
  .philosophy_area .text_area {
    background-color: #e83528;
    padding: 50px 15px 100px;
    width: 90%;
    position: relative;
    transform: unset;
    top: unset;
    left: unset;
    margin-bottom: 100px;
    border-radius: 100px;
  }
  .philosophy_area .text_area p {
    position: relative;
    z-index: 1;
    /*text-shadow: 1px 1px 2px #000;*/
  }
  .soup_img {
    position: absolute;
    width: 350px;
  }
  .soup_img.miso {
    top: -100px;
    left: -90px;
  }
  .soup_img.shoyu {
    top: -120px;
    right: -110px;
  }
  .soup_img.karamiso {
    bottom: -120px;
    left: -80px;
  }
  .soup_img.shio {
    bottom: -80px;
    right: -120px;
  }
}

@media screen and (max-width:479px) {
  .philosophy_area .text_area {
    padding: 60px 0 60px;
    margin-bottom: 80px;
  }
  .philosophy_area .text_area .title {
    margin-bottom: 10px;
  }
  .soup_img {
    width: 250px;
  }
  .soup_img.miso {
    top: -60px;
    left: -60px;
  }
  .soup_img.shoyu {
    top: -90px;
    right: -70px;
  }
  .soup_img.karamiso {
    bottom: -80px;
    left: -70px;
  }
  .soup_img.shio {
    bottom: -60px;
    right: -70px;
  }
}


/* achievements_area
----------------------------------------------- */
.achievements_area {

}
.achievements_area .youtube_area {
  margin-top: 150px;
}
.achievements_area .youtube_area .wrap {
  max-width: 356px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
}

.achievements_area .youtube_area .wrap iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width:1024px) {
  .achievements_area .youtube_area {
    margin-top: 100px;
  }
}

@media screen and (max-width:768px) {
  .achievements_area .youtube_area {
    margin-top: 50px;
  }
}

@media screen and (max-width:479px) {
  .achievements_area .youtube_area {
    margin-top: 30px;
  }
}






/* photo_area
----------------------------------------------- */
.photo_area {
  padding: 50px 0 400px;
  background-image: url(../images/new/photo.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 1050px;
  height: 54.8vw;
}

@media screen and (max-width:1024px) {
  .photo_area {
    padding: 50px 0 150px;
  }
}

@media screen and (max-width:768px) {
  .photo_area {
    padding: 50px 0 80px;
  }
}

@media screen and (max-width:479px) {
  .photo_area {
    padding: 0 0 50px;
  }
}





/* order_area
----------------------------------------------- */
.order_area .order_wrap {
  margin-top: 50px;
}
.order_area .order_wrap > img {
  padding: 0 50px;
}
.order_area .order_wrap a img {
  padding-right: 50px;
}

.order_area .order_wrap a img.shake_bnr {
  padding-right: 0;
}
.order_area .order_wrap a:hover img.shake_bnr {
  opacity: 1;
  animation: shake 1.5s linear infinite;
}

@keyframes shake {
  0% { transform: translateY(0); }
  25% { transform: translateY(-8px); }
  50% { transform: translateY(8px); }
  75% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

@media screen and (max-width:1024px) {

}

@media screen and (max-width:768px) {
  .order_area .order_wrap > img {
    padding: 0;
    width: 70%;
    margin: 0 auto 50px;
  }
  .order_area .order_wrap a img {
    padding-right: 0;
  }
}

@media screen and (max-width:479px) {
  .order_area .order_wrap a img.shake_bnr {
    opacity: 1;
    animation: shake_sp 6s ease-out infinite;
  }
  .order_area .order_wrap a:hover img.shake_bnr {
    animation: unset;
  }
  @keyframes shake_sp {
    0% { transform: translateY(0); }
    15% { transform: translateY(-15px); }
    30% { transform: translateY(0); }
    30% { transform: translateY(0); }
    100% { transform: translateY(0); }
  }
}





/* store_area
----------------------------------------------- */
.store_area .map_area {
  margin: 50px 0;
}
.store_area .map_area iframe {
  width: 100%;
  height: 480px;
}
.store_area .store_address {
  text-align: left;
}
.store_area .store_address img {
  margin-bottom: 10px;
}
.store_area .store_address .name {
  font-size: 1.8rem;
  color: #e60012;
}
.store_area .store_address .name span {
  font-size: 2.5rem;
}
.store_area .store_address .tel span {
  background: #e60012;
  outline: 1px solid #000;
  outline-offset: -2px;
  margin-right: 10px;
  padding: 2px 5px;
  vertical-align: text-bottom;
}
.store_area .store_address .tel a {
  color: #fff;
  font-size: 2.4rem;
}
/*.store_area .store_address .yoyaku_btn {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  width: 200px;
  margin: 10px 0;
  padding: 5px 0;
  color: #e60012;
  text-align: center;
  background-color: #fff;
  border-radius: 100px;
  transition: 0.3s ease;
}
.store_area .store_address .yoyaku_btn:hover {
  color: #fff;
  background-color: #e60012;
  transition: 0.3s ease;
}*/
.store_area .yoyaku_btn {
  display: block;
  margin-top: 50px;
}


@media screen and (max-width:1024px) {
  .store_area .store_address img {
    width: 200px;
  }
  .store_area .store_address .name {
    font-size: 1.6rem;
  }
  .store_area .store_address .name span {
    font-size: 2.2rem;
  }
  .store_area .store_address .tel a {
    font-size: 2rem;
  }
}

@media screen and (max-width:768px) {
  .store_area .map_area iframe {
    height: 350px;
  }
  .store_area .store_address {
    margin-top: 30px;
    text-align: center;
  }
  /*.store_area .store_address .yoyaku_btn {
    margin: 10px auto;
  }*/
}

@media screen and (max-width:479px) {
  .store_area .map_area {
    margin: 30px 0;
  }
  .store_area .map_area iframe {
    height: 250px;
  }
  .store_area .store_address img {
    width: 180px;
  }
  .store_area .store_address .name {
    font-size: 1.5rem;
  }
  .store_area .store_address .name span {
    font-size: 2rem;
  }
  .store_area .store_address .tel a {
    font-size: 1.8rem;
  }
  .store_area .store_address p {
    width: 100%;
  }
  /*.store_area .store_address .yoyaku_btn {
    font-size: 1.6rem;
    width: 230px;
    margin: 15px auto;
    padding: 10px 0;
  }*/
  .store_area .yoyaku_btn {
    width: 75%;
    margin: 20px auto 0;
  }
}




/* request_area・contact_area
----------------------------------------------- */
.form_area form.m_form {
  width: 100%;
  background: unset;
  border: none;
  border-radius: 0;
  box-shadow: unset;
  line-height: unset;
}
.form_area form.m_form dl {
  width: 80%;
  margin: 0 auto;
  border-bottom: none
}
.form_area form.m_form dl dt {
  color: #fff;
  width: 100%;
  float: unset;
  padding: 10px 0;
  text-align: center;
}
.form_area form.m_form dl dt i {
  display: none;
}
.form_area form.m_form dl dd {
  width: 100%;
  float: unset;
  padding: 0 0 10px;
}
.form_area form.m_form input[type="text"],
.form_area form.m_form input[type="tel"],
.form_area form.m_form input[type="email"] {
  background: #fff;
  border: none;
  border-radius: 0;
  width: calc(100% - 4%);
  height: 30px;
}
.form_area form.m_form textarea {
  background: #fff;
  border: none;
  border-radius: 0;
  width: calc(100% - 4%);
  height: auto;
}
.form_area form.m_form p#form_submit_1,
.form_area form.m_form p#form_submit_2 {
  padding: 0;
  margin: 80px auto 0;
}
.form_area form.m_form input[type="button"] {
  margin-left: 0;
  max-width: 380px;
  width: 85%;
  font-size: 2rem;
  color: #fff;
  background: #009944;
  border-color: #009944;
  border-radius: 100px;
  padding: 10px;
  transition: 0.3s ease;
}
.form_area form.m_form input[type="button"]:hover {
  background: #ed6c00;
  border: 1px solid #ed6c00;
  transition: 0.3s ease;
}
.contact_area .form_area form.m_form input[type="text"],
.contact_area .form_area form.m_form input[type="tel"],
.contact_area .form_area form.m_form input[type="email"],
.contact_area .form_area form.m_form textarea {
  color: #fff;
  background: #000;
  border: 1px solid #fff;
}


/* thanks */
.thanks .main_wrapper {
  padding-top: 150px;
}
.thanks .thanks_area {
  text-align: center;
  padding: 200px 0;
}
.thanks .thanks_area .text_area {

}
.thanks .thanks_area .back_btn {
  max-width: 380px;
  width: 85%;
  margin: 80px auto 0;
}
.thanks .thanks_area .back_btn a {
  display: block;
  font-size: 2rem;
  color: #fff;
  background: #009944;
  border-color: #009944;
  border-radius: 100px;
  padding: 10px;
  transition: 0.3s ease;
}



@media screen and (max-width:1350px) {
  .thanks .main_wrapper {
    padding-top: 100px;
  }
}


@media screen and (max-width:1024px) {
  .form_area form.m_form dl dt {
    font-size: 1.4rem;
  }
  .form_area form.m_form input[type="text"],
  .form_area form.m_form input[type="tel"],
  .form_area form.m_form input[type="email"],
  .contact_area .form_area form.m_form textarea  {
    font-size: 1.5rem;
  }
  .form_area form.m_form input[type="button"] {
    font-size: 1.8rem;
  }
  .thanks .main_wrapper {
    padding-top: 80px;
  }
  .thanks .thanks_area .back_btn a {
    font-size: 1.8rem;
  }
}

@media screen and (max-width:768px) {
  .form_area form.m_form dl {
    width: 100%;
  }
  .form_area form.m_form dl dt {
    padding: 10px 0 5px;
  }
  .form_area form.m_form input[type="button"] {
    font-size: 1.6rem;
  }
  .form_area form.m_form p#form_submit_1,
  .form_area form.m_form p#form_submit_2 {
    margin: 50px auto 0;
  }

  .thanks .main_wrapper {
    padding-top: 65px;
  }
  .thanks .thanks_area {
    padding: 120px 0;
  }
  .thanks .thanks_area .text_area h2 {
    line-height: 1.2;
  }
  .thanks .thanks_area .back_btn a {
    font-size: 1.6rem;
  }
}

@media screen and (max-width:479px) {
  .form_area form.m_form {
    margin: 50px auto 0;
  }
  .form_area form.m_form input[type="text"],
  .form_area form.m_form input[type="tel"],
  .form_area form.m_form input[type="email"] {
    height: auto;
  }
  .form_area form.m_form p#form_submit_1,
  .form_area form.m_form p#form_submit_2 {
    margin: 30px auto 0;
  }

  .thanks .thanks_area {
    padding: 80px 0;
  }
}







/* ===================================================================
	/
	/	footer
	/
	=================================================================== */
footer {
  padding: 50px 0 150px;
}



@media screen and (max-width:1024px) {
  footer {
    padding: 50px 0 50px;
  }
  footer .menu_inner {
    -webkit-box-pack: center;
  	-ms-flex-pack: center;
  	justify-content: center;
  }
  footer .logo {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }
}

@media screen and (max-width:850px) {
  .nav_menu nav ul.ddmenu {
    gap: 15px 0;
    width: 90%;
    margin: 0 auto;
    -webkit-box-pack: center;
  	-ms-flex-pack: center;
  	justify-content: center;
  }
  .nav_menu nav ul.ddmenu li {
    width: calc( 100% / 4 );
    border-left: 1px solid #fff;
  }
  .nav_menu nav ul.ddmenu li:nth-of-type(4n) {
    border-right: 1px solid #fff;
  }
  .nav_menu nav ul.ddmenu li:last-of-type {
    border-right: 1px solid #fff !important;
  }
  .nav_menu nav ul.ddmenu li a {
    border: none !important;
  }
}

@media screen and (max-width:768px) {
  footer .menu_inner .logo img {
    width: 200px;
  }
  .nav_menu nav ul.ddmenu {
    gap: 10px 0;
  }
  .nav_menu nav ul.ddmenu li {
    width: calc( 100% / 3 );
  }
  .nav_menu nav ul.ddmenu li:nth-of-type(4n) {
    border-right: none;
  }
  .nav_menu nav ul.ddmenu li:nth-of-type(3n) {
    border-right: 1px solid #fff;
  }
  .nav_menu nav ul.ddmenu li a {
    font-size: 1.2rem;
    padding: 2px 15px;
  }
}

@media screen and (max-width:500px) {
  .nav_menu nav ul.ddmenu {
    width: 100%;
  }
  .nav_menu nav ul.ddmenu li {
    width: auto;
    border: none !important;
  }
  .nav_menu nav ul.ddmenu li:last-of-type {
    border-right: none !important;
  }
  .nav_menu nav ul.ddmenu li a {
    font-size: 1.1rem;
  }
}

@media screen and (max-width:479px) {
  footer {
    padding: 30px 0 50px;
  }
  footer .menu_inner .logo img {
    width: 180px;
  }
}
