@charset "UTF-8";
/* line 5, ../../../../../../../.rbenv/versions/2.7.6/lib/ruby/gems/2.7.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
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;
}

/* line 22, ../../../../../../../.rbenv/versions/2.7.6/lib/ruby/gems/2.7.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
  line-height: 1;
}

/* line 24, ../../../../../../../.rbenv/versions/2.7.6/lib/ruby/gems/2.7.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
  list-style: none;
}

/* line 26, ../../../../../../../.rbenv/versions/2.7.6/lib/ruby/gems/2.7.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 28, ../../../../../../../.rbenv/versions/2.7.6/lib/ruby/gems/2.7.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* line 30, ../../../../../../../.rbenv/versions/2.7.6/lib/ruby/gems/2.7.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
  quotes: none;
}

/* line 103, ../../../../../../../.rbenv/versions/2.7.6/lib/ruby/gems/2.7.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

/* line 32, ../../../../../../../.rbenv/versions/2.7.6/lib/ruby/gems/2.7.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
  border: none;
}

/* line 116, ../../../../../../../.rbenv/versions/2.7.6/lib/ruby/gems/2.7.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

:root {
  --color-red:#a52126;
  --color-gray-78:#787878;
  --font-gothic:"Noto Sans JP", sans-serif;
}

/* Antialiasing ※任意　*/
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: none;
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  color: #000000;
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Verdana, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  overflow-x: hidden;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #000000;
}
a:hover {
  text-decoration: underline;
}

p {
  font-size: 1.6rem;
}

.sp {
  display: none;
}

.flex {
  display: flex;
  justify-content: space-between;
}
.flex.rev {
  flex-direction: row-reverse;
}
.flex.bottom {
  align-items: flex-end;
}

.no-shrink {
  flex: 0;
}

.flex-left {
  display: flex;
  justify-content: start;
}

.flex-vc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.bold {
  font-weight: 900;
}

.big150 {
  font-size: 150%;
}

.center {
  text-align: center;
}

/*-----float-----*/
.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

.cl_both {
  clear: both;
}

/*-----font-----*/
.fw_b {
  font-weight: bold;
}

.ta_r {
  text-align: right;
}

.ta_c {
  text-align: center;
}

.ta_l {
  text-align: left;
}

/* IE10以上 不要なら削除 */
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Verdana, Meiryo, sans-serif;
  }
}
.mt0 {
  margin-top: 0px;
}

.mr0 {
  margin-right: 0px;
}

.mb0 {
  margin-bottom: 0px;
}

.ml0 {
  margin-left: 0px;
}

.pt0 {
  padding-top: 0px;
}

.pr0 {
  padding-right: 0px;
}

.pb0 {
  padding-bottom: 0px;
}

.pl0 {
  padding-left: 0px;
}

.mt5 {
  margin-top: 5px;
}

.mr5 {
  margin-right: 5px;
}

.mb5 {
  margin-bottom: 5px;
}

.ml5 {
  margin-left: 5px;
}

.pt5 {
  padding-top: 5px;
}

.pr5 {
  padding-right: 5px;
}

.pb5 {
  padding-bottom: 5px;
}

.pl5 {
  padding-left: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mr10 {
  margin-right: 10px;
}

.mb10 {
  margin-bottom: 10px;
}

.ml10 {
  margin-left: 10px;
}

.pt10 {
  padding-top: 10px;
}

.pr10 {
  padding-right: 10px;
}

.pb10 {
  padding-bottom: 10px;
}

.pl10 {
  padding-left: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mr15 {
  margin-right: 15px;
}

.mb15 {
  margin-bottom: 15px;
}

.ml15 {
  margin-left: 15px;
}

.pt15 {
  padding-top: 15px;
}

.pr15 {
  padding-right: 15px;
}

.pb15 {
  padding-bottom: 15px;
}

.pl15 {
  padding-left: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mr20 {
  margin-right: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.ml20 {
  margin-left: 20px;
}

.pt20 {
  padding-top: 20px;
}

.pr20 {
  padding-right: 20px;
}

.pb20 {
  padding-bottom: 20px;
}

.pl20 {
  padding-left: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mr25 {
  margin-right: 25px;
}

.mb25 {
  margin-bottom: 25px;
}

.ml25 {
  margin-left: 25px;
}

.pt25 {
  padding-top: 25px;
}

.pr25 {
  padding-right: 25px;
}

.pb25 {
  padding-bottom: 25px;
}

.pl25 {
  padding-left: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mr30 {
  margin-right: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.ml30 {
  margin-left: 30px;
}

.pt30 {
  padding-top: 30px;
}

.pr30 {
  padding-right: 30px;
}

.pb30 {
  padding-bottom: 30px;
}

.pl30 {
  padding-left: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mr35 {
  margin-right: 35px;
}

.mb35 {
  margin-bottom: 35px;
}

.ml35 {
  margin-left: 35px;
}

.pt35 {
  padding-top: 35px;
}

.pr35 {
  padding-right: 35px;
}

.pb35 {
  padding-bottom: 35px;
}

.pl35 {
  padding-left: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mr40 {
  margin-right: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.ml40 {
  margin-left: 40px;
}

.pt40 {
  padding-top: 40px;
}

.pr40 {
  padding-right: 40px;
}

.pb40 {
  padding-bottom: 40px;
}

.pl40 {
  padding-left: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mr45 {
  margin-right: 45px;
}

.mb45 {
  margin-bottom: 45px;
}

.ml45 {
  margin-left: 45px;
}

.pt45 {
  padding-top: 45px;
}

.pr45 {
  padding-right: 45px;
}

.pb45 {
  padding-bottom: 45px;
}

.pl45 {
  padding-left: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mr50 {
  margin-right: 50px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml50 {
  margin-left: 50px;
}

.pt50 {
  padding-top: 50px;
}

.pr50 {
  padding-right: 50px;
}

.pb50 {
  padding-bottom: 50px;
}

.pl50 {
  padding-left: 50px;
}

.mt55 {
  margin-top: 55px;
}

.mr55 {
  margin-right: 55px;
}

.mb55 {
  margin-bottom: 55px;
}

.ml55 {
  margin-left: 55px;
}

.pt55 {
  padding-top: 55px;
}

.pr55 {
  padding-right: 55px;
}

.pb55 {
  padding-bottom: 55px;
}

.pl55 {
  padding-left: 55px;
}

.mt60 {
  margin-top: 60px;
}

.mr60 {
  margin-right: 60px;
}

.mb60 {
  margin-bottom: 60px;
}

.ml60 {
  margin-left: 60px;
}

.pt60 {
  padding-top: 60px;
}

.pr60 {
  padding-right: 60px;
}

.pb60 {
  padding-bottom: 60px;
}

.pl60 {
  padding-left: 60px;
}

.mt65 {
  margin-top: 65px;
}

.mr65 {
  margin-right: 65px;
}

.mb65 {
  margin-bottom: 65px;
}

.ml65 {
  margin-left: 65px;
}

.pt65 {
  padding-top: 65px;
}

.pr65 {
  padding-right: 65px;
}

.pb65 {
  padding-bottom: 65px;
}

.pl65 {
  padding-left: 65px;
}

.mt70 {
  margin-top: 70px;
}

.mr70 {
  margin-right: 70px;
}

.mb70 {
  margin-bottom: 70px;
}

.ml70 {
  margin-left: 70px;
}

.pt70 {
  padding-top: 70px;
}

.pr70 {
  padding-right: 70px;
}

.pb70 {
  padding-bottom: 70px;
}

.pl70 {
  padding-left: 70px;
}

.mt75 {
  margin-top: 75px;
}

.mr75 {
  margin-right: 75px;
}

.mb75 {
  margin-bottom: 75px;
}

.ml75 {
  margin-left: 75px;
}

.pt75 {
  padding-top: 75px;
}

.pr75 {
  padding-right: 75px;
}

.pb75 {
  padding-bottom: 75px;
}

.pl75 {
  padding-left: 75px;
}

.mt80 {
  margin-top: 80px;
}

.mr80 {
  margin-right: 80px;
}

.mb80 {
  margin-bottom: 80px;
}

.ml80 {
  margin-left: 80px;
}

.pt80 {
  padding-top: 80px;
}

.pr80 {
  padding-right: 80px;
}

.pb80 {
  padding-bottom: 80px;
}

.pl80 {
  padding-left: 80px;
}

.mt85 {
  margin-top: 85px;
}

.mr85 {
  margin-right: 85px;
}

.mb85 {
  margin-bottom: 85px;
}

.ml85 {
  margin-left: 85px;
}

.pt85 {
  padding-top: 85px;
}

.pr85 {
  padding-right: 85px;
}

.pb85 {
  padding-bottom: 85px;
}

.pl85 {
  padding-left: 85px;
}

.mt90 {
  margin-top: 90px;
}

.mr90 {
  margin-right: 90px;
}

.mb90 {
  margin-bottom: 90px;
}

.ml90 {
  margin-left: 90px;
}

.pt90 {
  padding-top: 90px;
}

.pr90 {
  padding-right: 90px;
}

.pb90 {
  padding-bottom: 90px;
}

.pl90 {
  padding-left: 90px;
}

.mt95 {
  margin-top: 95px;
}

.mr95 {
  margin-right: 95px;
}

.mb95 {
  margin-bottom: 95px;
}

.ml95 {
  margin-left: 95px;
}

.pt95 {
  padding-top: 95px;
}

.pr95 {
  padding-right: 95px;
}

.pb95 {
  padding-bottom: 95px;
}

.pl95 {
  padding-left: 95px;
}

.mt100 {
  margin-top: 100px;
}

.mr100 {
  margin-right: 100px;
}

.mb100 {
  margin-bottom: 100px;
}

.ml100 {
  margin-left: 100px;
}

.pt100 {
  padding-top: 100px;
}

.pr100 {
  padding-right: 100px;
}

.pb100 {
  padding-bottom: 100px;
}

.pl100 {
  padding-left: 100px;
}

/* clearfix */
.cf:after {
  content: "";
  display: table;
  clear: both;
}

/* Margin-Center */
.ma-ce {
  margin-right: auto;
  margin-left: auto;
}

/* TextAlign */
.al {
  text-align: left;
}

.ar {
  text-align: right;
}

.ac {
  text-align: center;
}

/* Float */
.fl {
  float: left;
}

.fr {
  float: right;
}

.clear {
  clear: both;
}

/* position */
.poa {
  position: absolute;
}

.rel {
  position: relative;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
  body {
    overflow-x: hidden;
    font-size: 1.6rem;
    background: none;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .flex {
    flex-direction: column;
  }
}
body {
  font-feature-settings: "palt";
}

.w960 {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}

.w780 {
  width: 780px;
  max-width: 100%;
  margin: 0 auto;
}

.w790 {
  width: 790px;
  max-width: 100%;
  margin: 0 auto;
}

.w680 {
  width: 680px;
  max-width: 100%;
  margin: 0 auto;
}

.w580 {
  width: 580px;
  max-width: 100%;
  margin: 0 auto;
}

.w310 {
  width: 310px;
  max-width: 100%;
}

.bg-yellow {
  background-color: #f2f0e5;
}

.btn {
  opacity: 1;
  transition: 0.3s ease;
}
.btn:hover {
  opacity: 0.6;
  transform: translateY(-5px);
}

.red {
  color: #a52126;
}

.italic {
  font-style: italic;
}

.sp {
  display: none;
}

.float-nav {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.cv .inner {
  position: relative;
  padding: 0;
  margin: 0 19px 0 12px;
  margin-bottom: -36px;
}
.cv .btn {
  position: absolute;
  bottom: 106px;
  left: 114px;
  margin: 0 auto;
}
.cv .flex {
  margin-bottom: 34px;
}
.cv .annotation {
  font-size: 1.7rem;
}

#hero {
  position: relative;
  padding-top: 49px;
  padding-bottom: 80px;
}
#hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  max-height: 920px;
  background: url("../img/bg-hero@2x.jpg") 0 0 no-repeat;
  background-size: cover;
  background-position: top center;
}
#hero .catchcopy {
  margin-top: -6px;
}
#hero .catchcopy img {
  margin-bottom: -15px;
}

#authorize {
  position: relative;
  padding: 79px 20px 76px;
  background-color: #eae4d1;
}
#authorize .fukidashi {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 77px;
  height: 52px;
}
#authorize .fukidashi img {
  width: 100%;
  height: 100%;
}
#authorize .inner h2 {
  margin-bottom: 45px;
}
#authorize .inner .emblem {
  margin-bottom: 6px;
}
#authorize p {
  font-size: 1.8rem;
  margin: 41px auto 49px;
}
#authorize .annotation {
  font-size: 1.2rem;
}

#saiteki {
  position: relative;
}
#saiteki:after {
  position: absolute;
  bottom: -63px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 142px;
  height: 96px;
  background: url("../img/saiteki-tri@2x.png") 0 0 no-repeat;
  background-size: contain;
}
#saiteki .bg1 {
  width: 100%;
}
#saiteki .bg1:before, #saiteki .bg1:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
  background: url("../img/saiteki-bg-woman@2x.jpg") 0 0 no-repeat;
  background-size: cover;
  background-position: 50% 0;
}
#saiteki .bg1:after {
  left: auto;
  right: 0;
  background: url("../img/saiteki-bg-man@2x.jpg") 0 0 no-repeat;
  background-size: cover;
  background-position: top center;
}
#saiteki .inner {
  background-color: white;
  padding: 84px 70px 89px;
  text-align: center;
  box-sizing: border-box;
}
#saiteki .inner .ttl {
  margin-bottom: 40px;
}
#saiteki .inner .block {
  padding-bottom: 63px;
}
#saiteki .inner .block:after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  background: url("../img/saiteki-hasen@2x.png") center center no-repeat;
  background-size: contain;
}
#saiteki .inner .block:last-child {
  padding: 0;
}
#saiteki .inner .block:last-child:after {
  content: none;
}
#saiteki .inner .block:last-child p {
  margin-bottom: 0;
}
#saiteki .inner .block h4 {
  text-align: center;
  margin-bottom: 37px;
}
#saiteki .inner .block p {
  font-size: 1.7rem;
  margin-bottom: 36px;
  text-align: justify;
  padding: 0 12px;
}

