@charset "UTF-8";

/* ----------------------------------------
   default.css
---------------------------------------- */
/* reset style
---------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* 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;
}

iframe {
  vertical-align: bottom;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

/* default style
---------------------------------------- */
html,
body {
  font-size: 10px;
}

body {
  position: relative;
  background: #fff;
  /* letter-spacing: 0.04em; */
  line-height: 1.8;
  color: #323232;
  font-family: source-han-sans-japanese, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-weight: normal;
  -webkit-text-size-adjust: 100%;
}

body * {
  box-sizing: border-box;
}

hr {
  border: none;
}

map,
area {
  border: none;
  outline: none;
}

sup {
  vertical-align: top;
  font-size: 0.5em;
}

a {
  text-decoration: none;
  color: #323232;
}

a:hover {
  text-decoration: underline;
  opacity: 0.65;
}

a.inactive {
  pointer-events: none;
  cursor: default;
  color: #999 !important;
}

/* PARTS
---------------------------------------- */
/* Navigation */
.innerLinkNav {
  width: 100%;
  margin-bottom: 90px;
}

.innerLinkNav ul {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}

.innerLinkNav ul li {
  width: calc((100% - 20px) / 2);
  margin: 0 0 20px;
}

.innerLinkNav ul li a {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  width: 100%;
  height: 90px;
  background: #233572;
  font-size: 1.7rem;
}

.innerLinkNav ul li a>span {
  position: relative;
  padding: 0 10px;
  line-height: 1.2;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}

.innerLinkNav ul li a::before {
  content: '';
  position: absolute;
  bottom: 15px;
  width: 15px;
  height: 1px;
  background: #fff;
  left: calc(50% - 12.5px);
  transform: rotate(45deg);
}

