@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap');

:root {
  --main-color: #b03317;
  --dark: #333;
  --gray: #999;
  --light-gray: #e2e0e0;
  --light: #fff;

}

html {
  scroll-behavior: smooth;
}

/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul,li {
  list-style: none;
}
a {
  text-decoration: none;
}
a:active {
  opacity: 0.6;
}
a:visited {
  opacity: 1;
}
p {
  color: #333;
}
img {
  width: 100%;
  object-fit: cover;
}
/* 全体 */
body{
    width: 100%;
    line-height: 1.6;
  /* background: var(--main-color); */
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
        "Hiragino Sans", YuGothic, "Yu Gothic", "Noto Sans", Meiryo, sans-serif;
      }
main {
  overflow: hidden;
}
b, strong, .bold{
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
  "Hiragino Sans", YuGothic, "Yu Gothic", "Noto Sans", Meiryo, sans-serif;
}
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
 	clip: rect(0,0,0,0);
	border: 0;
}

/* SP */
@media screen and (min-width:300px) {
    .sp-only {
        display: block;
      }
      .pc-only {
        display: none;
      }
      .tab-only {
      display: block;
    }
    h2 img {
        width: auto;
        height: 85px;
        margin-bottom: 40px;
    }
    .h2-menu img {
      height: 40px;
    }
    h3 img {
        width: auto;
        height: 24px;
        margin-bottom: 40px;
    }
    h2,h3 {
      text-align: center;
    }
    section {
      padding: 0 16px 60px;
      margin: 0 auto;
    }
    
    .container {
        padding: 16px 0;
        margin: 0 auto;
        box-sizing: border-box;
    }
    .box_tomato {
        width: calc(100% - 16px);
        background: var(--light);
        border: 8px solid var(--main-color);
        border-radius: 60px;
        box-sizing: border-box;
    }
    
/* header */
.Header {
  background: var(--main-color);
  height: 60px;
  display: flex;
  justify-content: flex-end;
  padding: 8px 16px 0;
}

.Logo img {
  width: 80%;
  max-width: 360px;
  min-width: 100px;
  height: auto;
}

.Nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  width: 50%;
  height: 100vh;
  background-color: var(--dark);
  color: var(--light);
  transform: translateX(100%);
  transition: all 0.3s;
}

.Nav-List {
  width: 100%;
  padding: 100px 16px 0;
}

.Nav-List-Item {
  border-bottom: dotted 4px var(--cheese);
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 1.25rem;
  font-weight: bold;
}

.Button {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
  height: 60px;
  padding-left: 10px;
  padding-right: 20px;
}

.Button-LineTop,
.Button-LineMedium,
.Button-LineBottom {
  width: 40px;
  height: 4px;
  border-radius: 4px;
  background-color: var(--light);
  transition: all 0.3s;
}

.Button-LineTop {
  position: absolute;
  top: 16px;
}

.Button-LineBottom {
  position: absolute;
  bottom: 16px;
}

/* バツ印への変化 */
.ButtonIsOpen .Button-LineTop {
  transform: rotate(45deg);
  top: 50%;
  transform-origin: center;
}

.ButtonIsOpen .Button-LineMedium {
  opacity: 0;
}

.ButtonIsOpen .Button-LineBottom {
  transform: rotate(-45deg);
  bottom: 50%;
  transform-origin: center;
}

/* ナビゲーションが開いた状態 */
.NavIsOpen {
  transform: translateX(0);
}

/* 余白部分をグレーで透過 */
.Overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.3s;
}

.OverlayIsOpen {
  visibility: visible;
  opacity: 1;
}
.sns_link {
  margin-top: 60px;
  text-align: center;
}
.sns_link p {
  margin-bottom: 16px;
}
.sns_link img {
  width: auto;
  height: 25px;
}
.sns_link ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sns_link li img {
  width: 60%;
  height: auto;

}

