@charset "UTF-8";
/* =========================================
   modern-css-reset（最適化版）
========================================= */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

/* =========================================
   カンプ基準の設定値
========================================= */
/* =========================================
   ブレークポイント管理
========================================= */
/* =========================================
   vw/svw を簡単にする mixin（最適化）
========================================= */
/* PC/SP の font-size を 1 行で指定 */
/* 任意のプロパティを PC/SP まとめて指定（可変引数対応） */
/* =========================================
   基本スタイル
========================================= */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  background: #fff8f7;
  color: #716a65;
}
@media screen and (min-width: 841px) {
  body {
    font-size: calc(28 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  body {
    font-size: calc(28 / 720 * 100vw);
  }
}

img {
  width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
}

.hidden {
  display: none !important;
}

.inner {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 841px) {
  .inner {
    width: calc(1440 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .inner {
    width: calc(600 / 720 * 100vw);
  }
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .flexbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

h1 {
  margin: 0;
}

@media screen and (min-width: 841px) {
  .nopc {
    display: none !important;
  }
}

@media screen and (max-width: 840px) and (orientation: portrait) {
  .nosp {
    display: none !important;
  }
}

@-webkit-keyframes hero_bg {
  0% {
    background-size: 120%;
  }
  100% {
    background-size: 100%;
  }
}

@keyframes hero_bg {
  0% {
    background-size: 120%;
  }
  100% {
    background-size: 100%;
  }
}
@-webkit-keyframes hero {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes hero {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
header {
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  overflow: hidden;
}
@media screen and (min-width: 841px) {
  header {
    height: calc(114 / 1920 * 100vw);
    padding-top: calc(67 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header {
    height: calc(0 / 720 * 100vw);
    padding-top: calc(0 / 720 * 100vw);
  }
}
header nav {
  position: relative;
}
header .nav-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 0;
  background: #ffe30f;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  pointer-events: none;
}
header .nav-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 841px) {
  header .nav-list {
    gap: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .nav-list {
    gap: calc(50 / 720 * 100vw);
  }
}
header .nav-list .nav-link {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  text-shadow: 0 0vw 1vw rgba(0, 0, 0, 0.9);
}

.menu-overlay {
  display: none;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .menu-overlay {
    display: block;
    background-color: #fff6f6;
    width: 100%;
    height: 100vh;
    max-height: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .menu-overlay .menu-overlay__inner {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .menu-overlay.open {
    max-height: 100vh;
  }
  .menu-overlay.open .menu-overlay__inner {
    opacity: 1;
    pointer-events: auto;
  }
  .menu-overlay .menu-title {
    color: #fba0a1;
    font-size: calc(80 / 720 * 100vw);
    text-align: center;
    margin-top: calc(200 / 720 * 100vw);
    margin-bottom: calc(64 / 720 * 100vw);
  }
  .menu-overlay .menu-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu-overlay .menu-nav a {
    font-size: calc(32 / 720 * 100vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc(600 / 720 * 100vw);
    height: calc(100 / 720 * 100vw);
    margin: calc(50 / 720 * 100vw) auto;
    background-color: #fff;
    border-radius: calc(10 / 720 * 100vw);
  }
  .menu-overlay .menu-copy {
    font-size: calc(24 / 720 * 100vw);
    text-align: center;
    position: absolute;
    right: 0;
    left: 0;
    bottom: calc(80 / 720 * 100vw);
  }
}

.menu-close {
  display: none;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .menu-close {
    display: block;
    width: calc(100 / 720 * 100vw);
    height: calc(100 / 720 * 100vw);
    position: fixed;
    top: calc(40 / 720 * 100vw);
    right: calc(40 / 720 * 100vw);
    z-index: 1002;
    background-color: #fff;
    border-radius: calc(50 / 720 * 100vw);
  }
  .menu-close::before, .menu-close::after {
    content: "";
    position: absolute;
    left: calc(25 / 720 * 100vw);
    width: calc(50 / 720 * 100vw);
    height: calc(6 / 720 * 100vw);
    background-color: #fba0a1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .menu-close::before {
    top: calc(35 / 720 * 100vw);
  }
  .menu-close::after {
    bottom: calc(35 / 720 * 100vw);
  }
}
.menu-close.open {
  background-color: transparent;
}
.menu-close.open::before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  top: calc(47 / 720 * 100vw);
}
.menu-close.open::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  bottom: calc(47 / 720 * 100vw);
}

#hero {
  background: url(../img/hero_bg.webp) no-repeat center/cover;
  -webkit-animation: hero_bg 0.7s ease-in-out alternate;
          animation: hero_bg 0.7s ease-in-out alternate;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #hero {
    background: url(../img/hero_bg_sp.webp) no-repeat center/cover;
  }
}
@media screen and (min-width: 841px) {
  #hero {
    height: calc(940 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #hero {
    height: calc(1520 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #hero .inner {
    height: calc(940 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #hero .inner {
    height: calc(1520 / 720 * 100vw);
  }
}
#hero h1 {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-animation: hero 0.5s ease-in-out forwards;
          animation: hero 0.5s ease-in-out forwards;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
@media screen and (min-width: 841px) {
  #hero h1 {
    width: calc(659 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #hero h1 {
    width: calc(600 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #hero h1 {
    height: calc(468 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #hero h1 {
    height: calc(428 / 720 * 100vw);
  }
}

section h2 {
  color: #fff;
  background: url(../img/bg.webp) repeat top left;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 841px) {
  section h2 {
    background-size: calc(6 / 1920 * 100vw);
    line-height: calc(80 / 1920 * 100vw);
    font-size: calc(40 / 1920 * 100vw);
    height: calc(80 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  section h2 {
    background-size: calc(6 / 720 * 100vw);
    line-height: calc(80 / 720 * 100vw);
    font-size: calc(32 / 720 * 100vw);
    height: calc(80 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
  }
}

#about {
  background: #fff url(../img/about_bg.webp) no-repeat top center/cover;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #about {
    background: #fff url(../img/about_bg_sp.webp) no-repeat top center/cover;
  }
}
@media screen and (min-width: 841px) {
  #about {
    padding-top: calc(83 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #about {
    padding-top: calc(120 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #about {
    padding-bottom: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #about {
    padding-bottom: calc(60 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #about {
    text-align: center;
  }
}
#about .flexbox {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 841px) {
  #about .flexbox {
    margin-top: calc(134 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #about .flexbox {
    margin-top: calc(80 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #about .flexbox > .imgwrap {
    width: calc(620 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #about .flexbox > .imgwrap {
    width: calc(100% / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #about .flexbox > .imgwrap {
    padding-left: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #about .flexbox > .imgwrap {
    padding-left: calc(0 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #about .flexbox > .imgwrap {
    margin-bottom: calc(0 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #about .flexbox > .imgwrap {
    margin-bottom: calc(95 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #about .flexbox .txtwrap {
    width: calc(620 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #about .flexbox .txtwrap {
    width: calc(100% / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #about .flexbox .txtwrap {
    padding-left: calc(35 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #about .flexbox .txtwrap {
    padding-left: calc(0 / 720 * 100vw);
  }
}
#about .flexbox .txtwrap h3 {
  margin-top: 0;
}
@media screen and (min-width: 841px) {
  #about .flexbox .txtwrap h3 {
    font-size: calc(40 / 1920 * 100vw);
    margin-bottom: calc(27 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #about .flexbox .txtwrap h3 {
    font-size: calc(60 / 720 * 100vw);
    margin-bottom: calc(80 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #about .flexbox .txtwrap .name {
    margin-top: calc(85 / 720 * 100vw);
  }
}

#reserve {
  background: #fff url(../img/reserve_bg.webp) no-repeat center/cover;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #reserve {
    background: #fff url(../img/reserve_bg_sp.webp) no-repeat center/cover;
  }
}
@media screen and (min-width: 841px) {
  #reserve {
    padding-top: calc(83 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #reserve {
    padding-top: calc(60 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #reserve {
    padding-bottom: calc(120 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #reserve {
    padding-bottom: calc(60 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #reserve h2 {
    margin-bottom: calc(108 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #reserve h2 {
    margin-bottom: calc(86 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #reserve .linklist {
    padding-left: calc(120 / 1920 * 100vw);
    padding-right: calc(120 / 1920 * 100vw);
    padding-bottom: calc(14 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #reserve .linklist {
    padding-left: calc(0 / 720 * 100vw);
    padding-right: calc(0 / 720 * 100vw);
    padding-bottom: calc(0 / 720 * 100vw);
  }
}
#reserve .linklist li {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 841px) {
  #reserve .linklist li {
    width: calc(275 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #reserve .linklist li {
    width: calc(100% / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #reserve .linklist li {
    border-radius: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #reserve .linklist li {
    border-radius: calc(0 / 720 * 100vw);
  }
}
#reserve .linklist li:hover {
  -webkit-box-shadow: calc(14 / 1920 * 100vw) calc(12 / 1920 * 100vw) 0 RGBa(236, 236, 236, 0.84);
          box-shadow: calc(14 / 1920 * 100vw) calc(12 / 1920 * 100vw) 0 RGBa(236, 236, 236, 0.84);
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #reserve .linklist li {
    margin-bottom: calc(95 / 720 * 100vw);
  }
}

@media screen and (min-width: 841px) {
  #contact {
    padding-top: calc(80 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #contact {
    padding-top: calc(80 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #contact {
    padding-bottom: calc(80 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #contact {
    padding-bottom: calc(80 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #contact .contactform {
    padding-top: calc(50 / 1920 * 100vw);
    padding-right: calc(120 / 1920 * 100vw);
    padding-bottom: calc(40 / 1920 * 100vw);
    padding-left: calc(120 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #contact .contactform {
    padding-top: calc(120 / 720 * 100vw);
    padding-right: calc(0 / 720 * 100vw);
    padding-bottom: calc(40 / 720 * 100vw);
    padding-left: calc(0 / 720 * 100vw);
  }
}
#contact .contactform li {
  width: 100%;
}
#contact .contactform li p {
  width: 100%;
  position: relative;
  margin-top: 0;
}
@media screen and (min-width: 841px) {
  #contact .contactform li p {
    margin-bottom: calc(27 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #contact .contactform li p {
    margin-bottom: calc(32 / 720 * 100vw);
  }
}
#contact .contactform li p span {
  position: absolute;
  left: 0;
  z-index: 999;
}
@media screen and (min-width: 841px) {
  #contact .contactform li p span {
    font-size: calc(24 / 1920 * 100vw);
    top: calc(2 / 1920 * 100vw);
    left: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #contact .contactform li p span {
    font-size: calc(24 / 720 * 100vw);
    top: calc(6 / 720 * 100vw);
    left: calc(13 / 720 * 100vw);
  }
}
#contact .contactform li p input {
  color: #716a65;
  width: 100%;
  border: none;
}
@media screen and (min-width: 841px) {
  #contact .contactform li p input {
    font-size: calc(24 / 1920 * 100vw);
    height: calc(90 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
    padding-top: calc(20 / 1920 * 100vw);
    padding-left: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #contact .contactform li p input {
    font-size: calc(28 / 720 * 100vw);
    height: calc(110 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
    padding-top: calc(34 / 720 * 100vw);
    padding-left: calc(20 / 720 * 100vw);
  }
}
#contact .contactform li p input:focus {
  outline: none;
}
#contact .contactform li p textarea {
  color: #716a65;
  width: 100%;
  border: none;
}
@media screen and (min-width: 841px) {
  #contact .contactform li p textarea {
    font-size: calc(24 / 1920 * 100vw);
    height: calc(240 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
    padding-top: calc(40 / 1920 * 100vw);
    padding-left: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #contact .contactform li p textarea {
    font-size: calc(28 / 720 * 100vw);
    height: calc(360 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
    padding-top: calc(50 / 720 * 100vw);
    padding-left: calc(20 / 720 * 100vw);
  }
}
#contact .contactform li p textarea:focus {
  outline: none;
}
@media screen and (min-width: 841px) {
  #contact .contactform li.flexbox p {
    width: calc(573 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #contact .contactform li.flexbox p {
    width: calc(100% / 720 * 100vw);
  }
}
#contact button {
  color: #fff;
  display: block;
  margin-left: auto;
  background: url(../img/bg.webp) repeat top left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#contact button:hover {
  opacity: 0.7;
}
@media screen and (min-width: 841px) {
  #contact button {
    background-size: calc(6 / 1920 * 100vw);
    width: calc(340 / 1920 * 100vw);
    height: calc(80 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
    font-size: calc(40 / 1920 * 100vw);
    margin-right: calc(120 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #contact button {
    background-size: calc(6 / 720 * 100vw);
    width: calc(600 / 720 * 100vw);
    height: calc(80 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
    font-size: calc(34 / 720 * 100vw);
    margin-right: calc(0 / 720 * 100vw);
  }
}

@media screen and (min-width: 841px) {
  #privacy {
    padding-top: calc(80 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #privacy {
    padding-top: calc(80 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #privacy {
    padding-bottom: calc(80 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #privacy {
    padding-bottom: calc(80 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #privacy h2 {
    margin-bottom: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #privacy h2 {
    margin-bottom: calc(40 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #privacy .ppwrap {
    padding-left: calc(120 / 1920 * 100vw);
    padding-right: calc(120 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #privacy .ppwrap {
    padding-left: calc(0 / 720 * 100vw);
    padding-right: calc(0 / 720 * 100vw);
  }
}
#privacy h3 {
  text-align: center;
}
@media screen and (min-width: 841px) {
  #privacy h3 {
    font-size: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #privacy h3 {
    font-size: calc(50 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #privacy h3 {
    margin-top: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #privacy h3 {
    margin-top: calc(30 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #privacy h3 {
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #privacy h3 {
    margin-bottom: calc(15 / 720 * 100vw);
  }
}
#privacy h4 {
  border-bottom: solid calc(3 / 1920 * 100vw) #fba0a1;
}
@media screen and (min-width: 841px) {
  #privacy h4 {
    font-size: calc(28 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #privacy h4 {
    font-size: calc(32 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #privacy h4 {
    border-bottom: solid calc(3 / 1920 * 100vw) #fba0a1;
  }
}
@media screen and (min-width: 841px) {
  #privacy h4 {
    margin-top: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #privacy h4 {
    margin-top: calc(40 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #privacy h4 {
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #privacy h4 {
    margin-bottom: calc(20 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #privacy h4 {
    padding-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #privacy h4 {
    padding-bottom: calc(20 / 720 * 100vw);
  }
}
#privacy p {
  font-size: 400;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media screen and (min-width: 841px) {
  #privacy p {
    font-size: calc(24 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #privacy p {
    font-size: calc(28 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #privacy p {
    margin-bottom: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #privacy p {
    margin-bottom: calc(20 / 720 * 100vw);
  }
}
#privacy p.head {
  text-indent: -0.8em;
  padding-left: 1em;
}
#privacy li {
  font-size: 400;
  letter-spacing: 0.05em;
  text-align: justify;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 841px) {
  #privacy li {
    font-size: calc(24 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #privacy li {
    font-size: calc(28 / 720 * 100vw);
  }
}

.totop {
  position: fixed;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media screen and (min-width: 841px) {
  .totop {
    width: calc(80 / 1920 * 100vw);
    height: calc(80 / 1920 * 100vw);
    bottom: calc(40 / 1920 * 100vw);
    right: calc(160 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .totop {
    width: calc(120 / 720 * 100vw);
    height: calc(120 / 720 * 100vw);
    bottom: calc(40 / 720 * 100vw);
    right: calc(60 / 720 * 100vw);
  }
}

.totop.show {
  opacity: 1;
  pointer-events: auto;
  z-index: 1002;
}

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 1002;
}
.popup.show {
  opacity: 1;
  pointer-events: auto;
}
.popup .popup-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  z-index: 1002;
}

footer {
  color: #fff;
  background: url(../img/bg.webp) repeat top left;
}
@media screen and (min-width: 841px) {
  footer {
    background-size: calc(6 / 1920 * 100vw);
    padding-top: calc(80 / 1920 * 100vw);
    padding-bottom: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer {
    background-size: calc(6 / 720 * 100vw);
    padding-top: calc(80 / 720 * 100vw);
    padding-bottom: calc(120 / 720 * 100vw);
  }
}
footer .logo {
  margin: auto;
}
@media screen and (min-width: 841px) {
  footer .logo {
    width: calc(410 / 1920 * 100vw);
    margin-bottom: calc(21 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .logo {
    width: calc(100% / 720 * 100vw);
    margin-bottom: calc(120 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  footer .name {
    font-size: calc(38 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .name {
    font-size: calc(55 / 720 * 100vw);
  }
}
footer .flexbox {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .flexbox {
    margin-bottom: calc(100 / 720 * 100vw);
  }
  footer .flexbox > div {
    width: 100%;
  }
}
footer .flexbox p.flexbox {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .flexbox p.flexbox {
    font-size: calc(34 / 720 * 100vw);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 841px) {
  footer .flexbox p.flexbox {
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .flexbox p.flexbox {
    margin-bottom: calc(40 / 720 * 100vw);
  }
}
footer .flexbox p.flexbox .head {
  color: #f2a5a6;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  footer .flexbox p.flexbox .head {
    font-size: calc(24 / 1920 * 100vw);
    width: calc(120 / 1920 * 100vw);
    height: calc(34 / 1920 * 100vw);
    border-radius: calc(4 / 1920 * 100vw);
    margin-right: calc(16 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .flexbox p.flexbox .head {
    font-size: calc(24 / 720 * 100vw);
    width: calc(120 / 720 * 100vw);
    height: calc(34 / 720 * 100vw);
    border-radius: calc(4 / 720 * 100vw);
    margin-right: calc(0 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  footer .flexbox p.flexbox:nth-child(4) .head {
    margin-right: calc(4 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .flexbox p.flexbox:nth-child(4) .head {
    margin-right: calc(0 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  footer .flexbox .rightbox {
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .flexbox .rightbox {
    margin-bottom: calc(40 / 720 * 100vw);
  }
}
footer .flexbox .rightbox p {
  margin: 0;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .flexbox .rightbox p {
    font-size: calc(28 / 720 * 100vw);
    text-align: right;
  }
}
footer .flexbox .rightbox p a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .flexbox .rightbox small {
    font-size: calc(28 / 720 * 100vw);
    text-align: right;
    display: block;
  }
}