@charset "UTF-8";
/*----------------------- reset css ----------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  overflow-y: scroll;
  font-size: 62.5%;
}

blockquote,
q {
  quotes: none;
}

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

input,
textarea {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

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

caption,
th {
  text-align: left;
}

a {
  text-decoration: none;
}

a:focus {
  outline: none;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*\*/ /*/
height: auto;
overflow: hidden;
/**/
}

.both {
  clear: both;
}

.inline_block {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

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

table {
  width: 100%;
}

a,
a:hover {
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}

a img:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
}

body {
  font-family: Meiryo, "メイリオ", Hiragino Kaku Gothic ProN, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 14px;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.5;
}

img {
  border-style: none;
}

/*----------- 記事内のcss ---------*/
.alignleft,
img.alignleft {
  display: inline;
  float: left;
  margin-right: 20px;
  margin-top: 4px;
}

.aligncenter,
img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignright,
img.alignright {
  display: inline;
  float: right;
  margin-left: 20px;
  margin-top: 4px;
}

.content-text img {
  max-width: 100%;
  margin-bottom: 15px;
  height: auto;
}

.content-text p {
  padding: 0 15px;
  font-size: 15px;
  line-height: 1.6;
  word-break: break-all;
  letter-spacing: 0.1px;
  margin-bottom: 20px;
  color: rgb(100, 100, 100);
}

/*----------- 記事内のcss ---------*/
.alignleft,
img.alignleft {
  display: inline;
  float: left;
  margin-right: 20px;
  margin-top: 4px;
}

.aligncenter,
img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignright,
img.alignright {
  display: inline;
  float: right;
  margin-left: 20px;
  margin-top: 4px;
}

.content-text img {
  max-width: 100%;
  margin-bottom: 15px;
  height: auto;
}

.content-text p {
  padding: 0 15px;
  font-size: 15px;
  line-height: 1.6;
  word-break: break-all;
  letter-spacing: 0.1px;
  margin-bottom: 20px;
  color: rgb(100, 100, 100);
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-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;
}

/*--- タイポグラフィ ---*/
h1 {
  font-size: 3.2rem;
  line-height: 48px;
  letter-spacing: 10%;
}

h2 {
  font-size: 2.4rem;
  line-height: 32px;
  letter-spacing: 10%;
}

p {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 180%;
  font-feature-settings: "palt";
}

input[type=radio]:checked + label {
  background: #ff0000;
}

input[type=checkbox]:checked + label {
  background: #ff0000;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: #fff;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  outline: none;
  background-color: #fff;
}

select,
input,
textarea {
  max-width: 100%;
  padding: 7px;
  box-sizing: border-box;
  border: none;
  border: solid 1px #d3d3d3;
  border-radius: 3px;
  font-family: sans-serif;
  font-size: 100%;
  color: #000;
}

/*----------------------- reset css ----------------------*/
.pc {
  display: block;
}

.sp {
  display: none;
}

.tab {
  display: none;
}

.pc-br {
  display: block;
}

.sp-br {
  display: none;
}

.flex {
  display: flex;
}

.row-reverse {
  flex-direction: row-reverse;
}

@media (max-width: 850px) {
  .tab {
    display: block;
  }
}
@media (max-width: 640px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .sp-br {
    display: block;
  }
  .pc-br {
    display: none;
  }
}
body {
  font-family: "Noto Sans JP", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  font-feature-settings: "palt";
  background-color: #fff;
  color: #2b2b2b;
  line-height: 1.5;
}

main {
  overflow: hidden;
}

img {
  max-width: 100%;
}