/* ページトップに戻る */
.pagemenu {
  width: 90px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pagemenu.show {
  opacity: 0.5;
  pointer-events: auto;
}
.pagemenu.active {
  opacity: 1;
}

/* main-visual */
.main-visual {
  padding: 8px;
  background-color: var(--main-color);
}
.container.-mv-container {
  padding: 0;
}
.mv_parent {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mv_right_block {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.disabled-link {
  pointer-events: none;
}
.mv_right_block-second {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.main-visual figure img {
  border-radius: 20px;
}


/* Onlineshop Banner */
.bnr-onlineshop {
  text-align: center;
  padding: 50px 8px 20px;
  background-color: var(--main-color);
}
.bnr-onlineshop img {
  max-width: 1280px;
  border-radius: 20px;
}
.goods-close{
  font-size: 1.2rem;
  font-weight: bold;
  display:block;
  text-align:center;
  color: #FFF;
  padding-bottom: 24px;
  background: var(--main-color);
}

/* menu */
.menu {
  width: 100%;
  padding: 0 16px 50px;
  margin: 0 auto;
  background: var(--main-color) url(../images/bg_raimon.png) repeat-x bottom left;
  background-size: 50px;
}
.ttl-ramenticket {
  text-align: center;
  padding: 0 16px 50px;
  margin: 0 auto;
  background-color: #b03317;
}
.ttl-ramenticket img {
  max-width: 600px;
}
h3.ramen-area {
  font: 700 2.5rem / 1 "M PLUS 1", sans-serif;
  color: #FFF;
  padding: 8px 16px;
  margin: 0 auto 25px;
  border: solid 3px #FFF;
  display: block;
}
h3.ramen-area span {
  font-size: 2rem;
  color: #d9aba1;
}
.ttl-ramen {
  max-width: 400px;
  margin: 0 auto 16px;
}
.area-leed {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  color: #FFF;
  margin-bottom: 15px;
}
.content_menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 5vw 3vw;
  background: url(../images/bg_menu_image.png) no-repeat center bottom / 90%;
}
.content_menu.plus-bottom {
  padding-bottom: 50vw;
}
.content_menu-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  gap: 2vw;
}
.content_menu-card figure.ramen-image {
  position: relative;
}
.content_menu-card figure img {
  border-radius: 16px;
}
.content_menu-card figure.ramen-image .ramen-logo {
  width: 150px;
  height: 150px;
  position: absolute;
  bottom: -5px;
  left:-10px;
  object-fit: cover;
}
.shop-price {
  font-family: "M PLUS 1", sans-serif;
  font-weight: bold;
  color: var(--dark);
  font-size: 0.7rem;
  margin-top: 1em;
  padding-top: 1em;
  border-top: 2px dotted var(--buns);
	display: flex;
	gap: 5px 0;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
}
.topping {
  font-size: 0.7rem;
  background-color: #fff9db;
  padding: 8px;
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 3px 0;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.topping h5 {
  color: #c8161d;
  text-align: center;
  width: 100%;
}
.menu-ttl {
	width: calc(100% - 7.5em);
  line-height: 1.4;
	padding: 3px 0;
}
.menu-price {
  text-align: right;
  width: 7.5em;
  white-space: nowrap;
}
.menu-price-noleed {
  text-align: right;
  width: 7.5em;
  white-space: nowrap;
}
.menu-sub {
  font-size: 75%;
}
.tokyo {
  padding: 3px 8px;
	background-color: yellow;
}
.kumamoto {
	color: #FFF;
  padding: 3px 8px;
	background-color: red;
}
.menu-price:before {
  content: "……";
  margin-right: 0.5em;
}
.topping-select {
  width: 100%;
  padding: 8px;
  margin-top: 16px;
  border: solid 1px #c8161d;
  border-radius: 5px;
}
.topping-select h6 {
  text-align: center;
  color: #c8161d;
  width: 12em;
  margin: -20px auto 5px;
  display: block;
  background-color: #fff9db;
}
.listbox-explanation {
  font-weight: bold;
  color: #FFF;
  text-align: justify;
  background: url(../images/frame-chinese-base.png) no-repeat left top;
  background-size: cover;
  padding: 6vw 6vw 0;
  margin-bottom: 50px;
  position: relative;
}
.listbox-explanation img {
  position: absolute;
  bottom: -6vw;
  left: 0;
}
.box-explanation, .frame-bottom {
  display: none;
}


/* 10/11追加修正 */
.content_menu_info {
  padding: 0.6rem;
  flex-grow: 1;
  background-color: #FFF;
  position: relative;
}
.yellowgrade {
  background-image: linear-gradient(40deg, #ffd12b, #ffffff 25% 85%, #ffe187);
}
.pref {
  font-size: 0.8rem;
  background: var(--buns);
  color: var(--light);
  padding: 0.2rem 0.4rem;
  border-radius: 30px;
}
.just-opened {
  font-size: 0.8rem;
  background: var(--lettuce);
  color: var(--light);
  padding: 0.2rem 0.4rem;
  margin-left: 0.5em;
  border-radius: 30px;
}
.shop-txt {
  font-family: "M PLUS 1", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: justify;
  margin-top: 0.5em;
  word-break: break-all;
}
.shop-ttl {
  color: #333;
  font-weight: bold;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.2;
  margin-top: 0.8rem;
  height: 2.5rem;
}
.annotation {
  padding: 1em .4em;
}
.annotation p {
  font-size: 10px;
}
.icon-youtube {
  width: 120px;
  position: absolute;
  top: -50px;
  right: -30px;
}

/* 画像タイトル（h2）*/
.goods-info h2,
.about h2,
.program h2,
.access h2,
.contact h2 {
  max-width: 500px;
  margin: 0 auto 32px;
}
.goods-info h2 img,
.about h2 img,
.program h2 img,
.access h2 img,
.contact h2 img {
  width: 100%;
  height: auto;
  margin-bottom: 0;
}

/* グッズ情報 */
.goods-info {
  padding: 32px 16px;
  background: url(../images/bg_goodsinfo.png) no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.good-headimg {
  display: flex;
  gap: 0.5vw;
  max-width: 960px;
  margin: 0 auto 16px;
}
.onlineshop-link {
  max-width: 700px;
  margin: 0 auto 60px;
}
.goods-outline {
  padding: 16px;
  background: url(../images/bg_dogyan_yellow.png) repeat-y;
  background-size: 100%;
}
.goods_menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 8px;
}
.goods_menu-card {
  display: flex;
  flex-direction: column;
  width: calc((100% - 8px) / 2);
  background-color: #FFF;
}
.goods_menu-card figure {
  width: 100%;
  position: relative;
}
.goods_menu-card figcaption {
  font: 800 1.5rem/1 Helvetica, Arial, "Noto Sans JP", sans-serif;
  color: #333;
  text-align: center;
  line-height: 60px;
  width: 60px;
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: #ffd12b;
  border-radius: 40px;
}
.goods_menu-card figure img {
  height: 100%;
}
.goods_menu_info {
  width: 100%;
  background-color: #FFF;
  padding: 8px;
}
.goods-name {
  color: #333;
  font-weight: bold;
  text-align: left;
  font-size: 1rem;
  line-height: 1.2;
}
.goods-txt {
  font: 600 0.7rem/1.2 "M PLUS 1", sans-serif;
  letter-spacing: 1px;
  margin-top: 0.5em;
  word-break: break-all;
}
.goods-price {
  font: 700 0.7rem/1.2 "M PLUS 1", sans-serif;
  color: var(--dark);
  margin-top: 0.5em;
  padding-top: 0.5em;
  border-top: 2px dotted var(--main-color);
  text-align: right;
}
.box-precaution {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  padding: 12px;
  margin: 50px auto 0;
  background-color: #FFF;
}
.box-precaution h3 {
  font: 700 1.25rem/1.2 "M PLUS 1", sans-serif;
  color: #FFF;
  padding: 10px 15px;
  margin-bottom: 12px;
  background-color: #333;
  border-radius: 36px;
}
.box-precaution h4 {
  font: 700 1rem/1.2 "M PLUS 1", sans-serif;
  text-align: left;
  margin: 12px 0 8px;
}
.box-precaution li {
  line-height: 1.3;
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 8px;
}
.box-precaution li::before {
  font-size: 0.75rem;
  content: "〇";
  margin-right: 6px;
  vertical-align: middle;
}
.aori1 {
    font-weight: bold;
    text-align: center;
    color: yellow;
    padding: 5px 10px;
    display: block;
    position: absolute;
    top: -3vw;
    right: -3vw;
    rotate: 10deg;
    background-color: #00BCD4;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .7);
}
.aori2 {
    font-weight: bold;
    text-align: center;
    line-height: 1;
    color: yellow;
    width: 10em;
    padding: 10px;
    display: block;
    position: absolute;
    bottom: -16px;
    right: -2vw;
    rotate: 10deg;
    background-color: #00BCD4;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .7);
}
.capsultoys img {
  margin-top: 50px;
}

/* about */
.about {
    background-color: var(--main-color);
    background-image: url("../images/bg_raimon.png"), url("../images/bg_raimon.png");
    background-repeat: repeat-x, repeat-x;
    background-position: left 10px, left bottom;
    background-size: 50px, 50px;
    padding: 60px 0 80px;
  }
  .container.-about-container {
    padding: 0 16px;
  }
  .event-leed {
    font: 700 1.5rem / 1.2 "M PLUS 1", sans-serif;
    color: #FFF;
    margin: 0 0 30px;
  }
  .content_about-event {
    width: 100%;
    height: auto;
    margin: 0 auto 50px;
    letter-spacing: 1.2px;
  }
  .content_about {
    width: 80%;
    height: auto;
    margin: 0 auto 20px;
    /* word-break: break-all; */
    letter-spacing: 1.2px;
    /* line-height: 2; */
  }
  .content_about:last-child {
    margin-bottom: 0;
  }
  .content_about p {
    color: var(--light);
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
  }
  .main-ttl-one {
    background: var(--dark);
    font-size: 1.8rem;
    text-align: center;
    padding: 8px;
    border-radius: 10px;
    background-image: linear-gradient(90deg, rgba(248, 15, 15, 1), rgba(229, 96, 11, 1));
  }
  .main-ttl-two {
    background: var(--dark);
    font-size: 1.8rem;
    text-align: center;
    padding: 8px;
    border-radius: 10px;
    background-image: linear-gradient(90deg, rgba(89, 248, 57, 1), rgba(195, 185, 23, 1));
  }
  .sub-ttl {
    font-size: 1rem;
    text-align: center;
    margin: 0 auto;
  }
  .sub-ttl span {
    font-size: 1.6rem;
    font-weight: bold;
    color: #2fc243;
    background: var(--dark);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  }
  .sub-ttl.-yellow {
    color: var(--cheese);
    font-size: 1.2rem;
  }
  .discretion {
    font-size: 0.8rem;
    text-align: center;
    margin: 0 auto;
  }
  .discretion span {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2fc243;
    background: var(--dark);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    margin: 0 .1em;
  }

/* program outline */
  .program {
    padding: 40px 0;
    background: url(https://www.kkt.jp/dogyang/img/bg.png) no-repeat;
    background-size: cover;
  }
  .container.-program-container {
    padding: 0 16px;
  }
  .program-main {
    max-width: 960px;
    margin: 0 auto 32px;
  }
  .box-program-outline {
    max-width: 960px;
    padding: 24px;
    margin: 0 auto;
    background-color: #FFF;
  }
  .program-logo {
    max-width: 700px;
    margin: 0 auto 24px;
  }
  .box-program-outline picture img {
    width: 80%;
    margin: 0 10%;
  }
  .bnr-dogyang {
  	max-width: 400px;
  	margin: 30px auto 0;
  }

/* access */
.access {
    background-color: var(--main-color);
    background-image: url("../images/bg_raimon.png"), url("../images/bg_raimon.png");
    background-repeat: repeat-x, repeat-x;
    background-position: left 10px, left bottom;
    background-size: 50px, 50px;
    padding: 60px 0 80px;
}
.container.-access-container {
    padding: 0 16px;
}
.gmap_iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
}
.access_block {
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 4vw;
}
.access_wrapper {
  display: flex;
  padding: 16px;
  flex-direction: column;
  gap: 4vw;
  background-color: #FFF;
}
.access_left_block {
  flex: 1;
}
.access_right_block {
  flex: 1;
}
.access dt {
  vertical-align: middle;
  font-size: 1.0rem;
  font-weight: bold;
}
.access dt img {
  vertical-align: middle;
  padding-right: 1em;
  width: 8%;
  min-width: 40px;
  padding: 10px;
}
.access dd {
  margin-top: 10px;
  font-size: 0.7rem;
  padding-left: 1em;
  display: flex;
}
.access .traffic::before {
  content: '〇';
  padding-right: 0.5em;
}

/* sponcer  */
.bpx-sponcered {
  background: var(--dark);
  color: var(--light);
}
.container.-sponcer-container {
  margin: 0 auto;
}
.spo-logo_block {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 40px;
}
.box-sponcered p {
  color: var(--light);
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.spo-logo_block figure {
  display: inline-block;
}
.spo-logo_block-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1vw;
  margin-bottom: 20px;
  padding: 0 1%;
}
.spo-logo_block p {
  font-weight: bold;
  color: #FFF;
}
.spo-logo_block figure {
  width: 40%;
  max-width: 280px;
}
.spo-logo_block-row figure {
  /* flex: 1; */
  width: calc((100% - 2vw) / 3);
}
.spo-logo_block:last-child {
  margin-bottom: 0;
}

/* contact */
.contact {
  background: var(--dark);
}
.contact_block {
  width: 40%;
  margin: 0 auto;
}
.contact_mail {
  background: var(--light);
  border: 4px solid var(--main-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.contact_add {
  margin-bottom: 40px;
  text-align: center;
}
.contact_add p {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.contact_mail p {
  font-size: 1rem;
  color: var(--main-color);
  padding-left: 40px;
}
.contact_mail figure {
  width: 40px;
}
.contact figure {
  margin-bottom: 100px;
}
/* footer */
footer {
  background: var(--dark);
  text-align: center;
  padding: 10px;
}
small {
  color: var(--light);
  font-size: 1.2rem;
}
}

@media screen and (min-width:391px) {
	.icon-youtube {
  		width: 140px;
	}
}
@media screen and (min-width:480px) {
  .contact_block {
    width: 80%;
    margin: 0 auto;
  }
}

/* ramen original style */
.date-event {
  text-align: center;
  width: 100%;
  padding: 24px 16px;
  background-color: var(--main-color);
}
.date-event img {
  max-width: 760px;
  margin: 0 auto;
}
.date-event figcaption {
  font: 600 0.75rem / 1.5 "M Plus 1", sans-serif;
  color: #FFF;
  margin-top: 10px;
}

/* ラーメンの買い方 11/5追加 */
.block_howtobuy {
  font-weight: 600;
  color: #FFF;
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-radius: 10px;
  background-color: #292724;
}
.block_howtobuy h3 {
  font: 700 1.25rem / 1.2 "M Plus 1", sans-serif;
  color: #333;
  padding: 8px;
  margin-bottom: 15px;
  background-color: #FFF;
  border-radius: 40px;
}
.block_howtobuy h4 {
  font: 700 1.125rem / 1.2 "M Plus 1", sans-serif;
  margin-bottom:10px;
}
.block_howtobuy h5 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  margin:32px 0;
}
.block_howtobuy h6 {
  font: 700 1rem / 1.2 "M Plus 1", sans-serif;
  margin-bottom:5px;
}
.block_howtobuy p {
  font-size: 0.95rem;
  color: #FFF;
  margin-bottom: 15px;
}
.block_howtobuy ul {
  font-size: 0.925rem;
  margin-bottom: 30px;
  padding-left: 8px;
}
.block_howtobuy li {
  font-size: 0.9125rem;
  text-indent: -1em;
  padding-left: 1em;
}
.block_howtobuy li::before {
  font-size: 0.75rem;
  content: "●";
  margin-right: 8px;
  vertical-align: middle;
}