@charset "UTF-8";
/* ---------------------------------------------------------
A Modern CSS Reset
--------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@900&family=Noto+Sans+JP:wght@300;400;500;600;700&family=Noto+Serif+JP:wght@400;500;600;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
td,
th,
figure,
input,
select,
button,
optgroup,
textarea {
  margin: 0;
  padding: 0;
}

article,
aside,
footer,
header,
main,
nav,
section,
figcaption,
figure {
  display: block;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

li {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ---------------------------------------------------------
SP PC設定
--------------------------------------------------------- */
@media screen and (max-width: 750px) {
  [data-sc-pc] {
    display: none !important;
  }
}

@media screen and (min-width: 751px) {
  [data-sc-sp] {
    display: none !important;
  }
}

/* ---------------------------------------------------------
フォント　設定
--------------------------------------------------------- */
html {
  font-size: 62.5%; /* 通常時 1rem = 10px */
}

@media (max-width: 1250px) {
  html {
    font-size: 50%; /* 小さなデバイスでは 1rem = 8px */
  }
}
@media (max-width: 1000px) {
  html {
    font-size: 46%; /* さらに小さなデバイスでは 1rem = 6.4px */
  }
}
@media (max-width: 800px) {
  html {
    font-size: 37%; /* さらに小さなデバイスでは 1rem = 6.4px */
  }
}
@media (max-width: 750px) {
  html {
    font-size: 2.35vw;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  word-break: break-all;
}

img {
  border-style: none;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a,
button {
  outline: 0;
  text-decoration: none;
  color: inherit;
  background-color: transparent;
  transition: 0.3s;
  opacity: 1;
}
a:hover,
button:hover {
  cursor: pointer;
  opacity: 0.7;
}

/* ---------------------------------------------------------
row 初期設定
--------------------------------------------------------- */
.row {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}
@media screen and (max-width: 750px) {
  .row {
    display: block;
  }
}
.row > * {
  flex: 1;
}

/* ---------------------------------------------------------
幅 初期設定
--------------------------------------------------------- */
.w1280 {
  /* width: 100%; */
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.w940 {
  /* width: 100%; */
  max-width: 940px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ---------------------------------------------------------

--------------------------------------------------------- */
div#page_top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: 107px;
}
@media screen and (max-width: 749px) {
  div#page_top {
    width: 50px;
    height: 55px;
    bottom: 8px;
    right: 10px;
  }
}

/* ---------------------------------------------------------
ローディング　アニメーション
--------------------------------------------------------- */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
}

.spinner {
  width: 100px;
  height: 100px;
  margin: 200px auto;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-scaleout 1s infinite ease-in-out;
}

/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.loaded {
  opacity: 0;
  visibility: hidden;
}

/* ---------------------------------------------------------
スマホナビ
  --------------------------------------------------------- */
@media print, screen and (min-width: 750px) {
  .navToggle {
    display: none;
  }
}
@media screen and (max-width: 749px) {
  .navToggle.on {
    display: block;
  }
}

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

.navToggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: -3px 3px 3px 0px #bdbdbd;
}
.navToggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 64%;
  height: 3px;
  background: #411401;
  -webkit-transition: 0.3Ns;
  transition: 0.3s;
}
.navToggle span.bar01 {
  top: 32%;
}
.navToggle span.bar03 {
  top: 68%;
}
.navToggle.active .bar01 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.navToggle.active .bar02 {
  opacity: 0;
}
.navToggle.active .bar03 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}

nav.spMav {
  z-index: 999;
  font-weight: 400;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(245, 241, 229, 0.93);
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 3;
  font-size: 1.5em;
}
nav.spMav li {
  list-style: none;
  text-align: center;
}

/* ---------------------------------------------------------
パーツ
--------------------------------------------------------- */
.title {
  cursor: pointer;
}

