@charset "UTF-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

elements-of-type(html5-block) {
  display: block;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 12px 16px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 1;
}

.hamburger-box {
  width: 45px;
  height: 38px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -3px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 45px;
  height: 6px;
  background-color: #FFF;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -16px;
}

.hamburger-inner::after {
  bottom: -16px;
}

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 3px;
}

.hamburger--slider .hamburger-inner::before {
  top: 16px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 32px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 16px, 0) rotate(35deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-6.42857px, -10px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -32px, 0) rotate(-68deg);
}

/* argument */
/* site style */
/* [ opacity ]
-------------------------------------------------*/
/* [ display style ]
-------------------------------------------------*/
/* [ background-image ]
-------------------------------------------------*/
/* [ writing-mode ]
-------------------------------------------------*/
/* [ illustrator & photoshop letter spacing ]
-------------------------------------------------*/
/* [ easy breakpoint ]
-------------------------------------------------*/
/* [ easy transform ]
-------------------------------------------------*/
/* [ writing-mode ]
-------------------------------------------------*/
@media only screen and (max-width: 823px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (min-width: 824px) {
  .sp {
    display: none !important;
  }
}

html {
  font-size: 62.5%;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #4c4948;
}

html * {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.57142em;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
  transition: .3s;
}

a:after {
  transition: .3s;
}
@media only screen and (max-width: 823px) {
  .wrap {
    width: 100%;
    overflow: hidden;
  }
}
.inner {
  width: 800px;
  margin: 0 auto;
}

@media only screen and (max-width: 823px) {
  .inner {
    width: calc(100% - 66px);
  }
}

.inView {
  opacity: 0;
}

.footer {
  background-image: url(../images/head-foot-bg.png);
  background-position: bottom center;
  background-size: 1500px;
  background-repeat: repeat-x;
  position: relative;
  padding-top: 40px;
  padding-bottom: 15px;
}

@media only screen and (max-width: 823px) {
  .footer {
    padding-top: 5px;
    background-image: url(../images/head-foot-bg_sp.png);
    background-size: 100%;
  }
}

.footer .inner .text1 {
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

@media only screen and (max-width: 823px) {
  .footer .inner .text1 {
    line-height: 1.3333em;
  }
}

.footer .inner ul {
  width: 640px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 823px) {
  .footer .inner ul {
    width: 100%;
    margin-top: 20px;
    flex-direction: column;
  }
}

.footer .inner ul li {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  width: 305px;
  height: 180px;
}

@media only screen and (max-width: 823px) {
  .footer .inner ul li {
    width: 100%;
    height: 182px;
    margin-bottom: 20px;
  }
}

.footer .inner ul li a {
  width: 100%;
  height: 100%;
  position: relative;
  background-size: 100%;
  background-repeat: no-repeat;
  display: block;
}

.footer .inner ul li a:hover {
  opacity: 0.6;
}

.footer .inner ul li a p {
  color: #f08300;
  font-weight: bold;
  text-align: center;
  position: absolute;
  bottom: 17px;
  width: 100%;
}

@media only screen and (max-width: 823px) {
  .footer .inner ul li a p {
    bottom: 16px;
  }
}

@media all and (-ms-high-contrast: none) {
  .footer .inner ul li a p {
    bottom: 15px;
  }
}

.footer .inner .bottom {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media only screen and (max-width: 823px) {
  .footer .inner .bottom {
    width: calc(100% + 33px);
    margin-left: -16px;
    justify-content: space-between;
    margin-top: 30px;
  }
}

.footer .inner .bottom .logo {
  width: 86px;
}

@media only screen and (max-width: 823px) {
  .footer .inner .bottom .logo {
    width: 100px;
  }
}

.footer .inner .bottom .copy {
  color: white;
  font-size: 11px;
  font-size: 1.1rem;
  margin-left: 50px;
}

@media only screen and (max-width: 823px) {
  .footer .inner .bottom .copy {
    width: calc(100% - 100px);
    font-size: 10px;
    font-size: 1rem;
    margin-left: 0;
    transform: scale(0.83);
    white-space: nowrap;
    text-align: right;
    transform-origin: center;
    padding-top: 14px;
  }
}

.footer #to-top {
  position: absolute;
  bottom: 150px;
  right: 0;
  left: 900px;
  width: 52px;
  height: 52px;
  margin: auto;
  border-radius: 50%;
}

@media screen and (max-width: 960px) {
  .footer #to-top {
    left: auto;
    right: 10px;
  }
}

@media only screen and (max-width: 823px) {
  .footer #to-top {
    width: 50px;
    height: 50px;
    right: 33px;
    bottom: 58px;
  }
}

