@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/css2?family=Quicksand:wght@300;400;500;600;700&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 (max-width: 599px) {
  .tb {
    display: none !important;
  }
}
@media screen and (min-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;
  color: #000;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  font-size: 1.5rem;
  overflow-x: hidden;
  overflow-y: scroll !important;
  text-rendering: optimizeSpeed;
  background: linear-gradient(to bottom, #365284 0%, #233853 36%, #365284 64%, #233853 82%, #365284 100%);
  position: relative;
  z-index: auto;
  /*任意でフォントサイズを指定*/
}
@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;
  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;
}

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
/*すべての要素の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;
  }
}

.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;
  }
}

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

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

@media print {
  .sp {
    display: none !important;
  }
  body {
    width: 1140px;
    -webkit-print-color-adjust: exact;
  }
  /*　------- ↓その他参考例　---------
  .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設定
----------------------------------------------------------*/
@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  width: 100%;
  height: 100px;
  transition: 0.3s;
  z-index: 111;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 80px;
  }
}
@media screen and (max-width: 599px) {
  .header {
    height: 70px;
    background-color: #000;
  }
}

@media screen and (min-width: 1025px) {
  .transform {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: rgba(0, 0, 0, 0.75);
    box-shadow: 0 32px 30px -30px rgba(53, 47, 47, 0.15);
    z-index: 100;
    transition: 0.4s;
  }
}
@media screen and (max-width: 1024px) {
  .transform {
    background-color: rgba(0, 0, 0, 0.75);
    box-shadow: 0 32px 30px -30px rgba(53, 47, 47, 0.15);
  }
}
.header-logo {
  width: 318px;
  margin-right: 20px;
  padding: 26px 0 0 18px;
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  .header-logo {
    width: 115px;
    margin-right: 15px;
    padding: 9px 0 0 15px;
  }
}
@media screen and (max-width: 599px) {
  .header-logo {
    width: 95px;
    margin-right: 10px;
    padding: 10px 0 0 10px;
  }
}
.header-logo__img {
  max-width: 300px;
}
@media screen and (max-width: 1024px) {
  .header-logo__img {
    max-width: 95px;
  }
}
@media screen and (max-width: 599px) {
  .header-logo__img {
    max-width: 80px;
  }
}

@media screen and (min-width: 1025px) {
  .transform .header-logo {
    padding-top: 22px;
  }
}
.header-tagline {
  margin-top: 20px;
  float: left;
  color: #fff;
  line-height: 1.4;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-size: 1.4rem;
  transition: 0.4s;
  letter-spacing: -0.05em;
  position: absolute;
  top: 10px;
  left: 10px;
}
.header-tagline span {
  font-size: 2.3rem;
}
@media screen and (max-width: 1024px) {
  .header-tagline span {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .header-tagline {
    margin-top: 14px;
    line-height: 1.4;
    font-size: 1.1rem;
  }
}

@media screen and (min-width: 1025px) {
  .transform .header-tagline {
    margin-top: 15px;
  }
}
.header-instagram {
  width: 62px;
  display: block;
  position: absolute;
  top: 20px;
  right: 390px;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .header-instagram {
    width: 50px;
    right: 310px;
    top: 14px;
  }
}
@media screen and (max-width: 599px) {
  .header-instagram {
    width: 36px;
    right: 236px;
    top: 19px;
  }
}
.header-instagram:hover {
  opacity: 0.8;
}

.header-conversion {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  right: 0;
}
.header-conversion__tel-link {
  margin-top: 18px;
  padding-left: 26px;
  font-family: "Quicksand", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.4;
  background-image: url(../img/common/icon_tel.svg);
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-position: 0 8px;
  color: #fff !important;
  display: block;
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  .header-conversion__tel-link {
    margin-top: 13px;
    padding-left: 22px;
    font-size: 2.3rem;
    background-size: 17px auto;
    background-position: 0 6px;
    text-decoration: underline;
  }
}
@media screen and (max-width: 599px) {
  .header-conversion__tel-link {
    font-size: 2rem;
    padding-left: 21px;
    background-size: 14px auto;
  }
}
@media screen and (max-width: 320px) {
  .header-conversion__tel-link {
    font-size: 1.8rem;
    background-position: 0 5px;
  }
}
.header-conversion__time {
  font-size: 1.3rem;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .header-conversion__time {
    font-size: 1.1rem;
    letter-spacing: -0.02em;
  }
}
@media screen and (max-width: 599px) {
  .header-conversion__time {
    font-size: 1rem;
    letter-spacing: -0.05em;
  }
}
@media screen and (max-width: 320px) {
  .header-conversion__time {
    letter-spacing: -0.1em;
  }
}
.header-conversion__link {
  margin-left: 28px;
  padding: 58px 25px 0;
  height: 100px;
  text-align: center;
  color: #fff;
  display: block;
  background-color: #b52c0e;
  background-image: url(../img/common/icon_mail.svg);
  background-size: 39px auto;
  background-repeat: no-repeat;
  background-position: center 22px;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .header-conversion__link:hover {
    filter: saturate(80%);
  }
}
@media screen and (max-width: 1024px) {
  .header-conversion__link {
    margin-left: 10px;
    background-size: 33px auto;
    background-position: center 17px;
    padding: 46px 12px 0;
    height: 80px;
  }
}
@media screen and (max-width: 599px) {
  .header-conversion__link {
    height: 70px;
    padding: 42px 6px 0;
    background-position: center 14px;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 320px) {
  .header-conversion__link {
    font-size: 1rem;
    padding: 42px 3px 0;
  }
}

@media screen and (min-width: 1025px) {
  .transform .header-conversion__tel-link {
    margin-top: 13px;
  }
  .transform .header-conversion__link {
    height: 90px;
    padding: 52px 25px 0;
    background-position: center 18px;
  }
}
#page_top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 100;
}
@media screen and (min-width: 1025px) {
  #page_top:hover {
    opacity: 0.8;
    transition: 0.2s;
  }
}
@media screen and (max-width: 599px) {
  #page_top {
    right: 0;
    bottom: 0;
    width: 40px;
    height: 40px;
  }
}