.innerLinkNav ul li a::after {
  content: '';
  position: absolute;
  bottom: 15px;
  width: 15px;
  height: 1px;
  background: #fff;
  right: calc(50% - 12.5px);
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .innerLinkNav {
    margin-bottom: 45px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .innerLinkNav ul li a {
    height: 60px;
    font-size: 2.34375vw;
  }

  .innerLinkNav ul li a::before {
    bottom: 10px;
    left: calc(50% - 8.5px);
    width: 10px;
  }

  .innerLinkNav ul li a::after {
    bottom: 10px;
    right: calc(50% - 8.5px);
    width: 10px;
  }
}

@media screen and (max-width: 480px) {
  .innerLinkNav ul {
    display: block;
  }

  .innerLinkNav ul li {
    width: 100%;
  }

  .innerLinkNav ul li a {
    height: auto;
    font-size: 1.6rem;
  }

  .innerLinkNav ul li a>span {
    padding: 20px 10px;
  }

  .innerLinkNav ul li+li {
    margin-top: 10px;
  }
}

/* Note */
.note {
  font-size: 1.3rem;
}

.noteList {
  font-size: 1.3rem;
}

.noteList li {
  padding-left: 1em;
  letter-spacing: 0;
  line-height: 1.5;
  text-indent: -1em;
}

/* text-align */
.ta-c {
  text-align: center;
}

.ta-r {
  text-align: right;
}

.ta-l {
  text-align: left;
}

/* vertical-align */
.va-m {
  vertical-align: middle;
}

.va-t {
  vertical-align: top;
}

.va-b {
  vertical-align: bottom;
}

/* Table */
.tbl {
  display: table;
}

.tbl .row {
  display: table-row;
}

.tbl .cell {
  display: table-cell;
  vertical-align: middle;
}

.tbl .cell.top {
  vertical-align: top;
}

.tbl .cell.btm {
  vertical-align: bottom;
}

.tbl.top .cell {
  vertical-align: top;
}

.tbl.btm .cell {
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {

  .tbl.rsp,
  .tbl.rsp .row,
  .tbl.rsp .cell {
    display: block;
  }
}

/* List */
.simpleList li {
  padding-left: 1em;
  text-indent: -1em;
}

.simpleList li::before {
  content: '・';
}

/* Link */
a.txtLink {
  position: relative;
  text-decoration: underline;
  color: #e34e9b;
}

a.txtLink::before {
  content: '＞';
}

a.txtLink:hover {
  text-decoration: none;
}

a.telLink {
  pointer-events: none;
  text-decoration: none;
  cursor: default;
}

a.telLink:hover {
  text-decoration: none;
}

a.inlineLink {
  text-decoration: underline;
  color: #e34e9b;
}


/* Box */
.ttlBox {
  margin-bottom: 20px;
  padding: 15px 20px;
  background: #233572;
  line-height: 1.1;
  color: #fff;
  font-size: 1.9rem;
}

a.btnBox {
  display: table;
  width: 75%;
  height: 95px;
  margin: 0 auto;
  background: #233572;
}

a.btnBox>span {
  display: table-cell;
  position: relative;
  padding: 10px 60px;
  background: url("../img/icon_arrow_02.png") no-repeat 96.6% center;
  background-size: 35px auto;
  line-height: 1.2;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  font-size: 2.1rem;
}

a.btnBox2 {
  display: table;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  background: #1fb9de;
}

a.btnBox2>span {
  display: table-cell;
  position: relative;
  padding: 10px 60px;
  line-height: 1.2;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  font-size: 1.8rem;
}

a.btnBox2>span::after {
  content: '';
  position: absolute;
  right: 3.44828%;
  top: calc(50% - 12%);
  width: 35px;
  height: 24px;
  background: url("../img/icon_arrow_02.png") no-repeat left top;
  background-size: 100% auto;
}

a.btnBox3 {
  display: table;
  width: 50%;
  height: 95px;
  margin: 0 auto 20px;
  background: #233572;
}

a.btnBox3>span {
  display: table-cell;
  position: relative;
  padding: 10px 60px;
  background: url("../img/icon_arrow_02.png") no-repeat 96.6% center;
  background-size: 35px auto;
  line-height: 1.2;
  text-align: left;
  vertical-align: middle;
  color: #fff;
  font-size: 2.1rem;
}


a.btnBox:hover,
a.btnBox2:hover,
a.btnBox3:hover {
  text-decoration: none;
}

dl.valueBox {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 30px;
  background: #e34e9b;
  color: #fff;
}

dl.valueBox dt,
dl.valueBox dd {
  flex: 0 0 auto;
}

dl.valueBox dt {
  width: 20.58824%;
  padding-right: 20px;
}

dl.valueBox dt span {
  display: block;
  line-height: 1.1;
}

dl.valueBox dt span:first-child {
  font-family: dunbar-low, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 3rem;
}

dl.valueBox dt span:last-child {
  margin-top: 5px;
  font-size: 1.5rem;
  font-weight: bold;
}

dl.valueBox dd {
  width: 79.41176%;
  padding: 10px 0 10px 30px;
  border-left: 1px solid #fff;
  line-height: 1.5;
}

dl.valueBox dd .main {
  font-size: 1.8rem;
}

dl.valueBox dd .sub {
  margin-top: 10px;
  font-size: 1.5rem;
}

dl.valueBox dd .note {
  margin-top: 10px;
}

/* Title */
.dskTtl {
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
  font-size: 1.7rem;
  font-weight: bold;
}

.dskTtl::before {
  content: '●';
}

.triTtl {
  display: block;
  position: relative;
  padding-left: 1.5em;
  line-height: 1.3;
  color: #1fb9de;
  font-weight: bold;
}

.triTtl::before {
  content: '▼';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0.1em;
  margin-right: 5px;
  transform: rotate(-90deg);
}

/* Other */
.ib {
  display: inline-block;
}

.nowrap {
  white-space: nowrap;
}

.sq::before,
.sq>li::before {
  content: '■';
}

.dsk::before,
.dsk>li::before {
  content: '●';
}

.tri::before,
.tri>li::before {
  content: '▼';
  display: inline-block;
  margin-right: 5px;
  transform: rotate(-90deg);
}

#goTop {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 0;
  z-index: 99;
}

#goTop a {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  overflow: hidden;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  text-indent: -999px;
}

#goTop a::after {
  content: '';
  position: absolute;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
  background: url("../img/icon_arrow_02.png") no-repeat center center;
  background-size: 100% auto;
  transform: rotate(-90deg);
}

#mq {
  width: 0;
  height: 0;
}


