/* # =================================================================
   # BASE
   # ================================================================= */
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=BIZ+UDPGothic&display=swap");
:root {
  --color-a:#333;
  --color-b:#004F8E;
  --color-c:#FFAA00;
  --color-d:#fff;
  --color-e:#F5F5F5;
  --color-f:#BDBDBD;
  --color-g:#C30202;
  --font-xl:3vw;
  --font-l:1.8vw;
  --font-lm:1.3vw;
  --font-m:1vw;
  --font-s:0.8vw;
  --font-a:"Abril Fatface", serif;
  --font-b:"BIZ UDPGothic", sans-serif;
}
@media screen and (max-width: 767px) {
  :root {
    --font-xl:28px;
    --font-l:20px;
    --font-lm:16px;
    --font-m:14px;
    --font-s:12px;
  }
}

body {
  background: var(--color-d);
  font-family: var(--font-b);
  color: var(--color-a);
  font-size: var(--font-m);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  font-feature-settings: "palt";
}

a {
  color: var(--color-b);
  text-decoration: none;
  transition: all 0.5s;
  outline: none;
}
@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none !important;
  }
}

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

address {
  font-style: normal;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

dt {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

strong {
  font-weight: 600;
}

iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border: 0;
}

.font-s {
  font-size: var(--font-s);
}

.font-red {
  color: var(--color-g);
}

.font-blue {
  color: var(--color-b);
}

.bg-blue {
  background: var(--color-b);
  color: var(--color-d);
}

.btn a {
  background: var(--color-d) url(../img/ico_arrow_b.svg) no-repeat 90% 1em;
  background-size: 1.5em auto;
  border: 2px solid var(--color-b);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  padding: 0.8em 3em 0.8em 2em;
  border-radius: 5em;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .btn a {
    max-width: 250px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
.btn a:hover {
  background: var(--color-d) url(../img/ico_arrow_b.svg) no-repeat 92% 1em;
  background-size: 1.5em auto;
  border: 2px solid var(--color-c);
}

.multiple {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* display
------------------------------ */
.pc-none {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc-none {
    display: block;
  }
}

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

.grecaptcha-badge {
  display: none;
}

/* align
------------------------------ */
.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

@media screen and (min-width: 769px) {
  .pc-txt-center {
    text-align: center;
  }
}

/* # =================================================================
   # AREA
   # ================================================================= */
.row {
  width: 96%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .row {
    width: 100%;
  }
}
.row.row-s {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .row.row-s {
    width: 90%;
  }
}

.radius {
  border-radius: 3em;
}
@media screen and (max-width: 767px) {
  .radius {
    border-radius: 0;
  }
}

/* # =================================================================
   # MAIN VISUAL
   # ================================================================= */
#slide {
  height: 50vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  #slide {
    height: 85vh;
    width: 94%;
    margin: 0 auto;
  }
}
#slide h2 {
  position: absolute;
  left: 3em;
  top: 3em;
  width: 10em;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  #slide h2 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
#slide .slick-list {
  height: 50vw;
  overflow: hidden;
  border-radius: 3em;
}
@media screen and (max-width: 767px) {
  #slide .slick-list {
    height: 85vh;
    border-radius: 1em;
  }
}
@media screen and (max-width: 767px) {
  #slide .slick-list img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 85vh;
  }
}
#slide .slick-dots {
  right: 2em;
  bottom: -2.5em;
  width: 20%;
}
@media screen and (max-width: 767px) {
  #slide .slick-dots {
    width: 100%;
    right: inherit;
  }
}
#slide .slick-dots li {
  margin: 0;
}
#slide .slick-dots li button:before {
  width: 30px !important;
  height: 30px !important;
  color: var(--color-a);
  font-size: 10px !important;
}
#slide .slick-dots li.slick-active button:before {
  color: var(--color-c);
}
#slide .add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
/* # =================================================================
   # HEADER
   # ================================================================= */