.footer {
  position: relative;
  overflow: hidden;
  padding-top: 150px;
}
@media screen and (max-width: 599px) {
  .footer {
    padding-top: 40px;
  }
}
.footer::before, .footer::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 40px;
  margin: auto;
  background-image: url(../img/top/bg03.webp);
  background-size: 406px 546px;
  width: 406px;
  height: 546px;
  mix-blend-mode: soft-light;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .footer::before, .footer::after {
    background-size: 290px 390px;
    width: 290px;
    height: 390px;
  }
}
@media screen and (max-width: 599px) {
  .footer::before, .footer::after {
    top: 30%;
    background-size: 174px 234px;
    width: 174px;
    height: 234px;
  }
}
.footer::before {
  left: 0;
}
.footer::after {
  right: 0;
  transform: scale(-1, 1);
}

.footer-address {
  padding: 0px 0 60px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .footer-address {
    padding: 40px 0;
  }
}
@media screen and (max-width: 599px) {
  .footer-address {
    padding-top: 30px;
  }
}
.footer-address__logo {
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer-address__logo {
    margin: 0 auto 20px;
  }
}
.footer-address__logo__data {
  max-width: 160px;
  display: block;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .footer-address__logo__data {
    max-width: 140px;
  }
}
.footer-address__logo__instagram {
  width: 50px;
  display: block;
  margin: 5px 0 0 32px;
  transition: 0.3s;
}
.footer-address__logo__instagram:hover {
  opacity: 0.7;
}
.footer-address__address-box {
  max-width: 400px;
  margin: 0 auto;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .footer-address__address-box {
    padding-top: 15px;
  }
}
@media screen and (max-width: 599px) {
  .footer-address__address-box {
    display: block;
    max-width: 200px;
  }
}
.footer-address__text {
  margin-bottom: 15px;
}
.footer-address__address {
  width: 51%;
  margin-right: 3%;
  margin-bottom: 15px;
  line-height: 1;
  font-style: normal;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .footer-address__address {
    width: 100%;
  }
}
.footer-address__address a {
  padding-left: 26px;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.4;
  background-image: url(../img/common/icon_tel.svg);
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-position: 0 8px;
  display: block;
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  .footer-address__address a {
    text-decoration: underline;
  }
}
.footer-address__time {
  font-size: 1.3rem;
  color: #fff;
}
.footer-address__contact {
  width: 46%;
}
@media screen and (max-width: 599px) {
  .footer-address__contact {
    width: 100%;
  }
}
.footer-address__contact a {
  width: 100%;
  height: 50px;
  margin-top: 8px;
  padding: 12px 0 0 30px;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  display: block;
  background-color: #b52c0e;
  background-image: url(../img/common/icon_mail.svg);
  background-size: 25px auto;
  background-repeat: no-repeat;
  background-position: 18px 17px;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .footer-address__contact a:hover {
    filter: saturate(80%);
  }
}

.footer-copy {
  padding: 16px 16px 60px;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .footer-copy {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .footer-copy {
    padding-bottom: 160px;
  }
}

/*--------------------------------------------------------
top
----------------------------------------------------------*/
.content-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.content-wrap::before, .content-wrap::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../img/common/Wood.png);
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.2;
  mix-blend-mode: multiply;
}