.marker {
  background: linear-gradient(transparent 60%, #ff6 60%);
}

/* ▼ @media : SP */
@media screen and (max-width: 768px) {

  a.btnBox,
  a.btnBox3 {
    width: 90%;
  }

  a.btnBox>span {
    font-size: 2.734375vw;
  }

  dl.valueBox {
    padding: 10px 20px;
  }

  dl.valueBox dt {
    padding-right: 10px;
  }

  dl.valueBox dt span:first-child {
    font-size: 3.2552083333vw;
  }

  dl.valueBox dt span:last-child {
    font-size: 1.953125vw;
  }

  dl.valueBox dd {
    padding: 5px 0 5px 15px;
  }

  dl.valueBox dd .main {
    font-size: 2.34375vw;
  }

  dl.valueBox dd .sub {
    margin-top: 5px;
    font-size: 1.953125vw;
  }

  dl.valueBox dd .note {
    margin-top: 5px;
  }
}

@media screen and (max-width: 480px) {
  .ttlBox {
    margin-bottom: 15px;
    padding: 10px 15px;
    font-size: 1.8rem;
  }

  a.btnBox {
    width: 90%;
    height: auto;
  }

  a.btnBox>span {
    padding: 20px 35px;
    background-size: 26.25px;
    font-size: 4.1666666667vw;
  }

  dl.valueBox {
    display: block;
  }

  dl.valueBox dt {
    width: 100%;
    padding: 0 0 10px;
  }

  dl.valueBox dt span:first-child {
    font-size: 2.8rem;
  }

  dl.valueBox dt span:last-child {
    font-size: 1.5rem;
  }

  dl.valueBox dd {
    width: 100%;
    padding: 10px 0 0;
    border-top: 1px solid #fff;
    border-left: none;
  }

  dl.valueBox dd .main {
    font-size: 1.5rem;
  }

  dl.valueBox dd .sub {
    font-size: 1.5rem;
  }

  a.telLink {
    pointer-events: auto;
    cursor: pointer;
  }

  #goTop {
    right: 10px;
    bottom: 10px;
  }

  #goTop a {
    width: 50px;
    height: 50px;
  }

  #goTop a::after {
    left: calc(50% - 12px);
    top: calc(50% - 12px);
    width: 24px;
    height: 24px;
  }
}

.splite {
  overflow: hidden;
  height: 0;
}

/* body
---------------------------------------- */
body.open {
  overflow-y: hidden;
}


/* #container
---------------------------------------- */
#container {
  position: relative;
  width: 100%;
  padding-top: 100px;
  font-size: 1.5rem;
}

main {
  display: block;
  margin: 0 auto;
  padding: 0;
}

main>section {
  padding-right: 10px;
  padding-left: 10px;
  text-align: center;
}

main>section h2 {
  margin-bottom: 45px;
  line-height: 1.1;
}

main>section h2 span {
  display: block;
}

main>section h2 span+span {
  margin-top: 10px;
  color: #5a5a5a;
  font-size: 1.5rem;
}

main>section article {
  margin: 0 auto;
}

main>section article .all_item {
  margin-top: 50px;
}

main>section article .all_item a {
  display: inline-block;
  position: relative;
  padding-top: 40px;
  font-size: 1.3rem;
}

main>section article .all_item a::before {
  content: '';
  display: block;
  position: absolute;
  left: calc(50% - 17px);
  top: 0;
  width: 34px;
  height: 24px;
  background: url("../img/icon_arrow_01.png") no-repeat left top;
  background-size: 100% auto;
}

body.sub-ctg main {
  max-width: 890px;
  padding: 95px 10px 200px;
  text-align: center;
}

body.sub-ctg main h1 {
  margin-bottom: 55px;
}

body.sub-ctg main h1 span {
  display: block;
}

body.sub-ctg main h1 span+span {
  margin-top: 10px;
  line-height: 1.1;
  font-size: 1.5rem;
}

body.sub-ctg main>section {
  padding-right: 0;
  padding-left: 0;
}

body.sub-ctg main.m1 {
  padding-bottom: 0 !important;
}

body.sub-ctg main.m2 {
  padding-top: 0 !important;
}

/* .notatoo
---------------------------------------- */
.notatoo {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 830px;
  margin: 30px auto 60px;
  border: 2px solid #fff;
}

.notatoo dt {
  padding: 0 20px 0 15px;
}

.notatoo dt img {
  max-width: 100px;
}

.notatoo dd {
  padding: 15px 20px;
  border-left: 2px solid #fff;
  letter-spacing: 0;
  text-align: left;
}

.notatoo dd p:last-child {
  margin-top: 5px;
  font-size: 1.3rem;
}

.notatoo.blue {
  border-color: #1fb9de;
  color: #1fb9de;
}

