@charset "UTF-8";

:root {
  --Blue: #2771aa;
  --Blue2: #8ab2d1;
  --Blue3: #f2f8fb;
  --Blue4: #15346d;
  --Blue5: #C9DCEB;
  --Black: #202020;
  --Gray: #ddd;
  --Green: #f7fbf2;
  --Serif: 'Noto Serif JP',serif;
}

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, a, address, em, img, small, strong, sub, sup, b, i, dl, dt, dd, ol, ul, li, form, label, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, figure, figcaption, footer, header, nav, section, time, audio, video {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
}
html {
  visibility: hidden;
}
html.wf-active, html.loading-delay {
  visibility: visible;
}
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
}
html {
  font-size: 62.5%;
  line-height: 1.15;
  background: #fff;
}
/*************************/
@media all and (max-width: 991px) {
  html, body {
    min-width: 100%;
    height: 100%;
  }
}
/*************************/

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  overflow: auto;
  width: 100%;
  min-width: 320px;
  margin: auto;
  letter-spacing: 0.1em;
  color: #333333;
  background: #fff;

  font-feature-settings: 'palt';
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'pkna';
}
/*************************/
@media all and (max-width: 991px) {
  body {
    font-size: 1.4rem;
  }
}
/*************************/


a {
  transition: 0.2s ease-in-out;
  text-decoration: none;
  color: #333333;
  background-color: transparent;
}
a:hover {
  color: var(--Blue2);
}

figure {
  margin: 0 0 1rem;
}

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

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

sup {
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  top: -0.5em;
  left: 0.5em;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;

  image-rendering: -webkit-optimize-contrast;
  object-fit: cover;
}

.wrap {
  position: relative;
  overflow-x: hidden;
  width: 100%;
}


/* =======================================================
   LOADER
======================================================== */
body {
  -webkit-animation: fadeIn 3s ease 0s 1 normal;
          animation: fadeIn 3s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.load-wrap {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #fff;
}
.loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29%;
  min-width: 200px;
  min-height: 200px;
  margin: 2%;
  border-radius: 4px;
  background-color: #fff;
}
.loader {
  position: relative;
  width: 40px;
  height: 40px;
  animation-name: spin;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  border: solid 4px;
  border-color: #000000 #00000010 #00000010;
  border-radius: 50%;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/* =======================================================
   HEADER
======================================================== */
header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100px;
  height: 100vh;
  background: #fff;
}
.header-inr {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
}
.site-logo a {
  display: flex;
  align-items: center;
  width: 80px;
  margin-top: 2rem;
}
/*************************/
@media screen and (max-width: 767px) {
  header {
    width: 80px;
  }
  .site-logo a {
    width: 70px;
  }
}
/*************************/
@media screen and (max-width: 599px) {
  header {
    width: 100%;
    height: 60px;
  }
  .header-inr {
    align-items: flex-start;
    height: 60px;
  }
  .site-logo a {
    width: 100%;
    margin-top: 10px;
    margin-left: 10px;
  }
  .site-logo a img {
    width: 100%;
    max-width: 100%;
    height: 40px;
    object-fit: contain;
  }
}
/*************************/


/* =======================================================
   l-navi
======================================================== */
.l-navi {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100px;
}
.l-navi a {
  display: block;
  width: 100%;
  text-align: center;
}
.l-navi a i::before {
  font-size: 4rem;
  transition: all 0.3s;
}
.l-navi a + a {
  margin-top: 2rem;
}
.l-navi a:hover i::before {
  color: var(--Blue2);
}
/*************************/
@media screen and (max-width: 767px) {
  .l-navi {
    width: 80px;
  }
}
/*************************/
@media screen and (max-width: 599px) {
  .l-navi {
    display: none;
  }
}
/*************************/