#riyu {
  max-width: 100%;
  position: relative;
  z-index: 1;
  background: url("../img/riyu-bg-seamless@2x.jpg") 0 0 repeat;
  background-size: contain;
  background-size: 1728px 2186px;
  background-size: 3456px 4372px;
  background-position: 100% 0%;
}
#riyu .inner {
  position: relative;
  padding-bottom: 40px;
}
#riyu .inner .bg-wt {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 680px;
  max-width: 100%;
  height: 100%;
  background-color: white;
}
#riyu .inner .sa .ttl {
  width: 828px;
  max-width: 100%;
  margin: -40px auto 0;
}
#riyu .inner .copy {
  margin: 55px auto -10px;
  text-align: center;
}
#riyu .inner .img {
  text-align: center;
}
#riyu .inner .img img {
  margin-left: 15px;
}
#riyu .inner .w-riyu {
  position: relative;
  width: 560px;
  max-width: 100%;
  margin: 0 auto 60px;
  padding: 0 15px 60px;
  box-sizing: border-box;
}
#riyu .inner .w-riyu:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: url("../img/hasen-unit@2x.png") 0 0 repeat-x;
  background-size: 12px 1px;
}
#riyu .inner .ttl-sa {
  margin-bottom: 22px;
}
#riyu .inner p {
  text-align: justify;
  letter-spacing: -0.08em;
  font-size: 1.6rem;
}
#riyu .inner .kenkyu .koka {
  margin: 45px 0 45px;
}
#riyu .inner .kenkyu-contents {
  display: none;
}
#riyu .inner .extract {
  width: 850px;
  max-width: 100%;
  border: 2px solid #a52126;
  border-radius: 10px;
  background-color: white;
  padding: 40px;
  margin: 40px auto 0;
  box-sizing: border-box;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.3);
}
#riyu .inner .extract .ex-ttl {
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 2px solid #a52126;
  box-sizing: border-box;
}
#riyu .inner .extract p {
  flex: 1;
  letter-spacing: -0.1em;
}
#riyu .inner .extract .annotation {
  font-size: 1.2rem;
  margin-top: 30px;
}
#riyu .inner .extract .img {
  flex-shrink: 0;
  margin-left: 45px;
}
#riyu .inner .jissho {
  width: 540px;
  max-width: 100%;
  border: 2px solid #a52126;
  background-color: white;
  border-radius: 10px;
  margin: 40px auto;
  padding: 0 40px 37px;
}
#riyu .inner .jissho .ttl {
  margin: 25px auto 35px;
}
#riyu .inner .jissho .ilst {
  margin-bottom: 22px;
}
#riyu .inner .jissho-data p {
  font-size: 1.4rem;
}
#riyu .inner .jissho-data ul li {
  position: relative;
  font-size: 1.4rem;
  text-align: justify;
  padding-left: 1em;
}
#riyu .inner .jissho-data ul li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "●";
  color: #838383;
}
#riyu .inner .jissho-data p:last-child {
  padding-left: 1em;
}
#riyu .inner .jissho-data .kome {
  position: relative;
}
#riyu .inner .jissho-data .kome:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
  font-size: inherit;
}

#genryo {
  padding-top: 85px;
  padding-bottom: 75px;
  text-align: center;
}
#genryo .ttl {
  margin-bottom: 40px;
}
#genryo .hero {
  padding: 132px 20px;
  background: url("../img/genryo-hero@2x.jpg") 0 0 no-repeat;
  background-size: cover;
  background-position: center center;
}
#genryo .bg-gray {
  background-color: #e1e2e3;
}
#genryo .thumbnail {
  position: relative;
  padding: 70px 0 0;
}
#genryo .thumbnail .flex {
  position: relative;
  padding-bottom: 46px;
}
#genryo .thumbnail .flex:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: url("../img/hasen-unit@2x.png") 0 0 repeat-x;
  background-size: 12px 1px;
}
#genryo .copy {
  padding-top: 56px;
  position: relative;
}
#genryo .copy:after {
  content: "";
  position: relative;
  z-index: 2;
  display: block;
  width: 71px;
  height: 48px;
  background: url("../img/tri-red@2x.png") 0 0 no-repeat;
  background-size: contain;
  margin: 35px auto -35px;
  text-align: center;
}
#genryo .cv {
  position: relative;
}
#genryo .cv:before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 100vw;
  height: 283px;
  background-color: #e1e2e3;
}

#voice {
  position: relative;
  background-color: #eae4d1;
  text-align: center;
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
}
#voice .arc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#voice .bg {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
}
#voice .bg .bg1 {
  position: absolute;
  top: -115px;
  left: -153px;
  z-index: 1;
}
#voice .bg .bg2 {
  position: absolute;
  top: -157px;
  right: -265px;
  z-index: 1;
}
#voice .bg .bg3 {
  position: absolute;
  top: -185px;
  left: -172px;
  z-index: -1;
}
#voice .inner {
  width: 820px;
  max-width: 100%;
  margin: 0 auto;
}
#voice .inner .ttl {
  margin-bottom: 56px;
}
#voice .inner .ttl .deco {
  margin-bottom: 45px;
}
#voice .inner .content {
  position: relative;
  z-index: 1;
}
#voice .inner .voice {
  position: relative;
  z-index: 2;
  padding: 50px 20px 58px;
}
#voice .inner .voice.voice4:after {
  content: none;
}
#voice .inner .voice:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: url("../img/hasen-unit@2x.png") 0 0 repeat-x;
  background-size: 12px 1px;
}
#voice .inner .voice .img {
  position: relative;
  z-index: 1;
}
#voice .inner .annotation {
  text-align: end;
  font-size: 1.2rem;
}

.arcline {
  position: relative;
  height: 20px;
}
.arcline .arc {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}

#qa {
  position: relative;
  z-index: 1;
  padding-top: 120px;
}
#qa .arc {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
#qa .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
#qa .bg:before, #qa .bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 50%;
  height: 100%;
  background-color: #c1d2e4;
}
#qa .bg:after {
  left: auto;
  right: 0;
  background-color: #e9cdd3;
}
#qa .inner {
  position: relative;
  z-index: 10;
}
#qa .inner .ttl .qa {
  margin: 18px auto 77px;
}
#qa .inner .copy .nagata {
  margin-top: -216px;
}
#qa .inner .copy .yamazaki {
  margin-top: 1px;
}
#qa .inner .contents {
  width: 820px;
  max-width: 100%;
  margin: 0 auto;
}
#qa .inner .contents .qa-box {
  position: relative;
}
#qa .inner .contents .qa-box:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: url("../img/hasen-unit@2x.png") 0 0 repeat-x;
  background-size: 12px 1px;
}
#qa .inner .contents .qa-box:last-child:after {
  content: none;
}
#qa .inner .contents .qa1 .question {
  padding-top: 43px;
}
#qa .inner .contents .question {
  padding-top: 72px;
}
#qa .inner .contents .answer {
  padding: 40px 0 77px;
}

#notes {
  padding-bottom: 120px;
}
#notes .freedial {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
#notes .freedial a {
  display: flex;
  align-items: center;
  margin-left: 10px;
}
#notes .freedial a img {
  margin-right: 5px;
}
#notes .freedial .big150 {
  line-height: 1;
}
#notes .inner {
  width: 790px;
  max-width: 100%;
  padding: 94px 0 0;
  margin: 0 auto;
}
#notes .inner ul.yoko-list {
  flex-direction: column;
}
#notes .inner ul li {
  font-size: 1.6rem;
  line-height: 1.8;
}
#notes .inner ul li span {
  display: inline-block;
}
#notes .inner ul li span.ttl, #notes .inner ul li.ttl {
  position: relative;
  padding-left: 1em;
}
#notes .inner ul li span.ttl:before, #notes .inner ul li.ttl:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "●";
  color: #8b8b8b;
}
#notes .inner ul li.num {
  padding-left: 1em;
  text-indent: -1em;
}
#notes .inner ul li.num:before {
  content: none;
}
#notes .inner ul.list {
  margin-bottom: 20px;
}
#notes .inner ul.list li {
  border-bottom: 1px solid #bdbdbd;
  display: flex;
  padding: 5px 0;
}
#notes .inner ul.list li .ttl {
  width: 20%;
}
#notes .inner ul.list li .ttl:before {
  content: "●";
  color: #8b8b8b;
}
#notes .inner ul.list li .content {
  width: 80%;
}
#notes .inner .p-ttl {
  text-align: center;
  background-color: #787878;
  color: white;
  font-size: 2rem;
  font-weight: 600;
  min-height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 20px;
}
#notes .inner p {
  font-size: 1.6rem;
  text-align: justify;
  letter-spacing: 0;
}
#notes .inner .block p img {
  vertical-align: text-top;
}
#notes .inner .yoko-list li {
  margin-right: 10px;
}
#notes .inner .yoko-list li:before {
  content: "●";
  color: #8b8b8b;
}

footer {
  text-align: center;
  font-size: 1.6rem;
  padding-bottom: 60px;
}
footer a {
  color: #065FD4;
  text-decoration: underline;
  margin-right: 2em;
}

#hero:before {
  background: url("../img/b/hero-bg@2x.jpg") 0 0 no-repeat;
  background-size: cover;
  background-position: center center;
}
#hero .catchcopy {
  margin-top: -43px;
}
#hero .catchcopy img {
  position: relative;
  right: 34px;
}

#authorize {
  z-index: 1;
  padding: 100px 20px 200px;
  background: url("../img/b/bg-garlic@2x.jpg") 0 0 repeat;
  background: url("../img/riyu-bg-seamless@2x.jpg") 0 0 repeat;
  background-size: 3456px 4372px;
  background-position: 100% 0%;
  margin-bottom: -100px;
}
#authorize .inner {
  padding: 80px 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
}

#voice {
  z-index: 1;
  background: none;
  padding-top: 0;
  padding-bottom: 0;
}
#voice .voice {
  position: relative;
  background-color: #eae4d1;
  padding-bottom: 100px;
}
#voice .arc {
  position: relative;
  z-index: 1;
}
#voice .arc .first {
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  margin-top: 0;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
#voice .arc .second {
  display: flex;
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 20;
}
#voice .arc .second .spacer {
  background-color: #eae4d1;
}
#voice .arc .img {
  display: block;
}
#voice .arc .img img {
  width: 454px;
  height: auto;
}
#voice .arc .spacer {
  width: calc((100% - 454px) / 2);
  height: 100px;
  background-color: white;
}
#voice .bg {
  top: -80px;
}
#voice .bg.bg-top {
  overflow: hidden;
}

#qa {
  padding-bottom: 100px;
}
#qa .bg {
  height: calc(100% - 620px);
}
#qa .cv {
  position: relative;
  z-index: 1;
}

#genryo {
  padding-bottom: 0;
}

