@charset "UTF-8";
/*
Description: LP Original
Author: Ann Tachibana
Version: 1.0

body {
  animation: pagefadeIn .5s forwards;
}
@keyframes pagefadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
*/
/*======================================
type
/*======================================*/
strong, em, .gothic strong, .gothic em {
  font-weight: bold;
}
html, body {
  font-family: "CezannePro-M", sans-serif;
  font-feature-settings: "palt";
  margin: 0 auto;
}
.gothic {
  font-family: 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 'Yu Gothic', YuGothic, メイリオ, Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-feature-settings: "pkna";
  letter-spacing: normal !important;
}
.gothic-M {
  font-family: "CezannePro-M", sans-serif;
}
.gothic-B {
  font-family: "CezannePro-DB", sans-serif;
}
.gothic-M strong, .gothic-M em {
  font-family: "CezannePro-DB", sans-serif;
}
.serif-M {
  font-family: "TsukuAOldMinPr6-M", serif;
}
.serif-B {
  font-family: "ToppanBunkyuMidashiMinchoStdN-ExtraBold", serif;
}
/*
.serif-M strong, .serif-M em {
  font-family: "ToppanBunkyuMidashiMinchoStdN-ExtraBold", serif;
}
*/
/*----------------------
text color
----------------------*/
html, body {
  color: rgba(60, 65, 55, 1);
}
.txt-normal {
  color: initial;
}
.txt-white {
  color: #fff;
}
.txt-shadow-W {
  text-shadow: 1px 0px 10px #fff, 0px 1px 10px #fff, -1px 0px 10px #fff, 0px -1px 10px #fff, 1px 0px 10px #fff, 0px 1px 10px #fff, -1px 0px 10px #fff, 0px -1px 10px #fff;
}
.txt-red {
  color: rgba(210, 100, 100, 1);
}
.txt-navy {
  color: rgba(15, 20, 75, 1);
}
.txt-beige {
  color: rgba(160, 135, 120, 1);
}
.txt-beige-L {
  color: rgba(235, 220, 190, 1);
}
.txt-gold {
  color: rgba(200, 160, 100, 1);
}
/*----------------------
background color
----------------------*/
.bg-white {
  background: #fff;
}
.bg-white-harf {
  background: rgba(255, 255, 255, .5);
}
.bgGR-white-bottom {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}
.bgGR-white-top {
  background: linear-gradient(to bottom, rgba(255, 255, 255, .5) 0%, rgba(255, 255, 255, 0) 100%);
}
.bg-navy {
  background: rgba(15, 20, 75, 1);
}
.bg-navy-op {
  background-color: rgba(0, 0, 0, .5);
  color: #fff;
  background-blend-mode: multiply;
}
.bg-navy-L {
  background: rgba(60, 65, 115, 1);
  color: #fff;
}
.bg-brown {
  /*background: rgba(85, 50, 25, 1);*/
  background: rgba(110, 90, 70, 1);
  color: #fff;
}
.bg-beige {
  background: rgba(160, 135, 120, 1);
  color: #fff;
}
.bg-beige-harf {
  background: rgba(160, 135, 120, .15);
}
.bg-gold {
  background: rgba(200, 160, 100, 1);
  color: #fff;
}
.bg-gray {
  background: rgba(238, 238, 239, 1);
}
.bgFixd-js {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -5;
  width: 100%;
  transform: translate(0, 0);
  opacity: 0;
}
.fadein {
  opacity: 1;
  transition: all 1s ease;
  visibility: visible;
}
.fadeout {
  opacity: 0;
  transition: all 1s ease;
  visibility: hidden;
}
@media screen and (orientation: portrait) {
  .bgFixd-js {
    height: 115vh;
  }
}
@media screen and (orientation: landscape) {
  .bgFixd-js {
    height: 100vh;
  }
}
#container {
  position: relative;
  z-index: 2;
}
/*----------------------
bg-paper
----------------------*/
.bg-paper {
  background-image: url(../../img/CMN/bg-paper.jpg);
  background-position: center;
}
.bg-paper-above {
  padding-bottom: 7em;
}
.bg-paper-below {
  padding-top: 7em;
}
@media screen and (min-width:768px) {
  .bg-paper-above {
    padding-bottom: 9em;
  }
  .bg-paper-below {
    padding-top: 7em;
  }
} /*END QUERY*/
.bg-paper-around, .bg-paper-top, .bg-paper-bottom {
  position: relative;
}
.bg-paper-around::before, .bg-paper-around::after, .bg-paper-top::before, .bg-paper-bottom::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  left: 0;
}
.bg-paper-around::before, .bg-paper-top::before {
  top: -2.5rem;
}
.bg-paper-around::after, .bg-paper-bottom::before {
  bottom: -2.5rem;
}
.bg-paper-white::before {
  background-image: url(../../img/CMN/bg-paper-white.png);
  background-position: center bottom;
  background-size: cover;
}
.bg-paper-gray::before {
  background-image: url(../../img/CMN/bg-paper-gray.png);
  background-position: center bottom;
  background-size: cover;
}
.bg-paper-white::after {
  background-image: url(../../img/CMN/bg-paper-white.png);
  background-position: center bottom;
  background-size: cover;
  transform: rotate(180deg);
}
.bg-paper-gray::after {
  background-image: url(../../img/CMN/bg-paper-gray.png);
  background-position: center bottom;
  background-size: cover;
  transform: rotate(180deg);
}
/*======================================
title-img-CMN
/*======================================*/
.title-img-CMN {
  display: inline-block;
  width: auto;
  height: 60px;
  padding: 0;
  margin: 0 auto;
}
.title-img-CMN img {
  width: auto;
  height: 100%;
  max-width: none;
  margin: 0 auto;
}
.title-img-CMN span {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: none;
}
/*======================================
list-style
/*======================================*/
.list-icon {
  position: relative;
}
.list-icon li {
  position: relative;
  text-align: justify;
  font-size: 120%;
  padding-left: 2em;
  line-height: 1.5em;
  letter-spacing: 2px;
}
.list-icon li:not(:last-of-type) {
  margin-bottom: 0.5em;
}
.list-icon-cooking01 li:before {
  position: absolute;
  content: "";
  font-size: 110%;
  width: 1.5em;
  height: 1.5em;
  background: url(../img/icon-cooking01.png) no-repeat center;
  background-size: contain;
  left: 0;
  top: 0;
}
/*======================================
aside
/*======================================*/
aside.CMN {
  font-size: 80%;
  letter-spacing: 1px;
}
/*======================================
under-line
/*======================================*/
.under {
  display: inline;
  text-decoration: none;
  background: linear-gradient(transparent 60%, rgba(255, 245, 135, .7) 60%);
  background-repeat: no-repeat;
}
/*======================================
#page-404
/*======================================*/
#page-404 {
  text-align: center;
  padding: 7em 0
}
#page-404 p {
  font-size: 90%;
}
/*======================================
waiting
/*======================================*/
#waiting {
  text-align: center;
  padding: 8em 0 8em;
  margin: 0 auto !important;
}
@media screen and (min-width:769px) {
  .title-img-CMN {
    height: 65px;
  }
  .check-list li:not(:last-of-type) {
    margin-bottom: 1.5em;
  }
} /*END-query*/
/*======================================
img-radius
/*======================================*/
.img-radius-left, .img-radius-right {
  overflow: hidden;
  width: 95%;
}
.img-radius-left {
  border-radius: 2.5em 0 0 2.5em;
  margin-right: 0;
  margin-left: auto;
}
.img-radius-right {
  border-radius: 0 2.5em 2.5em 0;
  margin-right: auto;
  margin-left: 0;
}
.img-radius-center {
  overflow: hidden;
  border-radius: 2.5em;
  margin: 0 auto;
}
/*======================================
img-2room
/*======================================*/
.img-2room-CMN .wrap {
  width: 100%;
}
.img-2room-wrap {
  position: relative;
  width: 90%;
}
.img-2room-wrap:not(:first-of-type) {
  margin-top: 2.5em;
}
.img-2room-wrap .img {
  overflow: hidden;
}
.img-2room-wrap.makihari {
  margin-left: auto;
}
.img-2room-wrap.funabashi {
  margin-right: auto;
}
.img-2room-wrap.makihari .img {
  border-radius: 2.5em 0 0 2.5em;
}
.img-2room-wrap.funabashi .img {
  border-radius: 0 2.5em 2.5em 0;
}
.img-2room-wrap:after {
  position: absolute;
  content: "";
  top: -2em;
  width: 8em;
  height: 8em;
  background-size: cover;
  background-position: center;
}
.img-2room-wrap.makihari:after {
  left: -2em;
  background-image: url(../../img/CMN/img-makuhari-bubble.png);
}
.img-2room-wrap.funabashi:after {
  right: -2em;
  background-image: url(../../img/CMN/img-funabashi-bubble.png);
}
@media screen and (min-width:768px) {
  .img-2room-CMN .wrap {
    width: 80%;
  }
  .img-2room-wrap {
    width: calc((100% - 3em)/2);
  }
  .img-2room-wrap.makihari .img, .img-2room-wrap.funabashi .img {
    border-radius: 2.5em;
  }
  .img-2room-wrap.makihari, .img-2room-wrap.funabashi {
    margin: 0;
  }
  .img-2room-wrap:not(:first-of-type) {
    margin-top: 0;
    margin-left: 3em;
  }
  .img-2room-wrap:after {
    top: auto;
    bottom: -3em;
    width: 9em;
    height: 9em;
  }
  .img-2room-wrap.makihari:after {
    left: -3em;
  }
  .img-2room-wrap.funabashi:after {
    right: -3em;
  }
} /*END-query*/
/*======================================
list-number
/*======================================*/
.list-number-wrap {
  display: inline-block;
}
.list-number-wrap li {
  position: relative;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
  padding: 0 1.5em 1.5em;
}
.list-number-wrap li:not(:last-of-type) {
  margin-bottom: 1.5em;
}
.list-number-NMB {
  font-size: 350%;
  line-height: 1em;
  padding: .7em .5em .5em;
}
.list-number-green {
  color: rgba(120, 170, 115, .7);
}
.list-number-red {
  color: rgba(210, 100, 100, .7);
}
.list-number-wrap li h2, .list-number-wrap li h3 {
  text-align: center;
  font-size: 150%;
  letter-spacing: 3px;
  margin-bottom: .7em;
}
.list-number-wrap li p {
  text-align: justify;
}
@media screen and (min-width:768px) {
  .list-number-wrap li {
    padding: 1.5em;
  }
  .list-number-NMB {
    padding: .2em .5em .0em;
  }
  .list-number-wrap .desc {
    flex: 1;
  }
  .list-number-wrap li h2, .list-number-wrap li h3 {
    text-align: left;
  }
  .list-number-wrap li p {
    text-align: left;
  }
} /*END query*/
/*======================================
lede-CMN
/*======================================*/
.lede-CMN {
  letter-spacing: 3px;
}
.lede-CMN p {
  text-align: center;
}
.lede-CMN p:not(:last-of-type), .desc p:not(:last-of-type) {
  margin-bottom: .7em;
}
.desc {
  display: inline-block;
}
.desc p {
  text-align: justify;
}
.lede-CMN .desc p {
  text-align: justify;
}
@media (min-width: 768px) {
  .lede-CMN .desc p {
    text-align: center;
  }
} /*END query*/
/*======================================
border-block
/*======================================*/
.border-block {
  position: relative;
  z-index: 1;
  border: .5em solid rgba(225, 145, 85, .5);
  padding: 1em;
  background: #fff;
}
@media screen and (min-width:768px) {
  .border-block {
    border: .8em solid rgba(225, 145, 85, .5);
    padding: 1.5em;
  }
} /*END query*/
/*======================================
table
/*======================================*/
table {
  table-layout: fixed;
  font-size: 100%;
  width: 100%;
  max-width: 850px;
  border-collapse: collapse;
  margin: 0 auto;
}
table th, table td {
  text-align: left;
  padding: 1em .5em;
  line-height: 1.4em;
  vertical-align: middle;
}
table tr:first-of-type th, table tr:first-of-type td {
  padding-top: 0;
}
table th {
  font-family: "CezannePro-DB", sans-serif;
  font-weight: bold;
  border-bottom: 3px solid rgba(15, 20, 75, .5);
}
table td {
  width: auto;
  padding-right: 0;
  border-bottom: 3px solid rgba(200, 200, 200, .5);
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
table.th-50 th {
  width: 50%;
}
table th.txt-left, table td.txt-left {
  text-align: left;
}
table th.txt-right, table td.txt-right {
  text-align: right;
}
table th.txt-center, table td.txt-center {
  text-align: center;
}
table td p, table td li, table td .list-style ul li {
  line-height: 1.4em;
}
table td p:not(:last-of-type), table td li:not(:last-of-type), table td .list-style ul li:not(:last-of-type) {
  margin-bottom: .3em;
}
table td p + .list-style, table td p + ul {
  margin-top: 1em;
}
table td .list-style ul {
  display: block;
}
table td a {
  display: inline;
  color: rgba(120, 170, 115, 1);
  letter-spacing: 1px;
}
table.w-20 th {
  width: 20%;
}
table.w-30 th {
  width: 30%;
}
table.w-40 th {
  width: 40%;
}
table.w-50 th {
  width: 50%;
}
table.w-free th {
  width: auto;
}
@media screen and (min-width:768px) {
  table.w-20 th, table.w-30 th, table.w-40 th {
    width: 25%;
  }
  table.w-50 th {
    width: 50%;
  }
  table.w-free th {
    width: auto;
  }
  table th, table td {
    padding: 1.5em .5em;
  }
  table th {
    text-align: center;
  }
} /*END query*/
/*======================================
hr
/*======================================*/
.hr-L {
  background: url(../img/hr-L.png) no-repeat center;
  background-size: contain;
  padding: 1em 0;
  margin: 2em auto;
  max-width: 900px;
}
@media (min-width: 768px) {
  .hr-L {
    margin: 4em auto;
  }
} /*END query*/
/*======================================
point-wrap
/*======================================*/
.point-wrap {
  position: relative;
  border: 3px solid rgba(120, 170, 115, .5);
  padding: 1.5em;
  border-radius: 1em;
  background: #fff;
}
.point-wrap h3 {
  font-size: 140%;
  text-align: center;
  margin: 1.5em auto 1em;
}
.point {
  position: absolute;
  text-align: center;
  background: rgba(225, 145, 85, 1);
  font-size: 130%;
  line-height: 1em;
  padding: .7em 2em .5em 2em;
  border-radius: 100px;
  top: -1em;
  left: 50%;
  margin-left: -4em;
}
.point:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  bottom: -10px;
  right: 50%;
  margin-right: -5px;
  border-color: rgba(225, 145, 85, 1) transparent;
  border-style: solid;
  border-width: 10px 5px 0px 5px;
}
.point-wrap p {
  text-align: justify;
}
@media (min-width: 768px) {
  .point {
    font-size: 140%;
  }
  .point-wrap p {
    text-align: center;
  }
} /*END query*/