#header {
  position: sticky;
  top: 0;
  background: var(--color-d);
  z-index: 3;
  padding: 1em 2em;
}
@media screen and (max-width: 767px) {
  #header {
    padding: 1em;
  }
}
#header .logo {
  width: 22em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #header .logo {
    width: 13em;
  }
}
#header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}
#header .row .header-area {
  display: flex;
  align-items: center;
}
#header .row .header-area dl {
  display: flex;
  align-items: center;
  margin-right: 1em;
  color: var(--color-b);
}
@media screen and (max-width: 767px) {
  #header .row .header-area dl {
    margin-right: 0.8em;
  }
}
#header .row .header-area dl dt {
  font-size: var(--font-l);
  font-weight: 600;
  font-family: var(--font-a);
  margin-right: 0.5em;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  #header .row .header-area dl dt {
    margin: 0;
  }
}
#header .row .header-area dl dt a {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #header .row .header-area dl dt a {
    width: 2em;
    height: 2em;
    border: 2px solid var(--color-b);
    justify-content: center;
    border-radius: 50%;
    text-align: center;
  }
}
#header .row .header-area dl dt a img {
  width: 0.6em;
  margin-right: 0.3em;
}
@media screen and (max-width: 767px) {
  #header .row .header-area dl dt a img {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  #header .row .header-area dl dt span {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #header .row .header-area dl dd {
    display: none;
  }
}
#header .row .header-area ul {
  display: flex;
  align-items: center;
}
#header .row .header-area ul .btn {
  margin-right: 1em;
}
#header .row .header-area ul .btn:first-child img {
  display: none;
}
@media screen and (max-width: 767px) {
  #header .row .header-area ul .btn {
    margin-right: 0.8em;
  }
  #header .row .header-area ul .btn:first-child span {
    display: none;
  }
  #header .row .header-area ul .btn:first-child img {
    display: block;
    width: 1.3em;
  }
  #header .row .header-area ul .btn:last-child {
    display: none;
  }
  #header .row .header-area ul .btn.stickybtm {
    position: fixed;
    left: 1em;
    bottom: 1.2em;
    margin: 0;
    width: calc(100% - 7em);
  }
  #header .row .header-area ul .btn.stickybtm a {
    display: block;
    background-image: url(../img/ico_arrow_sb.svg);
    background-repeat: no-repeat;
    background-position: 92% 1.3em;
    background-size: 0.5em auto;
    padding: 0.8em;
    max-width: inherit;
    width: auto;
    height: auto;
    border: none;
    border: 2px solid var(--color-b);
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
    padding: 0.8em 2em;
    border-radius: 5em;
  }
}
#header .row .header-area ul .btn a {
  background-image: none;
  padding: 0.5em 1.5em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #header .row .header-area ul .btn a {
    width: 2em;
    height: 2em;
    border: 2px solid var(--color-b);
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    box-shadow: none;
    padding: 1.25em;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  #header .row .header-area .insta a {
    width: 2em;
    height: 2em;
    border: 2px solid var(--color-b);
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    box-shadow: none;
    padding: 1.25em;
    display: flex;
    align-items: center;
  }
  #header .row .header-area .insta a img {
    width: 1.4em;
  }
}

/* # =================================================================
   # GNAVI
   # ================================================================= */
.openbtn {
  position: fixed;
  bottom: 1em;
  right: 1em;
  z-index: 5;
  cursor: pointer;
  width: 5em;
  height: 5em;
  border: 2px solid var(--color-d);
  border-radius: 5em;
  background: var(--color-b);
  caret-color: transparent;
  padding: 0;
  animation: animationfade 1s ease-in-out;
}
@media screen and (max-width: 767px) {
  .openbtn {
    width: 4em;
    height: 4em;
  }
}
.openbtn span:nth-of-type(1), .openbtn span:nth-of-type(2), .openbtn span:nth-of-type(3) {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  height: 1px;
  background: var(--color-d);
  width: 50%;
  right: 25%;
}
.openbtn span:nth-of-type(1) {
  top: 1.8em;
}
@media screen and (max-width: 767px) {
  .openbtn span:nth-of-type(1) {
    top: 1.2em;
  }
}
.openbtn span:nth-of-type(2) {
  top: 2.5em;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .openbtn span:nth-of-type(2) {
    top: 1.8em;
  }
}
.openbtn span:nth-of-type(3) {
  top: 3.2em;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .openbtn span:nth-of-type(3) {
    top: 2.4em;
  }
}
.openbtn.active {
  background: var(--color-a);
}
.openbtn.active span:nth-of-type(1) {
  top: 2.5em;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .openbtn.active span:nth-of-type(1) {
    top: 1.9em;
  }
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  transform: rotate(45deg);
  top: 2.5em;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .openbtn.active span:nth-of-type(3) {
    top: 1.9em;
  }
}

#g-nav-list {
  display: flex;
  justify-content: space-between;
}
#g-nav-list figure {
  width: 50%;
}
#g-nav-list figure img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  height: 100vh;
}
@media screen and (max-width: 767px) {
  #g-nav-list{
  display: block;
}
  #g-nav-list figure {
    display: none;
  }
}
#g-nav-list .g-nav-nav-area {
  width: 50%;
}
@media screen and (max-width: 767px) {
  #g-nav-list .g-nav-nav-area {
    width: 100%;
  }
}