@media only screen and (max-width: 768px) {
  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  .w960 {
    width: 100%;
  }
  .float-nav {
    display: none;
  }
  .btm-nav {
    position: fixed;
    z-index: 999;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .btm-nav .flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
  }
  .btm-nav .flex a {
    width: 50%;
  }
  .btm-nav .flex .cv-btn img {
    float: right;
  }
  .btm-nav .flex .tel-btn img {
    float: left;
  }
  .pc {
    display: none;
  }
  #hero {
    padding: 15px 15px 0;
  }
  #hero:before {
    background-image: url("../img/bg-hero-sp@2x.jpg");
    height: 104vw;
  }
  #hero h1 img {
    width: 100px;
    height: auto;
  }
  #hero .catchcopy .inner {
    margin: -29px 18px 0 0;
  }
  .cv {
    width: 100vw;
    max-width: none;
    margin: 0 -15px;
    padding-bottom: 35px;
  }
  .cv .inner {
    margin: 10px 0 0;
  }
  .cv .inner .img img {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 108%;
    max-width: none;
  }
  .cv .inner .img.btn {
    position: absolute;
    left: 50%;
    bottom: 10.6666vw;
    transform: translateX(-50%);
  }
  .cv .inner .img.btn img {
    width: auto;
  }
  .cv .flex {
    flex-direction: row;
    margin-bottom: 25px;
  }
  .cv .flex .point {
    width: 31.5942%;
  }
  .cv .btn {
    bottom: 0;
    left: 0;
  }
  .cv .w780 {
    padding: 0 15px;
    box-sizing: border-box;
    margin-top: -15px;
  }
  .cv .annotation {
    font-size: 2.6666vw;
  }
  #authorize {
    padding: 38px 15px 30px;
  }
  #authorize .fukidashi {
    width: 33px;
    height: 22px;
  }
  #authorize .fukidashi img {
    display: block;
  }
  #authorize .inner h2 {
    margin-bottom: 17px;
  }
  #authorize .inner .flex {
    flex-direction: row;
  }
  #authorize .inner h3 {
    margin-top: 25px;
    padding: 0 15px;
  }
  #authorize p {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: justify;
    margin: 20px 0 26px;
    padding: 0 15px;
  }
  #authorize .annotation {
    display: block;
    text-align: justify;
    font-size: 2.6666vw;
    line-height: 1.4;
  }
  #saiteki {
    padding: 150px 15px 0;
    background-color: #eae4d1;
  }
  #saiteki:after {
    width: 90px;
    height: 61px;
    bottom: -37px;
  }
  #saiteki .bg1:before {
    width: 100%;
    height: 69.3333vw;
    z-index: 1;
    background-image: url("../img/saiteki-bg-sp@2x.jpg");
  }
  #saiteki .bg1:after {
    content: none;
  }
  #saiteki .inner {
    padding: 25px 15px;
    position: relative;
    z-index: 2;
  }
  #saiteki .inner .ttl {
    margin-bottom: 23px;
  }
  #saiteki .inner h3 {
    width: 197px;
    margin: 0 auto 0;
  }
  #saiteki .inner .block {
    padding-bottom: 27px;
  }
  #saiteki .inner .block:last-child {
    margin-bottom: 25px;
  }
  #saiteki .inner .block h4 {
    margin-bottom: 20px;
  }
  #saiteki .inner .block p {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 0;
    margin-bottom: 20px;
  }
  #riyu {
    padding: 120px 15px 20px;
    background-image: url("../img/riyu-bg-sp@2x.jpg");
    background-size: 375px 751px;
    background-size: 100% auto;
  }
  #riyu .bg3 {
    display: none;
  }
  #riyu .inner {
    padding-bottom: 0;
  }
  #riyu .inner .img {
    text-align: center;
  }
  #riyu .inner .bg-wt {
    padding-bottom: 20px;
  }
  #riyu .inner .extract {
    width: calc(100% - 30px);
    padding: 25px 15px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
  }
  #riyu .inner .extract .ex-ttl {
    margin-bottom: 15px;
  }
  #riyu .inner .extract p {
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
  }
  #riyu .inner .extract .img {
    margin: 0 auto;
  }
  #riyu .inner .extract .img img {
    margin: 0;
  }
  #riyu .inner .extract .annotation {
    margin: 15px 0 0;
  }
  #riyu .inner .copy {
    width: 253px;
    margin-top: 25px;
    margin-bottom: 5px;
  }
  #riyu .inner .img {
    max-width: 100%;
  }
  #riyu .inner .sa {
    margin-top: 0;
  }
  #riyu .inner .sa .ttl {
    margin: 0 auto;
  }
  #riyu .inner .sa .ttl img {
    margin-top: -43px;
  }
  #riyu .inner .sa > .img {
    text-align: center;
  }
  #riyu .inner .sa > .img img {
    width: 330px;
    margin: 0 auto 2px;
  }
  #riyu .inner .ttl-sa img {
    width: 186px;
  }
  #riyu .inner .w-riyu {
    font-size: 1.3rem;
    padding-bottom: 30px;
    margin-bottom: 0;
    text-align: center;
  }
  #riyu .inner .w-riyu:after {
    position: relative;
    margin: 30px auto 0;
  }
  #riyu .inner .kenkyu .fukidashi img {
    width: 270px;
    margin: 0 auto;
  }
  #riyu .inner .kenkyu .koka {
    margin-top: 27px;
  }
  #riyu .inner .kenkyu .koka img {
    width: 249px;
    margin: 0 auto;
  }
  #riyu .inner .kenkyu .btn {
    width: calc(100% - 30px);
  }
  #riyu .inner .kenkyu-contents {
    padding: 0 15px;
  }
  #riyu .inner .jissho {
    padding: 0 20px 20px;
    box-sizing: border-box;
  }
  #riyu .inner .jissho .tag {
    width: 83px;
    margin: 0 auto;
  }
  #riyu .inner .jissho1 .ttl img {
    width: 215px;
  }
  #riyu .inner .jissho1 .ilst img {
    width: 198px;
  }
  #riyu .inner .jissho2 .ttl img {
    width: 189px;
  }
  #riyu .inner .jissho2 .ilst img {
    width: 224px;
  }
  #riyu .inner .jissho-data p, #riyu .inner .jissho-data ul li {
    text-align: justify;
    font-size: 1.3rem;
  }
  #genryo {
    padding-top: 30px;
    padding-bottom: 0;
  }
  #genryo .ttl {
    margin-bottom: 20px;
  }
  #genryo .ttl img {
    width: 107px;
  }
  #genryo .hero {
    padding: 36px 15px;
  }
  #genryo .thumbnail {
    padding-top: 26px;
  }
  #genryo .thumbnail .flex {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 0;
  }
  #genryo .thumbnail .flex:after {
    position: relative;
    width: calc(100% - 60px);
    margin: 30px 0 0;
  }
  #genryo .thumbnail .flex .thum-block {
    width: 43%;
  }
  #genryo .copy {
    padding-top: 35px;
  }
  #genryo .copy img {
    width: 281px;
  }
  #genryo .copy:after {
    margin: 26px auto 0;
  }
  #genryo .cv {
    margin: 0;
  }
  #genryo .cv:before {
    height: 44vw;
  }
  #genryo .cv .inner {
    margin-top: 0;
  }
  #voice {
    padding-top: 35px;
  }
  #voice .arc img {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 133px;
    height: 18px;
  }
  #voice .bg img {
    filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, 0.4));
    position: relative;
  }
  #voice .bg .bg1 {
    top: -32px;
    left: -46px;
  }
  #voice .bg .bg1 img {
    width: 171px;
    height: 145px;
  }
  #voice .bg .bg2 {
    right: -81px;
  }
  #voice .bg .bg2 img {
    width: 215px;
    height: 227px;
  }
  #voice .bg.sp {
    z-index: -1;
  }
  #voice .bg .bg3 {
    top: auto;
    bottom: -100px;
    left: -62px;
  }
  #voice .bg .bg3 img {
    width: 265px;
    height: 257px;
  }
  #voice .inner .ttl {
    margin-bottom: 22px;
  }
  #voice .inner .ttl .deco.img {
    margin-bottom: 17px;
  }
  #voice .inner .ttl .deco.img img {
    width: 74px;
  }
  #voice .inner .ttl .img img {
    width: 226px;
  }
  #voice .inner .voice {
    padding: 24px 25px;
  }
  #voice .inner .voice:after {
    width: calc(100% - 50px);
    left: 50%;
    transform: translateX(-50%);
  }
  #voice .inner .voice .img img {
    position: relative;
    z-index: 1;
  }
  #voice .inner .voice3 {
    position: relative;
    z-index: 5;
  }
  #voice .inner .voice3:after {
    z-index: -10;
  }
  #voice .inner .voice4 {
    z-index: 10;
  }
  #voice .inner .voice.flex {
    flex-direction: row;
  }
  #voice .inner .voice.flex.rev {
    flex-direction: row-reverse;
  }
  #voice .inner .human {
    width: 80px;
  }
  #voice .inner .annotation {
    font-size: 2.666666vw;
    padding: 0 35px;
  }
  .arcline {
    height: 6px;
  }
  .arcline .arc img {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 133px;
    height: 17px;
  }
  #qa {
    padding-top: 35px;
  }
  #qa .arc img {
    margin: 0 auto;
    text-align: center;
    display: block;
    width: 133px;
    height: 18px;
  }
  #qa .inner .ttl .deco img {
    width: 74px;
  }
  #qa .inner .ttl .qa {
    margin: 13px auto 24px;
  }
  #qa .inner .ttl .qa img {
    width: 130px;
  }
  #qa .inner .copy.flex {
    display: block;
    position: relative;
    margin: 0 auto;
  }
  #qa .inner .copy.flex .txt img {
    display: block;
    width: 191px;
    margin: 0 auto;
  }
  #qa .inner .copy.flex .nagata {
    position: absolute;
    top: -144px;
    left: 27px;
    margin: 0;
  }
  #qa .inner .copy.flex .yamazaki {
    position: absolute;
    top: -117px;
    right: 20px;
    margin: 0;
  }
  #qa .inner .contents .question {
    padding-top: 25px;
  }
  #qa .inner .contents .answer {
    padding-top: 15px;
    padding-bottom: 30px;
  }
  #qa .inner .contents .qa1 .question {
    padding-top: 25px;
  }
  #qa .inner .contents .qa-box:after {
    width: calc(100% - 60px);
    left: 50%;
    transform: translateX(-50%);
  }
  #notes {
    padding: 30px;
  }
  #notes li, #notes p {
    font-size: 1.2rem;
  }
  #notes .inner {
    padding: 0;
  }
  #notes .inner ul.list li {
    flex-direction: column;
    padding-left: 1em;
  }
  #notes .inner ul.list li .ttl, #notes .inner ul.list li .content {
    font-size: 1.2rem;
    width: 100%;
  }
  #notes .inner ul.list li .ttl {
    width: 100%;
    text-indent: -1em;
  }
  #notes .inner ul li {
    font-size: 1.2rem;
  }
  #notes .inner .freedial {
    display: block;
  }
  #notes .inner .freedial a {
    margin-left: 0;
  }
  #notes .inner .freedial a img {
    width: auto;
    height: 18px;
    vertical-align: middle;
  }
  #notes .inner .p-ttl {
    font-size: 1.3rem;
    min-height: 2em;
  }
  #notes .inner p {
    font-size: 1.2rem;
  }
  footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    padding-bottom: 20px;
    margin-bottom: 66px;
  }
}
@media only screen and (max-width: 768px) {
  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  .w960 {
    width: 100%;
  }
  .float-nav {
    display: none;
  }
  .btm-nav {
    position: fixed;
    z-index: 999;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .btm-nav .flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
  }
  .btm-nav .flex a {
    width: 50%;
  }
  .btm-nav .flex .cv-btn img {
    float: right;
  }
  .btm-nav .flex .tel-btn img {
    float: left;
  }
  #hero {
    padding: 15px 15px 0;
  }
  #hero:before {
    background-image: url("../img/b/hero-bg-sp@2x.jpg");
    height: 104vw;
    background-position: 30% 0%;
  }
  #hero h1 img {
    width: 100px;
    height: auto;
  }
  #hero .catchcopy {
    width: 190px;
    height: auto;
    margin: 0 0 0 auto;
  }
  #hero .catchcopy .inner {
    margin: 0 0 0 0;
  }
  #hero .catchcopy .inner img {
    right: 28px;
  }
  .cv {
    width: 100vw;
    max-width: none;
    margin: 0 -15px;
    padding-bottom: 35px;
  }
  .cv .inner {
    margin: 10px 0 0;
  }
  .cv .inner .img img {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 108%;
    max-width: none;
  }
  .cv .inner .img.btn {
    position: absolute;
    left: 50%;
    bottom: 10.6666vw;
    transform: translateX(-50%);
  }
  .cv .inner .img.btn img {
    width: auto;
  }
  .cv .flex {
    flex-direction: row;
    margin-bottom: 25px;
  }
  .cv .flex .point {
    width: 31.5942%;
  }
  .cv .btn {
    bottom: 0;
    left: 0;
  }
  .cv .w780 {
    padding: 0 15px;
    box-sizing: border-box;
    margin-top: -15px;
  }
  .cv .annotation {
    font-size: 2.6666vw;
  }
  #authorize {
    padding: 60px 0 0;
    margin-bottom: -60px;
  }
  #authorize .fukidashi {
    width: 33px;
    height: 22px;
  }
  #authorize .fukidashi img {
    display: block;
  }
  #authorize .inner {
    border-radius: 0;
    box-sizing: border-box;
    padding: 33px 16px 60px;
  }
  #authorize .inner h2 {
    margin-bottom: 17px;
  }
  #authorize .inner .flex {
    flex-direction: row;
  }
  #authorize .inner h3 {
    margin-top: 25px;
    padding: 0 15px;
  }
  #authorize p {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: justify;
    margin: 20px 0 26px;
    padding: 0 15px;
  }
  #authorize .annotation {
    display: block;
    text-align: justify;
    font-size: 2.6666vw;
    line-height: 1.4;
  }
  #voice {
    padding-top: 35px;
  }
  #voice .arc .img img {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 133px;
    height: auto;
  }
  #voice .arc .spacer {
    width: calc((100% - 133px) / 2 + 2px);
    height: 29px;
  }
  #voice .arc .second {
    height: 29px;
    display: flex;
    align-items: flex-end;
  }
  #voice .arc .second .img {
    display: flex;
    align-items: flex-end;
  }
  #voice .arc .second .img img {
    height: 23px;
  }
  #voice .arc .second .spacer {
    height: 23px;
  }
  #voice .voice {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  #voice .bg {
    top: -23px;
  }
  #voice .bg img {
    filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, 0.4));
    position: relative;
  }
  #voice .bg .bg1 {
    top: -32px;
    left: -46px;
  }
  #voice .bg .bg1 img {
    width: 171px;
    height: 145px;
  }
  #voice .bg .bg2 {
    right: -81px;
    top: -133px;
  }
  #voice .bg .bg2 img {
    width: 215px;
    height: 227px;
  }
  #voice .bg.sp {
    z-index: -1;
  }
  #voice .bg.sp .bg3 {
    bottom: -120px;
  }
  #voice .bg .bg3 {
    top: auto;
    bottom: -100px;
    left: -62px;
  }
  #voice .bg .bg3 img {
    width: 265px;
    height: 257px;
  }
  #voice .inner .ttl {
    margin-bottom: 22px;
  }
  #voice .inner .ttl .deco.img {
    margin-bottom: 17px;
  }
  #voice .inner .ttl .deco.img img {
    width: 74px;
  }
  #voice .inner .ttl .img img {
    width: 226px;
  }
  #voice .inner .voice {
    padding: 24px 25px;
  }
  #voice .inner .voice:after {
    width: calc(100% - 50px);
    left: 50%;
    transform: translateX(-50%);
  }
  #voice .inner .voice .img img {
    position: relative;
    z-index: 1;
  }
  #voice .inner .voice3 {
    position: relative;
    z-index: 5;
  }
  #voice .inner .voice3:after {
    z-index: -10;
  }
  #voice .inner .voice4 {
    z-index: 10;
    background: none;
  }
  #voice .inner .voice.flex {
    flex-direction: row;
  }
  #voice .inner .voice.flex.rev {
    flex-direction: row-reverse;
  }
  #voice .inner .human {
    width: 80px;
  }
  #voice .inner .annotation {
    font-size: 2.666666vw;
    padding: 0 35px;
  }
  .arcline {
    height: 6px;
  }
  .arcline .arc img {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 133px;
    height: 17px;
  }
  #qa {
    padding-top: 35px;
    padding-bottom: 0px;
  }
  #qa .bg {
    height: calc(100% - 330px);
  }
  #qa .arc img {
    margin: 0 auto;
    text-align: center;
    display: block;
    width: 133px;
    height: 18px;
  }
  #qa .inner .ttl .deco img {
    width: 74px;
  }
  #qa .inner .ttl .qa {
    margin: 13px auto 24px;
  }
  #qa .inner .ttl .qa img {
    width: 130px;
  }
  #qa .inner .copy.flex {
    display: block;
    position: relative;
    margin: 0 auto;
  }
  #qa .inner .copy.flex .txt img {
    display: block;
    width: 191px;
    margin: 0 auto;
  }
  #qa .inner .copy.flex .nagata {
    position: absolute;
    top: -144px;
    left: 27px;
    margin: 0;
  }
  #qa .inner .copy.flex .yamazaki {
    position: absolute;
    top: -117px;
    right: 20px;
    margin: 0;
  }
  #qa .inner .contents .question {
    padding-top: 25px;
  }
  #qa .inner .contents .answer {
    padding-top: 15px;
    padding-bottom: 30px;
  }
  #qa .inner .contents .qa1 .question {
    padding-top: 25px;
  }
  #qa .inner .contents .qa-box:after {
    width: calc(100% - 60px);
    left: 50%;
    transform: translateX(-50%);
  }
  #qa .cv {
    margin: 0 auto;
    padding-bottom: 40px;
  }
  #saiteki {
    padding: 150px 15px 0;
    background-color: #eae4d1;
  }
  #saiteki:after {
    width: 90px;
    height: 61px;
    bottom: -37px;
  }
  #saiteki .bg1:before {
    width: 100%;
    height: 69.3333vw;
    z-index: 1;
    background-image: url("../img/saiteki-bg-sp@2x.jpg");
  }
  #saiteki .bg1:after {
    content: none;
  }
  #saiteki .inner {
    padding: 25px 15px;
    position: relative;
    z-index: 2;
  }
  #saiteki .inner .ttl {
    margin-bottom: 23px;
  }
  #saiteki .inner h3 {
    width: 197px;
    margin: 0 auto 0;
  }
  #saiteki .inner .block {
    padding-bottom: 27px;
  }
  #saiteki .inner .block:last-child {
    margin-bottom: 25px;
  }
  #saiteki .inner .block h4 {
    margin-bottom: 20px;
  }
  #saiteki .inner .block p {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 0;
    margin-bottom: 20px;
  }
  #riyu {
    padding: 120px 15px 20px;
    background-image: url("../img/riyu-bg-sp@2x.jpg");
    background-size: 375px 751px;
  }
  #riyu .inner .ttl-sa img {
    width: 186px;
  }
  #riyu .inner .w-riyu {
    font-size: 1.3rem;
    padding-bottom: 30px;
    margin-bottom: 0;
  }
  #riyu .inner .w-riyu:after {
    position: relative;
    margin: 30px auto 0;
  }
  #genryo {
    padding-top: 30px;
    padding-bottom: 0;
  }
  #genryo .ttl {
    margin-bottom: 20px;
  }
  #genryo .ttl img {
    width: 107px;
  }
  #genryo .hero {
    padding: 36px 15px;
  }
  #genryo .thumbnail {
    padding-top: 26px;
  }
  #genryo .thumbnail .flex {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 0;
  }
  #genryo .thumbnail .flex:after {
    position: relative;
    width: calc(100% - 60px);
    margin: 30px 0 0;
  }
  #genryo .thumbnail .flex .thum-block {
    width: 43%;
  }
  #genryo .copy {
    padding-top: 35px;
  }
  #genryo .copy img {
    width: 281px;
  }
  #genryo .copy:after {
    margin: 26px auto 0;
  }
  #genryo .cv {
    margin: 0;
  }
  #genryo .cv:before {
    height: 44vw;
  }
  #genryo .cv .inner {
    margin-top: 0;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  #hero .catchcopy img {
    width: 39.2vw;
  }
  .cv .inner .img img {
    width: 108vw;
  }
  .cv .inner .img.btn img {
    width: 86.6666vw;
  }
  #qa .inner .copy.flex .nagata {
    width: 21.6vw;
  }
  #qa .inner .copy.flex .yamazaki {
    width: 22.93333vw;
  }
  #authorize .inner h2 img {
    width: 47.2vw;
  }
  #saiteki .inner .block h4 img {
    max-height: 4.8vw;
  }
  #saiteki .inner .block:last-child h4 img {
    max-height: 10.6vw;
  }
  #qa .inner .contents {
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 768px) {
  .cv .flex .point img {
    width: 100%;
  }
  #authorize.bg-auth {
    background-image: url("../img/riyu-bg-sp@2x.jpg");
    background-size: 100% auto;
  }
  #authorize .inner .flex .img {
    width: calc((100% - 10px) / 3);
  }
  #authorize .inner .flex .img img {
    width: 100%;
  }
}
#hero {
  padding-bottom: 70px;
}