.notatoo.blue dd {
  border-color: #1fb9de;
}

/* .infoBox1
---------------------------------------- */
.infoBox1 {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 20px;
  border: 3px solid #804898;
  line-height: 1.5;
  text-align: left;
}

.infoBox1 .tt1 {
  width: 84px;
}

.infoBox1 .tx1 {
  width: calc(100% - 100px);
  font-size: 1.4rem;
}

.infoBox1 em {
  color: #e34e9b;
  font-size: 1.6rem;
  font-weight: bold;
  font-feature-settings: "palt";
}

/* footer
---------------------------------------- */
footer {
  background: #1fb9de;
  text-align: center;
}

footer .block1 {
  padding: 65px 20px 40px;
  color: #fff;
}

footer .block1 h2 {
  margin-bottom: 30px;
}

footer .block1 h2 img {
  max-width: 277.5px;
}

footer .block1 h2+div.tbl {
  margin: 0 auto 1em;
}

footer .block1 h2+div.tbl dl {
  line-height: 1.3;
  text-align: left;
}

footer .block1 h2+div.tbl dl dd .indent1 {
  display: inline-block;
  text-indent: -0.5em;
}

footer .block1 h2+div.tbl dl+dl dt,
footer .block1 h2+div.tbl dl+dl dd {
  padding-top: 0.25em;
}

footer .block1 .inquiry h3 {
  margin-bottom: 20px;
  line-height: 1.1;
  font-size: 2.1rem;
}

footer .block1 .inquiry h4 {
  line-height: 1.1;
  font-size: 2.3rem;
}

footer .block1 .inquiry .tel {
  margin: 25px auto 10px;
}

footer .block1 .inquiry .tel a {
  pointer-events: none;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: #fff;
  font-family: dunbar-low, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 4.6rem;
}

footer .block1 a {
  color: #fff;
}

footer .block1 .admission a {
  text-decoration: underline;
  font-size: 2rem;
}

footer .block1 .inquiry .tel a span {
  margin: 0 -0.2em;
  font-family: source-han-sans-japanese, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-size: 3.3rem;
}

footer .block1 .inquiry .tel a:hover {
  text-decoration: none;
}

footer .block1 .inquiry .tel+p {
  font-size: 1.5rem;
}

footer .block2 {
  padding: 30px 40px;
  background: #323232;
  color: #fff;
}

footer .block2 p a img {
  max-width: 436px;
}

footer .block3 {
  padding: 20px 20px 60px;
  background: #fff;
}

footer .block3 ul {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

footer .block3 ul li {
  flex: 0 0 auto;
}

footer .block3 ul li a::before {
  content: '■';
}

footer .block3 ul li+li {
  margin-left: 20px;
}

footer .block3 .copyright {
  font-size: 1.1rem;
}

body.sub-ctg footer .block1 {
  /*display: none;*/
  padding-top: 40px;
}

/* @media
---------------------------------------- */
/* ▼ @media : PC */
@media screen and (max-width: 1085px) {
  header nav ul.menu li a {
    padding: 0 6px;
  }

  header nav ul.menu li a>span {
    font-size: 1.198156682vw;
  }

  header nav ul.menu li a>span br {
    display: block;
  }
}

@media screen and (max-width: 970px) {
  header nav ul.menu li a>span {
    font-size: 1.2371134021vw;
  }

  header nav ul.sns {
    margin: 15px 0 0 5px;
  }

  header nav ul.sns {
    width: 60px;
  }

  header nav ul.sns li a {
    width: 30px;
    height: 30px;
  }

  header nav ul.sns li:nth-child(1) a {
    background-position: center -8px;
  }

  header nav ul.sns li:nth-child(2) a {
    background-position: center -52px;
  }

  header nav ul.sns li:nth-child(3) a {
    background-position: center -97px;
  }

  header nav ul.sns li:nth-child(4) a {
    background-position: center -143px;
  }
}

@media screen and (max-width: 834px) {
  header {
    padding: 0 10px;
  }
}

@media screen and (min-width: 769px) {
  #mq {
    display: block;
  }

  .sp {
    display: none;
  }
}

