@charset "utf-8";
/* リセット */
body, html {
  height: 100%;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
input, button, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, p, blockquote, th, td {
  margin: 0;
  padding: 0;
  word-break: normal;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}
fieldset, img, figure {
  border: 0;
  padding: 0;
  margin: 0;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}
address, caption, cite, code, dfn, th, var {
  font-style: normal;
  font-weight: normal;
}
ol, ul {
  list-style: none;
}
caption, th {
  text-align: left;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}
q::before, q::after {
  content: '';
}
abbr, acronym {
  border: 0;
}
hr {
  display: none;
}
div {
  word-break: break-all;
}
a:link, a:visited, a:active, a:hover {
  /*-- overflow: hidden; --*/
  outline: none;
  text-decoration: none;
  outline: none;
}
input[type="button"], input[type="submit"], input[type=radio], input[type=checkbox] {
  -webkit-appearance: none;
  border-radius: 0;
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
}
body {
  font-family: hiragino kaku gothic pron;
  font-weight: 400;
  line-height: 1;
  width: 100%;
  left: 0;
  letter-spacing: .05em;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
nav ul {
  list-style: none;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #30353a;
  display: block;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
i {
  font-style: normal;
}
input, select {
  vertical-align: middle;
}
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}
* {
  background-repeat: no-repeat;
  padding: 0;
  margin: 0;
}
*, ::after, ::before {
  box-sizing: inherit;
}

button{
  cursor: pointer;
}


/**
 * フォント
 */
.font_go {
  font-family: "M PLUS 1", sans-serif;
}
.font_marugo {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800
}

/**
 * 基本設定
 */
html {
  font-size: 10px;
}
body {
  font-family: "M PLUS Rounded 1c","A-OTF-UDShinMGoPro","メイリオ","ＭＳ Ｐゴシック",Arial,Helvetica,sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: .05em;
  color: #38323a;
  background: #FFF;
  font-weight: 700;
}
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}
.w1000 {
  max-width: 1000px;
  margin: 0 auto;
}
.fw_normal {
  font-weight: 400;
}
.fw_bold {
  font-weight: 700;
}
.fw_black {
  font-weight: 800;
}
.sp {
  display: none;
}
.content_end {
  position: absolute;
  left: 0;
  bottom: -2px;
  display: block;
  width: 100%;
  z-index: 100;
}

/**
 * ローディング・画面遷移
 */
#loading {
  position: fixed;
  display: none;
  z-index: 999;
  width:100%;
  height: 100%;
  background-color: #d12435;
}
.loader_cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100vw;
  height: 100vw;
  border-radius: 50vw;
  transition: all .7s cubic-bezier(.55,.02,.63,.98);
  transform: scale(0);
}
.loader_cover_white {
  background-color: #ef807b;
}
.loader_cover_red {
  background-color: #d12435;
}
/* Spinner Bars */
.loading_bars {
  position: relative;
  top: calc(50vh - 9px);
  left: calc(50vw - 9px);
  width: 18px;
  height: 32px;
  border: 2px solid #fff;
  -webkit-animation: loadingBars 1s infinite linear;
  animation: loadingBars 1s infinite linear;
}
.loading_bars:after, .loading_bars:before {
  content:'';
  position: absolute;
  width: inherit;
  height: inherit;
  border: inherit;
  background-color: inherit;
  top: -1px;
}
.loading_bars:before {
  left: -35px;
  -webkit-animation: loadingBarsBefore 1s infinite linear;
  animation: loadingBarsBefore 1s infinite linear;
}
.loading_bars:after {
  right: -35px;
  -webkit-animation: loadingBarsAfter 1s infinite linear;
  animation: loadingBarsAfter 1s infinite linear;
}
@keyframes loadingBarsBefore {
  0%  { transform: scale(1,1);}
  15% { transform: scale(1,1.25);}
  30% { transform: scale(1,0.75); }
  45% { transform: scale(1,1); }
  60% { transform: scale(1,1); }
}
@keyframes loadingBars {
  0%  { transform: scale(1,1); }
  15% { transform: scale(1,1); }
  30% { transform: scale(1,1.25); }
  45% { transform: scale(1,1); }
  60% {
    transform: scale(1,1);
  }
}
@keyframes loadingBarsAfter {
  0%  { transform: scale(1,1); }
  15% { transform: scale(1,1); }
  30% { transform: scale(1,0.75); }
  45% { transform: scale(1,1.25); }
  60% { transform: scale(1,1); }
}

