@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:200,300,400,500,600,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i&display=swap");
@import url("https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap");
@import url("https://fonts.googleapis.com/css?family=Overpass:100,100i,200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i&display=swap");
/*赤*/
/*暗い赤*/
/* サイトの基本のカラー 　水色*/
/*うすい水色*/
/*よりうすい水色*/
/*濃い水色　見出しなど*/
/* フォームのエラーのカラー */
/* ブレイクポイント参考

PC:インナーコンテンツサイズ以上
Laptop-HiDPI:1440
Laptop-MDPI :1280
iPad Pro(10.5inch):834
iPad Pro(12.9inch):1024
iPad:601
SP:600

*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Prata");
@import url("https://fonts.googleapis.com/css?family=Questrial");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800");
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900");
@import url("https://fonts.googleapis.com/css?family=Limelight&subset=latin-ext");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:200,300,400,500,600,700,900&subset=japanese");
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}

/* タブレット・PC */
@media screen and (max-width: 599px) {
  .pctb {
    display: none !important;
  }
}

/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tbsp {
    display: none !important;
  }
}

/* タブレットのみ */
@media screen and (max-width: 599px), (min-width: 1025px) {
  .tb {
    display: none !important;
  }
}

/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*---------------------------------------

追加分

----------------------------------------*/
/*--------------------------------------------------------

	リセット : html5reset-1.6.1.css

----------------------------------------------------------*/
/*


html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
/*要素のフォントサイズやマージン・パディングをリセットしています*/
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,
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;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
nav ul {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote,
q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています。また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています。また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle;
}

/*画像を縦に並べたときに余白が出てしまわないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  /* width: 100%;*/
}

li {
  list-style: none;
}