section {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 749px) {
  section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.anker {
  margin-top: -13rem;
  padding-top: 13rem;
}
@media screen and (max-width: 749px) {
  .anker {
    margin-top: 0;
    padding-top: 0;
  }
}

/* ---------------------------------------------------------
共通デザイン
--------------------------------------------------------- */
.stripe {
  background: repeating-linear-gradient(90deg, #FFEC00, #FFEC00 15px, #fff 10px, #fff 20px);
}

.dotBG {
  background-color: #FDE6B9;
  background-image: radial-gradient(#FEF2DB 2rem, transparent 2rem), radial-gradient(#FEF2DB 2rem, transparent 2rem);
  background-size: 10rem 10rem;
  background-position: 0px 5rem, 5rem 10rem;
  height: calc(100% - 25.4rem);
  width: 100%;
  z-index: -1;
  top: 0;
}

.tabArea__kitchencar .title::after,
.tabArea__kitchencar .title::before {
  content: "";
  content: "";
  position: absolute;
  top: calc(50% - 0.15em);
  right: 2.5rem;
  width: 4rem;
  height: 0.5rem;
  transition: all 0.3s;
  background-color: #ffffff;
}
@media screen and (max-width: 749px) {
  .tabArea__kitchencar .title::after,
  .tabArea__kitchencar .title::before {
    top: calc(50% - 0px);
    width: 2rem;
    right: 0.7rem;
  }
}
.tabArea__kitchencar .title::before {
  transform: rotate(90deg);
}
.tabArea__kitchencar .title.close::before {
  transform: rotate(0deg) !important;
}
.tabArea__kitchencar .pulas {
  position: relative;
}
.tabArea__kitchencar .pulas::after,
.tabArea__kitchencar .pulas::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: calc(50% + 0.4em);
  width: 4rem;
  height: 0.5rem;
  background-color: #ffffff;
  transition: all 0.3s;
}
@media screen and (max-width: 749px) {
  .tabArea__kitchencar .pulas::after,
  .tabArea__kitchencar .pulas::before {
    width: 2rem;
    left: -0.7rem;
    top: -1.8rem;
  }
}
@media screen and (max-width: 749px) {
  .tabArea__kitchencar .pulas.aka::after,
  .tabArea__kitchencar .pulas.aka::before {
    top: -1.6rem;
  }
}
.tabArea__kitchencar .pulas::before {
  transform: rotate(90deg);
}
.tabArea__kitchencar .close .pulas::before {
  transform: rotate(0deg) !important;
}

.ttl-h2 {
  position: relative;
  margin-top: 17rem;
  height: 17rem;
}
@media screen and (max-width: 749px) {
  .ttl-h2 {
    margin-top: 10rem;
    height: 10rem;
  }
}
.ttl-h2:before {
  position: absolute;
  content: "";
  top: 0;
  left: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 24rem;
  background: url(../../imgs/ttl-bg__h2.png) no-repeat center/cover;
}
@media screen and (max-width: 749px) {
  .ttl-h2:before {
    height: 13rem;
    background: url(../../imgs/ttl-bg__h2.png) no-repeat -1rem center/cover;
  }
}
.ttl-h2 img {
  height: 34rem;
  width: auto;
  margin: 0 auto;
  position: absolute;
  top: -14rem;
  left: 50%;
  transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
@media screen and (max-width: 749px) {
  .ttl-h2 img {
    height: 15rem;
    top: -3rem;
  }
}

/* ---------------------------------------------------------
共通デザイン
個別スタイル
--------------------------------------------------------- */
.headlogo {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 749px) {
  .headlogo {
    justify-content: flex-start;
  }
}
.headlogo a {
  display: block;
  object-fit: contain;
  width: 40%;
  padding: 20px 0;
}
@media screen and (max-width: 749px) {
  .headlogo a {
    width: 35vw;
    padding: 10px 0;
    margin-right: 2rem;
  }
}

.ftftlogo {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 749px) {
  .ftftlogo {
    display: block;
  }
}
.ftftlogo a {
  display: block;
  object-fit: contain;
  width: 40%;
  padding: 20px 0;
}
@media screen and (max-width: 749px) {
  .ftftlogo a {
    width: 80%;
    padding: 0;
    margin: 0 auto;
    margin-bottom: 3rem;
  }
}

.mvWrap {
  background: url(../../imgs/mv_bg.png) no-repeat center/cover;
}

.mv__logo {
  height: auto;
  max-width: 114rem;
  margin-top: -35px;
  margin: 0 auto;
  margin-top: -1rem;
}

.mv {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.gnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}
.gnav > a {
  width: 29rem;
}
.gnav > img {
  object-fit: contain;
}
.gnav ul {
  display: flex;
  align-items: flex-end;
  flex: 1;
  margin-left: 5rem;
}
.gnav ul li {
  padding: 0 1em;
  flex: 1;
  margin: 0 1rem;
}

.gnavWrap.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: url(../../imgs/header_backimg.png) no-repeat top center/cover;
  z-index: 999;
}
.gnavWrap.fixed .gnav {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

section.lead {
  position: relative;
  padding: 0;
}
@media screen and (max-width: 749px) {
  section.lead {
    margin-bottom: -5rem;
  }
}
section.lead .lead__btmbg {
  background: url(../../imgs/lead_bg.png) no-repeat top center/cover;
  padding: 5rem 0 2rem;
}

p.lead__p {
  text-align: center;
  font-size: 3.6rem;
  line-height: 6.5rem;
  letter-spacing: 0;
  color: #985837;
  padding: 9rem 0 10rem;
  font-weight: 900;
}
@media screen and (max-width: 749px) {
  p.lead__p {
    font-size: 2rem;
    line-height: 4.5rem;
    padding: 4rem 0 4rem;
  }
}

.enjoy__cont {
  display: flex;
  background: #fff;
  padding: 3em 3em;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
}
@media screen and (max-width: 749px) {
  .enjoy__cont {
    flex-direction: column-reverse;
    padding: 2rem;
  }
}
.enjoy__cont .l {
  flex: 1;
  margin-right: 2em;
  padding: 1rem 0.8rem;
}
@media screen and (max-width: 749px) {
  .enjoy__cont .l {
    margin: 0;
  }
}
.enjoy__cont .r {
  flex: 1;
}
.enjoy__cont .ttl {
  color: #DC000B;
  font-size: 2em;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 1em;
}
@media screen and (max-width: 749px) {
  .enjoy__cont .ttl {
    text-align: center;
    font-size: 6vw;
    margin-top: 1em;
  }
}
.enjoy__cont .txt {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 2em;
}
@media screen and (max-width: 749px) {
  .enjoy__cont .txt {
    font-size: 1em;
    text-align: justify;
  }
}
.enjoy__cont .txt_sm {
  font-size: 1.4rem;
}
@media screen and (max-width: 749px) {
  .enjoy__cont .txt_sm {
    text-indent: -1em;
    padding-left: 1em;
  }
}

section.tabArea {
  padding-top: 10rem;
  padding-bottom: 0;
}
@media screen and (max-width: 749px) {
  section.tabArea {
    padding-top: 4rem;
  }
}

.tabArea__kitchencar {
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.16);
  padding: 2.8rem;
  margin-bottom: 2.5em;
  border-radius: 2rem;
}
@media screen and (max-width: 749px) {
  .tabArea__kitchencar {
    padding: 0.5rem;
    border-radius: 1rem;
  }
}
.tabArea__kitchencar .title {
  position: relative;
  background: #92D9B2;
  padding: 5rem;
  border-radius: 10px;
}
@media screen and (max-width: 749px) {
  .tabArea__kitchencar .title {
    padding: 2rem;
  }
}
.tabArea__kitchencar .title img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: auto;
  height: 10rem;
}
@media screen and (max-width: 749px) {
  .tabArea__kitchencar .title img {
    position: static;
    top: 0;
    left: 50%;
    transform: none;
    width: 84%;
    margin: 0 auto;
    height: auto;
    margin-top: -3rem;
    margin-bottom: -3rem;
  }
}
.tabArea__kitchencar .box {
  display: none;
}
.tabArea__kitchencar ul {
  display: flex;
  margin-right: -3em;
  flex-wrap: wrap;
}
@media screen and (max-width: 749px) {
  .tabArea__kitchencar ul {
    margin-right: 0em;
    justify-content: space-around;
    margin-top: 2rem;
  }
}

.tabArea__kitchencar li {
  width: calc(33.3% - 3em);
  border: 6px solid #A1D9BA;
  border-radius: 20px;
  padding: 1em;
  margin-right: 3em;
  margin-top: 3em;
}
.tabArea__kitchencar li.okugai {
  border-color: #A1CBEF;
}
.tabArea__kitchencar li.okugai .ttl {
  background: #025DAB;
}
@media screen and (max-width: 749px) {
  .tabArea__kitchencar li {
    width: 48%;
    margin-top: 0.7rem;
    margin-right: 0;
    border: 2px solid #A1D9BA;
    border-radius: 10px;
    padding: 5px;
  }
}
.tabArea__kitchencar li .ttl {
  background: #005D29;
  text-align: center;
  font-size: 1em;
  color: #fff;
  margin-top: 0.8em;
  border-radius: 2em;
  padding: 0.4em;
}
@media screen and (max-width: 749px) {
  .tabArea__kitchencar li .ttl {
    font-size: 1.2rem;
  }
}
.tabArea__kitchencar li .txt {
  text-align: center;
  margin-top: 0.8em;
  font-size: 1.22em;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 749px) {
  .tabArea__kitchencar li .txt {
    font-size: 1.2rem;
  }
}
.tabArea__kitchencar li .kome {
  font-size: 1.4rem;
  letter-spacing: 0px;
  text-align: center;
}
.tabArea__kitchencar li.donguri {
  border: none;
  padding: 6rem;
  margin-top: 13rem;
}
@media screen and (max-width: 749px) {
  .tabArea__kitchencar li.donguri {
    border: none;
    padding: 2rem;
    margin-top: 3rem;
  }
}

.tabArea__kitchencar:nth-of-type(2) .title {
  background: #F58F94;
}
.tabArea__kitchencar:nth-of-type(2) .title img {
  margin-top: -1rem;
  margin-bottom: -1rem;
}
.tabArea__kitchencar:nth-of-type(2) li {
  border: 6px solid #F58F94;
}
@media screen and (max-width: 749px) {
  .tabArea__kitchencar:nth-of-type(2) li {
    border: 2px solid #F58F94;
  }
}
.tabArea__kitchencar:nth-of-type(2) li .ttl {
  background: #DC000B;
}

.new-con {
  position: relative;
  border: 6px solid #003188;
  background: #D5E4FF;
  border-radius: 3rem;
  margin-top: 3em;
}
@media screen and (max-width: 749px) {
  .new-con {
    margin-top: 1em;
  }
}
.new-con .aowaku_pa {
  width: 11rem;
  height: 11rem;
  top: 2rem;
  left: 2rem;
  position: absolute;
}
@media screen and (max-width: 749px) {
  .new-con .aowaku_pa {
    width: 8rem;
    height: 8rem;
    top: -1rem;
    left: -1rem;
  }
}
.new-con .new-con__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 749px) {
  .new-con .new-con__row {
    display: block;
  }
}
.new-con .new-con__l {
  width: 50%;
  margin-right: 2em;
  padding: 0 4rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 749px) {
  .new-con .new-con__l {
    width: 100%;
    margin-right: 0;
    padding: 2rem;
  }
}
.new-con .new-con__r {
  flex: 1;
}
.new-con .new-con__p {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 1em;
  text-align: center;
  margin-top: 1rem;
}
@media screen and (max-width: 749px) {
  .new-con .new-con__p {
    font-size: 1.8rem;
  }
}
.new-con .new-con__p span {
  font-size: 2.4rem;
  font-weight: bold;
  display: block;
}
@media screen and (max-width: 749px) {
  .new-con .new-con__p span {
    font-size: 1.8rem;
  }
}
.new-con .taisyou {
  max-width: 32rem;
  width: 80%;
  margin: 0 auto;
}

