@charset "UTF-8";

/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: '';
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

@font-face {
  font-family: 'Portrait';
  font-weight: 600;
  src: url('../fonts/Portrait-Medium-Web.woff2') format('woff2'),
    url('../fonts/Portrait-Medium-Web.woff') format('woff');
}

@font-face {
  font-family: 'Portrait';
  font-weight: 600;
  font-style: italic;
  src: url('../fonts/Portrait-MediumItalic-Web.woff2') format('woff2'),
    url('../fonts/Portrait-MediumItalic-Web.woff') format('woff');
}

@font-face {
  font-family: 'Portrait';
  font-weight: 400;
  src: url('../fonts/Portrait-Regular-Web.woff2') format('woff2'),
    url('../fonts/Portrait-Regular-Web.woff') format('woff');
}

@font-face {
  font-family: 'Portrait';
  font-weight: 400;
  font-style: italic;
  src: url('../fonts/Portrait-RegularItalic-Web.woff2') format('woff2'),
    url('../fonts/Portrait-RegularItalic-Web.woff') format('woff');
}

@font-face {
  font-family: 'PortraitText';
  font-weight: 600;
  src: url('../fonts/PortraitText-Medium-Web.woff2') format('woff2'),
    url('../fonts/PortraitText-Medium-Web.woff') format('woff');
}

@font-face {
  font-family: 'PortraitText';
  font-weight: 600;
  font-style: italic;
  src: url('../fonts/PortraitText-MediumItalic-Web.woff2') format('woff2'),
    url('../fonts/PortraitText-MediumItalic-Web.woff') format('woff');
}

@font-face {
  font-family: 'PortraitText';
  font-weight: 400;
  src: url('../fonts/PortraitText-Regular-Web.woff2') format('woff2'),
    url('../fonts/PortraitText-Regular-Web.woff') format('woff');
}

@font-face {
  font-family: 'PortraitText';
  font-weight: 400;
  font-style: italic;
  src: url('../fonts/PortraitText-RegularItalic-Web.woff2') format('woff2'),
    url('../fonts/PortraitText-RegularItalic-Web.woff') format('woff');
}

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

/**
 * !!! browsersyncのアラートを非表示 !!!
 */
#__bs_notify__ {
  display: none !important;
}

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  color: #121212;
  font-feature-settings: 'palt';
  -webkit-font-smoothing: antialiased;
}

body {
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

@media only screen and (min-width: 768px) {
  body {
    padding-top: 44px;
  }

  body.top {
    padding-top: 0;
  }
}

body.on {
  opacity: 1;
}

body.top {
  opacity: 1 !important;
}

body.top article {
  position: relative;
  z-index: 10;
}

main,
article {
  min-height: 100vh;
}

article.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #fff;
}

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
  outline: none;
}

input[type='text'],
input[type='password'],
input[type='email'],
input[type='number'] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