.g-nav-logo {
  width: 6em;
  margin:2em auto 1.5em auto;
}

@keyframes animationblur {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes animationfade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#g-nav {
  font-size: 1.1rem;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  transition: opacity 0.3s linear;
  z-index: -2;
  background: var(--color-b);
  opacity: 0;
}
#g-nav.active {
  opacity: 1;
  z-index: 4;
  overflow: auto;
}
#g-nav nav {
  display: flex;
  justify-content: center;
}

#g-nav li{
  margin-left:2em;
}

#g-nav li a {
  display: block;
  padding: 0.3em 0;
  color: var(--color-e);
  position: relative;
}
#g-nav li a:before {
  content: "";
  position: absolute;
  left: -1em;
  top: 1.3em;
  content: "";
  width: 0.2em;
  height: 0.2em;
  background: var(--color-c);
}

#g-nav li ul{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5em;
  text-align: center;
  margin: 1em 0 0 -2em;
}

#g-nav li ul li{
  margin-left:0;
}

#g-nav li ul li a:before{
  display: none;
}

#g-nav li ul li a{
  border-radius: 2em;
  border:2px solid var(--color-d);
  padding: 0.3em 1em;
}

#g-nav ul.sub-nav-area {
  display: flex;
  justify-content: center;
  padding: 2em 0;
}
#g-nav ul.sub-nav-area li {
  margin: 0 0.5em;
}
#g-nav ul.sub-nav-area li a:before {
  display: none;
}
#g-nav ul dl {
  padding-bottom: 2em;
}
#g-nav ul dl dt {
  line-height: 1;
  font-weight: 600;
  font-size: var(--font-l);
  font-family: var(--font-a);
  background: url(../img/ico_tel_w.svg) no-repeat left;
  background-size: 0.6em auto;
  padding-left: 1.2em;
  letter-spacing: 0.2em;
}
#g-nav ul dl dd {
  font-size: var(--font-m);
  color: var(--color-d);
  padding-left: 2em;
}
@media screen and (max-width: 767px) {
  #g-nav ul dl dd {
    padding-left: 0;
  }
}

/* # =================================================================
   # INFO
   # ================================================================= */
#info {
  position: relative;
  top: -4em;
  left: 1em;
  width: 60%;
  background: var(--color-d);
  border-radius: 3em;
  display: grid;
  grid-template-columns: 1.5fr 6fr;
  align-items: center;
  gap: 2em;
  margin-bottom: 5em;
}
@media screen and (max-width: 767px) {
  #info {
    grid-template-columns: 1fr;
    gap: 0;
    top: 0;
    left: 0;
    width: calc(100% - 4em);
    margin: 5em auto 3em auto;
    border-radius: 0.5em;
    border: 1px solid var(--color-f);
  }
}
#info h2 a {
  background: var(--color-b) url(../img/ico_popup.svg) no-repeat 90% 2em;
  background-size: 1.5em auto;
  border-radius: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  padding: 1.2em 2em 1.2em 1em;
  color: var(--color-d);
}
#info h2 a:hover {
  background: var(--color-c) url(../img/ico_popup.svg) no-repeat 90% 2em;
  background-size: 1.5em auto;
}
@media screen and (max-width: 767px) {
  #info h2 a {
    border-radius: 0.5em 0.5em 0 0;
    padding: 0.8em 2em 0.8em 1em;
    background-position: 95% 1em;
  }
  #info h2 a:hover {
    background-position: 95% 1em;
  }
  #info h2 a br {
    display: none;
  }
}
#info h2 span {
  background: var(--color-b);
  height: 6em;
  border-radius: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  padding: 1.2em 1em;
  color: var(--color-d);
}
@media screen and (max-width: 767px) {
  #info h2 span {
    height: auto;
    border-radius: 0.5em 0.5em 0 0;
    padding: 0.8em 2em 0.8em 1em;
    background-position: 95% 1em;
  }
}
@media screen and (max-width: 767px) {
  #info .info-list {
    padding: 1em;
  }
}
#info .info-list a:hover {
  color: var(--color-c);
}
#info .info-list dl {
  display: flex;
  gap: 2em;
}
@media screen and (max-width: 767px) {
  #info .info-list dl {
    display: block;
    gap: 0;
  }
}
#info .info-list dl dt {
  font-size: var(--font-s);
  color: var(--color-a);
}
#info .info-list li {
  margin: 0.5em 0 0 0;
}
#info .info-list li:last-child {
  margin: 0.2em 0 0 0;
}
@media screen and (max-width: 767px) {
  #info .info-list li {
    margin: 0.5em 0;
  }
  #info .info-list li:last-child {
    margin: 0.5em 0;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  z-index: 9999;
}
.modal .modal-content {
  background-color: var(--color-e);
  margin: 50px auto;
  padding: 0 3em 3em 3em;
  max-width: 900px;
  width: 60%;
  border-radius: 5px;
  animation: slideIn 0.3s forwards;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .modal .modal-content {
    width: 90%;
    padding: 0 2em 2em 2em;
  }
}
.modal .modal-content h3 {
  font-size: var(--font-lm);
  color: var(--color-b);
  padding: 2em 0 1em 0;
  padding-left: 1.5em;
  position: relative;
}
.modal .modal-content h3::before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  border-radius: 0.8em;
  background: var(--color-b);
  position: absolute;
  left: 0;
  top: 2.5em;
}
.modal .modal-content p {
  line-height: 2;
  margin-bottom: 1em;
}
.modal .modal-content #close {
  background: var(--color-b);
  color: var(--color-d);
  font-size: var(--font-m);
  border-radius: 2em;
  padding: 0.2em 0.5em;
  cursor: pointer;
  text-align: center;
  width: 8em;
  margin: 3em auto 0 auto;
}