.new-con:nth-of-type(2) .new-con__r img {
  position: absolute;
  top: -2rem;
  right: 7rem;
  width: 57rem;
}
@media screen and (max-width: 749px) {
  .new-con:nth-of-type(2) .new-con__r img {
    position: static;
    width: 90%;
    margin: 0 auto;
  }
}

.new-con:nth-of-type(3) {
  border: 6px solid #00984B;
  background: #96EDC1;
}
.new-con:nth-of-type(3) .new-con__l {
  width: 50%;
  margin-right: 2em;
  padding: 6rem 4rem;
}
@media screen and (max-width: 749px) {
  .new-con:nth-of-type(3) .new-con__l {
    width: 100%;
    margin-right: 2em;
    padding: 4rem 2rem;
    padding-bottom: 0;
  }
}
.new-con:nth-of-type(3) .new-con__r {
  padding-right: 3rem;
}
@media screen and (max-width: 749px) {
  .new-con:nth-of-type(3) .new-con__r {
    padding: 2rem;
  }
}

.new-con-mini {
  position: relative;
  border: 6px solid #6F3E8F;
  background: #E1B8FC;
  border-radius: 3rem;
  margin-top: 3em;
  padding: 2rem;
}
@media screen and (max-width: 749px) {
  .new-con-mini {
    margin-top: 1em;
  }
}
.new-con-mini__Wrap {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 2.4rem;
}
@media screen and (max-width: 749px) {
  .new-con-mini__Wrap {
    display: block;
  }
}
.new-con-mini:nth-of-type(2) {
  border: 6px solid #E43D01;
  background: #FFD7C9;
}
.new-con-mini:nth-of-type(2) img:nth-of-type(1) {
  margin-bottom: -2rem;
}
.new-con-mini:nth-of-type(2) img:nth-of-type(2) {
  margin-bottom: -2rem;
  padding: 0 2rem;
}
@media screen and (max-width: 749px) {
  .new-con-mini:nth-of-type(2) img:nth-of-type(2) {
    padding: 0;
  }
}