/* =======================================================
   l-btm
======================================================== */
.l-btm {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.l-btm a {
  font-size: 1.4rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem 0;
  letter-spacing: 0.2em;
  color: #fff;
}
.l-btm a.plan {
  background: var(--Blue);
}
.l-btm a.reserve {
  background: var(--Black);
}
.l-btm a:hover {
  background: var(--Blue2);
}
.l-btm a span {
  writing-mode: vertical-rl;
}
/*************************/
@media screen and (max-width: 599px) {
  .l-btm {
    display: none;
  }
}
/*************************/


/* =======================================================
   r-navi
======================================================== */
.r-navi {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  /* width: 100px; */
  height: 100vh;
  background: #fff;
}
/*************************/
@media screen and (max-width: 1199px) {
  .r-navi {
    /* width: 80px; */
    /* height: 80px; */
    background: transparent;
  }
}
/*************************/
@media screen and (max-width: 767px) {
  .r-navi {
    /* width: 60px; */
    /* height: 60px; */
  }
}
/*************************/


/* =======================================================
   MENU
======================================================== */
.main {
  font-weight: 500;
  display: flex;
}
.main li:not(:last-child) {
  margin-right: 60px;
}
#menu {
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: 0.2s ease-in-out;
  pointer-events: none;
}
#menu ul.main {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: flex;
  overflow: auto;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 100px 0 60px 0;
  transition: 0.2s ease-in-out;
  transition: opacity 0.3s linear;
  pointer-events: none;
  opacity: 0;
  background: #fff;
}
#menu ul.main li:first-child a {
   margin-bottom: 20px;
}
#menu ul.main li a {
  display: block;
  padding: 2vw;
  text-align: center;
}
#menu ul.main li.has-sub a {
  padding: 3vw 5vw 1vw;
}
.main li:not(:last-child) {
  margin-right: 0px;
}

#menu ul.main li a img {
  max-width: 250px;
}
/*************************/
@media screen and (max-width: 767px) {
  #menu ul.main li a {
    padding: 4vw 6.519vw;
  }

  #menu ul.main li:first-child a {
    margin-bottom: 5.215vw;
  }
}
/*************************/


/*  ACTIVE
==========================*/
#menu.active {
  pointer-events: auto;
  background: rgba(0,0,0,0.8);
}
#menu.active ul.main {
  pointer-events: auto;
  opacity: 1;
}
#menu.active ul.main li {
  width: 100%;
  max-width: 400px;
  border-bottom: 1px solid var(--Gray);
}



/* =======================================================
   TOGGLE
======================================================== */
.toggle {
  position: fixed;
  z-index: 400;
  top: 0;
  right: 0;
  display: block;
  width: 100px;
  height: 100px;
  transition: 0.3s ease-in-out;
  background: var(--Blue);
  cursor: pointer;
}
.toggle:hover {
  background: var(--Blue2);
}
.toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 32px;
  height: 0.5px;
  transition: 0.3s ease-in-out;
  transform: translate(-50%);
  background: #fff;
}
.toggle span:first-child {
  top: calc(50% - 10px);
}
.toggle span:last-child {
  top: calc(50% + 10px);
}

/*************************/
@media screen and (max-width: 1199px) {
  .toggle {
    width: 80px;
    height: 80px;
  }
}
/*************************/
@media screen and (max-width: 991px) {
  .toggle span {
    width: 3.229vw;
  }
  .toggle span:first-child {
    top: calc(50% - 1.009vw);
  }
  .toggle span:last-child {
    top: calc(50% + 1.009vw);
  }
}
/*************************/
@media screen and (max-width: 767px) {
  .toggle {
    width: 60px;
    height: 60px;
  }
  .toggle span {
    width: 25px;
  }
  .toggle span:first-child {
    top: calc(50% - 8px);
  }
  .toggle span:last-child {
    top: calc(50% + 8px);
  }
}
/*************************/


/*  OPEN
==========================*/
.toggle.open span {
  top: 50%;
}
.toggle.open span:first-child {
  transform: translate(-50%) rotate(45deg);
}
.toggle.open span:nth-child(2) {
  transform: translate(-50%) rotate(-45deg);
}
.toggle.open span:last-child {
  display: none;
}


/* =======================================================
   PAGETOP
======================================================== */
.pagetop {
  position: fixed;
  z-index: 400;
  bottom: 5px;
  right: 5px;
  display: block;
  transition: 0.3s ease-in-out;
}
.pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80px;
  height: 80px;
  color: #fff;
  background: var(--Blue);
  border-radius: 50%;
}
.pagetop i::before {
  display: block;
  transform: rotate(-90deg);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 5px;
}
.pagetop a:hover {
  background: var(--Blue2);
}
/*************************/
@media screen and (max-width: 1199px)
{
  .pagetop a {
    width: 60px;
    height: 60px;
    background: var(--Blue3);
    border: 1px solid var(--Blue2);
    color: var(--Blue2);
    font-size: 1.2rem;
  }
  .pagetop i::before {
    color: var(--Blue2);
    margin-bottom: 2px;
    font-size: 1.2rem;
  }
}
/*************************/