/**
 * ヘッダー / header
 */
header {
  height: 95px;
  padding: 20px 40px;
}
.header {
  max-width: 1000px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 auto;
}
.header_logo p {
  font-size: 12px;
  color: #999999;
  text-align: left;
}
.header_logo img {
  width: 228px;
  height: 40px;
}
.header_tel {
  width: 220px;
}
.header_tel img {
  object-fit: cover;
}

/**
 * スクロールバー / scroll bar
 */
.scroll {
  position: absolute;
  bottom: 250px;
  right: 20px;
  width: 250px;
  text-align: right;
  color: #fff;
  font-weight: 400;
  line-height: 1em;
  transform: rotate(-90deg);
  transform-origin: right bottom 0;
  z-index: 10;
}
.scroll::after {
  content: '';
  display: block;
  position: absolute;
  right: 5.5em;
  top: .5em;
  background-color: #fff;
  height: 1px;
  width: 0px;
  animation: 3s cubic-bezier(.53,.05,.51,.98) 1s infinite running scroll_bar;
}

/**
 * メインビジュアル / mv
 */
.mv {
  position: relative;
  height: calc(100vh - 95px);
  max-height: 900px;
  min-height: 770px;
  padding: 0 80px;
  background-color: #d12435;
  overflow: hidden;
}
.mv_box {
  position: relative;
  height: 100%;
  width: 100%;
}
.mv_content {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 90px;
  text-align: left;
}
.mv_content_subtitle {
  width: 32%;
}
.mv_content_subtitle img {
  width: 100%;
}
.mv_content_subtitle .txt {
  overflow: hidden;
}
.mv_content_subtitle .txt img {
  transition: .4s cubic-bezier(.51,.04,.7,1.24);
}
.mv_content_title {
  width: 58%;
  margin-top: 44px;
  margin-bottom: 66px;
}
.mv_content_title img:first-of-type {
  width: 50%;
  margin-bottom: 10px;
}
.mv_content_title img:nth-of-type(2) {
  width: 100%;
}
.mv_content_submsg.l1 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 38%;
  padding: 4px 10px 4px 10px;
  background-color: #fff;
  font-size: 2.4rem;
}
.mv_content_submsg.l1 img {
  width: 100%;
}
.mv_content_submsg.l2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 24%;
  margin-top: .5em;
  padding: 8px 10px 8px 10px;
  background-color: #fff;
  font-size: 2.4rem;
}
.mv_content_submsg.l2 img {
  width: 100%;
}
.mv_image {
  position: absolute;
  bottom: 0;
  right: 2%;
  width: 50%;
  max-width: 520px;
}
.mv_image_family {
  position: relative;
  width: 100%;
  z-index: 10;
}
.mv_image_present {
  position: absolute;
  right: -33%;
  top: -30%;
  width: 81%;
  height: 59%;
  background-image: url('../image/mv_present_bg.svg');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  overflow: hidden;
}
.mv_image_present .txt {
  position: relative;
  height: 100%;
  top: 0;
  left: 9%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
.mv_image_present .txt p {
  position: relative;
  width: 100%;
  font-size: 1.8rem;
}
.mv_image_present .txt p:first-child {
  font-size: 2rem;
  color: #e50d1c;
}
.mv_image_present .txt p:first-child::before {
  content: '';
  display: block;
  position: absolute;
  width: 13px;
  height: 13px;
  top: -8px;
  left: -12px;
  background-image: url('../image/mv_present_txt_emphasis.svg');
}
.mv_image_present img {
  display: block;
  position: absolute;
  top: 10%;
  right: -5px;
  width: 54%;
  transform-origin: bottom right;
  animation: .3s linear mv_present_file;
  animation-delay: 1.8s;
}

/**
 * こんな困ったにならないように / issue
 */
.issue {
  position: relative;
  width: 100%;
  background-color: #f4e6eb;
  padding: 110px 40px 0;
  box-sizing: border-box;
  overflow: hidden;
}
.issue_heading {
  text-align: center;
  font-size: 3.1rem;
  color: #e50d1c;
  letter-spacing: .075em;
  line-height: 1.2em;
}
.issue_heading span {
  display: inline-block;
  padding: 0 .25em 0 .2em;
  width: 3.3em;
  font-size: 3.4rem;
}
.issue_heading span img {
  width: 100%;
  transform: skewX(-7deg) rotate(-7deg);
}
.issue_content {
  position: relative;
  margin: 80px auto 0;
  max-width: 1000px;
  padding: 40px;
  z-index: 10;
}
.issue_content::before {
  content: '';
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background-image: url('../image/bg_lines.png');
  background-repeat: repeat;
  z-index: -1;
  animation: 2s linear 0s infinite running bg_loop;
}
.issue_content::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid #e50d1c;
  background-color: #fff;
  z-index: -1;
}
.issue_content_points {
  position: absolute;
  top: -145px;
  left: 20px;
  width: 177px;
  height: 166.98px;
  background-image: url('../image/issue_points.png');
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.issue_content_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.issue_content_box_example {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 46%;
  margin: 20px 0;
}
.issue_content_box_example .image {
  flex-shrink: 0;
  width: 49%;
  margin-right: 5%;
}
.issue_content_box_example .content {
  margin-top: 20px;
}
.issue_content_box_example .num {
  height: 5.5rem;
  margin-bottom: 16px;
}

.issue_recommend {
  margin: 200px auto 0;
  max-width: 1000px;
}
.issue_recommend .txt {
  position: relative;
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}
.issue_recommend .txt::before {
  content: '';
  display: block;
  position: absolute;
  top: -40px;
  left: 0;
  width: 106px;
  height: 97px;
  background-image: url('../image/recommend_quote.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}
.issue_recommend .txt::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 106px;
  height: 97px;
  background-image: url('../image/recommend_quote.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.issue_recommend .txt p {
  position: relative;
  margin: .7em 0;
  text-align: center;
  font-size: 2.8rem;
  line-height: 1em;
  letter-spacing: .1em;
  z-index: 10;
}
.issue_recommend .txt p span {
  display: inline-block;
  margin: 0 .2em;
  padding: .2em .2em .3em .2em;
  border-radius: 5px;
  background-color: #e0203c;
  font-size: 1.1em;
  color: #fff;
}
.issue_recommend img {
  display: block;
  margin: 100px auto 0;
  max-width: 550px;
  width: 60%;
}

/**
 * サービス / service
 */
.service {
  position: relative;
  padding: clamp(24px, 5vw, 50px) min(5vw, 60px) clamp(100px, 20vw, 200px);
}
.service_heading {
  margin-bottom: 100px;
}
.service_heading .en {
  display: block;
  margin: 0 auto 40px;
  max-width: 600px;
  width: 90%;
}
.service_heading .flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.service_heading_image {
  position: relative;
  margin-right: 6%;
  width: 18%;
}
.service_heading_image img {
  position: absolute;
  width: 92%;
}
.service_heading_image img:nth-child(1) {
  position: relative;
  width: 100%;
  z-index: 10;
}
.service_heading_image .paper1 {
  top: -20px;
  left: 4%;
  z-index: 9;
  transition: .5s steps(3);
}
.service_heading_image .paper2 {
  top: -50px;
  right: 8%;
  width: 26%;
  z-index: 8;
  transition: .6s steps(3);
}
.service_heading_image .paper3 {
  top: -40px;
  transform: rotate(3deg);
  left: 4%;
  z-index: 7;
  transition: .7s steps(3);
}
.service_heading_image .paper4 {
  top: -52px;
  transform: rotate(-2deg);
  left: 4%;
  z-index: 6;
  transition: .9s steps(3);
}
.service_heading_image .paper5 {
  top: -64px;
  left: 8%;
  width: 26%;
  z-index: 5;
  transition: .9s steps(3);
}
.service_heading_content_submsg {
  margin-bottom: clamp(10px,3.3vw,20px);
  width: 172px;
}
.service_heading_content_submsg img {
  width: 100%;
  height: auto;
  display: block;
}
.service_heading_content_submsg img:first-of-type {
  margin-bottom: clamp(5px, 2vw, 10px);
}
.service_heading_content p {
  font-size: 3.2rem;
  text-align: left;
  letter-spacing: .12em;
  line-height: 1.6em;
}
.service_heading_content p span {
  font-size: 1.1em;
  color: #e50d1c;
}
.service_content {
  line-height: 2.5em;
  margin-bottom: 1.2em;
  text-align: center;
}
.service_recommend {
  margin-top: 180px;
  background-color: #f2f2f2;
  border-top: 4px solid #38323a;
}
.service_recommend h3 {
  position: relative;
  top: -22px;
  left: 0;
  width: 100%;
  font-size: 1.9rem;
}
.service_recommend h3 p {
  margin: 0 auto;
  width: 14em;
  background-color: #b3dceb;
  border: 4px solid #38323a;
  border-radius: 2em;
  text-align: center;
  font-weight: 700;
  line-height: 2em;
}
.service_recommend_example {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: stretch;
  padding: 110px 30px 80px;
}
.service_recommend_example .example {
  width: 29%;
  border: 4px solid #38323a;
  background-color: #fff;
  padding: 30px;
}
.service_recommend_example .example figure {
  width: 150px;
  height: 150px;
  border: 4px solid #38323a;
  margin: -105px auto 30px;
  border-radius: 75px;
  overflow: hidden;
  background-color: #f4e6eb;
}
.service_recommend_example .example figure img {
  width: 100%;
  object-fit: contain;
}
.service_recommend_example .example p {
  text-align: justify;
  font-size: 1.7rem;
}
.service_recommend_example .example p span {
  color: #e50d1c;
}

/**
 * ご利用方法
 */
.howto {
  width: 100%;
  background-color: #f4e6eb;
  padding: 50px 60px 150px;
  box-sizing: border-box;
}
.howto_heading .en {
  display: block;
  margin: 0 auto 40px;
  max-width: 346px;
  width: 57%;
}
.howto_heading p {
  text-align: center;
  font-size: 3.2rem;
  letter-spacing: 0.2em;
}
.howto_hr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 46px;
  margin: 30px auto 50px;
}
.howto_hr div {
  width: 6px;
  height: 6px;
  background-color: #38323a;
  transition: .4s cubic-bezier(.59,.3,.53,1.28);
  transition-delay: .2s;
  /* アニメーション前 */
  transform: scale(0);
}
.howto_hr div:nth-of-type(2) {
  transition-delay: .4s;
}
.howto_hr div:nth-of-type(3) {
  transition-delay: .6s;
}
.howto_summary {
  position: relative;
  padding: 40px 40px;
  z-index: 10;
}
.howto_summary::before {
  content: '';
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background-image: url('../image/bg_lines.png');
  background-repeat: repeat;
  z-index: -1;
  animation: 2s linear 0s infinite running bg_loop;
}
.howto_summary::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid #38323a;
  background-color: #fff;
  z-index: -1;
}
.howto_summary ol {
  margin: 0 auto;
  max-width: 700px;
  width: 100%;
}
.howto_summary ol li {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  padding: 30px 0;
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
}
.howto_summary ol li figure {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: 40px;
  width: 50px;
}
.howto_summary ol li figure img {
  width: 100%;
}
.howto_summary ol li .content h4 {
  display: inline-block;
  margin-bottom: 0.8em;
  padding: .3em .8em .4em;
  background-color: #f9da76;
  border-radius: 0.9em;
  line-height: 1em;
}
.howto_summary ol li .content p {
  line-height: 1.2em;
}
.howto_summary ol li .content small {
  margin-top: 3px;
  font-family: 'M PLUS Rounded 1c';
  font-weight: 500;
  font-size: 0.85em;
}
.howto_summary ol li:last-child {
  border-bottom: none;
}
.howto_reservation {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.howto_reservation .th {
  width: 5em;
  text-align: right;
  flex-shrink: 0;
}
.howto_reservation .line {
  width: 3em;
  text-align: center;
  flex-shrink: 0;
}
.howto_reservation .td {
  text-align: left;
}
.howto_reservation:first-of-type {
  margin-bottom: .4em;
}

/**
 * フッター
 */
.footer-minimum {
  font-family: 'M PLUS Rounded 1c';
  font-weight: 500;
  text-align: center;
  line-height: 150%;
  padding: 20px 0;
  border-top: 1px solid #dbdbdb;
}
.footer-minimum .footer-minimum__caption {
  font-size: .94em;
  margin-bottom: 1em;
}
.footer-minimum .footer-minimum__nav {
  font-size: .88em;
  margin-bottom: 1em;
}
.footer-minimum .footer-minimum__nav li {
  display: inline-block;
  padding-right: 20px;
}
.footer-minimum .footer-minimum__nav li+li {
  border-left: 1px solid #333;
  margin-left: 5px;
  padding-left: 10px;
}
.footer-minimum .footer-minimum__copyright {
  font-size: .88em;
}
.has-external {
  position: relative;
}
.has-external::after {
  position: absolute;
  top: 0;
  right: -18px;
  content: "";
  margin-left: 5px;
  background: url("../image/external_link.svg") no-repeat 50% 0%;
  background-size: 14px 14px;
  height: 14px;
  width: 14px;
  display: block;
}

/**
 * 固定メニュー
 */
.menu {
  position: sticky;
  bottom: -100px;
  height: 100px;
  background-color: rgba(0,0,0,.75);
  width: 100%;
  z-index: 899;
  font-size: 1.4rem;
}
.menu_btns {
  display: flex;
  justify-content: center;
  padding-top: 14px;
}
.menu_btns .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 56px;
  margin-right: 16px;
  border-radius: 28px;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.4em;
}
.menu_btns .btn.shoplist {
  background-color: #686863;
}
.menu_btns .btn.reservable {
  background-color: #dd2523;
}
.menu_btns .btn.sp {
  display: none;
}
.menu_btns .btn:last-child {
  margin-right: 0;
}
.menu_btns .btn img {
  height: 32px;
  width: auto;
  margin-right: 12px;
}

.menu_caution {
  font-size: 0.85em;
  font-weight: 400;
  text-align: center;
  color: #fff;
  margin-top: 4px;
}
.menu_tel {
  position: absolute;
  top: 0;
  right: 30px;
  display: flex;
  align-items: center;
  width: 26%;
  max-width: 294px;
  height: 100%;
}
.menu_tel img {
  width: 100%;
  height: auto;
}

/**
 * アニメーション
 */
@keyframes scroll_bar{
  0%{ width: 0; }
  45%{ width: 160px;}
  55%{ width: 160px;}
  100%{ width: 0; left: 0;}
}
@keyframes mv_present_file {
  0%{ transform: rotate(0); }
  10%{ transform: rotate(4deg); }
  60%{ transform: rotate(-3deg); }
  100%{ transform: rotate(0); }
}
@keyframes bg_loop{
  0%{background-position-x: 0;}
  100%{background-position-x: -50px;}
}
@keyframes issue_points {
  from{background-position: 0 0;}
  to{background-position: 0 100%;}
}

/* === タブレット ========================================================================= */
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  /* mv */
  .mv {
    padding: 0 6%;
    min-height: auto;
    max-height: none;
    height: auto;
  }
  .mv_content {
    padding-top: 6%;
  }
  .mv_content_subtitle {
    width: 22em;
    max-width: 100%;
  }
  .mv_content_title {
    margin-top: 30px;
    margin-left: 10%;
    width: 100%;
    max-width: 80%;
  }
  .mv_content_submsg.l1 {
    width: 16em;
    max-width: 100%;
  }
  .mv_content_submsg.l2 {
    width: 10em;
    max-width: 61.5%;
  }
  .mv_image {
    position: relative;
    margin: 115px auto 0;
    width: 90%;
    max-width: 500px;
  }
  .mv_image_family {
    width: 100%;
  }

  /* issue */
  .issue_content_points {
    display: none!important;
  }

  /* service */
  .paper1, .paper2, .paper3, .paper4, .paper5 {
    display: none;
  }
  .service_recommend {
    margin-top: 150px;
  }
  .service_recommend_example {
    display: block;
    position: relative;
    padding: 60px 0 60px 20vw;
    overflow: hidden;
  }
  .service_recommend_example .example {
    display: flex;
    align-items: center;
    margin-bottom: 5vw;
    padding: 0 8% 0 0;
    width: 100%;
    height: 140px;
    border-right: none;
    border-left: none;
  }
  .service_recommend_example .example figure {
    margin: 0 30px 0 -70px;
    width: 140px;
    height: 140px;
    flex-shrink: 0;
  }
  .service_recommend_example .example p {
    text-align: left;
  }

  /* 固定メニュー */
  .menu_tel {
    display: none;
  }
}