button,
input[type='submit'],
input[type='button'] {
  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 {
  display: none;
}

button::focus,
input[type='submit']::focus,
input[type='button']::focus {
  outline-offset: -2px;
}

.row {
  overflow: hidden;
  *zoom: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.mt-60 {
  margin-top: 60px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-85 {
  margin-top: 85px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-95 {
  margin-top: 95px !important;
}

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

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

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

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

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

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

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

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

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

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

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

.mb-55 {
  margin-bottom: 55px !important;
}

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

.mb-65 {
  margin-bottom: 65px !important;
}

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

.mb-75 {
  margin-bottom: 75px !important;
}

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

.mb-85 {
  margin-bottom: 85px !important;
}

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

.mb-95 {
  margin-bottom: 95px !important;
}

.p-0 {
  padding: 0px !important;
}

.p-5 {
  padding: 5px !important;
}

.p-10 {
  padding: 10px !important;
}

.p-15 {
  padding: 15px !important;
}

.p-20 {
  padding: 20px !important;
}

.p-25 {
  padding: 25px !important;
}

.p-30 {
  padding: 30px !important;
}

.p-35 {
  padding: 35px !important;
}

.p-40 {
  padding: 40px !important;
}

.p-45 {
  padding: 45px !important;
}

.p-50 {
  padding: 50px !important;
}

.p-55 {
  padding: 55px !important;
}

.p-60 {
  padding: 60px !important;
}

.p-65 {
  padding: 65px !important;
}

.p-70 {
  padding: 70px !important;
}

.p-75 {
  padding: 75px !important;
}

.p-80 {
  padding: 80px !important;
}

.p-85 {
  padding: 85px !important;
}

.p-90 {
  padding: 90px !important;
}

.p-95 {
  padding: 95px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt-85 {
  padding-top: 85px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-95 {
  padding-top: 95px !important;
}

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

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

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

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

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

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

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

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

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

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

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-65 {
  padding-bottom: 65px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-85 {
  padding-bottom: 85px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-95 {
  padding-bottom: 95px !important;
}

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

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

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

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

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

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

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

.pl-35 {
  padding-left: 35px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pl-55 {
  padding-left: 55px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pl-65 {
  padding-left: 65px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.pl-75 {
  padding-left: 75px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.pl-85 {
  padding-left: 85px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.pl-95 {
  padding-left: 95px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pr-55 {
  padding-right: 55px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pr-65 {
  padding-right: 65px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pr-75 {
  padding-right: 75px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pr-85 {
  padding-right: 85px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.pr-95 {
  padding-right: 95px !important;
}

.col-1 {
  margin-top: 20px;
  width: 8.33333%;
  padding: 0 10px;
}

.col-2 {
  margin-top: 20px;
  width: 16.66667%;
  padding: 0 10px;
}

.col-3 {
  margin-top: 20px;
  width: 25%;
  padding: 0 10px;
}

.col-4 {
  margin-top: 20px;
  width: 33.33333%;
  padding: 0 10px;
}

.col-5 {
  margin-top: 20px;
  width: 41.66667%;
  padding: 0 10px;
}

.col-6 {
  margin-top: 20px;
  width: 50%;
  padding: 0 10px;
}

.col-7 {
  margin-top: 20px;
  width: 58.33333%;
  padding: 0 10px;
}

.col-8 {
  margin-top: 20px;
  width: 66.66667%;
  padding: 0 10px;
}

.col-9 {
  margin-top: 20px;
  width: 75%;
  padding: 0 10px;
}

.col-10 {
  margin-top: 20px;
  width: 83.33333%;
  padding: 0 10px;
}

.col-11 {
  margin-top: 20px;
  width: 91.66667%;
  padding: 0 10px;
}

.col-12 {
  margin-top: 20px;
  width: 100%;
  padding: 0 10px;
}

input[type='checkbox'].form-check-input {
  display: none;
}

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

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

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  box-sizing: content-box;
}

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto;
}

.a1 {
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho' !important;
}

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

i {
  font-style: italic;
}

.fixedheader {
  padding-top: 28px;
  position: fixed;
  left: 0;
  top: -50px;
  z-index: 10;
  width: 100%;
  -webkit-transition: top 0.3s;
  -moz-transition: top 0.3s;
  -o-transition: top 0.3s;
  transition: top 0.3s;
}

.fixedheader.display .header__nav ul {
  opacity: 0;
}

.fixedheader.display .header__nav ul a {
  cursor: default;
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .fixedheader {
    display: none !important;
    z-index: 1000;
  }
}

.fixedheader.on {
  z-index: 1000;
}

.fixedheader.on .header__inner {
  position: relative;
  z-index: 200;
}

.fixedheader.on .header__nav > a.on span {
  background: #5a5a5a;
}

.fixedheader.on .header__brand svg {
  opacity: 0;
}

@media only screen and (max-width: 767px) {
  .fixedheader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
  }
}

.fixedheader__inner {
  padding: 0 60px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .fixedheader__inner {
    padding: 0 25px;
  }
}

@media only screen and (max-width: 767px) {
  .fixedheader__brand {
    position: fixed;
    left: 25px;
    top: 27px;
    height: 14px;
  }
}

.fixedheader__brand svg {
  height: 14px;
  width: auto;
}

.fixedheader__nav > a,
.fixedheader__nav ul {
  display: inline-block;
  vertical-align: middle;
}

.fixedheader__nav ul {
  font-size: 0;
}

@media only screen and (max-width: 950px) {
  .fixedheader__nav ul {
    display: none !important;
    width: 0;
  }
}

@media only screen and (max-width: 767px) {
  .fixedheader__nav ul {
    display: none !important;
  }
}

.fixedheader__nav ul li {
  display: inline-block;
  vertical-align: middle;
  color: #121212;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  margin-right: 38px;
}

.fixedheader__nav ul li:last-child {
  margin-right: 0;
}

.fixedheader__nav > a {
  width: 22px;
  height: 9px;
  cursor: pointer;
  position: relative;
  margin-left: 40px;
}

@media only screen and (max-width: 767px) {
  .fixedheader__nav > a {
    position: absolute;
    right: 25px;
    top: 30px;
  }

  .fixedheader__nav > a.on {
    top: 0;
  }
}

.fixedheader__nav > a span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #121212;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

.fixedheader__nav > a span:nth-child(2) {
  top: auto;
  bottom: 0;
}

.fixedheader__nav > a.on span:nth-child(1) {
  top: 4px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.fixedheader__nav > a.on span:nth-child(2) {
  bottom: 3px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.fixedheader__mega-navigation {
  position: fixed;
  z-index: 199;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #121212;
  display: none;
}

.fixedheader__mega-navigation__bottom-logo {
  position: absolute;
  top: 28px;
  left: 60px;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .fixedheader__mega-navigation__bottom-logo {
    top: 25px;
    left: 25px;
  }
}

.fixedheader__mega-navigation__bottom-logo img,
.fixedheader__mega-navigation__bottom-logo svg {
  display: block;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .fixedheader__mega-navigation__bottom-logo img,
  .fixedheader__mega-navigation__bottom-logo svg {
    height: auto;
  }
}

.fixedheader__mega-navigation__select-language {
  position: absolute;
  bottom: 52px;
  right: 64px;
}

@media only screen and (max-width: 767px) {
  .fixedheader__mega-navigation__select-language {
    right: 26px;
    bottom: 30px;
  }
}

.fixedheader__mega-navigation__select-language ul {
  font-size: 0;
}

.fixedheader__mega-navigation__select-language ul li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 6px;
  position: relative;
}

.fixedheader__mega-navigation__select-language ul li:nth-child(1):before {
  content: '';
  width: 1px;
  height: 15px;
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  right: 0;
  top: 0;
}

.fixedheader__mega-navigation__select-language ul li a {
  font-family: 'Portrait', sans-serif;
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.fixedheader__mega-navigation__select-language ul li a:hover {
  opacity: 1;
}

.fixedheader__mega-navigation__select-language ul li a.off {
  opacity: 1;
  cursor: default;
  pointer-events: none;
}

.fixedheader__mega-navigation__nav {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 60%;
  width: 100%;
  text-align: right;
  right: 44px;
}

@media only screen and (max-width: 767px) {
  .fixedheader__mega-navigation__nav {
    top: 50%;
    right: 0;
  }
}

.fixedheader__mega-navigation__nav ul {
  font-size: 0;
}

.fixedheader__mega-navigation__nav ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px;
}

@media only screen and (max-width: 767px) {
  .fixedheader__mega-navigation__nav ul li {
    margin: 0;
    display: block;
    padding-right: 26px;
    margin: 22px 0;
  }

  .fixedheader__mega-navigation__nav ul li:nth-child(6) {
    margin-top: 50px;
  }

  .fixedheader__mega-navigation__nav ul li:nth-child(6) a,
  .fixedheader__mega-navigation__nav ul li:nth-child(7) a {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.fixedheader__mega-navigation__nav ul li a {
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Portrait', sans-serif;
  -webkit-transition: color 0.6s;
  -moz-transition: color 0.6s;
  -o-transition: color 0.6s;
  transition: color 0.6s;
}

@media only screen and (max-width: 767px) {
  .fixedheader__mega-navigation__nav ul li a {
    font-size: 27px;
    font-size: 2.7rem;
  }
}

.fixedheader__mega-navigation__nav ul li a:hover {
  color: #fff;
}

.fixedheader02 {
  padding-top: 28px;
  position: fixed;
  left: 0;
  top: -50px;
  z-index: 10;
  width: 100%;
  -webkit-transition: top 0.3s;
  -moz-transition: top 0.3s;
  -o-transition: top 0.3s;
  transition: top 0.3s;
}

@media only screen and (max-width: 767px) {
  .fixedheader02 {
    display: none !important;
    z-index: 1000;
  }
}

.fixedheader02.on {
  z-index: 1000;
}

.fixedheader02.on .header__inner {
  position: relative;
  z-index: 200;
}

.fixedheader02.on .header__nav > a.on span {
  background: #5a5a5a;
}

.fixedheader02.on .header__brand svg {
  opacity: 0;
}

@media only screen and (max-width: 767px) {
  .fixedheader02 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
  }
}

.fixedheader02__inner {
  padding: 0 60px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .fixedheader02__inner {
    padding: 0 25px;
  }
}

@media only screen and (max-width: 767px) {
  .fixedheader02__brand {
    position: fixed;
    left: 25px;
    top: 27px;
    height: 14px;
  }
}

.fixedheader02__brand svg {
  height: 14px;
  width: auto;
}

.fixedheader02__nav > a,
.fixedheader02__nav ul {
  display: inline-block;
  vertical-align: middle;
}

.fixedheader02__nav ul {
  font-size: 0;
}

@media only screen and (max-width: 950px) {
  .fixedheader02__nav ul {
    display: none !important;
    width: 0;
  }
}

@media only screen and (max-width: 767px) {
  .fixedheader02__nav ul {
    display: none !important;
  }
}

.fixedheader02__nav ul li {
  display: inline-block;
  vertical-align: middle;
  color: #121212;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  margin-right: 38px;
}

.fixedheader02__nav ul li:last-child {
  margin-right: 0;
}

.fixedheader02__nav > a {
  width: 22px;
  height: 9px;
  cursor: pointer;
  position: relative;
  margin-left: 40px;
}

@media only screen and (max-width: 767px) {
  .fixedheader02__nav > a {
    position: absolute;
    right: 25px;
    top: 30px;
  }

  .fixedheader02__nav > a.on {
    top: 0;
  }
}

.fixedheader02__nav > a span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #121212;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

.fixedheader02__nav > a span:nth-child(2) {
  top: auto;
  bottom: 0;
}

.fixedheader02__nav > a.on span:nth-child(1) {
  top: 4px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.fixedheader02__nav > a.on span:nth-child(2) {
  bottom: 3px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.fixedheader02__mega-navigation {
  position: fixed;
  z-index: 199;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #121212;
  display: none;
}

.fixedheader02__mega-navigation__bottom-logo {
  position: absolute;
  top: 28px;
  left: 60px;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .fixedheader02__mega-navigation__bottom-logo {
    top: 25px;
    left: 25px;
  }
}

.fixedheader02__mega-navigation__bottom-logo img,
.fixedheader02__mega-navigation__bottom-logo svg {
  display: block;
  height: 16px;
}

@media only screen and (max-width: 767px) {
  .fixedheader02__mega-navigation__bottom-logo img,
  .fixedheader02__mega-navigation__bottom-logo svg {
    height: 14px;
  }
}

.fixedheader02__mega-navigation__select-language {
  position: absolute;
  bottom: 52px;
  right: 64px;
}

@media only screen and (max-width: 767px) {
  .fixedheader02__mega-navigation__select-language {
    right: 26px;
    bottom: 30px;
  }
}

.fixedheader02__mega-navigation__select-language ul {
  font-size: 0;
}

.fixedheader02__mega-navigation__select-language ul li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 6px;
  position: relative;
}

.fixedheader02__mega-navigation__select-language ul li:nth-child(1):before {
  content: '';
  width: 1px;
  height: 15px;
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  right: 0;
  top: 0;
}

.fixedheader02__mega-navigation__select-language ul li a {
  font-family: 'Portrait', sans-serif;
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.fixedheader02__mega-navigation__select-language ul li a:hover {
  opacity: 1;
}

.fixedheader02__mega-navigation__select-language ul li a.off {
  opacity: 1;
  cursor: default;
  pointer-events: none;
}

.fixedheader02__mega-navigation__nav {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 60%;
  width: 100%;
  text-align: right;
  right: 44px;
}

@media only screen and (max-width: 767px) {
  .fixedheader02__mega-navigation__nav {
    top: 50%;
    right: 0;
  }
}

.fixedheader02__mega-navigation__nav ul {
  font-size: 0;
}

.fixedheader02__mega-navigation__nav ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px;
}

@media only screen and (max-width: 767px) {
  .fixedheader02__mega-navigation__nav ul li {
    margin: 0;
    display: block;
    padding-right: 26px;
    margin: 22px 0;
  }

  .fixedheader02__mega-navigation__nav ul li:nth-child(6) {
    margin-top: 50px;
  }

  .fixedheader02__mega-navigation__nav ul li:nth-child(6) a,
  .fixedheader02__mega-navigation__nav ul li:nth-child(7) a {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.fixedheader02__mega-navigation__nav ul li a {
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Portrait', sans-serif;
  -webkit-transition: color 0.6s;
  -moz-transition: color 0.6s;
  -o-transition: color 0.6s;
  transition: color 0.6s;
}

@media only screen and (max-width: 767px) {
  .fixedheader02__mega-navigation__nav ul li a {
    font-size: 27px;
    font-size: 2.7rem;
  }
}

.fixedheader02__mega-navigation__nav ul li a:hover {
  color: #fff;
}

.footer {
  padding: 0 60px;
  background: #fff;
  position: relative;
  z-index: 10;
}

@media only screen and (max-width: 767px) {
  .footer {
    padding: 0 25px;
    margin-top: 280px;
  }
}

.footer__inner {
  position: relative;
  border-top: 1px solid #707070;
}

@media only screen and (max-width: 767px) {
  .footer__inner {
    padding: 0 0px;
  }
}

.footer-logo {
  text-align: right;
  padding-top: 34px;
}

.footer-logo a {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.footer-logo a:hover {
  opacity: 0.8;
}

.footer-logo svg {
  display: inline-block;
  height: 80px;
  width: auto;
}

.footer-logo svg .st0 {
  fill: #707070;
}

.footer__logo {
  margin-top: 60px;
}

.footer__logo a {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.footer__logo a:hover {
  opacity: 0.7;
}

.footer__logo svg {
  display: block;
  height: 14px;
  width: auto;
}

.footer__logo svg path {
  fill: #707070;
  color: #707070;
}

@media only screen and (min-width: 768px) {
  .footer__bottom {
    margin-top: 58px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding-bottom: 46px;
    align-items: center;
  }
}

.footer__bottom ul {
  font-size: 0;
}

@media only screen and (max-width: 1150px) {
  .footer__bottom ul {
    margin-top: 45px;
  }
}

.footer__bottom ul li {
  margin-right: 36px;
  display: inline-block;
  vertical-align: middle;
}

@media only screen and (max-width: 1150px) {
  .footer__bottom ul li {
    display: block;
    margin-right: 0;
    margin-top: 12px;
  }
}

.footer__bottom ul li:last-child {
  margin-right: 0;
}

.footer__bottom ul li a {
  font-family: 'Portrait', sans-serif;
  color: #707070;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

@media only screen and (max-width: 1150px) {
  .footer__bottom ul li a {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.footer__bottom p {
  color: #707070;
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-align: right;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
}

@media only screen and (max-width: 1150px) {
  .footer__bottom p {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .footer__bottom p {
    display: block;
    margin-top: 66px;
    padding-bottom: 24px;
    text-align: left;
  }
}

.header {
  padding-top: 28px;
}

.header.display .header__nav ul {
  opacity: 0;
}

.header.display .header__nav ul a {
  cursor: default;
  pointer-events: none;
}

@media only screen and (min-width: 768px) {
  .header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
  }
}

@media only screen and (max-width: 767px) {
  .header {
    z-index: 1000;
  }
}

.header.on {
  z-index: 1000;
}

.header.on .header__inner {
  position: relative;
  z-index: 200;
}

.header.on .header__nav > a.on span {
  background: #5a5a5a;
}

.header.on .header__brand svg {
  opacity: 0;
}

@media only screen and (max-width: 767px) {
  .header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
  }
}

.header__inner {
  padding: 0 60px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .header__inner {
    padding: 0 25px;
  }
}

@media only screen and (max-width: 767px) {
  .header__brand {
    position: fixed;
    left: 25px;
    top: 27px;
    height: 14px;
  }
}

.header__brand svg {
  height: 14px;
  width: auto;
}

.header__nav > a,
.header__nav ul {
  display: inline-block;
  vertical-align: middle;
}

.header__nav ul {
  font-size: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media only screen and (max-width: 950px) {
  .header__nav ul {
    display: none !important;
    width: 0;
  }
}

@media only screen and (max-width: 767px) {
  .header__nav ul {
    display: none !important;
  }
}

.header__nav ul li {
  display: inline-block;
  vertical-align: middle;
  color: #121212;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  margin-right: 38px;
}

.header__nav ul li:last-child {
  margin-right: 0;
}

.header__nav > a {
  width: 22px;
  height: 9px;
  cursor: pointer;
  position: relative;
  margin-left: 40px;
}

@media only screen and (max-width: 767px) {
  .header__nav > a {
    position: absolute;
    right: 25px;
    top: 30px;
  }

  .header__nav > a.on {
    top: 0;
  }
}

.header__nav > a span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #121212;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

.header__nav > a span:nth-child(2) {
  top: auto;
  bottom: 0;
}

.header__nav > a.on span:nth-child(1) {
  top: 4px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header__nav > a.on span:nth-child(2) {
  bottom: 3px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header__mega-navigation {
  position: fixed;
  z-index: 199;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #121212;
  display: none;
}

.header__mega-navigation__bottom-logo {
  position: absolute;
  top: 28px;
  left: 60px;
  z-index: 2;
}

@media only screen and (max-width: 1050px) {
  .header__mega-navigation__bottom-logo {
    top: 25px;
    left: 25px;
  }
}

.header__mega-navigation__bottom-logo img,
.header__mega-navigation__bottom-logo svg {
  display: block;
  height: auto;
}

@media only screen and (max-width: 1050px) {
  .header__mega-navigation__bottom-logo img,
  .header__mega-navigation__bottom-logo svg {
    height: auto;
  }
}

.header__mega-navigation__select-language {
  position: absolute;
  bottom: 52px;
  right: 64px;
}

@media only screen and (max-width: 1050px) {
  .header__mega-navigation__select-language {
    right: 26px;
    bottom: 30px;
  }
}

.header__mega-navigation__select-language ul {
  font-size: 0;
}

.header__mega-navigation__select-language ul li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 6px;
  position: relative;
}

.header__mega-navigation__select-language ul li:nth-child(1):before,
.header__mega-navigation__select-language ul li:nth-child(2):before {
  content: '';
  width: 1px;
  height: 15px;
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  right: 0;
  top: 0;
}

.header__mega-navigation__select-language ul li a {
  font-family: 'Portrait', sans-serif;
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.header__mega-navigation__select-language ul li a:hover {
  opacity: 1;
}

.header__mega-navigation__select-language ul li a.off {
  opacity: 1;
  cursor: default;
  pointer-events: none;
}

.header__mega-navigation__nav {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 60%;
  width: 100%;
  text-align: right;
  right: 44px;
}

@media only screen and (max-width: 1050px) {
  .header__mega-navigation__nav {
    top: 50%;
    right: 0;
  }
}

.header__mega-navigation__nav ul {
  font-size: 0;
}

.header__mega-navigation__nav ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px;
}

@media only screen and (max-width: 1050px) {
  .header__mega-navigation__nav ul li {
    margin: 0;
    display: block;
    padding-right: 26px;
    margin: 22px 0;
  }

  .header__mega-navigation__nav ul li:nth-child(6) {
    margin-top: 50px;
  }

  .header__mega-navigation__nav ul li:nth-child(6) a,
  .header__mega-navigation__nav ul li:nth-child(7) a {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.header__mega-navigation__nav ul li a {
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Portrait', sans-serif;
  -webkit-transition: color 0.6s;
  -moz-transition: color 0.6s;
  -o-transition: color 0.6s;
  transition: color 0.6s;
}

@media only screen and (max-width: 1050px) {
  .header__mega-navigation__nav ul li a {
    font-size: 27px;
    font-size: 2.7rem;
  }
}

.header__mega-navigation__nav ul li a:hover {
  color: #fff;
}

body.top .header {
  display: none;
}

body.top .header.all-display {
  display: block;
}

body.top .header.all-display .header__nav > a span {
  background: #707070;
}

body.top .header.on .header__nav > a.on span {
  background: #5a5a5a;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

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

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

input,
textarea {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  max-width: 100%;
}

.access-page__box {
  margin: 0 0 0 40px;
  margin-top: 5px;
}

.reservation_box h3 {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 10px;
}

.hidden {
  display: none !important;
}

.reservation_button {
  width: 80%;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  font-weight: 400;
  border: 1px solid #6c757d;
  border-radius: 4px;
  background-color: #6c757d;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  margin: 40px auto 0;
  display: block;
}

.reservation_button:hover {
  background: #5a6268;
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

@media only screen and (max-width: 767px) {
  .access-page__box {
    margin-top: 50px;
  }
}

.access-page__box p {
  color: #707070;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.access-page__box p b {
  font-size: 20px;
  font-size: 2rem;
}

@media only screen and (max-width: 767px) {
  .access-page__box p b {
    line-height: 28px;
  }
}

@media only screen and (min-width: 768px) {
  .sub-content__right.contact-page-right {
    width: 100%;
    padding-left: 390px;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 20px;
  }

  .map-img {
    max-width: 560px;
  }

  .sub-content__right.contact-page-right .access-page__box {
    max-width: 400px;
  }

  .sub-content__right.contact-page-right .reservation_box {
    max-width: 700px;
  }
}

@media only screen and (max-width: 767px) {
  .cursor {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .cursor {
    width: 29px;
    height: 29px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10000000;
    display: none;
    cursor: none;
    pointer-events: none;
  }

  .cursor.cursor01,
  .cursor.cursor03 {
    width: 37px;
    height: 29px;
  }

  .cursor.cursor01 img,
  .cursor.cursor03 img {
    width: 37px;
    height: 29px;
  }

  .cursor.cursor02 img {
    width: 29px;
    height: 29px;
  }
}

.head-logo {
  position: fixed;
  z-index: 100;
  right: 60px;
  top: 20px;
}

.head-logo__text {
  color: #fff;
  font-size: 27px;
  font-size: 2.7rem;
  letter-spacing: 0.06em;
  line-height: 1.333333333;
}

@media only screen and (max-width: 767px) {
  .head-logo {
    top: 20px;
    right: 25px;
  }
}

.head-logo svg {
  opacity: 0;
  -webkit-transition: opacity 1.2s;
  -moz-transition: opacity 1.2s;
  -o-transition: opacity 1.2s;
  transition: opacity 1.2s;
}

@media only screen and (max-width: 767px) {
  .head-logo svg {
    /* height: 108px; */
  }
}

.head-logo svg .st0 {
  fill: #a0a0a0;
}

.head-logo.on svg {
  opacity: 1;
}

.head-logo.start svg path,
.head-logo.start svg .st0,
.head-logo.start img {
  -webkit-transition: fill 2.2s;
  -moz-transition: fill 2.2s;
  -o-transition: fill 2.2s;
  transition: fill 2.2s;
  fill: #fff;
  /* transition: opacity 2.2s;
  opacity: 1; */
}

.head-logo.change svg path,
.head-logo.change svg .st0,
.head-logo.change img {
  -webkit-transition: fill 0.1s;
  -moz-transition: fill 0.1s;
  -o-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: #a0a0a0;
  /* transition: opacity 0.1s;
  opacity: 0.3; */
}

.intro-area {
  background: #fff;
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100%;
}

.main-image-slider {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.main-image-slider > div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.main-image-slider > div > div {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(1, 0, 1, 1), opacity 0.4s;
  -moz-transition: -moz-transform 0.4s cubic-bezier(1, 0, 1, 1), opacity 0.4s;
  -o-transition: -o-transform 0.4s cubic-bezier(1, 0, 1, 1), opacity 0.4s;
  transition: transform 0.4s cubic-bezier(1, 0, 1, 1), opacity 0.4s;
  opacity: 0;
  z-index: 0;
  position: relative;
}

.main-image-slider > div > div.hover:before {
  background: rgba(18, 18, 18, 0.2);
}

.main-image-slider > div > div:before {
  content: '';
  background: rgba(18, 18, 18, 0.1);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: background-color 0.4s;
  -moz-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

.main-image-slider > div > div > div {
  color: #fff;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  position: absolute;
  left: 60px;
  top: calc(50% - 55px);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .main-image-slider > div > div > div {
    left: 25px;
    top: 43%;
  }
}

.main-image-slider > div > div > div.on h2,
.main-image-slider > div > div > div.on p,
.main-image-slider > div > div > div.on small {
  opacity: 1;
  -webkit-transition: opacity 1s, left 0.6s;
  -moz-transition: opacity 1s, left 0.6s;
  -o-transition: opacity 1s, left 0.6s;
  transition: opacity 1s, left 0.6s;
}

.main-image-slider > div > div > div h2,
.main-image-slider > div > div > div p,
.main-image-slider > div > div > div small {
  opacity: 0;
  -webkit-transition: opacity 1s, left 0.6s;
  -moz-transition: opacity 1s, left 0.6s;
  -o-transition: opacity 1s, left 0.6s;
  transition: opacity 1s, left 0.6s;
  position: relative;
}

.main-image-slider > div > div > div h2 {
  font-size: 27px;
  font-size: 2.7rem;
  letter-spacing: 0.06em;
  line-height: 1.333333333;
}

@media only screen and (max-width: 767px) {
  .main-image-slider > div > div > div h2 {
    padding-right: 70px;
  }
}

.main-image-slider > div > div > div p {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  line-height: 1.333333333;
  margin-top: 20px;
}

.main-image-slider > div > div > div small {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 1.333333333;
  margin-top: 14px;
}

.main-image-slider > div > div > div > a {
  display: block;
  min-width: 160px;
  min-height: 80px;
}

.main-image-slider > div.on {
  z-index: 2;
}

.main-image-slider > div.on > div {
  opacity: 1;
  -webkit-transition: -webkit-transform 8s, opacity 1.4s;
  -moz-transition: -moz-transform 8s, opacity 1.4s;
  -o-transition: -o-transform 8s, opacity 1.4s;
  transition: transform 8s, opacity 1.4s;
}

.main-image-slider > div.off {
  z-index: 1;
}

.main-image-slider > div:nth-child(1) > div {
  background-image: url(../images/top/main01.jpg);
}

@media only screen and (max-width: 767px) {
  .main-image-slider > div:nth-child(1) > div {
    background-image: url(../images/top/main01.jpg);
  }
}

.main-image-slider > div:nth-child(2) > div {
  background-image: url(../images/top/main02.jpg);
}

@media only screen and (max-width: 767px) {
  .main-image-slider > div:nth-child(2) > div {
    background-image: url(../images/top/main02.jpg);
  }
}

.main-image-slider > div:nth-child(3) > div {
  background-image: url(../images/top/main03.jpg);
}

@media only screen and (max-width: 767px) {
  .main-image-slider > div:nth-child(3) > div {
    background-image: url(../images/top/main03.jpg);
  }
}

.main-image-slider > div:nth-child(4) > div {
  background-image: url(../images/top/main01.jpg);
}

@media only screen and (max-width: 767px) {
  .main-image-slider > div:nth-child(4) > div {
    background-image: url(../images/top/main01.jpg);
  }
}

.main-image-slider > div:nth-child(5) > div {
  background-image: url(../images/top/main02.jpg);
}

@media only screen and (max-width: 767px) {
  .main-image-slider > div:nth-child(5) > div {
    background-image: url(../images/top/main02.jpg);
  }
}

.main-image-slider__changelay {
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
}

.mainvisual {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #fff;
}

.mainvisual__box {
  position: absolute;
  left: 60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.mainvisual__intro-catch {
  position: absolute;
  left: 60px;
  top: 40%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #a0a0a0;
  font-size: 20px;
  font-size: 2rem;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  letter-spacing: 0.06em;
  opacity: 0;
  -webkit-transition: opacity 1.2s;
  -moz-transition: opacity 1.2s;
  -o-transition: opacity 1.2s;
  transition: opacity 1.2s;
}

@media only screen and (max-width: 767px) {
  .mainvisual__intro-catch {
    top: 38%;
    width: 100%;
    left: 24px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.mainvisual__intro-catch img {
  display: block;
  /* height: 27px; */
}

@media only screen and (max-width: 767px) {
  .mainvisual__intro-catch img {
    /* height: 19px; */
  }
}

.mainvisual__intro-catch.on {
  opacity: 1;
}

.mainvisual__intro-catch.off {
  opacity: 0 !important;
}

.mainvisual__bottom-logo {
  position: absolute;
  bottom: 30px;
  left: 60px;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 1.2s;
  -moz-transition: opacity 1.2s;
  -o-transition: opacity 1.2s;
  transition: opacity 1.2s;
}

.logo-img {
  width: 126.25px;
}

.home_title {
  font-size: 27px;
  font-size: 2.7rem;
  letter-spacing: 0.06em;
  font-family: 'Portrait', sans-serif;
  color: #707070;
}

.logo_title {
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 0.06em;
  font-family: 'Portrait', sans-serif;
  color: #707070;
}

.mainvisual__bottom-logo .home_title {
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .mainvisual__bottom-logo {
    bottom: 26px;
    left: 25px;
  }
}

.mainvisual__bottom-logo.on {
  opacity: 1;
}

.mainvisual__bottom-logo img,
.mainvisual__bottom-logo svg {
  display: block;
  height: 16px;
}

.svg-logo {
  transform: scale(0.25);
  transform-origin: right top;
}

.mainvisual__bottom-logo.start svg path,
.mainvisual__bottom-logo.start img {
  -webkit-transition: fill 2.2s;
  -moz-transition: fill 2.2s;
  -o-transition: fill 2.2s;
  transition: fill 2.2s;
  fill: #fff;
  /* transition: opacity 2.2s;
  opacity: 1; */
}

.mainvisual__bottom-logo.change svg path,
.mainvisual__bottom-logo.change img {
  -webkit-transition: fill 0.1s;
  -moz-transition: fill 0.1s;
  -o-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: #a0a0a0;
  /* transition: opacity 0.1s;
  opacity: 0.3; */
}

.mainvisual__bottom-nav {
  position: absolute;
  bottom: 30px;
  right: 60px;
  z-index: 2;
  opacity: 1;
  -webkit-transition: opacity 1.2s;
  -moz-transition: opacity 1.2s;
  -o-transition: opacity 1.2s;
  transition: opacity 1.2s;
}

@media only screen and (max-width: 964px) {
  .mainvisual__bottom-nav {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .mainvisual__bottom-nav {
    display: none !important;
  }
}

.mainvisual__bottom-nav.on {
  opacity: 1;
}

.mainvisual__bottom-nav.start ul li {
  -webkit-transition: color 2.2s;
  -moz-transition: color 2.2s;
  -o-transition: color 2.2s;
  transition: color 2.2s;
  color: #fff;
}

.mainvisual__bottom-nav.change ul li {
  -webkit-transition: color 0.1s;
  -moz-transition: color 0.1s;
  -o-transition: color 0.1s;
  transition: color 0.1s;
  color: #a0a0a0;
}

.mainvisual__bottom-nav ul {
  font-size: 0;
}

.mainvisual__bottom-nav ul li {
  display: inline-block;
  vertical-align: middle;
  color: #a0a0a0;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  margin-right: 38px;
}

.mainvisual__bottom-nav ul li:last-child {
  margin-right: 0;
  /* margin-left: 19px; */
}

.mainvisual__langs {
  position: absolute;
  right: 60px;
  bottom: 33px;
  z-index: 11;
}

.mainvisual__langs ul li {
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
}

.mainvisual__langs ul li a {
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: #fff;
}

.mainvisual__toggle {
  position: fixed;
  bottom: 33px;
  right: 60px;
  z-index: 11;
  width: 22px;
  height: 9px;
  opacity: 0;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .mainvisual__toggle {
    bottom: 30px;
    right: 25px;
  }
}

.mainvisual__toggle.on {
  opacity: 1;
}

.mainvisual__toggle.start span {
  background-color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.mainvisual__toggle.change span {
  background-color: #a0a0a0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.mainvisual__toggle span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #a0a0a0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

.mainvisual__toggle span:nth-child(1) {
  left: 0;
  top: 0;
}

.mainvisual__toggle span:nth-child(2) {
  right: 0;
  bottom: 0;
}

.mainvisual__toggle.open {
  z-index: 200 !important;
}

.mainvisual__toggle.open span {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.mainvisual__toggle.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 4px;
  background: #a0a0a0 !important;
}

.mainvisual__toggle.open span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: 3px;
  background: #a0a0a0 !important;
}

.mainvisual__slider-num {
  font-size: 0;
  position: absolute;
  left: 60.5px;
  top: 55%;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 1.2s;
  -moz-transition: opacity 1.2s;
  -o-transition: opacity 1.2s;
  transition: opacity 1.2s;
  padding: 0 24px;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.mainvisual__slider-num.start {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .mainvisual__slider-num {
    top: 64%;
    left: 25.5px;
  }
}

.mainvisual__slider-num.off {
  opacity: 0;
}

.mainvisual__slider-num.off li a {
  cursor: default;
  pointer-events: none;
}

.mainvisual__slider-num__prev,
.mainvisual__slider-num__next {
  position: absolute;
  width: 14px;
  height: 10px;
  display: block;
  cursor: pointer;
  background-size: 100%;
  background-image: url(../images/icon/white-arrow.svg);
  background-position: center;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.mainvisual__slider-num__next {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  left: auto;
  right: 0;
}

.mainvisual__slider-num > span {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  margin: 0 3px;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'Portrait', sans-serif;
}

.mainvisual__slider-nav {
  font-size: 0;
  position: absolute;
  left: 47.5px;
  top: 55%;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 1.2s;
  -moz-transition: opacity 1.2s;
  -o-transition: opacity 1.2s;
  transition: opacity 1.2s;
}

.mainvisual__slider-nav.start {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .mainvisual__slider-nav {
    top: 75%;
    left: 27.5px;
  }
}

.mainvisual__slider-nav.off {
  opacity: 0;
}

.mainvisual__slider-nav.off li a {
  cursor: default;
  pointer-events: none;
}

.mainvisual__slider-nav li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 12.5px;
}

.mainvisual__slider-nav li a {
  width: 12px;
  height: 12px;
  position: relative;
  display: block;
}

.mainvisual__slider-nav li a:before {
  content: '';
  display: block;
  border: 3px solid #fff;
  border-radius: 3px;
  width: 0;
  height: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.mainvisual__slider-nav li a.on:before {
  border: 1px solid #fff;
  width: 12px;
  height: 12px;
  border-radius: 12px;
}

.mainvisual__slider-nav li a.on:after {
  content: '';
  width: 32px;
  height: 32px;
  position: absolute;
  left: 60%;
  top: calc(50%);
  margin: auto;
  border: 1px solid #f5f5f5;
  border-radius: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  -webkit-animation: wave 3s infinite;
  -moz-animation: wave 3s infinite;
  animation: wave 3s infinite;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes wave {
  0% {
    width: 0px;
    height: 0px;
    -webkit-box-shadow: 0 0 20px inset #ddd;
    -moz-box-shadow: 0 0 20px inset #ddd;
    box-shadow: 0 0 20px inset #ddd;
  }

  60% {
    width: 32px;
    height: 32px;
    -webkit-box-shadow: 0 0 0px inset #ddd;
    -moz-box-shadow: 0 0 0px inset #ddd;
    box-shadow: 0 0 0px inset #ddd;
    opacity: 0;
  }

  100% {
    width: 32px;
    height: 32px;
    -webkit-box-shadow: 0 0 0px inset #ddd;
    -moz-box-shadow: 0 0 0px inset #ddd;
    box-shadow: 0 0 0px inset #ddd;
    opacity: 0;
  }
}

.mega-navigation {
  position: fixed;
  z-index: 199;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #121212;
  display: none;
}

.mega-navigation__bottom-logo {
  position: absolute;
  bottom: 30px;
  left: 60px;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .mega-navigation__bottom-logo {
    top: 25px;
    left: 25px;
  }
}

.mega-navigation__bottom-logo img,
.mega-navigation__bottom-logo svg {
  display: block;
  /* height: 16px; */
}

@media only screen and (max-width: 767px) {
  .mega-navigation__bottom-logo img,
  .mega-navigation__bottom-logo svg {
    /* height: 14px; */
  }
}

.mega-navigation__select-language {
  position: absolute;
  top: 52px;
  right: 64px;
}

@media only screen and (max-width: 767px) {
  .mega-navigation__select-language {
    top: 27px;
    right: 20px;
  }
}

.mega-navigation__select-language ul {
  font-size: 0;
}

.mega-navigation__select-language ul li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 6px;
  position: relative;
}

.mega-navigation__select-language ul li:nth-child(1):before,
.mega-navigation__select-language ul li:nth-child(2):before {
  content: '';
  width: 1px;
  height: 15px;
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  right: 0;
  top: 0;
}

.mega-navigation__select-language ul li a {
  font-family: 'Portrait', sans-serif;
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.mega-navigation__select-language ul li a:hover {
  opacity: 1;
}

.mega-navigation__select-language ul li a.off {
  opacity: 1;
  cursor: default;
  pointer-events: none;
}

.mega-navigation__nav {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 60%;
  width: 100%;
  text-align: right;
  right: 44px;
}

@media only screen and (max-width: 767px) {
  .mega-navigation__nav {
    top: 50%;
    right: 0;
  }
}

.mega-navigation__nav ul {
  font-size: 0;
}

.mega-navigation__nav ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px;
}

@media only screen and (max-width: 767px) {
  .mega-navigation__nav ul li {
    margin: 0;
    display: block;
    padding-right: 26px;
    margin: 22px 0;
  }

  .mega-navigation__nav ul li:nth-child(6) {
    margin-top: 50px;
  }

  .mega-navigation__nav ul li:nth-child(6) a,
  .mega-navigation__nav ul li:nth-child(7) a {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.mega-navigation__nav ul li a {
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Portrait', sans-serif;
  -webkit-transition: color 0.6s;
  -moz-transition: color 0.6s;
  -o-transition: color 0.6s;
  transition: color 0.6s;
}

@media only screen and (max-width: 767px) {
  .mega-navigation__nav ul li a {
    font-size: 27px;
    font-size: 2.7rem;
  }
}

.mega-navigation__nav ul li a:hover {
  color: #fff;
}

.news {
  background-color: #fff;
  padding-top: 120px;
  padding-bottom: 120px;
  -webkit-transition: background-color 0.4s;
  -moz-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .news {
    padding: 0 25px;
    padding-top: 180px;
    padding-bottom: 0px;
  }
}

.news.change {
  background-color: #121212;
}

.news.change .clearfix div,
.news.change .clearfix h2 {
  color: #fff;
}

.news .clearfix {
  overflow: hidden;
  *zoom: 1;
}

.news .clearfix div,
.news .clearfix h2 {
  -webkit-transition: color 0.4s;
  -moz-transition: color 0.4s;
  -o-transition: color 0.4s;
  transition: color 0.4s;
}

.news .clearfix h2 {
  float: left;
  color: #121212;
  font-size: 27px;
  font-size: 2.7rem;
  letter-spacing: 0.06em;
  font-family: 'Portrait', sans-serif;
  margin-left: 60px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .news .clearfix h2 {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}

.news .clearfix h2.fixed {
  position: fixed;
  top: 180px;
}

@media only screen and (max-width: 767px) {
  .news .clearfix h2.fixed {
    position: static;
  }
}

.news .clearfix h2.fixed.fixed2 {
  position: absolute;
  top: auto;
  bottom: 160px;
}

@media only screen and (max-width: 767px) {
  .news .clearfix h2.fixed.fixed2 {
    position: static;
  }
}

.news .clearfix h2 a {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  display: block;
  position: relative;
  padding-left: 15px;
  display: block;
  margin-top: 45px;
  color: #707070;
  width: 110px;
}

.news .clearfix h2 a:hover:after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

@media only screen and (max-width: 767px) {
  .news .clearfix h2 a {
    float: none;
    position: absolute;
    right: 0;
    left: auto;
    margin: 0;
    top: 10px;
    width: auto;
  }
}

.news .clearfix h2 a:before {
  content: '';
  width: 6px;
  height: 1px;
  background: #707070;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.news .clearfix h2 a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: #707070;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.news .clearfix div {
  width: calc(100% - 280px);
  max-width: 815px;
  float: right;
  padding-right: 60px;
}

@media only screen and (max-width: 767px) {
  .news .clearfix div {
    float: none;
    width: 100%;
    padding-right: 0;
    margin-top: 90px;
  }
}

.news .clearfix div a {
  display: block;
  position: relative;
  padding-bottom: 125px;
  border-top: 1px solid #707070;
}

.news .clearfix div a:hover:before {
  left: 7px;
}

.news .clearfix div a:hover:after {
  left: 14px;
}

@media only screen and (max-width: 767px) {
  .news .clearfix div a {
    padding-bottom: 140px;
    margin: 30px 0;
  }
}

.news .clearfix div a:before {
  content: '';
  position: absolute;
  width: 14px;
  height: 1px;
  background: #707070;
  bottom: 100px;
  left: 0;
  margin: auto;
  -webkit-transition: left 0.3s;
  -moz-transition: left 0.3s;
  -o-transition: left 0.3s;
  transition: left 0.3s;
}

@media only screen and (max-width: 767px) {
  .news .clearfix div a:before {
    bottom: 130px;
  }
}

.news .clearfix div a:after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  position: absolute;
  left: 7px;
  bottom: 97px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: auto;
  -webkit-transition: left 0.3s;
  -moz-transition: left 0.3s;
  -o-transition: left 0.3s;
  transition: left 0.3s;
}

@media only screen and (max-width: 767px) {
  .news .clearfix div a:after {
    bottom: 127px;
  }
}

.news .clearfix div a em,
.news .clearfix div a span {
  display: block;
}

.news .clearfix div a em {
  font-family: 'Portrait', sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .news .clearfix div a em {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.news .clearfix div a span {
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  margin-top: 22px;
}

@media only screen and (max-width: 767px) {
  .news .clearfix div a span {
    margin-top: 14px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.news--content {
  margin-top: 60px;
}

.news--content > div {
  max-width: 100%;
}

.news--content img {
  display: block;
  width: 100%;
  height: auto;
}

.news--content p {
  margin: 0;
  line-height: 1.75;
  font-size: 16px;
  font-size: 1.6rem;
}

.news--content p a {
  text-decoration: underline;
}

.notfound {
  margin-top: 8px;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  padding-bottom: 200px;
}

@media only screen and (max-width: 767px) {
  .notfound {
    padding-bottom: 100px;
  }
}

.people {
  background: #121212;
  padding: 120px 0 260px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .people {
    padding: 0 25px;
    padding-top: 120px;
    padding-bottom: 180px;
  }
}

.people h2 {
  text-align: center;
  color: #fff;
  font-size: 27px;
  font-size: 2.7rem;
  font-family: 'Portrait', sans-serif;
  letter-spacing: 0.06em;
}

.people__inner {
  max-width: 870px;
  margin: auto;
  padding-top: 120px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: calc(100% - 200px);
}

@media only screen and (max-width: 767px) {
  .people__inner {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 80px;
  }
}

.people__inner figure {
  width: 41.309927%;
}

@media only screen and (max-width: 767px) {
  .people__inner figure {
    width: 100%;
    margin-top: 120px;
  }
}

.people__inner figure img {
  display: block;
  width: 100%;
}

.people__inner figure figcaption {
  color: #fff;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  padding-top: 30px;
}

@media only screen and (max-width: 767px) {
  .people__inner figure figcaption {
    padding-top: 0;
  }
}

.people__inner figure figcaption h3 {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.people__inner figure figcaption h3 em {
  font-family: 'Portrait', sans-serif;
  display: block;
  font-size: 22px;
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.people__inner figure figcaption p {
  padding-top: 40px;
  line-height: 1.8;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}

.people__inner figure figcaption > a {
  padding-left: 30px;
  position: relative;
  display: inline-block;
  color: #fff;
  margin-top: 60px;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.people__inner figure figcaption > a:hover {
  color: #fff;
}

.people__inner figure figcaption > a:hover:before {
  background-color: #fff;
}

.people__inner figure figcaption > a:hover:after {
  border-color: #fff;
}

@media only screen and (max-width: 767px) {
  .people__inner figure figcaption > a {
    margin-top: 60px;
  }
}

.people__inner figure figcaption > a:before,
.people__inner figure figcaption > a:after {
  -webkit-transition: left 0.3s, background-color 0.3s, border-color 0.3s;
  -moz-transition: left 0.3s, background-color 0.3s, border-color 0.3s;
  -o-transition: left 0.3s, background-color 0.3s, border-color 0.3s;
  transition: left 0.3s, background-color 0.3s, border-color 0.3s;
}

@media only screen and (min-width: 768px) {
  .people__inner figure figcaption > a:hover:before {
    left: 4px;
  }

  .people__inner figure figcaption > a:hover:after {
    left: 11px;
  }
}

.people__inner figure figcaption > a:before {
  content: '';
  position: absolute;
  width: 14px;
  height: 1px;
  background: #fff;
  top: -2px;
  bottom: 0;
  left: 0;
  margin: auto;
}

.people__inner figure figcaption > a:after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  left: 7px;
  top: -2px;
  bottom: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: auto;
}

.philosophy {
  background-color: #fff;
  padding-top: 180px;
  padding-bottom: 270px;
  -webkit-transition: background-color 0.4s;
  -moz-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

.philosophy ul li {
  list-style-type: disc;
}

/* .philosophy ul li + p {
  padding-left: 1em;
} */

@media only screen and (max-width: 767px) {
  .philosophy {
    padding: 0 25px;
    padding-top: 180px;
    padding-bottom: 240px;
  }
}

.philosophy.change {
  background-color: #121212;
}

.philosophy.change .clearfix div,
.philosophy.change .clearfix h2 {
  color: #fff;
}

.philosophy .clearfix {
  overflow: hidden;
  *zoom: 1;
}

.philosophy .clearfix div,
.philosophy .clearfix h2 {
  -webkit-transition: color 0.4s;
  -moz-transition: color 0.4s;
  -o-transition: color 0.4s;
  transition: color 0.4s;
}

.philosophy .clearfix h2 {
  float: left;
  color: #121212;
  font-size: 27px;
  font-size: 2.7rem;
  letter-spacing: 0.06em;
  font-family: 'Portrait', sans-serif;
  margin-left: 60px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .philosophy .clearfix h2 {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}

.philosophy .clearfix h2.fixed {
  position: fixed;
  top: 180px;
}

@media only screen and (max-width: 767px) {
  .philosophy .clearfix h2.fixed {
    position: static;
  }
}

.philosophy .clearfix h2.fixed.fixed2 {
  position: absolute;
  top: auto;
  bottom: 240px;
}

@media only screen and (max-width: 767px) {
  .philosophy .clearfix h2.fixed.fixed2 {
    position: static;
  }
}

.philosophy .clearfix div {
  float: right;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 1.75;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  color: #121212;
  width: 400px;
  margin-right: 60px;
}

.philosophy .clearfix div.philosophy__img {
  width: auto;
}

@media only screen and (max-width: 767px) {
  .philosophy .clearfix div {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-top: 60px;
  }
}

.philosophy .clearfix div a {
  padding-left: 30px;
  position: relative;
  display: inline-block;
}

.philosophy .clearfix div a:before,
.philosophy .clearfix div a:after {
  -webkit-transition: left 0.3s;
  -moz-transition: left 0.3s;
  -o-transition: left 0.3s;
  transition: left 0.3s;
}

@media only screen and (min-width: 768px) {
  .philosophy .clearfix div a:hover:before {
    left: 4px;
  }

  .philosophy .clearfix div a:hover:after {
    left: 11px;
  }
}

.philosophy .clearfix div a:before {
  content: '';
  position: absolute;
  width: 14px;
  height: 1px;
  background: #fff;
  top: -2px;
  bottom: 0;
  left: 0;
  margin: auto;
}

.philosophy .clearfix div a:after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  left: 7px;
  top: -2px;
  bottom: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: auto;
}

.pop-gallery {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.pop-gallery.on {
  opacity: 1;
}

.pop-gallery__close {
  position: absolute;
  width: 18px;
  height: 18px;
  left: 60px;
  top: 50px;
  z-index: 8;
}

.pop-gallery__close:before,
.pop-gallery__close:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.pop-gallery__close:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.pop-gallery__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #121212;
}

.pop-gallery__inner {
  padding: 50px 58px;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.pop-gallery__inner > div {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.pop-gallery__inner__l {
  width: 254px;
  padding-right: 30px;
  position: relative;
}

.pop-gallery__inner__l > div {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  width: calc(100% - 30px);
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
}

.pop-gallery__inner__l > div p {
  line-height: 1.4;
}

.pop-gallery__inner__l > div ul {
  display: block;
  margin-top: 8px;
}

.pop-gallery__inner__l > div ul li {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
}

.pop-gallery__inner__l > div ul li:nth-child(2) {
  padding-left: 14px;
  position: relative;
}

.pop-gallery__inner__l > div ul li:nth-child(2):before {
  content: '';
  width: 1px;
  height: 10px;
  background: #fff;
  -webkit-transform: rotate(22deg);
  -moz-transform: rotate(22deg);
  -ms-transform: rotate(22deg);
  -o-transform: rotate(22deg);
  transform: rotate(22deg);
  position: absolute;
  left: 7px;
  top: 1px;
}

.pop-gallery__inner__l > div span {
  margin-top: 40px;
  line-height: 1.7;
  display: block;
  width: 100%;
  height: 65px;
  position: relative;
  width: 100%;
}

.pop-gallery__inner__l > div span small {
  color: #999;
  display: block;
  position: absolute;
  width: 100%;
  display: none;
}

.pop-gallery__inner__r {
  width: calc(100% - 254px);
  height: 100%;
}

.pop-gallery__inner__r > div {
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.pop-gallery__inner__r > div.on {
  opacity: 1;
}

.pop-gallery__inner__r .slick-list {
  height: 100%;
}

.pop-gallery__inner__r .slick-list > div {
  height: 100%;
}

.pop-gallery__inner__r .slick-list > div > div {
  height: 100%;
}

.pop-gallery__inner__r .slick-list > div > div > div {
  height: 100%;
}

.pop-gallery__inner__r .slick-list > div > div > div > div {
  height: 100%;
  text-align: right;
}

.pop-gallery__inner__r .slick-list > div > div > div > div > div {
  height: 100%;
  display: inline-block;
  position: relative;
}

.pop-gallery__inner__r .slick-list > div > div > div > div > div .pop-special-prev-link {
  position: absolute;
  width: 20%;
  height: 100%;
  min-width: 180px;
  left: 0;
  top: 0;
  cursor: pointer;
  background-size: 37.15px 26px;
  background-image: url(../images/icon/gallery_prev.svg);
  background-position: center left 30px;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.pop-gallery__inner__r .slick-list > div > div > div > div > div .pop-special-prev-link:hover {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .pop-gallery__inner__r .slick-list > div > div > div > div > div .pop-special-prev-link {
    display: none;
  }
}

.pop-gallery__inner__r .slick-slide img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0 0 0 auto;
}

.pop-gallery__inner__r .slick-next {
  position: absolute;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  width: 20%;
  height: 100%;
  top: 0;
  background-size: 37.15px 26px;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.pop-gallery__inner__r .slick-next:before {
  content: none;
}

.pop-gallery__inner__r .slick-next:hover {
  opacity: 1;
}

.pop-gallery__inner__r .slick-prev {
  width: 0;
  left: 0;
  top: 0;
  opacity: 0 !important;
  pointer-events: none;
}

.pop-gallery__inner__r .slick-next {
  right: 0px;
  background-image: url(../images/icon/gallery_next.svg);
  background-position: center right 30px;
}

.pop-gallery--prev,
.pop-gallery--next {
  width: 20%;
}

.pop-gallery--prev,
.pop-gallery--next,
.pop-gallery--plus {
  position: absolute;
  height: 100%;
  background-size: 29px 29px;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
}

.pop-gallery--prev {
  left: 0;
}

.pop-gallery--next {
  right: 0;
}

.pop-gallery--plus {
  left: 50%;
  width: 60%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.reverse {
  background: #121212;
  color: #fff;
}

.reverse .header__brand path {
  fill: #fff;
}

.reverse .header__nav ul li {
  color: #fff;
}

.reverse .header__nav > a span {
  background: #fff;
}

.reverse .sub-content__left--toggle > span:before,
.reverse .sub-content__left--toggle > span:after {
  background: #fff;
}

.reverse .sub-content__left--toggle ul li a {
  color: rgba(255, 255, 255, 0.8);
}

.reverse .sub-content__left--toggle ul li a:hover {
  color: #fff;
}

.reverse .footer {
  background: #121212;
}

.reverse .footer .footer__inner {
  border-top: 1px solid #707070;
}

.reverse .footer .footer__logo svg path,
.reverse .footer .footer-logo svg .st0 {
  fill: #707070;
  color: #707070;
}

.reverse .footer .footer__bottom ul li a {
  color: #707070;
}

.reverse .footer .footer__bottom p {
  color: #707070;
}

@media only screen and (min-width: 768px) {
  .section-bg {
    height: 100vh;
    width: 100%;
  }
}

.section-bg div {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .section-bg div {
    position: static;
    height: auto;
  }
}

@media only screen and (min-width: 768px) {
  .section-bg div {
    z-index: -1;
    background-attachment: fixed;
  }

  .section-bg div video {
    position: absolute;
    min-width: 100%;
    min-height: 100vh;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
  }
}

@media only screen and (max-width: 767px) {
  .section-bg div video {
    position: static;
    display: block;
    width: 100%;
    height: auto;
  }
}

.section-bg--caption {
  color: #707070;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: right;
  position: absolute;
  top: 10px;
  right: 60px;
  letter-spacing: 0.03em;
}

@media only screen and (max-width: 767px) {
  .section-bg--caption {
    text-align: left;
    line-height: 16px;
    padding-left: 0px;
    right: auto;
    left: 25px;
  }
}

@media only screen and (min-width: 768px) {
  .section-bg2 {
    opacity: 0;
  }
}

@media only screen and (min-width: 768px) {
  .section-bg2 {
    height: 100vh;
    width: 100%;
  }
}

.section-bg2 div {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .section-bg2 div {
    position: static;
    height: auto;
  }

  .footer__bottom {
    padding-bottom: 90px;
  }
}

@media only screen and (min-width: 768px) {
  .section-bg2 div {
    z-index: -1;
    background-attachment: fixed;
  }

  .section-bg2 div video {
    position: absolute;
    min-width: 100%;
    min-height: 100vh;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
  }
}

@media only screen and (max-width: 767px) {
  .section-bg2 div video {
    position: static;
    display: block;
    width: 100%;
    height: auto;
  }
}

.section-bg2--caption {
  color: #707070;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: right;
  position: absolute;
  top: 10px;
  right: 60px;
  letter-spacing: 0.03em;
}

@media only screen and (max-width: 767px) {
  .section-bg2--caption {
    text-align: left;
    line-height: 16px;
    padding-left: 0px;
    right: auto;
    left: 25px;
  }
}

.sub-content {
  margin-top: 120px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0 60px;
}

@media only screen and (max-width: 767px) {
  .sub-content {
    margin-top: 150px;
    padding: 0 25px;
  }
}

.sub-content__left {
  width: 390px;
}

@media only screen and (max-width: 767px) {
  .sub-content__left {
    width: 100%;
  }
}

.sub-content__left--copy {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.909090909;
  letter-spacing: 0.04em;
  color: #707070;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  display: block;
  margin-top: 345px;
}

.sub-content__left--box {
  position: fixed;
  top: 164px;
  left: 60px;
  width: 390px;
}

@media only screen and (max-width: 767px) {
  .sub-content__left--box {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }
}

.sub-content__left--box h2 {
  font-size: 27px;
  font-size: 2.7rem;
  letter-spacing: 0.06em;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  line-height: 1.26;
}

.sub-content__left--box h2 small {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 20px;
}

.sub-content__left--location-year {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  margin-top: 18px;
}

.sub-content__left--description {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
  margin-top: 80px;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
}

@media only screen and (max-width: 767px) {
  .sub-content__left--description {
    margin-top: 65px !important;
  }
}

.sub-content__left--pager {
  border-top: 1px solid #707070;
  position: absolute;
  width: calc(100% - 30px);
  bottom: 0;
  left: 0;
}

.sub-content__left--pager:hover a {
  color: #121212;
}

.sub-content__left--pager.no-absolute {
  position: static;
  margin-top: 300px;
}

.sub-content__left--pager a {
  display: block;
  position: relative;
  padding-top: 18px;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  color: #707070;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.sub-content__left--pager a em {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  position: relative;
  padding-left: 25px;
}

.sub-content__left--pager a em:before {
  content: '';
  width: 14px;
  height: 1px;
  background: #707070;
  position: absolute;
  left: 0;
  top: -2px;
  bottom: 0;
  margin: auto;
}

.sub-content__left--pager a em:after {
  content: '';
  width: 6px;
  height: 6px;
  border-left: 1px solid #707070;
  border-top: 1px solid #707070;
  position: absolute;
  left: 7px;
  top: -2px;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(-225deg);
  -moz-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  -o-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

.sub-content__left--pager a strong {
  display: block;
  margin-top: 30px;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.272727273;
  letter-spacing: 0.03em;
}

.sub-content__left--pager a span {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3125;
  letter-spacing: 0.06em;
  margin-top: 12px;
  display: block;
}

.sub-content__left h2 {
  font-size: 27px;
  font-size: 2.7rem;
  letter-spacing: 0.06em;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  line-height: 1.26;
}

.sub-content__left h2 small {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 20px;
}

.sub-content__left--toggle {
  display: inline-block;
  margin-top: 36px;
}

.sub-content__left--toggle > span {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  font-family: 'Portrait', sans-serif;
  padding-left: 14px;
  position: relative;
  cursor: pointer;
}

.sub-content__left--toggle > span.on:after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

.sub-content__left--toggle > span:before {
  content: '';
  width: 8px;
  height: 1px;
  background: #121212;
  position: absolute;
  top: -3px;
  bottom: 0;
  left: 0;
  margin: auto;
}

.sub-content__left--toggle > span:after {
  content: '';
  width: 8px;
  height: 1px;
  background: #121212;
  position: absolute;
  top: -3px;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  transition: transform 0.3s;
}

.sub-content__left--toggle ul {
  margin-top: 14px;
  padding-left: 14px;
  display: none;
}

.sub-content__left--toggle ul li a {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.06em;
  font-family: 'Portrait', sans-serif;
  color: rgba(18, 18, 18, 0.7);
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

@media only screen and (min-width: 768px) {
  .sub-content__left--toggle ul li a:hover {
    color: #121212;
  }
}

.sub-content__right {
  width: calc(100% - 390px);
  max-width: 770px;
}

@media only screen and (min-width: 1730px) {
  .sub-content__right {
    max-width: 1180px;
  }
}

@media only screen and (min-width: 2140px) {
  .sub-content__right {
    max-width: 1590px;
  }
}

@media only screen and (max-width: 767px) {
  .sub-content__right {
    width: 100%;
    padding-top: 20px;
  }
}

.top-content {
  position: relative;
  z-index: 10;
}

.works-archive {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 365px;
}

@media only screen and (min-width: 768px) {
  .works-archive {
    min-height: 1150px;
  }
}

.works-archive > a {
  display: block;
  width: 46.761658%;
  max-width: 360px;
  margin-top: 114px;
}

@media only screen and (min-width: 1730px) {
  .works-archive > a {
    width: 360px;
  }

  .works-archive > a:nth-child(3) {
    margin-top: 0;
  }
}

@media only screen and (min-width: 2140px) {
  .works-archive > a:nth-child(4) {
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .works-archive > a {
    width: 100%;
    margin-top: 80px;
  }
}

.works-archive > a:nth-child(1),
.works-archive > a:nth-child(2) {
  margin-top: 0;
}

@media only screen and (max-width: 767px) {
  .works-archive > a:nth-child(1),
  .works-archive > a:nth-child(2) {
    margin-top: 80px;
  }
}

.works-archive > a:hover figure > div:before {
  opacity: 1;
}

.works-archive > a:hover figure figcaption {
  opacity: 0.6;
}

.works-archive > a figure > div {
  position: relative;
}

.works-archive > a figure > div:before {
  content: '';
  background: rgba(18, 18, 18, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.works-archive > a figure > div img {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}

.works-archive > a figure figcaption {
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  line-height: 1.272727273;
  padding-top: 18px;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.works-archive > a figure figcaption span {
  margin-top: 12px;
  line-height: 1.3125;
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
}

.works {
  background-color: #fff;
  padding-top: 180px;
  padding-bottom: 180px;
  -webkit-transition: background-color 0.4s;
  -moz-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .works__top__clearfix {
    margin-top: 80px;
  }
}

.works-copy--top {
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: #707070;
  position: fixed;
  left: 60px;
  bottom: 40px;
  line-height: 1.363636364;
  font-family: 'Portrait', sans-serif;
  display: none;
}

@media only screen and (max-width: 767px) {
  .works {
    padding: 0 25px;
    padding-top: 200px;
    padding-bottom: 270px;
  }
}

.works.change {
  background-color: #121212;
}

.works.change .clearfix div,
.works.change .clearfix h2 {
  color: #fff;
}

.works .clearfix {
  overflow: hidden;
  *zoom: 1;
}

.works .clearfix div,
.works .clearfix h2 {
  -webkit-transition: color 0.4s;
  -moz-transition: color 0.4s;
  -o-transition: color 0.4s;
  transition: color 0.4s;
}

.works .clearfix h2 {
  float: left;
  color: #121212;
  font-size: 27px;
  font-size: 2.7rem;
  letter-spacing: 0.06em;
  font-family: 'Portrait', sans-serif;
  margin-left: 60px;
  position: relative;
}

.works .clearfix h2.fixed {
  position: fixed;
  top: 180px;
}

@media only screen and (max-width: 767px) {
  .works .clearfix h2 {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}

.works .clearfix h2.fixed {
  position: fixed;
  top: 180px;
}

.works .clearfix h2.fixed.fixed2 {
  position: absolute;
  top: auto;
  bottom: 160px;
}

.works .clearfix h2 a {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  display: block;
  width: 110px;
  position: relative;
  padding-left: 15px;
  display: block;
  margin-top: 45px;
  color: #707070;
}

.works .clearfix h2 a:hover:after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

@media only screen and (max-width: 767px) {
  .works .clearfix h2 a {
    float: none;
    position: absolute;
    right: 0;
    left: auto;
    margin: 0;
    top: 10px;
    width: auto;
  }
}

.works .clearfix h2 a:before {
  content: '';
  width: 6px;
  height: 1px;
  background: #707070;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.works .clearfix h2 a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: #707070;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.works .clearfix h2 a.works__top__link {
  padding-left: 30px;
  width: 130px;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.works .clearfix h2 a.works__top__link:hover {
  color: #121212;
}

.works .clearfix h2 a.works__top__link:hover:before,
.works .clearfix h2 a.works__top__link:hover:after {
  left: 4px;
}

.works .clearfix h2 a.works__top__link:hover:before {
  background: #121212;
}

.works .clearfix h2 a.works__top__link:hover:after {
  left: 10px;
  border-color: #121212;
}

.works .clearfix h2 a.works__top__link:before {
  content: '';
  width: 14px;
  height: 1px;
  background: #707070;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  margin: auto;
  -webkit-transition: left 0.3s, background-color 0.3s;
  -moz-transition: left 0.3s, background-color 0.3s;
  -o-transition: left 0.3s, background-color 0.3s;
  transition: left 0.3s, background-color 0.3s;
}

.works .clearfix h2 a.works__top__link:after {
  content: '';
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  position: absolute;
  right: auto;
  left: 6px;
  top: 0;
  bottom: 0;
  background: transparent;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
  -webkit-transition: left 0.3s, background-color 0.3s, border-color 0.3s;
  -moz-transition: left 0.3s, background-color 0.3s, border-color 0.3s;
  -o-transition: left 0.3s, background-color 0.3s, border-color 0.3s;
  transition: left 0.3s, background-color 0.3s, border-color 0.3s;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media only screen and (max-width: 767px) {
  .works .clearfix h2 a.works__top__link {
    position: relative !important;
    top: 0 !important;
    margin-top: 30px !important;
  }
}

.works .clearfix > div {
  float: right;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 1.75;
  font-family: 'Portrait', sans-serif;
  color: #121212;
  width: calc(100% - 380px);
  max-width: 780px;
  margin-right: 60px;
}

@media only screen and (min-width: 1630px) {
  .works .clearfix > div {
    max-width: 1150px;
  }
}

@media only screen and (min-width: 1930px) {
  .works .clearfix > div {
    max-width: 1730px;
  }
}

@media only screen and (max-width: 767px) {
  .works .clearfix > div {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-top: 0px;
  }
}

@media only screen and (min-width: 1630px) {
  .works .clearfix > div .flex-row:before {
    content: '';
    width: 47.5%;
    display: block;
    max-width: 360px;
    order: 1;
  }
}

@media only screen and (min-width: 1930px) {
  .works .clearfix > div .flex-row:before {
    content: '';
    width: 47.5%;
    display: block;
    max-width: 360px;
    order: 1;
  }

  .works .clearfix > div .flex-row:after {
    content: '';
    width: 47.5%;
    display: block;
    max-width: 360px;
  }
}

.works .clearfix > div .flex-row a {
  width: 47.5%;
  margin-top: 98px;
  display: block;
  max-width: 360px;
}

@media only screen and (min-width: 768px) {
  .works .clearfix > div .flex-row a:nth-child(1),
  .works .clearfix > div .flex-row a:nth-child(2) {
    margin-top: 0;
  }
}

@media only screen and (min-width: 1630px) {
  .works .clearfix > div .flex-row a:nth-child(3) {
    margin-top: 0;
  }
}

@media only screen and (min-width: 1930px) {
  .works .clearfix > div .flex-row a:nth-child(4) {
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .works .clearfix > div .flex-row a {
    width: 100%;
    margin-top: 90px;
  }
}

.works .clearfix > div .flex-row a:hover figure > div:before {
  opacity: 1;
}

.works .clearfix > div .flex-row a:hover figure figcaption {
  opacity: 0.6;
}

.works .clearfix > div .flex-row figure:nth-child(1),
.works .clearfix > div .flex-row figure:nth-child(2) {
  margin-top: 0;
}

@media only screen and (max-width: 767px) {
  .works .clearfix > div .flex-row figure:nth-child(1),
  .works .clearfix > div .flex-row figure:nth-child(2) {
    margin-top: 0px;
  }
}

.works .clearfix > div .flex-row figure > div {
  position: relative;
}

.works .clearfix > div .flex-row figure > div:before {
  content: '';
  background: rgba(18, 18, 18, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.works .clearfix > div .flex-row figure > div img {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}

.works .clearfix > div .flex-row figure figcaption {
  color: #121212;
  padding-top: 18px;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.works .clearfix > div .flex-row figure figcaption h3 {
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
}

@media only screen and (min-width: 768px) {
  .works .clearfix > div .flex-row figure figcaption h3 {
    line-height: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .works .clearfix > div .flex-row figure figcaption h3 {
    line-height: 1.272727273;
  }
}

.works .clearfix > div .flex-row figure figcaption p {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 1.3125;
  margin-top: 10px;
}

.works .clearfix > div .flex-row figure figcaption span {
  display: block;
  color: #707070;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  margin-top: 10px;
}

.works .clearfix > div > a {
  padding-left: 30px;
  position: relative;
  display: inline-block;
  color: #707070;
  margin-top: 115px;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.works .clearfix > div > a:hover {
  color: #121212;
}

.works .clearfix > div > a:hover:before {
  background-color: #121212;
}

.works .clearfix > div > a:hover:after {
  border-color: #121212;
}

@media only screen and (max-width: 767px) {
  .works .clearfix > div > a {
    margin-top: 60px;
  }
}

.works .clearfix > div > a:before,
.works .clearfix > div > a:after {
  -webkit-transition: left 0.3s, background-color 0.3s, border-color 0.3s;
  -moz-transition: left 0.3s, background-color 0.3s, border-color 0.3s;
  -o-transition: left 0.3s, background-color 0.3s, border-color 0.3s;
  transition: left 0.3s, background-color 0.3s, border-color 0.3s;
}

@media only screen and (min-width: 768px) {
  .works .clearfix > div > a:hover:before {
    left: 4px;
  }

  .works .clearfix > div > a:hover:after {
    left: 11px;
  }
}

.works .clearfix > div > a:before {
  content: '';
  position: absolute;
  width: 14px;
  height: 1px;
  background: #707070;
  top: -2px;
  bottom: 0;
  left: 0;
  margin: auto;
}

.works .clearfix > div > a:after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  position: absolute;
  left: 7px;
  top: -2px;
  bottom: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: auto;
}

.requirement-page {
  padding-bottom: 245px;
}

.requirement-page .sub-content__right {
  padding-top: 20px;
  border-top: 1px solid #707070;
}

@media only screen and (max-width: 767px) {
  .requirement-page .sub-content__right {
    margin-top: 90px;
  }
}

.requirement-page .sub-content__right.no-border {
  padding-top: 0;
  border-top: none;
}

.requirement-page .sub-content__right > small {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  font-family: 'Portrait', sans-serif;
}

.requirement-page .sub-content__right > h2 {
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.06em;
  margin-top: 26px;
  line-height: 1.6;
}

.requirement-page .sub-content__right > h3 {
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.requirement-page .sub-content__right > p {
  margin-top: 66px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  line-height: 1.75;
}

.requirement-page .sub-content__right > a.plane-link {
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  color: #707070;
  letter-spacing: 0.03em;
  margin-top: 80px;
}

.requirement-page .sub-content__right > a.plane-link svg,
.requirement-page .sub-content__right > a.plane-link span {
  display: inline-block;
  vertical-align: middle;
}

.requirement-page .sub-content__right > a.plane-link svg {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-right: 5px;
}

.requirement-page .sub-content__right > a.plane-link svg path {
  fill: #707070;
}

.requirement-page .sub-content__right > a:not(.plane-link) {
  width: 240px;
  margin-top: 90px;
  display: block;
  text-align: center;
  padding: 15px 0;
  background: #f4f4f4;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
}

@media only screen and (min-width: 768px) {
  .requirement-page .sub-content__right > a:not(.plane-link):hover {
    background: #121212;
  }

  .requirement-page .sub-content__right > a:not(.plane-link):hover svg path {
    fill: #fff;
  }

  .requirement-page .sub-content__right > a:not(.plane-link):hover span {
    color: #fff;
  }
}

.requirement-page .sub-content__right > a:not(.plane-link) svg,
.requirement-page .sub-content__right > a:not(.plane-link) span {
  display: inline-block;
  vertical-align: middle;
}

.requirement-page .sub-content__right > a:not(.plane-link) svg {
  width: 10px;
}

.requirement-page .sub-content__right > a:not(.plane-link) svg path {
  -webkit-transition: fill 0.6s;
  -moz-transition: fill 0.6s;
  -o-transition: fill 0.6s;
  transition: fill 0.6s;
  fill: #121212;
}

.requirement-page .sub-content__right > a:not(.plane-link) span {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  margin-left: 10px;
  -webkit-transition: color 0.6s;
  -moz-transition: color 0.6s;
  -o-transition: color 0.6s;
  transition: color 0.6s;
  color: #121212;
}

.requirement-page .sub-content__right form {
  margin-top: 72px;
}

@media only screen and (max-width: 767px) {
  .requirement-page .sub-content__right form {
    margin-top: 0;
  }
}

.requirement-page .sub-content__right form .flex-row {
  margin-top: 36px;
}

.requirement-page .sub-content__right form .flex-row label {
  width: 48.7012987%;
}

.requirement-page .sub-content__right form .single-row {
  margin-top: 36px;
}

.requirement-page .sub-content__right form label {
  display: block;
  position: relative;
}

.requirement-page .sub-content__right form label span {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  -webkit-transition: color 0.6s;
  -moz-transition: color 0.6s;
  -o-transition: color 0.6s;
  transition: color 0.6s;
  color: #121212;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
}

.requirement-page .sub-content__right form label input,
.requirement-page .sub-content__right form label button,
.requirement-page .sub-content__right form label select,
.requirement-page .sub-content__right form label textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
}

.requirement-page .sub-content__right form label textarea {
  resize: vertical;
}

.requirement-page .sub-content__right form label input[type='checkbox'],
.requirement-page .sub-content__right form label input[type='radio'] {
  display: none;
}

.requirement-page .sub-content__right form label input[type='submit'],
.requirement-page .sub-content__right form label input[type='button'],
.requirement-page .sub-content__right form label label,
.requirement-page .sub-content__right form label button,
.requirement-page .sub-content__right form label select {
  cursor: pointer;
}

.requirement-page .sub-content__right form label select::-ms-expand {
  display: none;
}

.requirement-page .sub-content__right form label input,
.requirement-page .sub-content__right form label select {
  display: block;
  line-height: 2;
  width: 100%;
  background: #f4f4f4;
  padding: 10px 15px 6px;
  box-sizing: border-box;
  margin-top: 14px;
  border: 1px solid #f4f4f4;
  -webkit-transition: background 0.3s, border 0.3s;
  -moz-transition: background 0.3s, border 0.3s;
  -o-transition: background 0.3s, border 0.3s;
  transition: background 0.3s, border 0.3s;
  font-size: 15px;
  font-size: 1.5rem;
}

.requirement-page .sub-content__right form label input:focus,
.requirement-page .sub-content__right form label select:focus {
  border: 1px solid #121212;
  background: #fff;
}

.requirement-page .sub-content__right form label input.has-error,
.requirement-page .sub-content__right form label select.has-error {
  border: 1px solid #dc3c3c;
  background: #fdf5f5;
}

.requirement-page .sub-content__right form label input[type='date']::-webkit-datetime-edit {
  visibility: hidden;
}

.requirement-page .sub-content__right form label textarea {
  line-height: 1.6;
  width: 100%;
  background: #f4f4f4;
}

.requirement-page .sub-content__right form input[type='file'] {
  opacity: 0;
  z-index: 0;
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
}

.requirement-page .sub-content__right form .file-row {
  margin-top: 36px;
}

.requirement-page .sub-content__right form .file-row__row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}

.requirement-page .sub-content__right form .file-row__selector {
  background: #f4f4f4;
  padding: 15px 16px;
  width: 375px;
}

@media only screen and (max-width: 1050px) {
  .requirement-page .sub-content__right form .file-row__selector {
    width: 100%;
  }
}

.requirement-page .sub-content__right form .file-row__selector svg,
.requirement-page .sub-content__right form .file-row__selector span {
  vertical-align: middle;
  display: inline-block;
}

.requirement-page .sub-content__right form .file-row__selector svg path {
  fill: #a0a0a0;
}

.requirement-page .sub-content__right form .file-row__selector span {
  color: #a0a0a0;
  margin-left: 6px;
  position: relative;
  top: 2px;
}

.requirement-page .sub-content__right form .file-row__name {
  width: calc(100% - 375px);
  padding: 15px 16px;
}

@media only screen and (max-width: 1050px) {
  .requirement-page .sub-content__right form .file-row__name {
    width: 100%;
  }
}

.requirement-page .sub-content__right form .file-row__name span {
  color: #a0a0a0;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  line-height: 2;
}

.requirement-page .sub-content__right form button {
  display: block;
  background: #121212;
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  text-align: center;
  width: 100%;
  line-height: 2;
  padding: 8px 0;
  margin-top: 160px;
  -webkit-transition: background 0.6s;
  -moz-transition: background 0.6s;
  -o-transition: background 0.6s;
  transition: background 0.6s;
  border: 1px solid #121212;
}

.requirement-page .sub-content__right form button:hover {
  background: #fff;
}

.requirement-page .sub-content__right form button:hover svg path {
  fill: #121212;
}

.requirement-page .sub-content__right form button:hover span {
  color: #121212;
}

.requirement-page .sub-content__right form button svg,
.requirement-page .sub-content__right form button span {
  vertical-align: middle;
  display: inline-block;
}

.requirement-page .sub-content__right form button svg path {
  fill: #fff;
  -webkit-transition: fill 0.6s;
  -moz-transition: fill 0.6s;
  -o-transition: fill 0.6s;
  transition: fill 0.6s;
}

.requirement-page .sub-content__right form button span {
  color: #fff;
  margin-left: 6px;
  position: relative;
  top: 1px;
  -webkit-transition: color 0.6s;
  -moz-transition: color 0.6s;
  -o-transition: color 0.6s;
  transition: color 0.6s;
}

.back-to-page {
  position: fixed;
  left: 50px;
  top: 50px;
  display: block;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  width: 40px;
  height: 40px;
  z-index: 3;
}

.back-to-page:before {
  content: '';
  width: 100%;
  height: 1px;
  background: #ddd;
  position: absolute;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  top: 0;
  left: 0;
}

.back-to-page:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #ddd;
  position: absolute;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  top: 20px;
  left: 20px;
}

.back-to-page:hover:after,
.back-to-page:hover:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 15px;
  left: 5px;
}

.test-whole {
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
  color: #121212;
  padding-bottom: 100px;
}

.test-whole h2,
.test-whole h3,
.test-whole h4,
.test-whole h5,
.test-whole h6 {
  font-weight: bold;
}

.test-whole h2 {
  letter-spacing: 0.07em;
  font-size: 28px;
  font-size: 2.8rem;
}

.test-whole h2 span {
  padding-left: 15px;
  position: relative;
}

.test-whole h2 span:before {
  content: '';
  width: 1px;
  height: 20px;
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  transform: rotate(20deg);
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 0;
  margin: auto;
  background: #121212;
}

.test-whole h3 {
  letter-spacing: 0.02em;
  font-size: 18px;
  font-size: 1.8rem;
}

.test-whole button {
  font-size: 18px;
  font-size: 1.8rem;
  display: inline-block;
  padding: 15px;
  position: relative;
}

.test-whole button:after {
  content: '';
  width: 100%;
  position: absolute;
  z-index: 1;
  height: 0%;
  background: #121212;
  left: 0;
  top: 0;
  -webkit-transition: height 0.4s;
  -moz-transition: height 0.4s;
  -o-transition: height 0.4s;
  transition: height 0.4s;
}

.test-whole button:before {
  content: '';
  z-index: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #cccccc;
}

.test-whole button span {
  color: #121212;
  -webkit-transition: color 0.4s;
  -moz-transition: color 0.4s;
  -o-transition: color 0.4s;
  transition: color 0.4s;
  z-index: 2;
  position: relative;
}

.test-whole button:hover:after {
  height: 100%;
}

.test-whole button:hover span {
  color: #fff;
}

.test-whole .test-box {
  width: 80%;
  margin: auto;
  margin-top: 40px;
  border: 1px solid #cccccc;
  border-bottom: none;
}

.test-whole .test-box__menus {
  border-bottom: 1px solid #cccccc;
}

.test-whole .test-box__menus li a {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  padding: 15px 25px;
  padding-right: 35px;
  position: relative;
  background-color: #fff;
  letter-spacing: 0.02em;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.test-whole .test-box__menus li a:before {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: auto;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.test-whole .test-box__menus li a:hover {
  background-color: #fafafa;
}

.test-whole .test-box__menus li a:hover:before {
  right: 20px;
}

.test-whole .test-box h2 {
  border-bottom: 1px solid #cccccc;
  padding: 10px 25px;
}

.test-whole .test-box > div {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #cccccc;
}

.test-whole .test-box > div > div:nth-child(1) {
  width: 80%;
  min-height: 300px;
  border-right: 1px solid #cccccc;
  position: relative;
}

.test-whole .test-box > div > div:nth-child(1) > span {
  font-size: 15px;
  font-size: 1.5rem;
  color: #999;
  position: absolute;
  left: 10px;
  top: 10px;
}

.test-whole .test-box > div > div:nth-child(1) > div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.test-whole .test-box > div > div:nth-child(1) > div img {
  max-height: 120px;
}

.test-whole .test-box > div > div:nth-child(2) {
  width: 20%;
  text-align: center;
}

.test-whole .test-box__content .opa-test {
  opacity: 0;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}

.test-whole .test-box__content .opa-test.on {
  opacity: 1;
}

.test-whole .test-box__content .blur-test {
  opacity: 0;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  filter: blur(5px);
  -webkit-transition: opacity 1s, filter 1s;
  -moz-transition: opacity 1s, filter 1s;
  -o-transition: opacity 1s, filter 1s;
  transition: opacity 1s, filter 1s;
}

.test-whole .test-box__content .blur-test.on {
  opacity: 1;
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  filter: blur(0px);
}

.test-whole .test-box__content .blur_shadow-test {
  opacity: 0;
  -webkit-filter: blur(5px) drop-shadow(0px 0px 2px #ddd);
  -moz-filter: blur(5px) drop-shadow(0px 0px 2px #ddd);
  filter: blur(5px) drop-shadow(0px 0px 2px #ddd);
  -webkit-transition: opacity 1s, filter 1s;
  -moz-transition: opacity 1s, filter 1s;
  -o-transition: opacity 1s, filter 1s;
  transition: opacity 1s, filter 1s;
}

.test-whole .test-box__content .blur_shadow-test.on {
  opacity: 1;
  -webkit-filter: blur(0px) drop-shadow(0px 0px 0px #ddd);
  -moz-filter: blur(0px) drop-shadow(0px 0px 0px #ddd);
  filter: blur(0px) drop-shadow(0px 0px 0px #ddd);
}

.test-whole #light {
  position: relative;
}

.test-whole #light .remove-light {
  color: #121212;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  position: absolute;
  z-index: 1;
  bottom: 50px;
  right: 50px;
}

.test-whole #light p {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  font-size: 14px;
  font-size: 1.4rem;
  mix-blend-mode: difference;
  letter-spacing: 0.12em;
}

.test-whole #cursor {
  background: #121212;
  width: 100%;
  height: 100%;
  position: fixed;
  width: 100%;
  height: 100%;
}

.test-whole #cursor .stalker {
  position: fixed;
  z-index: 10;
  pointer-events: none;
  border-radius: 50%;
  background: transparent;
  transition: transform 0.2s ease-out, width 0.2s, height 0.2s, background-color 0.2s, top 0.2s, left 0.2s;
  mix-blend-mode: difference;
  border: 1px solid #999;
  width: 60px;
  height: 60px;
  top: -30px;
  left: -30px;
  opacity: 1;
}

.test-whole #cursor .stalker.on {
  background: #f5f5f5;
  width: 46px;
  height: 46px;
  top: -23px;
  left: -23px;
  opacity: 1;
}

.test-whole #cursor #box {
  position: relative;
  width: 100%;
  height: 100%;
}

.test-whole #cursor #box img {
  max-height: 180px;
  position: absolute;
}

.test-whole #mask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/test/image01.jpg);
  background-size: cover;
  background-position: center;
}

.test-whole #mask .box {
  position: absolute;
  left: 60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-bottom: 68px;
}

.test-whole #mask .box p {
  color: #fff;
}

.test-whole #mask .box p:nth-child(1) {
  font-size: 27px;
  font-size: 2.7rem;
  letter-spacing: 0.06em;
}

.test-whole #mask .box p:nth-child(2) {
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-top: 20px;
}

.test-whole #mask .box p:nth-child(3) {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  margin-top: 20px;
}

.test-whole .kido-test {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.test-whole .kido-test img {
  display: block;
  width: 100%;
  mix-blend-mode: multiply;
}

.test-whole .kido-test:before {
  content: '';
  background: #323232;
  filter: brightness(80%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  mix-blend-mode: multsiply;
}

.test {
  font-family: 'A1明朝', 'A1 Mincho';
}

.works-single {
  position: relative;
}

.works-single.off-arrow .special-prev-link,
.works-single.off-arrow .gallery__startgal,
.works-single.off-arrow .gallery .slick-prev,
.works-single.off-arrow .gallery .slick-next {
  opacity: 1 !important;
}

.works-single--gallery-whole {
  position: relative;
}

.works-single .sub-content__left {
  position: relative;
}

.works-single .sub-content__left--box {
  position: static;
  top: 0;
  left: 0;
  padding-right: 30px;
}

@media only screen and (max-width: 767px) {
  .works-single .sub-content__left--box {
    padding: 0;
  }
}

.works-single .gallery {
  height: 546px;
  padding-left: 30px;
  margin-top: 150px;
}

@media only screen and (min-width: 768px) {
  .works-single .gallery {
    height: calc(100vh - 210px);
    position: relative;
  }

  .works-single .gallery__startgal {
    position: absolute;
    top: 0;
    left: calc(50% + 15px);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(60% - 50px);
    height: 100%;
    background-image: url(../images/icon/gallery_plus.svg);
    background-size: 29px 29px;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    cursor: pointer;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .works-single .gallery__startgal:hover {
    opacity: 1;
  }
}

@media only screen and (max-width: 767px) {
  .works-single .gallery {
    padding: 0;
    margin-top: 90px;
    height: auto;
  }

  .works-single .gallery > div {
    margin-top: 20px;
  }

  .works-single .gallery > div > div {
    margin-left: -25px;
    width: calc(100% + 50px);
    position: relative;
  }

  .works-single .gallery > div > div:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: transparent;
  }
}

.works-single .gallery:nth-child(1) {
  margin-top: 0;
}

.works-single .gallery__slider--prev,
.works-single .gallery__slider--next {
  width: 20%;
}

.works-single .gallery__slider--prev,
.works-single .gallery__slider--next,
.works-single .gallery__slider--plus {
  position: absolute;
  height: 100%;
  background-size: 29px 29px;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
}

.works-single .gallery__slider--prev {
  left: 0;
}

.works-single .gallery__slider--next {
  right: 0;
}

.works-single .gallery__slider--plus {
  left: 50%;
  width: 60%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.works-single .gallery__slider--prev,
.works-single .gallery__slider--next {
  width: 37px;
}

.works-single .gallery__slider--prev {
  background-image: url(../images/icon/gallery_prev.svg);
}

.works-single .gallery__slider--next {
  background-image: url(../images/icon/gallery_next.svg);
}

.works-single .gallery__slider--plus {
  background-image: url(../images/icon/gallery_plus.svg);
}

.works-single .gallery .slick-slider {
  height: 100%;
  position: relative;
}

.works-single .gallery .slick-slider > div {
  height: 100%;
}

.works-single .gallery .slick-slider > div > div {
  height: 100%;
}

.works-single .gallery .slick-slider .slick-slide > div {
  height: 100%;
}

.works-single .gallery .slick-slider .slick-slide > div > div {
  height: 100%;
  text-align: right;
}

.works-single .gallery .slick-slider .slick-slide > div > div > div {
  height: 100%;
  display: inline-block;
  position: relative;
}

.works-single .gallery .slick-slider .slick-slide > div > div > div .special-prev-link {
  position: absolute;
  width: 20%;
  height: 100%;
  min-width: 180px;
  left: 0;
  top: 0;
  cursor: pointer;
  background-size: 37.15px 26px;
  background-image: url(../images/icon/gallery_prev.svg);
  background-position: center left 30px;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.works-single .gallery .slick-slider .slick-slide > div > div > div .special-prev-link:hover {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .works-single .gallery .slick-slider .slick-slide > div > div > div .special-prev-link {
    display: none;
  }
}

.works-single .gallery .slick-slider .slick-slide img {
  display: block;
  margin: 0 0 0 auto;
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}

.works-single .gallery .slick-next {
  position: absolute;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  width: 20%;
  height: 100%;
  top: 0;
  background-size: 37.15px 26px;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.works-single .gallery .slick-next:before {
  content: none;
}

.works-single .gallery .slick-next:hover {
  opacity: 1;
}

.works-single .gallery .slick-prev {
  width: 0;
  left: 0;
  top: 0;
  opacity: 0 !important;
  pointer-events: none;
}

.works-single .gallery .slick-next {
  right: 0px;
  background-image: url(../images/icon/gallery_next.svg);
  background-position: center right 30px;
}

.works-single .gallery__footer {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-top: 14px;
  font-family: 'Portrait', sans-serif;
}

.works-single .gallery__copy {
  width: calc(100% - 134px);
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: #707070;
}

.works-single .gallery__control {
  width: 134px;
  font-size: 0;
  text-align: right;
}

.works-single .gallery__control a {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-size: 1.4rem;
  margin-right: 20px;
  letter-spacing: 0.06em;
  padding-left: 16px;
  position: relative;
}

.works-single .gallery__control a:before {
  content: '';
  background-image: url(../images/icon/width.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 9px;
  height: 9px;
  position: absolute;
  left: 0;
  top: -2px;
  bottom: 0;
  margin: auto;
}

.works-single .gallery__control ul {
  display: inline-block;
  vertical-align: middle;
}

.works-single .gallery__control ul li {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-size: 1.4rem;
}

.works-single .gallery__control ul li:nth-child(2) {
  padding-left: 14px;
  position: relative;
}

.works-single .gallery__control ul li:nth-child(2):before {
  content: '';
  width: 1px;
  height: 10px;
  background: #121212;
  -webkit-transform: rotate(22deg);
  -moz-transform: rotate(22deg);
  -ms-transform: rotate(22deg);
  -o-transform: rotate(22deg);
  transform: rotate(22deg);
  position: absolute;
  left: 7px;
  top: 1px;
}

@media only screen and (max-width: 767px) {
  .works-single .sub-content__left--pager {
    margin-top: 185px !important;
    position: static;
    width: 100%;
  }
}

.works-single-page {
  padding-bottom: 50px;
}

.works-single-page .sub-content__right {
  max-width: none;
}

.mainvisual__bottom-nav ul li.mr8 {
  margin-right: 10px;
  position: relative;
}

.mainvisual__bottom-nav ul li.mr8:before {
  content: '';
  width: 1px;
  height: 18px;
  position: absolute;
  border-right: 1px solid;
  right: -7px;
}

.mainvisual__bottom-nav ul li:last-child ol > li a.off {
  opacity: 0.5;
  pointer-events: none;
}

.mainvisual .header__mega-navigation__select-language {
  left: 17px;
  top: 22px;
  z-index: 111;
  right: auto;

  bottom: auto;
}

.mainvisual__bottom-nav ul li ol {
  position: relative;
  top: -0.5px;
}

/* Google Map Styles
======================================================================*/
.go-map {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .go-map {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.google-map {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: box-shadow 0.3s ease;
  -moz-transition: box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
}

.google-map:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.google-map iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

@media only screen and (max-width: 767px) {
  .google-map iframe {
    height: 300px;
  }
}

.map-overlay {
  position: absolute;
  top: 50px;
  left: 10px;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 280px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-family: 'PortraitText', 'A1明朝', 'A1 Mincho', serif;
}

@media only screen and (max-width: 767px) {
  .map-overlay {
    top: 15px;
    left: 15px;
    padding: 15px;
    max-width: calc(100% - 30px);
  }
}

.map-info h3 {
  font-size: 18px;
  font-size: 1.8rem;
  color: #121212;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 767px) {
  .map-info h3 {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}

.map-info p {
  font-size: 14px;
  font-size: 1.4rem;
  color: #707070;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 767px) {
  .map-info p {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

/* 预订表单样式 */
.reservation-form {
  background: #fff;
  border-radius: 8px;
  max-width: 400px;
}

.reservation-form h3 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 8px;
  font-weight: 500;
}

/* 人数选择器样式 */
.number-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 20px;
  gap: 15px;
}

.number-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.number-btn:hover {
  background: #7935d2;
  color: #fff;
  border-color: #7935d2;
}

.number-display {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  min-width: 30px;
  text-align: center;
}

.number-label {
  font-size: 16px;
  font-size: 1.6rem;
  color: #666;
}

/* 日期选择器样式 */
.date-selector {
  position: relative;
}

.date-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.date-display {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.date-display:hover {
  border-color: #7935d2;
  background: #f5f0ff;
}

.date-display::after {
  content: '📅';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

.date-text {
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
}

/* 时间选择器样式 */
.time-selector {
  position: relative;
}

.time-display {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.time-display:hover {
  border-color: #7935d2;
  background: #f5f0ff;
}

.time-display::after {
  content: '🕐';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

.time-text {
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
}

/* 邮箱 */
.email-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  gap: 15px;
}

.email-input {
  width: 100%;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 20px !important;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
  transition: all 0.2s;
  box-sizing: border-box;
}

.email-selector:hover {
  border-color: #7935d2;
  background: #f5f0ff;
}

.required {
  color: #ff4757;
  margin-left: 3px;
}

/* 自定义时间选择弹窗样式 */
.time-picker-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.time-picker-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
}

.time-picker-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 12px;
  width: 400px;
  max-height: 80vh;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.time-picker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.time-picker-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.time-picker-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.time-picker-close:hover {
  background: #f0f0f0;
  color: #333;
}

.time-picker-grid {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-height: 400px;
  overflow-y: auto;
}

.time-picker-slot {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: all 0.2s;
}

.time-picker-slot:hover {
  background: #f0f0f0;
  border-color: #ccc;
}

.time-picker-slot.selected {
  background: #7935d2;
  color: white;
  border-color: #7935d2;
}

.time-picker-slot.selected:hover {
  background: #6829b8;
}

.time-picker-slot.disabled {
  background: #f5f5f5;
  color: #ccc;
  cursor: not-allowed;
  border-color: #f0f0f0;
}

.time-picker-slot.disabled:hover {
  background: #f5f5f5;
  border-color: #f0f0f0;
}

/* 移动端适配 */
@media only screen and (max-width: 767px) {
  .time-picker-content {
    width: 320px;
  }

  .time-picker-header {
    padding: 15px;
  }

  .time-picker-grid {
    padding: 15px;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .time-picker-slot {
    padding: 10px;
    font-size: 13px;
  }
}

/* 自定义确认弹窗样式 */
.confirmation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
}

.confirmation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
}

.confirmation-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 16px;
  width: 380px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: confirmationSlideIn 0.3s ease-out;
}

@keyframes confirmationSlideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.confirmation-header {
  padding: 30px 30px 20px;
  text-align: center;
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
}

.confirmation-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 15px;
  font-weight: bold;
}

.confirmation-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
}

.confirmation-body {
  padding: 25px 30px;
}

.confirmation-details {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #4caf50;
}

.confirmation-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
}

.confirmation-detail-item:last-child {
  margin-bottom: 0;
}

.confirmation-detail-label {
  color: #666;
  font-weight: 500;
}

.confirmation-detail-value {
  color: #333;
  font-weight: 600;
}

.confirmation-message {
  font-size: 18px;
  font-weight: 600;
  color: #4caf50;
  text-align: center;
  margin: 0 0 8px 0;
}

.confirmation-note {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin: 0;
}

.confirmation-footer {
  padding: 20px 30px 30px;
  text-align: center;
}

.confirmation-btn {
  background: #4caf50;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 120px;
}

.confirmation-btn:hover {
  background: #45a049;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.confirmation-btn:active {
  transform: translateY(0);
}

/* 移动端适配 */
@media only screen and (max-width: 767px) {
  .confirmation-content {
    width: 320px;
    margin: 0 20px;
  }

  .confirmation-header {
    padding: 25px 20px 15px;
  }

  .confirmation-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-bottom: 12px;
  }

  .confirmation-header h3 {
    font-size: 20px;
  }

  .confirmation-body {
    padding: 20px;
  }

  .confirmation-details {
    padding: 15px;
  }

  .confirmation-detail-item {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .confirmation-message {
    font-size: 16px;
  }

  .confirmation-footer {
    padding: 15px 20px 25px;
  }

  .confirmation-btn {
    padding: 10px 30px;
    font-size: 15px;
  }
}

/* 错误提示Toast样式 */
.error-toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10001;
  display: none;
}

.error-toast-content {
  background: #6c757d;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 200px;
  animation: errorSlideDown 0.3s ease-out;
}

@keyframes errorSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.error-icon {
  font-size: 18px;
  font-weight: bold;
}

.error-message {
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .error-toast {
    top: 10px;
    left: 10px;
    right: 10px;
    transform: none;
  }

  .error-toast-content {
    padding: 10px 15px;
  }

  .error-message {
    font-size: 13px;
  }
}

/* 预订按钮样式 */
.reservation-submit-btn {
  width: 100%;
  height: 50px;
  background: #6c757d;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 10px;
}

.reservation-submit-btn:hover {
  background: #5a6268;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.reservation-submit-btn:active {
  transform: translateY(0);
}

/* 响应式设计 */
@media only screen and (max-width: 767px) {
  .reservation-form {
    padding: 20px;
    margin: 20px;
  }

  .reservation-form h3 {
    font-size: 20px;
    font-size: 2rem;
  }

  .number-selector {
    padding: 10px 15px;
    gap: 10px;
  }

  .number-btn {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .date-display,
  .time-select {
    padding: 10px 15px;
  }

  .time-select {
    padding-right: 35px;
  }
}

/* 自定义日期选择弹窗样式 */
.date-picker-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.date-picker-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
}

.date-picker-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 12px;
  width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.date-picker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.date-picker-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.date-picker-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.date-picker-close:hover {
  background: #f0f0f0;
  color: #333;
}

.date-picker-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.date-picker-prev,
.date-picker-next {
  background: none;
  border: none;
  font-size: 20px;
  color: #666;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.date-picker-prev:hover,
.date-picker-next:hover {
  background: #f0f0f0;
  color: #333;
}

.date-picker-month-year {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.date-picker-calendar {
  padding: 20px;
}

.date-picker-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 10px;
}

.weekday {
  text-align: center;
  font-size: 12px;
  color: #666;
  padding: 8px 0;
  font-weight: 500;
}

.date-picker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.date-picker-day {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: all 0.2s;
}

.date-picker-day:hover {
  background: #f0f0f0;
}

.date-picker-day.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.date-picker-day.disabled:hover {
  background: none;
}

.date-picker-day.selected {
  /* background: #7935d2; */
  /* color: white; */
}

.date-picker-day.selected:hover {
  /* background: #6829b8; */
}

.date-picker-day.other-month {
  color: #ccc;
}

.date-picker-day.today {
  border: 2px solid #7935d2;
}

.date-picker-day.today.selected {
  border: 2px solid #7935d2;
}

/* 周末、周三和节假日样式 */
.date-picker-day.weekend-holiday {
  background: #f8f8f8;
  color: #ccc;
  position: relative;
}

/* .date-picker-day.weekend-holiday::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 4px;
  height: 4px;
  background: #ff6b6b;
  border-radius: 50%;
} */

.date-picker-day.weekend-holiday:hover {
  background: #f8f8f8;
  color: #ccc;
}

/* 过去日期样式 */
.date-picker-day.past-date {
  background: #f0f0f0;
  color: #bbb;
  text-decoration: line-through;
}

.date-picker-day.past-date:hover {
  background: #f0f0f0;
  color: #bbb;
}

/* 约满日期样式 */
.date-picker-day.fully-booked {
  background: #e8e8e8;
  color: #999;
  position: relative;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

.date-picker-day.fully-booked:hover {
  background: #e8e8e8;
  color: #999;
}

.date-picker-day .booked-indicator {
  font-size: 8px;
  font-size: 0.8rem;
  color: #ff6b6b;
  font-weight: bold;
  line-height: 1;
  margin-top: 1px;
}

/* 移动端适配 */
@media only screen and (max-width: 767px) {
  .date-picker-content {
    width: 280px;
  }

  .date-picker-header {
    padding: 15px;
  }

  .date-picker-nav {
    padding: 10px 15px;
  }

  .date-picker-calendar {
    padding: 15px;
  }

  .date-picker-day {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}