.footer #to-top:hover {
  opacity: 0.6;
}

#to-yoyaku {
  z-index: 3000;
  position: fixed;
  bottom: -82px;
  left: 0;
  width: 262px;
  transition-property: bottom;
}

#to-yoyaku.active {
  bottom: 0;
}

.header {
  background-image: url(../images/head-foot-bg.png);
  background-position: top center;
  background-size: 1500px;
  height: 90px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5000;
}

@media only screen and (max-width: 823px) {
  .header {
    background-image: url(../images/head-foot-bg_sp.png);
    background-size: 100%;
    height: 65px;
  }
}

.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

@media only screen and (max-width: 823px) {
  .header .inner {
    width: calc(100% - 36px);
  }
}

.header .inner .logo {
  width: 129px;
}

@media only screen and (max-width: 823px) {
  .header .inner .logo {
    width: 136px;
  }
}

@media only screen and (min-width: 824px) {
  .header .inner .logo:hover {
    opacity: 0.6;
  }
}

@media only screen and (max-width: 823px) {
  .header .inner nav {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(240, 131, 0, 0.85);
    display: none;
  }
}

.header .inner nav ul {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 823px) {
  .header .inner nav ul {
    flex-direction: column;
  }
}

.header .inner nav ul li {
  margin: 0 5px;
}

@media only screen and (max-width: 823px) {
  .header .inner nav ul li {
    margin: 0;
    border-top: 1px solid white;
    display: block;
    width: 100%;
  }
}

.header .inner nav ul li a {
  color: white;
  display: flex;
  align-items: center;
  font-weight: bold;
}

@media only screen and (max-width: 823px) {
  .header .inner nav ul li a {
    justify-content: flex-start;
    height: 50px;
    font-size: 15px;
    font-size: 1.5rem;
    padding-left: 18px;
  }
}

@media only screen and (min-width: 824px) {
  .header .inner nav ul li a:hover {
    opacity: 0.6;
  }
}