/* タッチデバイスでのリンクやボタンの反応を向上 */
a,
area,
button,
[role="button"],
input:not([type="range"]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/*--------------------------------------------------------

	body設定
	
----------------------------------------------------------*/
html {
  background: #ffffff;
  overflow-x: hidden;
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "游ゴシック", Yu Gothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka,-apple-system,BlinkMacSystemFont,"Helvetica Neue",sans-serif;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 599px) {
  body {
    font-weight: normal;
  }
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

/*--------------------------------------------------------

	box-sizing
	
----------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*--------------------------------------------------------

	clearfix
	
----------------------------------------------------------*/
/* For modern browsers */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* For IE 6/7 only */
.clearfix {
  *zoom: 1;
}

/*--------------------------------------------------------

	禁則処理の追加
	
----------------------------------------------------------*/
p,
li,
dt,
dd,
th,
td,
pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-strict;
  word-break: break-strict;
}

/*--------------------------------------------------------

    SPの分まで設定する場合　※数値は変更OK

----------------------------------------------------------*/
.ml-02 {
  margin-left: -0.2em;
}

.mlr-02 {
  margin-left: -0.2em;
  margin-right: -0.2em;
}

.mlr-03 {
  margin-left: -0.3em;
  margin-right: -0.3em;
}

.mlr-05 {
  margin-left: -0.5em;
  margin-right: -0.5em;
}

.ml-05 {
  margin-left: -0.5em;
}

.mr-05 {
  margin-right: -0.5em;
}

.mb00 {
  margin-bottom: 0px !important;
}

.mb05 {
  margin-bottom: 5px !important;
}

.mb08 {
  margin-bottom: 8px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

@media screen and (max-width: 1024px) {
  .mb10 {
    margin-bottom: 10px !important;
  }
}

.mb12 {
  margin-bottom: 12px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

@media screen and (max-width: 1024px) {
  .mb15 {
    margin-bottom: 15px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb15 {
    margin-bottom: 10px !important;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}

@media screen and (max-width: 1024px) {
  .mb20 {
    margin-bottom: 20px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb20 {
    margin-bottom: 15px !important;
  }
}

.mb25 {
  margin-bottom: 25px !important;
}

@media screen and (max-width: 1024px) {
  .mb25 {
    margin-bottom: 25px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb25 {
    margin-bottom: 20px !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}

@media screen and (max-width: 1024px) {
  .mb30 {
    margin-bottom: 30px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb30 {
    margin-bottom: 25px !important;
  }
}

.mb35 {
  margin-bottom: 35px !important;
}

@media screen and (max-width: 1024px) {
  .mb35 {
    margin-bottom: 35px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb35 {
    margin-bottom: 25px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}

@media screen and (max-width: 1024px) {
  .mb40 {
    margin-bottom: 40px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb40 {
    margin-bottom: 30px !important;
  }
}

.mb45 {
  margin-bottom: 45px !important;
}

@media screen and (max-width: 1024px) {
  .mb45 {
    margin-bottom: 40px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb45 {
    margin-bottom: 30px !important;
  }
}

.mb50 {
  margin-bottom: 50px !important;
}

@media screen and (max-width: 1024px) {
  .mb50 {
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb50 {
    margin-bottom: 40px !important;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}

@media screen and (max-width: 1024px) {
  .mb60 {
    margin-bottom: 60px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb60 {
    margin-bottom: 50px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}

@media screen and (max-width: 1024px) {
  .mb70 {
    margin-bottom: 70px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb70 {
    margin-bottom: 60px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}

@media screen and (max-width: 1024px) {
  .mb80 {
    margin-bottom: 80px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb80 {
    margin-bottom: 70px !important;
  }
}

.mb90 {
  margin-bottom: 90px !important;
}

@media screen and (max-width: 1024px) {
  .mb90 {
    margin-bottom: 90px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb90 {
    margin-bottom: 80px !important;
  }
}

.mb100 {
  margin-bottom: 100px !important;
}

@media screen and (max-width: 1024px) {
  .mb100 {
    margin-bottom: 100px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb100 {
    margin-bottom: 90px !important;
  }
}

.ml00 {
  margin-left: 0px !important;
}

.ml05 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.mr00 {
  margin-right: 0px !important;
}

.mr05 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.mt00 {
  margin-top: 0px !important;
}

.mt05 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.pt00 {
  padding-top: 0px !important;
}

.pt05 {
  padding-top: 5px !important;
}

.pt06 {
  padding-top: 6px !important;
}

.pt07 {
  padding-top: 7px !important;
}

.pt08 {
  padding-top: 8px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb00 {
  padding-bottom: 0px !important;
}

.pb05 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pl00 {
  padding-left: 0px !important;
}

.pl05 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

@media print {
  .sp {
    display: none !important;
  }
  body {
    width: 1140px;
    -webkit-print-color-adjust: exact;
  }
  .header {
    position: relative !important;
  }
  .header .gnav {
    display: none;
  }
  .header .header-tel,
  .header .header-utility,
  .header .header-reserve {
    display: none;
  }
  .pagetitle-wrapper {
    margin-top: 0px !important;
  }
  /*　------- ↓その他参考例　---------
    .header {
        position: relative !important; //ヘッダー固定fixedを解除
    }
    .header .header-inner {
        width: 100% !important; //サイト幅を解除
    }
    .page-title {
        margin-top: 0px !important; //固定ヘッダー時のマージンTOP分を解除
        width: 100% !important; //サイト幅を解除
    }
    .breadcrumbs-list {
        width: 100% !important; //サイト幅を解除
    }
    .global-nav {
        width: 100%; //サイト幅を解除
    }
    ------- ↑その他参考　---------*/
}

@page {
  size: A4;
  margin: 12.7mm 9.7mm;
}

body {
  font-size: 1.6rem;
  font-size: 16px;
  line-height: 1.7;
  color: #010101;
  font-weight: 500;
  background: #fff;
}

@media screen and (max-width: 599px) {
  body {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.contents {
  max-width: 1120px;
  width: calc( 100% - ( 30px * 2 ));
  margin: 0 auto;
  padding-bottom: 80px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .contents {
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 599px) {
  .contents {
    width: 100%;
    margin: 30px auto 0;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 45px;
  }
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

input:placeholder-shown {
  color: #aaa;
}

input:input-placeholder {
  color: #aaa;
}

/* IE */
input:-ms-input-placeholder {
  color: #aaa !important;
}

/* Chrome */
input::-webkit-input-placeholder {
  color: #aaa;
}

/* Firefox */
input::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}

.fade {
  opacity: 1;
  transition: 0.5s;
}

.fade:hover {
  opacity: 0.8;
}

input[type="button"] {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  cursor: pointer;
  transition: 0.5s;
}

input[type="reset"] {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: 0.5s;
}

button {
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: 0.5s;
}

.anchor {
  margin-top: -145px;
  padding-top: 145px;
  display: block;
}

@media screen and (max-width: 1024px) {
  .anchor {
    margin-top: -70px;
    padding-top: 70px;
  }
}

@media screen and (max-width: 599px) {
  .anchor {
    margin-top: -60px;
    padding-top: 60px;
  }
}

@media screen and (min-width: 1025px) {
  .br-pcsp {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .br-pcsp {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .br-pcsp {
    display: block;
  }
}

@media screen and (min-width: 1025px) {
  .br-tb {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .br-tb {
    display: block;
  }
}

@media screen and (max-width: 599px) {
  .br-tb {
    display: none;
  }
}

.br-sp {
  display: none;
}

@media screen and (max-width: 599px) {
  .br-sp {
    display: block;
  }
}

.br-sp5 {
  display: none;
}

@media screen and (max-width: 320px) {
  .br-sp5 {
    display: block;
  }
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 145px;
  background-color: #fff;
}

@media screen and (max-width: 1024px) {
  .header {
    height: 70px;
    box-shadow: 0 0 2px 1px rgba(70, 70, 70, 0.15);
  }
}

@media screen and (max-width: 599px) {
  .header {
    height: 60px;
  }
}

.header__top {
  height: 85px;
}

@media screen and (max-width: 1024px) {
  .header__top {
    height: 70px;
  }
}

@media screen and (max-width: 599px) {
  .header__top {
    height: auto;
  }
}

.header__logo {
  padding: 18px 0 0 18px;
  width: 660px;
  box-sizing: border-box;
  display: inline-block;
}

@media screen and (max-width: 1024px) {
  .header__logo {
    padding: 10px 0 0 12px;
    width: auto;
  }
}

@media screen and (max-width: 599px) {
  .header__logo {
    width: auto;
    padding: 12px 0 0 5px;
  }
}

.header__logo__link:hover .header__logo__mark,
.header__logo__link:hover .header__logo__text {
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  .header__logo__link:hover .header__logo__mark,
  .header__logo__link:hover .header__logo__text {
    opacity: 1.0;
  }
}

.header__logo__link__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.header__logo__mark {
  width: 229px;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (max-width: 1024px) {
  .header__logo__mark {
    width: 217px;
    display: inline-block;
  }
}

@media screen and (max-width: 599px) {
  .header__logo__mark {
    width: 153px;
  }
}

.header__logo__text {
  margin: 22px 0 0 24px;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #656363;
  font-family: "Yu Gothic UI","游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: 400;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (max-width: 1199px) {
  .header__logo__text {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .header__logo__text {
    margin: 4px 0 0 6px;
    padding-top: 1px;
    font-size: 1rem;
    letter-spacing: -0.02em;
  }
}

@media screen and (max-width: 320px) {
  .header__logo__text {
    margin: 6px 0 0 4px;
    padding-top: 1px;
    font-size: 1rem;
    letter-spacing: -0.04em;
  }
}

.header-tel {
  position: absolute;
  top: 0;
  right: calc( 176px + 151px);
  margin: 20px 20px 0 0;
}

@media screen and (max-width: 1024px) {
  .header-tel {
    display: none;
  }
}

.header-tel__link {
  display: block;
  padding: 5px 0 5px 34px;
  font-size: 3.0rem;
  line-height: 1.0;
  color: #000;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  background-image: url(../common/icon_tel.svg);
  background-repeat: no-repeat;
  background-size: 32px auto;
  background-position: left 2px;
}

.header-tel__link:hover {
  color: #01aec7;
}

@media screen and (max-width: 1024px) {
  .header-tel__link:hover {
    color: #000;
  }
}

.header-tel__time {
  display: block;
  margin: -8px 0 0 38px;
  font-size: 1.3rem;
  color: #464646;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.header-utility {
  position: absolute;
  top: 0;
  right: 151px;
}

@media screen and (max-width: 1024px) {
  .header-utility {
    right: 70px;
  }
}

@media screen and (max-width: 599px) {
  .header-utility {
    right: 54px;
  }
}

.header-utility li {
  float: right;
}

.header-utility a {
  display: block;
  padding-top: 55px;
  width: 88px;
  height: 85px;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 600;
  color: #464646;
  text-align: center;
  border-left: 1px solid #c9c9c9;
  background-color: #fff;
  background-position: center 17px;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .header-utility a {
    padding-top: 45px;
    width: 68px;
    height: 70px;
    background-position: center 12px;
  }
}

@media screen and (max-width: 599px) {
  .header-utility a {
    padding-top: 41px;
    width: 50px;
    height: 60px;
    font-size: 1.0rem;
  }
}

.header-utility a:hover {
  background-color: #e8f5f7;
}

@media screen and (max-width: 1024px) {
  .header-utility a:hover {
    background-color: #fff;
  }
}

@media screen and (max-width: 1024px) {
  .header-utility__english {
    display: none;
  }
}

.header-utility__english a {
  background-image: url(../common/icon_global.svg);
  background-size: 31px auto;
}

.header-utility__access a {
  background-image: url(../common/icon_pin.svg);
  background-size: 24px auto;
}

@media screen and (max-width: 1024px) {
  .header-utility__access a {
    background-image: url(../common/icon_pin_sp.svg);
    background-size: 22px auto;
  }
}

@media screen and (max-width: 599px) {
  .header-utility__access a {
    background-position: center 11px;
    background-size: 19px auto;
  }
}

@media screen and (min-width: 1025px) {
  .header-utility__tel {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .header-utility__tel a {
    background-image: url(../common/icon_tel_sp.svg);
    background-size: 27px auto;
    background-position: center 13px;
  }
}

@media screen and (max-width: 599px) {
  .header-utility__tel a {
    background-position: center 11px;
    background-size: 25px auto;
  }
}

.header-reserve {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
}

@media screen and (max-width: 1024px) {
  .header-reserve {
    display: none;
  }
}

.header-reserve a {
  display: block;
  padding-top: 48px;
  width: 151px;
  height: 145px;
  font-size: 1.8rem;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
  background-color: #ff925c;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.header-reserve a:hover {
  background-color: #ff8142;
}

@media screen and (max-width: 1024px) {
  .header-reserve a:hover {
    background-color: #ff925c;
  }
}

.header-reserve a span {
  margin-top: 3px;
  display: block;
  font-size: 1.3rem;
  line-height: 1.3;
  font-family: "游ゴシック", Yu Gothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka,-apple-system,BlinkMacSystemFont,"Helvetica Neue",sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.header .gnav {
  background-color: #01aec7;
}

@media screen and (max-width: 1024px) {
  .header .gnav {
    display: none;
  }
}

.header .gnav-list {
  max-width: 1120px;
  width: 100%;
  height: 60px;
  margin: auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1499px) {
  .header .gnav-list {
    max-width: 1050px;
    margin-right: 200px;
  }
}

@media screen and (max-width: 1299px) {
  .header .gnav-list {
    max-width: 950px;
  }
}

@media screen and (max-width: 1199px) {
  .header .gnav-list {
    max-width: 850px;
  }
}

@media screen and (max-width: 1099px) {
  .header .gnav-list {
    max-width: 800px;
    margin-right: 185px;
  }
}

.header .gnav-list__item {
  position: relative;
  width: calc( 99.9% / 5);
}

.header .gnav-list__item::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1px;
  height: 37px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.header .gnav-list__item:last-child::after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 37px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.header .gnav-list__item__link {
  position: relative;
  display: block;
  padding: 21px 10px 22px;
  font-size: 1.7rem;
  line-height: 1.0;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: center;
  box-sizing: border-box;
  background-color: #01aec7;
}

@media screen and (max-width: 1279px) {
  .header .gnav-list__item__link {
    font-size: 1.6rem;
  }
}

.header .gnav-list__item__link:hover {
  background-color: #01a0b7;
}

@media screen and (max-width: 1024px) {
  .header .gnav-list__item__link:hover {
    background-color: #01aec7;
  }
}

.header .gnav-list__item__link--now {
  color: #fff;
  background-color: #01a0b7;
}

/*
.gnav-sp__btn
------------------------------------------------*/
.gnav-sp__btn {
  display: block;
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #01aec7;
}

@media screen and (max-width: 599px) {
  .gnav-sp__btn {
    width: 54px;
    height: 60px;
  }
}

.gnav-sp__btn span {
  position: absolute;
  display: inline-block;
  -moz-transition: 0.4s;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  transition: 0.4s;
  left: 0;
  right: 0;
  width: 28px;
  height: 3px;
  background-color: #fff;
  margin: auto;
  z-index: 101;
}

@media screen and (max-width: 599px) {
  .gnav-sp__btn span {
    width: 25px;
  }
}

.gnav-sp__btn span:nth-of-type(1) {
  top: 24px;
}

@media screen and (max-width: 599px) {
  .gnav-sp__btn span:nth-of-type(1) {
    top: 20px;
  }
}

.gnav-sp__btn span:nth-of-type(2) {
  top: 34px;
}

@media screen and (max-width: 599px) {
  .gnav-sp__btn span:nth-of-type(2) {
    top: 28px;
  }
}

.gnav-sp__btn span:nth-of-type(3) {
  bottom: 23px;
}

@media screen and (max-width: 599px) {
  .gnav-sp__btn span:nth-of-type(3) {
    bottom: 21px;
  }
}

.gnav-sp__btn.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}

@media screen and (max-width: 599px) {
  .gnav-sp__btn.active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
  }
}

.gnav-sp__btn.active span:nth-of-type(2) {
  opacity: 0;
}

.gnav-sp__btn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

@media screen and (max-width: 599px) {
  .gnav-sp__btn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
  }
}

@media screen and (min-width: 1025px) {
  .gnav-sp__btn {
    display: none;
  }
}

.gnav-sp {
  display: none;
  height: calc(100vh - 70px);
  overflow: scroll;
  width: 100%;
  box-sizing: border-box;
  margin: 0px 0px 10px 0px;
  padding: 2px 0px 50px 0px;
  position: fixed;
  top: 70px;
  background: #01aec7;
  z-index: 9999;
}

@media screen and (max-width: 599px) {
  .gnav-sp {
    height: calc(100vh - 60px);
    top: 60px;
  }
}

.gnav-sp__list__item {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.gnav-sp__list__item a {
  position: relative;
  display: block;
  width: 100%;
  padding: 18px 15px;
  font-size: 1.5rem;
  color: #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 599px) {
  .gnav-sp__list__item a {
    font-size: 1.4rem;
  }
}

.gnav-sp__list__item a::before {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(255, 255, 255, 0.8);
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.gnav-sp__focus-menu {
  padding: 18px 18px 18px 18px;
}

.gnav-sp__focus-menu__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.gnav-sp__focus-menu__item {
  width: calc( ( 99.9% - 15px ) / 2);
}

@media screen and (max-width: 599px) {
  .gnav-sp__focus-menu__item {
    width: calc( ( 99.9% - 12px ) / 2);
  }
}

.gnav-sp__focus-menu__item a {
  position: relative;
  display: block;
  padding: 20px 20px 19px;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #01aec7;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
  background-color: #fff;
}

@media screen and (max-width: 599px) {
  .gnav-sp__focus-menu__item a {
    padding: 15px 6px 13px 5px;
    font-size: 1.5rem;
  }
}

.gnav-sp__focus-menu__item a.link-reserve::before {
  display: inline-block;
  content: '';
  margin-right: 6px;
  width: 23px;
  height: 26px;
  background-image: url(../common/icon_calendar.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

@media screen and (max-width: 599px) {
  .gnav-sp__focus-menu__item a.link-english {
    padding-right: 8px;
  }
}

.gnav-sp__focus-menu__item a.link-english::before {
  display: inline-block;
  content: '';
  margin-right: 7px;
  width: 23px;
  height: 26px;
  background-image: url(../common/icon_global_sp.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.text-base {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 500;
  text-align: justify;
  text-justify: inter-ideograph;
  /*IE用*/
}

@media screen and (max-width: 599px) {
  .text-base {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

@media screen and (max-width: 599px) {
  .text-base--privacy.mb30 {
    margin-bottom: 20px !important;
  }
}

@media screen and (max-width: 599px) {
  .text-base--rental.mb30 {
    margin-bottom: 15px !important;
  }
}

.text-bold {
  font-weight: 600;
}

@media screen and (max-width: 599px) {
  .text-bold {
    font-weight: 500;
  }
}

.text-strong {
  font-weight: 600;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.text-red {
  color: #ff0000;
}

.text-link {
  color: #01aec7;
}

.text-link:hover {
  color: #01a0b7;
  text-decoration: none !important;
}

.text-link.has-underline {
  text-decoration: underline;
}

.text-link.has-underline:hover {
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  .text-link {
    color: #01aec7;
  }
  .text-link:hover {
    color: #01aec7;
  }
}

a.text-link--arrow {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  color: #01aec7;
  text-decoration: underline;
}

a.text-link--arrow:hover {
  text-decoration: none;
}

a.text-link--arrow::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
  background: url(../common/arrow_square.png) top no-repeat;
  background-size: 100%;
}

a.url-link {
  color: #5653DD;
  text-decoration: underline;
}

a.url-link:hover {
  text-decoration: none;
}

a.url-link:active {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  a.url-link:hover {
    text-decoration: underline;
  }
}

a.tel-link {
  color: #010101;
}

a.tel-link:hover {
  color: #01aec7;
}

@media screen and (max-width: 1024px) {
  a.tel-link {
    color: #01aec7;
  }
  a.tel-link:hover {
    color: #01aec7;
  }
}

.pagetitle-wrapper {
  position: relative;
  z-index: 0;
  margin-top: 145px;
  margin-bottom: 10px;
  padding-top: 48px;
  width: 100%;
  height: 220px;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top right;
  box-sizing: border-box;
  background-color: #a6d4f9;
  background-image: url(../common/pagetitle_bg.jpg);
}

@media screen and (max-width: 1024px) {
  .pagetitle-wrapper {
    margin-top: 70px;
    padding-top: 42px;
    height: 200px;
    background-size: cover;
    background-position: 45% bottom;
  }
}

@media screen and (max-width: 599px) {
  .pagetitle-wrapper {
    margin-top: 60px;
    padding-top: 31px;
    height: 144px;
    background-position: 59% bottom;
  }
}

.pagetitle-wrapper__inner {
  position: relative;
  max-width: 1120px;
  width: calc( 100% - ( 30px * 2 ));
  margin: auto;
}

@media screen and (max-width: 599px) {
  .pagetitle-wrapper__inner {
    width: calc( 100% - ( 15px * 2 ));
  }
}

.pagetitle-wrapper__textbox {
  position: relative;
  width: 300px;
  height: 214px;
  background-color: #01b8d2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .pagetitle-wrapper__textbox {
    width: 280px;
    height: 180px;
  }
}

@media screen and (max-width: 599px) {
  .pagetitle-wrapper__textbox {
    padding: 10px 10px 15px 10px;
    width: 230px;
    height: 80px;
    margin: auto;
  }
}

.pagetitle-wrapper__textbox::before {
  position: absolute;
  content: '';
  display: block;
  z-index: -2;
  left: 13px;
  top: 13px;
  width: 300px;
  height: 214px;
  background-color: rgba(232, 245, 247, 0.6);
}

@media screen and (max-width: 1024px) {
  .pagetitle-wrapper__textbox::before {
    width: 280px;
    height: 180px;
  }
}

@media screen and (max-width: 599px) {
  .pagetitle-wrapper__textbox::before {
    left: 7px;
    top: 7px;
    width: 230px;
    height: 80px;
  }
}

.pagetitle-wrapper__textbox__main {
  padding-top: 10px;
  display: block;
  font-size: 3.2rem;
  line-height: 1.2;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.03em;
}

.pagetitle-wrapper__textbox__main--english {
  padding-top: 5px;
  line-height: 1.3;
  letter-spacing: 0;
}

@media screen and (max-width: 1024px) {
  .pagetitle-wrapper__textbox__main {
    padding-top: 4px;
    font-size: 2.9rem;
  }
}

@media screen and (max-width: 599px) {
  .pagetitle-wrapper__textbox__main {
    padding-top: 8px;
    font-size: 2.0rem;
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .pagetitle-wrapper__textbox__main--english {
    padding-top: 4px;
    letter-spacing: 0;
  }
}

.pagetitle-wrapper__textbox__sub {
  display: block;
  margin-top: 18px;
  font-size: 1.5rem;
  line-height: 1.1;
  color: #9eeee0;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.pagetitle-wrapper__textbox__sub.news {
  padding-right: 2px;
}

@media screen and (max-width: 1024px) {
  .pagetitle-wrapper__textbox__sub {
    margin-top: 14px;
  }
}

@media screen and (max-width: 599px) {
  .pagetitle-wrapper__textbox__sub {
    margin-top: 5px;
    font-size: 1.2rem;
  }
}

.topicpass {
  position: relative;
  z-index: 80;
  max-width: 1120px;
  width: calc( 100% - 60px);
  margin: 0 auto 60px;
  text-align: right;
}

@media screen and (max-width: 1279px) {
  .topicpass {
    margin-bottom: 65px;
  }
}

@media screen and (max-width: 1024px) {
  .topicpass {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 599px) {
  .topicpass {
    margin-bottom: 20px;
  }
}

.topicpass__item {
  display: inline-block;
  font-size: 1.4rem;
  color: #727f81;
  font-weight: 400;
}

@media screen and (max-width: 599px) {
  .topicpass__item {
    font-size: 1.1rem;
  }
}

.topicpass__item::before {
  content: '＞';
  margin: 0 3px;
  color: #bfbfbf;
}

.topicpass__item:first-child::before {
  display: none;
}

.topicpass__item a {
  color: #0096ac;
  text-decoration: underline;
}

.topicpass__item a:hover {
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  .topicpass__item a:hover {
    text-decoration: underline;
  }
}

/*---------------------------------------

pager ページャー

----------------------------------------*/
.pager {
  width: 100%;
  text-align: center;
}

.pager__list {
  display: inline-block;
}

.pager__list__item {
  margin-left: 6px;
  display: inline-block;
}

@media screen and (max-width: 599px) {
  .pager__list__item {
    margin-left: 4px;
  }
}

.pager__list__item:first-child {
  margin-left: 0;
}

.pager__list__item__link {
  display: block;
  width: 50px;
  height: 50px;
  font-size: 1.8rem;
  line-height: 50px;
  color: #0aafc2;
  font-weight: 600;
  text-align: center;
  background-color: #e8f5f7;
  box-sizing: border-box;
}

@media screen and (max-width: 599px) {
  .pager__list__item__link {
    width: 44px;
    height: 48px;
  }
}

@media screen and (max-width: 320px) {
  .pager__list__item__link {
    width: 42px;
    height: 46px;
    line-height: 46px;
  }
}

.pager__list__item__link--now {
  color: #fff;
  background-color: #0aafc2;
}

.pager__list__item__link:hover {
  color: #fff;
  background-color: #0aafc2;
}

@media screen and (max-width: 1024px) {
  .pager__list__item__link:hover {
    color: #0aafc2;
    background-color: #e8f5f7;
  }
}

.pager .arrow {
  position: relative;
  display: inline-block;
  padding: 12px 0 10px 0;
  font-size: 1.6rem;
  color: #0aafc2;
  font-weight: 600;
}

@media screen and (max-width: 599px) {
  .pager .arrow {
    text-indent: -9999px;
    padding: 8px 0 6px 0;
    font-size: 1.8rem;
    border: 1px solid rgba(10, 175, 194, 0.7);
    background-color: #fff;
  }
}

@media screen and (max-width: 320px) {
  .pager .arrow {
    padding: 7px 0 5px 0;
  }
}

.pager .arrow:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .pager .arrow:hover {
    text-decoration: none;
  }
}

.pager .arrow--prev {
  margin-right: 20px;
  padding-left: 15px;
  padding-right: 5px;
}

@media screen and (max-width: 599px) {
  .pager .arrow--prev {
    margin-right: 10px;
    padding-left: 20px;
  }
}

@media screen and (max-width: 320px) {
  .pager .arrow--prev {
    margin-right: 5px;
    padding-left: 17px;
    padding-right: 5px;
  }
}

.pager .arrow--prev::before {
  content: '';
  display: block;
  position: absolute;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0aafc2;
  border-right: 2px solid #0aafc2;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

@media screen and (max-width: 599px) {
  .pager .arrow--prev::before {
    left: 5px;
    right: 0;
    width: 12px;
    height: 12px;
  }
}

.pager .arrow--next {
  margin-left: 20px;
  padding-right: 15px;
  padding-left: 5px;
}

@media screen and (max-width: 599px) {
  .pager .arrow--next {
    margin-left: 10px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 320px) {
  .pager .arrow--next {
    margin-left: 5px;
    padding-right: 17px;
    padding-left: 5px;
  }
}

.pager .arrow--next::before {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0aafc2;
  border-right: 2px solid #0aafc2;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 599px) {
  .pager .arrow--next::before {
    left: 0;
    right: 5px;
    width: 12px;
    height: 12px;
  }
}

.footer-wrapper {
  position: relative;
  padding: 52px 0 40px;
  background-color: #f0efe8;
}

@media screen and (max-width: 1279px) {
  .footer-wrapper {
    padding: 44px 0 38px;
  }
}

@media screen and (max-width: 599px) {
  .footer-wrapper {
    padding: 30px 0 32px;
  }
}

.footer-wrapper__inner {
  max-width: 1120px;
  width: calc( 100% - 60px);
  margin: auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .footer-wrapper__inner {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 599px) {
  .footer-wrapper__inner {
    width: 100%;
  }
}

.footer-wrapper__logo {
  width: 197px;
  margin-right: 22px;
}

@media screen and (max-width: 599px) {
  .footer-wrapper__logo {
    width: 160px;
    margin: 0 auto 12px;
  }
}

.footer-wrapper__content {
  width: 230px;
  margin-right: 20px;
}

@media screen and (max-width: 599px) {
  .footer-wrapper__content {
    width: 100%;
    margin-right: 0;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
}

.footer-wrapper__content__add {
  font-size: 1.5rem;
  line-height: 1.45;
  color: #595959;
}

@media screen and (max-width: 1099px) {
  .footer-wrapper__content__add {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 599px) {
  .footer-wrapper__content__add {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer-wrapper__content__add span {
  display: block;
}

.footer-wrapper__content__tel {
  font-size: 1.5rem;
  line-height: 1.45;
}

@media screen and (max-width: 1099px) {
  .footer-wrapper__content__tel {
    font-size: 1.4rem;
  }
}

.footer-wrapper__content__tel a {
  color: #595959;
}

@media screen and (max-width: 599px) {
  .footer-wrapper__content__tel a {
    display: block;
    width: 82%;
    margin: auto;
    padding: 15px 10px 12px 20px;
    text-align: center;
    border-radius: 30px;
    background-color: #fff;
  }
}

@media screen and (max-width: 320px) {
  .footer-wrapper__content__tel a {
    width: 90%;
  }
}

@media screen and (max-width: 599px) {
  .footer-wrapper__content__tel a .tel-number {
    position: relative;
    display: inline-block;
    padding: 1px 0 0 12px;
    font-size: 2.1rem;
    line-height: 1.0;
    color: #01aec7;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
  }
  .footer-wrapper__content__tel a .tel-number::before {
    position: absolute;
    content: '';
    display: block;
    top: 2px;
    left: -15px;
    margin: auto;
    width: 20px;
    height: 20px;
    background-image: url(../common/icon_tel_sp.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% auto;
  }
}

.footer-wrapper__nav {
  width: calc( 100% - 197px - 22px - 230px - 20px);
}

@media screen and (max-width: 1024px) {
  .footer-wrapper__nav {
    display: none;
  }
}

.footer-wrapper__nav__item {
  font-size: 1.6rem;
  line-height: 1.1;
  color: #414141;
  display: inline;
}

@media screen and (max-width: 1279px) {
  .footer-wrapper__nav__item {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 1099px) {
  .footer-wrapper__nav__item {
    font-size: 1.3rem;
  }
}

.footer-wrapper__nav__item::before {
  content: '|';
  margin: 0 5px;
  color: #bbbaba;
}

@media screen and (max-width: 1099px) {
  .footer-wrapper__nav__item::before {
    margin: 0 4px;
  }
}

.footer-wrapper__nav__item:first-child::before {
  content: '|';
  margin: 0 5px 0 0;
  color: #bbbaba;
}

@media screen and (max-width: 1099px) {
  .footer-wrapper__nav__item:first-child::before {
    margin: 0 4px 0 0;
  }
}

.footer-wrapper__nav__item:last-child::after {
  content: '|';
  color: #bbbaba;
  margin: 0 0 0 5px;
}

@media screen and (max-width: 1099px) {
  .footer-wrapper__nav__item:last-child::after {
    margin: 0 0 0 4px;
  }
}

.footer-wrapper__nav__item__link {
  display: inline-block;
  color: #414141;
}

.footer-wrapper__nav__item__link:hover {
  color: #01aec7;
}

.copyright {
  padding: 13px 0;
  font-size: 1.4rem;
  line-height: 1.1;
  color: #fff;
  font-family: "Overpass", sans-serif;
  font-weight: 400;
  text-align: center;
  background-color: #0aafc2;
}

@media screen and (max-width: 599px) {
  .copyright {
    font-size: 1.1rem;
    line-height: 1.2;
  }
}

.pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: block;
  width: 68px;
  height: 68px;
  background-color: #01a0b7;
  z-index: 25;
}

@media screen and (max-width: 1024px) {
  .pagetop {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 599px) {
  .pagetop {
    bottom: 10px;
    right: 10px;
    width: 48px;
    height: 48px;
  }
}

.pagetop::before {
  position: absolute;
  content: '';
  top: 30px;
  left: 0;
  right: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}

@media screen and (max-width: 1024px) {
  .pagetop::before {
    top: 27px;
    width: 15px;
    height: 15px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

@media screen and (max-width: 599px) {
  .pagetop::before {
    top: 20px;
    width: 13px;
    height: 13px;
  }
}

.pagetop:hover {
  background-color: #01aec7;
}

.pagetop:hover::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

@media screen and (max-width: 1024px) {
  .pagetop:hover {
    background-color: #01a0b7;
  }
  .pagetop:hover::before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

#wysiwyg {
  /*デフォルトの処理*/
  font-size: 16px;
  line-height: 2.0;
  text-align: justify;
  /*各テンプレートを囲むbox【必須】*/
  /*タイトル処理*/
  /*キャッチコピーの処理*/
  /*本文テキスト・写真回り込み処理*/
  /*ボタン*/
  /*写真の処理*/
  /*リスト*/
  /*テーブル*/
  /*youtube*/
  /*以下テンプレート外*/
}

@media screen and (max-width: 599px) {
  #wysiwyg {
    font-size: 14px;
    line-height: 1.8;
  }
}

#wysiwyg a {
  color: #01aec7;
  text-decoration: underline;
}

#wysiwyg a:hover {
  color: #01aec7;
  text-decoration: none;
}

#wysiwyg img {
  width: auto;
  max-width: 100%;
  height: auto;
}

#wysiwyg .box {
  margin-bottom: 30px;
}

#wysiwyg .box:before, #wysiwyg .box:after {
  content: "";
  display: table;
}

#wysiwyg .box:after {
  clear: both;
}

@media screen and (max-width: 599px) {
  #wysiwyg .box {
    margin-bottom: 15px;
  }
}

#wysiwyg .title-line {
  margin-bottom: -15px;
  padding: 0 0 15px 15px;
  font-size: 20px;
  line-height: 1.2em;
  color: #010101;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  border-bottom: 1px dotted #bbb;
  position: relative;
}

@media screen and (max-width: 599px) {
  #wysiwyg .title-line {
    margin-bottom: -5px;
    padding: 0 0 10px 15px;
    font-size: 16px;
  }
}

#wysiwyg .title-line::before {
  content: '';
  top: 0;
  left: 0;
  width: 5px;
  height: calc( 100% - 15px);
  background-color: #01aec7;
  position: absolute;
}

@media screen and (max-width: 599px) {
  #wysiwyg .title-line::before {
    height: calc( 100% - 10px);
  }
}

#wysiwyg .title-obi {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 1.2em;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  background-color: #01aec7;
  position: relative;
}

@media screen and (max-width: 599px) {
  #wysiwyg .title-obi {
    padding: 8px 20px;
    font-size: 14px;
  }
}

#wysiwyg .title-obi::before {
  content: '';
  top: calc( 50% - 1px);
  left: 0;
  width: 15px;
  height: 1px;
  background-color: #fff;
  position: absolute;
}

#wysiwyg .title-icon {
  margin-bottom: -15px;
  padding-left: 1.2em;
  font-size: 16px;
  line-height: 1.2em;
  color: #010101;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  position: relative;
}

@media screen and (max-width: 599px) {
  #wysiwyg .title-icon {
    margin-bottom: -5px;
    font-size: 14px;
  }
}

#wysiwyg .title-icon::before {
  content: '';
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 5px solid #01aec7;
  -webkit-border-radius: 3pxpx;
  -moz-border-radius: 3pxpx;
  border-radius: 3pxpx;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
}

@media screen and (max-width: 599px) {
  #wysiwyg .title-icon::before {
    top: 3px;
    left: 0;
    width: 12px;
    height: 12px;
    border: 4px solid #01aec7;
  }
}

#wysiwyg .copy01 {
  margin-bottom: -15px;
  font-size: 20px;
  line-height: 1.7;
  color: #01aec7;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  text-align: justify;
}

@media screen and (max-width: 599px) {
  #wysiwyg .copy01 {
    margin-bottom: -5px;
    font-size: 15px;
  }
}

#wysiwyg .copy02 {
  margin-bottom: -15px;
  font-size: 24px;
  line-height: 1.7;
  color: #01aec7;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 400;
  text-align: justify;
}

@media screen and (max-width: 599px) {
  #wysiwyg .copy02 {
    margin-bottom: -5px;
    font-size: 16px;
  }
}

#wysiwyg .text {
  font-size: 16px;
  line-height: 2.0em;
  text-align: justify;
}

@media screen and (max-width: 599px) {
  #wysiwyg .text {
    font-size: 14px;
    line-height: 1.8em;
  }
}

#wysiwyg .text--mincho {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 300;
}

#wysiwyg .img-right {
  margin: 7px 0 30px 30px;
  width: auto;
  max-width: 33%;
  float: right;
  display: inline-block;
}

@media screen and (max-width: 599px) {
  #wysiwyg .img-right {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
  }
}

#wysiwyg .img-left {
  margin: 7px 30px 30px 0;
  width: auto;
  max-width: 33%;
  float: left;
  display: inline-block;
}

@media screen and (max-width: 599px) {
  #wysiwyg .img-left {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
  }
}

#wysiwyg .btn-wrapper {
  text-align: center;
}

#wysiwyg .btn-wrapper a {
  padding: 20px 40px 20px 25px;
  font-size: 16px;
  line-height: 1.2em;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  background-color: #01aec7;
  position: relative;
  display: inline-block;
}

@media screen and (max-width: 599px) {
  #wysiwyg .btn-wrapper a {
    padding: 15px 30px 15px 20px;
    font-size: 14px;
    text-align: left;
  }
}

#wysiwyg .btn-wrapper a::before {
  content: '';
  top: calc( 50% - 4px);
  right: 15px;
  border-width: 4px 0 4px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  position: absolute;
}

#wysiwyg .btn-wrapper a:hover {
  color: #fff;
  background-color: #01a0b7;
}

@media screen and (max-width: 1024px) {
  #wysiwyg .btn-wrapper a:hover {
    background-color: #01aec7;
  }
}

#wysiwyg .photo-3 {
  padding: 0;
  list-style: none;
}

#wysiwyg .photo-3 li {
  margin-left: 10px;
  width: calc( ( 99.9% - 20px ) / 3);
  float: left;
}

#wysiwyg .photo-3 li:first-child {
  margin-left: 0;
}

@media screen and (max-width: 599px) {
  #wysiwyg .photo-3 li {
    margin-top: 10px;
    margin-left: 0;
    width: 100%;
    float: none;
  }
  #wysiwyg .photo-3 li:first-child {
    margin-top: 0;
  }
}

#wysiwyg .photo-2 {
  padding: 0;
  list-style: none;
}

#wysiwyg .photo-2 li {
  width: calc( 50% - 5px);
  float: right;
}

#wysiwyg .photo-2 li:first-child {
  float: left;
}

@media screen and (max-width: 599px) {
  #wysiwyg .photo-2 li {
    width: calc( ( 100% - 5px ) / 2);
  }
}

#wysiwyg .photo-1 {
  width: 100%;
  text-align: center;
}

#wysiwyg .caption {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.3em;
  text-align: center;
  display: block;
}

@media screen and (max-width: 599px) {
  #wysiwyg .caption {
    margin-top: 5px;
    font-size: 12px;
  }
}

#wysiwyg .list-wrapper {
  padding: 30px;
  background-color: #f7f7f7;
  list-style: none;
}