@keyframes slideIn {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100px);
    opacity: 0;
  }
}
/* # =================================================================
   # CONCEPT
   # ================================================================= */
#concept {
  position: relative;
  overflow: hidden;
}
#concept .row {
  display: grid;
  grid-template-columns: 2.5fr 3fr;
  gap: 3em;
  padding-bottom: 14em;
}
@media screen and (max-width: 767px) {
  #concept .row {
    grid-template-columns: 1fr;
    padding-bottom: 7em;
  }
}
#concept .row .concept-area {
  order: 1;
  padding-left: 2em;
}
@media screen and (max-width: 767px) {
  #concept .row .concept-area {
    order: 2;
  }
}
#concept .row .concept-area h2 {
  margin-bottom: 1em;
  font-size: var(--font-l);
  font-weight: 600;
  color: var(--color-b);
  letter-spacing: 0.1em;
  background: url(../img/ico_wave3.svg) no-repeat right top;
  background-size: 3em auto;
}
@media screen and (max-width: 767px) {
  #concept .row .concept-area h2 {
    background-position: left top;
    padding-top: 2em;
  }
}
#concept .row .concept-area h2 span {
  color: var(--color-c);
}
#concept .row .concept-area p {
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  #concept .row .concept-area p.btn {
    text-align: center;
  }
}
#concept .row .concept-gallery {
  order: 2;
  position: relative;
}
@media screen and (max-width: 767px) {
  #concept .row .concept-gallery {
    order: 1;
    padding: 0 2em;
  }
}
#concept .row .concept-gallery li:first-of-type {
  width: 83%;
}
#concept .row .concept-gallery li:last-of-type {
  position: absolute;
  right: 1em;
  bottom: -10em;
  width: 32%;
}
@media screen and (max-width: 767px) {
  #concept .row .concept-gallery li:last-of-type {
    bottom: -7em;
    right: 2em;
  }
}
#concept .row .concept-gallery li img {
  border-radius: 2em;
}
@media screen and (max-width: 767px) {
  #concept .row .concept-gallery li img {
    border-radius: 0.5em;
  }
}
#concept .txt-anime-area {
  position: absolute;
  left: 0;
  bottom: 1em;
  z-index: -1;
}
#concept .txt-anime-area p {
  display: flex;
}
#concept .txt-anime-area span {
  display: block;
  font-size: 8vw;
  font-family: var(--font-a);
  color: var(--color-d);
  -webkit-text-stroke: 1px rgba(0, 79, 142, 0.43);
  letter-spacing: 0.2em;
  white-space: nowrap;
  animation: txtanimation 50s -25s infinite linear;
}
@media screen and (max-width: 767px) {
  #concept .txt-anime-area span {
    font-size: 50px;
  }
}
#concept .txt-anime-area span:last-child {
  animation: txtanimation2 50s infinite linear;
}