.header .inner nav ul li a:before {
  content: "";
  width: 19px;
  height: 23px;
  background-image: url(../images/arr-down.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  margin-top: 5px;
}

@media only screen and (max-width: 823px) {
  .header .inner nav ul li a:before {
    transform: rotate(-90deg);
    margin-top: 0px;
  }
}

@media all and (-ms-high-contrast: none) {
  .header .inner nav ul li a:before {
    margin-top: 2px;
  }
}

.header .inner .reserve {
  width: 230px;
  height: 40px;
  border-radius: 20px;
  border: 3px solid white;
  background-color: white;
  color: #f08300;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media all and (-ms-high-contrast: none) {
  .header .inner .reserve {
    padding-top: 5px;
  }
}

.header .inner .reserve:hover {
  color: white;
  background-color: #f08300;
}

.header .hamburger {
  position: absolute;
  top: 0;
  right: 0;
  outline: none;
}

.btn {
  width: 250px;
  height: 40px;
  background-color: #f08300;
  color: white;
  border: 4px solid #f08300;
  border-radius: 20px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

@media only screen and (max-width: 823px) {
  .btn {
    width: 255px;
  }
}

@media all and (-ms-high-contrast: none) {
  .btn {
    padding-top: 5px;
  }
}

.btn:after {
  content: "";
  width: 10px;
  height: 13px;
  background-image: url(../images/arr-wh.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  margin-left: 10px;
}

@media all and (-ms-high-contrast: none) {
  .btn:after {
    margin-top: -3px;
  }
}

.btn:hover {
  background-color: white;
  color: #f08300;
}

.btn:hover:after {
  background-image: url(../images/arr-or.png);
}

h2 {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.545454em;
  font-weight: bold;
  text-align: center;
  color: #f08300;
  font-feature-settings: "palt";
}

@media only screen and (max-width: 823px) {
  h2 {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

h2:after {
  content: "";
  width: 100px;
  height: 10px;
  background-image: url(../images/wave-or.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100px;
  display: block;
  margin: 10px auto 0;
}

h2.wh {
  color: white;
}

h2.wh:after {
  background-image: url(../images/wave-wh.png);
}

h2.bk {
  color: inherit;
}

h2.bk:after {
  background-image: url(../images/wave-bk.png);
}

.ul {
  background: linear-gradient(transparent 82%, #f08300 0%);
  display: inline;
  padding: 0 0 4px;
}

@media all and (-ms-high-contrast: none) {
  .ul {
    padding-bottom: 2px;
  }
}

.sub {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  margin-bottom: 12px;
}

@media only screen and (max-width: 823px) {
  .sub {
    margin-bottom: 14px;
  }
}

.sub span {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 24px;
  font-weight: bold;
  padding: 0 18px;
  border-radius: 14px;
  color: #f08300;
  border: 2px solid #f08300;
  font-feature-settings: "palt";
  white-space: nowrap;
}

@media all and (-ms-high-contrast: none) {
  .sub span {
    padding-top: 5px;
  }
}

.sub.wh span {
  color: white;
  border: 2px solid white;
}

.shadow {
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.6);
}

.shop-list {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

@media only screen and (max-width: 823px) {
  .shop-list {
    flex-direction: column;
    margin-bottom: 0;
  }
}

.shop-list li {
  width: 205px;
  height: 30px;
  margin-right: 10px;
}

@media only screen and (max-width: 823px) {
  .shop-list li {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.shop-list li:last-child {
  margin-right: 0;
}

.shop-list li a {
  width: 100%;
  height: 100%;
  background-color: #f08300;
  color: white;
  border: 2px solid white;
  border-radius: 15px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
  font-feature-settings: "palt";
  white-space: nowrap;
}

@media only screen and (max-width: 823px) {
  .shop-list li a {
    border: 1px solid white;
  }
}

@media all and (-ms-high-contrast: none) {
  .shop-list li a {
    padding-top: 3px;
  }
}

.shop-list li a:after {
  content: "";
  width: 10px;
  height: 13px;
  background-image: url(../images/arr-wh.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
}

@media all and (-ms-high-contrast: none) {
  .shop-list li a:after {
    bottom: 2px;
  }
}

@media only screen and (min-width: 824px) {
  .shop-list li a:hover {
    background-color: white;
    color: #f08300;
  }

  .shop-list li a:hover:after {
    background-image: url(../images/arr-or.png);
  }
}

.shop-list.wh li a {
  background-color: white;
  border: 2px solid #f08300;
  color: #f08300;
}

@media only screen and (max-width: 823px) {
  .shop-list.wh li a {
    border: 1px solid #f08300;
  }
}

.shop-list.wh li a:after {
  background-image: url(../images/arr-or.png);
}

@media only screen and (min-width: 824px) {
  .shop-list.wh li a:hover {
    background-color: #f08300;
    color: white;
  }

  .shop-list.wh li a:hover:after {
    background-image: url(../images/arr-wh.png);
  }
}

#modal {
  display: none;
  z-index: 9000;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#modal .modal-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#modal .modal-wrap .dark-back {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9500;
}

#modal .modal-wrap .cont {
  width: 740px;
  position: relative;
  z-index: 9800;
}

@media only screen and (max-width: 823px) {
  #modal .modal-wrap .cont {
    width: 340px;
  }
}

#modal .modal-wrap .cont .close-btn {
  margin: 0 0 20px auto;
  width: 32px;
  height: 32px;
  display: block;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  border: none;
  padding: 0;
}

@media only screen and (max-width: 823px) {
  #modal .modal-wrap .cont .close-btn {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 824px) {
  #modal .modal-wrap .cont .close-btn:hover {
    opacity: 0.6;
  }
}

#modal .modal-wrap .cont .white-cont {
  width: 100%;
  padding: 35px 30px;
  background-color: white;
  border-radius: 30px;
  box-shadow: 7px 7px 5px 0px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 823px) {
  #modal .modal-wrap .cont .white-cont {
    padding: 15px 14px;
    border-radius: 15px;
  }
}

#modal .modal-wrap .cont .white-cont iframe {
  width: 680px;
  height: 382px;
  vertical-align: bottom;
}

@media only screen and (max-width: 823px) {
  #modal .modal-wrap .cont .white-cont iframe {
    width: 312px;
    height: 176px;
  }
}

body.index main {
  padding-top: 90px;
}

@media only screen and (max-width: 823px) {
  body.index main {
    padding-top: 65px;
  }
}

body.index main #mv {
  height: 54vw;
  width: 100%;
  background-image: url(../images/mv.jpg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1500px) {
  body.index main #mv {
    background-size: 1500px;
    height: 812px;
  }
}

@media only screen and (max-width: 823px) {
  body.index main #mv {
    height: 365px;
    background-size: 100%;
    background-position: top center;
    background-image: url(../images/mv_sp.jpg);
  }
}