@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper {
    padding: 20px;
  }
}

#wysiwyg .list-wrapper li {
  margin-top: 10px;
  padding-left: 1.2em;
  font-size: 16px;
  line-height: 1.5em;
  text-align: justify;
  position: relative;
}

#wysiwyg .list-wrapper li:first-child {
  margin-top: 0;
}

#wysiwyg .list-wrapper li::before {
  content: '';
  top: 6px;
  left: 3px;
  width: 8px;
  height: 8px;
  background-color: #01aec7;
  position: absolute;
}

@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper li {
    margin-top: 7px;
    font-size: 13px;
  }
  #wysiwyg .list-wrapper li::before {
    content: '';
    top: 5px;
    left: 0px;
    width: 6px;
    height: 6px;
  }
}

#wysiwyg .table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
}

#wysiwyg .table thead th {
  padding: 15px 10px;
  font-size: 15px;
  line-height: 1.3em;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background-color: #01aec7;
  border: 1px solid #ddd;
}

@media screen and (max-width: 599px) {
  #wysiwyg .table thead th {
    padding: 7px 5px 5px;
    font-size: 12px;
  }
}

#wysiwyg .table th {
  padding: 15px 10px;
  font-size: 15px;
  line-height: 1.3em;
  color: #010101;
  text-align: center;
  vertical-align: middle;
  background-color: #f7f7f7;
  border: 1px solid #ddd;
}

@media screen and (max-width: 599px) {
  #wysiwyg .table th {
    padding: 7px 5px 5px;
    font-size: 12px;
  }
}

#wysiwyg .table td {
  padding: 15px;
  font-size: 15px;
  line-height: 1.3em;
  color: #010101;
  text-align: justify;
  vertical-align: middle;
  border: 1px solid #ddd;
}

@media screen and (max-width: 599px) {
  #wysiwyg .table td {
    padding: 7px 5px 5px;
    font-size: 12px;
  }
}

#wysiwyg .youtube-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  position: relative;
}

#wysiwyg .youtube-wrapper::before {
  content: '';
  padding-bottom: 56.25%;
  display: block;
}

#wysiwyg .youtube-wrapper iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

#wysiwyg .left {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

#wysiwyg .center {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

#wysiwyg .right {
  width: 100%;
  margin: 0 auto;
  text-align: right;
}

#wysiwyg h1 {
  font-size: 240%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
}

#wysiwyg h2 {
  font-size: 180%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  border-bottom: none;
}

#wysiwyg h3 {
  font-size: 140%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
  color: #010101;
}

#wysiwyg h4 {
  font-size: 120%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  color: #010101;
}

#wysiwyg h5 {
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}

#wysiwyg h6 {
  font-size: 82%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}

#wysiwyg ul {
  padding-left: 40px;
  list-style-type: disc;
}

#wysiwyg ol {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}

#wysiwyg ol li {
  list-style: decimal;
}

#wysiwyg ul li {
  list-style: disc;
}

#wysiwyg blockquote {
  padding-left: 1em;
}

#wysiwyg table {
  font-size: 100%;
  border-collapse: collapse;
}

#wysiwyg hr {
  display: block;
}

#wysiwyg em {
  font-style: italic !important;
}

#wysiwyg strong {
  font-weight: bold !important;
}

#wysiwyg em strong, #wysiwyg strong em {
  font-style: italic !important;
  font-weight: bold !important;
}