@keyframes txtanimation {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes txtanimation2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/* # =================================================================
   # FIELD MAP
   # ================================================================= */
#fieldmap {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 2em;
  align-items: center;
  margin-bottom: 3em;
}
@media screen and (max-width: 767px) {
  #fieldmap {
    grid-template-columns: 1fr;
  }
}
#fieldmap .btn a {
  background-image: url(../img/ico_pdf.svg);
  background-size: 1.2em auto;
}
@media screen and (max-width: 767px) {
  #fieldmap .btn {
    order: 3;
  }
}
@media screen and (max-width: 767px) {
  #fieldmap figure {
    order: 2;
  }
}
#fieldmap figure img {
  max-width: 960px;
}
#fieldmap .fieldmap-area {
  order: 1;
}
#fieldmap .fieldmap-area h2 {
  color: var(--color-b);
  font-weight: 600;
  margin-bottom: 1em;
  font-size: var(--font-l);
  text-align: center;
  letter-spacing: 0.1em;
  background: url(../img/ico_sun.svg) no-repeat center top;
  background-size: 1em auto;
  padding-top: 1em;
}
@media screen and (max-width: 767px) {
  #fieldmap .fieldmap-area h2 {
    margin: 0;
  }
}
#fieldmap .fieldmap-area h2::before {
  text-transform: uppercase;
  font-size: var(--font-m);
  font-family: var(--font-a);
  content: attr(data-title);
  display: block;
}

/* # =================================================================
   # HOW TO
   # ================================================================= */
#howto {
  margin-bottom: 3em;
  padding: 4em;
}
@media screen and (max-width: 767px) {
  #howto {
    padding: 2em;
    margin-bottom: 1em;
  }
}
#howto h2 {
  font-size: var(--font-l);
  color: var(--color-d);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  background-image: url(../img/ico_wave.svg), url(../img/ico_wave.svg);
  background-repeat: repeat-x;
  background-position: top, bottom;
  background-size: 0.8em auto, 0.8em auto;
  padding: 1.2em 0;
  margin: 0 auto 3em auto;
  width: 20em;
}
@media screen and (max-width: 767px) {
  #howto h2 {
    width: auto;
  }
}
#howto h2::before {
  text-transform: uppercase;
  font-size: var(--font-m);
  font-family: var(--font-a);
  content: attr(data-title);
  display: block;
}
#howto .howto-area {
  display: grid;
  grid-template-columns: 1fr 7fr;
  gap: 2em;
}
#howto .howto-area:last-of-type .howto-block::before {
  display: none;
}
#howto .howto-area h2 {
  background: var(--color-c);
  border-radius: 50%;
  width: 3em;
  height: 3em;
  line-height: 1.2;
  color: var(--color-a);
  text-align: center;
  font-family: var(--font-a);
  position: relative;
  z-index: 2;
}
#howto .howto-area h2 span {
  display: block;
  font-size: var(--font-m);
  margin-top: -0.8em;
}
#howto .howto-area .howto-block {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  margin-bottom: 3em;
}
#howto .howto-area .howto-block::before {
  content: "";
  position: absolute;
  left: -7.5em;
  top: 3em;
  height: 100%;
  width: 1px;
  border-left: 1px dashed var(--color-c);
}
@media screen and (max-width: 767px) {
  #howto .howto-area .howto-block {
    grid-template-columns: 1fr;
  }
  #howto .howto-area .howto-block::before {
    left: -4.2em;
  }
}
#howto .howto-area .howto-block h3 {
  font-size: var(--font-lm);
  font-weight: 600;
  margin-bottom: 1em;
}
#howto .howto-area .howto-block figure {
  border-radius: 2em;
  border: 0.3em solid var(--color-d);
}
#howto .howto-area .howto-block figure img {
  border-radius: 1.6em;
}
@media screen and (max-width: 767px) {
  #howto .howto-area .howto-block figure {
    border-radius: 1em;
  }
  #howto .howto-area .howto-block figure img {
    border-radius: 0.7em;
  }
}

/* # =================================================================
   # LUNCH DINNER
   # ================================================================= */
