@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/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hina+Mincho&display=swap");
/* ブレイクポイント参考

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

*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@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 (min-width: 599px) and (max-width: 1024px) {
  .tb {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
/*--------------------------------------------------------

	リセット : html5reset-1.6.1.css

参考
https://coliss.com/articles/build-websites/operation/css/my-css-reset-by-ire.html
----------------------------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html {
  font-size: 62.5%;
}

/*body設定*/
body {
  margin: 0;
  padding: 0;
  /*font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;*/
  font-family: "Hina Mincho", serif;
  color: #555;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  line-height: 1.7;
  font-size: 1.7rem;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  /*任意でフォントサイズを指定*/
}
@media screen and (min-width: 1025px) {
  body {
    font-weight: 500;
  }
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.5rem;
  }
}

/*IE用：游ゴシックの謎余白をなくすためフォントを別指定*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Meiryo, sans-serif;
  }
}
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

/*テーブル指定*/
table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています marginを指定したら地獄*/
ul[class],
ol[class] {
  list-style: none;
}

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

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

/* 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;
  -webkit-backface-visibility: hidden;
  width: auto;
  max-width: 100%;
  height: auto;
}

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

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

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
a:not([class]) {
  color: #ef7ea2;
}

a:not([class]):active {
  color: #ef7ea2;
}

a:not([class]):visited {
  color: #ef7ea2;
}

/*すべての要素のfont-family, font-size, line-heightをその親から継承するようにリセット*/
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/*属性と状態のCSSリセット*/
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/*box-sizing*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  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;
}

/*iOSでのsubmit, buttonのデザインをリセットするCSS*/
button,
input[type=submit],
input[type=button],
input[type=search] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
button::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}
button::focus,
input[type=submit]::focus,
input[type=button]::focus,
input[type=search]::focus {
  outline-offset: -2px;
}

/* Form */
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: inherit;
  font-size: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}

button,
input[type=submit],
input[type=button],
input[type=radio],
input[type=checkbox],
label,
select {
  cursor: pointer;
}

/** Form Select IE 11 */
select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

/** Selection */
::-moz-selection,
::selection {
  background-color: #b3d4fc;
  /* Change as appropriate */
  color: #000;
  /* Change as appropriate */
  text-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

p, h1, h2, h3, h4, h5, dt, dd, a {
  font-display: swap;
}

/*マージン*/
.mb00 {
  margin-bottom: 0px !important;
}
@media screen and (max-width: 599px) {
  .mb00 {
    margin-bottom: 0px !important;
  }
}

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

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

.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: 599px) {
  .mb20 {
    margin-bottom: 10px !important;
  }
}

.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: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb30 {
    margin-bottom: 15px !important;
  }
}

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

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

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

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

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

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

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

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

.mt00 {
  margin-top: 0px !important;
}
@media screen and (max-width: 599px) {
  .mt00 {
    margin-top: 0px !important;
  }
}

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

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

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

.mt30 {
  margin-top: 30px !important;
}
@media screen and (max-width: 1024px) {
  .mt30 {
    margin-top: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt30 {
    margin-top: 15px !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 1024px) {
  .mt40 {
    margin-top: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt40 {
    margin-top: 20px !important;
  }
}

@media print {
  .sp {
    display: none !important;
  }
  body {
    width: 1600px;
    -webkit-print-color-adjust: exact;
    transform: scale(0.6);
    -moz-transform: scale(0.6);
    -webkit-transform: scale(0.6);
    transform-origin: 0 0;
  }
  /*　------- ↓その他参考例　---------
  .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%; //サイト幅を解除
  }
  ------- ↑その他参考　---------*/
}
/*--------------------------------------------------------
body設定
----------------------------------------------------------*/
@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
.footer {
  width: calc(100% - 300px);
  margin-left: 300px;
  padding: 80px 40px 60px;
  text-align: center;
  background-color: #f5f6f5;
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
}

#nav-open {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background-color: #ef7ea2;
  z-index: 100;
  border-radius: 5px;
}
@media screen and (min-width: 1025px) {
  #nav-open {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  #nav-open {
    top: 13px;
    right: 12px;
    width: 50px;
    height: 50px;
  }
}
#nav-open.active {
  background-color: rgba(255, 255, 255, 0.3);
}
#nav-open > span {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 18px;
  height: 18px;
  margin: auto;
}
#nav-open > span > span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 2px;
  margin: auto;
  background-color: #fff;
  transition: all 0.3s ease;
}
#nav-open > span > span::before, #nav-open > span > span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
#nav-open > span > span::before {
  top: -7px;
}
#nav-open > span > span::after {
  bottom: -7px;
}
#nav-open.active > span > span {
  background-color: transparent;
}
#nav-open.active > span > span::before, #nav-open.active > span > span::after {
  top: 0;
}
#nav-open.active > span > span::before {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
#nav-open.active > span > span::after {
  -webkit-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

#nav-content {
  overflow: scroll;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
  background-color: rgba(239, 126, 162, 0.95);
  transition: all 0.3s ease;
  pointer-events: none;
  opacity: 0;
}
@media screen and (min-width: 1025px) {
  #nav-content {
    display: none;
  }
}

#nav-input {
  display: none;
}
#nav-input:checked ~ #nav-content {
  pointer-events: auto;
  opacity: 1;
}

.base-anchor {
  text-align: center;
}
@media screen and (max-width: 599px) {
  .base-anchor {
    margin-bottom: 20px;
  }
}
.base-anchor__item {
  border-left: 1px solid #dddddd;
  display: inline-block;
}
.base-anchor__item:last-child {
  border-right: 1px solid #dddddd;
}
.base-anchor__link {
  padding: 10px 70px;
  display: block;
  color: #000;
  font-size: 1.6rem;
}
@media screen and (min-width: 1025px) {
  .base-anchor__link:hover {
    color: #ef7ea2;
    font-weight: bold;
  }
}
@media screen and (max-width: 1024px) {
  .base-anchor__link {
    padding: 10px 45px;
  }
}
@media screen and (max-width: 599px) {
  .base-anchor__link {
    font-size: 1.4rem;
    padding: 10px 15px;
  }
}
.base-anchor__link.active {
  color: #ef7ea2;
  font-weight: bold;
  position: relative;
}
.base-anchor__link.active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ef7ea2;
}