/* ▼ @media : SP */
@media screen and (max-width: 768px) {

  .pc,
  #mq {
    display: none;
  }

  body {
    line-height: 1.5;
  }

  #container {
    min-width: 320px;
    padding-top: 50px;
  }

  header {
    height: 50px;
  }

  header h1 {
    width: 75px;
    padding-top: 0;
  }

  header nav {
    display: none;
    position: absolute;
    left: 0;
    top: 50px;
    width: 100%;
    height: calc(100vh - 50px);
    background: #fff;
  }

  header nav ul.menu {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    width: 100%;
    height: calc((100vh - 50px) * 0.6);
    background: #fff;
    margin: 0;
  }

  header nav ul.menu li {
    width: 50%;
    height: auto;
    border-top: 1px solid #ccc;
  }

  header nav ul.menu li a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  header nav ul.menu li a>span {
    padding: 0;
    text-align: center;
    vertical-align: middle;
    font-size: 2.0833333333vw;
  }

  header nav ul.menu li a>span br {
    display: none;
  }

  header nav ul.menu li a>span::before {
    display: inline-block;
    position: relative;
    left: auto;
    top: -2px;
    width: 30px;
    height: 30px;
    margin-right: 7px;
    vertical-align: middle;
  }

  header nav ul.menu li:nth-child(even) {
    border-left: 1px solid #ccc;
  }

  header nav ul.menu li:nth-child(9) {
    width: 100%;
  }

  header nav ul.sns {
    flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    width: 100%;
    height: calc((100vh - 50px) * 0.6 / 5);
    margin: 0 auto;
    background: #fff;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }

  header nav ul.sns li+li {
    margin-left: 10%;
  }

  header .btn {
    display: block;
  }

  body.open header div>div:nth-child(1) {
    transform: rotate(45deg);
    margin-top: 0;
  }

  body.open header div>div:nth-child(2) {
    transform: scale(0) rotate(90deg);
  }

  body.open header div>div:nth-child(3) {
    transform: rotate(135deg);
    margin-top: 0;
  }

  main>section h2 {
    margin-bottom: 20px;
  }

  main>section article .all_item {
    margin-top: 25px;
  }

  .notatoo {
    margin-bottom: 30px;
  }

  footer .block1 .inquiry h3 {
    margin-bottom: 10px;
  }

  footer .block1 .inquiry .tel a {
    pointer-events: auto;
  }

  footer .block1 .inquiry .tel a img {
    width: 70%;
    max-width: 100%;
  }

  footer .block2 p a img {
    max-width: 100%;
  }

  footer .block3 {
    padding-bottom: 30px;
  }

  /* .sub-ctg */
  body.sub-ctg main {
    padding: 40px 0 80px;
  }

  body.sub-ctg main>section {
    padding-right: 10px;
    padding-left: 10px;
  }

  body.sub-ctg main h1 {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {

  /* .sub-ctg */
  body.sub-ctg main>section {
    padding-right: 10px;
    padding-left: 10px;
  }

  header nav ul.menu li a>span,
  header nav .lang a {
    font-size: 3.3333333333vw;
  }

  footer .block1 {
    padding: 40px 20px;
  }

  footer .block1 h2 img {
    width: 50%;
  }

  .notatoo {
    display: block;
  }

  .notatoo dt {
    padding: 15px;
  }

  .notatoo dt img {
    max-width: 50%;
  }

  .notatoo dd {
    border-top: 2px solid #fff;
    border-left: none;
  }

  .infoBox1 {
    display: block;
    padding: 15px;
  }

  .infoBox1 .tt1 {
    width: 33%;
    margin: 0 auto 15px;
  }

  .infoBox1 .tx1 {
    width: 100%;
  }

  body.sub-ctg footer .block1 {
    padding: 20px 0;
  }

  footer .block2 {
    padding: 20px;
  }

  footer .block3 {
    padding-bottom: 20px;
  }

  footer .block3 ul {
    display: inline-block;
    margin-bottom: 15px;
  }

  footer .block3 ul li {
    text-align: left;
  }

  footer .block3 ul li+li {
    margin-top: 5px;
    margin-left: 0;
  }

  footer .block1 address {
    margin-top: 1em;
  }

  footer .block1 .inquiry h3,
  footer .block1 .inquiry h4 {
    font-size: 1.8rem;
  }

  footer .block1 .inquiry .tel {
    margin-top: 10px;
  }

  footer .block1 .inquiry .tel a {
    font-size: 9.5833333333vw;
  }

  footer .block1 .inquiry .tel a span {
    font-size: 6.875vw;
  }

  footer .block3 .copyright span {
    display: block;
  }
}

/* Padding
---------------------------------------- */
.pt1em {
  padding-top: 1em;
}

.pb1em {
  padding-bottom: 1em;
}

.pr1em {
  padding-right: 1em;
}

.pl1em {
  padding-left: 1em;
}

.pt2em {
  padding-top: 2em;
}

.pb2em {
  padding-bottom: 2em;
}

.pr2em {
  padding-right: 2em;
}

.pl2em {
  padding-left: 2em;
}

.pt3em {
  padding-top: 3em;
}

.pb3em {
  padding-bottom: 3em;
}

.pr3em {
  padding-right: 3em;
}

.pl3em {
  padding-left: 3em;
}

.pt4em {
  padding-top: 4em;
}

.pb4em {
  padding-bottom: 4em;
}

.pr4em {
  padding-right: 4em;
}

.pl4em {
  padding-left: 4em;
}

.pt5em {
  padding-top: 5em;
}

.pb5em {
  padding-bottom: 5em;
}

.pr5em {
  padding-right: 5em;
}

.pl5em {
  padding-left: 5em;
}


/* Coming Soon 2020.05.21 追加
---------------------------------------- */
.cmg img {
  max-width: 270px;
}


.c_notice01,
.c_notice02,
.c_notice03 {
  max-width: 830px;
  margin: 30px auto 0;
  text-align: center;
}



.sub-ctg .c_notice01,
.sub-ctg .c_notice02,
.sub-ctg .c_notice03 {
  max-width: 830px;
  margin: 0 auto 30px;
  text-align: center;
}

.hotelspa .c_notice01 {
  max-width: 630px;
  margin: 0 auto 30px;
  text-align: center;
}

.c_notice01 dd,
.c_notice02 dd,
.c_notice03 dd {
  padding: 1.5em 0;
}

.c_notice01 {
  border: 1px solid #EB6EA5;
}

.c_notice01 dt {
  color: #fff;
  font-weight: bold;
  font-size: 130%;
  background: #EB6EA5;
}

.c_notice01 dd span {
  color: #FF6EBB;
  font-weight: bold;
}

.c_notice02 {
  border: 1px solid #804898;
}

.c_notice02 dt {
  color: #fff;
  font-weight: bold;
  font-size: 130%;
  background: #804898;
}

.sp {
  display: block;
}

.c_notice01 a:link,
.c_notice02 a:link,
.c_notice03 a:link,
.c_notice04 a:link {
  text-decoration: underline;
}

.c_notice03 {
  border: 1px solid #37BEF0;
}

.c_notice03 dt {
  color: #fff;
  font-weight: bold;
  font-size: 130%;
  background: #37BEF0;
}

.c_notice04 {
  text-align: center;
  border: 1px solid #c00;
  padding: 10px;
  max-width: 830px;
  margin: 30px auto;
}

@media screen and (max-width: 480px) {

  #top .c_notice01,
  #top .c_notice02,
  #top .c_notice03,
  .c_notice01,
  .c_notice02,
  .c_notice03 {
    margin: 30px 5% 0;
  }

  .c_notice01 dd,
  .c_notice02 dd {
    padding: 1.5em 2%;
  }

  .sp {
    display: none;
  }

  .c_notice04 {
    margin: 20px 5% 20px;
  }

  .hotelspa .c_notice01 {
    margin: 30px 5% 30px !important;
  }

}


.graycover {
  background: #dedede;
}

.graycover table,
.graycover p,
.graycover ul {
  /*mix-blend-mode:overlay;*/
  opacity: 0.3;
}




/*  2021.04.30 追加
---------------------------------------- */

#noteList_top {
  display: flex;
  justify-content: space-between;
  width: 1100px;
  margin: 50px auto 0;
}

#noteList_top .list01,
#noteList_top .list02 {
  width: 49%;
}