.bbq-ld-area {
  padding: 4em;
  margin-bottom: 3em;
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .bbq-ld-area {
    padding: 17em 1em 0 1em;
    background-size: 160% auto;
    background-position: top right;
  }
}
.bbq-ld-area:last-of-type {
  background-position: center;
}
@media screen and (max-width: 767px) {
  .bbq-ld-area:last-of-type {
    background-position: left top;
  }
}
.bbq-ld-area:last-of-type .bbq-ld-block {
  margin-left: 60%;
}
@media screen and (max-width: 767px) {
  .bbq-ld-area:last-of-type .bbq-ld-block {
    margin: 0;
  }
}
.bbq-ld-area .bbq-ld-block {
  background: var(--color-d);
  border-radius: 2em;
  padding: 3em;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .bbq-ld-area .bbq-ld-block {
    width: 100%;
    padding: 2em 1.5em 0 1.5em;
    margin: 0 auto;
    border-radius: 2em 2em 0 0;
  }
}
.bbq-ld-area .bbq-ld-block h2 {
  color: var(--color-b);
  font-weight: 600;
  margin-bottom: 1em;
  font-size: var(--font-l);
  text-align: center;
}
.bbq-ld-area .bbq-ld-block h2 span.title {
  display: block;
}
.bbq-ld-area .bbq-ld-block h2 span.self {
  position: relative;
  font-size: var(--font-m);
  letter-spacing: 0.2em;
  line-height: 1.3;
}
.bbq-ld-area .bbq-ld-block h2 span.self::before {
  content: "";
  position: absolute;
  left: -2em;
  top: 0;
  width: 1px;
  height: 1em;
  background: var(--color-b);
  transform: rotate(-30deg);
}
.bbq-ld-area .bbq-ld-block h2 span.self::after {
  content: "";
  position: absolute;
  right: -2em;
  top: 0;
  width: 1px;
  height: 1em;
  background: var(--color-b);
  transform: rotate(30deg);
}
.bbq-ld-area .bbq-ld-block p {
  margin-bottom: 2em;
}

/* # =================================================================
   # ADDINFO
   # ================================================================= */
#bbq-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  margin: 3em;
}
@media screen and (max-width: 767px) {
  #bbq-sub {
    grid-template-columns: 1fr;
    margin: 0;
  }
}
#bbq-sub .bbq-sub-area {
  padding: 0 2em 2em 2em;
}
#bbq-sub .bbq-sub-area:first-of-type {
  border-right: 1px dashed var(--color-b);
}
@media screen and (max-width: 767px) {
  #bbq-sub .bbq-sub-area:first-of-type {
    padding: 2em;
    border-right: none;
    border-top: 1px dashed var(--color-b);
    border-bottom: 1px dashed var(--color-b);
  }
}
#bbq-sub .bbq-sub-area h2 {
  color: var(--color-a);
  font-size: var(--font-lm);
  text-align: center;
  margin-bottom: 2em;
  font-weight: 600;
}
#bbq-sub .bbq-sub-area h2 span {
  display: block;
  color: var(--color-b);
  font-size: var(--font-l);
  letter-spacing: 0.1em;
  background: url(../img/ico_sun.svg) no-repeat center top;
  background-size: 1em auto;
  padding-top: 1em;
}
#bbq-sub .bbq-sub-area p {
  margin-bottom: 2em;
}

/* # =================================================================
   # ACCESS
   # ================================================================= */
#access {
  padding: 4em;
  margin-bottom: 3em;
}
@media screen and (max-width: 767px) {
  #access {
    padding: 2em;
    margin-bottom: 1em;
  }
}
#access h2 {
  font-size: var(--font-l);
  color: var(--color-d);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  background-image: url(../img/ico_wave.svg), url(../img/ico_wave.svg);
  background-repeat: repeat-x;
  background-position: top, bottom;
  background-size: 0.8em auto, 0.8em auto;
  padding: 1.2em 0;
  margin: 0 auto 1.5em auto;
  width: 20em;
}
@media screen and (max-width: 767px) {
  #access h2 {
    width: auto;
  }
}
#access h2::before {
  text-transform: uppercase;
  font-size: var(--font-m);
  font-family: var(--font-a);
  content: attr(data-title);
  display: block;
}
#access .tel {
  margin: 1em 0;
}
#access .tel a {
  color: var(--color-d);
  font-size: var(--font-lm);
}
#access .txt-center .btn {
  margin-bottom: 3em;
}
#access .iframe-area {
  margin-bottom: 3em;
}
@media screen and (max-width: 767px) {
  #access .iframe-area {
    display: none;
  }
}
#access .iframe-area iframe {
  aspect-ratio: 16/6;
  border-radius: 1em;
}
#access .access-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
}
@media screen and (max-width: 767px) {
  #access .access-area {
    grid-template-columns: 1fr;
  }
}
#access .access-area p {
  margin-top: 2em;
}
#access .access-area p.btn {
  text-align: center;
}

/* # =================================================================
   # GALLERY
   # ================================================================= */
#gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1em;
  margin-bottom: 5em;
}
#gallery img {
  border-radius: 1em;
}
@media screen and (max-width: 767px) {
  #gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.5em;
  }
  #gallery img {
    border-radius: 0;
  }
}

/* # =================================================================
   # FAQ
   # ================================================================= */