/* =======================================================
   WRAP,CONTAINER
======================================================== */
.wrap {
  z-index: 50;
  transition: 0.3s ease-in;
  background: #fff;
}

.cts {
  padding: 100px 0;
}
.page .cts {
  padding: 60px 0 120px;
}
.page.institution .cts {
  padding: 60px 0;
}
.page.tour-child .cts, .page.okonomiyaki-features .cts, .page.policy .cts {
  padding: 30px 0 60px;
}
.page.faq .cts,
.page.info .cts{
  padding: 30px 0;
}
.page.faq .cts:last-of-type,
.page.info .cts:last-of-type{
  padding-bottom: 120px;
}
.page.review .cts {
  padding: 0;
}
.page.sup .cts {
  padding-top: 0;
}

.cts.pt-0 {
  padding-top: 0;
}

.full {
  width: 100%;
}

.c-container {
  margin: 0 auto;
}

.c-container.full, .breadcrumbs {
  padding: 0 100px;
}

.c-mid {
  max-width: 1480px;
}

.c-sm {
  max-width: 1200px;
  margin: 0 auto;
}

.pa-rl {
  padding: 0 2vw;
}

.mg {
  margin: 0 auto;
}

.c-ssm {
  max-width: 960px;
  margin: 0 auto;
}

/*************************/
@media screen and (max-width: 1480px) {
  .cts {
    padding: 6.757vw 0;
  }
  .page .cts {
    padding: calc(2.027vw + 30px) 0 calc(4.054vw + 60px);
  }
  .page.institution .cts {
    padding: 4.054vw 0;
  }
  .c-container.mid {
    width: 100%;
  }
}
/*************************/
@media screen and (max-width: 1199px) {
  .c-container.full, .breadcrumbs {
    padding: 0 0 0 100px;
  }
}
/*************************/
@media screen and (max-width: 991px) {
  .wrap {
    padding-left: 0;
  }
  .c-container, .p-container {
    padding: 0 20px;
  }
  .c-container.sm {
    width: 100%;
  }
  .cts {
    padding: calc(3.33vw + 33px) 0;
  }
}
/*************************/
@media screen and (max-width: 767px) {
  .c-container.full, .breadcrumbs {
    padding: 0 0 0 80px;
  }
  .page.institution .cts {
    padding: 30px 0;
  }
  .page.tour-child .cts, .page.okonomiyaki-features .cts {
    padding-bottom: calc(2.027vw + 30px);
  }
}
/*************************/
@media screen and (max-width: 599px) {
  .c-container.full, .breadcrumbs {
    padding: 0 3.339vw;
  }
  .c-container.full.wide {
    padding: 0;
  }
}
/*************************/

p + p {
  margin-top: 3rem;
}