/*新着ボタン*/
.back-btn {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 15px 15px 16px 25px;
  max-width: 205px;
  font-size: 17px;
  line-height: 1.3;
  color: #01aec7;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: center;
  border: 1px solid #01aec7;
  box-sizing: border-box;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.back-btn::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 15px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-bottom: 3px solid #01aec7;
  border-left: 3px solid #01aec7;
  transform: rotate(45deg);
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.back-btn:hover {
  color: #FFF;
  background-color: #01aec7;
}

.back-btn:hover::before {
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
}

@media screen and (max-width: 1024px) {
  .back-btn:hover {
    color: #01aec7;
    background-color: #FFF;
  }
  .back-btn:hover::before {
    border-bottom: 3px solid #01aec7;
    border-left: 3px solid #01aec7;
  }
}

@media screen and (max-width: 599px) {
  .back-btn {
    padding: 15px 20px 15px 22px;
    font-size: 1.4rem;
  }
}

.sec-title {
  position: relative;
  margin-bottom: 55px;
  padding: 35px 30px 28px 30px;
  font-size: 2.4rem;
  line-height: 1.3;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  background-color: #e8f5f7;
  text-align: center;
}

.sec-title--pb {
  padding-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .sec-title {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 599px) {
  .sec-title {
    margin-bottom: 35px;
    padding: 20px 18px 20px 18px;
    font-size: 1.8rem;
  }
  .sec-title--pb {
    padding-bottom: 24px;
  }
}

.sec-title::before {
  content: '';
  position: absolute;
  bottom: -21px;
  left: 0;
  right: 0;
  margin: auto;
  width: 2px;
  height: 43px;
  background-color: #01b8d2;
}

@media screen and (max-width: 599px) {
  .sec-title::before {
    bottom: -14px;
    height: 28px;
  }
}

.sec-title__en {
  display: block;
  margin-top: 7px;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #01b8d2;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 599px) {
  .sec-title__en {
    margin-top: 3px;
    font-size: 1.3rem;
  }
}

.title-line {
  position: relative;
  margin-bottom: 22px;
  padding: 2px 0 2px 20px;
  font-size: 2.2rem;
  line-height: 1.3;
  color: #010101;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
}

@media screen and (max-width: 599px) {
  .title-line {
    margin-bottom: 15px;
    padding: 2px 0 2px 13px;
    font-size: 1.8rem;
  }
}

.title-line::before {
  position: absolute;
  content: '';
  display: block;
  top: 2px;
  left: 0;
  width: 6px;
  height: calc( 100% - 2px);
  background-color: #01b8d2;
}

.top-ttl {
  text-align: center;
}

.top-ttl__tit {
  font-size: 3.0rem;
  color: #4a4f50;
  font-weight: 500;
  line-height: 1.4;
}

@media screen and (max-width: 599px) {
  .top-ttl__tit {
    font-size: 2.1rem;
  }
}

.top-ttl__tit span {
  position: relative;
  background: #fff;
  padding: 0px 50px;
}

@media screen and (max-width: 599px) {
  .top-ttl__tit span {
    padding: 0px 35px;
  }
}

.top-ttl__tit span::before, .top-ttl__tit span::after {
  background: #01aec7;
  content: "";
  height: 44px;
  width: 3px;
  position: absolute;
  top: -2px;
  transform: rotate(35deg);
}

@media screen and (max-width: 599px) {
  .top-ttl__tit span::before, .top-ttl__tit span::after {
    top: -10px;
  }
}

.top-ttl__tit span::before {
  left: 15px;
}

.top-ttl__tit span::after {
  right: 15px;
}

.top-ttl__sub {
  font-size: 1.5rem;
  color: #51acb9;
  font-weight: 700;
  font-family: "Overpass", sans-serif;
  letter-spacing: 1px;
}

@media screen and (max-width: 599px) {
  .top-ttl__sub {
    font-size: 1.3rem;
  }
}

.top-ttl__eng {
  font-size: 3.4rem;
  color: #01aec7;
  text-align: center;
  font-family: "Overpass", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
}

@media screen and (max-width: 599px) {
  .top-ttl__eng {
    font-size: 2.6rem;
  }
}

.slash-ttl {
  display: inline-block;
  position: relative;
  margin-bottom: 25px;
  padding: 0 35px;
  color: #ff925c;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (max-width: 1024px) {
  .slash-ttl {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 599px) {
  .slash-ttl {
    margin-bottom: 20px;
    padding: 0 16px;
    font-size: 1.8rem;
  }
}

.slash-ttl::before, .slash-ttl::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  width: 23px;
  height: 35px;
  background: url(../common/dotted_line.png) center no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 599px) {
  .slash-ttl::before, .slash-ttl::after {
    width: 16px;
    height: 28px;
  }
}

.slash-ttl:before {
  left: 0;
}

.slash-ttl::after {
  right: 0;
  transform: rotateY(180deg);
}

@media screen and (max-width: 599px) {
  .slash-ttl__2rows--sp {
    padding: 0 30px;
  }
  .slash-ttl__2rows--sp::before, .slash-ttl__2rows--sp::after {
    position: absolute;
    width: 30px;
    height: 48px;
    background: url(../common/dotted_line_x2.png) center no-repeat;
    background-size: 100%;
  }
}

.list-dot__item {
  position: relative;
  margin-bottom: 5px;
  padding-left: 18px;
}

@media screen and (max-width: 599px) {
  .list-dot__item {
    margin-bottom: 6px;
    padding-left: 15px;
    line-height: 1.5;
  }
}

.list-dot__item::before {
  content: '';
  position: absolute;
  display: inline-block;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #01b8d2;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  margin-right: 8px;
}

@media screen and (max-width: 599px) {
  .list-dot__item::before {
    top: 5px;
    width: 10px;
    height: 10px;
  }
}

.list-dot__item--access {
  margin-bottom: 8px;
  line-height: 1.5;
}

@media screen and (max-width: 599px) {
  .list-dot__item--access {
    margin-bottom: 5px;
  }
}

.list-dot__item--access::before {
  top: 5px;
}

@media screen and (max-width: 599px) {
  .list-dot__item--access::before {
    top: 5px;
    width: 10px;
    height: 10px;
  }
}

.list-dot__item__note {
  font-weight: bold;
}

.list-base__item {
  margin-bottom: 5px;
  line-height: 1.5;
  text-indent: -1em;
  padding-left: 1em;
  text-align: justify;
}

@media screen and (max-width: 1024px) {
  .list-base__item {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 599px) {
  .list-base__item {
    line-height: 1.7;
  }
}

.pagelink-list {
  margin-top: -15px;
  margin-bottom: 40px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 599px) {
  .pagelink-list {
    margin-top: -10px;
    margin-bottom: 25px;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.pagelink-list__item {
  margin-top: 15px;
  position: relative;
  padding: 7px 1.6em 6px 1.5em;
}

@media screen and (max-width: 1024px) {
  .pagelink-list__item {
    padding: 7px 1.45em 6px 1.3em;
  }
}

@media screen and (max-width: 599px) {
  .pagelink-list__item {
    margin-top: 10px;
    padding: 0;
    width: calc( ( 100% - 8px ) / 2);
  }
}

.pagelink-list__item::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 1px;
  height: 35px;
  background-color: #dee5eb;
}

@media screen and (max-width: 599px) {
  .pagelink-list__item::before {
    display: none;
  }
}

.pagelink-list__item:last-child::after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 1px;
  height: 35px;
  background-color: #dee5eb;
}

@media screen and (max-width: 599px) {
  .pagelink-list__item:last-child::after {
    display: none;
  }
}

.pagelink-list__item__link {
  position: relative;
  padding-left: 30px;
  display: block;
  font-size: 1.7rem;
  line-height: 1.3;
  color: #010101;
  font-weight: 600;
}

@media screen and (max-width: 599px) {
  .pagelink-list__item__link {
    display: inline-block;
    padding-left: 25px;
    font-size: 1.6rem;
    text-decoration: underline !important;
  }
}

@media screen and (max-width: 320px) {
  .pagelink-list__item__link {
    font-size: 1.4rem;
  }
}

.pagelink-list__item__link::before {
  content: '';
  position: absolute;
  display: block;
  top: -1px;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #01b8d2;
}

@media screen and (max-width: 599px) {
  .pagelink-list__item__link::before {
    bottom: 0;
    left: 0;
    width: 20px;
    height: 20px;
  }
}

.pagelink-list__item__link::after {
  content: '';
  position: absolute;
  display: block;
  top: 6px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

@media screen and (max-width: 599px) {
  .pagelink-list__item__link::after {
    top: 5px;
    left: 7px;
    width: 7px;
    height: 7px;
  }
}

.pagelink-list__item__link:hover {
  color: #01aec7;
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .pagelink-list__item__link:hover {
    color: #010101;
    text-decoration: none;
  }
}

/*---------------------------------------

top

----------------------------------------*/
.cmn-inner {
  max-width: 1120px;
  width: calc( 100% - ( 30px * 2 ));
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 599px) {
  .cmn-inner {
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* メインイメージ */
.mainimage {
  position: relative;
  width: calc(100% - 20px);
  margin: 165px auto 0px auto;
  height: 535px;
  overflow: hidden;
  z-index: 0;
}

@media screen and (max-width: 1024px) {
  .mainimage {
    width: 100%;
    height: 410px;
    margin: 70px auto 0px auto;
  }
}

@media screen and (max-width: 599px) {
  .mainimage {
    height: 240px;
    margin: 60px auto 0px auto;
  }
}

.mainimage__inner {
  display: flex;
  width: 100%;
  height: 525px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .mainimage__inner {
    height: 410px;
  }
}

@media screen and (max-width: 599px) {
  .mainimage__inner {
    height: 240px;
    display: block;
  }
}

.mainimage__inner__box {
  width: calc(50% - 20px) !important;
  margin: 0px 10px;
}

@media screen and (max-width: 1024px) {
  .mainimage__inner__box {
    width: 50% !important;
    margin: 0px;
  }
}

@media screen and (max-width: 599px) {
  .mainimage__inner__box {
    width: 100% !important;
  }
}

.mainimage li {
  position: relative;
  height: 525px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .mainimage li {
    height: 410px;
  }
}

@media screen and (max-width: 599px) {
  .mainimage li {
    height: 240px;
  }
}

.mainslider li:nth-child(1) {
  background-image: url(../img/mainimage01-1.jpg);
}

.mainslider li:nth-child(2) {
  background-image: url(../img/mainimage02-1.jpg);
}

.mainslider li:nth-child(3) {
  background-image: url(../img/mainimage03-1.jpg);
}

.mainslider li:nth-child(4) {
  background-image: url(../img/mainimage04-1.jpg);
}

.mainslider02 li:nth-child(1) {
  background-image: url(../img/mainimage01-2.jpg);
}

.mainslider02 li:nth-child(2) {
  background-image: url(../img/mainimage02-2.jpg);
}

.mainslider02 li:nth-child(3) {
  background-image: url(../img/mainimage03-2.jpg);
}

.mainslider02 li:nth-child(4) {
  background-image: url(../img/mainimage04-2.jpg);
}

.mainCatchopy {
  position: absolute;
  z-index: 999;
  width: 100%;
  top: 125px;
  text-align: center;
  width: 420px;
  height: 265px;
  background: #fff;
  left: 0;
  right: 0;
  margin: auto;
  padding: 35px 10px 0px 10px;
}

@media screen and (max-width: 1024px) {
  .mainCatchopy {
    width: 330px;
    height: 190px;
    padding: 20px 10px 0px 10px;
  }
}

@media screen and (max-width: 599px) {
  .mainCatchopy {
    width: 188px;
    height: 110px;
    top: 70px;
    background: #fff;
  }
}

.mainCatchopy__eng {
  font-size: 2.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #39af9b;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .mainCatchopy__eng {
    font-size: 2.0rem;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 599px) {
  .mainCatchopy__eng {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
}

.mainCatchopy__eng span {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 1em;
  padding: 0 .5em;
  background-color: #fff;
  text-align: left;
}

.mainCatchopy__eng::before {
  position: absolute;
  top: 50%;
  z-index: 1;
  content: '';
  display: block;
  width: 88%;
  height: 1px;
  background-color: #39af9b;
  left: 0;
  right: 0;
  margin: auto;
}

.mainCatchopy__catch {
  font-size: 3.1rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #364648;
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  .mainCatchopy__catch {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 599px) {
  .mainCatchopy__catch {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

/* PICKUP */
.top-pickup {
  padding: 35px 0 50px 0;
}

@media screen and (max-width: 1024px) {
  .top-pickup {
    padding: 30px 0;
    overflow: hidden;
  }
}

@media screen and (max-width: 599px) {
  .top-pickup {
    padding: 20px 0 35px 0;
  }
}

.top-pickup .top-ttl__eng {
  margin-bottom: 5px;
}

.top-pickup #pickupBanner li {
  display: none;
}

.top-pickup .bx-viewport #pickupBanner li {
  display: block !important;
}

.top-pickup--sp #bx-wrapper {
  overflow: hidden;
}

.top-pickup--sp .bx-viewport {
  overflow: visible !important;
}

.top-pickup--sp .top-pickup__list__item img {
  height: auto !important;
}

/* NEWS */
.top-news {
  background-image: url(../img/news_bg.jpg);
  background-size: cover;
}

.top-news .cmn-inner {
  padding: 70px 0px;
}

@media screen and (max-width: 1024px) {
  .top-news .cmn-inner {
    padding: 50px 0px 30px 0px;
  }
}

@media screen and (max-width: 599px) {
  .top-news .cmn-inner {
    padding: 30px 16px 20px 16px;
  }
}

.top-news__inner {
  background: #fff;
  padding: 36px 0px 36px 10px;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .top-news__inner {
    padding: 0px;
    display: block;
  }
}

.top-news__box {
  width: 27.7%;
  padding: 40px 0px;
  border-right: 1px solid #c9c9c9;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .top-news__box {
    width: 100%;
    border-right: none;
    padding: 18px 0px 8px 0px;
    border-bottom: 1px solid #c9c9c9;
  }
}

@media screen and (max-width: 599px) {
  .top-news__box {
    padding: 15px 0px 5px 0px;
  }
}

.top-news__ttl {
  font-size: 3.2rem;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
  .top-news__ttl {
    margin-bottom: 0;
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 599px) {
  .top-news__ttl {
    font-size: 1.7em;
  }
}

.top-news__btn {
  background-color: #01aec7;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  display: inline-block;
  width: 132px;
  padding: 8px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.top-news__btn--ft {
  display: block;
  width: 200px;
  margin: 20px auto 0px auto;
}

@media screen and (max-width: 599px) {
  .top-news__btn--ft {
    width: 80%;
    position: relative;
    background-image: url(../common/icon_list.svg);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 15px 50%;
  }
  .top-news__btn--ft::after {
    display: block;
    content: '';
    position: absolute;
    vertical-align: middle;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    width: 10px;
    height: 10px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

.top-news .information-wrapper {
  padding-left: 28px;
}

@media screen and (max-width: 1024px) {
  .top-news .information-wrapper {
    padding: 0px;
  }
}

.top-news .information-wrapper .information-list {
  margin-bottom: 0px;
}

.top-news .information-wrapper .information-list li {
  list-style: none;
  border-bottom: none;
}

@media screen and (max-width: 1024px) {
  .top-news .information-wrapper .information-list li {
    border-bottom: 1px solid #e9e9e9;
  }
}

.top-news .information-wrapper .information-list__link {
  padding-top: 9px;
  padding-bottom: 9px;
}

.top-news .information-wrapper .information-list__link--no {
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  .top-news .information-wrapper .information-list__link {
    padding: 14px 20px;
  }
}

@media screen and (max-width: 599px) {
  .top-news .information-wrapper .information-list__link {
    padding: 15px;
  }
}

.top-news .information-wrapper .information-list__item:first-child {
  border-top: none;
}

/* イントロ */
.top-intro {
  padding: 68px 0px;
}

@media screen and (max-width: 599px) {
  .top-intro {
    padding: 40px 0px;
  }
}

.top-intro__catch {
  font-size: 2.8rem;
  color: #3baead;
  font-weight: 500;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: -.5px;
}

@media screen and (max-width: 599px) {
  .top-intro__catch {
    font-size: 1.9rem;
    line-height: 1.4;
  }
}

.top-intro__text {
  text-align: center;
  font-size: 1.7rem;
}

@media screen and (max-width: 599px) {
  .top-intro__text {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

/* シーン */
.top-scene {
  position: relative;
}

.top-scene:after {
  background: #e8f5f7;
  content: "";
  height: 368px;
  width: 100%;
  left: 0;
  position: absolute;
  top: 3px;
  z-index: 0;
}

@media screen and (max-width: 1024px) {
  .top-scene:after {
    height: 560px;
  }
}

@media screen and (max-width: 599px) {
  .top-scene:after {
    height: 100%;
  }
}

.top-scene__inner {
  padding: 50px 0px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 599px) {
  .top-scene__inner {
    padding: 35px 0px 20px 0px;
  }
}

.top-scene__text {
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.8;
}

@media screen and (max-width: 599px) {
  .top-scene__text {
    margin-bottom: 15px;
    line-height: 1.6;
    padding: 0px 15px;
  }
}

.top-scene .top-ttl__eng {
  margin-bottom: 5px;
}

.top-scene__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1430px;
  margin: 0 auto;
}

.top-scene__list li {
  position: relative;
  width: calc(20% - 14px);
  margin: 0 7px;
  height: 270px;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  background-size: 80px auto,100% auto;
  background-repeat: no-repeat,no-repeat;
}

@media screen and (max-width: 1340px) {
  .top-scene__list li {
    height: 252px;
  }
}

@media screen and (max-width: 1024px) {
  .top-scene__list li {
    width: calc(33.3% - 16px);
    margin: 0 8px;
    height: 240px;
  }
}

@media screen and (max-width: 599px) {
  .top-scene__list li {
    width: calc(50% - 10px);
    margin: 0 5px;
    height: 180px;
    background-size: 60px auto,100% auto;
  }
}

@media screen and (max-width: 320px) {
  .top-scene__list li {
    height: 160px;
  }
}

.top-scene__list li.icon01 {
  background-image: url(../img/icon_top01.svg), url(../img/scene_circle.png);
  background-position: 64% 28%,center center;
  background-size: 90px auto,100% auto;
}

@media screen and (max-width: 599px) {
  .top-scene__list li.icon01 {
    background-size: 70px auto,100% auto;
    background-position: 70% 28%,center center;
  }
}

.top-scene__list li.icon02 {
  background-image: url(../img/icon_top02.svg), url(../img/scene_circle.png);
  background-position: 55% 30%,center center;
}

.top-scene__list li.icon03 {
  background-image: url(../img/icon_top03.svg), url(../img/scene_circle.png);
  background-position: center 36%,center center;
}

.top-scene__list li.icon04 {
  background-image: url(../img/icon_top04.svg), url(../img/scene_circle.png);
  background-position: center 32%,center center;
}

.top-scene__list li.icon05 {
  background-image: url(../img/icon_top05.svg), url(../img/scene_circle.png);
  background-position: center 36%,center center;
}

@media screen and (max-width: 599px) {
  .top-scene__list li.icon05 {
    margin-top: -15px;
  }
}

.top-scene__list li p {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 1.9rem;
  font-weight: 600;
  color: #1d9e9d;
  line-height: 1.4;
}

@media screen and (max-width: 1340px) {
  .top-scene__list li p {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 1024px) {
  .top-scene__list li p {
    bottom: 40px;
  }
}

@media screen and (max-width: 599px) {
  .top-scene__list li p {
    font-size: 1.5rem;
    bottom: 30px;
  }
}

@media screen and (max-width: 320px) {
  .top-scene__list li p {
    font-size: 1.3rem;
    bottom: 20px;
  }
}

/* charm */
@media screen and (max-width: 599px) {
  .top-charm {
    padding-top: 50px;
  }
}

.top-charm__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 45px;
  margin-top: 25px;
}

@media screen and (max-width: 599px) {
  .top-charm__list {
    display: block;
    margin-top: 20px;
  }
}

.top-charm__list li {
  width: 25%;
  text-align: center;
  background: #01aec7;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 1024px) {
  .top-charm__list li {
    width: 50%;
  }
}

@media screen and (max-width: 599px) {
  .top-charm__list li {
    width: 100%;
    display: flex;
  }
}

.top-charm__list__link {
  display: inherit;
}

.top-charm__list__link:hover .top-charm__list__box {
  background: #01a0b7;
}

@media screen and (max-width: 1024px) {
  .top-charm__list__link:hover .top-charm__list__box {
    background: #01aec7;
  }
}

.top-charm__list__link:hover .top-charm__list__image img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

@media screen and (max-width: 1024px) {
  .top-charm__list__link:hover .top-charm__list__image img {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

.top-charm__list__box {
  padding: 60px 20px 40px 20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  height: 280px;
}

@media screen and (max-width: 1024px) {
  .top-charm__list__box {
    padding: 40px 20px;
    height: 240px;
  }
}

@media screen and (max-width: 599px) {
  .top-charm__list__box {
    width: 50%;
    height: 150px;
    padding: 25px 14px 20px 14px;
  }
}

@media screen and (max-width: 320px) {
  .top-charm__list__box {
    padding: 25px 8px 20px 8px;
  }
}

.top-charm__list__image {
  height: 280px;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .top-charm__list__image {
    height: 240px;
  }
}

@media screen and (max-width: 599px) {
  .top-charm__list__image {
    width: 50%;
    height: 150px;
  }
}

.top-charm__list__image img {
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (max-width: 1620px) {
  .top-charm__list__image img {
    height: 280px;
    object-fit: cover;
    object-position: 50% 50%;
  }
}

@media screen and (max-width: 1024px) {
  .top-charm__list__image img {
    height: 240px;
  }
}

@media screen and (max-width: 599px) {
  .top-charm__list__image img {
    height: 150px;
  }
}

.top-charm__list__ttl {
  position: relative;
  font-size: 2.6rem;
  color: #fff;
  font-weight: 500;
  padding-bottom: 23px;
  margin-bottom: 28px;
}

@media screen and (max-width: 1024px) {
  .top-charm__list__ttl {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 599px) {
  .top-charm__list__ttl {
    font-size: 1.7rem;
    line-height: 1.4;
    padding-bottom: 10px;
  }
}

.top-charm__list__ttl::before {
  background: #7bf1dc;
  content: "";
  height: 2px;
  width: 70px;
  left: 0;
  position: absolute;
  bottom: 0px;
  right: 0;
  left: 0;
  margin: auto;
}

.top-charm__list__text {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: left;
  padding: 0px 20px;
}

@media screen and (max-width: 599px) {
  .top-charm__list__text {
    font-size: 1.2rem;
    padding: 0px;
    line-height: 1.4;
    letter-spacing: -1px;
  }
}

@media screen and (max-width: 320px) {
  .top-charm__list__text {
    font-size: 1.1rem;
  }
}

/* ご予約について */
.top-reservation .top-ttl {
  margin-bottom: -45px;
}

.top-reservation .cmn-inner {
  margin-top: 80px;
  margin-bottom: 60px;
}

@media screen and (max-width: 599px) {
  .top-reservation .cmn-inner {
    margin: 45px 0px 30px 0px;
  }
}

.top-reservation__wrap {
  border: 3px solid #b8c5c7;
  padding: 60px 30px 28px 30px;
}

@media screen and (max-width: 599px) {
  .top-reservation__wrap {
    padding: 45px 12px 0px 12px;
    border: 2px solid #b8c5c7;
  }
}

.top-reservation__info {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 599px) {
  .top-reservation__info {
    display: block;
  }
}

.top-reservation__info > dt {
  width: 20%;
  background: #e8f5f7;
  font-size: 2.0rem;
  color: #01aec7;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px dotted #c9c9c9;
  position: relative;
  background-repeat: no-repeat;
  background-position: 50% 42%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .top-reservation__info > dt {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 599px) {
  .top-reservation__info > dt {
    width: 100%;
    border-bottom: none;
    padding: 12px !important;
  }
}

.top-reservation__info > dt.reserve {
  background-image: url("../common/icon_bell.svg");
  background-size: 54px auto;
  padding-top: 7%;
}

@media screen and (max-width: 1024px) {
  .top-reservation__info > dt.reserve {
    padding-top: 10%;
  }
}

@media screen and (max-width: 599px) {
  .top-reservation__info > dt.reserve {
    background-size: 30px auto;
    background-position: 30% 50%;
  }
}

.top-reservation__info > dt.checkin {
  background-image: url("../common/icon_clock.svg");
  background-size: 48px auto;
  background-position: 50% 38%;
  padding-top: 3%;
}

@media screen and (max-width: 599px) {
  .top-reservation__info > dt.checkin {
    background-size: 25px auto;
    background-position: 20% 50%;
  }
}

.top-reservation__info > dt::before {
  background: #fff;
  content: "";
  height: 5px;
  width: 100%;
  left: 0;
  position: absolute;
  top: 0;
}

.top-reservation__info > dt::after {
  background: #fff;
  content: "";
  height: 5px;
  width: 100%;
  left: 0;
  position: absolute;
  bottom: 0;
}

.top-reservation__info > dd {
  width: 80%;
  padding: 15px 0px 5px 30px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px dotted #c9c9c9;
}

@media screen and (max-width: 599px) {
  .top-reservation__info > dd {
    width: 100%;
    padding: 10px 0px 20px 0px;
    border-bottom: none;
  }
}

@media screen and (max-width: 599px) {
  .top-reservation__info > dd p {
    line-height: 1.5;
  }
}

.top-reservation__info .noline {
  border-bottom: none;
}

.top-reservation__info__btn {
  position: relative;
  width: 198px;
  float: right;
  background: #ff925c;
  color: #fff;
  font-weight: 600;
  font-size: 2.0rem;
  padding: 10px 20px 10px 10px;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .top-reservation__info__btn {
    display: block;
    max-width: 450px;
    width: 100%;
    margin-bottom: 20px;
    float: none;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 599px) {
  .top-reservation__info__btn {
    width: 85%;
    margin: 0 auto;
    font-size: 1.4rem;
  }
}

.top-reservation__info__btn:hover {
  background-color: #ff8142;
}

@media screen and (max-width: 1024px) {
  .top-reservation__info__btn:hover {
    background-color: #ff925c;
  }
}

.top-reservation__info__btn::after {
  display: block;
  content: '';
  position: absolute;
  vertical-align: middle;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  width: 13px;
  height: 13px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.top-reservation__info__contact {
  margin: 15px 0px;
  display: flex;
}

@media screen and (max-width: 599px) {
  .top-reservation__info__contact {
    display: block;
    width: 220px;
    margin: 10px auto 15px auto;
  }
}

.top-reservation__info__contact li {
  font-size: 1.3rem;
  padding-right: 20px;
}

@media screen and (max-width: 599px) {
  .top-reservation__info__contact li {
    background-size: 26px;
    padding-right: 0px;
    margin-bottom: 5px;
  }
}

.top-reservation__info__contact li a {
  color: #333;
}

@media screen and (max-width: 599px) {
  .top-reservation__info__contact li a {
    display: inline-block;
    border: 2px solid #01aec7;
    border-radius: 50px;
    padding: 8px 25px 6px 10px;
  }
}

.top-reservation__info__contact li p {
  padding-left: 40px;
}

.top-reservation__info__contact li span {
  display: inline-block;
  font-size: 3.0rem;
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  line-height: 1.0;
  background-position: left top;
  background-repeat: no-repeat;
  padding-top: 5px;
  padding-left: 40px;
  background-size: 32px;
}

@media screen and (max-width: 1024px) {
  .top-reservation__info__contact li span {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 599px) {
  .top-reservation__info__contact li span {
    font-size: 2.2rem;
    padding-left: 30px;
    background-size: 25px;
    margin-bottom: 3px;
  }
}

.top-reservation__info__contact li span.fax {
  background-image: url("../common/icon_fax.svg");
}

.top-reservation__info__contact li span.tel {
  background-image: url("../common/icon_tel.svg");
}

.top-reservation__info__checkin dt {
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 5px;
  line-height: 1.4;
  position: relative;
  padding-left: 22px;
}

@media screen and (max-width: 599px) {
  .top-reservation__info__checkin dt {
    border-bottom: 1px dotted #c9c9c9;
    padding-bottom: 5px;
    padding-left: 16px;
  }
}

.top-reservation__info__checkin dt::before {
  background: #01aec7;
  content: "";
  height: 16px;
  width: 16px;
  left: 0;
  position: absolute;
  top: 2px;
}

@media screen and (max-width: 599px) {
  .top-reservation__info__checkin dt::before {
    height: 12px;
    width: 12px;
  }
}

.top-reservation__info__checkin dd {
  margin-bottom: 10px;
}

/* マップ */
.top-map {
  text-align: center;
}

.top-map__text {
  margin-bottom: 20px;
}

.top-map__googlemap {
  height: 430px;
}

@media screen and (max-width: 1024px) {
  .top-map__googlemap {
    height: 380px;
  }
}

@media screen and (max-width: 599px) {
  .top-map__googlemap {
    height: 270px;
  }
}

/*---------------------------------------

information

----------------------------------------*/
.information-wrapper {
  /*詳細中身---------------------------------*/
}

.information-wrapper .information-list {
  width: 100%;
  margin-right: 0;
  margin-bottom: 65px;
}

@media screen and (max-width: 1024px) {
  .information-wrapper .information-list {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 599px) {
  .information-wrapper .information-list {
    margin-bottom: 30px;
  }
}

.information-wrapper .information-list__item {
  border-bottom: 1px solid #dddddd;
}

.information-wrapper .information-list__item:first-child {
  border-top: 1px solid #dddddd;
}

.information-wrapper .information-list__link {
  position: relative;
  padding: 28px 48px 24px 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  box-sizing: border-box;
}

@media screen and (max-width: 599px) {
  .information-wrapper .information-list__link {
    padding: 22px 35px 20px 0px;
  }
}

.information-wrapper .information-list__link:hover {
  background: #f1f9fa;
}

@media screen and (max-width: 1024px) {
  .information-wrapper .information-list__link:hover {
    background: none;
  }
}

.information-wrapper .information-list__day {
  position: relative;
  display: inline-block;
  margin-top: 5px;
  margin-right: 12px;
  width: 100px;
  font-size: 1.5rem;
  line-height: 1;
  color: #00a0bd;
  font-weight: 600;
  box-sizing: border-box;
  text-align: left;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1024px) {
  .information-wrapper .information-list__day {
    width: auto;
    margin-bottom: 13px;
  }
}

@media screen and (max-width: 599px) {
  .information-wrapper .information-list__day {
    margin-right: 15px;
    margin-bottom: 14px;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}

.information-wrapper .information-list__category {
  display: inline-block;
  margin-right: 20px;
  padding: 6px 5px 5px;
  width: 82px;
  font-size: 1.4rem;
  line-height: 1.0;
  color: #ffffff;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.information-wrapper .information-list__category.info {
  background-color: #53a4d2;
}

.information-wrapper .information-list__category.column {
  background-color: #69b280;
}

.information-wrapper .information-list__category.recruit {
  background-color: #7b86be;
}

@media screen and (max-width: 599px) {
  .information-wrapper .information-list__category {
    font-size: 1.3rem;
  }
}

.information-wrapper .information-list__text {
  display: inline-block;
  width: calc( 100% - ( (100px + 12px) + (82px + 20px) ));
  color: #010101;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: justify;
}

@media screen and (max-width: 1024px) {
  .information-wrapper .information-list__text {
    width: 100%;
    margin-top: 0;
  }
}

@media screen and (max-width: 599px) {
  .information-wrapper .information-list__text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

.information-wrapper .information-list__text .new {
  margin-left: 5px;
  font-size: 1.6rem;
  color: #f53134;
  font-weight: 500;
}

@media screen and (max-width: 599px) {
  .information-wrapper .information-list__text .new {
    margin-left: 0;
    font-size: 1.4rem;
  }
}

.information-wrapper .detailTitle {
  position: relative;
  margin-bottom: 40px;
  padding: 30px 25px 35px;
  box-sizing: border-box;
  border-left: 3px solid #01aec7;
  background-color: #edf9fb;
}

@media screen and (max-width: 1024px) {
  .information-wrapper .detailTitle {
    padding: 30px 25px 25px;
    margin-bottom: 28px;
  }
}

@media screen and (max-width: 599px) {
  .information-wrapper .detailTitle {
    padding: 20px 18px 18px;
    margin-bottom: 25px;
  }
}

.information-wrapper .detailTitle__day {
  margin-bottom: 10px;
  font-size: 1.6rem;
  line-height: 1;
  color: #00a0bd;
  font-weight: 600;
}

@media screen and (max-width: 599px) {
  .information-wrapper .detailTitle__day {
    font-size: 1.4rem;
    font-weight: 500;
  }
}

.information-wrapper .detailTitle__new {
  color: #f53134;
  display: inline-block;
  margin-left: 8px;
  font-weight: 500;
}

@media screen and (max-width: 599px) {
  .information-wrapper .detailTitle__new {
    margin-left: 3px;
    font-size: 1.4rem;
  }
}

.information-wrapper .detailTitle__category {
  display: inline-block;
  margin-right: 8px;
  padding: 6px 5px 5px;
  width: 82px;
  font-size: 1.4rem;
  line-height: 1.0;
  color: #ffffff;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.information-wrapper .detailTitle__category.info {
  background-color: #53a4d2;
}

.information-wrapper .detailTitle__category.column {
  background-color: #69b280;
}

.information-wrapper .detailTitle__category.recruit {
  background-color: #7b86be;
}

@media screen and (max-width: 599px) {
  .information-wrapper .detailTitle__category {
    font-size: 1.3rem;
  }
}

.information-wrapper .detailTitle__textarea {
  font-size: 2.2rem;
  line-height: 1.6;
  color: #32413c;
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  .information-wrapper .detailTitle__textarea {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 599px) {
  .information-wrapper .detailTitle__textarea {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.information-detail-wrapper {
  margin-bottom: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 1024px) {
  .information-detail-wrapper {
    margin-bottom: 40px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 599px) {
  .information-detail-wrapper {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}

.information-detail-wrapper li {
  list-style: inherit;
}

#information-detail-preview {
  position: fixed;
  top: 20px;
  right: 10px;
  z-index: 3000;
  background: #f0e68c;
  color: #010101;
  padding: 10px 20px;
}

/*---------- input ----------*/
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-wrapper input[type="text"],
.form-wrapper input[type="tel"],
.form-wrapper input[type="email"],
.form-wrapper textarea,
.form-wrapper select {
  font-family: "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro," メイリオ", Meiryo, Osaka," ＭＳ Ｐゴシック", MS PGothic," sans-serif";
  font-size: 1.6rem;
  border: 1px solid #E8E8E8;
  background-color: #F2F2F2;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .form-wrapper input[type="text"],
  .form-wrapper input[type="tel"],
  .form-wrapper input[type="email"],
  .form-wrapper textarea,
  .form-wrapper select {
    -webkit-appearance: none;
    width: 100%;
  }
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

select::-ms-expand {
  display: none;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  height: 40px;
  padding: 5px 10px;
}

textarea {
  width: 100%;
  height: 150px;
  padding: 5px 10px;
}

.reserve-sec {
  margin-bottom: 70px;
}

@media screen and (max-width: 599px) {
  .reserve-sec {
    margin-bottom: 55px;
  }
}

.reserve-sec.last {
  margin-bottom: 50px;
}

@media screen and (max-width: 1024px) {
  .reserve-sec.last {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 599px) {
  .reserve-sec.last {
    margin-bottom: 20px;
  }
}

.reserve-wrapper .reserve-tel__inner {
  margin-bottom: 45px;
  padding: 2.4em 20px 1.8em;
  box-sizing: border-box;
  text-align: center;
  border: 2px solid #dae2e3;
}

@media screen and (max-width: 599px) {
  .reserve-wrapper .reserve-tel__inner {
    margin-bottom: 35px;
    padding: 1.8em 20px 1.3em;
  }
}

.reserve-wrapper .reserve-tel__link {
  display: inline-block;
  pointer-events: none;
  cursor: none;
  position: relative;
  margin-right: 25px;
  padding-left: 65px;
  font-family: "Overpass", sans-serif;
  font-size: 4.0rem;
  line-height: 1;
  color: #35b6c8;
  font-weight: 600;
  letter-spacing: -0.02em;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .reserve-wrapper .reserve-tel__link {
    pointer-events: all;
    cursor: pointer;
    margin-right: 15px;
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 599px) {
  .reserve-wrapper .reserve-tel__link {
    margin: 0 15px 10px 0;
    font-size: 2.8rem;
    padding-left: 48px;
  }
}

.reserve-wrapper .reserve-tel__link::before {
  position: absolute;
  content: '';
  display: block;
  top: -9px;
  left: 0;
  width: 50px;
  height: 50px;
  background: url("../img/reserve/icon_tel.svg") center center no-repeat;
  background-size: 100% auto;
}

@media screen and (max-width: 1024px) {
  .reserve-wrapper .reserve-tel__link::before {
    top: -8px;
  }
}

@media screen and (max-width: 599px) {
  .reserve-wrapper .reserve-tel__link::before {
    top: -4px;
    width: 36px;
    height: 36px;
  }
}

.reserve-wrapper .reserve-tel__time {
  display: inline-block;
  font-size: 2.0rem;
  line-height: 1.3;
  color: #222;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.05em;
  vertical-align: 24%;
}

@media screen and (max-width: 1024px) {
  .reserve-wrapper .reserve-tel__time {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 599px) {
  .reserve-wrapper .reserve-tel__time {
    font-size: 1.6rem;
    color: #010101;
  }
}

.reserve-wrapper .reserve-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 599px) {
  .reserve-wrapper .reserve-list {
    margin-top: -30px;
  }
}

.reserve-wrapper .reserve-list__item {
  width: calc( ( 99.9% - 30px ) / 2);
}

@media screen and (max-width: 599px) {
  .reserve-wrapper .reserve-list__item {
    margin-top: 30px;
    width: 100%;
  }
}

.reserve-wrapper .reserve-mail__lead {
  margin-bottom: 5px;
  font-size: 1.6rem;
  color: #010101;
  line-height: 1.7;
}

.reserve-wrapper .reserve-mail__lead--02 {
  margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
  .reserve-wrapper .reserve-mail__lead {
    font-size: 15px;
    line-height: 24px;
  }
  .reserve-wrapper .reserve-mail__lead--02 {
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 599px) {
  .reserve-wrapper .reserve-mail__lead {
    font-size: 14px;
  }
  .reserve-wrapper .reserve-mail__lead--02 {
    margin-bottom: 20px;
  }
}

.reserve-wrapper .reserve-mail__lead__required {
  margin-right: 8px;
  margin-top: -4px;
  padding: 4px 8px 5px 8px;
  font-size: 1.3rem;
  line-height: 1;
  color: #FFF;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  background: #e03a3a;
}

.reserve-wrapper .form-step {
  margin-bottom: 15px;
  font-size: 1.7rem;
}

@media screen and (max-width: 599px) {
  .reserve-wrapper .form-step {
    font-size: 1.5rem;
  }
}

.reserve-wrapper .form-step__number {
  margin-right: 10px;
  display: inline-block;
  width: 28px;
  height: 28px;
  font-size: 1.8rem;
  line-height: 28px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  text-align: center;
  background-color: #01aec7;
}

@media screen and (max-width: 320px) {
  .reserve-wrapper .form-step__number {
    margin-right: 7px;
  }
}

.reserve-wrapper .formtbl01 {
  width: 100%;
  border-top: 1px dotted #bbbbbb;
  border-collapse: collapse;
  margin-bottom: 60px;
}

@media screen and (max-width: 1024px) {
  .reserve-wrapper .formtbl01 {
    width: 100%;
    margin: 0 auto 45px;
  }
}

@media screen and (max-width: 599px) {
  .reserve-wrapper .formtbl01 {
    margin: 0 auto 40px;
  }
}

.reserve-wrapper .formtbl01 tr {
  width: 100%;
  border-bottom: 1px dotted #bbbbbb;
}

.reserve-wrapper .formtbl01__title {
  position: relative;
  width: 265px;
  background: #f7f7f7;
  text-align: left;
  padding: 35px 25px 30px 0;
  box-sizing: border-box;
  font-weight: normal;
  vertical-align: top;
}

@media screen and (max-width: 1024px) {
  .reserve-wrapper .formtbl01__title {
    width: 252px;
  }
}

@media screen and (max-width: 599px) {
  .reserve-wrapper .formtbl01__title {
    width: 100%;
    display: block;
    padding: 10px 12px 10px 0;
  }
}

.reserve-wrapper .formtbl01__title p {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1.3em;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  color: #010101;
  line-height: 1.4;
}

@media screen and (max-width: 1024px) {
  .reserve-wrapper .formtbl01__title p {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 599px) {
  .reserve-wrapper .formtbl01__title p {
    padding: 2px 0 2px 1.3em;
    font-size: 1.4rem;
    line-height: 1.3;
  }
}

@media screen and (max-width: 320px) {
  .reserve-wrapper .formtbl01__title p {
    font-size: 1.3rem;
  }
}

.reserve-wrapper .formtbl01__title p::before {
  position: absolute;
  content: '';
  top: 10px;
  left: 0;
  width: 13px;
  height: 4px;
  background-color: #01aec7;
  box-sizing: border-box;
}

@media screen and (max-width: 599px) {
  .reserve-wrapper .formtbl01__title p::before {
    top: 10px;
    left: 0;
    width: 13px;
    height: 4px;
  }
}

.reserve-wrapper .formtbl01__title__english {
  display: block;
  margin: 3px 0 0 2px;
  font-size: 1.4rem;
  line-height: 1.1;
  color: #01a0b7;
  font-family: "Overpass", sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

@media screen and (max-width: 599px) {
  .reserve-wrapper .formtbl01__title__english {
    display: inline-block;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 300;
  }
}

@media screen and (max-width: 320px) {
  .reserve-wrapper .formtbl01__title__english {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 599px) {
  .reserve-wrapper .formtbl01__title__english--required {
    margin-left: 5px;
  }
}

.reserve-wrapper .formtbl01__title .required {
  display: inline-block;
  margin-top: 2px;
  padding: 4px 8px 5px 8px;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  vertical-align: middle;
  line-height: 1;
  box-sizing: border-box;
  background: #e03a3a;
  color: #FFF;
  float: right;
}

.reserve-wrapper .formtbl01__contents {
  padding: 35px 25px 35px;
  box-sizing: border-box;
  vertical-align: top;
  /* 各ベンダープレフィックスが取れた標準版！！(http://caniuse.com/#search=placeholder-shown) */
  /* Google Chrome, Safari, Opera 15+, Android, iOS */
  /* Firefox 18- */
  /* Firefox 19+ */
  /* IE 10+ */
}

@media screen and (max-width: 1024px) {
  .reserve-wrapper .formtbl01__contents--textarea {
    padding: 35px 0 35px 25px;
  }
}

@media screen and (max-width: 599px) {
  .reserve-wrapper .formtbl01__contents {
    width: 100%;
    display: block;
    padding: 15px 0px 22px;
    vertical-align: middle;
  }
}

.reserve-wrapper .formtbl01__contents input[type="text"], .reserve-wrapper .formtbl01__contents input[type="tel"], .reserve-wrapper .formtbl01__contents input[type="email"] {
  max-width: 600px;
  min-height: 32px;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1;
  padding: 14px 12px 12px 12px;
  border: 2px solid #d2d2d2;
  box-sizing: border-box;
  vertical-align: middle;
}

@media screen and (max-width: 1024px) {
  .reserve-wrapper .formtbl01__contents input[type="text"], .reserve-wrapper .formtbl01__contents input[type="tel"], .reserve-wrapper .formtbl01__contents input[type="email"] {
    padding: 10px 10px 8px 10px;
  }
}

@media screen and (max-width: 599px) {
  .reserve-wrapper .formtbl01__contents input[type="text"], .reserve-wrapper .formtbl01__contents input[type="tel"], .reserve-wrapper .formtbl01__contents input[type="email"] {
    padding: 10px 10px 10px 10px;
    /*font-size: 1.5rem;*/
    line-height: 1.2;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}

.reserve-wrapper .formtbl01__contents input[type="text"].input-period, .reserve-wrapper .formtbl01__contents input[type="tel"].input-period, .reserve-wrapper .formtbl01__contents input[type="email"].input-period {
  max-width: 400px;
  background-image: url(../img/reserve/icon_calendar.png);
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: 40px auto;
}

@media screen and (max-width: 1024px) {
  .reserve-wrapper .formtbl01__contents input[type="text"].input-period, .reserve-wrapper .formtbl01__contents input[type="tel"].input-period, .reserve-wrapper .formtbl01__contents input[type="email"].input-period {
    max-width: inherit;
    width: 80%;
  }
}

.reserve-wrapper .formtbl01__contents input[type="text"].error-box, .reserve-wrapper .formtbl01__contents input[type="tel"].error-box, .reserve-wrapper .formtbl01__contents input[type="email"].error-box {
  border: 2px solid #e03a3a;
}

.reserve-wrapper .formtbl01__contents .form-list__base__item {
  font-size: 1.6rem;
}

@media screen and (max-width: 599px) {
  .reserve-wrapper .formtbl01__contents .form-list__base__item {
    font-size: 1.5rem;
  }
}

.reserve-wrapper .formtbl01__contents .form-list__base__item.item-column {
  display: inline-block;
  width: auto;
  margin-right: 2em;
}

.reserve-wrapper .formtbl01__contents .form-list__base__item.item-period {
  margin-bottom: 15px;
}

@media screen and (max-width: 1024px) {
  .reserve-wrapper .formtbl01__contents .form-list__base__item.item-period:last-child {
    margin-bottom: 0;
  }
}

.reserve-wrapper .formtbl01__contents .form-list__base__item__category {
  position: relative;
  padding-left: 15px;
  display: inline-block;
  width: 170px;
}

@media screen and (max-width: 1024px) {
  .reserve-wrapper .formtbl01__contents .form-list__base__item__category {
    display: block;
    margin-bottom: 2px;
    width: 100%;
  }
}

.reserve-wrapper .formtbl01__contents .form-list__base__item__category::before {
  content: '';
  position: absolute;
  display: inline-block;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #01b8d2;
  margin-right: 8px;
}

.reserve-wrapper .formtbl01__contents textarea {
  width: 100%;
  font-size: 16px;
  line-height: 1.4;
  font-family: inherit;
  padding: 12px 12px 13px 12px;
  border: 2px solid #d2d2d2;
  box-sizing: border-box;
  color: #010101;
}

@media screen and (max-width: 1024px) {
  .reserve-wrapper .formtbl01__contents textarea {
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 15px 12px 15px 12px;
  }
}

.reserve-wrapper .formtbl01__contents :placeholder-shown {
  color: #777777;
}

.reserve-wrapper .formtbl01__contents ::-webkit-input-placeholder {
  color: #777777;
}

.reserve-wrapper .formtbl01__contents :-moz-placeholder {
  color: #777777;
  opacity: 1;
}

.reserve-wrapper .formtbl01__contents ::-moz-placeholder {
  color: #777777;
  opacity: 1;
}

.reserve-wrapper .formtbl01__contents :-ms-input-placeholder {
  color: #777777;
}

.select-base {
  padding: 2px 0 0 10px;
  height: 40px;
  border: 2px solid #ddd;
  color: #010101;
  vertical-align: middle;
  font-size: 16px;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  background-image: url(../common/arrow_select.png);
  background-repeat: no-repeat;
  background-size: 10px auto;
  background-position: right 16px top 50%;
  padding-right: 30px;
  box-sizing: border-box;
  background-color: #fff;
}

.select-base--users, .select-base--rooms {
  width: 200px;
}

.radio-base {
  display: none;
}

.radio-base + label {
  padding-left: 30px;
  position: relative;
  display: inline-block;
}

.radio-base + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #e7e7e7;
  border-radius: 50%;
}

@media screen and (max-width: 599px) {
  .radio-base--roomtype + label {
    margin-bottom: 5px;
  }
}

.radio-base:checked + label {
  color: #01aec7;
}

.radio-base:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 5px;
  width: 10px;
  height: 10px;
  background: #01aec7;
  border-radius: 50%;
}

/* ---- form-text--base ---- */
.form-text--base {
  width: 100%;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .form-text--base {
    width: 100%;
  }
}

.form-text--address {
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .form-text--address {
    width: 100%;
  }
}

.form-wrapper .must {
  position: absolute;
  right: 0;
}

@media screen and (max-width: 1024px) {
  .form-wrapper .must {
    top: 8px;
    right: 12px;
  }
}

.form-btn {
  position: relative;
  font-weight: bold;
  margin: 50px auto 30px;
}

@media screen and (max-width: 1024px) {
  .form-btn {
    width: 100%;
    margin: 30px auto;
  }
}

@media screen and (max-width: 599px) {
  .form-btn {
    margin: 20px auto 10px;
    font-size: 1.6rem;
  }
}

.form-btn__submit {
  position: relative;
  display: block;
  padding: 20px 15px 20px 15px;
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
  font-size: 2.0rem;
  line-height: 1.0;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: center;
  border: 1px solid #01aec7;
  background-color: #01aec7;
  box-sizing: border-box;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (max-width: 1024px) {
  .form-btn__submit {
    border: 1px solid #01aec7;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 599px) {
  .form-btn__submit {
    max-width: inherit;
    width: 100%;
    padding: 18px 18px 18px 18px;
    font-size: 1.6rem;
  }
}

.form-btn__submit::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.form-btn__submit:hover {
  color: #01aec7;
  background-color: #fff;
}

.form-btn__submit:hover::after {
  border-top: 2px solid #01aec7;
  border-right: 2px solid #01aec7;
}

@media screen and (max-width: 1024px) {
  .form-btn__submit:hover {
    color: #fff;
    background-color: #01aec7;
  }
  .form-btn__submit:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

.form-btn__back {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  left: 0;
  padding: 21px 15px 21px 15px;
  width: 180px;
  font-size: 1.8rem;
  line-height: 1.0;
  color: #333;
  font-weight: 400;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  text-align: center;
  background-color: #eee;
}

@media screen and (max-width: 599px) {
  .form-btn__back {
    position: relative;
    margin-top: 10px;
    padding: 19px 18px 19px 18px;
    width: 100%;
    font-size: 1.6rem;
  }
}

.form-btn__back::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  margin: auto;
  left: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-left: 2px solid #333;
  transform: rotate(-45deg);
}

.form-btn__back:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1024px) {
  .form-btn__back:hover {
    opacity: 1;
  }
}

/*-- error エラーページ ---*/
.error-lead {
  margin-bottom: 30px;
  padding: 20px 0;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #e03a3a;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 600;
  text-align: center;
  box-sizing: border-box;
  border-top: 1px solid #e03a3a;
  border-bottom: 1px solid #e03a3a;
}

@media screen and (max-width: 1024px) {
  .error-lead {
    margin: 0 auto 20px;
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 599px) {
  .error-lead {
    margin: 20px auto 20px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.error-text {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #e03a3a;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .error-text {
    margin-top: 5px;
    font-size: 1.4rem;
  }
}

/*-- confirm 確認ページ ---*/
.confirm-lead {
  margin-bottom: 35px;
  font-size: 1.7rem;
  line-height: 1.5;
}

@media screen and (max-width: 599px) {
  .confirm-lead {
    margin-bottom: 20px;
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

.confirm-text {
  padding: 10px 0;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #010101;
  text-align: justify;
}

@media screen and (max-width: 599px) {
  .confirm-text {
    padding: 0;
    font-size: 1.4rem;
  }
}

/*-- 送信完了 テキスト ---*/
.complete-box {
  margin: 40px auto 0;
  font-size: 1.6rem;
}

@media screen and (max-width: 1024px) {
  .complete-box {
    margin: 20px auto 0;
    padding: 0;
    font-size: 1.4rem;
  }
}

.complete-box__title {
  margin-bottom: 40px;
  padding: 20px 0;
  font-size: 2.0rem;
  line-height: 1.7;
  color: #01aec7;
  font-weight: 600;
  border-top: 2px solid #01aec7;
  border-bottom: 2px solid #01aec7;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .complete-box__title {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 599px) {
  .complete-box__title {
    margin-bottom: 20px;
    padding: 15px 10px;
    font-size: 1.7rem;
    font-weight: 600;
  }
}

.complete-box__text {
  text-align: center;
  background-color: #f0fbfc;
  padding: 45px 40px 40px 40px;
  font-size: 1.6rem;
  line-height: 1.9;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .complete-box__text {
    padding: 32px 25px 30px 25px;
  }
}

@media screen and (max-width: 599px) {
  .complete-box__text {
    padding: 20px 20px 22px 20px;
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: justify;
  }
}

div#ui-datepicker-div {
  display: none;
}

.plan-sec:not(:last-child) {
  margin-bottom: 90px;
}

@media screen and (max-width: 1024px) {
  .plan-sec:not(:last-child) {
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 599px) {
  .plan-sec:not(:last-child) {
    margin-bottom: 50px;
  }
}

.plan__main {
  position: relative;
  width: 100%;
  height: 420px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .plan__main {
    height: auto;
    margin-bottom: 10px;
  }
}

.plan__main__ttl {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  height: 258px;
  margin: auto;
}

@media screen and (max-width: 1024px) {
  .plan__main__ttl {
    position: static;
    height: auto;
  }
}

.plan__main__ttl__inner {
  display: inline-block;
  position: relative;
  width: 400px;
  padding: 70px 20px;
  border: 5px solid #01b8d2;
  color: #304346;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.9rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 2px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .plan__main__ttl__inner {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    padding: 10px;
    border: 2px solid #01b8d2;
    font-size: 1.8rem;
  }
}

.plan__main__ttl__inner::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: -1;
  width: calc(100% + 15px);
  height: calc(100% + 15px);
  background: #fff;
}

.plan__main__ttl__inner span {
  display: block;
  color: #01b8d2;
  font-size: 2.6rem;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .plan__main__ttl__inner span {
    font-size: 1.4rem;
  }
}

.plan__main__image {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 774px;
}

@media screen and (max-width: 1024px) {
  .plan__main__image {
    position: static;
    margin: auto;
  }
}

.plan__text {
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .plan__text {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 599px) {
  .plan__text {
    margin-bottom: 20px;
  }
}

.plan__thumb {
  margin-bottom: 60px;
}

@media screen and (max-width: 1024px) {
  .plan__thumb {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 599px) {
  .plan__thumb {
    margin-bottom: 20px;
  }
}

.plan__thumb__list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

@media screen and (max-width: 599px) {
  .plan__thumb__list {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

.plan__thumb__item {
  width: calc(99.9% / 3);
  text-align: center;
}

@media screen and (max-width: 599px) {
  .plan__thumb__item {
    width: 80%;
    margin: 0 auto;
  }
}

.plan__thumb__item:not(:last-child) {
  margin-right: 40px;
}

@media screen and (max-width: 599px) {
  .plan__thumb__item:not(:last-child) {
    margin-right: auto;
    margin-bottom: 20px;
  }
}

.plan__thumb__item span {
  display: block;
  margin-top: 10px;
}

@media screen and (max-width: 599px) {
  .plan__thumb__item span {
    margin-top: 5px;
  }
}

.plan__room-details__ttl {
  color: #99d5de;
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .plan__room-details__ttl {
    font-size: 2.8rem;
  }
}

.plan__room-details__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: -20px;
  padding: 40px 0;
  border: 5px solid #aedfe6;
}

@media screen and (max-width: 1024px) {
  .plan__room-details__inner {
    flex-direction: column;
    margin-top: -17px;
    padding: 0;
    border: 3px solid #aedfe6;
  }
}

.plan__room-details__inner__image {
  width: 58%;
  margin: 0 2%;
}

@media screen and (max-width: 1024px) {
  .plan__room-details__inner__image {
    width: 100%;
    margin: 0;
    padding: 20px 10px;
    text-align: center;
  }
}

.plan__room-details__inner__image img {
  max-width: 616px;
}

.plan__room-details__inner__contents {
  align-self: center;
  width: 40%;
  padding: 60px 50px;
  background-color: #dff5f8;
}

@media screen and (max-width: 1024px) {
  .plan__room-details__inner__contents {
    width: 100%;
    padding: 20px 15px;
  }
}

.plan__room-details__inner__contents__ttl {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d2d2d2;
  color: #010101;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.3rem;
  line-height: 1.7;
}

@media screen and (max-width: 1024px) {
  .plan__room-details__inner__contents__ttl {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 599px) {
  .plan__room-details__inner__contents__ttl {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

.plan__room-details__inner__contents__ttl span {
  display: block;
  color: #01b8d2;
  font-size: 1.6rem;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .plan__room-details__inner__contents__ttl span {
    font-size: 1.4rem;
  }
}

.plan__room-details__inner__contents__list li {
  position: relative;
  padding-left: 20px;
  font-size: 1.6rem;
  line-height: 1.6;
}

@media screen and (max-width: 599px) {
  .plan__room-details__inner__contents__list li {
    font-size: 1.4rem;
  }
}

.plan__room-details__inner__contents__list li:not(:last-child) {
  margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
  .plan__room-details__inner__contents__list li:not(:last-child) {
    margin-bottom: 5px;
  }
}

.plan__room-details__inner__contents__list li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #33bfd6;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

@media screen and (max-width: 599px) {
  .plan__room-details__inner__contents__list li::before {
    width: 10px;
    height: 10px;
  }
}

.price__table-wrapper {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}

@media screen and (max-width: 599px) {
  .price__table-wrapper {
    margin-bottom: 10px;
  }
}

.price__table-wrapper thead th {
  width: 25%;
  background-color: #01b8d2;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .price__table-wrapper thead th {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 599px) {
  .price__table-wrapper thead th {
    font-size: 1.4rem;
  }
}

.price__table-wrapper tbody th {
  background-color: #f8fafa;
  font-weight: bold;
}

.price__table-wrapper th,
.price__table-wrapper td {
  padding: 20px;
  border: 1px solid #d2d2d2;
  font-size: 1.7rem;
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width: 599px) {
  .price__table-wrapper th,
  .price__table-wrapper td {
    padding: 10px 5px;
    font-size: 1.3rem;
  }
}

.price__table-wrapper .l-blue {
  background-color: #edfcfe;
}

.price__table-wrapper .orange {
  background-color: #ff925c;
  color: #fff;
}

.price__table-wrapper .l-orange {
  background-color: #fef5f0;
}

.price__table-wrapper .fw-bold {
  font-weight: bold;
}

.price__kome-wrapper {
  margin-bottom: 60px;
}

@media screen and (max-width: 1024px) {
  .price__kome-wrapper {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 599px) {
  .price__kome-wrapper {
    margin-bottom: 20px;
  }
}

.price__kome-wrapper__text {
  font-size: 1.6rem;
  line-height: 1.6;
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (max-width: 599px) {
  .price__kome-wrapper__text {
    font-size: 1.2rem;
  }
}

.price__compare-wrapper__item {
  display: inline-block;
  width: 48%;
}

@media screen and (max-width: 1024px) {
  .price__compare-wrapper__item {
    display: block;
    width: 100%;
  }
  .price__compare-wrapper__item:first-of-type {
    margin-bottom: 30px;
  }
}

.price__compare-wrapper__item:first-child {
  margin-right: 3.33%;
}

.price__compare-wrapper__item__ttl {
  position: relative;
  margin-bottom: 30px;
  padding: 20px;
  border: 3px solid #01b8d2;
  color: #01b8d2;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .price__compare-wrapper__item__ttl {
    margin-bottom: 25px;
    padding: 8px;
    font-size: 1.8rem;
  }
}

.price__compare-wrapper__item__ttl::before, .price__compare-wrapper__item__ttl::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  transform: rotate(180deg);
}

.price__compare-wrapper__item__ttl::before {
  bottom: -20px;
  border-color: transparent transparent #01b8d2;
  border-width: 0 20px 20px;
}

@media screen and (max-width: 599px) {
  .price__compare-wrapper__item__ttl::before {
    bottom: -15px;
    border-width: 0 15px 15px;
  }
}

.price__compare-wrapper__item__ttl::after {
  bottom: -15px;
  z-index: 1;
  border-color: transparent transparent #fff;
  border-width: 0 20px 20px;
}

@media screen and (max-width: 599px) {
  .price__compare-wrapper__item__ttl::after {
    bottom: -10px;
    border-width: 0 15px 15px;
  }
}

.price__compare-wrapper__item__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 75px 1fr;
  grid-template-rows: 75px 1fr;
  -ms-grid-columns: 50% 1fr;
  grid-template-columns: 50% 1fr;
  text-align: center;
}

.price__compare-wrapper__item__inner__g01 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / 3;
  -ms-grid-column: 1;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 7.5px;
  padding: 40px 5px;
  background-color: #eee;
}

@media screen and (max-width: 599px) {
  .price__compare-wrapper__item__inner__g01 {
    margin-right: 4px;
    padding: 30px 5px;
  }
}

.price__compare-wrapper__item__inner__g01__ttl {
  align-self: center;
  display: inline-block;
  margin-bottom: 20px;
  border-bottom: 2px solid #01b8d2;
  color: #01b8d2;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.4rem;
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  .price__compare-wrapper__item__inner__g01__ttl {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 599px) {
  .price__compare-wrapper__item__inner__g01__ttl {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}

.price__compare-wrapper__item__inner__g01__detail {
  margin-bottom: auto;
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .price__compare-wrapper__item__inner__g01__detail {
    font-size: 1.3rem;
  }
}

.price__compare-wrapper__item__inner__g01__amount {
  font-size: 2.5rem;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .price__compare-wrapper__item__inner__g01__amount {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 599px) {
  .price__compare-wrapper__item__inner__g01__amount {
    font-size: 1.6rem;
  }
}

.price__compare-wrapper__item__inner__g02 {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 2;
  grid-column: 2 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 88%;
  margin-left: auto;
  padding: 10px 5px;
  background-color: #ff925c;
}

@media screen and (max-width: 599px) {
  .price__compare-wrapper__item__inner__g02 {
    width: 82%;
  }
}

.price__compare-wrapper__item__inner__g02::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -13px;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent #ff925c;
  border-width: 0 5px 18px;
  transform: rotate(-90deg);
}

@media screen and (max-width: 599px) {
  .price__compare-wrapper__item__inner__g02::before {
    left: -11px;
    border-width: 0 5px 12px;
  }
}

.price__compare-wrapper__item__inner__g02::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: -12%;
  width: 16px;
  height: 80px;
  background: url(../img/plan/arrow.png) top no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 599px) {
  .price__compare-wrapper__item__inner__g02::after {
    left: -22%;
  }
}

.price__compare-wrapper__item__inner__g02__text {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (max-width: 1024px) {
  .price__compare-wrapper__item__inner__g02__text {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 599px) {
  .price__compare-wrapper__item__inner__g02__text {
    font-size: 1.4rem;
  }
}

.price__compare-wrapper__item__inner__g02__text--small {
  font-size: 1.6rem;
}

@media screen and (max-width: 1024px) {
  .price__compare-wrapper__item__inner__g02__text--small {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 599px) {
  .price__compare-wrapper__item__inner__g02__text--small {
    font-size: 1.2rem;
  }
}

.price__compare-wrapper__item__inner__g03 {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 2;
  grid-column: 2 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 15px;
  margin-left: 7.5px;
  padding: 40px 5px;
  background-color: #e7faf7;
}

@media screen and (max-width: 599px) {
  .price__compare-wrapper__item__inner__g03 {
    margin-top: 8px;
    margin-left: 4px;
    padding: 30px 5px;
  }
}

.price__compare-wrapper__item__inner__g03__ttl {
  align-self: center;
  display: inline-block;
  margin-bottom: 20px;
  border-bottom: 2px solid #38af9b;
  color: #38af9b;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.4rem;
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  .price__compare-wrapper__item__inner__g03__ttl {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 599px) {
  .price__compare-wrapper__item__inner__g03__ttl {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}

.price__compare-wrapper__item__inner__g03__detail {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .price__compare-wrapper__item__inner__g03__detail {
    font-size: 1.3rem;
  }
}

.price__compare-wrapper__item__inner__g03__amount {
  font-size: 2.5rem;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .price__compare-wrapper__item__inner__g03__amount {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 599px) {
  .price__compare-wrapper__item__inner__g03__amount {
    font-size: 1.6rem;
  }
}

.service__free-wrapper {
  margin-bottom: 40px;
  padding: 30px 0;
  border: 4px solid #01b8d2;
}

@media screen and (max-width: 1024px) {
  .service__free-wrapper {
    padding: 10px 0 0;
    border: 3px solid #01b8d2;
  }
}

@media screen and (max-width: 599px) {
  .service__free-wrapper {
    margin-bottom: 30px;
  }
}

.service__free-wrapper__ttl {
  margin-bottom: 25px;
  color: #ff925c;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .service__free-wrapper__ttl {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 599px) {
  .service__free-wrapper__ttl {
    font-size: 1.8rem;
  }
}

.service__free-wrapper__list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

@media screen and (max-width: 1024px) {
  .service__free-wrapper__list {
    flex-wrap: wrap;
    padding: 10px;
  }
}

.service__free-wrapper__list__item {
  width: 16.66%;
  padding: 0 8px;
  border-right: 1px dotted #01b8d2;
}

@media screen and (max-width: 1024px) {
  .service__free-wrapper__list__item {
    width: 33.333%;
    padding: 20px;
  }
}

@media screen and (max-width: 599px) {
  .service__free-wrapper__list__item {
    width: 50%;
  }
}

.service__free-wrapper__list__item img {
  display: block;
  height: 63px;
  margin: 0 auto 15px;
  object-fit: contain;
  object-position: bottom;
}

.service__free-wrapper__list__item:nth-child(1) img {
  max-width: 35px;
}

@media screen and (max-width: 599px) {
  .service__free-wrapper__list__item:nth-child(2) {
    border-right: none;
  }
}

.service__free-wrapper__list__item:nth-child(2) img {
  max-width: 63px;
}

@media screen and (max-width: 1024px) {
  .service__free-wrapper__list__item:nth-child(3) {
    border-right: none;
  }
}

.service__free-wrapper__list__item:nth-child(3) img {
  max-width: 68px;
}

@media screen and (max-width: 599px) {
  .service__free-wrapper__list__item:nth-child(4) {
    border-right: none;
    border-bottom: 1px dotted #01b8d2;
  }
}

.service__free-wrapper__list__item:nth-child(4) img {
  max-width: 53px;
}

.service__free-wrapper__list__item:nth-child(5) img {
  max-width: 49px;
}

.service__free-wrapper__list__item:nth-child(6) {
  border-right: none;
}

.service__free-wrapper__list__item:nth-child(6) img {
  max-width: 77px;
}

@media screen and (max-width: 1024px) {
  .service__free-wrapper__list__item:nth-child(-n+3) {
    border-bottom: 1px dotted #01b8d2;
  }
}

@media screen and (max-width: 599px) {
  .service__free-wrapper__list__item:nth-child(odd) {
    border-right: 1px dotted #01b8d2;
  }
}

.service__free-wrapper__list__item p {
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width: 599px) {
  .service__free-wrapper__list__item p {
    font-size: 1.4rem;
  }
}

.service__free-wrapper__list__item p span {
  font-size: 1.4rem;
}

@media screen and (max-width: 599px) {
  .service__free-wrapper__list__item p span {
    font-size: 1.3rem;
  }
}

.service__facility-wrapper__table {
  margin-bottom: 20px;
  border-collapse: collapse;
}

@media screen and (max-width: 599px) {
  .service__facility-wrapper__table {
    margin-bottom: 10px;
    border: 1px solid #dcdcdc;
    border-bottom: none;
  }
}

.service__facility-wrapper__table th,
.service__facility-wrapper__table td {
  padding: 25px;
  border: 1px solid #dcdcdc;
  font-size: 1.6rem;
}

@media screen and (max-width: 599px) {
  .service__facility-wrapper__table th,
  .service__facility-wrapper__table td {
    display: block;
    padding: 8px 15px;
    border: none;
    border-bottom: 1px solid #dcdcdc;
    font-size: 1.4rem;
  }
}

.service__facility-wrapper__table th {
  width: 24%;
  background-color: #edfcfe;
  color: #00a4bb;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
}

@media screen and (max-width: 599px) {
  .service__facility-wrapper__table th {
    width: 100%;
    text-align: center;
  }
}

.service__facility-wrapper__table__list {
  margin-left: 1em;
}

.service__facility-wrapper__table__list li {
  list-style: disc;
}

.service__facility-wrapper__text {
  margin-bottom: 10px;
}

.card__list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 127px;
}

@media screen and (max-width: 1024px) {
  .card__list {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 599px) {
  .card__list {
    margin-top: 107px;
  }
}

.card__item {
  position: relative;
  width: 48.5%;
  padding: 100px 30px 40px;
  border: 4px solid #dadada;
}

@media screen and (max-width: 1024px) {
  .card__item {
    width: 100%;
  }
}

@media screen and (max-width: 599px) {
  .card__item {
    padding: 60px 15px 15px;
    border: 3px solid #dadada;
  }
}

.card__item:first-child {
  margin-right: 3%;
}

@media screen and (max-width: 1024px) {
  .card__item:first-child {
    margin-right: 0;
    margin-bottom: 100px;
  }
}

.card__item__ttl {
  display: flex;
  justify-content: center;
  position: absolute;
  top: -76px;
  right: 0;
  left: 0;
  width: 60%;
  height: 160px;
  margin: auto;
  background-color: #01b8d2;
}

@media screen and (max-width: 599px) {
  .card__item__ttl {
    width: 80%;
    height: 120px;
  }
}

.card__item__ttl p {
  align-self: center;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

@media screen and (max-width: 599px) {
  .card__item__ttl p {
    font-size: 1.8rem;
  }
}

.card__item__ttl p::after {
  content: attr(title);
  display: block;
  margin-top: 15px;
  font-size: 1.8rem;
}

@media screen and (max-width: 599px) {
  .card__item__ttl p::after {
    font-size: 1.5rem;
  }
}

.card__item__description {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  height: 156px;
  margin-bottom: 10px;
  padding: 20px;
  background-color: #fef7f0;
}

@media screen and (max-width: 599px) {
  .card__item__description {
    flex-direction: column;
    flex-wrap: wrap;
    height: auto;
  }
}

.card__item__description__list {
  counter-reset: number;
  list-style-type: none;
}

@media screen and (max-width: 599px) {
  .card__item__description__list {
    margin-bottom: 10px;
  }
}

.card__item__description__list li {
  position: relative;
  padding-left: 45px;
  font-size: 1.9rem;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .card__item__description__list li {
    padding-left: 40px;
    font-size: 1.6rem;
  }
}

.card__item__description__list li:not(:last-child) {
  margin-bottom: 10px;
}

.card__item__description__list li::before {
  content: counter(number);
  counter-increment: number;
  position: absolute;
  left: 0;
  display: inline-block;
  width: 34px;
  height: 34px;
  background: #01b8d2;
  border-radius: 50%;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2rem;
  font-weight: 600;
  line-height: 34px;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .card__item__description__list li::before {
    width: 28px;
    height: 28px;
    font-size: 1.6rem;
    line-height: 28px;
  }
}

.card__item__description__list li em {
  color: #ff4e17;
  font-style: normal;
}

.card__item__description__image {
  max-width: 134px;
  align-self: baseline;
}

@media screen and (max-width: 599px) {
  .card__item__description__image {
    align-self: center;
  }
}

.card__item__description__image img {
  object-fit: contain;
}

.card__item__description__text {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 2;
}

@media screen and (max-width: 599px) {
  .card__item__description__text {
    margin-bottom: 10px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.card__item__description__text em {
  color: #ff4e17;
  font-style: normal;
}

.card__item__detail {
  padding-bottom: 10px;
  border-bottom: 1px dotted #b5b5b5;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
}

@media screen and (max-width: 599px) {
  .card__item__detail {
    font-size: 1.8rem;
    text-align: center;
  }
}

.card__item__detail em {
  color: #ff4e17;
  font-style: normal;
}

.card__item__detail span {
  font-size: 1.6rem;
}

@media screen and (max-width: 599px) {
  .card__item__detail span {
    font-size: 1.4rem;
  }
}

.card__item__text {
  margin-top: 25px;
  font-size: 1.6rem;
}

@media screen and (max-width: 599px) {
  .card__item__text {
    margin-top: 15px;
    font-size: 1.4rem;
  }
}

.privacy-sec:not(:last-child) {
  margin-bottom: 50px;
}

@media screen and (max-width: 1024px) {
  .privacy-sec:not(:last-child) {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 599px) {
  .privacy-sec:not(:last-child) {
    margin-bottom: 35px;
  }
}

.privacy-contact-box {
  padding: 37px 30px 35px;
  text-align: center;
  background-color: #f1f9fa;
}

@media screen and (max-width: 599px) {
  .privacy-contact-box {
    padding: 20px 15px;
  }
}

.privacy-contact-box__title {
  margin-bottom: 8px;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 600;
}

@media screen and (max-width: 599px) {
  .privacy-contact-box__title {
    margin-bottom: 3px;
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 500;
  }
}

@media screen and (max-width: 599px) {
  .privacy-contact-box__text {
    line-height: 1.6;
  }
}

.qa-wrapper {
  padding-bottom: 30px;
}

@media screen and (max-width: 599px) {
  .qa-wrapper {
    padding-bottom: 10px;
  }
}

.qa-sec:not(:last-child) {
  margin-bottom: 70px;
}

@media screen and (max-width: 599px) {
  .qa-sec:not(:last-child) {
    margin-bottom: 40px;
  }
}

.qa-block {
  border-top: 1px dotted #abb9bb;
}

.qa-list {
  padding: 22px 5px;
  border-bottom: 1px dotted #abb9bb;
}

@media screen and (max-width: 599px) {
  .qa-list {
    padding: 18px 0px 18px 0;
  }
}

.qa-list__titlebox {
  cursor: pointer;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.qa-list__titlebox::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #01b8d2;
}

.qa-list__titlebox__title {
  position: relative;
  display: block;
  margin-left: 45px;
  padding: 7px 55px 7px 20px;
  width: calc( 100% - 45px);
  font-size: 1.6rem;
  line-height: 1.6;
  color: #003b43;
  font-weight: 600;
  text-align: justify;
  border-left: 5px solid #d9ecef;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (max-width: 599px) {
  .qa-list__titlebox__title {
    margin-left: 32px;
    padding: 0px 45px 0px 13px;
    width: calc( 100% - 32px);
    font-size: 1.4rem;
    line-height: 1.8;
    font-weight: 500;
  }
}

.qa-list__titlebox__title::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 7px;
  margin: auto;
  width: 17px;
  height: 2px;
  background-color: #01b8d2;
}

.qa-list__titlebox__title::after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 7px;
  margin: auto;
  width: 17px;
  height: 2px;
  background-color: #01b8d2;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.qa-list__titlebox.active .qa-list__titlebox__title::after {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.qa-list__icon {
  display: inline-block;
  position: absolute;
  top: -12px;
  left: 0;
  font-size: 3.6rem;
  font-weight: 600;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 599px) {
  .qa-list__icon {
    top: -8px;
    font-size: 2.6rem;
  }
}

.qa-list__icon--q {
  color: #01b8d2;
}

@media screen and (max-width: 599px) {
  .qa-list__icon--q {
    top: -10px;
  }
}

.qa-list__icon--a {
  color: #ff925c;
}

.qa-list__detailbox {
  display: none;
}

.qa-list__detailbox__inner {
  margin-top: 20px;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.qa-list__detailbox__text {
  padding: 7px 10px 7px 20px;
  margin-left: 45px;
  width: calc( 100% - 45px);
  border-left: 5px solid #ffe7de;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: justify;
}

@media screen and (max-width: 599px) {
  .qa-list__detailbox__text {
    margin-left: 32px;
    padding: 0 10px 0 13px;
    width: calc( 100% - 32px);
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.qa-list__detailbox__text__indent {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

.location-sec:not(:last-child) {
  margin-bottom: 100px;
}

@media screen and (max-width: 599px) {
  .location-sec:not(:last-child) {
    margin-bottom: 40px;
  }
}

.access-block {
  margin-bottom: 70px;
}

@media screen and (max-width: 599px) {
  .access-block {
    margin-bottom: 40px;
  }
}

.access-company-block {
  max-width: 900px;
  margin: 0 auto 70px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 599px) {
  .access-company-block {
    margin-bottom: 40px;
    flex-flow: column-reverse;
  }
}

.access-company__data {
  padding: 70px 40px;
  width: calc( 100% - 370px - 35px);
  background-color: #f8f8f8;
}

@media screen and (max-width: 1024px) {
  .access-company__data {
    padding: 25px 25px;
    width: calc( 100% - 38% - 25px);
  }
}

@media screen and (max-width: 599px) {
  .access-company__data {
    padding: 20px 15px 20px;
    width: 100%;
  }
}

.access-company__data__logo {
  max-width: 260px;
  margin: 0 auto 25px;
  padding-right: 10px;
}

@media screen and (max-width: 1024px) {
  .access-company__data__logo {
    max-width: 250px;
    margin: 0 auto 15px;
    padding-right: 5px;
  }
}

@media screen and (max-width: 599px) {
  .access-company__data__logo {
    max-width: 200px;
  }
}

.access-company__content {
  padding-top: 25px;
  border-top: 1px dotted #3da688;
}

@media screen and (max-width: 1024px) {
  .access-company__content {
    padding-top: 15px;
  }
}

.access-company__content__name {
  margin-bottom: 15px;
  font-size: 2.0rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  .access-company__content__name {
    margin-bottom: 10px;
    line-height: 1.3;
  }
}

@media screen and (max-width: 599px) {
  .access-company__content__name {
    margin-bottom: 8px;
    font-size: 1.7rem;
  }
}

.access-company__content__add {
  font-size: 1.6rem;
  line-height: 1.87;
}

@media screen and (max-width: 1024px) {
  .access-company__content__add {
    line-height: 1.6;
  }
}

@media screen and (max-width: 599px) {
  .access-company__content__add {
    font-size: 1.4rem;
  }
}

.access-company__content__tel__time {
  display: block;
  line-height: 1.6;
}

.access-company__imgbox {
  max-width: 370px;
}

@media screen and (max-width: 1024px) {
  .access-company__imgbox {
    max-width: inherit;
    width: 38%;
  }
}

@media screen and (max-width: 599px) {
  .access-company__imgbox {
    margin-bottom: 15px;
    width: 100%;
  }
}

.access-map__title {
  position: relative;
}

.access-map__title__print {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 160px;
  height: 40px;
  padding: 13px 0 0 15px;
  line-height: 1.0;
  color: #01b8d2;
  font-weight: 600;
  text-align: center;
  background-color: #e8f5f7;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url(../img/location/icon_printer.svg);
  background-size: 27px auto;
  background-position: 15px center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 599px) {
  .access-map__title__print {
    display: none;
  }
}

.access-map__title__print:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  .access-map__title__print:hover {
    opacity: 1;
  }
}

.access-map__title__print::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  margin: auto;
  right: 15px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #01b8d2;
  border-right: 3px solid #01b8d2;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.access-map__googlemap {
  position: relative;
  padding-top: 39%;
}

@media screen and (max-width: 599px) {
  .access-map__googlemap {
    padding-top: 56%;
  }
}

.access-map__googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access-means-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .access-means-list {
    margin-top: 30px;
  }
}

@media screen and (max-width: 599px) {
  .access-means-list {
    margin-top: 0;
  }
}

.access-means-list__item {
  width: calc( 99.9% / 3);
  padding: 0 20px;
  border-right: 1px dotted #626262;
}

.access-means-list__item:first-child {
  border-left: 1px dotted #626262;
}

@media screen and (max-width: 599px) {
  .access-means-list__item {
    width: 100%;
    padding: 20px 0;
    border-right: none;
    border-bottom: 1px dotted #626262;
  }
  .access-means-list__item:first-child {
    border-left: none;
  }
  .access-means-list__item:last-child {
    border-bottom: none;
  }
}

.access-means-list__item__imgbox {
  width: 142px;
  margin: 0 auto 30px;
}

@media screen and (max-width: 599px) {
  .access-means-list__item__imgbox {
    width: 90px;
    margin: 0 auto 15px;
  }
}

.access-means-list__item__title {
  margin-bottom: 30px;
  font-size: 2.1rem;
  line-height: 1.3;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .access-means-list__item__title {
    margin-bottom: 15px;
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 1024px) {
  .access-station__imgbox {
    margin-top: 30px;
  }
}

@media screen and (max-width: 599px) {
  .access-station__imgbox {
    margin-top: 20px;
  }
}

.location-area-list {
  margin-bottom: 55px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 599px) {
  .location-area-list {
    margin-top: -25px;
  }
}

.location-area-list__item {
  width: calc( ( 99.9% - ( 50px * 2 ) ) / 3);
}

@media screen and (max-width: 1024px) {
  .location-area-list__item {
    width: calc( ( 99.9% - ( 25px * 2 ) ) / 3);
  }
}

@media screen and (max-width: 599px) {
  .location-area-list__item {
    margin-top: 25px;
    width: 100%;
  }
}

.location-area-list__item__imgbox {
  margin-bottom: 18px;
}

@media screen and (max-width: 599px) {
  .location-area-list__item__imgbox {
    margin-bottom: 12px;
  }
}

.location-area-list__item__title {
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 2.0rem;
  line-height: 1.3;
  color: #019db3;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #01b8d2;
}

@media screen and (max-width: 599px) {
  .location-area-list__item__title {
    margin-bottom: 8px;
    padding-bottom: 10px;
    font-size: 1.8rem;
  }
}

.location-area-list__item__text {
  text-align: justify;
}

.location-shop-list {
  margin-bottom: 30px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .location-shop-list {
    margin-top: -20px;
    -webkit-justify-content: center;
    justify-content: center;
  }
}

@media screen and (max-width: 599px) {
  .location-shop-list {
    margin-top: -10px;
  }
}

.location-shop-list__item {
  padding: 105px 17px 20px;
  width: calc((99.9% - (15px * 4)) /5);
  background-color: #ecf8f9;
  background-position: 50% 35px;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1024px) {
  .location-shop-list__item {
    margin-top: 20px;
    margin-left: 20px;
    padding: 105px 15px 20px;
    width: calc((99.9% - (20px * 2)) /3);
  }
  .location-shop-list__item:nth-child(3n-2) {
    margin-left: 0;
  }
}

@media screen and (max-width: 599px) {
  .location-shop-list__item {
    margin-top: 10px;
    margin-left: 10px;
    padding: 82px 10px 18px;
    width: calc((99.9% - (10px * 1)) / 2);
    background-position: 50% 22px;
  }
  .location-shop-list__item:nth-child(2n-1) {
    margin-left: 0;
  }
  .location-shop-list__item:nth-child(3n-2) {
    margin-left: auto;
  }
}

.location-shop-list__item.item01 {
  background-image: url(../img/location/location_icon01.svg);
  background-size: 48px auto;
}

.location-shop-list__item.item02 {
  background-image: url(../img/location/location_icon02.svg);
  background-size: 54px auto;
}

.location-shop-list__item.item03 {
  background-image: url(../img/location/location_icon03.svg);
  background-size: 50px auto;
}

.location-shop-list__item.item04 {
  background-image: url(../img/location/location_icon04.svg);
  background-size: 53px auto;
}

.location-shop-list__item.item05 {
  background-image: url(../img/location/location_icon05.svg);
  background-position: 50% 40px;
  background-size: 39px auto;
}

@media screen and (max-width: 599px) {
  .location-shop-list__item.item05 {
    background-position: 50% 28px;
  }
}

.location-shop-list__item__title {
  padding-bottom: 18px;
  margin-bottom: 20px;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #039cb2;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px dotted #01b8d2;
}

@media screen and (max-width: 599px) {
  .location-shop-list__item__title {
    padding-bottom: 12px;
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}

.location-shop-list__item__text {
  font-size: 1.6rem;
  line-height: 1.8;
}

@media screen and (max-width: 599px) {
  .location-shop-list__item__text {
    font-size: 1.4rem;
  }
}

.facilities-sec:not(:last-child) {
  margin-bottom: 105px;
}

@media screen and (max-width: 1024px) {
  .facilities-sec:not(:last-child) {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 599px) {
  .facilities-sec:not(:last-child) {
    margin-bottom: 50px;
  }
}

.facilities-box {
  margin-bottom: 65px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 599px) {
  .facilities-box {
    margin-bottom: 45px;
  }
}

.facilities-title {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 220px;
  font-size: 2.4rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
  background-color: #fff;
  border: 2px solid #01b8d2;
}

@media screen and (max-width: 1024px) {
  .facilities-title {
    margin-bottom: 30px;
    padding: 20px;
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 599px) {
  .facilities-title {
    margin-bottom: 20px;
    padding: 15px;
    font-size: 1.8rem;
  }
}

.facilities-rightbox {
  width: calc( 100% - 220px - 30px);
}

@media screen and (max-width: 1024px) {
  .facilities-rightbox {
    width: 100%;
  }
}

.facilities-imgbox-list {
  margin-bottom: 30px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 599px) {
  .facilities-imgbox-list {
    margin-top: -20px;
  }
}

.facilities-imgbox-list__item {
  width: calc( ( 99.9% - ( 30px * 2 ) ) / 3);
}

@media screen and (max-width: 599px) {
  .facilities-imgbox-list__item {
    width: 80%;
    margin: 20px auto 0;
  }
}

.facilities-imgbox-list__item--etc {
  width: calc( ( 99.9% - ( 50px * 2 ) ) / 3);
}

@media screen and (max-width: 1024px) {
  .facilities-imgbox-list__item--etc {
    width: calc( ( 99.9% - ( 30px * 2 ) ) / 3);
  }
}

@media screen and (max-width: 599px) {
  .facilities-imgbox-list__item--etc {
    width: 100%;
  }
}

.facilities-imgbox-list__item__text {
  margin-top: 15px;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: justify;
}

@media screen and (max-width: 599px) {
  .facilities-imgbox-list__item__text {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}

.front-service-block {
  position: relative;
  margin-bottom: 25px;
  padding: 20px 0;
  background-color: #ecf8f9;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 599px) {
  .front-service-block {
    padding: 22px 20px;
  }
}

.front-service__point {
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  width: 128px;
  height: 112px;
  background-image: url(../img/facilities/front_circle_img.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (max-width: 1024px) {
  .front-service__point {
    width: calc( 128px * 9 / 10);
    height: calc( 112px * 9 / 10);
  }
}

@media screen and (max-width: 599px) {
  .front-service__point {
    width: calc( 128px * 7.8 / 10);
    height: calc( 112px * 7.8 / 10);
  }
}

.front-service__point__text {
  position: absolute;
  top: 32px;
  right: 1px;
  font-size: 1.7rem;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  .front-service__point__text {
    top: 26px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 599px) {
  .front-service__point__text {
    top: 22px;
    font-size: 1.3rem;
  }
}

.front-service__textbox {
  margin-left: 30px;
  width: 53%;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .front-service__textbox {
    margin-left: 22px;
    width: 46%;
  }
}

@media screen and (max-width: 599px) {
  .front-service__textbox {
    margin-left: 0;
    margin-bottom: 15px;
    width: 100%;
  }
}

.front-service__textbox__title {
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #03a7be;
  font-weight: 600;
  border-bottom: 1px dotted #01b8d2;
}

@media screen and (max-width: 599px) {
  .front-service__textbox__title {
    margin-bottom: 12px;
    padding-bottom: 12px;
    font-size: 1.5rem;
    width: 70%;
    line-height: 1.6;
  }
}

@media screen and (max-width: 320px) {
  .front-service__textbox__title {
    width: 65%;
  }
}

.front-service__textbox__text {
  font-size: 1.6rem;
  line-height: 1.75;
  text-align: justify;
}

@media screen and (max-width: 599px) {
  .front-service__textbox__text {
    font-size: 1.4rem;
  }
}

.front-service__imgbox {
  width: 230px;
}

@media screen and (max-width: 599px) {
  .front-service__imgbox {
    width: 100%;
    margin: auto;
  }
}

.facilities-service-list {
  margin-top: -10px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.facilities-service__item {
  margin-top: 10px;
  margin-left: 10px;
  padding: 70px 2px 15px;
  width: calc( ( 99.9% - ( 10px * 4 ) ) / 5);
  border: 2px solid #dcdcdc;
  background-repeat: no-repeat;
  background-position: 50% 25px;
}

.facilities-service__item:first-child {
  margin-left: 0;
}

@media screen and (max-width: 599px) {
  .facilities-service__item {
    width: calc( ( 99.9% - ( 10px * 1 ) ) / 2);
  }
  .facilities-service__item:nth-child(2n-1) {
    margin-left: 0;
  }
}

.facilities-service__item.front-item01 {
  background-image: url(../img/facilities/front_icon01.svg);
  background-position: 50% 18px;
  background-size: 45px auto;
}

.facilities-service__item.front-item02 {
  background-image: url(../img/facilities/front_icon02.svg);
  background-position: 50% 14px;
  background-size: 39px auto;
}

.facilities-service__item.front-item03 {
  background-image: url(../img/facilities/front_icon03.svg);
  background-position: 50% 18px;
  background-size: 42px auto;
}

.facilities-service__item.front-item04 {
  background-image: url(../img/facilities/front_icon04.svg);
  background-position: 50% 14px;
  background-size: 47px auto;
}

.facilities-service__item.front-item05 {
  background-image: url(../img/facilities/front_icon05.svg);
  background-position: 50% 15px;
  background-size: 42px auto;
}

.facilities-service__item.room-item01 {
  background-image: url(../img/facilities/room_icon01.svg);
  background-position: 50% 17px;
  background-size: 48px auto;
}

.facilities-service__item.room-item02 {
  background-image: url(../img/facilities/room_icon02.svg);
  background-position: 50% 16px;
  background-size: 39px auto;
}

.facilities-service__item.room-item03 {
  background-image: url(../img/facilities/room_icon03.svg);
  background-position: 50% 18px;
  background-size: 47px auto;
}

.facilities-service__item.room-item04 {
  background-image: url(../img/facilities/room_icon04.svg);
  background-position: 50% 15px;
  background-size: 45px auto;
}

.facilities-service__item.room-item05 {
  background-image: url(../img/facilities/room_icon05.svg);
  background-position: 50% 12px;
  background-size: 52px auto;
}

.facilities-service__item__text {
  font-size: 1.5rem;
  line-height: 1.2;
  color: #03a5bc;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .facilities-service__item__text {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

.rental-block {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 599px) {
  .rental-block {
    margin-top: -18px;
  }
}

.rental-box {
  border: 2px solid #dcdcdc;
}

@media screen and (max-width: 599px) {
  .rental-box {
    margin-top: 18px;
  }
}

.rental-box--left {
  width: 66.7%;
}

@media screen and (max-width: 599px) {
  .rental-box--left {
    width: 100%;
  }
}

.rental-box--right {
  width: calc( 100% - 66.7% - 25px);
}

@media screen and (max-width: 1024px) {
  .rental-box--right {
    width: calc( 100% - 66.7% - 20px);
  }
}

@media screen and (max-width: 599px) {
  .rental-box--right {
    width: 100%;
  }
}

.rental-box__title {
  margin-bottom: 22px;
  padding: 10px 10px;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  background-color: #01b8d2;
}

@media screen and (max-width: 599px) {
  .rental-box__title {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
}

.rental-box__text {
  margin-bottom: 20px;
  padding: 0 25px;
  text-align: justify;
}

@media screen and (max-width: 599px) {
  .rental-box__text {
    margin-bottom: 15px;
    padding: 0 15px;
  }
}

.rental-box__imgbox {
  padding: 0 35px 30px 25px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media screen and (max-width: 1024px) {
  .rental-box__imgbox {
    padding: 0 25px 30px 25px;
  }
}

@media screen and (max-width: 599px) {
  .rental-box__imgbox {
    margin-top: -10px;
    padding: 0 15px 18px 15px;
  }
}

.rental-box__imgbox__item {
  margin-left: 20px;
  width: calc( ( 99.9% - ( 20px * 3 )) / 4);
}

.rental-box__imgbox__item:first-child {
  margin-left: 0;
}

@media screen and (max-width: 1024px) {
  .rental-box__imgbox__item {
    margin-left: 10px;
    width: calc( ( 99.9% - ( 10px * 3 )) / 4);
  }
}

@media screen and (max-width: 599px) {
  .rental-box__imgbox__item {
    margin-top: 10px;
    width: calc( ( 99.9% - ( 10px * 1 )) / 2);
  }
  .rental-box__imgbox__item:nth-child(2n-1) {
    margin-left: 0;
  }
}

.rental-box__imgbox__item--right {
  width: 60%;
}

.outline-table {
  margin-bottom: 40px;
  width: 100%;
  border-collapse: collapse;
  border-top: 1px dotted #abb9bb;
}

@media screen and (max-width: 599px) {
  .outline-table {
    margin-bottom: 10px;
  }
}

.outline-table tr {
  border-bottom: 1px dotted #abb9bb;
}

.outline-table th, .outline-table td {
  font-size: 1.6rem;
  line-height: 1.5;
}

@media screen and (max-width: 599px) {
  .outline-table th, .outline-table td {
    display: block;
    width: 100%;
    font-size: 1.4rem;
  }
}

.outline-table th {
  position: relative;
  width: 210px;
  padding: 24px 20px 22px 5px;
  text-align: left;
  color: #04a4bb;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
}

@media screen and (max-width: 599px) {
  .outline-table th {
    padding: 18px 15px 3px 15px;
    display: block;
    width: 100%;
    font-size: 1.5rem;
  }
}

.outline-table th::before {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 30px;
  background-color: #01b8d2;
}

@media screen and (max-width: 599px) {
  .outline-table th::before {
    top: 19px;
    bottom: auto;
    right: auto;
    left: 0;
    margin: auto;
    width: 1px;
    height: 20px;
  }
}

.outline-table td {
  padding: 24px 5px 22px 35px;
}

@media screen and (max-width: 599px) {
  .outline-table td {
    padding: 3px 0 18px 15px;
    line-height: 1.7;
  }
}

@media screen and (max-width: 1024px) {
  .outline-table td .tel-link {
    text-decoration: underline;
  }
}

.text-wait {
  margin-bottom: 50px;
  padding: 60px 20px;
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: center;
  background-color: #f7f7f7;
}

@media screen and (max-width: 599px) {
  .text-wait {
    margin-bottom: 40px;
    padding: 35px 20px;
    font-size: 1.5rem;
    line-height: 1.7;
  }
}

.text-wait__english {
  margin-bottom: 20px;
  display: block;
  font-size: 2.5rem;
  line-height: 1.4;
  color: #01aec7;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

@media screen and (max-width: 599px) {
  .text-wait__english {
    margin-bottom: 12px;
    font-size: 2.1rem;
    line-height: 1.4;
  }
}

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