.cv .inner {
  width: 100%;
  margin: 0;
}
.cv .btn-wrap {
  position: absolute;
  left: 0;
  bottom: 101px;
  display: block;
  width: 100%;
}
.cv .btn-wrap .btn {
  position: relative;
  width: 78.75%;
  left: 0;
  bottom: 0;
  display: block;
  margin: 0 auto;
}
.cv .btn-wrap .txt {
  width: 52.70833%;
  margin: 23px auto 0;
}
.cv .btn-wrap .txt img {
  display: block;
  width: 100%;
}
.cv .w780 {
  width: 828px;
  margin-top: -27px;
}
.cv .w780 .annotation {
  margin-bottom: 35px;
}
.cv .w780 .flex {
  margin-bottom: 0;
}

.cv3 {
  position: relative;
  z-index: 1;
  margin-top: -380px;
}

#riyu {
  background: url("../img202307/riyu-bg-0731@2x.jpg") 50% 0 repeat;
  background-size: 4870px 6090px;
}
#riyu .inner .jissho {
  width: 480px;
}
#riyu .inner .jissho .ilst {
  position: relative;
}
#riyu .inner .jissho .ilst .fukidashi {
  position: absolute;
}
#riyu .inner .jissho1 .ttl {
  margin-bottom: 61px;
}
#riyu .inner .jissho1 .ilst {
  padding-left: 26px;
}
#riyu .inner .jissho1 .ilst .fukidashi {
  top: -105px;
  right: -146px;
}
#riyu .inner .jissho2 .ttl {
  margin-bottom: 43px;
}
#riyu .inner .jissho2 .ilst {
  padding-left: 33px;
}
#riyu .inner .jissho2 .ilst .fukidashi {
  top: -54px;
  right: -139px;
}
#riyu .inner .jissho3 .ttl {
  margin-bottom: 32px;
}
#riyu .inner .jissho3 .ilst {
  padding-right: 2px;
}
#riyu .inner .jissho3 .ilst .fukidashi {
  top: -52px;
  right: -139px;
}
#riyu .inner .extract {
  margin-top: 72px;
}

#genryo .copy:after {
  margin-bottom: 0;
}
#genryo .cv2 {
  margin-top: -35px;
}
#genryo .cv2:before {
  height: 353px;
}

#qa {
  padding-bottom: 380px;
}
#qa .inner .contents .qa7 .answer {
  padding-bottom: 57px;
}

.m3 #hero .catchcopy {
  width: 59.79166%;
  margin-top: -4px;
}
.m3 #hero .catchcopy img {
  right: 24px;
  margin-bottom: 17px;
}
.m3 #qa {
  padding-bottom: 440px;
}
.m3 #qa .bg {
  height: 100%;
}
.m3 .cv2 {
  margin-top: -440px;
  margin-bottom: 86px;
  position: relative;
  z-index: 1;
}
.m3 #genryo .copy {
  padding-bottom: 380px;
}
.m3 #voice .bg .bg3 {
  top: -100px;
}
.m3 #voice .inner .voice3 {
  background: transparent;
  z-index: 2;
}

.m8 #hero .catchcopy {
  width: auto;
  max-width: 960px;
  margin-top: 16px;
}
.m8 #hero .catchcopy img {
  width: 59.89583%;
  right: 1.77083%;
}

@media screen and (max-width: 768px) {
  #hero {
    padding-bottom: 0;
  }
  .cv {
    padding-bottom: 7.46666vw;
  }
  .cv .inner .img.btn {
    width: 75.110475vw;
    position: relative;
    left: 0;
    bottom: 0;
    transform: none;
  }
  .cv .inner .img.btn img {
    width: 100%;
  }
  .cv .inner .img img {
    max-width: 100%;
    left: 0;
    transform: none;
  }
  .cv .btn-wrap {
    bottom: 11.46666vw;
  }
  .cv .btn-wrap .btn {
    width: 86.6666%;
  }
  .cv .btn-wrap .txt {
    margin-top: 10px;
  }
  .cv .w780 {
    margin-top: -2.6666vw;
  }
  .cv .w780 .annotation {
    margin-bottom: 4.8vw;
  }
  .cv3 {
    margin-top: -59.46666vw;
    margin-left: auto;
    margin-right: auto;
  }
  #riyu {
    background: url("../img202307/riyu-bg-0731-sp@2x.jpg") 50% -140px repeat;
    background-size: 150% auto;
  }
  #riyu .inner .jissho .ttl {
    margin-bottom: 7.2vw;
  }
  #riyu .inner .jissho .ttl img {
    width: auto;
    height: 110px;
  }
  #riyu .inner .jissho1 .ilst {
    padding-left: 0;
  }
  #riyu .inner .jissho1 .ilst img {
    width: 57.0666vw;
  }
  #riyu .inner .jissho1 .ilst .fukidashi {
    width: 26.4vw;
  }
  #riyu .inner .jissho2 .ilst {
    text-align: left;
    padding-left: 2.13333vw;
  }
  #riyu .inner .jissho2 .ilst img {
    width: 56vw;
  }
  #riyu .inner .jissho2 .ilst .fukidashi {
    width: 24vw;
  }
  #riyu .inner .jissho3 .ttl img {
    width: auto;
    height: 18.4vw;
  }
  #riyu .inner .jissho3 .ilst {
    text-align: left;
    padding-left: 0;
  }
  #riyu .inner .jissho3 .ilst img {
    width: 56vw;
  }
  #riyu .inner .jissho3 .ilst .fukidashi {
    width: 24vw;
  }
  #genryo .cv2 {
    margin-top: -2.6666vw;
  }
  #genryo .cv2:before {
    height: 43.2vw;
  }
  #qa {
    padding-bottom: 59.46666vw;
  }
  #qa .inner .contents .qa7 .answer {
    padding-bottom: 2.6666vw;
  }
  .m1 #hero .catchcopy .inner {
    margin: 0 0 0 0;
    padding-right: 3.125vw;
  }
  .m1 #hero .catchcopy img {
    width: 42.5vw;
    margin-bottom: 0;
  }
  .m3 #hero .catchcopy img {
    width: auto;
  }
  .m3 #qa {
    padding-bottom: 48vw;
  }
  .m3 #genryo .copy {
    padding-bottom: 38.93333vw;
  }
  .m3 .cv2 {
    margin-top: -48vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
  .m3 .cv3 {
    margin-top: -41.3333vw;
  }
  .m3 #voice .bg.sp .bg3 {
    top: auto;
  }
  .m8 #hero .catchcopy {
    width: auto;
  }
  .m8 #hero .catchcopy img {
    width: 59.89583%;
  }
}
@media screen and (max-width: 480px) {
  .cv .inner .img.btn {
    width: 86.6666vw;
  }
  #riyu {
    background: url("../img202307/riyu-bg-0731-sp@2x.jpg") 50% -76px repeat;
    background-size: 585px 827px;
  }
  #riyu .inner .jissho1 .ilst .fukidashi {
    top: -9.86666vw;
    right: -9.06666vw;
  }
  #riyu .inner .jissho2 .ilst .fukidashi {
    top: -2.93333vw;
    right: -8.53333vw;
  }
  #riyu .inner .jissho3 .ilst .fukidashi {
    top: -2.93333vw;
    right: -8.53333vw;
  }
  .m3 #hero .catchcopy {
    width: 46.93333vw;
    margin-top: -25px;
  }
  .m8 #hero .catchcopy img {
    width: 50.1333vw;
  }
  .m8 #hero .catchcopy {
    margin-top: -28px;
  }
}
#authorize .annotation {
  display: block;
}

@media screen and (max-width: 768px) {
  #authorize .annotation {
    font-feature-settings: "palt";
    letter-spacing: -0.12em;
    letter-spacing: -0.06em;
  }
}
#authorize {
  z-index: 1;
  padding: 100px 20px;
  background: url(../img/b/bg-garlic@2x.jpg) 0 0 repeat;
  background: url(../img/riyu-bg-seamless@2x.jpg) 0 0 repeat;
  background-position: 90% 6.5%;
  background-size: 3456px auto;
}
.m3 #authorize, .m8 #authorize {
  --arc-height:100px;
  padding-bottom: calc(100px + var(--arc-height));
}
#authorize .inner {
  box-sizing: border-box;
  padding: 100px 0 80px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
}
#authorize .inner .copy {
  width: 60.7292%;
  margin: 0 auto;
  margin-bottom: 70px;
}
#authorize .inner .txt {
  width: 64.5833%;
  margin: 0 auto;
  margin-bottom: 60px;
}
#authorize .inner .end {
  width: 48.5417%;
  margin: 0 auto;
  margin-bottom: 0;
  text-align: center;
}

#voice .inner .voice .img {
  z-index: 2;
}

@media screen and (max-width: 768px) {
  #authorize {
    padding-top: 40px;
    padding-bottom: 40px;
    background-position: 0 0;
  }
  .m3 #authorize, .m8 #authorize {
    --arc-height:29px;
    padding-bottom: calc(40px + var(--arc-height));
  }
  #authorize.bg-auth {
    background-image: url(../img20240325/riyu-bg-sp@2x.jpg);
  }
  #authorize .inner {
    padding: 46px 22px 43px;
    border-radius: 10px;
  }
  #authorize .inner .copy {
    width: 84.7176%;
    padding: 0;
    margin: 0 auto;
    margin-bottom: 36px;
  }
  #authorize .inner .txt {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    margin-bottom: 42px;
  }
  #authorize .inner .end {
    width: 97.0432%;
    padding: 0;
    margin: 0 auto;
  }
  #voice .bg.sp {
    z-index: 1;
  }
}
.cv.guide {
  position: relative;
  z-index: 1;
}
.cv.guide:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: url("../guide/cv@2x.png") 0 0 no-repeat;
  background-size: 100% auto;
  z-index: 9999;
  pointer-events: none;
}
.cv.w960 {
  width: 990px;
}
.cv .w780 {
  margin-top: -46px;
}
.cv .btn-wrap {
  bottom: 111px;
}
.cv .btn-wrap .btn {
  width: 76.4%;
}
.cv .btn-wrap .txt {
  width: 51.1%;
}
.cv .annotation {
  margin-bottom: 21px;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .cv.cv1.w960 {
    width: calc(100% + 30px);
  }
  .cv.w960 {
    width: 100%;
  }
  .cv .w780 {
    margin-top: -4.5vw;
  }
  .cv .btn-wrap {
    bottom: 12.8vw;
  }
  .cv .btn-wrap .txt {
    width: 62.5%;
  }
  .cv .annotation {
    line-height: 1.5;
    margin-bottom: 3.2vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .cv .annotation {
    width: 80%;
    margin: 0 auto 2.3vw;
    font-size: 1.8vw;
    line-height: 1.7;
  }
  .cv .inner .img.btn {
    width: 76.4vw;
  }
  .cv .btn-wrap {
    bottom: 11.3vw;
  }
  .cv .btn-wrap .txt {
    width: 51.2%;
    margin-top: 2.1vw;
  }
  .cv .w780 {
    width: 87.2%;
  }
}
@media screen and (max-width: 480px) {
  .cv.guide:before {
    background-image: url("../guide/cv-sp@2x.png");
  }
}
.mt1em {
  margin-top: 1em;
}

#notes .freedial-align-end {
  align-items: flex-end;
}
#notes .freedial-align-end a {
  align-items: flex-end;
}

.big125 {
  font-size: 125%;
}

.red.bold {
  font-weight: 700;
}

.block-sonota .tel {
  position: relative;
  top: -0.4em;
  margin: 0 0.6em;
}

@media screen and (max-width: 480px) {
  .block-sonota .tel {
    margin: 0 0.6em 0 0;
  }
}
.cv.guide:before {
  content: none;
  background: none;
}

:root {
  --px-vw: calc( 100vw / var( --width ) );
  --width:1280;
}

p {
  font-family: var(--font-gothic);
}

#hero {
  padding: 0 0 71px;
  position: relative;
}
#hero .bg img {
  width: 100%;
}
#hero:before {
  content: none;
  background: none;
}
#hero .header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
}
#hero .header .inner {
  width: 84.53125%;
  max-width: 100%;
  margin: 3.75vw auto 0;
}
#hero .header .inner .logo img {
  width: 163px;
}

.cv.w960 {
  margin-top: calc(-162 * var(--px-vw));
  width: 828px;
  max-width: 100%;
  position: relative;
  z-index: 5;
}
.cv.w960.cv2 {
  margin-top: -372px;
  margin-bottom: 86px;
}
.cv.w960.cv3 {
  margin-top: -357px;
  margin-bottom: 61px;
}
.cv.w960 .inner {
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 23px rgba(0, 0, 0, 0.3);
  padding-top: 29px;
  padding-bottom: 40px;
  text-align: center;
}
.cv.w960 .inner .gentei {
  margin-bottom: 25px;
}
.cv.w960 .inner .cnt {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 14px;
}
.cv.w960 .inner .cnt .pkg {
  position: relative;
  margin-top: 10px;
  margin-left: -53px;
  width: 420px;
  max-width: 50.72463%;
}
.cv.w960 .inner .cnt .kino {
  margin-bottom: 17px;
}
.cv.w960 .inner .cnt .ttl {
  margin-left: -2px;
  margin-bottom: 16px;
}
.cv.w960 .inner .cnt .price {
  margin-left: -8px;
}
.cv.w960 .inner .ann {
  font-size: 12px;
  padding: 0 40px;
  text-align: justify;
  letter-spacing: 0.05em;
  line-height: 1.65em;
}
.cv.w960 .btn-wrap {
  margin-top: 24px;
  position: relative;
  bottom: auto;
}
.cv.w960 .btn-wrap .btn {
  width: 91.2%;
}
.cv.w960 .btn-wrap .txt {
  width: 61.1%;
  margin-top: 21px;
}
.cv.w960 .w780 {
  margin-top: 26px;
}
.cv.w960 .w780 .point {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  border-radius: 15px;
  border: 2px solid var(--color-red);
  width: 31.7%;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: 0.06em;
  padding: 27px 0 27px;
  gap: 0px;
}
.cv.w960 .w780 .point .red {
  font-weight: 600;
}
.cv.w960 .w780 .point .mid {
  font-size: 152.38095%;
}
.cv.w960 .w780 .point .big {
  font-size: 180.9524%;
}
.cv.w960 .w780 .point.p1 {
  padding-top: 32px;
  gap: 1px;
}
.cv.w960 .w780 .point.p1 .red {
  line-height: 1.2em;
}
.cv.w960 .w780 .point.p2 .red {
  line-height: 1.17em;
  letter-spacing: 0.1em;
}
.cv.w960 .w780 .point.p3 {
  padding-top: 56px;
  gap: 5px;
}
.cv.w960 .w780 .point.p3 .red {
  line-height: 1em;
  letter-spacing: 0.12em;
}

#authorize {
  background: url("../img/202601/bg-intro@2x.webp") 0 0 repeat;
  background-size: calc(1734 * var(--px-vw)) auto;
  background-position: 50.7% 24.1%;
}
#authorize .inner {
  padding-top: 87px;
  padding-bottom: 65px;
  margin-bottom: 90px;
}
#authorize .inner .copy {
  margin-bottom: 59px;
}
#authorize .inner .txt {
  width: 65.8%;
  margin-bottom: 48px;
}
#authorize .inner .end {
  width: 56.8%;
}
#authorize .inner .end img {
  width: 100%;
  margin-left: -4px;
}