.page-header {
  height: 546px;
  position: relative;
  margin-bottom: 108px;
}
.page-header::after {
  content: "";
  position: absolute;
  right: 0;
  background-image: url("../img/main-img-bg.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-attachment: fixed;
  width: 60%;
  height: 100%;
  border-radius: 0 0 0 40px;
}
@media (max-width: 640px) {
  .page-header::after {
    background-attachment: scroll;
  }
}
@media (max-width: 850px) {
  .page-header {
    height: 400px;
  }
  .page-header .transparent-logo {
    width: 30vw;
  }
}
.page-header .page-title {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  z-index: 1;
  align-items: center;
  padding-left: 10vw;
}
.page-header .page-title span {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 8px;
  font-weight: 800;
  font-size: 4.8rem;
  display: block;
  text-transform: uppercase;
}
.page-header .page-title h2 {
  font-size: 1.8rem;
  line-height: normal;
  letter-spacing: 4.8px;
  color: #1f2b61;
}
.page-header .breadcrumbs {
  position: absolute;
  bottom: 24px;
  left: 32px;
  z-index: 1;
}
@media (max-width: 640px) {
  .page-header .breadcrumbs {
    display: none;
  }
}
.page-header .breadcrumbs a,
.page-header .breadcrumbs span {
  color: #999;
  font-size: 1rem;
}
.page-header .breadcrumbs .delimiter {
  display: inline-block;
  margin: 0 6px;
}
.page-header .transparent-logo {
  position: absolute;
  position: absolute;
  right: 10vw;
  bottom: 0;
}

.footer-top-contact-box {
  text-align: center;
  margin: 104px 24px;
}
.footer-top-contact-box > a {
  display: inline-block;
  margin-bottom: 32px;
  background: rgb(89, 161, 209);
  background: linear-gradient(119deg, rgb(89, 161, 209) 19%, rgb(117, 98, 158) 65%, rgb(163, 79, 127) 92%);
  background-position: 1% 50%;
  background-size: 200% auto;
  color: #fff;
  padding: 24px 120px;
  border-radius: 88px;
  transition: all 0.3s ease-out;
}
.footer-top-contact-box > a span {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 4.8px;
  font-size: 4rem;
}
@media (max-width: 640px) {
  .footer-top-contact-box > a span {
    font-size: 2.4rem;
  }
}
.footer-top-contact-box > a small {
  display: block;
  letter-spacing: 0.3em;
}
.footer-top-contact-box > a:hover {
  background-position: 99% 50%;
}
@media (max-width: 640px) {
  .footer-top-contact-box > a {
    margin-bottom: 16px;
    padding: 16px 32px;
    width: 100%;
    box-sizing: border-box;
  }
  .footer-top-contact-box > a span {
    font-size: 2.4rem;
  }
  .footer-top-contact-box > a small {
    font-size: 1.1rem;
  }
}

.tel-box {
  text-align: center;
}
.tel-box a {
  font-size: 3.8rem;
  color: #1f2b61;
  display: block;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  line-height: normal;
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .tel-box a {
    font-size: 2.8rem;
  }
}
.tel-box a img {
  width: 20px;
  color: #002f66;
}
.tel-box a i {
  font-size: 80%;
  margin-right: 6px;
}
.tel-box span {
  color: #6d6d6d;
  font-size: 1.4rem;
}

ul.link-icons {
  display: flex;
}
ul.link-icons li {
  margin: 0 10px;
}
ul.link-icons li i {
  font-size: 20px;
  color: #000000;
  transition: color 0.8s ease;
}
ul.link-icons li:hover .fa-facebook {
  color: #1877f2;
}
ul.link-icons li:hover .fa-youtube {
  color: #da1725;
}
ul.link-icons li:hover .fa-instagram {
  color: #cf2e92;
}
ul.link-icons li:hover .fa-line {
  color: #00b900;
}
ul.link-icons li:hover .fa-tiktok {
  color: #919191;
}
ul.link-icons li:hover .fa-twitter {
  color: #1da1f2;
}
ul.link-icons li:hover .fa-x-twitter {
  color: #000000;
}

footer {
  box-sizing: border-box;
}
footer .body {
  padding: 32px 24px;
  justify-content: center;
}
@media (max-width: 640px) {
  footer .body {
    display: block;
  }
}
footer .body .left {
  margin-right: 140px;
}
footer .body .left img {
  display: block;
  margin-bottom: 32px;
}
@media (max-width: 850px) {
  footer .body .left {
    margin-right: 62px;
  }
}
@media (max-width: 640px) {
  footer .body .left {
    margin: 0 auto 40px 0;
  }
}
footer .body .right {
  display: flex;
}
@media (max-width: 640px) {
  footer .body .right {
    display: none;
  }
}
@media (max-width: 640px) {
  footer .body .right > div {
    margin-bottom: 24px;
  }
}
footer .body .right > div:first-child {
  margin-right: 56px;
}
@media (max-width: 640px) {
  footer .body .right > div:first-child {
    margin-right: 0;
  }
}
@media (max-width: 640px) {
  footer .body .right > div {
    margin-bottom: 32px;
  }
  footer .body .right > div:last-child {
    margin-bottom: 0;
  }
}
footer .body .right > div > span {
  color: #002f66;
  background-image: url("../img/dots-orange.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-position: 0px center;
  padding-left: 20px;
  display: block;
  margin-bottom: 16px;
  font-size: 1.3rem;
}
@media (max-width: 640px) {
  footer .body .right > div > span {
    margin-bottom: 8px;
  }
}
footer .body .right > div ul {
  padding-left: 20px;
  line-height: 2;
}
footer .body .right > div ul li a {
  font-size: 1.3rem;
  color: #6d6d6d;
}
footer .footer-botom {
  display: flex;
  padding: 24px 24px;
  box-sizing: border-box;
  justify-content: space-between;
  font-size: 1.3rem;
}
footer .footer-botom a {
  color: #000;
}

.contant-404 {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contant-404 h3 {
  font-size: 16vw;
  margin-bottom: 24px;
}
.contant-404 span {
  display: block;
  margin-bottom: 24px;
}
.contant-404 a {
  color: #fff;
  margin: 32px 0;
  background-color: #000;
  display: inline-block;
  padding: 8px 16px;
  text-decoration: none;
}

.golden_background {
  background: -moz-linear-gradient(10.34% 117.64% 45deg, rgb(255, 255, 255) 0%, rgb(241, 236, 85) 15.71%, rgb(241, 237, 90) 19.56%, rgb(242, 238, 105) 24.26%, rgb(244, 241, 130) 29.4%, rgb(247, 244, 164) 34.84%, rgb(250, 249, 208) 40.49%, rgb(248, 234, 155) 45.78%, rgb(246, 222, 112) 50.79%, rgb(245, 217, 95) 53.32%, rgb(247, 225, 122) 60.63%, rgb(251, 244, 192) 76.3%, rgb(252, 250, 215) 81.19%, rgb(250, 241, 183) 86.9%, rgb(248, 228, 140) 93.58%, rgb(230, 219, 154) 100%);
  background: -webkit-linear-gradient(45deg, rgb(255, 255, 255) 0%, rgb(241, 236, 85) 15.71%, rgb(241, 237, 90) 19.56%, rgb(242, 238, 105) 24.26%, rgb(244, 241, 130) 29.4%, rgb(247, 244, 164) 34.84%, rgb(250, 249, 208) 40.49%, rgb(248, 234, 155) 45.78%, rgb(246, 222, 112) 50.79%, rgb(245, 217, 95) 53.32%, rgb(247, 225, 122) 60.63%, rgb(251, 244, 192) 76.3%, rgb(252, 250, 215) 81.19%, rgb(250, 241, 183) 86.9%, rgb(248, 228, 140) 93.58%, rgb(230, 219, 154) 100%);
  background: -webkit-gradient(linear, 10.34% 117.64%, 89.66% -17.64%, color-stop(0, rgb(255, 255, 255)), color-stop(0.1571, rgb(241, 236, 85)), color-stop(0.1956, rgb(241, 237, 90)), color-stop(0.2426, rgb(242, 238, 105)), color-stop(0.294, rgb(244, 241, 130)), color-stop(0.3484, rgb(247, 244, 164)), color-stop(0.4049, rgb(250, 249, 208)), color-stop(0.4578, rgb(248, 234, 155)), color-stop(0.5079, rgb(246, 222, 112)), color-stop(0.5332, rgb(245, 217, 95)), color-stop(0.6063, rgb(247, 225, 122)), color-stop(0.763, rgb(251, 244, 192)), color-stop(0.8119, rgb(252, 250, 215)), color-stop(0.869, rgb(250, 241, 183)), color-stop(0.9358, rgb(248, 228, 140)), color-stop(1, rgb(230, 219, 154)));
  background: -o-linear-gradient(45deg, rgb(255, 255, 255) 0%, rgb(241, 236, 85) 15.71%, rgb(241, 237, 90) 19.56%, rgb(242, 238, 105) 24.26%, rgb(244, 241, 130) 29.4%, rgb(247, 244, 164) 34.84%, rgb(250, 249, 208) 40.49%, rgb(248, 234, 155) 45.78%, rgb(246, 222, 112) 50.79%, rgb(245, 217, 95) 53.32%, rgb(247, 225, 122) 60.63%, rgb(251, 244, 192) 76.3%, rgb(252, 250, 215) 81.19%, rgb(250, 241, 183) 86.9%, rgb(248, 228, 140) 93.58%, rgb(230, 219, 154) 100%);
  background: -ms-linear-gradient(45deg, rgb(255, 255, 255) 0%, rgb(241, 236, 85) 15.71%, rgb(241, 237, 90) 19.56%, rgb(242, 238, 105) 24.26%, rgb(244, 241, 130) 29.4%, rgb(247, 244, 164) 34.84%, rgb(250, 249, 208) 40.49%, rgb(248, 234, 155) 45.78%, rgb(246, 222, 112) 50.79%, rgb(245, 217, 95) 53.32%, rgb(247, 225, 122) 60.63%, rgb(251, 244, 192) 76.3%, rgb(252, 250, 215) 81.19%, rgb(250, 241, 183) 86.9%, rgb(248, 228, 140) 93.58%, rgb(230, 219, 154) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#E6DB9A' ,GradientType=0)";
  background: linear-gradient(45deg, rgb(255, 255, 255) 0%, rgb(241, 236, 85) 15.71%, rgb(241, 237, 90) 19.56%, rgb(242, 238, 105) 24.26%, rgb(244, 241, 130) 29.4%, rgb(247, 244, 164) 34.84%, rgb(250, 249, 208) 40.49%, rgb(248, 234, 155) 45.78%, rgb(246, 222, 112) 50.79%, rgb(245, 217, 95) 53.32%, rgb(247, 225, 122) 60.63%, rgb(251, 244, 192) 76.3%, rgb(252, 250, 215) 81.19%, rgb(250, 241, 183) 86.9%, rgb(248, 228, 140) 93.58%, rgb(230, 219, 154) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF',endColorstr='#E6DB9A' , GradientType=1);
}

.hakushu {
  font-family: "ah-hakushu-addressing-font", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.ramen .nav-menu {
  position: fixed;
  width: 100%;
  z-index: 100;
  display: flex;
}
.ramen .nav-menu a {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px 0;
  color: #000000;
  font-family: "ah-hakushu-addressing-font", sans-serif;
  line-height: 1.3;
  font-size: 20px;
  background-color: #ffffff;
  box-sizing: border-box;
  border: solid 2px #000;
}
.ramen .nav-menu a:hover {
  color: #ffffff;
  background-color: #000000;
  border: solid 2px #ffffff;
}
@media (max-width: 850px) {
  .ramen .nav-menu a {
    font-size: 18px;
  }
}
.ramen header {
  height: 94svh;
  height: calc(94svh - 82px);
  min-height: 550px;
  position: relative;
  overflow: hidden;
}
.ramen header img {
  display: block;
}
.ramen header .head-img {
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.ramen header .number-one {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translate(-50%, -42%);
}
.ramen header .title {
  height: 30%;
}
.ramen header .keisai {
  position: absolute;
  top: 40%;
}
.ramen header .ramen_photo {
  position: absolute;
  height: 400px;
  max-width: unset;
  bottom: -30px;
  z-index: 1;
  right: 20px;
}
.ramen header .head-inner {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  height: 100%;
}
.ramen header .head-inner::after {
  content: "";
  position: absolute;
  width: 200%;
  padding-bottom: 200%;
  border-radius: 50%;
  background-color: #ffffff;
  left: -50%;
  top: 100px;
}
.ramen header .ask {
  position: absolute;
  z-index: 3;
  width: 100%;
  bottom: 0;
  padding: 5px 0;
  background-color: #000000;
}
.ramen header .ask::after, .ramen header .ask::before {
  content: "";
  position: absolute;
  width: calc(50% - 240px);
  height: 46px;
  top: calc(50% - 23px);
  background-size: auto 100%;
}
@media (max-width: 850px) {
  .ramen header .ask::after, .ramen header .ask::before {
    width: calc(50% - 200px);
  }
}
.ramen header .ask::before {
  background-image: url(../img/ramen-left.png);
  background-position: right;
  left: 0;
}
.ramen header .ask::after {
  background-image: url(../img/ramen-right.png);
  background-position: left;
  right: 0;
}
.ramen header .ask p {
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 40px;
  width: max-content;
  margin: 0 auto;
}
@media (max-width: 850px) {
  .ramen header .ask p {
    font-size: 32px;
  }
}
.ramen .page-inner {
  max-width: 1000px;
  width: calc(100% - 30px);
  margin: 0 auto;
}
.ramen article section {
  padding: 50px 0;
}
.ramen .about-ramen {
  background-image: url(../img/ramen-bg.jpg);
  background-size: cover;
  background-position: top center;
}
.ramen .about-ramen h2 {
  font-size: 48px;
  line-height: 1em;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
}
.ramen .about-ramen h2 span {
  font-size: 0.7em;
}
@media (max-width: 850px) {
  .ramen .about-ramen h2 {
    font-size: 30px;
  }
}
.ramen .about-ramen .about-ramen-txt {
  width: calc(100% - 30px);
  margin: 0 auto;
}
.ramen .about-ramen p {
  font-size: 20px;
  margin-bottom: 10px;
}
.ramen .about-ramen p strong {
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 850px) {
  .ramen .about-ramen p {
    font-size: 16px;
  }
}
.ramen .keisai-ramen {
  background-color: #d3d3d4;
  background-image: url(../img/keisai-ramen_bg.png);
  background-position: center;
}
.ramen .keisai-ramen .keisai-flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 850px) {
  .ramen .keisai-ramen .keisai-flex {
    display: block;
  }
}
.ramen .keisai-ramen .keisai-flex > li {
  width: calc(33% - 20px);
  padding: 20px 10px;
  padding-bottom: 83px;
  background-color: #ffffff;
  border-radius: 20px;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 850px) {
  .ramen .keisai-ramen .keisai-flex > li {
    width: 100%;
    margin-bottom: 10px;
  }
}
.ramen .keisai-ramen .keisai-flex > li .plan-name {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 10px;
  position: relative;
}
.ramen .keisai-ramen .keisai-flex > li .plan-cost p {
  font-size: 26px;
  line-height: 1em;
  text-align: center;
}
.ramen .keisai-ramen .keisai-flex > li .plan-cost > span {
  display: block;
  font-size: 14px;
  text-align: right;
}
.ramen .keisai-ramen .keisai-flex > li ul {
  padding-left: 1em;
}
.ramen .keisai-ramen .keisai-flex > li ul li {
  font-family: 16px;
  margin-bottom: 5px;
  position: relative;
}
.ramen .keisai-ramen .keisai-flex > li ul li::before {
  content: "▶︎";
  position: absolute;
  left: -16px;
  font-size: 12px;
  top: 2px;
}
.ramen .keisai-ramen .keisai-flex > li ul li span.small {
  font-size: 12px;
}
.ramen .keisai-ramen .keisai-flex > li ul li.red {
  color: #ff0000;
  font-weight: bold;
}
.ramen .keisai-ramen .keisai-flex > li {
  /* 料金表のボタン装飾例 */
}
.ramen .keisai-ramen .keisai-flex > li .plan-btn {
  position: absolute;
  bottom: 20px;
  display: block;
  width: 95%;
  left: 2.5%;
  padding: 12px 10px;
  box-sizing: border-box;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s ease;
}
.ramen .keisai-ramen .keisai-flex > li .plan-btn:hover {
  transform: translateY(-2px);
}
.ramen .keisai-ramen .keisai-flex > li.service-plan {
  border: solid 3px #000000;
}
.ramen .keisai-ramen .keisai-flex > li.service-plan .plan-name {
  background-color: #000000;
  color: #ffffff;
}
.ramen .keisai-ramen .keisai-flex > li.service-plan .plan-btn {
  background-color: #222222;
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(34, 34, 34, 0.2);
}
.ramen .keisai-ramen .keisai-flex > li.service-plan .plan-btn:hover {
  background-color: #2a2a2a;
  box-shadow: 0 6px 12px rgba(34, 34, 34, 0.3);
}
.ramen .keisai-ramen .keisai-flex > li.mega-plan {
  border: solid 3px #930000;
}
.ramen .keisai-ramen .keisai-flex > li.mega-plan .plan-name {
  background-color: #e60012;
  color: #ffffff;
}
.ramen .keisai-ramen .keisai-flex > li.mega-plan .plan-btn {
  background-color: #e60012;
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(230, 0, 18, 0.2);
}
.ramen .keisai-ramen .keisai-flex > li.mega-plan .plan-btn:hover {
  background-color: #e61728;
  box-shadow: 0 6px 12px rgba(230, 0, 18, 0.3);
}
.ramen .keisai-ramen .keisai-flex > li.giga-plan {
  border: solid 3px #ed6c00;
}
.ramen .keisai-ramen .keisai-flex > li.giga-plan .plan-name {
  background-color: #fff100;
  color: #e60012;
}
.ramen .keisai-ramen .keisai-flex > li.giga-plan .plan-btn {
  background-color: #fff100;
  color: #e60012;
  box-shadow: 0 4px 6px rgba(230, 0, 18, 0.2);
}
.ramen .keisai-ramen .keisai-flex > li.giga-plan .plan-btn:hover {
  background-color: #fff200;
  box-shadow: 0 6px 12px rgba(230, 0, 18, 0.3);
}
.ramen {
  /* フォーム全体コンテナ */
}
.ramen .form-container {
  max-width: 940px;
  margin: 40px auto;
  padding: 30px 20px;
  background-color: #fbfbfb;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  box-sizing: border-box;
}
.ramen .form-container .form-main-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 8px;
  color: #333;
}
.ramen .form-container .form-sub-title {
  font-size: 20px;
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}
.ramen .form-container {
  /* 「どちらか必須」用のグレーまたはオレンジのバッジ */
}
.ramen .form-container .badge-any {
  background-color: #f59e0b; /* 警告色（オレンジ） */
  color: #fff;
}
.ramen .form-container {
  /* エラーメッセージのボックス */
}
.ramen .form-container .error-message-box {
  background-color: #fff2f0;
  border: 1px solid #ffccc7;
  color: #ff4d4f;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 0.9em;
  font-weight: bold;
  text-align: center;
}
.ramen .form-container {
  /* エラーが起きた入力欄を赤枠にするクラス */
}
.ramen .form-container .input-error {
  border-color: #ff4d4f !important;
  background-color: #fff2f0;
}
.ramen .form-container {
  /* 各入力項目のグループ */
}
.ramen .form-container .form-group {
  margin-bottom: 24px;
}
.ramen .form-container .form-group .form-label {
  display: block;
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 8px;
  color: #333;
}
.ramen .form-container .form-group {
  /* 必須・任意バッジ */
}
.ramen .form-container .form-group .badge {
  font-size: 0.75em;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.ramen .form-container .form-group .badge-required {
  background-color: #ff4d4f;
  color: #fff;
}
.ramen .form-container .form-group {
  /* テキスト・メールの入力欄共通 */
}
.ramen .form-container .form-group input[type=text],
.ramen .form-container .form-group input[type=email] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}
.ramen .form-container .form-group input[type=text]:focus,
.ramen .form-container .form-group input[type=email]:focus {
  border-color: #007bff;
  outline: none;
}
.ramen .form-container {
  /* ラジオボタン（プラン選択） */
}
.ramen .form-container .plan-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ramen .form-container .plan-card {
  display: block;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  background-color: #fff;
  transition: all 0.2s ease;
}
.ramen .form-container .plan-card:hover {
  border-color: #bbb;
}
.ramen .form-container .plan-option-label input[type=radio] {
  display: none; /* デフォルトのポッチを消す */
}
.ramen .form-container .plan-option-label input[type=radio]:checked + .plan-card {
  border-color: #007bff;
  background-color: #f0f7ff;
  position: relative;
}
.ramen .form-container .plan-option-label input[type=radio]:checked + .plan-card::after {
  content: "✓";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #007bff;
  font-weight: bold;
}
.ramen .form-container .plan_form .mwform-radio-field .mwform-radio-field-text {
  display: block;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  background-color: #fff;
  transition: all 0.2s ease;
}
.ramen .form-container .plan_form .mwform-radio-field .mwform-radio-field-text:hover {
  border-color: #bbb;
}
.ramen .form-container .plan_form .mwform-radio-field label input[type=radio] {
  display: none; /* デフォルトのポッチを消す */
}
.ramen .form-container .plan_form .mwform-radio-field label input[type=radio]:checked + .mwform-radio-field-text {
  border-color: #007bff;
  background-color: #f0f7ff;
  position: relative;
}
.ramen .form-container .plan_form .mwform-radio-field label input[type=radio]:checked + .mwform-radio-field-text::after {
  content: "✓";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #007bff;
  font-weight: bold;
}
.ramen .form-container {
  /* その他入力エリア */
}
.ramen .form-container .other-input-wrapper {
  margin-top: 15px;
  animation: fadeIn 0.3s ease;
}
.ramen .form-container .other-input-wrapper textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  resize: vertical;
}
.ramen .form-container {
  /* 同意チェックボックス */
}
.ramen .form-container .form-privacy {
  text-align: center;
  margin: 30px 0;
}
.ramen .form-container .privacy-label {
  cursor: pointer;
  font-size: 0.9em;
}
.ramen .form-container .privacy-label input {
  margin-right: 6px;
  transform: scale(1.1);
}
.ramen .form-container {
  /* 送信ボタン */
}
.ramen .form-container .form-submit {
  margin-top: 20px;
  text-align: center;
}
.ramen .form-container .form-submit .submit {
  width: 100%;
  max-width: 320px;
  padding: 16px;
  font-size: 1.1em;
  font-weight: bold;
  color: #fff;
  background-color: #ff4d4f; /* 目立つ赤オレンジ系にしています。お好みで緑や青に */
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 77, 79, 0.3);
  transition: all 0.2s ease;
}
.ramen .form-container .form-submit .submit:hover {
  background-color: #e03e40;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(255, 77, 79, 0.4);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=ramen.css.map */