.new-con-big {
  position: relative;
  border: 6px solid #C30063;
  background: #FFC9D0;
  border-radius: 3rem;
  margin-top: 3em;
  padding: 2rem;
}
.new-con-big .aowaku_pa {
  width: 11rem;
  height: 11rem;
  top: 2rem;
  left: 2rem;
  position: absolute;
}
@media screen and (max-width: 749px) {
  .new-con-big .aowaku_pa {
    width: 7rem;
    height: 7rem;
    top: 2rem;
    left: 2rem;
  }
}
.new-con-big__ttl {
  width: 87rem;
  margin: 0 auto;
  margin-top: -5rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 749px) {
  .new-con-big__ttl {
    margin-top: 1rem;
    padding-left: 8rem;
    margin-bottom: 3rem;
  }
}
.new-con-big__row2retu {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 749px) {
  .new-con-big__row2retu {
    display: block;
  }
}
.new-con-big__row2retu img {
  width: 48%;
  max-width: 63rem;
}
@media screen and (max-width: 749px) {
  .new-con-big__row2retu img {
    width: 100%;
    margin-top: 2rem;
  }
}
.new-con-big__row3retu {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}
@media screen and (max-width: 749px) {
  .new-con-big__row3retu {
    display: block;
  }
}
.new-con-big__row3retu img {
  width: 31%;
}
@media screen and (max-width: 749px) {
  .new-con-big__row3retu img {
    margin-top: 3rem;
    width: 100%;
  }
}

.new-con-big.eventShow {
  border: 6px solid #0080C3;
  background: #D3E5F6;
}
.new-con-big.eventShow .new-con-big__ttl {
  width: 63.4rem;
  margin-bottom: 2.5rem;
  margin-top: 0;
}
@media screen and (max-width: 749px) {
  .new-con-big.eventShow .new-con-big__ttl {
    padding: 0;
    width: 80%;
  }
}
.new-con-big.eventShow p.new-con-big__p {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1.5em;
  font-weight: 900;
}
@media screen and (max-width: 749px) {
  .new-con-big.eventShow p.new-con-big__p {
    font-size: 1.8rem;
  }
}
.new-con-big.eventShow .new-con-big__row2retu {
  position: relative;
  justify-content: center;
  gap: 5rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
}
.new-con-big.eventShow .new-con-big__row2retu:not(:last-child) {
  border-bottom: 8px dotted #0080C3;
}
.new-con-big.eventShow .new-con-big__row2retu .date {
  position: absolute;
  top: -4rem;
  left: -1.4rem;
  width: 15rem;
}
@media screen and (max-width: 749px) {
  .new-con-big.eventShow .new-con-big__row2retu .date {
    top: -5rem;
    left: -1.4rem;
    width: 8rem;
  }
}
@media print, screen and (min-width: 750px) {
  .new-con-big.eventShow .new-con-big__row2retu .date.n2 {
    left: 27.6rem;
  }
}
.new-con-big.eventShow .new-con-big__row2retu img {
  width: 53rem;
}
@media screen and (max-width: 749px) {
  .new-con-big.eventShow .new-con-big__row2retu img {
    width: 100%;
  }
}