#voice .bg .bg1 {
  top: -125px;
}
#voice .bg .bg2 {
  top: -118px;
}
#voice .bg .bg3 {
  top: -126px;
}
#voice .bg.bg-top {
  pointer-events: none;
}
#voice .inner .voice {
  padding: 40px 18px 54px 12px;
}
#voice .inner .voice.rev {
  padding: 40px 33px 54px 16px;
}
#voice .inner .voice.voice2 {
  padding-top: 65px;
  padding-bottom: 62px;
}
#voice .inner .voice.voice2 .fukidashi {
  padding-top: 0px;
  margin-top: -2px;
}
#voice .inner .voice.voice3 {
  padding-top: 51px;
  padding-left: 0;
  padding-bottom: 60px;
}
#voice .inner .voice.voice3 .fukidashi {
  padding-top: 12px;
}
#voice .inner .voice.voice4 {
  padding-top: 62px;
  padding-right: 36px;
  padding-bottom: 48px;
}
#voice .inner .voice.voice4 .human {
  padding-top: 16px;
}
#voice .inner .voice.voice4 .fukidashi {
  padding-top: 0;
}
#voice .inner .voice .fukidashi {
  padding-top: 31px;
}

#qa {
  padding-top: 119px;
}
#qa .bg {
  height: 100%;
}
#qa .inner .ttl .qa {
  margin: 28px auto 77px;
}
#qa .inner .ttl .qa img {
  width: 334px;
  max-width: 100%;
  margin-left: 10px;
}
#qa .inner .copy .txt {
  margin-left: 5px;
}
#qa .inner .copy .yamazaki {
  margin-right: -8px;
}

#saiteki {
  padding-top: 63px;
  background-color: #eae4d1;
}
#saiteki .ilst img {
  margin-left: -34px;
}
#saiteki .inner {
  width: 828px;
  max-width: 100%;
  margin: 0 auto;
  padding: 54px 90px 99px;
}
#saiteki .inner .ttl {
  margin-bottom: 46px;
}
#saiteki .inner .block {
  padding-bottom: 48px;
}
#saiteki .inner .block:after {
  content: "";
  display: block;
  height: 1px;
  border: none;
  background-image: repeating-linear-gradient(90deg, #000000, #000000 6px, transparent 6px, transparent 12px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}
@media screen and (max-width: 1280px) {
  #saiteki .inner .block:after {
    background-image: repeating-linear-gradient(90deg, #000000, #000000 4px, transparent 4px, transparent 8px);
  }
}
@media screen and (max-width: 768px) {
  #saiteki .inner .block:after {
    background-image: repeating-linear-gradient(90deg, #000000, #000000 4px, transparent 4px, transparent 8px);
  }
}
#saiteki .inner .block:last-child:after {
  content: "";
}
#saiteki .inner .block:last-child p {
  margin-bottom: 34px;
}
#saiteki .inner .block.block-2 p {
  margin-bottom: 35px;
}
#saiteki .inner .block.block-3 p {
  margin-bottom: 39px;
}
#saiteki .inner .block p {
  padding: 0 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.5em;
  margin-bottom: 30px;
}
#saiteki .inner .block p .sup {
  font-size: 12px;
  font-weight: 400;
  vertical-align: 0.5em;
}
#saiteki .inner .block p .ann {
  font-size: 12px;
  font-weight: 400;
}
#saiteki .arrow {
  position: relative;
  z-index: 20;
  text-align: center;
}
#saiteki .arrow img {
  position: absolute;
  bottom: -63px;
  left: 50%;
  transform: translateX(-50%);
}

#riyu {
  background: url("../img/202601/riyu-bg.webp") 50vw 0 repeat;
  background-size: 2762.5px auto;
}
#riyu .inner {
  padding-bottom: 54px;
}
#riyu .inner .bg-wt {
  width: 828px;
}
#riyu .inner .sa {
  width: 828px;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 110px;
  padding-bottom: 72px;
}
#riyu .inner .sa:after {
  width: 708px;
  max-width: 100%;
  margin: 0 auto;
  content: "";
  display: block;
  height: 1px;
  border: none;
  background-image: repeating-linear-gradient(90deg, #000000, #000000 6px, transparent 6px, transparent 12px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}
@media screen and (max-width: 1280px) {
  #riyu .inner .sa:after {
    background-image: repeating-linear-gradient(90deg, #000000, #000000 4px, transparent 4px, transparent 8px);
  }
}
@media screen and (max-width: 768px) {
  #riyu .inner .sa:after {
    background-image: repeating-linear-gradient(90deg, #000000, #000000 4px, transparent 4px, transparent 8px);
  }
}
#riyu .inner .sa .ttl {
  margin-top: 0;
  margin-bottom: 57px;
  width: 768px;
}
#riyu .inner .sa .subttl {
  margin-bottom: 32px;
}
#riyu .inner .sa .txt {
  padding: 0 58px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.7em;
  margin-bottom: 45px;
}
#riyu .inner .sa .ilst {
  padding-bottom: 60px;
}
#riyu .inner .sa .ilst img {
  margin-left: -6px;
}
#riyu .inner .kenkyu .img img {
  margin-left: 0;
}
#riyu .inner .jissho {
  width: 556px;
  border-radius: 20px;
  margin-top: 0;
}
#riyu .inner .jissho.jissho1 {
  padding-bottom: 33px;
  margin-top: 44px;
  margin-bottom: 25px;
}
#riyu .inner .jissho.jissho1 .ilst {
  margin-bottom: 40px;
}
#riyu .inner .jissho.jissho1 .ilst .fukidashi {
  right: -108px;
}
#riyu .inner .jissho.jissho1 .img2 {
  margin-bottom: 33px;
}
#riyu .inner .jissho.jissho2 {
  padding-bottom: 34px;
  margin-bottom: 25px;
}
#riyu .inner .jissho.jissho2 .ttl {
  margin-bottom: 41px;
}
#riyu .inner .jissho.jissho2 .ttl img {
  width: auto;
}
#riyu .inner .jissho.jissho2 .ilst {
  margin-bottom: 34px;
}
#riyu .inner .jissho.jissho2 .ilst .fukidashi {
  right: -101px;
}
#riyu .inner .jissho.jissho2 .img1 {
  margin-bottom: 33px;
}
#riyu .inner .jissho.jissho3 {
  padding-bottom: 35px;
  margin-bottom: 25px;
}
#riyu .inner .jissho.jissho3 .ttl {
  margin-bottom: 30px;
}
#riyu .inner .jissho.jissho3 .ttl img {
  width: auto;
  margin-left: -11px;
}
#riyu .inner .jissho.jissho3 .ilst {
  margin-bottom: 38px;
}
#riyu .inner .jissho.jissho3 .ilst .fukidashi {
  right: -101px;
}
#riyu .inner .jissho.jissho3 .img1 {
  margin-bottom: 31px;
}
#riyu .inner .jissho.jissho4 {
  padding-top: 20px;
  margin-bottom: 0;
}
#riyu .inner .jissho.jissho4 .ttl {
  width: 540px;
  max-width: 100%;
  padding-bottom: 27px;
  margin-bottom: 23px;
  border-bottom: 2px solid #a52126;
}
#riyu .inner .jissho.jissho4 .ttl img {
  width: auto;
}
#riyu .inner .jissho.jissho4 .txt {
  width: 540px;
  max-width: 100%;
  margin: 0 auto 37px;
  font-size: 16px;
  letter-spacing: 0.02em;
}
#riyu .inner .jissho.jissho4 .img1 {
  margin-bottom: 10px;
}
#riyu .inner .jissho.jissho4 .img2 {
  margin-bottom: 0;
  margin-left: -82px;
  margin-right: -3px;
}
#riyu .inner .jissho.jissho4 .img3 {
  margin-bottom: 22px;
}
#riyu .inner .jissho.jissho4 .txt2 {
  margin-bottom: 7px;
}
#riyu .inner .jissho .tag {
  margin-top: -2px;
}
#riyu .inner .jissho .ttl {
  margin-top: 29px;
  margin-bottom: 59px;
}
#riyu .inner .jissho .img {
  margin-bottom: 54px;
}
#riyu .inner .jissho .ann {
  font-size: 12px;
  letter-spacing: -0.02em;
  line-height: 1.72em;
}

#genryo .copy {
  padding-bottom: 396px;
}
#genryo .copy:after {
  margin-top: 30px;
}

#capsule {
  background-color: #4cb4c0;
  text-align: center;
  padding: 76px 0 82px;
}
#capsule .inner {
  width: 756px;
  max-width: 100%;
  margin: 0 auto;
}
#capsule .inner .flex {
  margin-bottom: 25px;
}
#capsule .inner .flex .ttl {
  margin-top: 57px;
}
#capsule .inner .flex .pkg {
  margin-right: 19px;
}

#notes {
  padding-bottom: 120px;
}
#notes span {
  line-height: 1.6em;
}
#notes .url {
  letter-spacing: 0em;
}
#notes .mglr {
  margin-left: 0.5em;
  margin-right: 0.5em;
}
#notes .freedial {
  display: block;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
#notes .freedial a {
  display: inline-block;
  align-items: center;
  margin-left: 10px;
  text-decoration: none;
}
#notes .freedial a img {
  margin-right: 5px;
}
#notes .freedial .big150 {
  font-size: 24px;
  line-height: 1em;
  line-height: 1em;
  text-decoration: none;
  margin-top: -0.8em;
}
#notes .freedial .big150 span {
  font-size: 30px;
  line-height: 1em;
}
#notes .inner {
  width: 790px;
  max-width: 100%;
  padding: 94px 0 0;
  margin: 0 auto;
}
#notes .inner ul {
  line-height: 1.55em;
  margin-bottom: 1.1em;
}
#notes .inner ul.yoko-list {
  display: flex;
}
#notes .inner ul.yoko-list.flex-left {
  display: flex;
  flex-direction: row;
}
#notes .inner ul li {
  font-size: 16px;
  line-height: 1.55em;
}
#notes .inner ul li span {
  display: inline-block;
}
#notes .inner ul li span.ttl, #notes .inner ul li.ttl {
  position: relative;
  padding-left: 1em;
}
#notes .inner ul li span.ttl:before, #notes .inner ul li.ttl:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "●";
  color: #8b8b8b;
  font-size: 80%;
}
#notes .inner ul li.num {
  padding-left: 1em;
  text-indent: -1em;
}
#notes .inner ul li.num:before {
  content: none;
}
#notes .inner ul.list {
  margin-bottom: 34px;
}
#notes .inner ul.list li {
  border-bottom: 1px solid #bdbdbd;
  display: flex;
  padding: 9px 0 9px;
}
#notes .inner ul.list li .ttl {
  width: 27.7%;
}
#notes .inner ul.list li .ttl:before {
  content: "●";
  color: #8b8b8b;
}
#notes .inner ul.list li .content {
  width: 80%;
}
#notes .inner ul.recipt li {
  margin-bottom: 0.7em;
}
#notes .inner ul.recipt li:last-of-type {
  margin-bottom: 0;
}
#notes .inner .p-ttl {
  text-align: center;
  background-color: var(--color-gray-78);
  color: white;
  font-size: 20px;
  font-weight: 600;
  min-height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 15px;
}
#notes .inner .p-ttl.gray {
  background-color: #a5a3a2;
  margin-bottom: 28px;
}
#notes .inner .p-ttl.cp {
  margin-top: 57px;
}
#notes .inner p {
  font-size: 16px;
  text-align: justify;
  letter-spacing: -0.02em;
  line-height: 1.55em;
  margin-bottom: 0.75em;
}
#notes .inner .card-brand {
  margin: 14px 0 23px;
}
#notes .inner .no-mg {
  margin: 0;
}
#notes .inner .block {
  margin-bottom: 46px;
}
#notes .inner .block p img {
  vertical-align: text-top;
}
#notes .inner .yoko-list li {
  margin-right: 19px;
}
#notes .inner .yoko-list li:before {
  content: "●";
  color: #8b8b8b;
  font-size: 80%;
}