body.index main #mv .inner {
  position: relative;
  height: 100%;
}

body.index main #mv .inner .issyo {
  width: 270px;
  position: absolute;
  left: -30px;
  bottom: 296px;
  margin: auto;
}

@media only screen and (max-width: 823px) {
  body.index main #mv .inner .issyo {
    width: 172px;
    bottom: 146px;
    left: -20px;
  }
}

body.index main #mv .inner .main-logo {
  width: 522px;
  position: absolute;
  left: 20px;
  right: 0;
  bottom: 110px;
  margin: auto;
}

@media only screen and (max-width: 823px) {
  body.index main #mv .inner .main-logo {
    width: 272px;
    bottom: 38px;
    left: 0;
  }
}

body.index main #intro {
  padding-top: 60px;
  padding-bottom: 6vw;
  background-image: url(../images/btm-img.png);
  background-position: bottom -1px center;
  background-size: 100%;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1500px) {
  body.index main #intro {
    padding-bottom: 70px;
    background-size: 1500px;
  }
}

@media only screen and (max-width: 823px) {
  body.index main #intro {
    background-image: url(../images/btm-arr_sp.png);
    background-size: 100%;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 56px;
  }
}

body.index main #intro .inner .catch {
  width: 410px;
  margin: 0 auto;
}

@media only screen and (max-width: 823px) {
  body.index main #intro .inner .catch {
    width: 290px;
  }
}

body.index main #intro .inner .howto {
  margin: 56px auto 0;
  width: 200px;
}

@media only screen and (max-width: 823px) {
  body.index main #intro .inner .howto {
    width: 154px;
    margin-top: 28px;
  }
}

body.index main #intro .inner .movie-btn {
  margin: 10px auto 0;
  display: block;
  width: 480px;
  outline: none;
  border: none;
  cursor: pointer;
  transition: .3s;
  padding: 0;
}

@media only screen and (max-width: 823px) {
  body.index main #intro .inner .movie-btn {
    width: 305px;
  }
}

body.index main #intro .inner .movie-btn img {
  transition: .3s;
}

@media only screen and (min-width: 824px) {
  body.index main #intro .inner .movie-btn img:hover {
    opacity: 0.6;
  }
}

body.index main #intro .inner .text1 {
  font-weight: bold;
  text-align: center;
  margin-top: 54px;
}

body.index main #intro .inner .link {
  margin-top: 5px;
}

body.index main #intro .inner .link-sp {
  display: block;
  width: 310px;
  margin: 20px auto 0;
}

body.index main #nayami {
  background-color: #f08300;
  padding-top: 20px;
  padding-bottom: 52px;
  background-image: url(../images/nayami-bottom.png);
  background-position: bottom -1px center;
  background-repeat: no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 1500px) {
  body.index main #nayami {
    background-size: 1500px;
  }
}

@media only screen and (max-width: 823px) {
  body.index main #nayami {
    background-image: url(../images/nayami-bottom_sp.png);
    padding-top: 10px;
    background-size: 100%;
    padding-bottom: 32px;
  }
}

@media only screen and (max-width: 823px) {
  body.index main #nayami .inner {
    width: calc(100% - 40px);
  }
}

body.index main #nayami .inner ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

@media only screen and (max-width: 823px) {
  body.index main #nayami .inner ul {
    display: block;
    margin-top: 10px;
  }
}

body.index main #nayami .inner ul li {
  width: 230px;
  height: 250px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}

@media only screen and (max-width: 823px) {
  body.index main #nayami .inner ul li {
    width: 226px;
    height: 238px;
    margin-top: -30px;
  }

  body.index main #nayami .inner ul li:first-child {
    margin-top: 0;
  }

  body.index main #nayami .inner ul li:nth-child(even) {
    margin-right: 0;
    margin-left: auto;
  }
}

body.index main #nayami .inner ul li p {
  text-align: center;
  font-weight: bold;
}

body.index main #nayami .inner ul li p span {
  color: #f08300;
}

body.index main #nayami .inner ul li.item1 {
  background-image: url(../images/nayami1.png);
}

body.index main #nayami .inner ul li.item2 {
  background-image: url(../images/nayami2.png);
}

body.index main #nayami .inner ul li.item3 {
  background-image: url(../images/nayami3.png);
}

body.index main #tokucho {
  padding-top: 44px;
  padding-bottom: 6px;
}


@media only screen and (max-width: 823px) {
  body.index main #tokucho {
    padding-top: 24px;
    padding-bottom: 50px;
  }
}

