@charset "utf-8";
/*reset*/
@charset "UTF-8";

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
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;
  font-weight: normal;
}
img {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: bottom;
  background: transparent;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
/* Hides from IE-mac */
* html .clearfix {
  height: 1%;
}

/* CSS Document */

html {
  font-size: 62.5%;
  font-feature-settings: "palt";
  scroll-behavior: smooth;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #444;
  font-size: 15px;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.bkg {
  background-image: url(../img/bkg.png);
  background-position: center;
  background-repeat: repeat-y;
  background-size: cover;
}
a,
p,
span,
dt,
dd,
th,
td {
  line-height: 1.5em;
}
a {
  transition: .3s;
}
a:hover {
  opacity: .8;
}
p {
  word-break: break-word;
  overflow-wrap: break-word;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
}
.SP {
  display: none;
}
.blu {
  background-color: #0274bd;
}
.selif {
  font-family: "Noto Serif JP", serif;
}
.libre {
  font-family: "Libre Bodoni", serif;
  letter-spacing: normal;
}
.cormo {
  font-family: "Cormorant Garamond", serif;
}
.wrapp {
  width: 1200px;
  margin: 0 auto;
}
.inner {
  width: 1000px;
  margin: 0 auto;
}
h2 {
  font-size: clamp(60px, 7.2vw, 90px);
  font-family: "Cormorant Garamond", serif;
  font-weight: bold;
  margin-bottom: 40px;
}
h2 span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(15px, 1.6vw, 20px);
  display: block;
  margin-top: 10px;
}
section {
  padding: 70px 0;
}
/*header*/
header {
  background-color: #0274bd;
  padding: 10px 20px;
}
header a {
  color: #fff;
  font-size: 15px;
}
header .wrapp {
  display: flex;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span {
  font-size: clamp(20px, 4vw, 50px);
  font-weight: 600;
  letter-spacing: normal;
}
.logo span span {
  font-weight: 600;
  font-size: clamp(16px, 2.4vw, 30px);
}
.page_nav {
  display: flex;
  gap: 20px;
}
header nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.tel .libre {
  font-weight: bold;
  font-size: clamp(18px, 2.16vw, 27px);
  display: block;
  margin-bottom: 5px;
}
.tel ul {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
}
.tel ul li:first-of-type a {
  background-color: #004673;
  font-size: 12px;
  font-weight: bold;
  padding: 10px 15px;
}
.access_cont .tel ul li:first-of-type a {
  background-color: #6dc3a6;
  padding: 10px 40px;
}
footer .tel ul li:first-of-type a {
  padding: 10px 30px;
}
.lang_accordion {
  position: relative;
  width: 110px;
}
.lang_btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  padding: 10px 0;
  background: #fff;
  cursor: pointer;
  border: none;
  border-bottom: solid 2px #0274bd;
}
.lang_label {
  font-weight: 600;
  font-size: 12px;
  color: #464856;
}
.lang_caret {
  margin-left: 0;
  font-size: 12px;
  transition: transform 0.25s ease;
}
.lang_btn[aria-expanded="true"] .lang_caret {
  transform: rotate(180deg);
}
.lang_panel {
  position: absolute;
  z-index: 55;
  left: 0;
  top: calc(100% + 6px);
  width: 100%;
  background: #fff;
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: height 0.25s ease, opacity 0.18s ease, visibility 0s linear 0.25s;
}
.lang_panel.is_open {
  opacity: 1;
  visibility: visible;
  transition: height 0.25s ease, opacity 0.18s ease, visibility 0s linear 0s;
}
.lang_list {
  margin: 0;
  padding: 8px 0;
  list-style: none;
}
.lang_item {
  text-align: center;
  display: block;
  padding: 10px 12px;
  color: #464856;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
}
.lang_item:hover {
  background: #f4f7ff;
}
.lang_item.is_current {
  color: #444;
}
.lang_item.is_current::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #2b6cff;
  margin-right: 8px;
  vertical-align: middle;
}
/*fv*/
.sec_fv {
  position: relative;
  padding: 0;
}
.sec_fv .wrapp {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.sec_fv > img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.sec_fv .inner {
  position: relative;
  height: 550px;
  width: 100%;
}
.fv_txt {
  position: absolute;
  right: 1.563vw;
  top: 50%;
  bottom: 50%;
  margin: auto;
  color: #fff;
  height: fit-content;
}
h1 {
  font-size: 32px;
  font-size: clamp(19px, 2.56vw, 32px);
}
h1 span {
  font-size: clamp(50px, 6.88vw, 86px);
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.9),
    0 0 8px rgba(255, 255, 255, 0.8),
    0 0 16px rgba(255, 255, 255, 0.7);
}
h1 + p {
  font-size: 20px;
  letter-spacing: 0.5em;
  margin-top: 20px;
}
/*news*/
.sec_news h2 {
  font-size: 40px;
  width: fit-content;
  margin-bottom: 0;
}
.sec_news h2 span {
  font-size: 15px;
  text-align: center;
}
.sec_news .inner {
  display: flex;
  gap: 50px;
  align-items: center;
}
.news_cont ul {
  background-color: #fff;
  padding: 25px 30px;
  border: solid 1px #e1e1e1;
  height: 80px;
  overflow-y: scroll;
}
.news_cont li {
  display: flex;
  margin-bottom: 20px;
}
.news_cont li > p {
  display: flex;
}
.news_cont li > p:first-of-type {
  font-size: 13px;
  width: 33%;
}
.news_cont li > p span {
  display: inline-block;
  width: 36px;
  height: fit-content;
  background-color: #fff;
  padding: 1px 0 3px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  margin-left: 5px;
}
.news_cont li > p span.new {
  background-color: #ea3c3c;
}
.news_cont li div p {
  font-size: 14px;
}
.news_cont li div p:first-of-type {
  font-weight: bold;
  margin-bottom: 10px;
}
/*top about*/
.about_cont a.SP {
  display: none;
}
.about_cont {
  display: flex;
  gap: 50px;
}
.about_cont div a {
  justify-content: flex-end;
  margin-top: 40px;
}
.more_btn {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #444;
  font-weight: 600;
}
.more_btn_whi {
  color: #fff;
}
.more_btn span {
  display: block;
  border-radius: 50px;
  border: solid 1px #444;
  background-color: #fff;
  width: 30px;
  height: 30px;
  text-align: center;
  position: relative;
  transition: .3s
}
.more_btn_whi span {
  border: solid 1px #fff;
  background-color: inherit;
}
.more_btn span img {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: .3s
}
.more_btn:hover span {
  background-color: #0274bd;
}
.more_btn:hover span img {
  content: url(../img/btn_whi.png);
}
.sec_about .more_btn:hover span img{
  content: url(../img/btn_blk.png);
}
.more_btn:hover span {
  background-color: #fff;
}
.more_btn_whi:hover span img {
  content: url(../img/btn_blk.png);
}
/*top beauty*/
.sec_beauty {
  background-image: url(../img/beauty_bkg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
}
.sec_beauty h2 {
  text-align: center;
}
.beauty_cont ul {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 40px auto 0 auto;
  justify-content: center;
  width: 500px;
}
.beauty_cont dd p {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.beauty_cont ul li {
  width: calc(90%/2);
}
.beauty_cont ul a {
  display: block;
  border: solid 1px #fff;
  background-color: #6dc3a6;
  border-radius: 50px;
  padding: 10px 0 10px 40px;
  color: #fff;
  position: relative;
  width: 180px;
}
.beauty_cont ul a::before {
  content: '';
  background-image: url(../img/btn_whi.png);
  padding: 6px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  display: block;
  height: fit-content;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: .3s;
}
.beauty_cont ul a:hover::before {
  left: 17px;
}
.beauty_cont .more_btn {
  justify-content: flex-end;
  margin: 30px auto 0 auto;
  width: fit-content;
}
.beauty_cont .more_btn span {
  background-color: #6dc3a6;
}
.beauty_cont .more_btn_whi {
  color: #444;
}
.beauty_cont .more_btn_whi:hover span img {
  content: url(../img/btn_whi.png);
}
/*top access*/
.access_cont {
  display: flex;
  gap: 50px;
  align-items: flex-end;
}

.access_cont .tel a {
  color: #fff;
}
.access_cont .tel ul {
  justify-content: flex-start;
  margin-top: 70px;
}
.access_left_table th,
.access_left_table td {
  padding: 8px;
  text-align: left;
}
.access_left_table th {
  width: 65px;
}
.access_time_table h3 {
  margin-bottom: 15px;
  font-size: clamp(15px, 1.6vw, 20px);
}
.access_time_table .wide_scroll {
  background-color: #fff;
  padding: 30px 15px;
}
.access_time_table p {
  font-size: 13px;
  margin-top: 10px;
}
.access_time_table th,
.access_time_table td {
  padding: 15px;
  text-align: center;
}
.access_time_table tr:first-of-type th {
  border-bottom: solid 1px #b6b6b6;
}
.access_time_table tr:nth-of-type(2) td {
  border-bottom: dotted 1px #b6b6b6;
}
.access_time_table tr th:first-of-type,
.access_time_table tr td:first-of-type {
  border-right: solid 1px #b6b6b6;
}
.access_time_table tr td:first-of-type {
  padding: 15px 10px;
}
/*footer*/
#page_top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 40px;
  height: 40px;
  border: solid 1px #464856;
  border-radius: 50%;
  background: #fff;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .3s ease, transform .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
#page_top img {
  transform: rotate(-90deg);
}
#page_top.is_show {
  opacity: 1;
  transform: translateY(0);
}
footer {
  padding: 20px 0 10px 0;
}
footer .inner {
  display: flex;
  gap: 100px;
  align-items: flex-end;
}
footer a,
footer p {
  color: #fff;
}
footer .libre {
  font-weight: bold;
  font-size: clamp(18px, 2.16vw, 27px);
  display: block;
  margin-bottom: 5px;
}
.left_foot p {
  margin: 20px 0;
}
footer .tel ul {
  justify-content: flex-start;
  margin-top: 30px;
}
small {
  color: #989898;
  font-size: 12px;
  display: block;
  text-align: right;
  margin-top: 30px;
}
/*----
page
----*/
.page_section {
  margin: 80px 0;
}
.page_main h2 {
  text-align: center;
}
.page_section h3 {
  color: #464856;
  font-weight: bold;
  font-size: clamp(18px, 1.6vw, 20px);
  text-align: center;
  border-bottom: solid 7px #e2e2e2;
  padding: 0 10px 20px 10px;
  width: 800px;
  max-width: 80%;
  margin: 0 auto 40px auto;
}
.page_fv h3,
.page_price h3 {
  text-align: left;
}
/*page about*/
.page_flex {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 40px;
  justify-content: center;
}
.page_flex div {
  width: 40%;
}
.page_flex div:last-of-type {
  width: 60%;
}
.page_flex img {
  display: block;
  margin: 0 auto;
}
.page_flex img + p {
  text-align: center;
  font-size: 25px;
  font-size: clamp(16px, 2vw, 25px);
  padding-top: 10px;
}
.page_flex div:nth-of-type(2) p {
  margin-bottom: 40px;
}
.about_map table {
  width: 500px;
  margin: 0 auto 40px auto;
  max-width: 100%;
}
.about_map table th,
.about_map table td {
  padding: 15px 40px;
  text-align: left;
  border-bottom: dotted 1px #989898;
}
.about_map table td {
  padding: 15px 0;
}
.about_map table.comp_table th {
  width: 30%;
}
.map_outer {
  height: 320px;
  margin-bottom: 30px;
}
.trains {
  display: flex;
  gap: 20px;
  align-items: center;
}
.map_about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}
.map_about a {
  display: flex;
  align-items: center;
  border: solid 1px #444;
  border-radius: 50px;
  padding: 10px 20px;
  background-color: #fff;
  color: #444;
  font-size: 12px;
  font-weight: bold;
}
.map_about a img {
  padding-right: 20px;
}
.about_map .access_time_table {
  width: fit-content;
  margin: 0 auto 40px auto;
}
.about_map .access_time_table div {
  padding: 30px;
}
.about_map .access_time_table table th,
.about_map .access_time_table table td {
  text-align: center;
  padding: 15px;
}
.about_map .access_time_table tr th.wide,
.about_map .access_time_table tr td.wide {
  width: 25%;
  padding: 15px 0;
}
.about_map .access_time_table table {
  margin-bottom: 20px;
}
.about_map table tr:last-of-type th,
.about_map table tr:last-of-type td {
  border-bottom: none;
}
.about_map .tel ul {
  justify-content: center;
}
.about_map .tel ul a {
  color: #fff;
}
/*beaytu*/
.beauty_menu {
  margin-bottom: 40px;
}
.beauty_menu h3 + img {
  display: block;
  margin: 0 auto 40px auto;
}
.menu_cont {
  width: 800px;
  max-width: 100%;
  background-color: #fff;
  margin: 0 auto 15px auto;
}
.menu_cont h4 {
  font-weight: bold;
  width: 95%;
  margin: 0 auto;
  padding: 20px 20px 15px 20px;
  color: #464856;
  font-size: clamp(15px, 1.44vw, 18px);
  padding: 15px 0;
  border-bottom: dotted 1px #989898;
}
.menu_inner {
  padding: 20px 30px;
}
.beauty_menu_flex {
  display: flex;
  gap: 20px;
  margin: 15px 0;
}
.beauty_menu_flex.last {
  justify-content: space-between;
  margin: 0;
}
.beauty_menu_flex.last p {
  display: flex;
}
.menu_flex_inner {
  width: 250px;
}
.menu_flex_last {
  width: fit-content;
}
.gold {
  background-color: #ada470;
}
.menu_inner div p span {
  display: block;
  padding: 2px 20px;
  font-weight: bold;
  color: #fff;
  margin-right: 15px;
  font-size: 15px;
}
.menu_inner div li {
  padding: 5px 0;
}
.menu_inner div p {
  margin-bottom: 10px;
}
.menu_inner div a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  font-weight: 600;
  font-size: clamp(15px, 1.6vw, 20px);
  color: #444;
  margin-top: 30px;
}
.menu_inner div a span {
  display: block;
  width: 25px;
  height: 25px;
  background-color: #ada470;
  border-radius: 50px;
  text-align: center;
  position: relative;
  transition: .3s;
}
.menu_inner div a span img {
  position: absolute;
  top: 7px;
  right: -2px;
  margin: auto;
  left: 0;
}
.menu_inner div a:hover span {
  margin-right: -2px;
}
/*first visit*/
.step_cont {
  display: flex;
  gap: 20px;
  background-color: #fff;
  padding: 20px;
  align-items: center;
  width: 700px;
  margin: 0 auto 15px auto;
  max-width: 88%;
}
.step_cont span {
  font-size: 50px;
  color: #c5c5c5;
  font-weight: bold;
}
.step_cont div {
  width: 90%;
}
.step_cont h4 {
  display: block;
  width: 100%;
  font-weight: bold;
  font-size: 18px;
  font-size: clamp(15px, 1.44vw, 18px);
  border-bottom: dotted 1px #989898;
}
.step_cont h4,
.step_cont p {
  padding: 15px 0;
}
.faq_cont {
  padding: 10px 20px;
  background-color: #fff;
  width: 700px;
  margin: 0 auto 15px auto;
  max-width: 90%;
}
.faq_cont .q {
  display: flex;
  align-items: center;
  gap: 30px;
  cursor: pointer;
  position: relative;
}
.faq_cont .q p {
  margin: 0;
  font-weight: bold;
  font-size: clamp(15px, 1.44vw, 18px);
}
.faq_cont .q,
.faq_cont.is_open .a {
  padding: 10px;
}
.faq_cont .a {
  border-top: dotted 1px #989898;
  display: flex;
  gap: 30px;
}
.faq_cont .a p {
  max-width: 90%;
}
.faq_cont span.cormo {
  display: block;
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  text-align: center;
  flex-shrink: 0
}
.a span.cormo {
  background-color: #ea3c3c;
}
.q span.cormo {
  background-color: #0274bd;
}
.faq_toggle {
  margin-left: auto;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid #464856;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.faq_toggle::before {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 2px solid #464856;
  border-bottom: 2px solid #464856;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  position: absolute;
  top: 3px;
}
.faq_cont.is_open .faq_toggle::before {
  transform: rotate(-135deg);
  top: 6px;
}
.faq_cont .a {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.25s ease, opacity 0.2s ease;
}
.faq_cont.is_open .a {
  opacity: 1;
}
.faq_cont .a p {
  margin: 10px 0 0;
}
/*price list*/
.price_menu h3 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.price_menu h3 span {
  font-size: 13px;
}
.price_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  padding: 30px 20px;
  max-width: 100%;
  min-width: 0;
}
.price_flex {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  width: 800px;
  margin: 0 auto;
}
.price_cont {
  width: calc(97%/2);
  max-width: 100%;
  background-color: #fff;
  min-width: 0;
}
.price_cont h4 {
  display: block;
  width: 90%;
  margin: 0 auto;
  font-weight: bold;
  font-size: clamp(16px, 1.44vw, 18px);
  border-bottom: dotted 1px #989898;
  padding: 20px 0 20px 10px;
}
.price_cont p {
  padding: 20px;
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: bold;
}
.price_cont p span {
  font-size: 12px;
  font-weight: bold;
}
/*responsive*/
/*header*/
@media (max-width:1250px) {
  .wrapp {
    width: 95%;
  }
  .inner {
    width: 95%;
  }
  header .wrapp {
    width: 100%;
  }
  .logo img {
    width: 67px;
  }
  .page_nav {
    gap: 15px;
  }
  header nav {
    gap: 15px;
  }
  .access_time_table table {
    width: 500px;
  }
  .access_cont {
    gap: 30px;
  }
  .news_cont li > p:first-of-type {
    width: 140px;
  }
  .news_cont div {
    max-width: 80%;
  }
}
@media (max-width: 1080px) {
  header .wrapp {
    position: relative;
    align-items: center;
  }
  header .SP {
    display: block;
  }
  .sp_nav_right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .tel.SP ul li:first-of-type a {
    background-color: inherit;
    padding: 0;
  }
  header nav,
  .page_nav {
    display: block;
  }
  header nav a {
    color: #444;
  }
  .page_nav li {
    padding: 5px 0;
    text-align: center;
  }
  .tel .libre {
    text-align: center;
  }
  .page_nav {
    margin-bottom: 30px;
  }
  .lang_accordion {
    width: 100%;
    margin-top: 30px;
  }
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    height: 100dvh;
    background: #fff;
    padding: 30px;
    transform: translateX(-100%);
    transition: transform .4s ease;
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  nav .tel ul {
    display: none;
  }
  nav.is_open {
    transform: translateX(0);
  }
  .nav_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 900;
  }
  .nav_overlay.is_open {
    opacity: 1;
    visibility: visible;
  }
  .ham_btn {
    width: 30px;
    height: 20px;
    position: relative;
    background: none;
    border: none;
    z-index: 1100;
  }
  .ham_btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: .3s;
  }
  .ham_btn span:nth-child(1) {
    top: 0;
  }
  .ham_btn span:nth-child(2) {
    top: 9px;
  }
  .ham_btn span:nth-child(3) {
    bottom: 0;
  }
  .ham_btn.is_open span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
  }
  .ham_btn.is_open span:nth-child(2) {
    opacity: 0;
  }
  .ham_btn.is_open span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
  }
  .page_nav a {
    position: relative;
    text-decoration: none;
  }

  .page_nav a.is_current::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #0274bd;
  }
  .sec_news .inner {
    display: block;
  }
  .sec_news h2 {
    text-align: center;
    margin: 0 auto 40px auto;
  }
}
@media (max-width: 970px) {
  body {
    overflow-x: hidden;
  }
  .access_cont {
    display: block;
  }
  .access_cont .tel ul {
    margin-top: 30px;
    margin-bottom: 50px;
    justify-content: center;
  }
  .access_left_table {
    width: 100px;
    margin: 0 auto;
  }
  .about_map .access_time_table {
    width: 100%;
  }
  .access_time_table div.wide_scroll div {
    min-width: 528px;
    width: fit-content;
    margin: 0 auto;
    border-collapse: collapse;
  }
  .access_time_table div.wide_scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }
  .access_left_table {
    width: fit-content;
  }
  .about_map .access_time_table div.wide_scroll {
    padding: 0;
  }
}
@media (max-width: 880px) {
  .menu_inner {
    display: block;
  }
  .menu_inner > p {
    width: 100%;
    margin-bottom: 20px;
  }
  .menu_inner div {
    width: 100%;
  }
  .menu_inner div a {
    justify-content: center;
  }
  .menu_inner div p span:first-of-type {
    padding: 2px 5px;
  }
  .menu_inner div p span:first-of-type {
    font-size: 12px;
    margin-right: 10px;
  }
  .menu_inner div p:nth-of-type(2) span {
    font-size: 12px;
  }
  .menu_inner {
    padding: 20px;
  }
  .menu_flex_inner {
    max-width: 33%;
  }
  .menu_inner div li {
    line-height: 1.3em;
  }
  .beauty_menu_flex + p {
    display: none;
  }
  .beauty_menu_flex.last p {
    display: block;
  }
  .menu_inner div p span:first-of-type {
    margin-bottom: 15px;
    margin-right: 0;
  }
  .price_flex {
    width: 90%;
    justify-content: space-between;
  }
  .price_cont {
    width: calc(95%/2);
  }
  .price_cont h4 {
    line-height: 1.3em;
  }
}
@media (max-width: 820px) {
  body {
    font-size: 12px;
  }
  .news_cont li {
    flex-wrap: wrap;
  }
  .news_cont li > p:first-of-type {
    margin-bottom: 15px;
  }
  .news_cont div {
    max-width: 100%;
  }
}
@media (max-width: 800px) {
  footer .inner {
    gap: 50px;
  }
  section {
    padding: 50px 0;
  }
  .logo img {
    width: 55px;
  }
  .fv_txt {
    right: 0;
    left: 0;
    margin: auto;
  }
  .fv_txt p.PC {
    display: none;
  }
  .fv_txt p.SP {
    display: block;
    text-align: center;
  }
  .sec_fv img.SP {
    display: block;
  }
  .sec_fv img.PC {
    display: none;
  }
  .sec_fv .inner {
    height: 350px;
  }
  .sec_fv > img {
    height: 350px;
  }
  h1 {
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    line-height: 0.5em;
  }
  h1 br.SP {
    display: block;
  }
  h1 span.SP {
    display: inline;
  }
}
@media (max-width: 768px) {
  #page_top {
    right: 5px;
    bottom: 75px;
  }
  footer {
    margin-bottom: 60px;
  }
  .fix_nav.SP {
    display: block;
    width: 100%;
  }
  .fix_nav a {
    display: flex;
    color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
  }
  .fix_nav a span {
    background-color: #004673;
    font-weight: bold;
    padding: 14px;
  }
  .fix_nav a span:first-of-type {
    background-color: #17b017;
    display: block;
  }
  .fix_nav a span:last-of-type {
    width: 90%;
    text-align: center;
  }
  .faq_cont {
    padding: 10px;
  }
  .faq_cont .q {
    gap: 15px;
  }
  .price_list li {
    width: 100%;
  }
  .price_list {
    padding: 20px;
  }
  .price_menu h3 {
    display: block;
  }
  .price_menu h3 span {
    display: block;
    margin-top: 10px;
  }
  .about_map table {
    margin-bottom: 20px;
  }
  .about_map .tel.SP {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }
  .page_flex {
    display: block;
  }
  .page_flex div,
  .page_flex div:last-of-type {
    width: 100%;
  }
  .page_flex div:first-of-type {
    margin-bottom: 30px;
  }
  .about_cont {
    display: block;
  }
  .about_cont img {
    display: block;
    margin: 30px auto 0 auto;
  }
  .about_cont div a {
    display: none;
  }
  .about_cont a.SP {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  .beauty_cont {
    display: block;
  }
  .beauty_cont dt {
    text-align: center;
    margin-bottom: 30px;
  }
  .beauty_cont dd {
    max-width: 100%;
  }
  .beauty_cont a.more_btn {
    display: none;
  }
  footer .inner {
    display: block;
  }
  .left_foot {
    width: fit-content;
    margin: 0 auto;
  }
  footer .tel ul {
    justify-content: center;
  }
  small {
    text-align: center;
  }
  footer .logo {
    justify-content: center;
  }
  footer .libre {
    text-align: center;
  }
}
@media (max-width: 650px) {
  .beauty_menu_flex {
    display: block;
  }
  .menu_flex_inner {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .price_cont {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .about_map table th {
    padding: 15px;
  }
  .about_map table {
    min-width: 0;
    width: 100%;
  }
  .access_time_table p {
    font-size: 11px;
  }
  .beauty_cont ul {
    width: 90%;
  }
  .beauty_cont ul li {
    flex-shrink: 1;
    width: calc(96%/2);
  }
  .beauty_cont ul a {
    width: 80%;
  }
}
@media (max-width: 500px) {
  footer {
    margin-bottom: 55px;
  }
}
@media (max-width: 470px) {
  .map_about {
    display: block;
  }
  .trains {
    justify-content: center;
    margin-bottom: 20px;
  }
  .map_about a {
    width: 200px;
    margin: 0 auto;
  }
  .logo img {
    display: none;
  }
  .beauty_cont ul {
    display: block;
  }
  .beauty_cont ul li {
    width: 70%;
    margin: 0 auto 15px auto;
  }
}
@media (max-width: 380px) {
  h1 {
    font-size: 16px;
  }
  h1 span {
    font-size: 48px;
  }
}