.asonde {
  padding-top: 4rem;
  background-color: #FBE3E6;
  background-image: radial-gradient(#FCEBEF 2rem, transparent 2rem), radial-gradient(#FCEBEF 2rem, transparent 2rem);
  margin-bottom: 10rem;
  padding-bottom: 15rem;
}
@media screen and (max-width: 749px) {
  .asonde {
    padding-bottom: 7rem;
  }
}

.asonde__white {
  background: #fff;
  padding: 6rem 2em;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
}
@media screen and (max-width: 749px) {
  .asonde__white {
    box-shadow: none;
    padding: 2rem;
  }
}

@media screen and (max-width: 749px) {
  .w1280-asonde {
    padding: 0;
  }
}

.asonde__white__top .r {
  margin-left: 2em;
}
@media screen and (max-width: 749px) {
  .asonde__white__top .r {
    margin: 0;
  }
}
.asonde__white__top .ttl {
  color: #DC000B;
  font-size: 2em;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 1em;
}
@media screen and (max-width: 749px) {
  .asonde__white__top .ttl {
    margin-bottom: 1em;
    text-align: center;
    margin-top: 1em;
    font-size: 6vw;
    line-height: 1.5;
  }
}
.asonde__white__top .txt {
  font-size: 1.2em;
  margin-bottom: 2em;
}
@media screen and (max-width: 749px) {
  .asonde__white__top .txt {
    font-size: 1.5rem;
    margin-bottom: 2em;
    text-align: justify;
  }
}
.asonde__white__top .txt_sm {
  font-size: 0.9em;
}

.asonde__aowaku {
  position: relative;
  border: 6px solid #FFAFB9;
  border-radius: 20px;
  padding: 2em;
  margin-top: 3em;
  background-color: #FFEE9B;
}
@media screen and (max-width: 749px) {
  .asonde__aowaku {
    padding: 1em;
  }
}
.asonde__aowaku .cont {
  flex: 1;
  margin-right: 2em;
}
@media screen and (max-width: 749px) {
  .asonde__aowaku .cont {
    margin-bottom: 4rem;
    margin-right: 0;
  }
}
.asonde__aowaku .cont p {
  font-size: 0.8em;
  background: #fff;
  color: #005824;
  text-align: center;
  font-weight: 700;
  padding: 0.5em;
  border-radius: 2em;
  margin-top: 1em;
}
@media screen and (max-width: 749px) {
  .asonde__aowaku .cont p {
    font-size: 5vw;
  }
}
.asonde__aowaku .cont.p2 {
  flex: auto;
  width: 25%;
}
@media screen and (max-width: 749px) {
  .asonde__aowaku .cont.p2 {
    width: auto;
  }
}
.asonde__aowaku .cont.p2 p {
  display: inline-block;
  width: 48%;
}
@media screen and (max-width: 749px) {
  .asonde__aowaku .cont.p2 p {
    display: block;
    width: auto;
  }
}
.asonde__aowaku .cont.p2 p:nth-child(3) {
  background: none;
  color: unset;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 0;
  color: #ffef24;
}
.asonde__aowaku .aowaku_pa {
  position: absolute;
  top: 1.7rem;
  left: 1rem;
  width: 13rem;
  height: 13rem;
}
@media screen and (max-width: 749px) {
  .asonde__aowaku .aowaku_pa {
    width: 7rem;
    height: 7rem;
    top: 2rem;
    left: 2rem;
  }
}
.asonde__aowaku .aowaku_pa.oyako {
  left: auto;
  right: 5rem;
  height: 21rem;
  width: 12.5rem;
  top: 0;
}

.asonde__aowaku_ttl2 {
  max-height: 16rem;
  width: auto;
  margin: 0 auto;
  margin-top: -8rem;
  margin-bottom: 1em;
}
@media screen and (max-width: 749px) {
  .asonde__aowaku_ttl2 {
    max-height: none;
    width: 54vw;
  }
}

.asonde__aowaku.greenBack {
  background-color: #005824;
  border: 5px solid #CB853D;
}
.asonde__aowaku.greenBack .asonde__aowaku_ttl2 {
  max-height: 9.4rem;
  margin-top: 0.7rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 749px) {
  .asonde__aowaku.greenBack .asonde__aowaku_ttl2 {
    margin-top: 2rem;
    margin-bottom: 4rem;
    width: 75%;
    margin-right: 0;
  }
}
.asonde__aowaku.greenBack .aowaku_pa.oyako {
  left: auto;
  right: 8rem;
  height: 21rem;
  width: 12.5rem;
  top: -2rem;
}
@media screen and (max-width: 749px) {
  .asonde__aowaku.greenBack .aowaku_pa.oyako {
    display: none;
  }
}

.newcar {
  margin-top: -5rem;
  padding-top: 5rem;
  margin-bottom: 8rem;
}
.newcar.dotBG {
  background-color: #E9EFF9;
  background-image: radial-gradient(#EFF9FE 2rem, transparent 2rem), radial-gradient(#EFF9FE 2rem, transparent 2rem);
}
.newcar .wadaino {
  text-align: center;
  font-size: 4.5rem;
  line-height: 1.44;
  font-weight: 900;
  letter-spacing: 0;
  color: #0080C8;
  margin-top: 11rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 749px) {
  .newcar .wadaino {
    font-size: 1.6rem;
    margin-top: 4rem;
    margin-bottom: 3rem;
  }
}
.newcar .newcar-list01 {
  background: #fff;
  padding: 2em 1em;
  border-radius: 2rem;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 749px) {
  .newcar .newcar-list01 {
    display: block;
  }
}
.newcar .newcar-list01__item {
  width: 30%;
  max-width: 35rem;
  display: block;
}
@media screen and (max-width: 749px) {
  .newcar .newcar-list01__item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 4rem;
  }
}
.newcar .newcar-list01__item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.newcar .newcar-list01__item p {
  position: relative;
  background: #DC000B;
  color: #fff;
  text-align: center;
  padding: 0.5em 0;
  border-radius: 2em;
  font-size: 2.2rem;
}
.newcar .newcar-list01__item p:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(0, -50%);
  right: 1.5rem;
  width: 1rem;
  height: 2rem;
  background: url(../../imgs/arrow.png) no-repeat center/contain;
}
.newcar .newcar-list01__item:nth-of-type(1), .newcar .newcar-list01__item:nth-of-type(2) {
  width: 50%;
  max-width: 50rem;
}
@media screen and (max-width: 749px) {
  .newcar .newcar-list01__item:nth-of-type(1), .newcar .newcar-list01__item:nth-of-type(2) {
    width: 100%;
    max-width: 100%;
  }
}
.newcar .newcar-list01__item:nth-of-type(1) p, .newcar .newcar-list01__item:nth-of-type(2) p {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 749px) {
  .newcar .newcar-list01__item:nth-of-type(1) p, .newcar .newcar-list01__item:nth-of-type(2) p {
    width: 100%;
  }
}
.newcar .newcar-list01__item:nth-of-type(2) img {
  padding: 0 3rem;
}