body.index main #tokucho .inner {
  width: 824px;
}

@media only screen and (max-width: 823px) {
  body.index main #tokucho .inner {
    width: 100%;
  }
}

body.index main #tokucho .inner .cont {
  padding-top: 20px;
  margin-top: 26px;
  margin-bottom: 50px;
  width: 100%;
  height: 1099px;
  background-image: url(../images/tokucho.jpg);
  background-size: 824px;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
}

@media only screen and (max-width: 823px) {
  body.index main #tokucho .inner .cont {
    background-image: url(../images/tokucho_sp.jpg);
    background-size: 317px;
    padding-top: 12px;
    height: 1987px;
    margin-bottom: 40px;
  }
}

body.index main #tokucho .inner .cont h3 {
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media only screen and (max-width: 823px) {
  body.index main #tokucho .inner .cont h3 {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5em;
  }
}

body.index main #tokucho .inner .cont .item {
  width: 270px;
  position: absolute;
}

@media only screen and (max-width: 823px) {
  body.index main #tokucho .inner .cont .item {
    width: 100%;
  }
}

body.index main #tokucho .inner .cont .item .text1 {
  text-align: center;
}

body.index main #tokucho .inner .cont .item .text1 sup {
  vertical-align: super;
  font-size: 10px;
  font-size: 1rem;
}

body.index main #tokucho .inner .cont .item h4 {
  white-space: nowrap;
  text-align: center;
  margin-top: 10px;
  font-feature-settings: "palt";
}

body.index main #tokucho .inner .cont .item h4 span {
  font-weight: bold;
  line-height: 1.545454em;
  font-size: 22px;
  font-size: 2.2rem;
}

body.index main #tokucho .inner .cont .item .text2 {
  text-align: justify;
  width: 240px;
  margin: 160px auto 0;
}

@media only screen and (max-width: 823px) {
  body.index main #tokucho .inner .cont .item .text2 {
    margin-top: 172px;
    width: 249px;
  }
}

body.index main #tokucho .inner .cont .item .text3 {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.5em;
  text-align: justify;
  width: 240px;
  margin: 6px auto 0;
}

@media only screen and (max-width: 823px) {
  body.index main #tokucho .inner .cont .item .text3 {
    width: 249px;
  }
}

body.index main #tokucho .inner .cont .item.item1 {
  top: 160px;
  left: 116px;
}

@media only screen and (max-width: 823px) {
  body.index main #tokucho .inner .cont .item.item1 {
    top: 150px;
    left: 0;
  }
}

body.index main #tokucho .inner .cont .item.item2 {
  top: 160px;
  right: 116px;
}

@media only screen and (max-width: 823px) {
  body.index main #tokucho .inner .cont .item.item2 {
    top: 623px;
    right: 0;
  }
}

body.index main #tokucho .inner .cont .item.item3 {
  top: 650px;
  left: 116px;
}

@media only screen and (max-width: 823px) {
  body.index main #tokucho .inner .cont .item.item3 {
    top: 1085px;
    left: 0;
  }
}

body.index main #tokucho .inner .cont .item.item4 {
  top: 650px;
  right: 116px;
}

@media only screen and (max-width: 823px) {
  body.index main #tokucho .inner .cont .item.item4 {
    top: 1615px;
    right: 0;
  }
}

body.index main #tokucho .inner .sarani:before {
  content: "";
  width: 80px;
  height: 19px;
  background-image: url(../images/sarani.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  display: block;
  margin: 0 auto 14px;
}

@media only screen and (max-width: 823px) {
  body.index main #tokucho .inner .sarani:before {
    width: 69px;
    height: 14px;
    margin-bottom: 10px;
    background-image: url(../images/sarani_sp.png);
  }
}

body.index main #tokucho .inner .cycle {
  margin-top: 52px;
}

@media only screen and (max-width: 823px) {
  body.index main #tokucho .inner .cycle {
    width: 317px;
    margin: 34px auto 0;
  }
}

body.index main #active {
  background-image: url(../images/pic-back_01.jpg);
  background-size: 1512px;
  background-repeat: no-repeat;
  background-position: top center;
  height: 675px;
  padding-top: 88px;
}

@media only screen and (max-width: 823px) {
  body.index main #active {
    background-image: url(../images/pic-back_01_sp.png);
    background-size: 381px;
    padding-top: 50px;
    height: 870px;
  }
}