#noteList_top .list03 {
  width: 49%;
}

.sub-ctg #noteList_top {
  justify-content: center;
  width: 100%;
  margin-bottom: 30px;
}

.sub-ctg #noteList_top .list01 {
  width: 65%;
}

#noteList_top p {
  margin-bottom: 0.8em;
}

#noteList_top .note {
  font-size: 0.9em;
}

#noteList_top dd {
  padding: 0 0 2em;
}

#noteList_top .txtLink {
  margin-bottom: 0;
}

#noteList_top .txtLink a {
  text-decoration: underline;
}


#noteList_top .list01 p:first-child {
  width: 150px;
  margin: 20px auto;
}

#noteList_top .list02 p:first-child {
  width: 220px;
  margin: 30px auto;
}

#noteList_top .list03 p:first-child {
  width: 220px;
  margin: 30px auto;
}

#noteList_top .list01 {
  border: 1px solid #EB6EA5;
}

#noteList_top .list01 dl {}

#noteList_top .list01 dt {
  color: #fff;
  font-weight: bold;
  font-size: 160%;
  line-height: 1.2;
  background: #EB6EA5;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*#noteList_top .list01 p:nth-child(3){color: #f00; font-size:140%;}*/
#noteList_top .list01 p:nth-child(3) {
  font-size: 100%;
}