@media screen and (max-width: 1280px) {
  :root {
    --px-vw: calc( 100vw / var( --width ) );
    --width:1280;
  }
  img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .float-nav .btn img {
    width: calc(81 * var(--px-vw));
  }
  .w960 {
    width: calc(960 * var(--px-vw));
  }
  .cv {
    margin: 0 auto;
  }
  .cv.w960 {
    width: calc(828 * var(--px-vw));
    margin-top: calc(-162 * var(--px-vw));
  }
  .cv.w960 .inner {
    padding-top: calc(29 * var(--px-vw));
    border-radius: calc(10 * var(--px-vw));
    padding-bottom: calc(40 * var(--px-vw));
  }
  .cv.w960 .inner .gentei {
    width: calc(704 * var(--px-vw));
    margin-bottom: calc(25 * var(--px-vw));
  }
  .cv.w960 .inner .cnt {
    gap: calc(15 * var(--px-vw));
    margin-bottom: calc(14 * var(--px-vw));
  }
  .cv.w960 .inner .cnt .pkg {
    margin-top: calc(10 * var(--px-vw));
    margin-left: calc(-53 * var(--px-vw));
    width: calc(420 * var(--px-vw));
  }
  .cv.w960 .inner .cnt .kino {
    margin-bottom: calc(17 * var(--px-vw));
  }
  .cv.w960 .inner .cnt .kino img {
    width: calc(408 * var(--px-vw));
  }
  .cv.w960 .inner .cnt .ttl {
    margin-left: calc(-2 * var(--px-vw));
    margin-bottom: calc(16 * var(--px-vw));
  }
  .cv.w960 .inner .cnt .ttl img {
    width: calc(346 * var(--px-vw));
  }
  .cv.w960 .inner .cnt .price img {
    width: calc(401 * var(--px-vw));
  }
  .cv.w960 .inner .ann {
    font-size: calc(12 * var(--px-vw));
    padding: 0 calc(40 * var(--px-vw));
  }
  .cv.w960 .btn-wrap {
    margin-top: calc(24 * var(--px-vw));
  }
  .cv.w960 .btn-wrap .txt {
    margin-top: calc(21 * var(--px-vw));
  }
  .cv.w960 .w780 {
    margin-top: calc(26 * var(--px-vw));
  }
  .cv.w960 .w780 .point {
    font-size: calc(21 * var(--px-vw));
    border-width: calc(2 * var(--px-vw));
    border-radius: calc(15 * var(--px-vw));
    padding: calc(27 * var(--px-vw)) 0 calc(27 * var(--px-vw));
  }
  .cv.w960 .w780 .point.p1 {
    padding-top: calc(32 * var(--px-vw));
  }
  .cv.w960 .w780 .point.p2 .red {
    line-height: 1.2;
  }
  .cv.w960 .w780 .point.p3 {
    padding-top: calc(56 * var(--px-vw));
    gap: calc(12 * var(--px-vw));
  }
  .cv.w960 .w780 .point.p3 .red {
    font-size: 114.29%;
  }
  .cv.w960 .w780 .point.p3 .red .big {
    font-size: 158.33%;
  }
  .cv.w960.cv2 {
    margin-top: calc(-372 * var(--px-vw));
    margin-bottom: calc(86 * var(--px-vw));
  }
  .cv.w960.cv3 {
    margin-top: calc(-357 * var(--px-vw));
    margin-bottom: calc(61 * var(--px-vw));
  }
  #hero {
    padding-bottom: calc(71 * var(--px-vw));
  }
  #hero .header .inner .logo img {
    margin-left: 0;
    width: calc(163 * var(--px-vw));
  }
  #authorize {
    padding: calc(100 * var(--px-vw)) calc(20 * var(--px-vw));
  }
  #authorize .fukidashi {
    width: calc(77 * var(--px-vw));
    height: calc(52 * var(--px-vw));
  }
  #authorize .inner {
    padding-top: calc(87 * var(--px-vw));
    padding-bottom: calc(65 * var(--px-vw));
    margin-bottom: calc(90 * var(--px-vw));
  }
  #authorize .inner .copy {
    margin-bottom: calc(59 * var(--px-vw));
  }
  #authorize .inner .txt {
    margin-bottom: calc(48 * var(--px-vw));
  }
  #voice .bg {
    top: calc(-78 * var(--px-vw));
  }
  #voice .bg .bg1 {
    top: calc(-128 * var(--px-vw));
    left: calc(-154 * var(--px-vw));
    z-index: 1;
  }
  #voice .bg .bg1 img {
    width: calc(582 * var(--px-vw));
    filter: drop-shadow(calc(20 * var(--px-vw)) calc(20 * var(--px-vw)) calc(20 * var(--px-vw)) rgba(0, 0, 0, 0.4));
  }
  #voice .bg .bg2 {
    top: calc(-118 * var(--px-vw));
    right: calc(-265 * var(--px-vw));
  }
  #voice .bg .bg2 img {
    width: calc(545 * var(--px-vw));
    filter: drop-shadow(calc(20 * var(--px-vw)) calc(20 * var(--px-vw)) calc(20 * var(--px-vw)) rgba(0, 0, 0, 0.4));
  }
  #voice .bg .bg3 {
    top: calc(-126 * var(--px-vw));
    left: calc(-172 * var(--px-vw));
  }
  #voice .bg .bg3 img {
    width: calc(669 * var(--px-vw));
    filter: drop-shadow(calc(20 * var(--px-vw)) calc(20 * var(--px-vw)) calc(20 * var(--px-vw)) rgba(0, 0, 0, 0.4));
  }
  #voice .arc .spacer {
    width: 50%;
    height: calc(100 * var(--px-vw));
  }
  #voice .arc .img {
    flex-shrink: 0;
  }
  #voice .arc .img img {
    width: calc(454 * var(--px-vw));
  }
  #voice .arc .second {
    height: calc(80 * var(--px-vw));
  }
  #voice .inner {
    width: calc(820 * var(--px-vw));
  }
  #voice .inner .ttl {
    margin-bottom: calc(56 * var(--px-vw));
  }
  #voice .inner .ttl .img img {
    width: calc(582 * var(--px-vw));
  }
  #voice .inner .ttl .deco {
    margin-bottom: calc(45 * var(--px-vw));
  }
  #voice .inner .ttl .deco img {
    width: calc(181 * var(--px-vw));
  }
  #voice .inner .copy img {
    width: calc(577 * var(--px-vw));
  }
  #voice .inner .voice {
    padding: calc(40 * var(--px-vw)) calc(18 * var(--px-vw)) calc(54 * var(--px-vw)) calc(12 * var(--px-vw));
  }
  #voice .inner .voice.rev {
    padding: calc(40 * var(--px-vw)) calc(33 * var(--px-vw)) calc(54 * var(--px-vw)) calc(16 * var(--px-vw));
  }
  #voice .inner .voice.voice1 .human img {
    width: calc(174 * var(--px-vw));
  }
  #voice .inner .voice.voice1 .fukidashi {
    padding-top: calc(31 * var(--px-vw));
  }
  #voice .inner .voice.voice1 .fukidashi img {
    width: calc(588 * var(--px-vw));
  }
  #voice .inner .voice.voice2 {
    padding-top: calc(65 * var(--px-vw));
    padding-bottom: calc(62 * var(--px-vw));
  }
  #voice .inner .voice.voice2 .human img {
    width: calc(145 * var(--px-vw));
  }
  #voice .inner .voice.voice2 .fukidashi img {
    width: calc(588 * var(--px-vw));
  }
  #voice .inner .voice.voice3 {
    padding-top: calc(51 * var(--px-vw));
    padding-left: 0;
    padding-bottom: calc(60 * var(--px-vw));
  }
  #voice .inner .voice.voice3 .human img {
    width: calc(178 * var(--px-vw));
  }
  #voice .inner .voice.voice3 .fukidashi {
    padding-top: calc(12 * var(--px-vw));
  }
  #voice .inner .voice.voice3 .fukidashi img {
    width: calc(588 * var(--px-vw));
  }
  #voice .inner .voice.voice4 {
    padding-top: calc(62 * var(--px-vw));
    padding-right: calc(36 * var(--px-vw));
    padding-bottom: calc(48 * var(--px-vw));
  }
  #voice .inner .voice.voice4 .human {
    padding-top: calc(16 * var(--px-vw));
  }
  #voice .inner .voice.voice4 .human img {
    width: calc(145 * var(--px-vw));
  }
  #voice .inner .voice.voice4 .fukidashi img {
    width: calc(588 * var(--px-vw));
  }
  #voice .inner .annotation {
    font-size: calc(12 * var(--px-vw));
  }
  .arcline {
    height: calc(20 * var(--px-vw));
  }
  .arcline .arc img {
    width: calc(454 * var(--px-vw));
  }
  #qa {
    padding-top: calc(119 * var(--px-vw));
    padding-bottom: calc(380 * var(--px-vw));
  }
  #qa .arc img {
    width: calc(454 * var(--px-vw));
  }
  #qa .inner .ttl .deco img {
    width: calc(181 * var(--px-vw));
  }
  #qa .inner .ttl .qa {
    margin: calc(28 * var(--px-vw)) auto calc(77 * var(--px-vw));
  }
  #qa .inner .ttl .qa img {
    width: calc(334 * var(--px-vw));
    margin-left: auto;
    position: relative;
    left: calc(4 * var(--px-vw));
  }
  #qa .inner .copy .nagata {
    margin-top: calc(-216 * var(--px-vw));
  }
  #qa .inner .copy .nagata img {
    width: calc(222 * var(--px-vw));
  }
  #qa .inner .copy .yamazaki {
    margin-right: calc(-8 * var(--px-vw));
    margin-top: calc(1 * var(--px-vw));
  }
  #qa .inner .copy .yamazaki img {
    width: calc(235 * var(--px-vw));
  }
  #qa .inner .copy .txt img {
    width: calc(475 * var(--px-vw));
  }
  #qa .inner .contents .question {
    padding-top: calc(72 * var(--px-vw));
  }
  #qa .inner .contents .question img {
    width: calc(595 * var(--px-vw));
  }
  #qa .inner .contents .answer {
    padding: calc(40 * var(--px-vw)) 0 calc(77 * var(--px-vw));
  }
  #qa .inner .contents .answer img {
    width: calc(820 * var(--px-vw));
  }
  #qa .inner .contents .qa1 .question {
    padding-top: calc(43 * var(--px-vw));
  }
  #qa .inner .contents .qa7 .answer {
    padding-bottom: calc(57 * var(--px-vw));
  }
  #saiteki {
    padding-top: calc(63 * var(--px-vw));
  }
  #saiteki .ilst img {
    width: calc(427 * var(--px-vw));
    margin-left: auto;
    position: relative;
    left: calc(-18 * var(--px-vw));
  }
  #saiteki .inner {
    width: calc(828 * var(--px-vw));
    padding: calc(54 * var(--px-vw)) calc(90 * var(--px-vw)) calc(99 * var(--px-vw));
  }
  #saiteki .inner .ttl {
    margin-bottom: calc(46 * var(--px-vw));
  }
  #saiteki .inner .ttl img {
    width: calc(416 * var(--px-vw));
  }
  #saiteki .inner .block {
    padding-bottom: calc(48 * var(--px-vw));
  }
  #saiteki .inner .block h4 {
    margin-bottom: calc(37 * var(--px-vw));
  }
  #saiteki .inner .block h4 img {
    height: calc(31 * var(--px-vw));
    width: auto;
  }
  #saiteki .inner .block p {
    padding: 0 calc(16 * var(--px-vw));
    font-size: calc(17 * var(--px-vw));
    margin-bottom: calc(30 * var(--px-vw));
  }
  #saiteki .inner .block p .sup {
    font-size: 70.59%;
  }
  #saiteki .inner .block p .ann {
    font-size: 70.59%;
  }
  #saiteki .inner .block.block-2 p {
    margin-bottom: calc(35 * var(--px-vw));
  }
  #saiteki .inner .block.block-3 {
    padding-bottom: calc(52 * var(--px-vw));
  }
  #saiteki .inner .block.block-3 h4 {
    margin-bottom: calc(34 * var(--px-vw));
  }
  #saiteki .inner .block.block-3 p {
    margin-bottom: calc(39 * var(--px-vw));
  }
  #saiteki .inner .block.block-4 h4 {
    margin-bottom: calc(34 * var(--px-vw));
  }
  #saiteki .inner .block.block-4 p {
    margin-bottom: calc(34 * var(--px-vw));
  }
  #saiteki .arrow img {
    width: calc(142 * var(--px-vw));
    bottom: calc(-63 * var(--px-vw));
  }
  #riyu {
    background-size: calc(2762.5 * var(--px-vw)) auto;
  }
  #riyu .inner {
    padding-bottom: calc(54 * var(--px-vw));
  }
  #riyu .inner .bg-wt {
    width: calc(828 * var(--px-vw));
  }
  #riyu .inner .sa {
    width: calc(828 * var(--px-vw));
    padding-top: calc(110 * var(--px-vw));
    padding-bottom: calc(72 * var(--px-vw));
  }
  #riyu .inner .sa:after {
    width: calc(708 * var(--px-vw));
  }
  #riyu .inner .sa .ttl {
    margin-bottom: calc(57 * var(--px-vw));
    width: calc(768 * var(--px-vw));
  }
  #riyu .inner .sa .subttl {
    margin-bottom: calc(32 * var(--px-vw));
  }
  #riyu .inner .sa .subttl img {
    width: calc(608 * var(--px-vw));
  }
  #riyu .inner .sa .txt {
    font-size: calc(16 * var(--px-vw));
    padding: 0 calc(58 * var(--px-vw));
    margin-bottom: calc(45 * var(--px-vw));
  }
  #riyu .inner .sa .ilst {
    padding-bottom: calc(60 * var(--px-vw));
  }
  #riyu .inner .sa .ilst img {
    width: calc(708 * var(--px-vw));
    margin-left: auto;
    left: calc(-6 * var(--px-vw));
  }
  #riyu .inner .kenkyu .fukidashi img {
    width: calc(479 * var(--px-vw));
    margin-left: auto;
  }
  #riyu .inner .kenkyu .koka {
    margin: calc(45 * var(--px-vw)) auto calc(45 * var(--px-vw));
    width: calc(445 * var(--px-vw));
  }
  #riyu .inner .kenkyu .btn img {
    width: calc(640 * var(--px-vw));
  }
  #riyu .inner .jissho {
    width: calc(556 * var(--px-vw));
    border-radius: calc(20 * var(--px-vw));
    padding: 0 calc(40 * var(--px-vw)) calc(37 * var(--px-vw));
  }
  #riyu .inner .jissho .tag img {
    width: calc(140 * var(--px-vw));
  }
  #riyu .inner .jissho .ttl {
    margin-top: calc(29 * var(--px-vw));
    margin-bottom: calc(59 * var(--px-vw));
  }
  #riyu .inner .jissho .img {
    margin-bottom: calc(54 * var(--px-vw));
  }
  #riyu .inner .jissho .img img {
    width: calc(460 * var(--px-vw));
    margin-left: auto;
  }
  #riyu .inner .jissho .ann {
    font-size: calc(12 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho1 {
    padding-bottom: calc(33 * var(--px-vw));
    margin-top: calc(44 * var(--px-vw));
    margin-bottom: calc(25 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho1 .ttl img {
    width: calc(388 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho1 .ilst {
    margin-bottom: calc(40 * var(--px-vw));
    padding-left: calc(26 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho1 .ilst img {
    width: calc(383 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho1 .ilst .fukidashi {
    top: calc(-105 * var(--px-vw));
    right: calc(-108 * var(--px-vw));
    width: calc(190 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho1 .img2 {
    margin-bottom: calc(33 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho2 {
    padding-bottom: calc(34 * var(--px-vw));
    margin-bottom: calc(25 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho2 .ttl {
    margin-bottom: calc(41 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho2 .ttl img {
    width: calc(450 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho2 .ilst {
    margin-left: auto;
    margin-bottom: calc(34 * var(--px-vw));
    padding-left: calc(33 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho2 .ilst img {
    width: calc(374 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho2 .ilst .fukidashi {
    width: calc(176 * var(--px-vw));
    top: calc(-54 * var(--px-vw));
    right: calc(-101 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho2 .img img {
    width: calc(467 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho2 .img1 {
    margin-bottom: calc(33 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho3 {
    padding-bottom: calc(35 * var(--px-vw));
    margin-bottom: calc(25 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho3 .ttl {
    margin-bottom: calc(30 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho3 .ttl img {
    width: calc(349 * var(--px-vw));
    margin-left: auto;
  }
  #riyu .inner .jissho.jissho3 .ilst {
    margin-bottom: calc(38 * var(--px-vw));
    padding-right: calc(2 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho3 .ilst img {
    width: calc(387 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho3 .ilst .fukidashi {
    width: calc(176 * var(--px-vw));
    top: calc(-52 * var(--px-vw));
    right: calc(-101 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho3 .img1 {
    margin-bottom: calc(31 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho4 {
    padding-top: calc(20 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho4 .ttl {
    width: calc(540 * var(--px-vw));
    padding-bottom: calc(27 * var(--px-vw));
    margin-bottom: calc(23 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho4 .ttl img {
    width: calc(467 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho4 .txt {
    width: calc(540 * var(--px-vw));
    margin: 0 auto calc(37 * var(--px-vw));
    font-size: calc(16 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho4 .img1 {
    margin-bottom: calc(10 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho4 .img1 img {
    width: calc(500 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho4 .img2 {
    margin-left: calc(-82 * var(--px-vw));
    margin-right: calc(-3 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho4 .img2 img {
    width: calc(640 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho4 .img3 {
    margin-bottom: calc(22 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho4 .img3 img {
    width: calc(322 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho4 .txt2 {
    margin-bottom: calc(7 * var(--px-vw));
  }
  #genryo {
    padding-top: calc(85 * var(--px-vw));
  }
  #genryo .ttl {
    margin-bottom: calc(40 * var(--px-vw));
  }
  #genryo .ttl img {
    width: calc(300 * var(--px-vw));
  }
  #genryo .hero {
    padding: calc(132 * var(--px-vw)) calc(20 * var(--px-vw)) calc(130 * var(--px-vw));
  }
  #genryo .hero img {
    width: calc(882 * var(--px-vw));
  }
  #genryo .thumbnail {
    padding: calc(70 * var(--px-vw)) 0 0;
  }
  #genryo .thumbnail .flex {
    padding-bottom: calc(46 * var(--px-vw));
  }
  #genryo .thumbnail .flex .thum-block img {
    width: calc(240 * var(--px-vw));
  }
  #genryo .copy {
    padding-bottom: calc(396 * var(--px-vw));
    padding-top: calc(58 * var(--px-vw));
  }
  #genryo .copy:after {
    width: calc(71 * var(--px-vw));
    height: calc(48 * var(--px-vw));
    margin-top: calc(30 * var(--px-vw));
  }
  #genryo .copy img {
    width: calc(633 * var(--px-vw));
  }
  #capsule {
    padding: calc(76 * var(--px-vw)) 0 calc(82 * var(--px-vw));
  }
  #capsule .inner {
    width: calc(756 * var(--px-vw));
  }
  #capsule .inner .flex {
    margin-bottom: calc(25 * var(--px-vw));
  }
  #capsule .inner .flex .ttl {
    margin-top: calc(57 * var(--px-vw));
  }
  #capsule .inner .flex .ttl img {
    width: calc(482 * var(--px-vw));
  }
  #capsule .inner .flex .pkg {
    margin-right: calc(19 * var(--px-vw));
  }
  #capsule .inner .flex .pkg img {
    width: calc(225 * var(--px-vw));
  }
  #capsule .inner a img {
    width: calc(756 * var(--px-vw));
  }
  #notes .inner .card-brand img {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --px-vw: calc( 100vw / var( --width ) );
    --width:375;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .float-nav {
    transform: none;
  }
  img {
    vertical-align: bottom;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .btm-nav .flex .cv-btn img, .btm-nav .flex .tel-btn img {
    width: calc(180 * var(--px-vw));
  }
  #hero {
    padding: 0;
  }
  #hero .header .inner {
    width: 90%;
    margin: calc(19 * var(--px-vw)) auto 0;
  }
  #hero .header .inner .logo img {
    width: calc(83 * var(--px-vw));
    margin: 0;
  }
  .cv {
    padding: 0;
    padding-bottom: calc(23 * var(--px-vw));
  }
  .cv img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .cv.w960 {
    width: calc(345 * var(--px-vw));
  }
  .cv.w960 .inner {
    border-radius: calc(5 * var(--px-vw));
    padding: calc(18 * var(--px-vw)) 0 calc(18 * var(--px-vw));
  }
  .cv.w960 .inner .gentei {
    width: 85.5%;
    margin-bottom: calc(10 * var(--px-vw));
  }
  .cv.w960 .inner .cnt {
    gap: 0;
    margin-bottom: calc(12 * var(--px-vw));
  }
  .cv.w960 .inner .cnt .pkg {
    width: auto;
    margin-top: calc(9 * var(--px-vw));
    margin-left: calc(-7 * var(--px-vw));
  }
  .cv.w960 .inner .cnt .pkg img {
    width: calc(162 * var(--px-vw));
  }
  .cv.w960 .inner .cnt .kino {
    margin-left: calc(-6 * var(--px-vw));
    margin-bottom: calc(10 * var(--px-vw));
  }
  .cv.w960 .inner .cnt .kino img {
    width: calc(166 * var(--px-vw));
  }
  .cv.w960 .inner .cnt .ttl {
    margin-left: calc(-11 * var(--px-vw));
    margin-bottom: calc(10 * var(--px-vw));
  }
  .cv.w960 .inner .cnt .ttl img {
    width: calc(155 * var(--px-vw));
  }
  .cv.w960 .inner .cnt .price {
    margin-left: 0;
  }
  .cv.w960 .inner .cnt .price img {
    width: calc(178 * var(--px-vw));
  }
  .cv.w960 .inner .ann {
    font-size: calc(10 * var(--px-vw));
    line-height: 1.51em;
    padding: 0 calc(14 * var(--px-vw));
  }
  .cv.w960 .btn-wrap {
    margin-top: calc(13 * var(--px-vw));
  }
  .cv.w960 .btn-wrap .btn {
    width: 94.1%;
  }
  .cv.w960 .btn-wrap .txt {
    margin-top: calc(14 * var(--px-vw));
    width: 67.5%;
  }
  .cv.w960 .w780 {
    padding: 0;
    margin-top: calc(12 * var(--px-vw));
  }
  .cv.w960 .w780 .point {
    border-width: calc(1 * var(--px-vw));
    border-radius: calc(5 * var(--px-vw));
    font-size: calc(11 * var(--px-vw));
    width: 30.9%;
    padding-bottom: calc(9 * var(--px-vw));
    background-color: white;
  }
  .cv.w960 .w780 .point .big {
    font-size: 156%;
  }
  .cv.w960 .w780 .point.p1 {
    padding-top: calc(17 * var(--px-vw));
  }
  .cv.w960 .w780 .point.p2 {
    padding-top: calc(10 * var(--px-vw));
    letter-spacing: 0;
  }
  .cv.w960 .w780 .point.p2 > span {
    line-height: 1.3em;
  }
  .cv.w960 .w780 .point.p2 .red {
    letter-spacing: -0.1em;
  }
  .cv.w960 .w780 .point.p2 .big {
    font-size: 163.6363%;
  }
  .cv.w960 .w780 .point.p2 .mid {
    font-size: 136.3636%;
  }
  .cv.w960 .w780 .point.p3 {
    padding-top: calc(12 * var(--px-vw));
    gap: 0;
  }
  .cv.w960 .w780 .point.p3 .red {
    font-size: calc(11 * var(--px-vw));
    line-height: 1.55em;
    margin-top: calc(-2 * var(--px-vw));
    letter-spacing: 0em;
  }
  .cv.w960.cv1 {
    width: 92%;
    margin: calc(-69 * var(--px-vw)) auto 0;
    padding: 0 0 calc(23 * var(--px-vw));
  }
  .cv.w960.cv2 {
    margin: calc(-168 * var(--px-vw)) auto 0;
  }
  .cv.w960.cv3 {
    width: 100%;
    padding: calc(18 * var(--px-vw)) calc(15 * var(--px-vw)) calc(12 * var(--px-vw));
    margin-top: 0;
    margin-bottom: 0;
    background-color: #e1e2e3;
    box-sizing: border-box;
  }
  .cv .w780 {
    width: 100%;
  }
  #authorize {
    padding: calc(30 * var(--px-vw)) calc(15 * var(--px-vw)) calc(55 * var(--px-vw));
    margin-bottom: calc(-24 * var(--px-vw));
    background-position: 89.7% 3.6%;
  }
  #authorize .fukidashi {
    width: calc(33 * var(--px-vw));
    height: calc(22 * var(--px-vw));
  }
  #authorize .inner {
    margin-bottom: 0;
    padding-top: calc(40 * var(--px-vw));
    padding-bottom: calc(33 * var(--px-vw));
  }
  #authorize .inner .copy {
    margin-bottom: calc(30 * var(--px-vw));
  }
  #authorize .inner .copy img {
    width: calc(256 * var(--px-vw));
  }
  #authorize .inner .txt {
    width: 100%;
    margin-bottom: calc(33 * var(--px-vw));
  }
  #authorize .inner .txt img {
    width: calc(301 * var(--px-vw));
  }
  #authorize .inner .end {
    width: 100%;
  }
  #authorize .inner .end img {
    width: calc(272 * var(--px-vw));
    margin: 0 auto;
  }
  #voice {
    padding-top: 0;
  }
  #voice img {
    display: block;
    vertical-align: middle;
    margin-left: auto;
    margin-right: auto;
  }
  #voice .arc .first .spacer {
    width: calc(122 * var(--px-vw));
    height: calc(29 * var(--px-vw));
  }
  #voice .arc .first .img img {
    width: calc(133 * var(--px-vw));
  }
  #voice .arc .second {
    height: calc(29 * var(--px-vw));
  }
  #voice .arc .second .spacer {
    width: calc(122 * var(--px-vw));
    height: calc(23 * var(--px-vw));
  }
  #voice .arc .second .img img {
    width: calc(133 * var(--px-vw));
    height: calc(23 * var(--px-vw));
  }
  #voice .bg {
    top: calc(-23 * var(--px-vw));
  }
  #voice .bg .bg1 {
    top: calc(-34 * var(--px-vw));
    left: calc(-45 * var(--px-vw));
  }
  #voice .bg .bg1 img {
    width: calc(171 * var(--px-vw));
    height: calc(145 * var(--px-vw));
  }
  #voice .bg .bg2 {
    top: calc(-133 * var(--px-vw));
    right: calc(-81 * var(--px-vw));
  }
  #voice .bg .bg2 img {
    width: calc(215 * var(--px-vw));
    height: calc(227 * var(--px-vw));
  }
  #voice .bg.sp .bg3 {
    bottom: auto;
    top: calc(88 * var(--px-vw));
    left: calc(-62 * var(--px-vw));
  }
  #voice .bg.sp .bg3 img {
    width: calc(265 * var(--px-vw));
    height: calc(257 * var(--px-vw));
  }
  #voice > .voice {
    padding-top: calc(12 * var(--px-vw));
  }
  #voice .inner .ttl {
    margin-bottom: calc(22 * var(--px-vw));
  }
  #voice .inner .ttl .deco.img {
    margin-bottom: calc(17 * var(--px-vw));
  }
  #voice .inner .ttl .deco.img img {
    width: calc(74 * var(--px-vw));
  }
  #voice .inner .ttl .img img {
    width: calc(226 * var(--px-vw));
  }
  #voice .inner .copy img {
    width: calc(295 * var(--px-vw));
  }
  #voice .inner .voice {
    padding: calc(33 * var(--px-vw)) calc(30 * var(--px-vw)) calc(23 * var(--px-vw)) calc(28 * var(--px-vw));
  }
  #voice .inner .voice:after {
    width: 84%;
    content: "";
    display: block;
    height: 1px;
    border: none;
    background-image: repeating-linear-gradient(90deg, #000000, #000000 6px, transparent 6px, transparent 12px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 1px;
    background-image: repeating-linear-gradient(90deg, #000000, #000000 4px, transparent 4px, transparent 8px);
  }
}
@media screen and (max-width: 768px) and (max-width: 1280px) {
  #voice .inner .voice:after {
    background-image: repeating-linear-gradient(90deg, #000000, #000000 4px, transparent 4px, transparent 8px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #voice .inner .voice:after {
    background-image: repeating-linear-gradient(90deg, #000000, #000000 4px, transparent 4px, transparent 8px);
  }
}
@media screen and (max-width: 768px) {
  #voice .inner .voice .human {
    width: unset;
  }
  #voice .inner .voice .human img {
    width: calc(80 * var(--px-vw));
  }
  #voice .inner .voice .fukidashi {
    padding-top: calc(3 * var(--px-vw));
  }
  #voice .inner .voice.rev {
    padding: calc(20 * var(--px-vw)) calc(35 * var(--px-vw)) calc(23 * var(--px-vw)) calc(24 * var(--px-vw));
  }
  #voice .inner .voice.rev .fukidashi {
    padding-top: calc(6 * var(--px-vw));
  }
  #voice .inner .voice.voice1 .human {
    width: unset;
  }
  #voice .inner .voice.voice1 .human img {
    width: calc(80 * var(--px-vw));
  }
  #voice .inner .voice.voice1 .fukidashi {
    padding-top: calc(3 * var(--px-vw));
  }
  #voice .inner .voice.voice1 .fukidashi img {
    width: calc(233 * var(--px-vw));
  }
  #voice .inner .voice.voice2 {
    padding-right: calc(42 * var(--px-vw));
  }
  #voice .inner .voice.voice2 .human img {
    width: calc(66 * var(--px-vw));
  }
  #voice .inner .voice.voice2 .fukidashi img {
    width: calc(234 * var(--px-vw));
  }
  #voice .inner .voice.voice3 {
    padding: calc(20 * var(--px-vw)) calc(30 * var(--px-vw)) calc(22 * var(--px-vw)) calc(25 * var(--px-vw));
  }
  #voice .inner .voice.voice3 .human img {
    width: calc(81 * var(--px-vw));
  }
  #voice .inner .voice.voice3 .fukidashi {
    padding-top: calc(5 * var(--px-vw));
  }
  #voice .inner .voice.voice3 .fukidashi img {
    width: calc(233 * var(--px-vw));
  }
  #voice .inner .voice.voice4 {
    padding: calc(19 * var(--px-vw)) calc(44 * var(--px-vw)) calc(19 * var(--px-vw)) calc(25 * var(--px-vw));
  }
  #voice .inner .voice.voice4 .human {
    padding-top: 0;
  }
  #voice .inner .voice.voice4 .human img {
    width: calc(66 * var(--px-vw));
  }
  #voice .inner .voice.voice4 .fukidashi img {
    width: calc(233 * var(--px-vw));
  }
  #voice .inner .annotation {
    text-align: center;
    padding: 0 calc(40 * var(--px-vw));
    font-size: calc(9 * var(--px-vw));
    line-height: 1.48em;
  }
  .arcline {
    height: calc(6 * var(--px-vw));
  }
  .arcline .arc img {
    width: calc(133 * var(--px-vw));
    height: calc(17 * var(--px-vw));
  }
  #qa {
    padding-top: calc(35 * var(--px-vw));
    padding-bottom: calc(200 * var(--px-vw));
  }
  #qa .arc img {
    width: calc(133 * var(--px-vw));
    height: calc(18 * var(--px-vw));
  }
  #qa .inner .ttl .deco img {
    width: calc(74 * var(--px-vw));
  }
  #qa .inner .ttl .qa {
    margin: calc(16 * var(--px-vw)) auto calc(24 * var(--px-vw));
  }
  #qa .inner .ttl .qa img {
    width: calc(119 * var(--px-vw));
    margin-left: auto;
    margin-right: auto;
  }
  #qa .inner .copy.flex .nagata {
    top: calc(-144 * var(--px-vw));
    left: calc(27 * var(--px-vw));
  }
  #qa .inner .copy.flex .nagata img {
    width: calc(81 * var(--px-vw));
  }
  #qa .inner .copy.flex .yamazaki {
    top: calc(-117 * var(--px-vw));
    right: calc(20 * var(--px-vw));
  }
  #qa .inner .copy.flex .yamazaki img {
    width: calc(86 * var(--px-vw));
  }
  #qa .inner .copy.flex .txt img {
    width: calc(191 * var(--px-vw));
  }
  #qa .inner .copy .txt {
    margin: 0;
  }
  #qa .inner .contents .qa-box:after {
    content: "";
    display: block;
    height: 1px;
    border: none;
    background-image: repeating-linear-gradient(90deg, #000000, #000000 6px, transparent 6px, transparent 12px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 1px;
  }
}
@media screen and (max-width: 768px) and (max-width: 1280px) {
  #qa .inner .contents .qa-box:after {
    background-image: repeating-linear-gradient(90deg, #000000, #000000 4px, transparent 4px, transparent 8px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #qa .inner .contents .qa-box:after {
    background-image: repeating-linear-gradient(90deg, #000000, #000000 4px, transparent 4px, transparent 8px);
  }
}
@media screen and (max-width: 768px) {
  #qa .inner .contents .question {
    padding-top: calc(26 * var(--px-vw));
  }
  #qa .inner .contents .question img {
    width: calc(280 * var(--px-vw));
  }
  #qa .inner .contents .answer {
    padding-top: calc(15 * var(--px-vw));
    padding-bottom: calc(31 * var(--px-vw));
  }
  #qa .inner .contents .answer img {
    width: calc(317 * var(--px-vw));
  }
  #qa .inner .contents .qa1 .question {
    padding-top: calc(23 * var(--px-vw));
  }
  #qa .inner .contents .qa7 .answer {
    padding-bottom: 0;
  }
  #saiteki {
    padding: calc(30 * var(--px-vw)) calc(15 * var(--px-vw)) calc(25 * var(--px-vw));
  }
  #saiteki:after {
    width: calc(90 * var(--px-vw));
    height: calc(61 * var(--px-vw));
    bottom: calc(-27 * var(--px-vw));
  }
  #saiteki img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  #saiteki .ilst {
    width: auto;
    margin: 0 auto calc(-5 * var(--px-vw));
  }
  #saiteki .ilst img {
    width: calc(213 * var(--px-vw));
    left: calc(-4 * var(--px-vw));
  }
  #saiteki .inner {
    padding: calc(41 * var(--px-vw)) calc(15 * var(--px-vw)) 0;
  }
  #saiteki .inner .ttl {
    margin-bottom: calc(19 * var(--px-vw));
    width: 63%;
  }
  #saiteki .inner .block {
    padding-bottom: calc(24 * var(--px-vw));
  }
  #saiteki .inner .block h4 {
    margin-bottom: calc(15 * var(--px-vw));
  }
  #saiteki .inner .block h4 img {
    width: auto;
    height: calc(20 * var(--px-vw));
    max-height: none;
  }
  #saiteki .inner .block p {
    font-size: calc(15 * var(--px-vw));
    letter-spacing: -0.05em;
    padding: 0;
    margin-bottom: calc(17 * var(--px-vw));
  }
  #saiteki .inner .block p .sup {
    font-size: calc(9 * var(--px-vw));
  }
  #saiteki .inner .block p .ann {
    font-size: calc(9 * var(--px-vw));
  }
  #saiteki .inner .block:after {
    background-image: repeating-linear-gradient(90deg, #000000, #000000 4px, transparent 4px, transparent 8px);
  }
  #saiteki .inner .block.block-2 p {
    margin-bottom: calc(17 * var(--px-vw));
  }
  #saiteki .inner .block.block-3 {
    padding-bottom: calc(24 * var(--px-vw));
  }
  #saiteki .inner .block.block-3 h4 {
    margin-bottom: calc(15 * var(--px-vw));
  }
  #saiteki .inner .block.block-3 p {
    margin-bottom: calc(12 * var(--px-vw));
  }
  #saiteki .inner .block.block-4 {
    padding-bottom: calc(36 * var(--px-vw));
    margin-bottom: 0;
  }
  #saiteki .inner .block.block-4:after {
    content: none;
  }
  #saiteki .inner .block.block-4 h4 {
    margin-bottom: calc(15 * var(--px-vw));
  }
  #saiteki .inner .block.block-4 p {
    margin-bottom: 0;
  }
  #saiteki .arrow img {
    width: calc(90 * var(--px-vw));
    bottom: calc(-52 * var(--px-vw));
  }
  #riyu {
    padding: calc(100 * var(--px-vw)) calc(15 * var(--px-vw)) calc(20 * var(--px-vw));
    background: url("../img/202601/riyu-bg-sp@2x.webp") 0% 0% repeat;
    background-size: 100% auto;
  }
  #riyu .inner {
    padding-bottom: 0;
  }
  #riyu .inner .bg-wt {
    padding-bottom: calc(20 * var(--px-vw));
  }
  #riyu .inner .sa {
    padding-top: 0;
    padding-bottom: calc(29 * var(--px-vw));
  }
  #riyu .inner .sa > .img img {
    width: 100%;
  }
  #riyu .inner .sa:after {
    width: 91%;
    background-image: repeating-linear-gradient(90deg, #000000, #000000 4px, transparent 4px, transparent 8px);
  }
  #riyu .inner .sa .ttl {
    margin-bottom: calc(33 * var(--px-vw));
  }
  #riyu .inner .sa .ttl img {
    position: relative;
    top: calc(-43 * var(--px-vw));
    width: 93.6%;
    margin-top: 0;
    margin-bottom: calc(-43 * var(--px-vw));
  }
  #riyu .inner .sa .subttl {
    margin-bottom: calc(10 * var(--px-vw));
  }
  #riyu .inner .sa .subttl img {
    width: calc(264 * var(--px-vw));
  }
  #riyu .inner .sa .txt {
    padding: 0 calc(33 * var(--px-vw));
    margin-bottom: calc(23 * var(--px-vw));
    font-size: calc(13 * var(--px-vw));
    line-height: 1.55em;
  }
  #riyu .inner .sa .ilst {
    width: 82.2%;
    margin: 0 auto;
    padding-bottom: calc(30 * var(--px-vw));
  }
  #riyu .inner .sa .ilst img {
    margin: 0;
  }
  #riyu .inner .kenkyu-contents {
    padding: 0 calc(15 * var(--px-vw));
  }
  #riyu .inner .kenkyu .fukidashi img {
    width: calc(270 * var(--px-vw));
    margin: 0 auto;
  }
  #riyu .inner .kenkyu .koka {
    margin-top: calc(20 * var(--px-vw));
    margin-bottom: calc(23 * var(--px-vw));
  }
  #riyu .inner .kenkyu .koka img {
    width: calc(249 * var(--px-vw));
    margin: 0 auto;
  }
  #riyu .inner .kenkyu .btn {
    display: block;
    margin: 0 auto;
  }
  #riyu .inner .kenkyu .btn img {
    width: calc(315 * var(--px-vw));
  }
  #riyu .inner .jissho {
    width: calc(315 * var(--px-vw));
    border-radius: calc(10 * var(--px-vw));
    border-width: 1px;
    padding: 0 calc(20 * var(--px-vw));
  }
  #riyu .inner .jissho .tag {
    margin-top: 0;
    width: unset;
  }
  #riyu .inner .jissho .tag img {
    width: calc(83 * var(--px-vw));
  }
  #riyu .inner .jissho .ttl {
    margin: calc(18 * var(--px-vw)) auto calc(27 * var(--px-vw));
  }
  #riyu .inner .jissho .ttl img {
    height: calc(108 * var(--px-vw));
  }
  #riyu .inner .jissho .img {
    margin-bottom: calc(30 * var(--px-vw));
  }
  #riyu .inner .jissho .ann {
    font-size: calc(9 * var(--px-vw));
    line-height: 1.55em;
    letter-spacing: -0.07em;
  }
  #riyu .inner .jissho.jissho1 {
    margin-top: calc(25 * var(--px-vw));
    margin-bottom: calc(15 * var(--px-vw));
    padding-bottom: calc(20 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho1 .ttl img {
    width: auto;
  }
  #riyu .inner .jissho.jissho1 .ilst {
    margin-bottom: calc(22 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho1 .ilst img {
    margin-left: 0;
    width: calc(215 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho1 .ilst .fukidashi {
    width: calc(99 * var(--px-vw));
    top: calc(-36 * var(--px-vw));
    right: calc(-33 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho1 .img img {
    margin-left: calc(7 * var(--px-vw));
    width: calc(259 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho1 .img2 {
    margin-bottom: calc(15 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho2 {
    margin-bottom: calc(15 * var(--px-vw));
    padding-bottom: calc(20 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho2 .ttl {
    margin-bottom: calc(18 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho2 .ilst {
    margin-bottom: calc(20 * var(--px-vw));
    padding-left: 0;
  }
  #riyu .inner .jissho.jissho2 .ilst img {
    width: calc(211 * var(--px-vw));
    margin-left: calc(7 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho2 .ilst .fukidashi {
    width: calc(90 * var(--px-vw));
    top: calc(-10 * var(--px-vw));
    right: calc(-30 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho2 .img1 {
    margin-left: calc(-6 * var(--px-vw));
    margin-bottom: calc(13 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho2 .img1 img {
    width: calc(277 * var(--px-vw));
    max-width: 110%;
  }
  #riyu .inner .jissho.jissho3 {
    margin-bottom: calc(15 * var(--px-vw));
    padding-bottom: calc(20 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho3 .ttl {
    margin-top: calc(16 * var(--px-vw));
    margin-bottom: calc(10 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho3 .ttl img {
    margin-left: auto;
    height: auto;
    width: calc(207 * var(--px-vw));
    position: relative;
    left: calc(-3 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho3 .ilst {
    margin-bottom: calc(24 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho3 .ilst img {
    width: calc(209 * var(--px-vw));
    margin-left: calc(-2 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho3 .ilst .fukidashi {
    top: calc(-16 * var(--px-vw));
    right: calc(-29 * var(--px-vw));
    width: calc(90 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho3 .img img {
    margin-left: calc(7 * var(--px-vw));
    width: calc(259 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho3 .img1 {
    margin-bottom: calc(17 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho4 {
    padding: calc(23 * var(--px-vw)) calc(15 * var(--px-vw)) 0;
  }
  #riyu .inner .jissho.jissho4 .ttl {
    width: 100%;
    margin-top: 0;
    margin-bottom: calc(11 * var(--px-vw));
    padding: 0 0 0;
    padding-bottom: calc(12 * var(--px-vw));
    border-width: 1px;
  }
  #riyu .inner .jissho.jissho4 .ttl img {
    width: 88%;
    height: auto;
  }
  #riyu .inner .jissho.jissho4 .txt {
    width: 100%;
    font-size: calc(13 * var(--px-vw));
    line-height: 1.45em;
    letter-spacing: -0.02em;
    margin-bottom: calc(18 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho4 .img1 {
    margin-bottom: calc(10 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho4 .img1 img {
    width: calc(278 * var(--px-vw));
    margin-left: auto;
  }
  #riyu .inner .jissho.jissho4 .img2 {
    margin-left: calc(-37 * var(--px-vw));
    margin-bottom: calc(4 * var(--px-vw));
    max-width: none;
  }
  #riyu .inner .jissho.jissho4 .img2 img {
    width: calc(310 * var(--px-vw));
    margin-left: auto;
  }
  #riyu .inner .jissho.jissho4 .img3 {
    width: calc(184 * var(--px-vw));
    margin: 0 auto calc(15 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho4 .img3 img {
    width: calc(184 * var(--px-vw));
    margin-left: calc(3 * var(--px-vw));
  }
  #riyu .inner .jissho.jissho4 .txt2 {
    width: 97%;
    line-height: 1.5em;
    letter-spacing: 0.02em;
    margin-bottom: calc(20 * var(--px-vw));
  }
  #genryo {
    padding-top: calc(31 * var(--px-vw));
  }
  #genryo .ttl {
    margin-bottom: calc(18 * var(--px-vw));
  }
  #genryo .ttl img {
    width: calc(107 * var(--px-vw));
  }
  #genryo .hero {
    padding: calc(37 * var(--px-vw)) calc(15 * var(--px-vw)) calc(36 * var(--px-vw));
  }
  #genryo .hero img {
    width: calc(315 * var(--px-vw));
  }
  #genryo .thumbnail {
    padding-top: calc(26 * var(--px-vw));
  }
  #genryo .thumbnail .flex {
    padding-bottom: 0;
  }
  #genryo .thumbnail .flex .thum-block {
    width: 43%;
  }
  #genryo .thumbnail .flex .thum-block img {
    width: 100%;
  }
  #genryo .thumbnail .flex:after {
    margin-top: calc(20 * var(--px-vw));
    content: "";
    display: block;
    height: 1px;
    border: none;
    background-image: repeating-linear-gradient(90deg, #000000, #000000 6px, transparent 6px, transparent 12px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 1px;
  }
}
@media screen and (max-width: 768px) and (max-width: 1280px) {
  #genryo .thumbnail .flex:after {
    background-image: repeating-linear-gradient(90deg, #000000, #000000 4px, transparent 4px, transparent 8px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #genryo .thumbnail .flex:after {
    background-image: repeating-linear-gradient(90deg, #000000, #000000 4px, transparent 4px, transparent 8px);
  }
}
@media screen and (max-width: 768px) {
  #genryo .copy {
    padding-top: calc(30 * var(--px-vw));
    padding-bottom: 0;
  }
  #genryo .copy img {
    width: calc(281 * var(--px-vw));
  }
  #genryo .copy:after {
    margin-top: calc(21 * var(--px-vw));
    width: calc(60 * var(--px-vw));
    height: calc(41 * var(--px-vw));
  }
  #capsule {
    padding: calc(33 * var(--px-vw)) calc(25 * var(--px-vw));
  }
  #capsule .inner .flex {
    flex-direction: row;
    padding: 0 calc(8 * var(--px-vw)) 0 calc(23 * var(--px-vw));
    margin-bottom: calc(7 * var(--px-vw));
  }
  #capsule .inner .flex .ttl {
    margin-top: calc(12 * var(--px-vw));
  }
  #capsule .inner .flex .ttl img {
    width: calc(149 * var(--px-vw));
  }
  #capsule .inner .flex .pkg {
    width: calc(113 * var(--px-vw));
    margin-right: calc(19 * var(--px-vw));
  }
  #capsule .inner .flex .pkg img {
    width: calc(130 * var(--px-vw));
  }
  #capsule .inner a img {
    width: calc(325 * var(--px-vw));
  }
  #notes {
    padding: calc(14 * var(--px-vw)) calc(29 * var(--px-vw));
  }
  #notes li, #notes p {
    font-size: calc(12 * var(--px-vw));
  }
  #notes .inner {
    padding-top: 0;
  }
  #notes .inner .block-sonota {
    margin: 0;
  }
  #notes .inner ul.yoko-list {
    flex-wrap: wrap;
  }
  #notes .inner ul.list {
    margin-bottom: calc(20 * var(--px-vw));
  }
  #notes .inner ul.list li {
    flex-direction: column;
    padding: calc(9 * var(--px-vw)) 0;
    padding-left: 1em;
  }
  #notes .inner ul.list li span {
    line-height: 1.38em;
  }
  #notes .inner ul.list li .ttl, #notes .inner ul.list li .content {
    font-size: calc(12 * var(--px-vw));
    width: 100%;
  }
  #notes .inner ul.list li .ttl {
    width: 100%;
    text-indent: -1em;
  }
  #notes .inner ul.card-ttl {
    margin: 0;
  }
  #notes .inner ul li {
    font-size: calc(12 * var(--px-vw));
  }
  #notes .inner .card-brand {
    margin-top: 0.25em;
    margin-bottom: 0.9em;
  }
  #notes .inner .freedial {
    display: block;
  }
  #notes .inner .freedial a {
    display: inline-flex;
    margin-left: 0;
    line-height: 1.4em;
  }
  #notes .inner .freedial a img {
    width: auto;
    height: calc(13 * var(--px-vw));
    vertical-align: middle;
  }
  #notes .inner .freedial .big150 {
    font-size: calc(16 * var(--px-vw));
    margin-top: -0.1em;
    font-weight: 600;
    line-height: 1.6em;
  }
  #notes .inner .freedial .big150 span {
    font-size: 131.25%;
  }
  #notes .inner .p-ttl {
    font-size: calc(13 * var(--px-vw));
    min-height: 2em;
    margin-bottom: calc(8 * var(--px-vw));
  }
  #notes .inner .p-ttl.gray {
    margin: calc(35 * var(--px-vw)) 0 calc(17 * var(--px-vw));
  }
  #notes .inner .p-ttl.no-mg {
    margin: 0 0 calc(6 * var(--px-vw));
  }
  #notes .inner p {
    font-size: calc(12 * var(--px-vw));
    line-height: 1.38em;
    margin-bottom: 0.55em;
  }
  #notes .mglr {
    margin-left: 0;
  }
}

/*# sourceMappingURL=style.css.map */
