@charset "UTF-8";
/*
theme Name: uota
Author: hiroyuki murakami
Description: うお太テーマ
version： 1.0.0
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap");
@media screen and (max-width: 639px) {
  .is-md {
    display: none;
  }
}

.is-sm {
  display: none;
}
@media screen and (max-width: 639px) {
  .is-sm {
    display: block;
  }
}

.no-sm {
  display: block;
}
@media screen and (max-width: 639px) {
  .no-sm {
    display: none;
  }
}

html {
  font-size: 16px;
}
@media screen and (max-width: 639px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.436875;
  background-color: #efeae6;
}
@media screen and (max-width: 1023px) {
  body {
    padding-top: 100px;
  }
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.fw700 {
  font-weight: 700;
}

.fs14 {
  font-size: 0.875rem;
}

.fs18 {
  font-size: 1.125rem;
}

.fs20 {
  font-size: 1.25rem;
}

.fs22 {
  font-size: 1.375rem;
}

.fs24 {
  font-size: 1.5rem;
}

.fs30 {
  font-size: 1.875rem;
}

.fs34 {
  font-size: 2.125rem;
}

.fs52 {
  font-size: 3.25rem;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #9fafbe;
  color: #ffffff;
  border-radius: 2px;
}
.button:hover {
  color: #565656;
  background: rgba(159, 175, 190, 0.7);
}

.section__title {
  text-align: center;
}
@media screen and (max-width: 639px) {
  .section__title {
    font-size: 26px;
  }
}

.container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.inner {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.header {
  background-color: #9fafbe;
  height: 100px;
}
@media screen and (max-width: 1023px) {
  .header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
  }
}

.header__inner {
  max-width: 1240px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .header__inner {
    position: relative;
  }
}

.header__logo {
  width: 230px;
}
@media screen and (max-width: 1023px) {
  .header__logo {
    width: 153px;
  }
}
.header__logo img {
  width: 100%;
}

.header__right {
  margin-right: 20px;
  display: flex;
  color: #ffffff;
  height: 100%;
}
.header__right-item {
  display: table;
  width: 266px;
  text-align: center;
  border-right: 1px solid #ffffff;
}
.header__right-item:hover {
  color: #565656;
  background: rgba(159, 175, 190, 0.7);
}
.header__right-item:first-child {
  border-left: 1px solid #ffffff;
}
.header__right-item p {
  display: table-cell;
  vertical-align: middle;
}
.header__right-item p span {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1023px) {
  .header__right {
    display: none;
  }
}

.header__ham {
  position: absolute;
  display: none;
  width: 39px;
  height: 30px;
  z-index: 13;
  right: 18px;
}
@media screen and (max-width: 1023px) {
  .header__ham {
    display: block;
  }
}
.header__ham--top {
  width: 39px;
  height: 4px;
  background-color: #ffffff;
  position: absolute;
  transition: 0.3s ease-in-out;
}
.header__ham--middle {
  width: 39px;
  height: 4px;
  background-color: #ffffff;
  position: absolute;
  transition: 0.3s ease-in-out;
  top: 11px;
}
.header__ham--bottom {
  width: 39px;
  height: 4px;
  background-color: #ffffff;
  position: absolute;
  transition: 0.3s ease-in-out;
  top: 22px;
}

.header__ham--active {
  display: none;
}
@media screen and (max-width: 1023px) {
  .header__ham--active {
    display: block;
  }
}
.header__ham--active .header__ham--top {
  transform: rotate(135deg);
  top: 5px;
  transition: 0.3s ease-in-out;
}
.header__ham--active .header__ham--middle {
  display: none;
}
.header__ham--active .header__ham--bottom {
  transform: rotate(-135deg);
  top: 5px;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 1023px) {
  .header-nav {
    display: none;
  }
}

.header__menu {
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
  gap: 0 55px;
  justify-content: center;
}
.header__menu li {
  position: relative;
}
.header__menu li:hover::after {
  content: "";
  position: absolute;
  width: 59px;
  height: 1px;
  background-color: #707070;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1023px) {
  .header__menu li:hover::after {
    display: none;
  }
}

.header-nav-index {
  display: none;
}

.header-nav-active {
  display: block !important;
  position: fixed;
  top: 100px;
  width: 100%;
  z-index: 101;
}
.header-nav-active .header__menu {
  background-color: rgba(239, 234, 230, 0.8);
}
@media screen and (max-width: 639px) {
  .header-nav-active .header__menu {
    flex-direction: column;
    justify-content: flex-start;
    background-color: rgba(239, 234, 230, 0.9);
    height: 70vh;
  }
}
.header-nav-active .header__menu li {
  writing-mode: vertical-rl;
  font-size: 16px;
}
@media screen and (max-width: 639px) {
  .header-nav-active .header__menu li {
    writing-mode: horizontal-tb;
    text-align: center;
    margin-top: 30px;
  }
}
.header-nav-active .header__menu li a:hover {
  color: #ffffff;
}

.header__menu .current_page_item::after {
  content: "";
  position: absolute;
  width: 59px;
  height: 1px;
  background-color: #707070;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1023px) {
  .header__menu .current_page_item::after {
    display: none;
  }
}

.header__menu--img {
  width: 100vw;
  height: 210px;
  background: url(/wp-content/themes/uora/img/下層ヘッダ.png) center center/cover;
  position: relative;
}
@media screen and (max-width: 639px) {
  .header__menu--img {
    height: 77px;
    margin-top: 15px;
  }
}
.header__menu--img::before {
  content: "";
  background: rgba(0, 0, 0, 0.26);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.section__fv {
  padding-top: 30px;
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.fv__hero {
  display: flex;
  justify-content: space-between;
}

.fv__hero--nav {
  display: inherit;
}
@media screen and (max-width: 1023px) {
  .fv__hero--nav {
    display: none;
  }
}

.fv__hero--menu {
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: 80px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.fv__hero--img {
  position: relative;
  max-width: 1000px;
  width: calc(100% - 250px);
  height: 529px;
  background: url(/wp-content/themes/uora/img/top_FV.png) center center/cover;
}
@media screen and (max-width: 1023px) {
  .fv__hero--img {
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .fv__hero--img {
    background: url(/wp-content/themes/uora/img/sp-fv.png) center center/cover;
    height: 70vh;
  }
}

.fv__hero--title {
  padding: 37px 37px 108px;
  background: rgba(159, 175, 190, 0.91);
  position: absolute;
  right: 40px;
  bottom: -73px;
  writing-mode: vertical-rl;
  color: #ffffff;
}
@media screen and (max-width: 639px) {
  .fv__hero--title {
    padding: 27px 21px;
    bottom: auto;
    top: 25px;
    right: 16px;
  }
}
.fv__hero--title p {
  letter-spacing: 0.4375rem;
}
.fv__hero--title p:nth-child(2) {
  padding-top: 25px;
  padding-right: 8px;
}
.fv__hero--title .fv__name {
  letter-spacing: 0.75rem;
  padding-top: 91px;
  padding-right: 31px;
}
@media screen and (max-width: 639px) {
  .fv__hero--title .fv__name {
    padding-top: 60px;
  }}

.fv__delivery {
  text-align: center;
  margin-top: 120px;
}
@media screen and (max-width: 639px) {
  .fv__delivery {
    padding-left: 22px;
    padding-right: 22px;
    margin-top: 60px;
  }
}
.fv__delivery p:first-child {
  letter-spacing: 0.1em;
}
.fv__delivery p:nth-child(2) {
  margin-top: 40px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 639px) {
  .fv__delivery p:nth-child(2) {
    margin-top: 30px;
  }
}

.fv__sp {
  display: none;
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .fv__sp {
    display: block;
  }
}
.fv__sp p {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: underline;
}
.fv__sp p:nth-child(2) {
  margin-top: 30px;
}
.fv__sp p span {
  font-weight: 400;
  line-height: 1.4375;
  text-decoration: none;
}

.section__main {
  padding-top: 120px;
}
@media screen and (max-width: 639px) {
  .section__main {
    padding-top: 70px;
  }
}

.main__title {
  background: url(/wp-content/themes/uora/img/アセット\ 1\ 1.png) center center/cover;
  height: 658px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .main__title {
    display: none;
  }
}

.main__title--text {
  max-width: 450px;
  text-align: center;
  width: 45%;
  line-height: 2.1875;
  padding-left: 25px;
  padding-right: 25px;
}

.main__title--heading {
  display: flex;
  align-items: flex-start;
  height: 50%;
}
.main__title--heading h2 {
  padding-top: 98px;
}

.main__title--description {
  display: flex;
  align-items: flex-end;
  height: 50%;
}
.main__title--description p {
  padding-bottom: 72px;
}

.main__title--lg {
  display: none;
  background: url(/wp-content/themes/uora/img/アセット\ 1\ 1.png) center center/contain;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 16px;
  padding-right: 16px;
}
.main__title--lg .main__title--lg-title {
  text-align: center;
}
.main__title--lg .main__title--lg-img {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  aspect-ratio: 1.0625;
  position: relative;
}
.main__title--lg .main__title--lg-img img {
  width: 64.0750670241%;
  aspect-ratio: 1.2645502646;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.main__title--lg .main__title--lg-img .main__title--lg-img1 {
  position: absolute;
  top: 0;
  left: 0;
}
.main__title--lg .main__title--lg-img .main__title--lg-img2 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.main__title--lg .main__title-lg-text {
  margin-top: 60px;
  padding-left: 21px;
  padding-right: 21px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .main__title--lg {
    display: block;
  }
}

.main__menu {
  padding-top: 120px;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 639px) {
  .main__menu {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 60px;
  }
}

.main__menu--item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 639px) {
  .main__menu--item {
    flex-direction: column;
  }
}
@media screen and (max-width: 639px) {
  .main__menu--item:not(:first-child) {
    margin-top: 40px;
  }
}
.main__menu--item img {
  width: 50%;
}
@media screen and (max-width: 639px) {
  .main__menu--item img {
    width: 100%;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  }
}
.main__menu--item-text {
  width: 50%;
  padding-left: 70px;
  padding-right: 70px;
}
@media screen and (max-width: 1023px) {
  .main__menu--item-text {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 639px) {
  .main__menu--item-text {
    display: contents;
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .main__menu--item-text h3 {
    order: -1;
    background: url(/wp-content/themes/uora/img/メニューあしらい-sp.png) center center/cover;
    width: 100%;
    margin-bottom: 20px;
    height: 87px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.main__menu--item-text p {
  margin-top: 27px;
  line-height: 2.1875;
}
@media screen and (max-width: 639px) {
  .main__menu--item-text p {
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }
}
.main__menu--item:nth-child(2) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 639px) {
  .main__menu--item:nth-child(2) {
    flex-direction: column;
  }
}

.main__menu--item1,
.main__menu--item2,
.main__menu--item3 {
  position: relative;
}
.main__menu--item1::after,
.main__menu--item2::after,
.main__menu--item3::after {
  content: "";
  position: absolute;
  display: block;
  width: 36.171875%;
  height: 117px;
  background: url(/wp-content/themes/uora/img/トップメニューあしらい.png) center center/cover;
}
@media screen and (max-width: 639px) {
  .main__menu--item1::after,
.main__menu--item2::after,
.main__menu--item3::after {
    display: none;
  }
}

.main__menu--item1::after {
  top: 0;
  right: -40px;
}
@media screen and (max-width: 1023px) {
  .main__menu--item1::after {
    right: 0;
  }
}

.main__menu--item2::after {
  left: -40px;
}
@media screen and (max-width: 1023px) {
  .main__menu--item2::after {
    left: 0;
  }
}

.main__menu--item3::after {
  bottom: 0;
  right: -40px;
}
@media screen and (max-width: 1023px) {
  .main__menu--item3::after {
    right: 0;
  }
}

.main__menu-button {
  max-width: 371px;
  letter-spacing: 0.15em;
  width: 100%;
  height: 67px;
  margin-top: 83px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 639px) {
  .main__menu-button {
    max-width: 250px;
    height: 56px;
    margin-top: 40px;
  }
}

.section__banner {
  padding-top: 120px;
}
@media screen and (max-width: 639px) {
  .section__banner {
    padding-top: 60px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.banner__wrapper {
  max-width: 980px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 0 8.1632653061%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 639px) {
  .banner__wrapper {
    display: block;
  }
}

.banner__item {
  text-align: center;
  background: url(/wp-content/themes/uora/img/バナー背景.png) center center/cover;
  max-width: 450px;
  width: 100%;
  aspect-ratio: 450/380;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 639px) {
  .banner__item {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 639px) {
  .banner__item:nth-child(2) {
    margin-top: 20px;
  }
}
.banner__item:hover {
  background-color: #e9eff5;
}
@media screen and (max-width: 639px) {
  .banner__item h3 {
    font-size: 24px;
  }
}
.banner__item p {
  line-height: 2.1875;
  margin-top: 40px;
}
@media screen and (max-width: 639px) {
  .banner__item p {
    font-size: 16px;
  }
}

.section__delivery {
  padding-top: 120px;
  padding-bottom: 160px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background: url(/wp-content/themes/uora/img/Group\ 93.png) center 90%/100%;
}
@media screen and (max-width: 639px) {
  .section__delivery {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 16px;
    padding-right: 16px;
    background: url(/wp-content/themes/uora/img/Group\ 93.png) 30% 80%/200%;
  }
}
@media screen and (max-width: 639px) {
  .section__delivery h3 {
    font-size: 24px;
  }
}

.delivery__tel-button {
  margin-top: 90px;
  max-width: 432px;
  width: 100%;
  height: 57px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 639px) {
  .delivery__tel-button {
    margin-top: 40px;
  }
}

.delivery__order-button {
  margin-top: 30px;
  max-width: 432px;
  width: 100%;
  height: 57px;
  margin-left: auto;
  margin-right: auto;
}

.delivery__fax {
  margin-top: 60px;
}
@media screen and (max-width: 639px) {
  .delivery__fax {
    margin-top: 40px;
  }
}

.delivery__description {
  margin-top: 28px;
}

.footer {
  padding-top: 40px;
  padding-bottom: 50px;
  background-color: #9fafbe;
  color: #ffffff;
}

.footer__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 639px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

.footer__info {
  padding-left: 30px;
  flex: 3;
}
@media screen and (max-width: 1023px) {
  .footer__info {
    flex: 2;
  }
}
@media screen and (max-width: 639px) {
  .footer__info {
    display: contents;
  }
}
.footer__info .footer__logo {
  width: 288px;
  height: 99px;
}
@media screen and (max-width: 639px) {
  .footer__info .footer__logo {
    margin-left: auto;
    margin-right: auto;
    width: 205px;
    height: 70px;
  }
}
.footer__info .footer__logo img {
  width: 100%;
}
.footer__info p {
  margin-top: 45px;
  line-height: 1.75;
  padding-left: 40px;
}
@media screen and (max-width: 639px) {
  .footer__info p {
    padding-left: 0;
    order: 1;
    margin-top: 40px;
  }
}

.footer__menu {
  flex: 1;
}
.footer__menu li:not(:first-child) {
  margin-top: 21px;
}
@media screen and (max-width: 639px) {
  .footer__menu li:not(:first-child) {
    margin-top: 24px;
  }
}
.footer__menu li a:hover {
  color: #565656;
}

@media screen and (max-width: 639px) {
  .footer__menu1 {
    margin-top: 40px;
  }
}

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

.footer__copy {
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 639px) {
  .footer__copy {
    margin-top: 60px;
  }
}

.section__company {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .section__company {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 639px) {
  .section__company {
    padding-top: 40px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 0;
  }
}

.company__table {
  margin-top: 65px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 639px) {
  .company__table {
    margin-top: 20px;
  }
}
.company__table dt,
.company__table dd {
  padding-top: 28px;
  padding-bottom: 28px;
}
@media screen and (max-width: 639px) {
  .company__table dt,
.company__table dd {
    padding-top: 20px;
    padding-bottom: 12px;
  }
}
.company__table dt {
  width: 37.5%;
  padding-left: 55px;
  border-bottom: 2.5px solid #565656;
  font-weight: 400;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 639px) {
  .company__table dt {
    padding-left: 24px;
  }
}
.company__table dd {
  width: 62.5%;
  border-bottom: 1px solid #565656;
  letter-spacing: 0.02em;
  line-height: 2;
}
@media screen and (max-width: 639px) {
  .company__table dd {
    padding-left: 13px;
  }
}

.g-map {
  margin-top: 120px;
  position: relative;
  padding-bottom: 52.5%;
  height: 0;
  overflow: hidden;
}
@media screen and (max-width: 639px) {
  .g-map {
    margin-top: 60px;
  }
}

.g-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.section__greeting {
  padding-top: 60px;
}
@media screen and (max-width: 1023px) {
  .section__greeting {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 639px) {
  .section__greeting {
    padding-top: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.greeting__content {
  margin-top: 90px;
  max-width: 1200px;
  width: calc(100% - 80px);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 0 25px;
}
@media screen and (max-width: 1023px) {
  .greeting__content {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
}
@media screen and (max-width: 639px) {
  .greeting__content {
    margin-top: 40px;
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
}

.greeting__text {
  width: 58.3333333333%;
  padding: 107px 85px;
  line-height: 2.5;
  background: url(/wp-content/themes/uora/img/greeting-bg.png) center center/cover;
}
@media screen and (max-width: 1023px) {
  .greeting__text {
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .greeting__text {
    width: 100%;
    padding: 40px 20px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  }
}

.greeting__img {
  width: 39.5833333333%;
  display: flex;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .greeting__img {
    height: 520px;
    width: 80%;
    margin-top: 60px;
  }
}
@media screen and (max-width: 639px) {
  .greeting__img {
    height: 350px;
    width: 100%;
    margin-top: 20px;
  }
}
.greeting__img img {
  aspect-ratio: 322/269;
  width: 67.7894736842%;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.greeting__img .greeting__img1 {
  position: absolute;
  left: 0;
  bottom: -20px;
}
@media screen and (max-width: 1023px) {
  .greeting__img .greeting__img1 {
    left: 0;
    top: 0;
    bottom: auto;
  }
}
@media screen and (max-width: 639px) {
  .greeting__img .greeting__img1 {
    left: 0;
    top: 0;
    bottom: auto;
  }
}
.greeting__img .greeting__img2 {
  position: absolute;
  right: 0;
  top: -20px;
}
@media screen and (max-width: 1023px) {
  .greeting__img .greeting__img2 {
    right: 0;
    top: auto;
    bottom: 0;
  }
}
@media screen and (max-width: 639px) {
  .greeting__img .greeting__img2 {
    right: 0;
    top: auto;
    bottom: 0;
  }
}

.section__history {
  padding-top: 90px;
}
@media screen and (max-width: 639px) {
  .section__history {
    padding-top: 60px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.history__table {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 639px) {
  .history__table {
    margin-top: 40px;
  }
}
.history__table .history__table--dt,
.history__table .history__table--dd {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #565656;
}
.history__table--dt {
  padding-left: 5px;
  font-weight: 400;
  width: 22%;
}
@media screen and (max-width: 639px) {
  .history__table--dt {
    padding-left: 7px;
    width: 90px;
  }
}
.history__table--dd {
  width: 78%;
}
@media screen and (max-width: 639px) {
  .history__table--dd {
    padding-left: 10px;
    width: calc(100% - 90px);
  }
}

.history__cards {
  margin-top: 120px;
  margin-bottom: 40px;
  max-width: 980px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 639px) {
  .history__cards {
    display: block;
    height: 390px;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 40px;
    margin-bottom: 0;
  }
}
.history__cards img {
  aspect-ratio: 3/4;
  width: 30.612244898%;
}
@media screen and (max-width: 639px) {
  .history__cards img {
    max-width: 55.5194805195%;
    width: 100%;
    position: absolute;
  }
}
@media screen and (max-width: 639px) {
  .history__cards img:nth-of-type(1) {
    top: 0;
    left: 16px;
  }
}
@media screen and (max-width: 639px) {
  .history__cards img:nth-of-type(2) {
    bottom: 0;
    right: 16px;
  }
}
@media screen and (max-width: 639px) {
  .history__cards img:last-child {
    display: none;
  }
}

.section__faq {
  padding-top: 90px;
}
@media screen and (max-width: 1023px) {
  .section__faq {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 639px) {
  .section__faq {
    padding-top: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.faq__description {
  margin-top: 60px;
  margin-bottom: 30px;
  line-height: 2.5;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .faq__description {
    margin-top: 40px;
    margin-bottom: 10px;
  }
}
.faq__description a {
  text-decoration: underline;
}

.faq__contents--title {
  margin-top: 60px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 639px) {
  .faq__contents--title {
    margin-top: 30px;
  }
}
.faq__contents--title::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/wp-content/themes/uora/img/faq-icon1.png) center center/cover;
  margin-right: 9px;
}

.faq__contents {
  border: 3px solid #d5d9de;
  box-sizing: border-box;
}

.faq__question {
  background-color: #d5d9de;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 16px;
}
.faq__question::before {
  content: "Q.";
  display: inline-block;
  padding-right: 5px;
}

.faq__answer {
  line-height: 1.875;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 16px;
}
.faq__answer::before {
  content: "A.";
  display: inline-block;
  margin-right: 5px;
}

.faq__banner {
  margin-top: 120px;
  margin-bottom: 35px;
  padding-top: 80px;
  padding-bottom: 80px;
  display: block;
  width: 100%;
  background: url(/wp-content/themes/uora/img/faq-banner.png) center center/cover;
  position: relative;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .faq__banner {
    margin-top: 60px;
    margin-bottom: 0;
    padding-top: 45px;
    padding-bottom: 45px;
  }
}
.faq__banner::before {
  content: "";
  /* ↓暗いオーバーレイを半透明で配置 */
  background: rgba(0, 0, 0, 0.35);
  /* ↓全体を覆うように配置 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.faq__banner:hover::before {
  background: none;
}
.faq__banner:hover .faq__banner--title,
.faq__banner:hover .faq__banner--description {
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.9);
}
.faq__banner--title {
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.36);
  position: relative;
}
.faq__banner--description {
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.36);
  margin-top: 23px;
  line-height: 1.875;
  position: relative;
}

.section__menu {
  padding-top: 90px;
  padding-bottom: 40px;
}
@media screen and (max-width: 639px) {
  .section__menu {
    padding-top: 40px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 0;
  }
}

.menu__categories {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 639px) {
  .menu__categories {
    margin-top: 40px;
  }
}

.menu__category {
  width: 24.6%;
  aspect-ratio: 246/80;
  display: flex;
  justify-content: center;
  align-items: center;
  border: #C8B174 0.5px solid;
  box-sizing: border-box;
}
@media screen and (max-width: 639px) {
  .menu__category {
    width: 49.5626822157%;
    aspect-ratio: 170/52;
    font-size: 14px;
  }
}
.menu__category:nth-child(n+5) {
  margin-top: 5px;
}
@media screen and (max-width: 639px) {
  .menu__category:nth-child(n+3) {
    margin-top: 5px;
  }
}
.menu__category:nth-child(2n) {
  background: url(/wp-content/themes/uora/img/menu-cat2.png) center center/cover;
}
.menu__category:nth-child(2n):hover {
  background-color: #e9eff5;
}
.menu__category:nth-child(2n-1) {
  background: url(/wp-content/themes/uora/img/menu-cat1.png) center center/cover;
}
.menu__category:nth-child(2n-1):hover {
  background-color: #e9eff5;
}
@media screen and (max-width: 639px) {
  .menu__category:nth-child(1), .menu__category:nth-child(4), .menu__category:nth-child(5), .menu__category:nth-child(8) {
    background: url(/wp-content/themes/uora/img/menu-cat1.png) center center/cover;
  }
}
@media screen and (max-width: 639px) {
  .menu__category:nth-child(2), .menu__category:nth-child(3), .menu__category:nth-child(6), .menu__category:nth-child(7) {
    background: url(/wp-content/themes/uora/img/menu-cat2.png) center center/cover;
  }
}

.menu__cards {
  padding-top: 90px;
  padding-bottom: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
@media screen and (max-width: 639px) {
  .menu__cards {
    padding-top: 22px;
    justify-content: space-between;
    gap: 0;
  }
}

.menu__card {
  width: 30%;
}
@media screen and (max-width: 639px) and (max-width: 639px) {
  .menu__card {
    width: 49.5626822157%;
    margin-top: 20px;
  }
}
.menu__card:nth-child(n+4) {
  margin-top: 90px;
}
@media screen and (max-width: 639px) {
  .menu__card:nth-child(n+4) {
    margin-top: 20px;
  }
}
.menu__card img {
  width: 100%;
  aspect-ratio: 300/250;
  height: auto;
}
@media screen and (max-width: 639px) {
  .menu__card img {
    aspect-ratio: 170/141;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  }
}
.menu__card .menu__name {
  margin-top: 15px;
  border-bottom: 1px solid #707070;
  height: 55px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 639px) {
  .menu__card .menu__name {
    font-size: 14px;
    margin-top: 0;
  }
}
.menu__card .menu__price {
  padding-top: 5px;
  text-align: right;
}
@media screen and (max-width: 639px) {
  .menu__card .menu__price {
    font-size: 12px;
  }
}

.section__flow {
  padding-top: 90px;
}
@media screen and (max-width: 639px) {
  .section__flow {
    padding-top: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.delivery__table {
  margin-top: 60px;
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 639px) {
  .delivery__table {
    margin-top: 40px;
  }
}
.delivery__table tr {
  display: flex;
  justify-content: space-between;
}
.delivery__table th,
.delivery__table td {
  width: 33.2%;
  aspect-ratio: 326/81;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.delivery__table th:nth-child(1) {
  background-color: #D5D9DE;
}
.delivery__table th:nth-child(2) {
  background-color: #D2D7D4;
}
.delivery__table th:nth-child(3) {
  background-color: #E3E1CC;
}
@media screen and (max-width: 639px) {
  .delivery__table th {
    font-size: 14px;
  }
}
.delivery__table td {
  background-color: #ffffff;
}
.delivery__table td:nth-child(1) {
  border: 1px solid #D5D9DE;
}
@media screen and (max-width: 639px) {
  .delivery__table td:nth-child(1) {
    font-size: 12px;
  }
}
.delivery__table td:nth-child(2) {
  border: 1px solid #D2D7D4;
}
@media screen and (max-width: 639px) {
  .delivery__table td:nth-child(2) {
    font-size: 9px;
  }
}
.delivery__table td:nth-child(3) {
  border: 1px solid #E3E1CC;
}
@media screen and (max-width: 639px) {
  .delivery__table td:nth-child(3) {
    font-size: 12px;
  }
}

.section__flow {
  max-width: 1088px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1023px) {
  .section__flow {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 639px) {
  .section__flow {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.flow__card {
  padding-top: 50px;
  padding-left: 96px;
  padding-right: 96px;
  padding-bottom: 70px;
  position: relative;
}
@media screen and (max-width: 639px) {
  .flow__card {
    padding: 40px 11px 60px;
  }
}
.flow__card::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 45px solid transparent;
  border-left: 45px solid transparent;
  border-top: 41px solid #F8F5F4;
  border-bottom: 0;
  bottom: -41px;
  z-index: 1;
  margin-left: 8px;
}
@media screen and (max-width: 639px) {
  .flow__card::after {
    bottom: -39px;
  }
}

.flow__no1 {
  margin-top: 106px;
  background: rgba(255, 255, 255, 0.54);
  position: relative;
}
@media screen and (max-width: 639px) {
  .flow__no1 {
    padding-top: 20px;
  }
}
.flow__no1::before {
  content: "";
  position: absolute;
  background: no-repeat url(/wp-content/themes/uora/img/フロー1-レイヤー.png) 100% 0/71%;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.flow__title {
  display: flex;
  align-items: center;
}
.flow__title h3 {
  margin-left: 20px;
}

.flow__number {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 104px;
  height: 104px;
}
@media screen and (max-width: 639px) {
  .flow__number {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
}
.flow__number::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: url(/wp-content/themes/uora/img/フローナンバー.png) center center/cover;
}

.flow__no1--content {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 639px) {
  .flow__no1--content {
    display: block;
    margin-top: 20px;
  }
}
.flow__no1--content--left p {
  display: flex;
  align-items: center;
  max-width: 432px;
  width: 100%;
  height: 56px;
  background-color: #DFE1E2;
  padding-left: 24px;
  padding-right: 22px;
}
@media screen and (max-width: 639px) {
  .flow__no1--content--left p {
    height: 50px;
    padding-left: 17px;
    padding-right: 8px;
    font-size: 12px;
  }
}
.flow__no1--content--left p::before {
  content: "";
  display: block;
  width: 19px;
  height: 15px;
  background: url(/wp-content/themes/uora/img/flow1-check.png) center center/cover;
  margin-right: 14px;
}
@media screen and (max-width: 639px) {
  .flow__no1--content--left p::before {
    width: 16px;
    height: 12px;
  }
}
.flow__no1--content--left p:not(:first-child) {
  margin-top: 23px;
}
.flow__no1--content--right {
  line-height: 2;
  text-align: center;
  margin-right: -74px;
}
@media screen and (max-width: 639px) {
  .flow__no1--content--right {
    font-size: 16px;
    margin-right: 0;
    margin-top: 40px;
  }
}

.flow__banner {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 639px) {
  .flow__banner {
    margin-top: 40px;
    display: block;
  }
}

.flow__tel--button {
  display: block;
  text-align: center;
  color: #333333;
  max-width: 432px;
  width: 100%;
  height: 57px;
  background: url(/wp-content/themes/uora/img/フローボタン-bg.png) center center/cover;
}

.flow__contact--button {
  text-align: center;
  color: #333333;
  max-width: 432px;
  width: 100%;
  height: 57px;
  background: url(/wp-content/themes/uora/img/フローボタン-bg.png) center center/cover;
}
@media screen and (max-width: 639px) {
  .flow__contact--button {
    margin-top: 20px;
  }
}

.flow__button:hover {
  color: #333333;
  background: url(/wp-content/themes/uora/img/フローボタン-bg.png) center center/cover;
  opacity: 0.7;
}

.flow__no2 {
  padding-top: 60px;
  background: rgba(182, 198, 213, 0.46);
}
.flow__no2::after {
  border-top: 41px solid #D5D9DE;
}

.flow__no2--content {
  margin-left: 96px;
  margin-top: 25px;
  max-width: 700px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .flow__no2--content {
    margin-left: 0;
  }
}
.flow__no2--content p {
  position: relative;
  width: calc(100% - 41px);
  margin-left: auto;
  z-index: 1;
}
.flow__no2--content p:not(:first-child) {
  margin-top: 15px;
}
@media screen and (max-width: 639px) {
  .flow__no2--content p {
    display: block;
    position: relative;
    width: calc(100% - 28px);
    margin-left: auto;
  }
}
.flow__no2--content p::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -41px;
  width: 32px;
  height: 32px;
  background: url(/wp-content/themes/uora/img/faq-icon1.png) center center/cover;
}
@media screen and (max-width: 639px) {
  .flow__no2--content p::before {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 0;
    left: -28px;
  }
}

.flow__no3 {
  padding-top: 60px;
  background: rgba(255, 255, 255, 0.54);
}

.flow__no3--content {
  margin-left: 84px;
  margin-top: 30px;
  max-width: 578px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .flow__no3--content {
    margin-left: 0;
  }
}
@media screen and (max-width: 639px) {
  .flow__no3--content {
    margin-left: 0;
    margin-top: 20px;
  }
}
.flow__no3--policy {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  line-height: 2.5;
}
@media screen and (max-width: 639px) {
  .flow__no3--policy {
    display: block;
  }
}
.flow__no3--policy-description {
  display: contents;
}
@media screen and (max-width: 639px) {
  .flow__no3--policy-description {
    display: flex;
    padding-left: 8%;
  }
}

.flow__no4 {
  padding-top: 60px;
  background: rgba(182, 198, 213, 0.46);
}
.flow__no4::after {
  border-top: 41px solid #D5D9DE;
}

.flow__no4--content,
.flow__no5--content {
  margin-left: 96px;
  margin-top: 25px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .flow__no4--content,
.flow__no5--content {
    margin-left: 0;
  }
}
@media screen and (max-width: 639px) {
  .flow__no4--content,
.flow__no5--content {
    margin-left: 0px;
    margin-top: 20px;
  }
}
.flow__no4--content p,
.flow__no5--content p {
  position: relative;
  width: calc(100% - 41px);
  margin-left: auto;
  z-index: 1;
}
@media screen and (max-width: 639px) {
  .flow__no4--content p,
.flow__no5--content p {
    width: calc(100% - 28px);
    margin-left: auto;
  }
}
.flow__no4--content p:not(:first-child),
.flow__no5--content p:not(:first-child) {
  margin-top: 15px;
}
.flow__no4--content p::before,
.flow__no5--content p::before {
  content: "";
  position: absolute;
  top: 0;
  left: -41px;
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/wp-content/themes/uora/img/faq-icon1.png) center center/cover;
}
@media screen and (max-width: 639px) {
  .flow__no4--content p::before,
.flow__no5--content p::before {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 0;
    left: -28px;
  }
}

.flow__no5 {
  padding-top: 60px;
  background: rgba(255, 255, 255, 0.54);
  position: relative;
}
.flow__no5::after {
  display: none;
}
.flow__no5::before {
  content: "";
  position: absolute;
  background: no-repeat url(/wp-content/themes/uora/img/フロー-レイヤー2.png) 100% 100%/75%;
  display: block;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.section__contact {
  padding-top: 90px;
  padding-bottom: 40px;
}
@media screen and (max-width: 639px) {
  .section__contact {
    padding-top: 40px;
    padding-bottom: 0;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.mw_wp_form {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.mw_wp_form p {
  font-weight: 500;
  font-size: 18px;
}
.mw_wp_form p .label {
  display: inline-block;
  margin-top: 40px;
  margin-bottom: 8px;
}
@media screen and (max-width: 639px) {
  .mw_wp_form p .label {
    margin-top: 20px;
  }
}
.mw_wp_form p .label-name {
  margin-top: 60px;
}
@media screen and (max-width: 639px) {
  .mw_wp_form p .label-name {
    margin-top: 20px;
  }
}
.mw_wp_form input {
  width: 100%;
  height: 55px;
  border: 1px solid #707070;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0);
}
.mw_wp_form input::-moz-placeholder {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 500;
  color: #888888;
  padding-left: 6px;
}
.mw_wp_form input::placeholder {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 500;
  color: #888888;
  padding-left: 6px;
}
@media screen and (max-width: 639px) {
  .mw_wp_form .horizontal-item {
    display: block;
    margin-left: 0 !important;
  }
}
.mw_wp_form .radio {
  width: 16px;
  height: auto;
}
.mw_wp_form textarea {
  width: 100%;
  border: 1px solid #707070;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0);
}
.mw_wp_form textarea::-moz-placeholder {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 500;
  color: #888888;
  padding-left: 6px;
}
.mw_wp_form textarea::placeholder {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 500;
  color: #888888;
  padding-left: 6px;
}
.mw_wp_form .send {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #ffffff;
  max-width: 300px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  text-align: center;
  background-color: #9fafbe;
  display: block;
  height: 55px;
  border: 1px solid #707070;
  box-sizing: border-box;
}
@media screen and (max-width: 639px) {
  .mw_wp_form .send {
    margin-top: 40px;
  }
}

.is-active-menu {
  background-color: #e9eff5 !important;
}

.section__privacy {
  padding-top: 60px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1023px) {
  .section__privacy {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 639px) {
  .section__privacy {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.section__privacy h2 {
  margin-bottom: 20px;
}
.section__privacy h3 {
  padding-top: 60px;
  padding-bottom: 20px;
}
.section__privacy p {
  padding-top: 20px;
  line-height: 2;
}

.section__recruit {
  padding-top: 60px;
  padding-bottom: 160px;
}
@media screen and (max-width: 639px) {
  .section__recruit {
    padding-top: 40px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 60px;
  }
}
.section__recruit p {
  margin-top: 65px;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .section__recruit p {
    margin-top: 40px;
  }
}

.recruit__title {
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 639px) {
  .recruit__title {
    text-align: left;
  }
}

.recruit__table {
  margin-top: 20px;
}

.header-order {
  position: relative;
}

.body__order {
  padding-top: 0;
}
.body__order .header-nav-active {
  position: absolute;
}

#wqe-monitor {
  z-index: 999;
}

.wqe-Form .wqe-Product > .wqe--info > .wqe--main > .wqe--name {
  width: 100%;
  text-align: left;
}

.wqe-Form .wqe-Product > .wqe--info > .wqe--main > .wqe--prices {
  margin-left: auto;
}