/* 2022.03 */
body.index main #active .inner .box {
  display: flex;
  width: 652px;
  margin: 36px auto 0 auto;
  border-radius: 10px;
  background: #fff;
}
body.index main #active .inner .box-l {
  width: 300px;
}
body.index main #active .inner .box-l img {
  border-radius: 10px 0 0 10px;
}
body.index main #active .inner .box-r {
  width: 286px;
  text-align: justify;
  margin: 0 auto;
  padding: 30px 35px 0;
}
body.index main #active .inner .box-r h3 {
  color: #00ADA9;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 20px;
}

@media only screen and (max-width: 823px) {
  body.index main #active .inner .box {
    width: 260px;
    display: block;
    margin: 26px auto 0 auto;
  }
  body.index main #active .inner .box-l {
    width: 100%;
  }
  body.index main #active .inner .box-l img {
    border-radius: 10px 10px 0 0;
  }
  body.index main #active .inner .box-r {
    width: 100%;
    padding: 15px 16px 16px;
  }
  body.index main #active .inner .box-r h3 {
    margin-bottom: 10px;
  }
}

body.index main #communication {
  background-image: url(../images/pic-back_02.jpg);
  background-size: 1512px;
  background-repeat: no-repeat;
  background-position: top center;
  height: 1510px;
  padding-top: 94px;
}

@media only screen and (max-width: 823px) {
  body.index main #communication {
    background-image: url(../images/pic-back_02_sp.png);
    background-size: 388px;
    padding-top: 54px;
    margin-top: -50px;
    height: 1580px;
  }
}

@media only screen and (max-width: 823px) {
  body.index main #communication .inner {
    width: 100%;
  }
}

@media only screen and (max-width: 823px) {
  body.index main #communication .inner .sub {
    height: 22px;
  }
}

@media only screen and (max-width: 823px) {
  body.index main #communication .inner .sub span {
    line-height: 20px;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 0 10px;
  }
}

body.index main #communication .inner h2 {
  margin-bottom: 42px;
}

@media only screen and (max-width: 823px) {
  body.index main #communication .inner h2 {
    margin-bottom: 20px;
  }
}

body.index main #communication .inner h3 {
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

@media only screen and (max-width: 823px) {
  body.index main #communication .inner h3 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

body.index main #communication .inner .cont {
  margin: -5px auto 10px;
  width: 664px;
  background-size: 100%;
  position: relative;
}

@media only screen and (max-width: 823px) {
  body.index main #communication .inner .cont {
    width: 352px;
    margin-bottom: 5px;
  }
}

body.index main #communication .inner .cont.cont1 {
  background-image: url(../images/coun-back.png);
  height: 784px;
}

@media only screen and (max-width: 823px) {
  body.index main #communication .inner .cont.cont1 {
    background-image: url(../images/coun-back_sp.png);
    height: 940px;
  }
}

body.index main #communication .inner .cont.cont2 {
  background-image: url(../images/meet-back.png);
  height: 254px;
}

@media only screen and (max-width: 823px) {
  body.index main #communication .inner .cont.cont2 {
    background-image: url(../images/meet-back_sp.png);
    height: 292px;
  }
}

body.index main #communication .inner .cont .item {
  position: absolute;
  left: 110px;
  /* width: 496px; ipad調整 */
  width: 500px;
}

@media only screen and (max-width: 823px) {
  body.index main #communication .inner .cont .item {
    width: 270px;
    left: 50px;
  }
}

body.index main #communication .inner .cont .item .text1 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #00ada9;
  font-feature-settings: "palt";
}

@media only screen and (max-width: 823px) {
  body.index main #communication .inner .cont .item .text1 {
    white-space: nowrap;
    padding-left: 36px;
  }
}

body.index main #communication .inner .cont .item .text2 {
  margin-top: 22px;
}

body.index main #communication .inner .cont .item h4 {
  font-feature-settings: "palt";
}

body.index main #communication .inner .cont .item h4 .ul {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
}

body.index main #communication .inner .cont .item .text3 {
  line-height: 1.571428em;
  margin-top: 14px;
  text-align: justify;
}

@media only screen and (max-width: 823px) {
  body.index main #communication .inner .cont .item .text3 {
    font-feature-settings: "palt";
  }
}

body.index main #communication .inner .cont .item .note {
  font-size: 1.1rem;
  margin-top: 10px;
}

body.index main #communication .inner .cont .item .link {
  margin: 18px auto 0 116px;
}

@media only screen and (max-width: 823px) {
  body.index main #communication .inner .cont .item .link {
    margin: 18px auto 0;
  }
}