.newcar-single {
  letter-spacing: 1px;
  background: #fff;
  padding: 2em 4rem;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.16);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  margin-bottom: 6rem;
  border: 5px solid #0297DE;
}
@media screen and (max-width: 749px) {
  .newcar-single {
    padding: 1em;
    display: block;
  }
}
.newcar-single .r,
.newcar-single .l {
  flex: 1;
}
@media screen and (max-width: 749px) {
  .newcar-single .l {
    margin-bottom: 2rem;
  }
}
.newcar-single .l img {
  padding-right: 4rem;
}
@media screen and (max-width: 749px) {
  .newcar-single .l img {
    padding-right: 0;
    margin-bottom: 1rem;
  }
}
.newcar-single .newcar-single__p {
  text-align: end;
  font-size: 1.4rem;
  font-weight: 100;
}
.newcar-single .newcar-r-ttl {
  font-size: 2.4rem;
  font-weight: 900;
  margin: 0;
}
.newcar-single .newcar-r-spec {
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0.5em;
}
.newcar-single .newcar-r-kakaku {
  font-size: 1.8rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 749px) {
  .newcar-single .newcar-r-kakaku {
    display: block;
  }
}
.newcar-single .newcar-r-kakaku .r {
  font-size: 3.6rem;
  font-weight: 900;
  text-align: end;
  line-height: 1;
}
@media screen and (max-width: 749px) {
  .newcar-single .newcar-r-kakaku .r {
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 1rem;
  }
}
.newcar-single .newcar-r-kakaku .r .yen {
  font-size: 3rem;
}
.newcar-single .newcar-r-kakaku .r .kome {
  display: block;
  font-size: 1.4rem;
}
@media screen and (max-width: 749px) {
  .newcar-single .newcar-r-kakaku .r .kome {
    width: 100%;
  }
}
.newcar-single .newcar-r-kome {
  font-size: 1rem;
  font-weight: 100;
  margin: 1em 0;
}
.newcar-single .newcar-r-last {
  font-size: 1.4rem;
  font-weight: 100;
  line-height: 1.43;
  margin-top: 1em;
}
.newcar-single .newcar-r-last span {
  font-weight: 500;
  display: block;
}
.newcar-single .syouhi {
  font-size: 1.4rem;
}

.newcar-red {
  letter-spacing: 0;
  font-size: 1.4rem;
  font-weight: 100;
  padding: 2em;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.16);
  display: flex;
  justify-content: center;
  align-items: top;
  gap: 3.4rem;
  margin-bottom: 6rem;
  border: 5px solid #C50018;
  background: #fff;
}
@media screen and (max-width: 749px) {
  .newcar-red {
    display: block;
    padding: 1em;
  }
}
.newcar-red.top {
  margin-bottom: -5px;
}
.newcar-red .l {
  display: flex;
  flex: 1;
}
@media screen and (max-width: 749px) {
  .newcar-red .l {
    display: block;
    margin-bottom: 2rem;
  }
}
.newcar-red .r {
  flex: 1;
}
.newcar-red .newcar-red__box {
  flex: 1;
}
.newcar-red .newcar-red__box.p70 {
  width: 57.3%;
  flex: none;
}
@media screen and (max-width: 749px) {
  .newcar-red .newcar-red__box.p70 {
    width: 100%;
  }
}
.newcar-red .newcar-red__box p {
  margin-top: 1em;
}

.newcar-blue {
  letter-spacing: 0;
  font-size: 1.4rem;
  font-weight: 100;
  padding: 2em;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.16);
  margin-bottom: 3rem;
  border: 5px solid #0297DE;
  background: #fff;
}
.newcar-blue p.newcar-blue__p {
  margin: 1em 0;
}
.newcar-blue p.newcar-blue__p2 {
  font-weight: 500;
  color: #0297DE;
}
.newcar-blue p.newcar-blue__p2 span {
  font-weight: 900;
}

