@charset "UTF-8";
* {
  outline: unset;
  box-sizing: border-box;
  font-feature-settings: "palt";
}

html {
  color: #000;
  background: #FFF;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  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%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea,
select {
  *font-size: 100%;
  border: none;
  outline: none;
}

legend {
  color: #000;
}

#yui3-css-stamp.cssreset {
  display: none;
}

body {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
}

table, tbody, thead {
  width: 100%;
}

button {
  border: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

* {
  color: #000;
}

* {
  font-family: "Noto Sans JP", sans-serif;
}

.l_container_lg {
  width: calc(100% - 80px);
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .l_container_lg {
    width: calc(100% - 40px);
  }
}
.l_container_md {
  width: calc(100% - 80px);
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .l_container_md {
    width: calc(100% - 40px);
  }
}

.l_header {
  width: 100%;
  height: 80px;
  background-color: #000;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media (max-width: 560px) {
  .l_header {
    height: 70px;
  }
}
.l_header_inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l_header_logo {
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 560px) {
  .l_header_logo {
    width: 90px;
  }
}

@media (max-width: 768px) {
  .l_header-gnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
  }
}
.l_header-gnav.is-active {
  opacity: 1;
  pointer-events: visible;
}
.l_header-gnav_list {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .l_header-gnav_list {
    flex-direction: column;
  }
}
.l_header-gnav_list-link {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  transition: 0.2s;
}
.l_header-gnav_list-link:hover {
  color: #c7000d;
}
.l_header-gnav_logo {
  display: none;
}
@media (max-width: 768px) {
  .l_header-gnav_logo {
    display: block;
    width: 200px;
    margin: 0 auto;
  }
}

.l_header-hambtn {
  display: none;
  width: 40px;
  height: 25px;
  position: relative;
  z-index: 100000;
}
@media (max-width: 768px) {
  .l_header-hambtn {
    display: block;
  }
}
.l_header-hambtn.close span:nth-child(1) {
  transform: rotate(45deg);
  top: 11.5px;
}
.l_header-hambtn.close span:nth-child(2) {
  opacity: 0;
}
.l_header-hambtn.close span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 11.5px;
}
.l_header-hambtn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: 0.2s;
}
.l_header-hambtn span:nth-child(1) {
  top: 0;
}
.l_header-hambtn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l_header-hambtn span:nth-child(3) {
  bottom: 0;
}