/*---------------------------------------
animation
----------------------------------------*/
@media screen and (min-width: 1025px) {
  .d0_1 {
    animation-delay: 0.1s;
  }
  .d0_2 {
    animation-delay: 0.2s;
  }
  .d0_3 {
    animation-delay: 0.3s;
  }
  .d0_4 {
    animation-delay: 0.4s;
  }
  .d0_5 {
    animation-delay: 0.5s;
  }
  .d0_6 {
    animation-delay: 0.6s;
  }
  .d0_7 {
    animation-delay: 0.7s;
  }
  .d0_8 {
    animation-delay: 0.8s;
  }
  .d0_9 {
    animation-delay: 0.9s;
  }
  .d1_0 {
    animation-delay: 1s;
  }
  .d1_1 {
    animation-delay: 1.1s;
  }
  .d1_2 {
    animation-delay: 1.2s;
  }
  .d1_3 {
    animation-delay: 1.3s;
  }
  .d1_4 {
    animation-delay: 1.4s;
  }
  .d1_5 {
    animation-delay: 1.5s;
  }
  .d1_6 {
    animation-delay: 1.6s;
  }
  .d1_7 {
    animation-delay: 1.7s;
  }
  .d1_8 {
    animation-delay: 1.8s;
  }
  .d1_9 {
    animation-delay: 1.9s;
  }
  .d2_0 {
    animation-delay: 2s;
  }
  .d2_1 {
    animation-delay: 2.1s;
  }
  .d2_2 {
    animation-delay: 2.2s;
  }
  .d2_3 {
    animation-delay: 2.3s;
  }
  .d2_4 {
    animation-delay: 2.4s;
  }
  .d2_5 {
    animation-delay: 2.5s;
  }
  .d2_6 {
    animation-delay: 2.6s;
  }
  .d2_7 {
    animation-delay: 2.7s;
  }
  .d2_8 {
    animation-delay: 2.8s;
  }
  .d2_9 {
    animation-delay: 2.9s;
  }
  .d3_0 {
    animation-delay: 3s;
  }
  .d3_5 {
    animation-delay: 3.5s;
  }
  .d4_0 {
    animation-delay: 4s;
  }
}
@keyframes katakata {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  21% {
    transform: translate(0, 0) rotate(0deg);
  }
  22% {
    transform: translate(0, 0) rotate(-3deg);
  }
  23% {
    transform: translate(0, -1px) rotate(0deg);
  }
  24% {
    transform: translate(0, -1px) rotate(3deg);
  }
  25% {
    transform: translate(1px, 0) rotate(-2deg);
  }
  26% {
    transform: translate(0, 1px) rotate(0deg);
  }
  27% {
    transform: translate(0, 0) rotate(3deg);
  }
  28% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
@-webkit-keyframes swing {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(4deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(-4deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-webkit-keyframes swing2 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-webkit-keyframes swing3 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-0.8deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(0.8deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-webkit-keyframes swing4 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(0.8deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(-0.8deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*--------------------------------------------------------
title
----------------------------------------------------------*/
.page-title {
  color: #fff;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
  background-image: url(../img/top/footer_image.jpg);
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px 40px 40px;
  margin: 50px;
  border-radius: 3px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .page-title {
    margin: 30px;
    font-size: 4rem;
  }
}
@media screen and (max-width: 599px) {
  .page-title {
    margin: 20px 10px 20px;
    padding: 30px 20px 30px;
    text-align: center;
    font-size: 3rem;
  }
}
.page-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(164, 77, 104, 0.2);
  border-radius: 3px;
}
.page-title > span {
  position: relative;
  z-index: 1;
}
.page-title > span > span {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  -webkit-text-stroke: 0.4px #fff;
}
@media screen and (max-width: 599px) {
  .page-title > span > span {
    font-size: 1.5rem;
  }
}
.page-title--f-jp {
  font-size: 4rem;
}
@media screen and (max-width: 1024px) {
  .page-title--f-jp {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 599px) {
  .page-title--f-jp {
    font-size: 2.6rem;
    letter-spacing: 0;
  }
}
.page-title--f-jp > span > span {
  padding-bottom: 8px;
}

/*--------------------------------------------------------
top
----------------------------------------------------------*/
.main {
  width: 100%;
  padding: 20px;
  background-image: url(../img/common/pink_bg.jpg);
  background-repeat: repeat;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-flow: row-reverse;
}
@media screen and (min-width: 1025px) {
  .main img {
    image-rendering: -webkit-optimize-contrast;
  }
}
@media screen and (max-width: 768px) {
  .main {
    display: block;
    padding: 20vw 20px 20px;
  }
}
@media screen and (max-width: 599px) {
  .main {
    padding: 24vw 20px 20px;
  }
}
.main__text {
  width: 35%;
  /*padding: 30px 0 30px 10vw;*/
}
@media screen and (max-width: 1024px) {
  .main__text {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .main__text {
    width: 100%;
  }
}
.main__text__tag {
  width: 25vw;
  padding: 10px 0 0 10px;
}
@media screen and (max-width: 1700px) {
  .main__text__tag {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .main__text__tag {
    width: 45vw;
    position: absolute;
    left: 10px;
    top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .main__text__tag {
    width: 55vw;
  }
}
.main__text__tag img {
  width: 100%;
}
.main__text__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 6.5vw;
}
@media screen and (max-width: 1024px) {
  .main__text__box {
    padding-left: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .main__text__box {
    padding-left: 0;
  }
}
.main__text__box__title {
  width: 10vw;
}
.main__text__box__title img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .main__text__box__title {
    position: absolute;
    width: 17vw;
    left: 2.5vw;
    top: 19.5vw;
  }
}
@media screen and (max-width: 599px) {
  .main__text__box__title {
    position: absolute;
    width: 16.5vw;
    left: 3.3vw;
    top: 23.5vw;
  }
}
.main__text__box__text {
  color: #fff;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  letter-spacing: 0.8rem;
  line-height: 2.2;
  font-size: 1.1vw;
  margin: 1vw 2vw 0 0;
  -webkit-text-stroke: 0.2px #fff;
}
@media screen and (max-width: 1024px) {
  .main__text__box__text {
    letter-spacing: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .main__text__box__text {
    width: 100%;
    margin: 0 0 20px;
    font-size: 2.6vw;
    line-height: 1.8;
    text-align: center;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    -o-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    font-weight: 400;
  }
}
@media screen and (max-width: 599px) {
  .main__text__box__text {
    font-size: 1.4rem;
    margin: 0 0 15px;
    line-height: 1.6;
  }
}
.main__text__circle {
  position: absolute;
  bottom: 1.5vw;
  left: 1.5vw;
  font-size: 1vw;
  /*font-size: 1.7rem;*/
  line-height: 1.5;
  color: #fff;
  /*padding: 35px 30px 35px;*/
  padding: 1.2vw 1vw 1.8vw;
  text-align: center;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url(../img/top/circle.png);
  letter-spacing: 0.2rem;
  width: 11vw;
  -webkit-text-stroke: 0.2px #fff;
}
@media screen and (max-width: 1024px) {
  .main__text__circle {
    bottom: 10px;
    left: 10px;
    padding: 0.9vw 1vw 2.1vw;
    width: 14vw;
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  .main__text__circle {
    font-size: 3vw;
    position: static;
    width: 100%;
    background-image: url();
    background-color: #ab9d51;
  }
}
@media screen and (max-width: 599px) {
  .main__text__circle {
    padding: 10px 0;
  }
}
.main__text__circle--large {
  line-height: 1;
  font-size: 1.8vw;
  display: inline-block;
  /*font-size: 2.4rem;*/
}
@media screen and (max-width: 1024px) {
  .main__text__circle--large {
    line-height: 1;
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 768px) {
  .main__text__circle--large {
    font-size: 5vw;
  }
}
.main__text__circle--small {
  line-height: 1.8;
  font-size: 0.8vw;
  /*font-size:1.3rem;*/
}
@media screen and (max-width: 1024px) {
  .main__text__circle--small {
    line-height: 1.2;
    font-size: 1vw;
  }
}
@media screen and (max-width: 768px) {
  .main__text__circle--small {
    font-size: 3vw;
  }
}
.main__photo {
  width: 65%;
  height: 100%;
}
.main__photo img {
  image-rendering: -webkit-optimize-contrast;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .main__photo {
    width: 80%;
    margin: 0 0 20px auto;
  }
}
@media screen and (max-width: 599px) {
  .main__photo {
    margin: 0 0 15px auto;
  }
}

.main-renew {
  width: 100%;
  min-height: 780px !important;
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 599px) {
  .main-renew {
    height: auto;
  }
}
.main-renew__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 599px) {
  .main-renew__video {
    position: relative;
    height: 100vh;
  }
}
.main-renew__video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.main-renew__video video {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 599px) {
  .main-renew__video video {
    height: 100vh;
  }
}
.main-renew__video:not(.js_active)::before {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
}
.main-renew__video:not(.js_active)::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 60px;
  height: 60px;
  background-image: url(../img/loading.gif);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
.main-renew__text {
  position: absolute;
  top: 82px;
  left: 90px;
  width: 166px;
  z-index: 3;
  height: 82%;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .main-renew__text {
    top: 70px;
    left: 50px;
  }
}
@media screen and (max-width: 1300px) {
  .main-renew__text {
    top: 40px;
    left: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .main-renew__text {
    top: 80px;
    left: 50px;
  }
}
@media screen and (max-width: 599px) {
  .main-renew__text {
    top: 40px;
    left: 30px;
    width: 110px;
    height: 100%;
  }
}
.main-renew__text img {
  max-height: 740px;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 599px) {
  .main-renew__text img {
    max-height: 490px;
    height: auto;
  }
}
.main-renew__box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 780px !important;
  z-index: 3;
}
@media screen and (max-width: 599px) {
  .main-renew__box {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    min-height: auto !important;
  }
}
.main-renew__text-circle {
  position: absolute;
  right: 50px;
  bottom: 210px;
  width: 210px;
  height: 210px;
  background-color: #df7284;
  border-radius: 50%;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  padding-top: 20px;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1400px) {
  .main-renew__text-circle {
    right: 20px;
    bottom: 200px;
  }
}
@media screen and (max-width: 599px) {
  .main-renew__text-circle {
    position: relative;
    left: auto;
    bottom: auto;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    border-radius: 0;
    padding: 17px 15px 20px;
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.main-renew__text-circle--large {
  font-size: 2.7rem;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .main-renew__text-circle--large {
    font-size: 3.2rem;
  }
}
.main-renew__text-circle--small {
  font-size: 1.3rem;
  font-weight: 400;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
}
@media screen and (max-width: 599px) {
  .main-renew__text-circle--small {
    font-size: 1.7rem;
  }
}
.main-renew__text-circle__map-link {
  margin-top: 10px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.5rem;
  letter-spacing: 0;
  background-color: #fff;
  display: inline-block;
  border-radius: 2px;
  padding: 7px 28px 9px 25px;
  line-height: 1.3;
  border-radius: 100px;
  color: #e34c65;
  background-image: url(../img/common/icon_target.svg);
  background-repeat: no-repeat;
  background-position: right 9px top 50%;
  background-size: 14px auto;
}
@media screen and (min-width: 1025px) {
  .main-renew__text-circle__map-link:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .main-renew__text-circle__map-link {
    font-weight: 500;
    padding: 9px 34px 12px 30px;
    background-position: right 14px top 48%;
    font-size: 1.6rem;
  }
}
.main-renew__text-circle2 {
  position: absolute;
  right: 50px;
  bottom: 210px;
  width: 170px;
  height: 170px;
  background-color: #153386;
  border-radius: 50%;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  padding-top: 20px;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1400px) {
  .main-renew__text-circle2 {
    right: 20px;
    bottom: 200px;
  }
}
@media screen and (max-width: 599px) {
  .main-renew__text-circle2 {
    position: relative;
    left: auto;
    bottom: auto;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    border-radius: 0;
    padding: 17px 15px 20px;
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.main-renew__text-circle2--large {
  font-size: 2.5rem;
  line-height: 1;
}
.main-renew__text-circle2--small {
  margin-top: 5px;
  margin-bottom: 2px;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  line-height: 1.4;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .main-renew__text-circle2--small {
    margin-bottom: 7px;
    font-size: 1.7rem;
  }
}
.main-renew__copy {
  font-size: 1.9rem;
  color: #fff;
  position: absolute;
  right: 50px;
  bottom: 50px;
  letter-spacing: 0.25em;
  line-height: 2;
}
@media screen and (max-width: 1400px) {
  .main-renew__copy {
    right: 30px;
    bottom: 30px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .main-renew__copy {
    position: relative;
    right: auto;
    bottom: auto;
    margin-bottom: 20px;
    color: #ef7ea2;
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: 0;
    font-weight: 500;
    line-height: 1.8;
    -webkit-text-stroke: 0.2px #ef7ea2;
  }
}
.main-renew__full-bnr {
  position: absolute;
  top: 85px;
  right: 40px;
  max-width: 230px;
}
@media screen and (max-width: 1300px) {
  .main-renew__full-bnr {
    top: 75px;
    right: 30px;
  }
}
@media screen and (max-width: 599px) {
  .main-renew__full-bnr {
    position: relative;
    top: auto;
    right: auto;
    max-width: 100%;
    padding: 20px 30px;
    text-align: center;
    background-color: #f2f2f2;
  }
  .main-renew__full-bnr img {
    width: 100%;
    max-width: 250px;
  }
}
@media screen and (min-width: 1025px) {
  .main-renew__full-bnr a:hover {
    opacity: 0.8;
  }
}
.main-renew__sns-icon {
  position: absolute;
  right: 50px;
  top: 40px;
  z-index: 4;
}
@media screen and (max-width: 1300px) {
  .main-renew__sns-icon {
    right: 30px;
    top: 30px;
  }
}
.main-renew__sns-icon > ul {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.main-renew__sns-icon > ul > li {
  margin-left: 17px;
}
@media screen and (min-width: 1025px) {
  .main-renew__sns-icon > ul > li > a:hover {
    opacity: 0.8;
  }
}
.main-renew__sns-icon__youtube {
  max-width: 23px;
}
.main-renew__sns-icon__twitter {
  max-width: 22px;
}
.main-renew__sns-icon__facebook {
  max-width: 20px;
}
.main-renew__sns-icon__insta {
  max-width: 21px;
}

.main-renew-guide-link {
  position: fixed;
  bottom: 200px;
  right: 0;
  z-index: 4;
  width: 110px;
  height: 110px;
  margin-top: 150px;
}
@media screen and (max-width: 599px) {
  .main-renew-guide-link {
    top: auto;
    bottom: 30px;
    margin-top: 0;
    height: 64px;
  }
}
.main-renew-guide-link a {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  width: 100%;
  height: 100%;
  padding: 45px 5px 20px;
  background-color: #ef7ea2;
  display: block;
  color: #fff !important;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.05em;
  position: relative;
  background-image: url(../img/common/icon_tour.png);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: 48px 15px;
}
@media screen and (min-width: 1025px) {
  .main-renew-guide-link a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .main-renew-guide-link a {
    padding: 10px 10px 20px;
    font-size: 1.2rem;
    background-image: none;
  }
}
.main-renew-guide-link a::before {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(90deg);
}

.main-renew-midokoro-map {
  position: fixed;
  bottom: 20px;
  right: 10px;
  width: 200px;
  z-index: 4;
}
@media screen and (min-width: 1025px) {
  .main-renew-midokoro-map img {
    transition: 0.3s;
  }
  .main-renew-midokoro-map img:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .main-renew-midokoro-map {
    width: 100px;
    bottom: 105px;
    right: 10px;
  }
}

.main-renew-sns {
  position: fixed;
  width: 32px;
  bottom: 320px;
  right: 30px;
  margin-top: -60px;
  z-index: 4;
}
@media screen and (max-width: 599px) {
  .main-renew-sns {
    top: 10px;
    right: 0;
    margin-top: 0;
    width: 170px;
  }
}
.main-renew-sns > li {
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .main-renew-sns > li {
    width: 32px;
    float: left;
    margin-right: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .main-renew-sns > li a:hover {
    opacity: 0.6;
  }
}

.lead {
  padding: 150px 50px 80px;
  text-align: center;
  background-image: url(../img/top/sakura01.png);
  background-repeat: no-repeat;
  background-position: 60px 60px;
}
@media screen and (max-width: 1400px) {
  .lead {
    padding: 100px 50px 60px;
    background-position: 40px 40px;
    background-size: 220px auto;
  }
}
@media screen and (max-width: 1024px) {
  .lead {
    padding: 80px 30px 100px;
  }
}
@media screen and (max-width: 599px) {
  .lead {
    padding: 40px 20px 60px;
    background-image: none;
  }
}
.lead__title {
  color: #ef7ea2;
  font-size: 3.2rem;
  letter-spacing: 0.5rem;
  margin-bottom: 50px;
  background-image: url(../img/top/lead_sakura01.png);
  background-repeat: no-repeat;
  background-position: top 10px right 0;
  display: inline-block;
  -webkit-text-stroke: 0.3px #ef7ea2;
}
@media screen and (max-width: 1024px) {
  .lead__title {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .lead__title {
    font-size: 5vw;
    letter-spacing: 0.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    background-image: none;
  }
}
.lead__title--gold {
  color: #ab9d51;
  -webkit-text-stroke: 0.3px #ab9d51;
}
.lead__title--large {
  font-size: 4.6rem;
}
@media screen and (max-width: 1024px) {
  .lead__title--large {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 599px) {
  .lead__title--large {
    font-size: 8vw;
  }
}
.lead__flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .lead__flex-box {
    display: block;
  }
}
.lead__flex-box__photo {
  width: 50%;
}
@media screen and (max-width: 1300px) {
  .lead__flex-box__photo {
    width: 52%;
  }
}
@media screen and (max-width: 1024px) {
  .lead__flex-box__photo {
    max-width: 700px;
    width: 100%;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 599px) {
  .lead__flex-box__photo {
    margin: 0 auto 20px;
  }
}
.lead__flex-box__text {
  width: 50%;
  padding: 0 0 0 4vw;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1300px) {
  .lead__flex-box__text {
    width: 48%;
    padding: 0 0 0 3vw;
  }
}
@media screen and (max-width: 1024px) {
  .lead__flex-box__text {
    position: static;
    width: 100%;
    padding: 0;
  }
}
.lead__flex-box__text__text {
  text-align: left;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
  line-height: 2.2;
  text-align: justify;
  margin-bottom: 40px;
  -webkit-text-stroke: 0.3px #555;
}
@media screen and (max-width: 1300px) {
  .lead__flex-box__text__text {
    line-height: 2;
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .lead__flex-box__text__text {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .lead__flex-box__text__text {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #222;
    -webkit-text-stroke: 0.3px #222;
  }
}
.lead__flex-box__text__photo img {
  image-rendering: -webkit-optimize-contrast;
}

.point {
  text-align: center;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}
@media screen and (max-width: 1024px) {
  .point {
    padding: 0 30px;
  }
}
@media screen and (max-width: 599px) {
  .point {
    padding: 0 10px;
  }
}
.point__wrap {
  border: 2px solid #edc4d1;
  background: #f9f8f1;
  padding: 5px;
  position: relative;
}
.point__wrap__inner {
  border: 2px solid #edc4d1;
  background: #f9f8f1;
  position: relative;
  padding: 45px 80px 100px;
}
@media screen and (max-width: 1200px) {
  .point__wrap__inner {
    padding: 45px 40px 40px;
  }
}
@media screen and (max-width: 599px) {
  .point__wrap__inner {
    padding: 40px 20px 40px;
  }
}
.point__wrap__inner__parts {
  position: absolute;
  left: 50%;
  top: -90px;
  width: 270px;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 599px) {
  .point__wrap__inner__parts {
    width: 200px;
    top: -67px;
  }
}
.point__wrap__inner__title {
  color: #ef7ea2;
  font-size: 3.3rem;
  letter-spacing: 0.5rem;
  -webkit-text-stroke: 0.3px #ef7ea2;
}
@media screen and (max-width: 1024px) {
  .point__wrap__inner__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .point__wrap__inner__title {
    font-size: 2.8rem;
  }
}
.point__wrap__inner__flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 120px;
  position: relative;
}
.point__wrap__inner__flex-box:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .point__wrap__inner__flex-box {
    margin: 0 auto 100px;
  }
}
@media screen and (max-width: 1024px) {
  .point__wrap__inner__flex-box {
    display: block;
    margin: 0 auto 90px;
  }
}
@media screen and (max-width: 599px) {
  .point__wrap__inner__flex-box {
    margin: 0 auto 60px;
  }
}
.point__wrap__inner__flex-box--sakura01::before {
  content: "";
  position: absolute;
  left: calc(50% - 60px);
  bottom: -55px;
  background-image: url(../img/top/point_sakura01.png);
  background-repeat: no-repeat;
  background-position: left 0 bottom 0;
  width: 120px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1200px) {
  .point__wrap__inner__flex-box--sakura01::before {
    bottom: -60px;
  }
}
@media screen and (max-width: 599px) {
  .point__wrap__inner__flex-box--sakura01::before {
    bottom: -40px;
  }
}
.point__wrap__inner__flex-box--sakura02::before {
  content: "";
  position: absolute;
  left: calc(50% - 60px);
  bottom: -70px;
  background-image: url(../img/top/point_sakura01.png);
  background-repeat: no-repeat;
  background-position: left 0 bottom 0;
  width: 120px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1200px) {
  .point__wrap__inner__flex-box--sakura02::before {
    bottom: -50px;
  }
}
@media screen and (max-width: 1024px) {
  .point__wrap__inner__flex-box--sakura02::before {
    bottom: -70px;
  }
}
@media screen and (max-width: 599px) {
  .point__wrap__inner__flex-box--sakura02::before {
    bottom: -55px;
  }
}
.point__wrap__inner__flex-box--inversion {
  flex-flow: row-reverse;
}
.point__wrap__inner__flex-box__photo {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .point__wrap__inner__flex-box__photo {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
}
.point__wrap__inner__flex-box__photo__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.point__wrap__inner__flex-box__photo__list__item {
  width: calc((100% - 60px) / 3);
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .point__wrap__inner__flex-box__photo__list__item {
    width: calc((100% - 30px) / 3);
    margin-bottom: 5px;
  }
}
.point__wrap__inner__flex-box__photo__list__item__name {
  color: #ab9d51;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
  margin-top: 5px;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .point__wrap__inner__flex-box__photo__list__item__name {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .point__wrap__inner__flex-box__photo__list__item__name {
    font-size: 3vw;
    letter-spacing: 0;
  }
}
.point__wrap__inner__flex-box__text {
  width: 50%;
  padding: 0 3.5vw 0 0;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .point__wrap__inner__flex-box__text {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .point__wrap__inner__flex-box__text {
    margin-bottom: 20px;
  }
}
.point__wrap__inner__flex-box__text--inversion {
  padding: 0 0 0 3.5vw;
}
@media screen and (max-width: 1024px) {
  .point__wrap__inner__flex-box__text--inversion {
    padding: 0;
  }
}
.point__wrap__inner__flex-box__text__title-sub {
  color: #ef7ea2;
  font-size: 2.2rem;
  padding-left: 40px;
  position: relative;
  display: inline-block;
  background-image: url(../img/top/point_parts03.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left 0 bottom 0;
  line-height: 1.2;
  margin-bottom: 10px;
  -webkit-text-stroke: 0.2px #ef7ea2;
}
@media screen and (max-width: 1024px) {
  .point__wrap__inner__flex-box__text__title-sub {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .point__wrap__inner__flex-box__text__title-sub {
    font-size: 1.8rem;
    padding-left: 30px;
  }
}
.point__wrap__inner__flex-box__text__title-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 30px;
  height: 30px;
  background-image: url(../img/top/point_parts02.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 599px) {
  .point__wrap__inner__flex-box__text__title-sub::before {
    top: 13px;
    width: 25px;
    height: 25px;
  }
}
.point__wrap__inner__flex-box__text__title-sub span {
  font-size: 4.6rem;
  margin-left: 3px;
}
@media screen and (max-width: 1024px) {
  .point__wrap__inner__flex-box__text__title-sub span {
    font-size: 4rem;
  }
}
@media screen and (max-width: 599px) {
  .point__wrap__inner__flex-box__text__title-sub span {
    font-size: 3.4rem;
  }
}
.point__wrap__inner__flex-box__text__title {
  color: #ab9d51;
  font-size: 3.2rem;
  letter-spacing: 0.3rem;
  line-height: 1.6;
  -webkit-text-stroke: 0.2px #ab9d51;
}
@media screen and (max-width: 1200px) {
  .point__wrap__inner__flex-box__text__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .point__wrap__inner__flex-box__text__title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .point__wrap__inner__flex-box__text__title {
    font-size: 2rem;
  }
}
.point__wrap__inner__flex-box__text__text {
  text-align: left;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
  line-height: 2.2;
  text-align: justify;
  -webkit-text-stroke: 0.3px #555;
}
@media screen and (max-width: 1024px) {
  .point__wrap__inner__flex-box__text__text {
    font-size: 1.6rem;
    line-height: 2;
  }
}
@media screen and (max-width: 599px) {
  .point__wrap__inner__flex-box__text__text {
    font-size: 1.5rem;
    color: #222;
    -webkit-text-stroke: 0.3px #222;
  }
}

.gallery {
  padding: 0 1%;
  margin: 100px 0 80px;
}
@media screen and (max-width: 1024px) {
  .gallery {
    margin: 20px 0 0;
    padding: 10px 30px 20px;
  }
}
@media screen and (max-width: 599px) {
  .gallery {
    padding: 0 10px 20px;
  }
}
.gallery img {
  width: 100%;
}
.gallery__list__item {
  float: left;
  width: calc((100% - 120px) / 7);
  margin-right: 20px;
  margin-bottom: 20px;
}
.gallery__list__item:nth-child(7n) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .gallery__list__item {
    width: calc((100% - 60px) / 5);
    margin-right: 15px;
    margin-bottom: 15px;
  }
  .gallery__list__item:nth-child(7n) {
    margin-right: 15px !important;
  }
  .gallery__list__item:nth-child(5n) {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 599px) {
  .gallery__list__item {
    width: calc((100% - 20px) / 3);
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .gallery__list__item:nth-child(7n) {
    margin-right: 10px !important;
  }
  .gallery__list__item:nth-child(5n) {
    margin-right: 10px !important;
  }
  .gallery__list__item:nth-child(3n) {
    margin-right: 0 !important;
  }
}
.gallery__btn {
  margin: 20px 0;
}
@media screen and (max-width: 1024px) {
  .gallery__btn {
    margin: 20px 0 50px;
  }
}
@media screen and (max-width: 599px) {
  .gallery__btn {
    margin: 20px 0 40px;
  }
}
.gallery__btn a {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  background-color: #333333;
  border-radius: 3px;
  padding: 20px;
  font-size: 1.5rem;
  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;
  display: block;
  position: relative;
}
@media screen and (max-width: 599px) {
  .gallery__btn a {
    max-width: 260px;
    padding: 14px 14px 15px;
  }
}
.gallery__btn a::before {
  content: "";
  margin-top: -2px;
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.gallery__btn a:active {
  color: #fff;
}
.gallery__btn a:visited {
  color: #fff !important;
}

.gaiyou {
  padding: 140px 50px;
  background-image: url(../img/top/sakura03.png), url(../img/top/sakura02.png), url(../img/common/pink_bg.jpg), url(../img/common/pink_bg.jpg);
  background-repeat: no-repeat, no-repeat, repeat, repeat;
  background-position: 97% 94%, 40px 50px, left top, 0 0;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .gaiyou {
    padding: 80px 50px 50px;
  }
}
@media screen and (max-width: 1024px) {
  .gaiyou {
    padding: 60px 30px 30px;
  }
}
@media screen and (max-width: 599px) {
  .gaiyou {
    padding: 40px 10px 10px;
    background-image: none, none, url(../img/common/pink_bg.jpg), url(../img/common/pink_bg.jpg);
  }
}
.gaiyou__title {
  position: absolute;
  /*left: 9vw;*/
  left: calc(50% - 770px);
  top: 140px;
  color: #fff;
  font-size: 4rem;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  letter-spacing: 1rem;
}
@media screen and (max-width: 1700px) {
  .gaiyou__title {
    position: static;
    text-align: center;
    margin-bottom: 60px;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    -o-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
  }
}
@media screen and (max-width: 1024px) {
  .gaiyou__title {
    font-size: 3.5rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .gaiyou__title {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}
.gaiyou__table {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  color: #fff;
  font-size: 1.7rem;
  background-color: rgba(194, 32, 55, 0.23);
  padding: 60px 80px 80px;
}
@media screen and (max-width: 1024px) {
  .gaiyou__table {
    padding: 30px 40px 40px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .gaiyou__table {
    padding: 20px 20px 20px;
    font-size: 1.5rem;
  }
}
.gaiyou__table tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .gaiyou__table tr {
    display: block;
  }
  .gaiyou__table tr:first-child {
    border-top: 1px solid #fff;
  }
}
.gaiyou__table th, .gaiyou__table td {
  letter-spacing: 0.1rem;
  text-align: left;
  padding: 20px 0;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 599px) {
  .gaiyou__table th, .gaiyou__table td {
    display: block;
    width: 100% !important;
  }
}
.gaiyou__table th {
  width: 20%;
  font-weight: normal;
  -webkit-text-stroke: 0.2px #fff;
}
@media screen and (max-width: 599px) {
  .gaiyou__table th {
    text-align: center;
    padding: 5px 0;
  }
}
.gaiyou__table td {
  width: 78%;
  -webkit-text-stroke: 0.2px #fff;
}
@media screen and (max-width: 599px) {
  .gaiyou__table td {
    padding: 15px 0;
  }
}
.gaiyou__table td .tel-link {
  color: #fff;
}

.access-head {
  padding: 120px 40px 70px;
  text-align: center;
  background-image: url(../img/top/access_head_bg02.png), url(../img/top/access_head_bg01.png);
  background-repeat: no-repeat;
  background-position: 97% 50px, left top;
}
@media screen and (max-width: 1400px) {
  .access-head {
    padding: 100px 40px 60px;
    background-position: 97% 30px, -100px -30px;
    background-size: 270px auto, auto;
  }
}
@media screen and (max-width: 1200px) {
  .access-head {
    padding: 140px 40px 60px;
    background-size: 250px auto, auto;
    background-position: 97% 30px, -100px -80px;
  }
}
@media screen and (max-width: 1024px) {
  .access-head {
    padding: 160px 40px 40px;
  }
}
@media screen and (max-width: 599px) {
  .access-head {
    padding: 40px 10px 480px;
    background-size: 300px auto, auto;
    background-position: left 50% bottom 30px, left -100px bottom 170px;
  }
}
.access-head__title {
  font-size: 3.3rem;
  letter-spacing: 0.3rem;
  color: #ef7ea2;
  -webkit-text-stroke: 0.2px #ef7ea2;
}
@media screen and (max-width: 599px) {
  .access-head__title {
    font-size: 2.4rem;
  }
}
.access-head__text {
  border: solid 2px #ef7ea2;
  padding: 8px;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .access-head__text {
    padding: 5px;
    font-size: 1.5rem;
  }
}
.access-head__text__inner {
  border: solid 1px #ef7ea2;
  padding: 30px 0;
  background-color: #fff;
  -webkit-text-stroke: 0.3px #555;
}
@media screen and (max-width: 599px) {
  .access-head__text__inner {
    padding: 15px;
    color: #222;
    -webkit-text-stroke: 0.3px #222;
  }
}

.map {
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 1400px) {
  .map {
    height: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .map {
    height: 400px;
  }
}
@media screen and (max-width: 599px) {
  .map {
    height: 300px;
  }
}
.map iframe {
  width: 100%;
  height: 100%;
}

.footer-text {
  background-image: url(../img/top/sakura04.png);
  background-repeat: no-repeat;
  background-position: 96% 50%;
}
.footer-text__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 50px;
}
@media screen and (max-width: 1400px) {
  .footer-text__inner {
    padding: 80px 50px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-text__inner {
    padding: 60px 40px;
  }
}
@media screen and (max-width: 599px) {
  .footer-text__inner {
    padding: 30px 20px 40px;
  }
}
.footer-text__inner__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 599px) {
  .footer-text__inner__box {
    display: block;
  }
}
.footer-text__inner__box__left {
  padding-right: 80px;
  font-size: 3rem;
  border-right: 1px solid #ef7ea2;
  color: #ef7ea2;
  letter-spacing: 0.5rem;
}
.footer-text__inner__box__left span {
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .footer-text__inner__box__left {
    padding-right: 40px;
  }
}
@media screen and (max-width: 599px) {
  .footer-text__inner__box__left {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
    padding-right: 0;
    border-right: 0 solid #ef7ea2;
    border-bottom: 1px solid #ef7ea2;
  }
  .footer-text__inner__box__left span {
    font-size: 1.8rem;
  }
}
.footer-text__inner__box__right {
  padding-left: 80px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .footer-text__inner__box__right {
    padding-left: 40px;
  }
}
@media screen and (max-width: 599px) {
  .footer-text__inner__box__right {
    padding-left: 0;
  }
}
.footer-text__inner__box__right__tel {
  color: #ef7ea2;
  font-size: 1.8rem;
}
.footer-text__inner__box__right__btn {
  color: #ef7ea2;
  margin-top: 8px;
  padding: 10px 40px;
  border: solid 1px #ef7ea2;
  text-align: center;
  position: relative;
  display: block;
  background-color: #fff;
  line-height: 1.3;
  position: relative;
}
.footer-text__inner__box__right__btn::before {
  content: "";
  position: absolute;
  margin-top: -4px;
  top: 50%;
  right: 5px;
  border-style: solid;
  border-width: 4px 6px;
  border-color: transparent transparent transparent #ef7ea2;
  display: block;
}
.footer-text__inner__box__right__btn:hover {
  background-color: #ef7ea2;
  color: #fff;
}
.footer-text__inner__box__right__btn:hover::before {
  border-color: transparent transparent transparent #fff;
}

.footer-image {
  height: 300px;
  background-image: url(../img/top/footer_image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1400px) {
  .footer-image {
    height: 260px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-image {
    height: 200px;
  }
}
@media screen and (max-width: 599px) {
  .footer-image {
    height: 150px;
  }
}

.footer-copy {
  padding: 15px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: center;
  color: #ea6992;
  font-size: 1.3rem;
}

/* 桜を表示するコンテナのスタイル */
.cherry-blossom-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%; /* コンテナの高さ */
  width: 100%; /* コンテナの横幅 */
  overflow: hidden; /* コンテナからはみ出した要素を隠す */
  z-index: 10;
  pointer-events: none;
}

/* 桜の花びらのスタイル */
.petal {
  position: absolute;
  background-color: #ffc0cb; /* 花びらの色 */
  border-radius: 150% 0 150% 0;
  animation: animate-petal 10s linear;
  z-index: 11;
}

.petal::after {
  content: "";
  position: absolute;
  top: -14%;
  left: -10%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffc0cb;
  border-radius: 150% 0 150% 0;
  transform: rotate(15deg);
}

/* 花びらが降るアニメーション */
@keyframes animate-petal {
  0% {
    top: 0;
    opacity: 0;
    transform: translateX(-100px) rotate(0deg);
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    top: 100vh;
    transform: translateX(100px) rotate(3000deg);
  }
}
.sns-block {
  width: 250px;
  position: fixed;
  right: 0;
  top: 0;
  background-color: #fff;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2);
  border-bottom-left-radius: 10px;
  z-index: 100;
}
@media screen and (max-width: 599px) {
  .sns-block {
    width: 170px;
  }
}
@media screen and (max-width: 320px) {
  .sns-block {
    width: 140px;
  }
}
.sns-block__text {
  padding: 10px;
  background-color: #ab9d51;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 300;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .sns-block__text {
    display: none;
  }
}

.sns-list {
  margin: 0 auto;
  padding: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.sns-list__sns-item {
  width: 32px;
  margin-left: 10px;
}
.sns-list__sns-item:first-child {
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .sns-list__sns-item {
    margin-left: 7px;
  }
}
@media screen and (min-width: 1025px) {
  .sns-list__sns-link:hover {
    opacity: 0.7;
  }
}

/*モーダル*/
* html #info-layer_board_area .layer_board_bg,
* html #info-layer_board_area .layer_board {
  position: absolute;
}

#info-layer_board_area .layer_board_bg {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
  display: none;
  cursor: pointer;
  background: #000;
}

#info-layer_board_area .layer_board {
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 60px 40px;
  width: calc(100% - 60px);
  max-width: 800px;
  height: auto;
  background: #fff;
  border-radius: 25px;
  box-sizing: border-box;
  display: none;
  position: relative;
  z-index: 10;
  transform: translateY(-50%);
  position: fixed;
  z-index: 1001;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  #info-layer_board_area .layer_board {
    border-radius: 5px;
    padding: 30px 20px;
    font-weight: 400;
  }
}
#info-layer_board_area .layer_board__text {
  text-align: center;
  font-weight: 500;
  color: #ea6992;
  line-height: 2;
}
@media screen and (max-width: 599px) {
  #info-layer_board_area .layer_board__text {
    text-align: left;
    line-height: 1.8;
  }
}

#info-layer_board_area .layer_board-link:hover {
  opacity: 0.8;
  transition: 0.2s;
}

#info-layer_board_area .btn_close a {
  display: block;
  position: relative;
  width: 160px;
  height: 46px;
  margin: 30px auto 0;
  padding-right: 7px;
  border: 1px solid #ccc;
  color: #444;
  border-radius: 2px;
  font-size: 1.6rem;
  line-height: 43px;
  text-align: center;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.15s;
  border-radius: 100px;
}
#info-layer_board_area .btn_close a:hover {
  background-color: #f7f7f7;
}
@media screen and (max-width: 599px) {
  #info-layer_board_area .btn_close a {
    margin: 15px auto 0;
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------
gallery
----------------------------------------------------------*/
.gallery-list__list {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 50px;
}
@media screen and (max-width: 1024px) {
  .gallery-list__list {
    padding: 0 30px;
  }
}
@media screen and (max-width: 599px) {
  .gallery-list__list {
    margin-bottom: 30px;
    padding: 0 10px;
  }
}
.gallery-list__list__item {
  width: calc((100% - 40px) / 5);
  font-size: 1.6rem;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  text-align: center;
  letter-spacing: 0.1em;
  margin-left: 10px;
  margin-bottom: 10px;
  border-radius: 3px;
  overflow: hidden;
}
.gallery-list__list__item:nth-child(5n+1) {
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .gallery-list__list__item {
    width: calc((100% - 20px) / 3);
  }
  .gallery-list__list__item:nth-child(5n+1) {
    margin-left: 10px;
  }
  .gallery-list__list__item:nth-child(3n+1) {
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .gallery-list__list__item {
    width: calc((100% - 10px) / 2);
  }
  .gallery-list__list__item:nth-child(3n+1) {
    margin-left: 10px;
  }
  .gallery-list__list__item:nth-child(2n+1) {
    margin-left: 0;
  }
}
.gallery-list__list__item__caption {
  display: none;
}
.is_active .gallery-list__list__item__caption {
  display: block;
}

.gallery-list-btn {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .gallery-list-btn {
    margin-bottom: 30px;
  }
}
.gallery-list-btn a {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  background-color: #333333;
  border-radius: 3px;
  padding: 20px;
  font-size: 1.5rem;
  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;
  display: block;
  position: relative;
}
@media screen and (max-width: 599px) {
  .gallery-list-btn a {
    max-width: 260px;
    padding: 14px 14px 15px;
  }
}
.gallery-list-btn a::before {
  content: "";
  margin-top: -2px;
  position: absolute;
  left: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-135deg);
}
.gallery-list-btn a:active {
  color: #fff;
}
.gallery-list-btn a:visited {
  color: #fff !important;
}

/*--------------------------------------------------------
guide
----------------------------------------------------------*/
.guide-head {
  padding: 60px 30px 80px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .guide-head {
    padding: 20px 30px 60px;
  }
}
@media screen and (max-width: 599px) {
  .guide-head {
    padding: 10px 15px 40px;
  }
}
.guide-head__text {
  margin-bottom: 50px;
  font-size: 2rem;
  -webkit-text-stroke: 0.3px #555;
  line-height: 2;
  color: #555;
}
@media screen and (max-width: 1024px) {
  .guide-head__text {
    margin-bottom: 40px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .guide-head__text {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}
.guide-head__box {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 100px;
  background-image: url(../img/common/pink_bg.jpg);
  border-radius: 3px;
  overflow: hidden;
  color: #fff;
  letter-spacing: 0.05em;
  -webkit-text-stroke: 0.2px #fff;
  position: relative;
  font-size: 2.1rem;
  z-index: -2;
}
@media screen and (max-width: 1024px) {
  .guide-head__box {
    max-width: 100%;
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .guide-head__box {
    padding: 30px 20px;
  }
}
.guide-head__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(194, 32, 55, 0.23);
  display: block;
  z-index: -1;
}
.guide-head__box__list {
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .guide-head__box__list {
    margin-bottom: 20px;
  }
}
.guide-head__box__list > li {
  position: relative;
  z-index: 1;
  text-align: left;
  padding-left: 1.5em;
}
@media screen and (max-width: 599px) {
  .guide-head__box__list > li {
    font-size: 1.6rem;
  }
}
.guide-head__box__list > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  z-index: 1;
}
.guide-head__box__list > li span {
  font-size: 1.7rem;
}
@media screen and (max-width: 599px) {
  .guide-head__box__list > li span {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .guide-head__box .guide-contact__title {
    margin-bottom: 10px;
  }
}

.guide-download {
  border: 2px solid #edc4d1;
  background: #f9f8f1;
  padding: 5px;
  margin: 0 50px 130px;
}
@media screen and (max-width: 1024px) {
  .guide-download {
    margin: 0 30px 80px;
  }
}
@media screen and (max-width: 599px) {
  .guide-download {
    margin: 0 15px 60px;
    padding: 3px;
  }
}
.guide-download__inner {
  border: 2px solid #edc4d1;
  background: #f9f8f1;
  padding: 70px 50px 80px;
}
@media screen and (max-width: 1024px) {
  .guide-download__inner {
    padding: 50px 30px 50px;
  }
}
@media screen and (max-width: 599px) {
  .guide-download__inner {
    padding: 35px 20px 40px;
  }
}
.guide-download__title {
  margin-bottom: 10px;
  text-align: center;
  font-size: 3.3rem;
  font-weight: normal;
  -webkit-text-stroke: 0.2px #ef7ea2;
  color: #ef7ea2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .guide-download__title {
    font-size: 2.9rem;
  }
}
@media screen and (max-width: 599px) {
  .guide-download__title {
    font-size: 2.1rem;
    line-height: 1.4;
  }
}
.guide-download__text01 {
  margin-bottom: 50px;
  text-align: center;
  -webkit-text-stroke: 0.3px #555;
}
@media screen and (max-width: 1024px) {
  .guide-download__text01 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .guide-download__text01 {
    margin-bottom: 20px;
  }
}
.guide-download__block {
  max-width: 1000px;
  margin: 0 auto;
}
.guide-download__block__title {
  margin-bottom: 30px;
  padding-bottom: 10px;
  font-size: 2.7rem;
  line-height: 1.3;
  font-weight: normal;
  -webkit-text-stroke: 0.4px #555;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 1024px) {
  .guide-download__block__title {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .guide-download__block__title {
    font-size: 1.8rem;
  }
}
.guide-download__block__title2 {
  font-size: 2.1rem;
  color: #ef7ea2;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .guide-download__block__title2 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .guide-download__block__title2 {
    font-size: 1.7rem;
  }
}
.guide-download__block__column2 {
  margin-bottom: 30px;
  *zoom: 1;
}
.guide-download__block__column2:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 1024px) {
  .guide-download__block__column2 {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .guide-download__block__column2 {
    margin-bottom: 40px;
  }
}
.guide-download__block__column2__text-box {
  width: 50%;
  float: left;
}
@media screen and (max-width: 599px) {
  .guide-download__block__column2__text-box {
    width: 100%;
    float: none;
  }
}
.guide-download__block__column2__text-box__box {
  margin-bottom: 30px;
  padding: 30px;
  background-color: #fff;
  border-radius: 3px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .guide-download__block__column2__text-box__box {
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .guide-download__block__column2__text-box__box {
    margin-bottom: 20px;
  }
}
.guide-download__block__column2__text-box__box a {
  text-decoration: underline;
}
.guide-download__block__column2__text-box__box a:hover {
  text-decoration: none;
}
.guide-download__block__column2__movie {
  width: 47%;
  margin-left: 3%;
  position: relative;
  float: right;
}
@media screen and (max-width: 599px) {
  .guide-download__block__column2__movie {
    width: 100%;
    margin-left: 0;
    float: none;
  }
}
.guide-download__block__column2__movie::before {
  content: "";
  padding-bottom: 56.25%;
  display: block;
}
.guide-download__block__column2__movie iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.guide-download__block__column1 {
  padding: 30px;
  background-color: #fff;
  border-radius: 3px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.8;
}
.guide-download__block__column1 a {
  text-decoration: underline;
}
.guide-download__block__column1 a:hover {
  text-decoration: none;
}

.guide-location {
  margin-bottom: 100px;
  padding: 0 50px;
}
@media screen and (max-width: 1024px) {
  .guide-location {
    margin-bottom: 80px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 599px) {
  .guide-location {
    margin-bottom: 50px;
    padding: 0 15px;
  }
}
.guide-location__title {
  margin-bottom: 40px;
  text-align: center;
  font-size: 3.3rem;
  font-weight: normal;
  -webkit-text-stroke: 0.2px #ef7ea2;
  color: #ef7ea2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .guide-location__title {
    margin-bottom: 30px;
    font-size: 3.1rem;
  }
}
@media screen and (max-width: 599px) {
  .guide-location__title {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
}
.guide-location__text {
  margin-bottom: 60px;
  text-align: center;
  -webkit-text-stroke: 0.3px #444;
  line-height: 2.2;
  color: #444;
}
@media screen and (max-width: 1024px) {
  .guide-location__text {
    margin-bottom: 40px;
    font-size: 1.6rem;
    text-align: justify;
  }
}
@media screen and (max-width: 599px) {
  .guide-location__text {
    margin-bottom: 35px;
    line-height: 2;
    -webkit-text-stroke: 0.2px #444;
  }
}
.guide-location__list {
  max-width: 1340px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 599px) {
  .guide-location__list {
    display: block;
  }
}
.guide-location__list > li {
  margin-left: 70px;
}
@media screen and (max-width: 1024px) {
  .guide-location__list > li {
    margin-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .guide-location__list > li {
    margin-left: 0;
    margin-bottom: 25px;
  }
}
.guide-location__list > li:first-child {
  margin-left: 0;
}
.guide-location__list > li > p {
  margin-top: 20px;
  line-height: 1.6;
  text-align: center;
  -webkit-text-stroke: 0.3px #555;
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .guide-location__list > li > p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .guide-location__list > li > p {
    margin-top: 10px;
  }
}

.guide-contact {
  padding: 0 50px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .guide-contact {
    margin-bottom: 80px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 599px) {
  .guide-contact {
    margin-bottom: 70px;
    padding: 0 15px;
  }
}
.guide-contact__inner {
  background-image: url(../img/common/pink_bg.jpg);
  padding: 70px 50px;
  border-radius: 3px;
}
@media screen and (max-width: 1024px) {
  .guide-contact__inner {
    padding: 40px 30px 40px;
  }
}
@media screen and (max-width: 599px) {
  .guide-contact__inner {
    padding: 30px 15px 15px;
  }
}
.guide-contact__block {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(194, 32, 55, 0.3);
  border-radius: 3px;
  text-align: center;
  color: #fff;
  padding: 30px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.9;
  font-size: 2rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .guide-contact__block {
    font-size: 1.8rem;
    padding: 25px;
  }
}
.guide-contact__block a {
  color: #fff;
}
.guide-contact__title {
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
  font-size: 3rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  -webkit-text-stroke: 0.2px #fff;
}
@media screen and (max-width: 1024px) {
  .guide-contact__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .guide-contact__title {
    font-size: 2.2rem;
  }
}

.guide-list-btn {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .guide-list-btn {
    margin-bottom: 30px;
  }
}
.guide-list-btn a {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  background-color: #333333;
  border-radius: 3px;
  padding: 20px;
  font-size: 1.5rem;
  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;
  display: block;
  position: relative;
}
@media screen and (max-width: 599px) {
  .guide-list-btn a {
    max-width: 260px;
    padding: 14px 14px 15px;
  }
}
.guide-list-btn a::before {
  content: "";
  margin-top: -2px;
  position: absolute;
  left: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-135deg);
}
.guide-list-btn a:active {
  color: #fff;
}
.guide-list-btn a:visited {
  color: #fff !important;
}/*# sourceMappingURL=style.css.map */