.top-main {
  overflow: hidden;
  padding-top: 100px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .top-main {
    padding-top: 9.2%;
  }
}
.top-main::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  background-image: url(../img/top/bg01.webp);
  background-size: 820px 900px;
  width: 820px;
  height: 900px;
  mix-blend-mode: hard-light;
  opacity: 0.1;
}
@media screen and (max-width: 1280px) {
  .top-main::before {
    background-size: 574px 630px;
    width: 574px;
    height: 630px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main::before {
    background-size: 451px 495px;
    width: 451px;
    height: 495px;
  }
}
@media screen and (max-width: 599px) {
  .top-main::before {
    background-size: 328px 360px;
    width: 328px;
    height: 360px;
    opacity: 0.2;
  }
}
.top-main__inner {
  position: relative;
  margin-top: 60px;
  width: 100%;
  height: calc(100vh - 100px);
  /* Viewportの高さの100%-headerの高さ（margin-top: 90px） */
  max-height: 700px;
}
@media screen and (max-width: 1280px) {
  .top-main__inner {
    margin-top: 2%;
    min-height: 5%;
    max-height: 540px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__inner {
    max-height: 400px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__inner {
    max-height: 280px;
    margin-top: 10%;
  }
}
@media screen and (max-width: 320px) {
  .top-main__inner {
    margin-top: 0;
  }
}
.top-main__copy {
  position: absolute;
  max-width: 490px;
  width: 100%;
  top: 14%;
  left: 4%;
  z-index: 10;
}
@media screen and (max-width: 1280px) {
  .top-main__copy {
    max-width: 400px;
  }
}
@media screen and (max-width: 1100px) {
  .top-main__copy {
    max-width: 360px;
    top: calc(40% - 14.5vw);
  }
}
@media screen and (max-width: 834px) {
  .top-main__copy {
    max-width: 320px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__copy {
    max-width: 200px;
  }
}
@media screen and (max-width: 320px) {
  .top-main__copy {
    max-width: 280px;
  }
}

.slider {
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% - 72.5vw);
  width: 72.5vw;
  /* Viewportの幅の77% */
}
.slider img {
  object-fit: cover;
  object-position: center center;
}
.slider .slide-item {
  width: 100%;
  height: 700px;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1280px) {
  .slider .slide-item {
    height: 540px;
  }
}
@media screen and (max-width: 1024px) {
  .slider .slide-item {
    height: 400px;
  }
}
@media screen and (max-width: 599px) {
  .slider .slide-item {
    height: 280px;
  }
}
.slider .slide01 {
  background-image: url(../img/top/slide01.webp);
}
.slider .slide02 {
  background-image: url(../img/top/slide02.jpg);
}
.slider .slide03 {
  background-image: url(../img/top/slide03.jpg);
}
.slider .slide04 {
  background-image: url(../img/top/slide04.jpg);
}

.top-info__bnr {
  display: block;
  max-width: 960px;
  width: 100%;
  margin: 0 auto 0px;
}
@media screen and (max-width: 599px) {
  .top-info__bnr {
    margin-bottom: 20px;
  }
}

.top-nav {
  padding: 80px 30px 80px;
  background-color: #DAC0A3;
}
@media screen and (max-width: 1024px) {
  .top-nav {
    padding: 60px 30px 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-nav {
    padding: 30px 20px 10px;
  }
}
.top-nav__inner {
  max-width: 1360px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .top-nav__inner {
    padding-top: 0px;
  }
}
.top-nav__copy {
  margin-bottom: 40px;
  font-size: 2.8rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 599px) {
  .top-nav__copy {
    margin-bottom: 20px;
    font-size: 2rem;
  }
}
.top-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 0;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .top-nav__list {
    padding: 30px 0;
  }
}
.top-nav__list__item {
  position: relative;
  width: 50%;
}
.top-nav__list__item:first-child::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 160px;
  margin: auto 0;
  background-color: #85bebd;
}
.top-nav__list__item::before {
  content: attr(data-title);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 13rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 400;
}
@media screen and (max-width: 1400px) {
  .top-nav__list__item::before {
    font-size: 9vw;
  }
}
.top-nav__list__item.item01::before {
  color: #eef2f2;
  letter-spacing: -0.02em;
}
.top-nav__list__item.item02::before {
  color: #eff2f4;
  letter-spacing: -0.04em;
}
.top-nav__list__link {
  display: block;
  position: relative;
  padding: 0 20px 55px;
}
@media screen and (max-width: 599px) {
  .top-nav__list__link {
    padding: 0 10px 45px;
  }
}
.top-nav__list__link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .top-nav__list__link::before {
    width: 32px;
    height: 32px;
  }
}
.item01 .top-nav__list__link::before {
  background-color: #174741;
}
.item02 .top-nav__list__link::before {
  background-color: #374181;
}
.top-nav__list__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  margin: 0 auto;
  width: 11px;
  height: 11px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .top-nav__list__link::after {
    bottom: 13px;
    width: 9px;
    height: 9px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}
@media screen and (min-width: 1025px) {
  .top-nav__list__link:hover::before {
    bottom: -10px;
  }
  .top-nav__list__link:hover::after {
    bottom: 6px;
  }
}
.top-nav__list__title {
  position: relative;
  margin-bottom: 10px;
  font-size: 3rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 599px) {
  .top-nav__list__title {
    font-size: 2.1rem;
  }
}
.item01 .top-nav__list__title {
  color: #174741;
}
.item02 .top-nav__list__title {
  color: #34506f;
}
.top-nav__list__title span {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0;
}
@media screen and (max-width: 599px) {
  .top-nav__list__title span {
    font-size: 1.3rem;
  }
}
.top-nav__list__text {
  position: relative;
  color: #444;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .top-nav__list__text {
    font-size: 1.4rem;
  }
}

.top-title-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 834px) {
  .top-title-wrapper {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
#function .top-title-wrapper {
  margin-bottom: 70px;
}
@media screen and (max-width: 599px) {
  #function .top-title-wrapper {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-title-wrapper#master {
    margin-bottom: 20px;
  }
}
.top-title-wrapper.no-df {
  display: block;
}
.top-title-wrapper__title {
  width: 100%;
  margin-bottom: 60px;
  font-size: 9.5rem;
  color: #fff;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top-title-wrapper__title {
    font-size: 6rem;
  }
}
@media screen and (max-width: 834px) {
  .top-title-wrapper__title {
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-title-wrapper__title {
    font-size: 4.2rem;
  }
}
#master .top-title-wrapper__title {
  font-size: 7rem;
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
  opacity: 0.8;
}
@media screen and (max-width: 1024px) {
  #master .top-title-wrapper__title {
    font-size: 5.5rem;
  }
}
@media screen and (max-width: 599px) {
  #master .top-title-wrapper__title {
    font-size: 3.2rem;
    font-weight: 500;
    margin-bottom: 20px;
  }
}
#function .top-title-wrapper__title {
  width: 100%;
  color: #fff;
  text-align: center;
  margin-bottom: 0px;
}
@media screen and (max-width: 1200px) {
  #function .top-title-wrapper__title {
    font-size: 7.8vw;
  }
}
@media screen and (max-width: 834px) {
  #function .top-title-wrapper__title {
    width: 100%;
    font-size: 6rem;
  }
}
@media screen and (max-width: 599px) {
  #function .top-title-wrapper__title {
    font-size: 4.2rem;
  }
}
#release .top-title-wrapper__title {
  color: #223856;
}
#release .top-title-wrapper__title .top-title-wrapper__title__en {
  opacity: 1;
}
#release .top-title-wrapper__title .top-title-wrapper__title__jp {
  font-weight: 500;
}
.top-title-wrapper__title__en {
  opacity: 1;
}
.top-title-wrapper__title__jp {
  margin-top: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  .top-title-wrapper__title__jp {
    margin-top: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-title-wrapper__title__jp {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}
.top-title-wrapper__content {
  width: 62%;
}
@media screen and (max-width: 834px) {
  .top-title-wrapper__content {
    width: 100%;
  }
}
#master .top-title-wrapper__content {
  width: 100%;
  text-align: center;
}
.top-title-wrapper__catch {
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 599px) {
  .top-title-wrapper__catch {
    font-size: 1.8rem;
  }
}
.top-title-wrapper__text {
  color: #fff;
  font-size: 1.5rem;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.8;
}
#master .top-title-wrapper__text {
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #master .top-title-wrapper__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  #master .top-title-wrapper__text {
    font-size: 1.5rem;
    text-align: left;
  }
}