.newcar-btmTxt {
  letter-spacing: 0;
  font-size: 1.4rem;
  font-weight: 100;
  padding: 2em;
  margin-bottom: 3rem;
}
@media screen and (max-width: 749px) {
  .newcar-btmTxt {
    padding: 0;
  }
}
.newcar-btmTxt .top {
  color: #DC000B;
  font-weight: 600;
}
.newcar-btmTxt .newcar-btmTxt__row {
  display: flex;
  font-weight: 600;
  text-align: center;
  gap: 1em;
  margin: 0.6em 0;
}
@media screen and (max-width: 749px) {
  .newcar-btmTxt .newcar-btmTxt__row {
    display: block;
  }
}
.newcar-btmTxt .newcar-btmTxt__row .l {
  border: 1px solid #DC000B;
  background: #fff;
  flex: 1;
  color: #DC000B;
}
@media screen and (max-width: 749px) {
  .newcar-btmTxt .newcar-btmTxt__row .l {
    display: block;
    text-align: left;
  }
}
.newcar-btmTxt .newcar-btmTxt__row .r {
  border: 1px solid #000000;
  background: #D3EDFC;
  width: 19em;
}
@media screen and (max-width: 749px) {
  .newcar-btmTxt .newcar-btmTxt__row .r {
    display: block;
    width: 100%;
  }
}