/* === スマホ ============================================================================= */
@media screen and (max-width: 599px) {
  .pc {
    display: none!important;
  }
  .sp {
    display: block;
  }
  body {
    font-size: 1.4rem;
  }
  /* スクロール */
  .scroll {
    width: 40vw;
    right: 10px;
    bottom: 40vw;
    font-size: 3vw;
  }
  @keyframes scroll_bar{
    0%{ width: 0; }
    45%{ width: calc(40vw - 5.5em);}
    55%{ width: calc(40vw - 5.5em);}
    100%{ width: 0; left: 0;}
  }

  /* ヘッダー */
  header {
    padding: 0.6rem 1rem;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .header {
    width: 100%;
    align-items: center;
  }
  .header_logo {
    width: min(40%, 200px);
  }
  .header_logo p {
    display: none;
  }
  .header_logo img {
    width: 100%;
  }
  .header_tel {
    width: min(46%, 220px);
  }
  
  /* mv */
  .mv {
    padding: 0 6%;
    min-height: auto;
    max-height: none;
    height: auto;
  }
  .mv_content {
    padding-top: 8%;
  }
  .mv_content_subtitle {
    width: 20em;
    max-width: 84%;
  }
  .mv_content_title {
    margin: 5vw 0 12vw;
    width: 100%;
    max-width: 400px;
  }
  .mv_content_submsg.l1 {
    width: 13em;
    max-width: 92%;
  }
  .mv_content_submsg.l2 {
    width: 8em;
    max-width: 57%;
  }
  .mv_image {
    position: relative;
    margin: 15vw auto 0;
    width: 90%;
    max-width: 500px;
  }
  .mv_image_family {
    width: 100%;
  }
  .mv_image_present {
    right: -23%;
    top: 0;
    width: 65%;
    height: 24%;
    background-image: url('../image/mv_present_bg_sp.svg');
    overflow: visible;
  }
  .mv_image_present .txt {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    height: 55%;
  }
  .mv_image_present .txt p {
    font-size: 3vw!important;
    width: auto;
    white-space: pre;
  }
  .mv_image_present .txt p:first-child::before {
    width: 2.5vw;
    height: 2.5vw;
    top: -1.3vw;
    left: -2vw;
  }
  .mv_image_present img {
    top: -105%;
  }

  /* issue */
  .issue {
    padding: 20vw 5vw 0;
  }
  .issue_heading {
    font-size: 5vw;
  }
  .issue_heading span {
    font-size: 5.4vw;
  }
  .issue_content {
    margin: 7vw auto 0;
    padding: 7vw
  }
  .issue_content::before {
    animation: none;
  }
  .issue_content_points {
    display: none!important;
  }
  .issue_content_box_example {
    justify-content: space-between;
    align-items: center;
    margin: 4vw 0;
    padding-top: 10px;
    width: 100%;
  }
  .issue_content_box_example .num {
    position: absolute;
    top: -5px;
    left: 0;
    height: 10vw;
  }
  .issue_content_box_example .image {
    position: relative;
    margin-right: 0;
    width: 44%;
    z-index: 10;
  }
  .issue_content_box_example .content {
    margin-top: 0;
    width: 50%;
  }
  .issue_content_box_example.reverse .num {
    right: 23%;
    left: auto;
  }
  .issue_content_box_example.reverse .image {
    order: 2;
  }
  .issue_content_box_example.reverse .content {
    order: 1;
  }
  .issue_recommend {
    margin: clamp(100px, 20vw, 120px) auto 0;
  }
  .issue_recommend .txt p {
    margin: 0;
    line-height: 2em;
    font-size: 6vw;
  }
  .issue_recommend .txt p span {
    line-height: 1em;
  }
  .issue_recommend .txt::before {
    max-width: 21.2vw;
    max-height: 17.4vw;
  }
  .issue_recommend .txt::after {
    max-width: 21.2vw;
    max-height: 17.4vw;
  }
  .issue_recommend img {
    width: 80%;
  }

  /* service */
  .service_heading {
    margin-bottom: clamp(30px, 10vw, 60px);
  }
  .service_heading .en {
    height: 10vw;
    width: auto;
  }
  .service_heading .flex {
    display: block;
    position: relative;
  }
  .paper1, .paper2, .paper3, .paper4, .paper5 {
    display: none;
  }
  .service_heading_content_submsg {
    width: 34vw;
  }
  .service_heading_content p {
    font-size: 6vw;
  }
  .service_heading_image {
    display: none;
  }
  .service_content {
    text-align: left;
  }
  .service_recommend {
    margin-top: clamp(80px, 23vw, 140px);
  }
  .service_recommend h3 {
    font-size: 4vw;
  }
  .service_recommend_example {
    display: block;
    position: relative;
    padding: 10vw 0 10vw 22vw;
    overflow: hidden;
  }
  .service_recommend_example .example {
    display: flex;
    align-items: center;
    margin-bottom: 8vw;
    padding: 0 8% 0 0;
    width: 100%;
    height: 28vw;
    border: 3px solid #38323a;
    border-right: none;
    border-left: none;
  }
  .service_recommend_example .example figure {
    margin: 0 6vw 0 -14vw;
    width: 28vw;
    height: 28vw;
    flex-shrink: 0;
    border: 3px solid #38323a;
  }
  .service_recommend_example .example p {
    text-align: left;
    font-size: 1.5rem;
  }

  /* howto */
  .howto {
    padding: 7vw 3.5vw 16vw;
  }
  .howto_heading .en {
    height: 10vw;
    width: auto;
    margin-bottom: 5vw;
  }
  .howto_heading p {
    font-size: 6vw;
  }
  .howto_hr {
    margin: 6vw auto 14vw;
    width: 40px;
  }
  .howto_hr div {
    width: 5px;
    height: 5px;
  }
  .howto_summary {
    padding: 0;
  }
  .howto_summary::before {
    display: none;
  }
  .howto_summary::after {
    display: none;
  }
  .howto_summary ol li {
    flex-wrap: wrap;
    padding: 0;
    box-sizing: border-box;
  }
  .howto_summary ol li figure {
    width: 20%;
    margin: 0;
    padding: 4%;
    border: 3px solid #38323a;
    background-color: #e8b55b;
  }
  .howto_summary ol li h4 {
    display: flex;
    align-items: center;
    padding-left: 5vw;
    width: 80%;
    font-size: 5vw;
    border: 3px solid #38323a;
    border-left: none;
    background-color: #ffdc78;
  }
  .howto_summary ol li .content {
    margin-bottom: 7vw;
    padding: 10vw 5vw;
    width: 100%;
    border: 3px solid #38323a;
    border-top: none;
    background-color: #fff;
  }
  .howto_summary ol li .content p {
    line-height: 1.8em;
  }
  .howto_reservation {
    display: block;
  }
  .howto_reservation:first-of-type {
    margin-bottom: 20px
  }
  .howto_summary ol li .content .th {
    width: 6.5em;
    margin-bottom: 10px;
    text-align: center;
    padding: .4em 0;
    background-color: #f9da76;
    border-radius: 0.9em;
    line-height: 1.2em;
  }

  /* 固定メニュー */
  .menu {
    height: 92px;
    bottom: -92px;
    font-size: 1.2rem;
    letter-spacing: 0;
    line-height: 1.3em;
    background-color: rgba(0,0,0,.9);
  }
  .menu_btns {
    padding-top: 0;
  }
  .menu_btns .btn {
    width: 100%;
    height: 67px;
    margin-right: 0;
    border-radius: 0;
  }
  .menu_btns .btn.sp {
    display: flex;
  }
  .menu_btns .btn p {
    width: auto;
  }
  .menu_tel {
    display: none;
  }

  /* フッター */
  .footer-minimum {
    padding: 20px 15px;
  }
}