#noteList_top .list01 .list01_lis p {
  width: calc(80% + 1em);
  text-align: left;
  margin: 0 auto 20px;
  text-indent: -1em;
  padding-left: 1em;
}

#noteList_top .list01 .list01_lis p::before {
  content: '●';
}

#noteList_top .list02 {
  border: 1px solid #37BEF0;
}

#noteList_top .list02 dl {}

#noteList_top .list02 dt {
  color: #fff;
  font-weight: bold;
  font-size: 160%;
  line-height: 1.2;
  background: #37BEF0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#noteList_top .list03 {
  border: 1px solid #ff9600;
}

#noteList_top .list03 dl {}

#noteList_top .list03 dt {
  color: #fff;
  font-weight: bold;
  font-size: 160%;
  line-height: 1.2;
  background: #ff9600;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.noteList_k {}

.noteList_k li {
  padding-left: 1.2em;
}

.noteList_k li::before {
  content: '※';
  margin-left: -1.2em;
}


@media screen and (max-width: 768px) {
  #noteList_top {
    display: block;
    width: 95%;
  }

  #noteList_top .list01,
  #noteList_top .list02 {
    width: 100%;
  }

  #noteList_top .list03 {
    width: 100%;
  }

  #noteList_top .list01 {
    margin-bottom: 20px;
  }

  .sub-ctg #noteList_top .list01 {
    width: 100%;
  }

}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}



/*  2021.05.17 追加
---------------------------------------- */

.layer_board_bg,
.layer_board {
  position: absolute;
}

.layer_board_bg {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
  display: none;
  cursor: pointer;
  background: #000;
}

.layer_board {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  text-align: center;
  z-index: 2000;
  /*padding: 50px*/
}

.layer_board p {
  /*margin-bottom: 50px*/
}

.b_wrap {
  position: relative;
}

.btn_close {
  display: block;
  text-decoration: none;
  color: #fff;
  text-align: center;
  padding: 10px 10px;
  font-size: 20px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  right: 0;
}

a.btn_close:hover {
  text-decoration: none;
}

.layer_board {
  width: 560px;
}

#layer_board_area dl {
  border: 3px solid #1FB9DE;
}

#layer_board_area dt {
  background: #1FB9DE;
  font-size: 30px;
  color: #fff;
  line-height: 79px;
}

#layer_board_area dd {
  padding: 30px 20px 35px;
}

#layer_board_area dd .txt1 {
  font-size: 15px;
  line-height: 34px;
}

#layer_board_area dd .txt2 {
  font-size: 22px;
  line-height: 40px;
  margin-top: 10px;
}

#layer_board_area dd .txt2 a {
  font-size: 31px;
  color: #FF6EBB;
  text-decoration: underline;
  padding: 10px 0;
  display: inline-block;
}


@media screen and (max-width: 768px) {
  .layer_board {
    width: 90%;
  }

  #layer_board_area dd {
    padding: 30px 0px 35px;
  }

  #layer_board_area dd .txt2 a {
    font-size: 25px;
    padding: 0;
  }
}



/*  2022.03.10 追加 scss変更なし
---------------------------------------- */

.ronb_cmgson {
  width: 50%;
  margin: auto;
}


@media screen and (min-width: 768px) {

  .livecam,
  .movie {
    margin-top: -10px;

  }
}

@media screen and (max-width: 767px) {

  .livecam,
  .movie {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding-bottom: 56.25% !important;
  }

  .livecam iframe,
  .movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.list_type1 li {
  margin-left: 1em;
  text-indent: -1em;
}

.shop #container {
  overflow: hidden;
}