.gensen {
  background-color: #E9F3D9;
  background-image: radial-gradient(#F4F9EB 2rem, transparent 2rem), radial-gradient(#F4F9EB 2rem, transparent 2rem);
  margin-bottom: 4rem;
  padding-bottom: 3rem;
}
.gensen .gensen__p {
  font-size: 3.6rem;
  text-align: center;
  margin-top: 1em;
  margin-bottom: 1em;
}
@media screen and (max-width: 749px) {
  .gensen .gensen__p {
    font-size: 5.5vw;
  }
}
.gensen .gensen.btn01 {
  position: relative;
  font-size: 4.5rem;
  background: #DC000B;
  color: #fff;
  max-width: 80rem;
  width: 80%;
  display: block;
  text-align: center;
  padding: 0.3em 0;
  padding-bottom: 0.45em;
  border-radius: 2em;
  margin: 0 auto;
}
.gensen .gensen.btn01:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(0, -50%);
  right: 2.5rem;
  width: 1.5rem;
  height: 3rem;
  background: url(../../imgs/arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 749px) {
  .gensen .gensen.btn01 {
    font-size: 2.7rem;
    width: 90%;
  }
}

img.h2__hazure {
  width: 20rem;
  height: auto;
  bottom: -3rem;
  top: auto;
  left: 50%;
  transform: translate(106%, 0);
}
@media screen and (max-width: 749px) {
  img.h2__hazure {
    bottom: -3rem;
    left: 83%;
    width: 7rem;
    transform: translate(-74%, 0);
  }
}

.tyusen {
  background-color: #FFED98;
  background-image: radial-gradient(#FFF4B3 2rem, transparent 2rem), radial-gradient(#FFF4B3 2rem, transparent 2rem);
  padding-bottom: 1rem;
}
.tyusen article {
  background: #fff;
  border: 10px solid #F0831F;
  border-radius: 2rem;
  padding: 4rem 9rem;
  padding-top: 0;
}
@media screen and (max-width: 749px) {
  .tyusen article {
    padding: 2rem 2rem;
  }
}
.tyusen .tyusen__ul {
  display: flex;
  justify-content: flex-end;
  position: relative;
  border-bottom: 5px dotted #DC000C;
}
@media screen and (max-width: 749px) {
  .tyusen .tyusen__ul {
    flex-direction: column;
    padding: 2rem 0;
  }
}
.tyusen .tyusen__ul:before {
  position: absolute;
  content: "";
  top: 3rem;
  left: -5rem;
  width: 23rem;
  height: 23rem;
  background: url(../../imgs/tyusen_1.png) no-repeat center/contain;
}
@media screen and (max-width: 749px) {
  .tyusen .tyusen__ul:before {
    top: -2rem;
    left: -4rem;
    width: 10rem;
    height: 10rem;
  }
}
.tyusen .tyusen__ul.nito:before {
  background: url(../../imgs/tyusen_2.png) no-repeat center/contain;
}
.tyusen .tyusen__ul.santo:before {
  background: url(../../imgs/tyusen_3.png) no-repeat center/contain;
}
.tyusen .tyusen__ul.yonto:before {
  background: url(../../imgs/tyusen_4.png) no-repeat center/contain;
}
.tyusen .tyusen__ul li {
  width: 25rem;
  margin: 3rem 1.7rem;
}
@media screen and (max-width: 749px) {
  .tyusen .tyusen__ul li {
    width: 100%;
    margin: 1rem 0;
    padding-left: 3rem;
  }
}
.tyusen .tyusen__ul li:last-child {
  margin-right: 0;
}
.tyusen .tyusen__ul li img {
  margin-bottom: -3rem;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.tyusen .tyusen__ul li p {
  font-size: 1.8rem;
  line-height: 1.3;
}
.tyusen .tyusen__ul li p span {
  font-size: 1.6rem;
  display: block;
}
.tyusen .tyusen__ul li.yonto {
  width: 53rem;
}
.tyusen .tyusen__ul li.yonto img {
  aspect-ratio: 2/1.1;
}
.tyusen .tyusen__ul.yonto {
  position: relative;
  border: none;
}
.tyusen .tyusen__ul.yonto .okome {
  width: 53rem;
}
@media screen and (max-width: 749px) {
  .tyusen .tyusen__ul.yonto .okome {
    width: auto;
    padding: 0;
  }
}
.tyusen .tyusen__ul.yonto .okome img {
  aspect-ratio: 2/1.1;
}
@media screen and (max-width: 749px) {
  .tyusen .tyusen__ul.yonto .okome img {
    margin-bottom: 0.5rem;
  }
}
.tyusen .tyusen__ul.yonto .ticket img {
  margin: 0.7rem 0;
}
.tyusen .tyusen__ul.yonto .osukina {
  position: absolute;
  bottom: 0rem;
  left: -4rem;
  font-size: 2.2rem;
  text-align: center;
}
@media screen and (max-width: 749px) {
  .tyusen .tyusen__ul.yonto .osukina {
    position: static;
    font-size: 2rem;
    text-align: center;
    margin-top: 3rem;
  }
}
.tyusen .raijyou {
  border: 10px solid #DC0016;
  margin-top: 7rem;
  padding: 3rem;
}
.tyusen .raijyou .ttl {
  width: 50rem;
  margin-bottom: 1em;
  margin-left: -2rem;
}
@media screen and (max-width: 749px) {
  .tyusen .raijyou .ttl {
    width: auto;
    margin-bottom: 1em;
    margin-left: 0;
  }
}
.tyusen .raijyou .p1 {
  font-size: 2.2rem;
}
@media screen and (max-width: 749px) {
  .tyusen .raijyou .p1 {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 3.4vw;
    margin-top: 1em;
  }
}
.tyusen .raijyou .p2 {
  font-size: 3.6rem;
  color: #DC000B;
  margin-bottom: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 749px) {
  .tyusen .raijyou .p2 {
    text-align: center;
    line-height: 1.3;
    font-size: 8vw;
  }
}
.tyusen .raijyou .p3 {
  font-size: 1.6rem;
  margin-left: 2rem;
  text-indent: -1em;
}
@media screen and (max-width: 749px) {
  .tyusen .raijyou .p3 {
    font-size: 1.2rem;
    margin-left: 2rem;
    text-indent: -1em;
  }
}
.tyusen p.kome {
  text-align: center;
  font-size: 1.6rem;
  margin-top: 2em;
  padding-bottom: 3em;
}

.teikyuubi {
  max-width: 120rem;
  width: calc(100% - 4rem);
  margin: 11rem auto 8rem;
}
@media screen and (max-width: 749px) {
  .teikyuubi {
    margin: 5rem auto 5rem;
  }
}

.access.dotBG:before {
  height: 15rem;
}
.access h2 {
  margin-bottom: 11rem;
}
.access iframe {
  width: 100%;
  height: 94rem;
  border-radius: 1rem;
}
@media screen and (max-width: 749px) {
  .access iframe {
    height: 70vw;
  }
}
.access .p1 {
  text-align: center;
  margin-top: 1em;
}
@media screen and (max-width: 749px) {
  .access .p1 {
    line-height: 1;
  }
}
.access .p1 span {
  margin: 0 1em;
  font-size: 1.8rem;
  display: inline-block;
}
@media screen and (max-width: 749px) {
  .access .p1 span {
    font-size: 1.2rem;
  }
}

footer {
  margin-top: 6rem;
}
footer .ft_bg {
  background: url(../../imgs/ft_bg.png) no-repeat top center/cover;
}
footer .row {
  align-items: flex-start;
  padding: 2em 0;
}
@media screen and (max-width: 749px) {
  footer .row {
    padding: 2em 0;
  }
}
footer .ft_logo {
  flex: none;
  width: 34rem;
  margin-right: 5rem;
}
@media screen and (max-width: 749px) {
  footer .ft_logo {
    width: 30rem;
    margin-right: 0;
    margin: 0 auto;
  }
}
footer .r {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
@media screen and (max-width: 749px) {
  footer .r {
    flex-direction: column;
    gap: 1rem;
    margin-top: 4rem;
    align-items: center;
  }
}

.ft_nav {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media screen and (max-width: 749px) {
  .ft_nav {
    align-items: center;
    text-align: center;
  }
}
.ft_nav li {
  font-size: 1.8rem;
  height: 1.5em;
  margin-bottom: 1em;
  letter-spacing: 0;
  font-weight: 900;
  line-height: 1.3;
  display: flex;
  align-items: center;
}
.ft_nav li img {
  height: 1.2em;
  width: auto;
  display: inline-block;
  margin-left: 0.5em;
  vertical-align: top;
}
.ft_nav li.nigyo {
  margin-top: 0.7em;
}

.navWrap {
  background-color: #FDE6B9;
  background-image: radial-gradient(#FEF2DB 2rem, transparent 2rem), radial-gradient(#FEF2DB 2rem, transparent 2rem);
  background-size: 10rem 10rem;
  background-position: 0px 5rem, 5rem 10rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.navWrap > img {
  width: 70vw;
}
.navWrap li {
  font-size: 1.8rem;
  margin: 2.5rem 0px;
  font-weight: bolder;
  line-height: 1.5;
}
.navWrap li img {
  height: 2.5rem;
  width: auto;
  margin: 0 auto;
}

li.spnav-li-img img {
  display: inline-block;
  margin-left: 7px;
}/*# sourceMappingURL=style.css.map */