/* =======================================================
   breadcrumbs
======================================================== */
.breadcrumbs {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs li + li::before {
  display: inline-block;
  padding: 0 10px;
  content: '/';
}


/* =======================================================
   bg
======================================================== */

.bg-gy {
  position: relative;
  background: #f9f9f9;
}
.bg-blue {
  background: var(--Blue3);
}
.bg-green {
  background: var(--Green);
}
.bg-wt {
  background: #fff;
}


/* =======================================================
   bg-illust
======================================================== */
.bg-bird, .bg-illust01, .bg-illust02 {
  position: relative;
}
.bg-bird::before {
  position: absolute;
  z-index: 1;
  top: -200px;
  right: 100px;
  display: block;
  width: 387px;
  height: 451px;
  content: '';
  opacity: 0.05;
  background: url(../images/bird.svg) no-repeat;
}
/*************************/
@media screen and (max-width: 1199px) {
  .bg-bird::before {
    top: -16.681vw;
    right: 0;
    width: 32.277vw;
  }
  .bg-illust01::before {
    top: -24.687vw;
    right: 0;
    width: 60.55vw;
  }
}
/*************************/

.bg-illust01::before {
  position: absolute;
  z-index: 1;
  top: -296px;
  right: 0;
  display: block;
  width: 726px;
  height: 296px;
  content: '';
  opacity: 0.05;
  background: url(../images/illust01.svg);
  background-repeat: no-repeat;
}
.bg-illust02::before {
  position: absolute;
  z-index: 1;
  top: -100px;
  right: 100px;
  display: block;
  width: 648px;
  height: 272px;
  content: '';
  background: url(../images/illust02-w.svg);
  background-repeat: no-repeat;
}


/* =======================================================
   FOOTER
======================================================== */
footer {
  font-weight: 300;
  padding: 80px 40px 20px;
  color: #fff;
  background: var(--Blue);
}
footer a {
  color: #fff;
}
.f-inner {
  display: flex;
  justify-content: center;
  max-width: 1480px;
  margin: 0 auto;
}
/*************************/
@media screen and (max-width: 1240px) {
  .f-inner {
    flex-direction: column-reverse;
  }
}
/*************************/
@media screen and (max-width: 991px) {
  footer {
    padding-top: 8.782vw;
  }
}
/*************************/


/*======== f-logo ==========================*/
.f-logo {
  width: 50%;
  padding-right: 5vw;
  border-right: 1px solid #ffffff4f;
}
.f-logo img {
  width: 300px;
  margin-bottom: 30px;
}
.f-info p + p {
  margin-top: 15px;
}
.f-map {
  font-size: 1.1rem;
  display: inline-block;
  margin-top: 15px;
  padding: 5px 10px;
  color: var(--Black);
  border: 1px solid;
  background: #fff;
}
.f-map:hover {
  color: #fff;
  background: var(--Blue2);
}
/*************************/
@media screen and (max-width: 1240px) {
  .f-logo {
    width: 100%;
    padding-right: 0;
    text-align: center;
    border-right: none;
  }
}
/*************************/


/* =======================================================
   f-sns
======================================================== */
.f-sns {
  margin: 20px 0;
}
.f-sns ul {
  display: flex;
  align-items: center;
}
.f-sns i::before {
  font-size: 3rem;
  display: block;
}
.f-sns li + li {
  margin-left: 10px;
}
/*************************/
@media screen and (max-width: 1240px) {
  .f-sns ul {
    justify-content: center;
    margin-bottom: 40px;
  }
}
/*************************/


/* =======================================================
   f-policy
======================================================== */
.f-policy ul {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.f-policy li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.f-policy li:not(:last-child)::after {
  display: inline-block;
  width: 1px;
  height: 1.4rem;
  margin: 0 20px;
  content: '';
  background: #fff;
}
/*************************/
@media screen and (max-width: 1240px) {
  .f-policy ul {
    justify-content: center;
  }
}
/*************************/
@media screen and (max-width: 599px) {
  .f-policy ul {
    flex-direction: column;
  }
  .f-policy li:not(:last-child)::after {
    display: none;
  }
}
/*************************/


/* =======================================================
   f-link
======================================================== */
.f-link {
  display: flex;
  width: 50%;
  padding-left: 5vw;
}
.f-link ul {
  width: 40%;
}
.f-link ul li::before {
  display: inline-block;
  margin-right: 5px;
  content: '-';
}
.f-link ul li + li {
  margin-top: 20px;
}
/*************************/
@media screen and (max-width: 1240px) {
  .f-link {
    flex-direction: column;
    width: 100%;
    margin-bottom: 60px;
    padding-left: 0;
  }
  .f-link ul {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .f-link ul li + li {
    margin-top: 0;
    margin-left: 30px;
  }
  .f-link ul + ul {
    margin-top: 30px;
  }
}
/*************************/
@media screen and (max-width: 991px) {
  .f-link ul {
    flex-wrap: wrap;
  }
  .f-link ul li.page {
    width: 100%;
    margin-bottom: 20px;
  }
  .f-link ul li {
    margin-bottom: 10px;
  }
  .f-link ul li.page {
    margin-left: 0;
  }
}
/*************************/
@media screen and (max-width: 767px) {
  .f-link {
    display: none;
  }
}
/*************************/


/*======== f-bottom ==========================*/
.f-bottom {
  font-size: 1.2rem;
  margin-top: 60px;
  text-align: center;
}
/*************************/
@media screen and (max-width: 1199px) and (min-width:600px) {
  .f-bottom {
    padding-left: 60px;
  }
}
/*************************/


/* =======================================================
   MARGIN,PADDIN
======================================================== */
.mt_20 {
  margin-top: 20px !important;
}
.mt_30 {
  margin-top: 30px !important;
}
.mt_40 {
  margin-top: 40px !important;
}
.mt_60 {
  margin-top: 60px !important;
}
.mb_10 {
  margin-bottom: 10px !important;
}
.mb_20 {
  margin-bottom: 20px !important;
}
.mb_40 {
  margin-bottom: 40px !important;
}
.mb_60 {
  margin-bottom: 60px !important;
}
.mb_80 {
  margin-bottom: 80px !important;
}
.mb_100 {
  margin-bottom: 100px !important;
}

.mr_20 {
  margin-right: 20px;
}

.pt_0 {
  padding-top: 0 !important;
}
.pb_0 {
  padding-bottom: 0 !important;
}
.pb_60 {
  padding-bottom: 60px !important;
}
.pb_120 {
  padding-bottom: 120px !important;
}


/*************************/
@media screen and (max-width: 1480px) {
  .mt_40 {
    margin-top: calc(1.351vw + 20px) !important;
  }
  .mt_60 {
    margin-top: calc(2.027vw + 30px) !important;
  }
  .mb_40 {
    margin-bottom: calc(1.351vw + 20px) !important;
  }
  .mb_60 {
    margin-bottom: calc(2.027vw + 30px) !important;
  }
  .mb_80 {
    margin-bottom: calc(2.703vw + 40px) !important;
  }
  .mb_100 {
    margin-bottom: calc(3.378vw + 50px) !important;
  }
}
/*************************/


/* =======================================================
   TEXT-ALIGN
======================================================== */
.center {
  text-align: center !important;
}
.right {
  text-align: right !important;
}
.left {
  text-align: left !important;
}


/* =======================================================
   FONT-WEIGHT
======================================================== */
.fw-400 {
  font-weight: 400;
}


/* =======================================================
   LINE-HEIGHT
======================================================== */
.lh-14 {
  line-height: 1.4;
}


/* =======================================================
   FONT-COLOR
======================================================== */
.ft-blue {
  color: var(--Blue);
}
.ft-red {
  color: #c50a0a;
}

/* =======================================================
   FONT-SIZE
======================================================== */
.ft-small {
  font-size: 90%;
}


/* =======================================================
   DISPLAY
======================================================== */
.dp-bk {
  display: block;
}
.dp-inbk {
  display: inline-block !important;
}
.sv-list dd span.pc-only {
  margin-top: 10px;
  @media (max-width: 599px) {
    display: none;
  }
}
.sv-list dd span.sp-only {
  margin-top: 20px;
  font-weight: bold;
  line-height: 1.4;
  @media (min-width: 600px) {
    display: none;
  }
  & img {
    max-width: 200px;
    display: block;
    margin: 10px auto 0;
  }
}
.line-btn {
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
  line-height: 1.4;
  & img {
    max-width: 200px;
    display: block;
    margin: 10px auto 0;
  }
}

/* =======================================================
   BORDER
======================================================== */
.bdr-top {
  border-top: 1px solid var(--Blue2);
}



.nowrap {
  white-space: nowrap;
}

.bold {
  font-weight: 700;
}

/* =======================================================
   WEB-FONT
======================================================== */
@font-face {
  font-family: 'webfont';
  font-weight: normal;
  font-style: normal;

  src: url('fonts/webfont.eot?txxr3j');
  src: url('fonts/webfont.eot?txxr3j#iefix') format('embedded-opentype'),
  url('fonts/webfont.ttf?txxr3j') format('truetype'),
  url('fonts/webfont.woff?txxr3j') format('woff'),
  url('fonts/webfont.svg?txxr3j#webfont') format('svg');
  font-display: block;
}

[class^='icon-'], [class*=' icon-'] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'webfont' !important;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;

  speak: never;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-caution:before {
  content: '\e900';
}
.icon-foreign-s:before {
  content: '\e901';
}
.icon-facebook:before {
  content: '\e902';
}
.icon-instagram:before {
  content: '\e903';
}
.icon-twitter:before {
  content: '\e904';
}
.icon-arrow:before {
  content: '\e905';
}
.icon-arrow2:before {
  content: '\e906';
}
.icon-nav-camera:before {
  content: '\e907';
}
.icon-nav-mail:before {
  content: '\e908';
}
.icon-nav-map:before {
  content: '\e909';
}
.icon-nav-phone:before {
  content: '\e90a';
}
.icon-nosmoke:before {
  content: '\e90b';
}



:focus {
  outline: none;
}