.top-block-wrapper__button {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .top-block-wrapper__button {
    margin-top: 10px;
  }
}

.top-master {
  margin: 160px 0;
  position: relative;
  padding: 0 30px;
}
@media screen and (max-width: 1024px) {
  .top-master {
    margin: 60px 0 80px;
  }
}
@media screen and (max-width: 599px) {
  .top-master {
    margin: 60px 0 60px;
  }
}
.top-master::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -5%;
  right: 0;
  margin: auto;
  background-image: url(../img/top/bg04.png);
  background-size: 100% 460px;
  width: 100%;
  height: 460px;
  mix-blend-mode: multiply;
  opacity: 1;
}
@media screen and (max-width: 599px) {
  .top-master::before {
    background-size: 100% 230px;
    width: 100%;
    height: 230px;
  }
}
.top-master__movie-wrap {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.top-master__movie-wrap iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.top-master__movie-wrap__notes {
  margin-top: 5px;
  text-align: right;
}
@media screen and (max-width: 599px) {
  .top-master__movie-wrap__notes {
    font-size: 1.2rem;
  }
}
.top-master__img {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.top-master__img iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.top-master__img__notes {
  margin-top: 5px;
  text-align: right;
}
@media screen and (max-width: 599px) {
  .top-master__img__notes {
    font-size: 1.2rem;
  }
}
.top-master__title-wrap {
  padding: 80px 30px;
}
@media screen and (max-width: 1024px) {
  .top-master__title-wrap {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-master__title-wrap {
    padding: 30px 20px;
  }
}
.top-master__title-wrap__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 1320px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .top-master__title-wrap__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.top-master__title-wrap__text01 {
  color: #174741;
  font-size: 4.2rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 100;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1024px) {
  .top-master__title-wrap__text01 {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-master__title-wrap__text01 {
    margin-bottom: 10px;
    font-size: 2.4rem;
  }
}
.top-master__title-wrap__text02 {
  margin-left: 3%;
  font-size: 1.7rem;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .top-master__title-wrap__text02 {
    margin-left: 0;
    font-size: 1.5rem;
  }
}
.top-master__detail-wrap {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 100px;
}
@media screen and (max-width: 1024px) {
  .top-master__detail-wrap {
    max-width: 80%;
    margin-bottom: 60px;
  }
}
.top-master__detail-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0px;
  margin: 0 auto;
  position: relative;
  background-color: #d1cfd0;
}
@media screen and (max-width: 1024px) {
  .top-master__detail-list {
    padding: 0 0px;
  }
}
@media screen and (max-width: 599px) {
  .top-master__detail-list {
    display: block;
    padding: 0 0px;
  }
}
.top-master__detail-list__item {
  background-color: #d1cfd0;
}
.top-master__detail-list__item__inner {
  background-color: #fff;
}
.top-master__detail-list__item__content {
  width: 100%;
  padding: 30px 40px 20px 40px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-master__detail-list__item__content {
    padding: 30px 30px 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-master__detail-list__item__content {
    width: 100%;
    padding: 20px 20px 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-master__detail-list__item__content.service {
    padding: 20px 20px;
  }
}
.top-master__detail-list__item__image {
  width: 100%;
}
@media screen and (max-width: 599px) {
  .top-master__detail-list__item__image {
    width: 100%;
  }
}
.top-master__detail-list__item__title {
  margin-bottom: 20px;
  color: #000;
  font-size: 3.2rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  .top-master__detail-list__item__title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-master__detail-list__item__title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 834px) {
  .top-master__detail-list__item__title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-master__detail-list__item__title {
    margin-bottom: 15px;
    font-size: 2rem;
  }
}
.top-master__detail-list__item__title__en {
  display: block;
  color: rgba(181, 44, 14, 0.8);
  font-size: 2rem;
}
@media screen and (max-width: 599px) {
  .top-master__detail-list__item__title__en {
    font-size: 1.2rem;
  }
}
.top-master__detail-list__item__title__sub {
  font-size: 2.1rem;
}
@media screen and (max-width: 1200px) {
  .top-master__detail-list__item__title__sub {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-master__detail-list__item__title__sub {
    font-size: 1.4rem;
  }
}
.top-master__detail-list__item__title.service {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 36px;
}
@media screen and (max-width: 1200px) {
  .top-master__detail-list__item__title.service {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-master__detail-list__item__title.service {
    font-size: 2rem;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 599px) {
  .top-master__detail-list__item__title.service {
    margin-bottom: 16px;
  }
}
.top-master__detail-list .slick-arrow {
  width: 80px;
  height: 80px;
  top: 50%;
  z-index: 10;
  transition: 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .top-master__detail-list .slick-arrow {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-master__detail-list .slick-arrow {
    width: 36px;
    height: 36px;
  }
}
.top-master__detail-list .slick-arrow::before, .top-master__detail-list .slick-arrow::after {
  content: "";
  width: 80px;
  height: 80px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 1;
  transition: 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .top-master__detail-list .slick-arrow::before, .top-master__detail-list .slick-arrow::after {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-master__detail-list .slick-arrow::before, .top-master__detail-list .slick-arrow::after {
    width: 36px;
    height: 36px;
  }
}
.top-master__detail-list .slick-arrow::before {
  background-color: #b52c0e;
  left: 0;
}
.top-master__detail-list .slick-arrow::after {
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .top-master__detail-list .slick-arrow::after {
    width: 10px;
    height: 10px;
  }
}
@media (any-hover: hover) {
  .top-master__detail-list .slick-arrow:hover::before {
    filter: saturate(80%);
  }
}
.top-master__detail-list .slick-arrow.slick-next {
  right: -100px;
}
@media screen and (max-width: 1200px) {
  .top-master__detail-list .slick-arrow.slick-next {
    right: -80px;
  }
}
@media screen and (max-width: 1024px) {
  .top-master__detail-list .slick-arrow.slick-next {
    right: -70px;
  }
}
@media screen and (max-width: 599px) {
  .top-master__detail-list .slick-arrow.slick-next {
    right: -26px;
  }
}
.top-master__detail-list .slick-arrow.slick-next::after {
  right: 36px;
}
@media screen and (max-width: 1200px) {
  .top-master__detail-list .slick-arrow.slick-next::after {
    right: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-master__detail-list .slick-arrow.slick-next::after {
    right: 14px;
  }
}
.top-master__detail-list .slick-arrow.slick-prev {
  left: -100px;
}
@media screen and (max-width: 1200px) {
  .top-master__detail-list .slick-arrow.slick-prev {
    left: -80px;
  }
}
@media screen and (max-width: 1024px) {
  .top-master__detail-list .slick-arrow.slick-prev {
    left: -70px;
  }
}
@media screen and (max-width: 599px) {
  .top-master__detail-list .slick-arrow.slick-prev {
    left: -26px;
  }
}
.top-master__detail-list .slick-arrow.slick-prev::after {
  left: 36px;
  transform: rotate(225deg);
}
@media screen and (max-width: 1200px) {
  .top-master__detail-list .slick-arrow.slick-prev::after {
    left: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-master__detail-list .slick-arrow.slick-prev::after {
    left: 14px;
  }
}
.top-master__detail-list .slick-dots {
  left: 0;
  right: 0;
  bottom: -40px;
}
.top-master__detail-list .slick-dots li {
  padding: 0 8px;
  width: 10px;
  height: 10px;
  text-align: center;
}
.top-master__detail-list .slick-dots li button {
  width: 10px;
  height: 10px;
}
.top-master__detail-list .slick-dots li button::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #666;
  border-radius: 50%;
  opacity: 0.5;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s;
}
.top-master__detail-list .slick-dots li:hover button::before, .top-master__detail-list .slick-dots li.slick-active button::before {
  opacity: 1;
  background-color: #b52c0e;
}

.top-function {
  overflow: hidden;
  position: relative;
  padding: 120px 0 100px;
}
@media screen and (max-width: 1024px) {
  .top-function {
    padding: 0px 0 0;
  }
}
@media screen and (max-width: 834px) {
  .top-function {
    padding: 50px 0 0;
  }
}
@media screen and (max-width: 599px) {
  .top-function {
    padding: 20px 0 0;
  }
}
.top-function__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 834px) {
  .top-function__inner {
    padding: 0 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-function__inner {
    padding: 0 20px;
  }
}
.top-function__slider-wrap {
  padding-bottom: 70px;
}
@media screen and (max-width: 834px) {
  .top-function__slider-wrap {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-function__slider-wrap {
    padding-bottom: 40px;
  }
}
.top-function__launcher-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 834px) {
  .top-function__launcher-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.top-function__launcher-wrap__image {
  position: relative;
  width: 60%;
}
@media screen and (max-width: 834px) {
  .top-function__launcher-wrap__image {
    width: 100%;
  }
}
.top-function__launcher-wrap__content {
  position: relative;
  width: 40%;
  padding-right: 2%;
}
@media screen and (max-width: 834px) {
  .top-function__launcher-wrap__content {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-function__launcher-wrap__content {
    margin-bottom: 40px;
  }
}
.top-function__launcher-wrap__title {
  margin-bottom: 40px;
  color: #fff;
  font-size: 5.4rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 100;
  letter-spacing: -0.04em;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-function__launcher-wrap__title {
    margin-bottom: 30px;
    font-size: 5.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-function__launcher-wrap__title {
    margin-bottom: 20px;
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 320px) {
  .top-function__launcher-wrap__title {
    font-size: 2.8rem;
  }
}
.top-function__launcher-wrap__title span {
  display: block;
  margin-top: 15px;
  margin-left: 3px;
  font-size: 2rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .top-function__launcher-wrap__title span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 320px) {
  .top-function__launcher-wrap__title span {
    margin-top: 10px;
  }
}
.top-function__launcher-wrap__text01 {
  font-size: 2rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .top-function__launcher-wrap__text01 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 320px) {
  .top-function__launcher-wrap__text01 {
    font-size: 1.6rem;
  }
}
.top-function__launcher-wrap__text02 {
  margin-bottom: 20px;
  font-size: 4rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .top-function__launcher-wrap__text02 {
    font-size: 3.3rem;
  }
}
@media screen and (max-width: 834px) {
  .top-function__launcher-wrap__text02 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .top-function__launcher-wrap__text02 {
    margin-bottom: 15px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 320px) {
  .top-function__launcher-wrap__text02 {
    font-size: 2.2rem;
  }
}
.top-function__launcher-wrap__text03 {
  margin-bottom: 40px;
  color: #666;
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .top-function__launcher-wrap__text03 {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
}
.top-function__button {
  display: block;
  position: relative;
  max-width: 360px;
  width: 100%;
  margin: 0px auto 0;
  padding: 18px;
  background-color: #b52c0e;
  color: #fff;
  font-size: 1.5rem;
  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: 1024px) {
  .top-function__button {
    margin: 0px auto 0;
  }
}
@media screen and (max-width: 599px) {
  .top-function__button {
    margin: 0px auto 0;
    padding: 14px 20px 14px 14px;
    font-size: 1.4rem;
  }
}
.top-function__button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto 0;
  width: 11px;
  height: 11px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .top-function__button::after {
    right: 18px;
  }
}
.top-function__button:hover {
  filter: saturate(80%);
}
.top-function__button.type01 {
  background-color: #85bebd;
}
.top-function__button.type01:hover {
  background-color: #174741;
}
.top-function__button__list {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .top-function__button__list {
    margin-top: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-function__button__list {
    display: block;
    padding: 0 20px 0 20px;
    margin-top: 0;
  }
}
.top-function__button__list__item {
  max-width: 360px;
  width: 100%;
}
.top-function__button__list__item:not(:nth-child(2n)) {
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  .top-function__button__list__item {
    margin-bottom: 10px;
  }
  .top-function__button__list__item:not(:nth-child(2n)) {
    margin-right: 0px;
  }
}

.top-arrow-button {
  display: inline-block;
  position: relative;
  padding-top: 50px;
  background: none;
  color: #000;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .top-arrow-button {
    padding-top: 40px;
    font-size: 1.5rem;
  }
}
.top-arrow-button::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  background-color: #b53ded;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  transition: 0.3s;
}
@media screen and (max-width: 1300px) {
  .top-arrow-button::before {
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .top-arrow-button::before {
    width: 26px;
    height: 26px;
  }
}
@media screen and (max-width: 599px) {
  .top-arrow-button::before {
    width: 22px;
    height: 22px;
  }
}
.top-arrow-button::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 2px;
  left: 0;
  margin: 0 auto;
  width: 11px;
  height: 11px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 1300px) {
  .top-arrow-button::after {
    width: 9px;
    height: 9px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 1024px) {
  .top-arrow-button::after {
    top: 9px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 599px) {
  .top-arrow-button::after {
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.top-arrow-button.whp {
  position: absolute;
  top: 45%;
  right: 20px;
}
@media screen and (max-width: 1300px) {
  .top-arrow-button.whp {
    padding-left: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .top-arrow-button.whp {
    position: relative;
  }
}
@media screen and (max-width: 599px) {
  .top-arrow-button.whp {
    padding-left: 50px;
  }
}
.top-arrow-button:hover {
  color: #374181;
}
.top-arrow-button:hover::before {
  background-color: #374181;
}
.top-arrow-button--function {
  color: #223856;
}
.top-arrow-button--function::before {
  background-color: #b52c0e;
}
.top-arrow-button--function:hover {
  color: #b52c0e;
}
.top-arrow-button--function:hover::before {
  background-color: #b52c0e;
}
.top-arrow-button--type02 {
  padding-top: 0;
  padding-left: 60px;
}
@media screen and (max-width: 1300px) {
  .top-arrow-button--type02 {
    padding-left: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .top-arrow-button--type02 {
    padding-left: 44px;
  }
}
@media screen and (max-width: 599px) {
  .top-arrow-button--type02 {
    padding-left: 32px;
  }
}
.top-arrow-button--type02::before {
  top: -9px;
  right: auto;
  left: 0;
}
@media screen and (max-width: 1300px) {
  .top-arrow-button--type02::before {
    top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .top-arrow-button--type02::before {
    top: 3px;
  }
}
.top-arrow-button--type02::after {
  top: 5px;
  right: auto;
  left: 13px;
}
@media screen and (max-width: 1300px) {
  .top-arrow-button--type02::after {
    top: 12px;
    left: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .top-arrow-button--type02::after {
    left: 8px;
  }
}
.top-arrow-button--type02.whp::before {
  top: -6px;
}
@media screen and (max-width: 1300px) {
  .top-arrow-button--type02.whp::before {
    top: 0;
    left: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .top-arrow-button--type02.whp::before {
    top: 2px;
  }
}
@media screen and (max-width: 599px) {
  .top-arrow-button--type02.whp::before {
    left: 20px;
  }
}
.top-arrow-button--type02.whp::after {
  top: 8px;
}
@media screen and (max-width: 1300px) {
  .top-arrow-button--type02.whp::after {
    top: 11px;
    left: 20px !important;
  }
}
@media screen and (max-width: 1024px) {
  .top-arrow-button--type02.whp::after {
    top: 11px;
    left: 18px !important;
  }
}
@media screen and (max-width: 599px) {
  .top-arrow-button--type02.whp::after {
    top: 10px;
    left: 28px !important;
  }
}

.swiper-wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .swiper-wrapper {
    padding-bottom: 0px;
  }
}
.swiper-wrapper .slick-prev,
.swiper-wrapper .slick-next {
  width: 80px;
  height: 80px;
  z-index: 10;
}
@media screen and (max-width: 599px) {
  .swiper-wrapper .slick-prev,
  .swiper-wrapper .slick-next {
    width: 60px;
    height: 60px;
  }
}
.swiper-wrapper .slick-prev::before, .swiper-wrapper .slick-prev::after,
.swiper-wrapper .slick-next::before,
.swiper-wrapper .slick-next::after {
  content: "";
  vertical-align: middle;
  display: block;
  position: relative;
}
.swiper-wrapper .slick-prev {
  left: 25% !important;
}
@media screen and (max-width: 1024px) {
  .swiper-wrapper .slick-prev {
    left: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .swiper-wrapper .slick-prev {
    left: 0px !important;
  }
}
.swiper-wrapper .slick-prev::before {
  width: 60px;
  height: 60px;
  border-top: 6px solid #c7b5ff;
  border-right: 6px solid #c7b5ff;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  left: 10px;
}
@media screen and (max-width: 599px) {
  .swiper-wrapper .slick-prev::before {
    width: 30px;
    height: 30px;
    border-top: 4px solid #c7b5ff;
    border-right: 4px solid #c7b5ff;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
.swiper-wrapper .slick-next {
  right: 25% !important;
}
@media screen and (max-width: 1024px) {
  .swiper-wrapper .slick-next {
    right: 10px !important;
  }
}
@media screen and (max-width: 599px) {
  .swiper-wrapper .slick-next {
    right: -20px !important;
  }
}
.swiper-wrapper .slick-next::before {
  width: 60px;
  height: 60px;
  border-top: 6px solid #c7b5ff;
  border-right: 6px solid #c7b5ff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .swiper-wrapper .slick-next::before {
    width: 30px;
    height: 30px;
    border-top: 4px solid #c7b5ff;
    border-right: 4px solid #c7b5ff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.swiper-wrapper .slick-dots {
  padding-bottom: 20px;
}
.swiper-wrapper .slick-dots li {
  width: 8px;
  height: 8px;
}
.swiper-wrapper .slick-dots li button {
  padding: 0px;
  width: 8px;
  height: 8px;
}
.swiper-wrapper .slick-dots li button::before {
  font-size: 0;
  width: 8px;
  height: 8px;
  background-color: #cbcbcb;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  -o-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  opacity: 1;
}
.swiper-wrapper .slick-dots li button:hover::before, .swiper-wrapper .slick-dots li button:focus::before {
  opacity: 0.75;
}
.swiper-wrapper .slick-dots li.slick-active button::before {
  background-color: #b53ded;
}

.top-master__detail-list__content {
  margin: auto;
}
.top-master__detail-list__content__image {
  width: 100%;
}
.top-master__detail-list__content__image img {
  width: 100%;
}
.top-master__detail-list__content__movie {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.top-master__detail-list__content__movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-master__detail-list__content__body {
  padding: 4% 6% 5%;
  background-color: #d1cfd0;
}
.top-master__detail-list__content__title {
  margin-bottom: 30px;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-size: 2.4rem;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .top-master__detail-list__content__title {
    margin-bottom: 20px;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .top-master__detail-list__content__title {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
}
.top-master__detail-list__content__caption {
  color: #666666;
  font-size: 1.4rem;
  line-height: 1.5;
}

.slick-slide.slick-current,
.slick-slide.is-active-next {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s, transform 0.5s;
}

.swiper-pagination {
  position: inherit !important;
}

.swiper-pagination-bullet-active {
  background: #374181 !important;
}

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

.floting-bnr {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.3s;
  width: 220px;
  border-radius: 10px;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .floting-bnr {
    width: 160px;
    right: 10px;
    bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .floting-bnr {
    width: 120px;
    right: 5px;
    bottom: 5px;
    z-index: 100;
  }
}
.floting-bnr:hover {
  opacity: 0.98;
  transform: translateY(-4px);
}
.floting-bnr-close {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  display: block;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .floting-bnr-close {
    width: 30px;
    height: 30px;
    top: -15px;
    left: -15px;
  }
}
@media screen and (max-width: 599px) {
  .floting-bnr-close {
    top: -12px;
    left: -12px;
    width: 24px;
    height: 24px;
  }
}
.floting-bnr a {
  display: block;
  z-index: 10;
}
.floting-bnr a:hover img {
  transform: scale(1);
}

.top-service__list01 {
  display: flex;
  flex-wrap: wrap;
  padding: 100px 80px;
}
@media screen and (max-width: 1500px) {
  .top-service__list01 {
    padding: 100px 40px;
  }
}
@media screen and (max-width: 1024px) {
  .top-service__list01 {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-service__list01 {
    display: block;
  }
}
.top-service__list01__item {
  width: calc((100% - 80px) / 3);
}
.top-service__list01__item:not(:nth-child(3n)) {
  margin-right: 40px;
}
@media screen and (max-width: 1500px) {
  .top-service__list01__item {
    width: calc((100% - 40px) / 3);
  }
  .top-service__list01__item:not(:nth-child(3n)) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .top-service__list01__item {
    width: calc((100% - 20px) / 3);
  }
  .top-service__list01__item:not(:nth-child(3n)) {
    margin-right: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-service__list01__item {
    width: 100%;
  }
  .top-service__list01__item:not(:nth-child(3n)) {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}

.instagram-bnr {
  max-width: 660px;
  width: 100%;
  margin: 0 auto 0px;
  padding: 0 30px;
  display: block;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .instagram-bnr {
    max-width: 440px;
    margin-bottom: 60px;
  }
}
.instagram-bnr:hover {
  opacity: 0.8;
}

.text-red {
  color: #cc0000;
}

/*オプション*/
.top-option {
  padding: 100px 60px 120px;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: linear-gradient(124deg, rgba(5, 5, 5, 0.8), rgba(7, 53, 90, 0.8));
  max-width: 90%;
  width: 100%;
  margin: 100px auto 0;
  position: relative;
  box-shadow: 0px 0px 24px 6px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1024px) {
  .top-option {
    padding: 60px 40px 0;
  }
}
@media screen and (max-width: 599px) {
  .top-option {
    max-width: 100%;
    padding: 40px 20px;
  }
}
.top-option::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  margin: auto;
  background-image: url(../img/top/bg02.webp);
  background-size: 1339.2px 553.6px;
  width: 1339.2px;
  height: 553.6px;
  opacity: 0.7;
  mix-blend-mode: overlay;
}
@media screen and (max-width: 1024px) {
  .top-option::before {
    background-size: 669.6px 276.8px;
    width: 669.6px;
    height: 276.8px;
  }
}
@media screen and (max-width: 599px) {
  .top-option::before {
    background-size: 418.5px 173px;
    width: 418.5px;
    height: 173px;
    opacity: 1;
  }
}

.top-option__title {
  position: relative;
  margin-bottom: 40px;
  padding-top: 66px;
  font-size: 5rem;
  font-family: "Noto Sans JP", "Noto Sans", "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 350;
  line-height: 1.3;
  background-size: 66.5px auto;
  background-repeat: no-repeat;
  background-position: center top;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .top-option__title {
    margin-bottom: 30px;
    padding-top: 60px;
    font-size: 3.8rem;
    background-size: 55px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-option__title {
    font-size: 2.5rem;
    background-size: 40px auto;
    padding-top: 43px;
  }
}
.top-option__title span {
  margin-top: 5px;
  font-size: 1.3rem;
  display: block;
  letter-spacing: 0;
  font-style: normal;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
}

.top-option-slider {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}

.top-option-list {
  max-width: 1240px;
  margin: 65px auto 0;
}
@media screen and (max-width: 1024px) {
  .top-option-list {
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 599px) {
  .top-option-list {
    margin-top: 0;
  }
}

.top-option-list__item {
  max-width: 1800px;
  margin: auto;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .top-option-list__item {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1024px) {
  .top-option-list__item {
    min-height: auto;
  }
}
@media screen and (max-width: 599px) {
  .top-option-list__item {
    display: block;
  }
}
.top-option-list__item:not(:last-child) {
  margin-bottom: 68px;
}
@media screen and (max-width: 1024px) {
  .top-option-list__item:not(:last-child) {
    margin-bottom: 40px;
  }
}

.top-option-list__photo {
  width: 45%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 0px 30px 30px;
}
@media screen and (max-width: 1024px) {
  .top-option-list__photo {
    width: 49%;
  }
}
@media screen and (max-width: 599px) {
  .top-option-list__photo {
    width: 100%;
    padding: 14px 14px 0 14px;
  }
}
.top-option-list__photo img {
  width: 100%;
}

.top-option-list__text-box {
  width: 55%;
  padding: 30px 60px;
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .top-option-list__text-box {
    width: 51%;
    padding: 30px 30px 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-option-list__text-box {
    width: 100%;
    padding: 25px 20px;
  }
}

.top-option-list__text-inner {
  width: 100%;
}

.top-option-list__title {
  font-size: 2.6rem;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  .top-option-list__title {
    font-size: 2rem;
    letter-spacing: 0;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .top-option-list__title {
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.4;
    padding-top: 0;
  }
}
.top-option-list__title span {
  font-size: 1.5rem;
}

.top-option-list__text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #222;
}
@media screen and (max-width: 1024px) {
  .top-option-list__text {
    line-height: 1.7;
  }
}

.top-option-list__link {
  text-align: right;
}
@media screen and (max-width: 599px) {
  .top-option-list__link {
    text-align: center;
  }
}

.top-option-list__link a {
  margin: 30px 0 0 auto;
  padding: 12px 40px;
  display: inline-block;
  background-color: #b52c0e;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.3;
  text-align: center;
  position: relative;
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .top-option-list__link a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-option-list__link a {
    margin: 20px auto 0;
    padding: 12px 30px 12px 20px;
  }
}
.top-option-list__link a::before {
  margin-top: -5px;
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 9px;
  height: 9px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (any-hover: hover) {
  .top-option-list__link a:hover {
    filter: saturate(80%);
  }
}

/*ComingSoon ボタン GWに適用*/
.top-option-list__link__cs {
  text-align: right;
}
@media screen and (max-width: 599px) {
  .top-option-list__link__cs {
    text-align: center;
  }
}
.top-option-list__link__cs a {
  margin: 30px 0 0 auto;
  padding: 12px 40px;
  display: inline-block;
  background-color: #808080;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.3;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-option-list__link__cs a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-option-list__link__cs a {
    margin: 20px auto 0;
    padding: 12px 30px 12px 20px;
  }
}

.top-link {
  margin-top: 100px;
}
@media screen and (max-width: 1200px) {
  .top-link {
    margin-top: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .top-link {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-link {
    margin-top: 40px;
    padding-bottom: 0;
  }
}

.top-release {
  padding: 120px 80px;
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.95);
  position: relative;
  box-shadow: 0px 0px 24px 6px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1024px) {
  .top-release {
    padding: 60px 20px 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-release {
    max-width: 100%;
    padding: 40px 0px 40px;
  }
}
.top-release::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background-image: url(../img/top/bg01.webp);
  background-size: cover;
  width: 100%;
  height: 100%;
  opacity: 0.12;
}/*# sourceMappingURL=style.css.map */