body.index main #communication .inner .cont .item.item1 {
  top: 36px;
}

@media only screen and (max-width: 823px) {
  body.index main #communication .inner .cont .item.item1 {
    top: 16px;
  }
}

body.index main #communication .inner .cont .item.item2 {
  top: 313px;
}

@media only screen and (max-width: 823px) {
  body.index main #communication .inner .cont .item.item2 {
    top: 350px;
  }
}

body.index main #communication .inner .cont .item.item3 {
  top: 562px;
}

@media only screen and (max-width: 823px) {
  body.index main #communication .inner .cont .item.item3 {
    top: 683px;
  }

  body.index main #communication .inner .cont .item.item3 .text2 {
    margin-top: 37px;
  }
}

body.index main #communication .inner .cont .item.item4 {
  top: 36px;
}

@media only screen and (max-width: 823px) {
  body.index main #communication .inner .cont .item.item4 {
    top: 20px;
  }

  body.index main #communication .inner .cont .item.item4 .text3 {
    letter-spacing: -0.03em;
  }
}

body.index main #communication .inner .link2 {
  margin-top: 24px;
}

@media only screen and (max-width: 823px) {
  body.index main #communication .inner .link2 {
    margin-top: 16px;
  }
}

body.index main #flow {
  padding-top: 60px;
  padding-bottom: 80px;
  background-image: url(../images/flow-bottom.png);
  background-repeat: no-repeat;
  background-position: bottom -1px center;
  background-size: 100%;
}

@media screen and (max-width: 1500px) {
  body.index main #flow {
    background-size: 1500px;
  }
}

@media only screen and (max-width: 823px) {
  body.index main #flow {
    padding-top: 40px;
    background-image: url(../images/btm-arr_sp.png);
    background-size: 100%;
    padding-bottom: 50px;
  }
}

body.index main #flow .inner {
  width: 824px;
}

@media only screen and (max-width: 823px) {
  body.index main #flow .inner {
    width: 100%;
  }
}

body.index main #flow .inner h2 {
  font-size: 30px;
  font-size: 3rem;
}

@media only screen and (max-width: 823px) {
  body.index main #flow .inner h2 {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

body.index main #flow .inner .cont {
  width: 100%;
  background-size: 824px;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
}

body.index main #flow .inner .cont.cont1 {
  height: 660px;
  margin-bottom: 30px;
  background-image: url(../images/flow1.png);
}

@media only screen and (max-width: 823px) {
  body.index main #flow .inner .cont.cont1 {
    background-image: url(../images/flow1_sp.png);
    background-size: 317px;
    margin-top: 10px;
    height: 1034px;
  }
}

body.index main #flow .inner .cont.cont2 {
  height: 690px;
  background-image: url(../images/flow2.png);
}

@media only screen and (max-width: 823px) {
  body.index main #flow .inner .cont.cont2 {
    background-image: url(../images/flow2_sp.png);
    background-size: 352px;
    height: 990px;
  }

  body.index main #flow .inner .cont.cont2 .item {
    width: 270px;
  }
}

body.index main #flow .inner .cont .item {
  width: 394px;
  position: absolute;
  left: 334px;
}

@media only screen and (max-width: 823px) {
  body.index main #flow .inner .cont .item {
    width: 250px;
    left: 0;
    right: 0;
    margin: auto;
  }
}

body.index main #flow .inner .cont .item p {
  line-height: 1, 57142em;
  text-align: justify;
}

body.index main #flow .inner .cont .item .link {
  margin: 8px auto 0 0;
}

body.index main #flow .inner .cont .item.item1 {
  top: 54px;
}

@media only screen and (max-width: 823px) {
  body.index main #flow .inner .cont .item.item1 {
    top: 115px;
  }
}

body.index main #flow .inner .cont .item.item2 {
  top: 204px;
}

@media only screen and (max-width: 823px) {
  body.index main #flow .inner .cont .item.item2 {
    top: 390px;
  }
}

body.index main #flow .inner .cont .item.item3 {
  top: 367px;
}

@media only screen and (max-width: 823px) {
  body.index main #flow .inner .cont .item.item3 {
    top: 645px;
  }
}

body.index main #flow .inner .cont .item.item4 {
  top: 522px;
}

@media only screen and (max-width: 823px) {
  body.index main #flow .inner .cont .item.item4 {
    top: 898px;
  }
}

body.index main #flow .inner .cont .item.item5 {
  top: 47px;
}
body.index main #flow .inner .cont .item .note {
  font-size: 1.1rem;
  margin-top: 10px;
}