#faq {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2em;
  margin-bottom: 5em;
}
@media screen and (max-width: 767px) {
  #faq {
    grid-template-columns: 1fr;
  }
}
#faq header h2 {
  font-size: var(--font-l);
  color: var(--color-b);
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-left: 2em;
}
@media screen and (max-width: 767px) {
  #faq header h2 {
    text-align: center;
    background-image: url(../img/ico_wave2.svg), url(../img/ico_wave2.svg);
    background-repeat: repeat-x;
    background-position: top, bottom;
    background-size: 0.8em auto, 0.8em auto;
    padding: 1.5em 0;
    margin: 0 2em;
  }
}
#faq header h2::before {
  font-size: var(--font-m);
  font-family: var(--font-a);
  content: attr(data-title);
  display: block;
}
#faq .faq-area .qa {
  border: 1px solid var(--color-f);
  border-radius: 1em;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  #faq .faq-area .qa {
    border-radius: 0.5em;
    margin: 0 2em 1em 2em;
    line-height: 1.5;
  }
}
#faq .faq-area .qa summary {
  list-style: none !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 4em 1em 2em;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #faq .faq-area .qa summary {
    padding: 1em 4em 1em 1em;
  }
}
#faq .faq-area .qa summary::after {
  content: "";
  position: absolute;
  right: 1em;
  width: 2em;
  height: 2em;
  transition: transform 0.5s;
  background: url(../img/ico_plus.svg) no-repeat right;
  background-size: contain;
}
#faq .faq-area .qa summary::-webkit-details-marker {
  display: none;
}
#faq .faq-area .qa p {
  position: relative;
  border-radius: 0 0 1em 1em;
  transform: translateY(-20px);
  opacity: 0;
  margin: 0;
  padding: 1em 1.5em 1em 3em;
  background: var(--color-e);
  transition: transform 0.5s, opacity 0.5s;
}
#faq .faq-area .qa p strong {
  display: inline-block;
  margin-top: 1em;
}
#faq .faq-area .qa p a {
  text-decoration: underline;
}
#faq .faq-area .qa p a:hover {
  text-decoration: none;
}
#faq .faq-area .qa p::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: var(--font-lm);
  color: var(--color-c);
  line-height: 1.2;
  content: "A";
}
#faq .faq-area .qa[open] summary::after {
  background: url(../img/ico_minus.svg) no-repeat right;
  background-size: contain;
}
#faq .faq-area .qa[open] p {
  transform: none;
  opacity: 1;
}

/* # =================================================================
   # FOOTER
   # ================================================================= */
.footer-img {
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .footer-img {
    margin-bottom: 1em;
  }
}
.footer-img img {
  height: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .footer-img img {
    height: 30vh;
  }
}

#footer {
  background: var(--color-e);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  align-items: center;
  padding: 4em;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  #footer {
    grid-template-columns: 1fr;
    margin-bottom: 0;
    padding: 2em 2em 8em 2em;
  }
}
#footer .footer-area01 {
  order: 2;
}
@media screen and (max-width: 767px) {
  #footer .footer-area01 {
    order: 1;
  }
}
#footer .footer-area01 dl {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 1em;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  #footer .footer-area01 dl {
    grid-template-columns: 2fr 3fr;
  }
}
#footer .footer-area01 dl .font-s {
  padding-top: 2em;
  display: inline-block;
}
#footer .footer-area02 {
  order: 1;
}
@media screen and (max-width: 767px) {
  #footer .footer-area02 {
    order: 2;
    text-align: center;
  }
}
#footer .footer-area02 p {
  margin-bottom: 2em;
}
#footer .footer-area02 p.footer-logo {
  width: 50%;
}
@media screen and (max-width: 767px) {
  #footer .footer-area02 p.footer-logo {
    margin: 0 auto 2em auto;
    width: 250px;
  }
}
#footer .footer-area02 p.footer-sns img {
  width: 1.5em;
}
#footer .footer-area02 small {
  font-size: var(--font-s);
  color: var(--color-f);
}

/* # =================================================================
   # CONTACT
   # ================================================================= */