.l_footer {
  background-color: #000;
  padding-top: 40px;
}
.l_footer_logo {
  display: block;
  width: 200px;
  margin: 0 auto;
}
.l_footer_list {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.l_footer_list-link {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 560px) {
  .l_footer_list-link {
    font-size: 14px;
  }
}
.l_footer_sublist {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}
.l_footer_sublist-link {
  font-size: 14px;
  color: #919191;
}
@media (max-width: 560px) {
  .l_footer_sublist-link {
    font-size: 12px;
  }
}
.l_footer_copyright {
  font-size: 12px;
  color: #919191;
  text-align: center;
  padding: 24px 0;
  letter-spacing: 0.085em;
}
@media (max-width: 560px) {
  .l_footer_copyright {
    font-size: 10px;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

* {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #000;
  font-size: 16px;
  position: relative;
}

.view-hidden {
  width: 100vw;
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
}

.m_section {
  padding: 80px 0;
}
@media (max-width: 560px) {
  .m_section {
    padding: 64px 0;
  }
}

.m_section-title {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
@media (max-width: 560px) {
  .m_section-title {
    margin-bottom: 64px;
  }
}
.m_section-title .__inner {
  font-size: 36px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  letter-spacing: 0.085em;
  position: relative;
  z-index: 1;
  text-shadow: 1.5px 1.5px 0 rgba(211, 211, 211, 0.8);
}
@media (max-width: 768px) {
  .m_section-title .__inner {
    font-size: 32px;
  }
}
@media (max-width: 560px) {
  .m_section-title .__inner {
    font-size: 28px;
  }
}
.m_section-title .__inner::before {
  content: "";
  width: 150px;
  aspect-ratio: 1/1;
  background: url(../img/common/circle.png) center/cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -90px;
  z-index: -1;
}
@media (max-width: 768px) {
  .m_section-title .__inner::before {
    width: 140px;
    left: -80px;
  }
}
@media (max-width: 560px) {
  .m_section-title .__inner::before {
    width: 130px;
    left: -70px;
  }
}

.m_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 100%;
  max-width: 240px;
  color: #fff;
  position: relative;
  font-weight: 500;
  line-height: 1;
  border-width: 2px;
  border-style: solid;
}
.m_btn::before {
  content: "";
  width: 100%;
  height: 100%;
  border-width: 2px;
  background-color: #fff;
  border-style: solid;
  position: absolute;
  top: -2px;
  left: -2px;
  transform: translate(8px, 8px);
  z-index: -1;
  transition: 0.3s;
}
.m_btn.__red {
  background-color: #c7000d;
  border-color: #c7000d;
}
.m_btn.__red::before {
  border-color: #c7000d;
  color: #c7000d;
}
.m_btn.__black {
  background-color: #000;
  border-color: #000;
}
.m_btn.__black::before {
  border-color: #000;
  color: #000;
}
.m_btn:hover::before {
  transform: translate(0);
}

.m_shop-list {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .m_shop-list {
    flex-direction: column;
    align-items: center;
  }
}
.m_shop-list_item {
  width: 33.33%;
  border: 2px solid #000;
}
@media (max-width: 960px) {
  .m_shop-list_item {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .m_shop-list_item {
    width: 100%;
    max-width: 400px;
  }
}
.m_shop-list_img {
  aspect-ratio: 16/9;
}
.m_shop-list_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.m_shop-list_content {
  padding: 12px 16px 16px;
}
.m_shop-list_area {
  display: inline-block;
  padding: 1px 4px 2px;
  background-color: #000;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
}
.m_shop-list_name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 8px;
}
.m_shop-list_open {
  font-size: 16px;
  margin-top: 4px;
  font-weight: 500;
}
.m_shop-list_address {
  font-size: 14px;
  font-weight: 300;
  margin-top: 12px;
}
.m_shop-list_time {
  font-size: 12px;
  color: #949494;
  margin-top: 10px;
}
.m_shop-list_btn {
  margin: 16px auto;
}

.m_page-bottom_mv {
  width: 100%;
  height: 300px;
  position: relative;
}
@media (max-width: 960px) {
  .m_page-bottom_mv {
    height: 250px;
  }
}
@media (max-width: 768px) {
  .m_page-bottom_mv {
    height: 230px;
  }
}
@media (max-width: 560px) {
  .m_page-bottom_mv {
    height: 200px;
  }
}
.m_page-bottom_mv::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}
.m_page-bottom_mv_img {
  width: 100%;
  height: 100%;
}
.m_page-bottom_mv_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.m_page-bottom_mv_title {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.m_page-bottom_mv_title .__inner {
  text-align: center;
  color: #fff;
  font-size: 56px;
  font-family: "Zen Old Mincho", serif;
  position: relative;
}
@media (max-width: 960px) {
  .m_page-bottom_mv_title .__inner {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .m_page-bottom_mv_title .__inner {
    font-size: 32px;
  }
}
@media (max-width: 560px) {
  .m_page-bottom_mv_title .__inner {
    font-size: 22px;
  }
}
.m_page-bottom_mv_title .__inner::before {
  content: "";
  width: 150px;
  aspect-ratio: 1/1;
  background: url(../img/common/circle.png) center/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: -1;
}
@media (max-width: 960px) {
  .m_page-bottom_mv_title .__inner::before {
    width: 140px;
  }
}
@media (max-width: 768px) {
  .m_page-bottom_mv_title .__inner::before {
    width: 120px;
  }
}
@media (max-width: 560px) {
  .m_page-bottom_mv_title .__inner::before {
    width: 100px;
    transform: translate(-50%, -85%);
  }
}

.m_page-bottom_main {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .m_page-bottom_main {
    padding: 80px 0;
  }
}

.m_line-btn {
  border-radius: 10px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  padding: 12px 16px;
  background-color: #06c755;
  display: inline-flex;
  align-items: flex-end;
  margin-top: 20px;
  transition: 0.3s;
  width: 100%;
  justify-content: center;
  max-width: 360px;
}
@media (max-width: 560px) {
  .m_line-btn {
    padding: 12px 8px 12px 16px;
  }
}
.m_line-btn:hover {
  box-shadow: unset;
}
.m_line-btn_text {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.085em;
}
.m_line-btn_text .__color {
  color: #ffdc00;
  font-size: 24px;
  font-weight: inherit;
  letter-spacing: 0.05em;
}
.m_line-btn_touch {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
}
@media (max-width: 560px) {
  .m_line-btn_touch {
    width: 44px;
  }
}

.news_list-item {
  border-top: 1px solid #c4c4c4;
}
.news_list-item:last-child {
  border-bottom: 1px solid #c4c4c4;
}
.news_list-link {
  padding: 16px 0;
  display: flex;
  gap: 12px;
}
@media (max-width: 560px) {
  .news_list-link {
    flex-wrap: wrap;
  }
}
.news_list-date {
  font-size: 16px;
  font-weight: 500;
  flex-shrink: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (max-width: 560px) {
  .news_list-date {
    font-size: 14px;
  }
}
.news_list-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
}
.news_list-category {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 2px 4px 3px;
  background-color: #e51c24;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (max-width: 560px) {
  .news_list-category {
    font-size: 10px;
  }
}
@media (max-width: 560px) {
  .news_list-category.__pc {
    display: none;
  }
}
.news_list-category.__sp {
  display: none;
}
@media (max-width: 560px) {
  .news_list-category.__sp {
    display: inline-flex;
  }
}
.news_list-title {
  font-size: 18px;
  letter-spacing: 0.085em;
  font-weight: 500;
}
@media (max-width: 560px) {
  .news_list-title {
    width: 100%;
    font-size: 16px;
  }
}

.commit {
  background: url(../img/common/bg_white.jpg) center/cover;
}
.commit_inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.commit_text {
  font-size: 20px;
  font-family: "Zen Old Mincho", serif;
  writing-mode: vertical-rl;
  letter-spacing: 0.3em;
  line-height: 2;
  position: relative;
}
@media (max-width: 768px) {
  .commit_text {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .commit_text {
    font-size: 14px;
    line-height: 1.75;
  }
}
.commit_text::before {
  content: "麺";
  font-size: 370px;
  color: #c7000d;
  opacity: 0.1;
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: "Zen Old Mincho", serif;
  line-height: 1;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .commit_text::before {
    font-size: 250px;
    transform: translate(-40px, 40px);
  }
}

.menu_content {
  height: 300px;
  background: url(../img/top/bg_menu.jpg) center/cover;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.menu_content::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.menu_message {
  font-size: 18px;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.085em;
  text-align: center;
}
@media (max-width: 560px) {
  .menu_message {
    font-size: 16px;
    letter-spacing: 0.05em;
  }
}
.menu_caution {
  font-size: 14px;
  color: #fff;
  margin-top: 24px;
  text-align: center;
}
@media (max-width: 560px) {
  .menu_caution {
    font-size: 12px;
  }
}
.menu_btn {
  margin-top: 40px;
}

.voice {
  background-color: #ececec;
}
.voice_text {
  font-size: 20px;
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .voice_text {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
@media (max-width: 560px) {
  .voice_text {
    font-size: 14px;
  }
}

.single-shop_main {
  background: url(../img/common/bg_white.jpg);
  background-position: center top;
  background-size: 2000px;
}
@media (max-width: 960px) {
  .single-shop_main {
    background-size: 1000px;
  }
}
.single-shop_main_bg {
  background-color: #fff;
}
.single-shop_main_shop-name {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .single-shop_main_shop-name {
    font-size: 28px;
  }
}
@media (max-width: 560px) {
  .single-shop_main_shop-name {
    font-size: 20px;
  }
}
.single-shop_main_open-day {
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .single-shop_main_open-day {
    font-size: 20px;
  }
}
@media (max-width: 560px) {
  .single-shop_main_open-day {
    font-size: 18px;
  }
}
.single-shop_main_shop-container {
  margin-top: 36px;
}
.single-shop_main_shop-block:nth-child(n+2) {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .single-shop_main_shop-block:nth-child(n+2) {
    margin-top: 28px;
  }
}
@media (max-width: 560px) {
  .single-shop_main_shop-block:nth-child(n+2) {
    margin-top: 20px;
  }
}
.single-shop_main_sns-btn {
  display: block;
  width: 120px;
}
.single-shop_main_shop-title {
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .single-shop_main_shop-title {
    font-size: 20px;
  }
}
@media (max-width: 560px) {
  .single-shop_main_shop-title {
    font-size: 18px;
  }
}
.single-shop_main_shop-text {
  font-size: 18px;
  margin-top: 4px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .single-shop_main_shop-text {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .single-shop_main_shop-text {
    font-size: 14px;
  }
}
.single-shop_main_shop-text .__caution {
  font-size: 14px;
}
@media (max-width: 560px) {
  .single-shop_main_shop-text .__caution {
    font-size: 12px;
  }
}
.single-shop_main_map {
  aspect-ratio: 16/9;
  margin: 8px 0;
  max-width: 500px;
}
.single-shop_main_map iframe {
  width: 100%;
  height: 100%;
}
.single-shop_main_menu-block:nth-child(n+2) {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .single-shop_main_menu-block:nth-child(n+2) {
    margin-top: 48px;
  }
}
@media (max-width: 560px) {
  .single-shop_main_menu-block:nth-child(n+2) {
    margin-top: 20px;
  }
}
.single-shop_main_menu-category {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .single-shop_main_menu-category {
    font-size: 24px;
  }
}
.single-shop_main_menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}
@media (max-width: 768px) {
  .single-shop_main_menu-list {
    gap: 24px;
  }
}
.single-shop_main_menu-list-item {
  width: calc(33.33% - 24px);
}
@media (max-width: 768px) {
  .single-shop_main_menu-list-item {
    width: calc(33.33% - 16px);
  }
}
@media (max-width: 560px) {
  .single-shop_main_menu-list-item {
    width: calc(50% - 12px);
  }
}
.single-shop_main_menu-list-item.__topping {
  width: unset;
  display: flex;
  align-items: center;
  gap: 10px;
}
.single-shop_main_menu-list-img {
  aspect-ratio: 1/1;
}
.single-shop_main_menu-list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-shop_main_menu-list-name {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .single-shop_main_menu-list-name {
    font-size: 18px;
  }
}
.single-shop_main_menu-list-price {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  gap: 2px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (max-width: 768px) {
  .single-shop_main_menu-list-price {
    font-size: 18px;
  }
}
.single-shop_main_menu-list-price .__yen {
  font-size: 12px;
  transform: translateY(3px);
}
@media (max-width: 768px) {
  .single-shop_main_menu-list-price .__yen {
    font-size: 10px;
  }
}
.single-shop_main_photo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 768px) {
  .single-shop_main_photo-list {
    gap: 24px;
  }
}
.single-shop_main_photo-list-item {
  width: calc(50% - 20px);
  aspect-ratio: 430/322;
}
@media (max-width: 768px) {
  .single-shop_main_photo-list-item {
    width: calc(50% - 12px);
  }
}
@media (max-width: 768px) {
  .single-shop_main_photo-list-item {
    width: 100%;
    max-width: 360px;
  }
}
.single-shop_main_photo-list-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-shop_main_recruit-text {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 560px) {
  .single-shop_main_recruit-text {
    font-size: 14px;
  }
}
.single-shop_main .tab-area {
  display: flex;
  cursor: pointer; /* カーソルポインターに */
}
.single-shop_main .tab {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #000;
  font-weight: 500;
}
@media (max-width: 560px) {
  .single-shop_main .tab {
    font-size: 14px;
    height: 45px;
  }
}
.single-shop_main .tab:nth-child(n+2) {
  border-left: none;
}
.single-shop_main .tab.active {
  background-color: #c7000d;
  color: #fff;
  border-color: #c7000d;
}
.single-shop_main .panel {
  display: none;
  padding: 24px 0 40px;
  width: calc(100% - 80px);
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 560px) {
  .single-shop_main .panel {
    width: calc(100% - 40px);
  }
}
.single-shop_main .panel.active {
  display: block;
}

.page-privacy_content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 36px 0 10px;
}
.page-privacy_content p {
  font-size: 16px;
  margin: 8px 0;
}
.page-privacy_content ul {
  margin: 8px 0;
}
.page-privacy_content li {
  font-size: 16px;
  padding-left: 1em;
  position: relative;
}
.page-privacy_content li::before {
  content: "・";
  font-size: inherit;
  position: absolute;
  top: 0;
  left: 0;
}

.mw-wp-form__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.mw-wp-form dt,
.mw-wp-form dd {
  line-height: 1.75;
}

.mw-wp-form dt:not(:first-of-type),
.mw-wp-form dd:not(:first-of-type) {
  margin-top: 30px;
}

.mw-wp-form dt {
  width: 320px;
  padding-top: 15px;
}

.mw-wp-form dd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 660px;
}

.mw-wp-form__label {
  margin-right: 15px;
  padding: 8px 22px;
  border-radius: 2px;
  color: #fff;
  font-size: 14px;
  vertical-align: 1px;
}

.mw-wp-form__label--req {
  background: #BE1D1D;
}

.mw-wp-form__label--opt {
  background: #878D8E;
}

.mw-wp-form dd input[type=text],
.mw-wp-form dd input[type=email],
.mw-wp-form dd textarea {
  box-sizing: content-box;
  width: calc(100% - 40px);
  padding: 15px 20px;
  background: #F5F5F5;
}

.mw-wp-form dd input[type=text]:nth-child(n+2) {
  margin-top: 15px;
}

.mw-wp-form dd input[type=tel] {
  box-sizing: content-box;
  width: 66px;
  padding: 15px 20px;
  background: #F5F5F5;
}

.mw-wp-form dd textarea {
  height: 17.5em;
}

.mw-wp-form dd input[type=text]::-moz-placeholder, .mw-wp-form dd input[type=email]::-moz-placeholder, .mw-wp-form dd textarea::-moz-placeholder {
  color: #797979;
}

.mw-wp-form dd input[type=text]::placeholder,
.mw-wp-form dd input[type=email]::placeholder,
.mw-wp-form dd textarea::placeholder {
  color: #797979;
}

/* Microsoft Edge */
.mw-wp-form dd input[type=text]::-ms-input-placeholder,
.mw-wp-form dd input[type=email]::-ms-input-placeholder,
.mw-wp-form dd textarea::-ms-input-placeholder {
  color: #797979;
}

/* Internet Explorer */
.mw-wp-form dd input[type=text]:-ms-input-placeholder,
.mw-wp-form dd input[type=email]:-ms-input-placeholder,
.mw-wp-form dd textarea:-ms-input-placeholder {
  color: #797979;
}

.mw-wp-form__automatic {
  margin: 0 0 0 20px;
  font-size: 15px;
}

.mw-wp-form__buttons {
  display: flex;
  justify-content: center;
}

.mw-wp-form__buttons button[type=submit] {
  display: block;
  position: relative;
  width: 360px;
  height: 60px;
  margin: 0 30px;
  border: 1px solid #1B201A;
  color: #1B201A;
  transition: opacity 0.6s;
}

.mw-wp-form__buttons button[type=submit]:hover {
  opacity: 0.6;
}

.mw-wp-form__buttons button[type=submit]:before {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 1px solid #1B201A;
  border-right: 1px solid #1B201A;
  content: "";
}

.mw_wp_form_confirm .mw-wp-form dd {
  padding-top: 15px;
}

@media screen and (max-width: 430px) {
  .mw-wp-form__list {
    margin-bottom: 60px;
  }
  .mw-wp-form dt {
    width: 100%;
  }
  .mw-wp-form dd {
    width: 100%;
  }
  .mw-wp-form dd:first-of-type,
  .mw-wp-form dd:not(:first-of-type) {
    margin-top: 15px;
  }
  .mw-wp-form dd input[type=text]:nth-child(n+2) {
    margin-top: 10px;
  }
  .mw-wp-form dd textarea {
    height: 14em;
  }
  .mw-wp-form__automatic {
    margin: 5px 0 0;
    font-size: 14px;
  }
  .mw-wp-form__buttons {
    flex-direction: column;
    align-items: center;
  }
  .mw-wp-form__buttons button[type=submit] {
    width: 300px;
    margin: 0;
  }
  .mw-wp-form__buttons button[type=submit]:not(:first-child) {
    margin-top: 30px;
  }
  .mw_wp_form_confirm .mw-wp-form dd {
    padding-top: 0;
  }
  .mw-wp-form__label {
    padding: 6px 16px;
  }
}
.page-thanks_text {
  font-size: 20px;
  text-align: center;
}
.page-thanks_text:nth-child(n+2) {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .page-thanks_text:nth-child(n+2) {
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .page-thanks_text {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .page-thanks_text {
    font-size: 14px;
    text-align: center;
  }
}
.page-thanks_btn {
  margin: 60px auto 0;
}
@media (max-width: 560px) {
  .page-thanks_btn {
    margin: 40px auto 0;
  }
}

.page-single_content {
  max-width: 800px;
}
.page-single_title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  padding: 12px 10px;
  border-top: 4px solid #c7000d;
  border-bottom: 4px solid #c7000d;
}
@media (max-width: 768px) {
  .page-single_title {
    font-size: 28px;
  }
}
@media (max-width: 560px) {
  .page-single_title {
    font-size: 24px;
  }
}
.page-single_thumbnail {
  width: 100%;
}
.page-single_content {
  padding: 40px 0;
}
.page-single_content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 24px 0 8px;
}
.page-single_content p {
  font-size: 16px;
  font-weight: 500;
  margin: 8px 0;
  line-height: 1.75;
  letter-spacing: 0.085em;
}
.page-single_content a {
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
}

.u_break_tb {
  display: none;
}
@media (max-width: 960px) {
  .u_break_tb {
    display: block;
  }
}
.u_break_sp {
  display: none;
}
@media (max-width: 768px) {
  .u_break_sp {
    display: block;
  }
}
.u_break_ssp {
  display: none;
}
@media (max-width: 560px) {
  .u_break_ssp {
    display: block;
  }
}

@media (max-width: 960px) {
  .u_break-none_tb {
    display: none;
  }
}
@media (max-width: 768px) {
  .u_break-none_sp {
    display: none;
  }
}
@media (max-width: 560px) {
  .u_break-none_ssp {
    display: none;
  }
}

.u_target {
  padding-top: 80px;
  margin-top: -80px;
}
@media (max-width: 560px) {
  .u_target {
    padding-top: 70px;
    margin-top: -70px;
  }
}/*# sourceMappingURL=style.css.map */