@media only screen and (max-width: 823px) {
  body.index main #flow .inner .cont .item.item5 {
    top: 135px;
  }
}

body.index main #flow .inner .cont .item.item6 {
  top: 283px;
}

@media only screen and (max-width: 823px) {
  body.index main #flow .inner .cont .item.item6 {
    top: 430px;
    width: 208px;
    left: 50px;
  }
}

body.index main #flow .inner .cont .item.item7 {
  top: 420px;
}

@media only screen and (max-width: 823px) {
  body.index main #flow .inner .cont .item.item7 {
    top: 625px;
    width: 208px;
    left: 50px;
  }
}

body.index main #flow .inner .cont .item.item8 {
  top: 595px;
}

@media only screen and (max-width: 823px) {
  body.index main #flow .inner .cont .item.item8 {
    top: 874px;
  }
}

body.index main #flow .inner .link2 {
  margin-top: 44px;
}

@media only screen and (max-width: 823px) {
  body.index main #flow .inner .link2 {
    margin-top: 25px;
  }
}

body.index main #plan {
  background-color: #f08300;
  background-image: url(../images/nayami-bottom.png);
  background-position: bottom -1px center;
  background-repeat: no-repeat;
  background-size: 100%;
  padding-top: 30px;
  padding-bottom: 54px;
}

@media screen and (max-width: 1500px) {
  body.index main #plan {
    background-size: 1500px;
  }
}

@media only screen and (max-width: 823px) {
  body.index main #plan {
    background-image: url(../images/nayami-bottom_sp.png);
    background-size: 100%;
    padding-top: 14px;
    padding-bottom: 28px;
  }
}

body.index main #plan .inner {
  width: 640px;
}

@media only screen and (max-width: 823px) {
  body.index main #plan .inner {
    width: calc(100% - 66px);
  }
}

body.index main #plan .inner .plan-list {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

@media only screen and (max-width: 823px) {
  body.index main #plan .inner .plan-list {
    flex-direction: column;
    margin-top: 14px;
  }
}

body.index main #plan .inner .plan-list li {
  background-color: white;
  width: 305px;
  border-radius: 10px;
  padding: 15px 25px 20px;
}

@media only screen and (max-width: 823px) {
  body.index main #plan .inner .plan-list li {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
  }
}

body.index main #plan .inner .plan-list li .li-top {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

body.index main #plan .inner .plan-list li .li-top p {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 0.8888em;
  font-weight: bold;
  text-align: center;
}

body.index main #plan .inner .plan-list li .li-top p .ul {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 0.8888em;
  font-weight: bold;
}

body.index main #plan .inner .plan-list li .dot {
  padding-left: 1em;
  position: relative;
}

body.index main #plan .inner .plan-list li .dot span {
  color: #f08300;
}

body.index main #plan .inner .plan-list li .dot:before {
  content: "●";
  position: absolute;
  left: 0;
}

body.index main #plan .inner .comment {
  color: white;
  margin-top: 10px;
  text-align: center;
}

@media only screen and (max-width: 823px) {
  body.index main #plan .inner .comment {
    margin-top: 0px;
  }
}

body.index main #plan .inner h3 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.666em;
  color: white;
  font-weight: bold;
  text-align: center;
  margin-top: 66px;
  margin-bottom: 34px;
}

@media only screen and (max-width: 823px) {
  body.index main #plan .inner h3 {
    font-size: 14px;
    font-size: 1.4rem;
    white-space: nowrap;
    margin-top: 40px;
    margin-bottom: 18px;
  }
}

body.index main #shop {
  padding-top: 50px;
}

@media only screen and (max-width: 823px) {
  body.index main #shop {
    padding-top: 36px;
  }
}

body.index main #shop .inner {
  width: 640px;
}

@media only screen and (max-width: 823px) {
  body.index main #shop .inner {
    width: calc(100% - 66px);
  }
}

body.index main #shop .inner h2 {
  margin-bottom: 30px;
}

@media only screen and (max-width: 823px) {
  body.index main #shop .inner h2 {
    margin-bottom: 18px;
  }
}

body.index main #shop .inner .cont {
  margin-bottom: 50px;
}

@media only screen and (max-width: 823px) {
  body.index main #shop .inner .cont {
    margin-bottom: 10px;
  }
}

body.index main #shop .inner .cont .start {
  margin-bottom: 10px;
}

@media only screen and (max-width: 823px) {
  body.index main #shop .inner .cont .start {
    margin-bottom: 14px;
  }
}