#contact {
  background: var(--color-b);
  padding: 4em 0;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  #contact {
    padding: 2em 0;
  }
}
#contact .inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2em;
  background: var(--color-d);
  padding: 2em;
  border-radius: 2em;
}
@media screen and (max-width: 767px) {
  #contact .inner {
    width: 96%;
    border-radius: 0.5em;
  }
}
#contact header h2 {
  font-size: var(--font-l);
  color: var(--color-b);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  background-image: url(../img/ico_wave2.svg), url(../img/ico_wave2.svg);
  background-repeat: repeat-x;
  background-position: top, bottom;
  background-size: 0.8em auto, 0.8em auto;
  padding: 1.5em 0;
  margin-bottom: 2em;
}
#contact header h2::before {
  font-size: var(--font-m);
  font-family: var(--font-a);
  content: attr(data-title);
  display: block;
}
#contact h3 {
  font-size: var(--font-lm);
  color: var(--color-b);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 2em;
}
#contact p {
  margin-bottom: 2em;
}
#contact input, #contact button, #contact textarea, #contact select {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
#contact input[type=text],
#contact input[type=email],
#contact input[type=tel],
#contact textarea {
  width: 100%;
  border-radius: 0.2em;
  border: 1px solid var(--color-f);
  padding: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 50px;
}
#contact input[type=date] {
  min-width: 120px;
  height: 50px;
  border: 1px solid var(--color-f);
  border-radius: 3px;
  padding: 10px 25px 10px 10px;
}
#contact input#yourname {
  border-radius: 0.2em 0.2em 0 0;
  border-bottom: none;
}
#contact input#readname {
  border-radius: 0 0 0.2em 0.2em;
}
#contact textarea {
  height: 200px;
}
#contact dt {
  background: var(--color-b);
  color: var(--color-d);
  padding: 10px;
  margin-bottom: 10px;
}
#contact dt label {
  display: flex;
  justify-content: space-between;
  position: relative;
}
#contact dt label {
  pointer-events: none;
}
#contact dt label .require {
  background: var(--color-g);
  padding: 5px 10px;
  position: absolute;
  right: 0;
  color: var(--color-d);
  line-height: 1;
  border-radius: 0.2em;
}
#contact dd {
  margin-bottom: 2em;
}
#contact .note a {
  text-decoration: underline;
}
#contact .note a:hover {
  text-decoration: none;
}
#contact .contact-btn input {
  background: var(--color-a);
  color: var(--color-e);
  text-align: center;
  display: block;
  padding: 10px 20px;
  margin: 0 auto 10px auto;
  width: 240px;
  border-radius: 0.5em;
  font-family: var(--font-b);
  translate: all 0.5s;
}
#contact .contact-btn input:hover {
  opacity: 0.8;
}

.confirm-massage {
  display: none;
}

.mw_wp_form_confirm .confirm-massage {
  display: block;
}

.mw_wp_form .error {
  background: rgb(255 0 0 / .1);
  margin-top: .2rem;
  padding: 0 .5rem;
}

@media screen and (max-width: 767px) {
  .mwform-radio-field {
    margin: 0;
    padding: 0;
    line-height: 1;
  }
  .mwform-checkbox-field label, .mwform-radio-field label {
    display: block;
  }
}
/* # =================================================================
   # NEWS
   # ================================================================= */
#news {
  background: var(--color-b);
  padding: 4em 0;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  #news {
    padding: 2em 0;
  }
}
#news .inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2em;
  background: var(--color-d);
  padding: 2em;
  border-radius: 2em;
}
@media screen and (max-width: 767px) {
  #news .inner {
    width: 96%;
    border-radius: 0.5em;
  }
}
#news header h2 {
  font-size: var(--font-l);
  color: var(--color-b);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  background-image: url(../img/ico_wave2.svg), url(../img/ico_wave2.svg);
  background-repeat: repeat-x;
  background-position: top, bottom;
  background-size: 0.8em auto, 0.8em auto;
  padding: 1.5em 0;
  margin-bottom: 2em;
}
#news header h2::before {
  font-size: var(--font-m);
  font-family: var(--font-a);
  content: attr(data-title);
  display: block;
}
#news .article-list {
  border-bottom: 1px solid var(--color-a);
  margin-bottom: 3em;
  padding: 2em 1em;
}
@media screen and (max-width: 767px) {
  #news .article-list {
    padding: 0;
  }
}
#news h3 {
  font-size: var(--font-lm);
  color: var(--color-b);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 2em;
}
#news p {
  margin-bottom: 2em;
}
#news .cl {
  overflow: hidden;
}
#news .wp-pagenavi {
  display: flex;
  justify-content: center;
}
#news .wp-pagenavi li {
  list-style: none;
}
#news .wp-pagenavi li span, #news .wp-pagenavi li a {
  border-radius: 5px;
  padding: 3px 10px;
  display: inline-block;
}

/* # =================================================================
   # ANIMATION
   # ================================================================= */
.zoomIn {
  opacity: 0;
}
.zoomIn.zoom {
  opacity: 1;
  animation: animationblur 0.5s ease-in-out;
}/*# sourceMappingURL=style.css.map */
